[CALCITE-3381] Correct type convesion of tiny int, small int, integer… - #1561
Closed
amaliujia wants to merge 1 commit into
Closed
[CALCITE-3381] Correct type convesion of tiny int, small int, integer…#1561amaliujia wants to merge 1 commit into
amaliujia wants to merge 1 commit into
Conversation
Contributor
Author
amaliujia
referenced
this pull request
Nov 6, 2019
…s SQL types to BigQuery types (Rui Wang) VARCHAR -> STRING VARBINARY -> BYTES BIGINT -> INT64 DECIMAL -> NUMERIC DOUBLE -> FLOAT64 BOOLEAN -> BOOL DATE -> DATE TIME -> TIME TIMESTAMP -> TIMESTAMP Close #1482
amaliujia
force-pushed
the
rw-add_more_data_types
branch
from
November 6, 2019 22:29
4fc170f to
2fc3180
Compare
…, float, char, binary in BigQueryDialect.
amaliujia
force-pushed
the
rw-add_more_data_types
branch
from
November 6, 2019 23:40
2fc3180 to
f42de9d
Compare
danny0405
approved these changes
Nov 7, 2019
XuQianJin-Stars
pushed a commit
to XuQianJin-Stars/calcite
that referenced
this pull request
Nov 17, 2019
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561
XuQianJin-Stars
pushed a commit
to XuQianJin-Stars/calcite
that referenced
this pull request
Nov 20, 2019
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561
XuQianJin-Stars
pushed a commit
to XuQianJin-Stars/calcite
that referenced
this pull request
Nov 20, 2019
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561
wangxlong
pushed a commit
to wangxlong/calcite
that referenced
this pull request
Feb 13, 2020
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561
jamesstarr
pushed a commit
to jamesstarr/calcite
that referenced
this pull request
Aug 28, 2025
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561 Change-Id: I9390ef1f7e1ee3d7b0191503e11e03b41633bd14
jamesstarr
pushed a commit
to jamesstarr/calcite
that referenced
this pull request
Mar 16, 2026
…s SQL types to BigQuery types (part2) (Rui Wang) Tweak the BigQuery data type as following: * Integers(from TINYINT to BIGINT) -> INT64 * Fractional(float, double) -> FLOAT64 * Characters(CHAR, VARCHAR) -> STRING * Binarys(BINARY, VARBINARY) -> BYTES close apache#1561 Change-Id: I9390ef1f7e1ee3d7b0191503e11e03b41633bd14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…, float, char, binary in BigQueryDialect.