Skip to content

Commit

Permalink
Fix the serialization issue of the isPushdownSupported variable in th…
Browse files Browse the repository at this point in the history
…e BigQueryColumnHandle class.
  • Loading branch information
BePPPower committed Jul 22, 2024
1 parent c11e77e commit 5dcf8a0
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 5dcf8a0

Please sign in to comment.