Skip to content
Snippets Groups Projects
Commit 5ebb1096 authored by Cam Saül's avatar Cam Saül Committed by GitHub
Browse files

Merge pull request #3795 from metabase/parse-bigquery-ints-as-longs

Parse BigQuery ints as longs [ci drivers] (Credit: @felipegasparini)
parents 62797475 d8b3ebf3
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@
"Functions that should be used to coerce string values in responses to the appropriate type for their column."
{"BOOLEAN" #(Boolean/parseBoolean %)
"FLOAT" #(Double/parseDouble %)
"INTEGER" #(Integer/parseInt %)
"INTEGER" #(Long/parseLong %)
"RECORD" identity
"STRING" identity
"TIMESTAMP" parse-timestamp-str})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment