Skip to content

Commit e75c6b5

Browse files
committed
feat(format): add table_definition to GetObjects
Closes #3984.
1 parent 99fa7db commit e75c6b5

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
@@ -1982,12 +1982,16 @@ AdbcStatusCode AdbcConnectionGetInfo(struct AdbcConnection* connection,
19821982
///
19831983
/// TABLE_SCHEMA is a Struct with fields:
19841984
///
1985-
/// | Field Name | Field Type |
1986-
/// |--------------------------|-------------------------|
1987-
/// | table_name | utf8 not null |
1988-
/// | table_type | utf8 not null |
1989-
/// | table_columns | list<COLUMN_SCHEMA> |
1990-
/// | table_constraints | list<CONSTRAINT_SCHEMA> |
1985+
/// | Field Name | Field Type | Comments |
1986+
/// |--------------------------|-------------------------|----------|
1987+
/// | table_name | utf8 not null | |
1988+
/// | table_type | utf8 not null | |
1989+
/// | table_columns | list<COLUMN_SCHEMA> | |
1990+
/// | table_constraints | list<CONSTRAINT_SCHEMA> | |
1991+
/// | table_definition | utf8 | (1) |
1992+
///
1993+
/// 1. [Since version 1.2.0] The table or view definition (e.g. a SQL DDL
1994+
/// statement). This field is optional.
19911995
///
19921996
/// COLUMN_SCHEMA is a Struct with fields:
19931997
///

0 commit comments

Comments
 (0)