Skip to content

Commit

Permalink
Update GetSqlInfo: separate each section of options by 500
Browse files Browse the repository at this point in the history
  • Loading branch information
Abner Eduardo Ferreira authored and rafael-telles committed Dec 6, 2021
1 parent fbae614 commit e72183f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -672,11 +672,11 @@ final class SqlInfo {
public static final int FLIGHT_SQL_SERVER_VERSION = 1;
public static final int FLIGHT_SQL_SERVER_ARROW_VERSION = 2;
public static final int FLIGHT_SQL_SERVER_READ_ONLY = 3;
public static final int SQL_DDL_CATALOG = 4;
public static final int SQL_DDL_SCHEMA = 5;
public static final int SQL_DDL_TABLE = 6;
public static final int SQL_IDENTIFIER_CASE = 7;
public static final int SQL_IDENTIFIER_QUOTE_CHAR = 8;
public static final int SQL_QUOTED_IDENTIFIER_CASE = 9;
public static final int SQL_DDL_CATALOG = 500;
public static final int SQL_DDL_SCHEMA = 501;
public static final int SQL_DDL_TABLE = 502;
public static final int SQL_IDENTIFIER_CASE = 503;
public static final int SQL_IDENTIFIER_QUOTE_CHAR = 504;
public static final int SQL_QUOTED_IDENTIFIER_CASE = 505;
}
}

0 comments on commit e72183f

Please sign in to comment.