nbenn opened a new issue, #1002:
URL: https://github.com/apache/arrow-adbc/issues/1002

   Setup
   
   ```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")
   ```
   
   I might be misunderstanding something, but according to docs, the following 
should list available objects I believe:
   
   ```r
   adbc_connection_get_objects(
     con,
     depth = 0,
     catalog = NULL,
     db_schema = NULL,
     table_name = NULL,
     table_type = NULL,
     column_name = NULL
   )
   #> Error in adbc_connection_get_objects(con, depth = 0, catalog = NULL, 
db_schema = NULL,  :
   #>   Expected character(1) for conversion to const char*
   ```


-- 
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]

Reply via email to