mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
Presto QueryRunner supports tinyint and smallint
Presto0.148 started to support tinyint and smallint. https://prestodb.io/docs/current/release/release-0.148.html
This commit is contained in:
@@ -17,6 +17,8 @@ except ImportError:
|
||||
|
||||
PRESTO_TYPES_MAPPING = {
|
||||
"integer": TYPE_INTEGER,
|
||||
"tinyint": TYPE_INTEGER,
|
||||
"smallint": TYPE_INTEGER,
|
||||
"long": TYPE_INTEGER,
|
||||
"bigint": TYPE_INTEGER,
|
||||
"float": TYPE_FLOAT,
|
||||
|
||||
Reference in New Issue
Block a user