Skip to content

Commit

Permalink
Fix rebase automerge
Browse files Browse the repository at this point in the history
  • Loading branch information
vfraga committed Mar 29, 2022
1 parent e0a2bff commit a8d1d53
Show file tree
Hide file tree
Showing 23 changed files with 79 additions and 968 deletions.
54 changes: 27 additions & 27 deletions format/FlightSql.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1115,15 +1115,15 @@ message CommandGetDbSchemas {
* it is serialized as an IPC message.)
* >
* Fields on table_schema may contain the following metadata:
* - CATALOG_NAME - Table's catalog name
* - SCHEMA_NAME - Table's schema name
* - TABLE_NAME - Table name
* - PRECISION - Column precision/size
* - SCALE - Column scale/decimal digits
* - IS_AUTO_INCREMENT - "1" if column is auto incremented, "0" otherwise.
* - IS_CASE_SENSITIVE - "1" if column is case sensitive, "0" otherwise.
* - IS_READ_ONLY - "1" if column is read only, "0" otherwise.
* - IS_SEARCHABLE - "1" if column is searchable, "0" otherwise.
* - ARROW:FLIGHT:SQL:CATALOG_NAME - Table's catalog name
* - ARROW:FLIGHT:SQL:DB_SCHEMA_NAME - Database schema name
* - ARROW:FLIGHT:SQL:TABLE_NAME - Table name
* - ARROW:FLIGHT:SQL:PRECISION - Column precision/size
* - ARROW:FLIGHT:SQL:SCALE - Column scale/decimal digits if applicable
* - ARROW:FLIGHT:SQL:IS_AUTO_INCREMENT - "1" indicates if the column is auto incremented, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_CASE_SENSITIVE - "1" indicates if the column is case sensitive, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_READ_ONLY - "1" indicates if the column is read only, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_SEARCHABLE - "1" indicates if the column is searchable via WHERE clause, "0" otherwise.
* The returned data should be ordered by catalog_name, db_schema_name, table_name, then table_type, followed by table_schema if requested.
*/
message CommandGetTables {
Expand Down Expand Up @@ -1454,15 +1454,15 @@ message ActionClosePreparedStatementRequest {
* for the following RPC calls:
* - GetSchema: return the Arrow schema of the query.
* Fields on this schema may contain the following metadata:
* - CATALOG_NAME - Table's catalog name
* - SCHEMA_NAME - Table's schema name
* - TABLE_NAME - Table name
* - PRECISION - Column precision/size
* - SCALE - Column scale/decimal digits
* - IS_AUTO_INCREMENT - "1" if column is auto incremented, "0" otherwise.
* - IS_CASE_SENSITIVE - "1" if column is case sensitive, "0" otherwise.
* - IS_READ_ONLY - "1" if column is read only, "0" otherwise.
* - IS_SEARCHABLE - "1" if column is searchable, "0" otherwise.
* - ARROW:FLIGHT:SQL:CATALOG_NAME - Table's catalog name
* - ARROW:FLIGHT:SQL:DB_SCHEMA_NAME - Database schema name
* - ARROW:FLIGHT:SQL:TABLE_NAME - Table name
* - ARROW:FLIGHT:SQL:PRECISION - Column precision/size
* - ARROW:FLIGHT:SQL:SCALE - Column scale/decimal digits if applicable
* - ARROW:FLIGHT:SQL:IS_AUTO_INCREMENT - "1" indicates if the column is auto incremented, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_CASE_SENSITIVE - "1" indicates if the column is case sensitive, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_READ_ONLY - "1" indicates if the column is read only, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_SEARCHABLE - "1" indicates if the column is searchable via WHERE clause, "0" otherwise.
* - GetFlightInfo: execute the query.
*/
message CommandStatementQuery {
Expand All @@ -1488,15 +1488,15 @@ message TicketStatementQuery {
* the following RPC calls:
* - GetSchema: return the Arrow schema of the query.
* Fields on this schema may contain the following metadata:
* - CATALOG_NAME - Table's catalog name
* - SCHEMA_NAME - Table's schema name
* - TABLE_NAME - Table name
* - PRECISION - Column precision/size
* - SCALE - Column scale/decimal digits
* - IS_AUTO_INCREMENT - "1" if column is auto incremented, "0" otherwise.
* - IS_CASE_SENSITIVE - "1" if column is case sensitive, "0" otherwise.
* - IS_READ_ONLY - "1" if column is read only, "0" otherwise.
* - IS_SEARCHABLE - "1" if column is searchable, "0" otherwise.
* - ARROW:FLIGHT:SQL:CATALOG_NAME - Table's catalog name
* - ARROW:FLIGHT:SQL:DB_SCHEMA_NAME - Database schema name
* - ARROW:FLIGHT:SQL:TABLE_NAME - Table name
* - ARROW:FLIGHT:SQL:PRECISION - Column precision/size
* - ARROW:FLIGHT:SQL:SCALE - Column scale/decimal digits if applicable
* - ARROW:FLIGHT:SQL:IS_AUTO_INCREMENT - "1" indicates if the column is auto incremented, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_CASE_SENSITIVE - "1" indicates if the column is case sensitive, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_READ_ONLY - "1" indicates if the column is read only, "0" otherwise.
* - ARROW:FLIGHT:SQL:IS_SEARCHABLE - "1" indicates if the column is searchable via WHERE clause, "0" otherwise.
* - DoPut: bind parameter values. All of the bound parameter sets will be executed as a single atomic execution.
* - GetFlightInfo: execute the prepared statement instance.
*/
Expand Down
34 changes: 0 additions & 34 deletions java/arrow-flight/pom.xml

This file was deleted.

6 changes: 3 additions & 3 deletions java/flight/flight-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@
<execution>
<id>src</id>
<configuration>
<protoSourceRoot>../../../format</protoSourceRoot>
<outputDirectory>target/generated-sources/protobuf</outputDirectory>
<protoSourceRoot>${basedir}/../../../format/</protoSourceRoot>
<outputDirectory>${project.build.directory}/generated-sources/protobuf</outputDirectory>
</configuration>
<goals>
<goal>compile</goal>
Expand All @@ -244,7 +244,7 @@
<execution>
<id>test</id>
<configuration>
<protoSourceRoot>src/test/protobuf</protoSourceRoot>
<protoSourceRoot>${basedir}/src/test/protobuf</protoSourceRoot>
<outputDirectory>${project.build.directory}/generated-test-sources//protobuf</outputDirectory>
</configuration>
<goals>
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit a8d1d53

Please sign in to comment.