Skip to content

Commit eeeab9b

Browse files
authored
apacheGH-14995: [Go][FlightSQL] Fix Supported Unions Constant (apache#15003)
* Closes: apache#14995 Authored-by: Matt Topol <zotthewizard@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
1 parent 41b57d6 commit eeeab9b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

go/arrow/flight/flightsql/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ const (
459459
// - return 2 (\b10) => [SQL_UNION_ALL];
460460
// - return 3 (\b11) => [SQL_UNION, SQL_UNION_ALL].
461461
// Valid SQL positioned commands are described under `arrow.flight.protocol.sql.SqlSupportedUnions`.
462-
SqlInfoSupportedUnions = SqlInfo(pb.SqlSupportedUnions_SQL_UNION)
462+
SqlInfoSupportedUnions = SqlInfo(pb.SqlInfo_SQL_SUPPORTED_UNIONS)
463463

464464
// Retrieves a int64 value representing the maximum number of hex characters allowed in an inline binary literal.
465465
SqlInfoMaxBinaryLiteralLen = SqlInfo(pb.SqlInfo_SQL_MAX_BINARY_LITERAL_LENGTH)

0 commit comments

Comments
 (0)