Skip to content

Commit c8d1ce8

Browse files
committed
feat(format): add table_definition to GetObjects
Closes #3984.
1 parent 03b19c9 commit c8d1ce8

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

c/include/arrow-adbc/adbc.h

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1991,12 +1991,16 @@ AdbcStatusCode AdbcConnectionGetInfo(struct AdbcConnection* connection,
19911991
///
19921992
/// TABLE_SCHEMA is a Struct with fields:
19931993
///
1994-
/// | Field Name | Field Type |
1995-
/// |--------------------------|-------------------------|
1996-
/// | table_name | utf8 not null |
1997-
/// | table_type | utf8 not null |
1998-
/// | table_columns | list<COLUMN_SCHEMA> |
1999-
/// | table_constraints | list<CONSTRAINT_SCHEMA> |
1994+
/// | Field Name | Field Type | Comments |
1995+
/// |--------------------------|-------------------------|----------|
1996+
/// | table_name | utf8 not null | |
1997+
/// | table_type | utf8 not null | |
1998+
/// | table_columns | list<COLUMN_SCHEMA> | |
1999+
/// | table_constraints | list<CONSTRAINT_SCHEMA> | |
2000+
/// | table_definition | utf8 | (1) |
2001+
///
2002+
/// 1. [Since version 1.2.0] The table or view definition (e.g. a SQL DDL
2003+
/// statement). This field is optional.
20002004
///
20012005
/// COLUMN_SCHEMA is a Struct with fields:
20022006
///

0 commit comments

Comments
 (0)