From 9cc59ad5dca47cef8e6279a4df0d587ea4c19f44 Mon Sep 17 00:00:00 2001 From: Dewey Dunnington Date: Mon, 1 Apr 2024 18:27:07 -0300 Subject: [PATCH] fix readme --- r/adbcdrivermanager/README.Rmd | 3 --- r/adbcdrivermanager/README.md | 3 --- 2 files changed, 6 deletions(-) diff --git a/r/adbcdrivermanager/README.Rmd b/r/adbcdrivermanager/README.Rmd index 439268cb85..a9ffc646ca 100644 --- a/r/adbcdrivermanager/README.Rmd +++ b/r/adbcdrivermanager/README.Rmd @@ -82,9 +82,6 @@ stmt <- adbc_statement_init(con) # in advance for testing purposes adbc_statement_bind_stream(stmt, nycflights13::flights) -# Set the query -adbc_statement_set_sql_query(stmt, "SELECT * FROM flights") - # Start executing the query. Results in ADBC are ArrowArrayStream objects, # which can be materialized using as.data.frame(), as_tibble(), # or converted to an arrow::RecordBatchReader using diff --git a/r/adbcdrivermanager/README.md b/r/adbcdrivermanager/README.md index 231fc8a485..6cbf442e44 100644 --- a/r/adbcdrivermanager/README.md +++ b/r/adbcdrivermanager/README.md @@ -74,9 +74,6 @@ stmt <- adbc_statement_init(con) # in advance for testing purposes adbc_statement_bind_stream(stmt, nycflights13::flights) -# Set the query -adbc_statement_set_sql_query(stmt, "SELECT * FROM flights") - # Start executing the query. Results in ADBC are ArrowArrayStream objects, # which can be materialized using as.data.frame(), as_tibble(), # or converted to an arrow::RecordBatchReader using