lidavidm commented on issue #1142:
URL: https://github.com/apache/arrow-adbc/issues/1142#issuecomment-1748929587

   ```
   /// \brief Return metadata on catalogs, schemas, tables, and columns.
   ///
   /// \see AdbcConnectionGetObjects
   #define ADBC_OBJECT_DEPTH_ALL 0
   /// \brief Return metadata on catalogs only.
   ///
   /// \see AdbcConnectionGetObjects
   #define ADBC_OBJECT_DEPTH_CATALOGS 1
   /// \brief Return metadata on catalogs and schemas.
   ///
   /// \see AdbcConnectionGetObjects
   #define ADBC_OBJECT_DEPTH_DB_SCHEMAS 2
   /// \brief Return metadata on catalogs, schemas, and tables.
   ///
   /// \see AdbcConnectionGetObjects
   #define ADBC_OBJECT_DEPTH_TABLES 3
   /// \brief Return metadata on catalogs, schemas, tables, and columns.
   ///
   /// \see AdbcConnectionGetObjects
   #define ADBC_OBJECT_DEPTH_COLUMNS ADBC_OBJECT_DEPTH_ALL
   ```
   
   I suppose I did this backwards. So you want `0`.


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