paleolimbot opened a new pull request, #1032: URL: https://github.com/apache/arrow-adbc/pull/1032
Thanks to @nbenn for the reprex! ``` r library(adbcdrivermanager) db <- adbc_database_init(adbcsqlite::adbcsqlite(), uri = ":memory:") con <- adbc_connection_init(db) flights <- nycflights13::flights flights$time_hour <- NULL write_adbc(flights, con, "flights") stream <- adbc_connection_get_objects(con) # pretty wild result type df <- as.data.frame(stream) df$catalog_db_schemas[[1]]$db_schema_tables[[1]]$table_name #> [1] "flights" df$catalog_db_schemas[[1]]$db_schema_tables[[1]]$table_columns[[1]]$column_name #> [1] "year" "month" "day" "dep_time" #> [5] "sched_dep_time" "dep_delay" "arr_time" "sched_arr_time" #> [9] "arr_delay" "carrier" "flight" "tailnum" #> [13] "origin" "dest" "air_time" "distance" #> [17] "hour" "minute" ``` <sup>Created on 2023-09-01 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
