Skip to content

Commit

Permalink
BigQuery: add date, datetime type mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshiokatsuneo committed Dec 18, 2024
1 parent f7d4850 commit 60eaadc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions redash/query_runner/big_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from redash import settings
from redash.query_runner import (
TYPE_BOOLEAN,
TYPE_DATE,
TYPE_DATETIME,
TYPE_FLOAT,
TYPE_INTEGER,
Expand Down Expand Up @@ -37,6 +38,8 @@
"BOOLEAN": TYPE_BOOLEAN,
"STRING": TYPE_STRING,
"TIMESTAMP": TYPE_DATETIME,
"DATETIME": TYPE_DATETIME,
"DATE": TYPE_DATE,
}


Expand Down

0 comments on commit 60eaadc

Please sign in to comment.