Skip to content

Commit

Permalink
[bigquery] Fix the serialization issue of the isPushdownSupported var…
Browse files Browse the repository at this point in the history
…iable in the BigQueryColumnHandle class. (#231)
  • Loading branch information
BePPPower authored Jul 23, 2024
1 parent c11e77e commit 7fee875
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public BigQueryColumnHandle(
@JsonProperty("name") String name,
@JsonProperty("trinoType") Type trinoType,
@JsonProperty("bigqueryType") StandardSQLTypeName bigqueryType,
@JsonProperty("isPushdownSupported") boolean isPushdownSupported,
@JsonProperty("pushdownSupported") boolean isPushdownSupported,
@JsonProperty("mode") Field.Mode mode,
@JsonProperty("subColumns") List<BigQueryColumnHandle> subColumns,
@JsonProperty("description") String description,
Expand Down

0 comments on commit 7fee875

Please sign in to comment.