forked from trinodb/trino-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbapi.py
798 lines (659 loc) · 26.7 KB
/
dbapi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
This module implements the Python DBAPI 2.0 as described in
https://www.python.org/dev/peps/pep-0249/ .
Fetch methods returns rows as a list of lists on purpose to let the caller
decide to convert then to a list of tuples.
"""
import datetime
import math
import uuid
from collections import OrderedDict
from decimal import Decimal
from itertools import islice
from threading import Lock
from time import time
from typing import Any
from typing import Dict
from typing import List
from typing import NamedTuple
from typing import Optional
from typing import Union
from urllib.parse import urlparse
from zoneinfo import ZoneInfo
import trino.client
import trino.exceptions
import trino.logging
from trino import constants
from trino.constants import LENGTH_TYPES
from trino.constants import PRECISION_TYPES
from trino.constants import SCALE_TYPES
from trino.exceptions import DatabaseError
from trino.exceptions import DataError
from trino.exceptions import Error
from trino.exceptions import IntegrityError
from trino.exceptions import InterfaceError
from trino.exceptions import InternalError
from trino.exceptions import NotSupportedError
from trino.exceptions import OperationalError
from trino.exceptions import ProgrammingError
from trino.exceptions import Warning
from trino.transaction import IsolationLevel
from trino.transaction import NO_TRANSACTION
from trino.transaction import Transaction
__all__ = [
# https://www.python.org/dev/peps/pep-0249/#globals
"apilevel",
"threadsafety",
"paramstyle",
"connect",
"Connection",
"Cursor",
# https://www.python.org/dev/peps/pep-0249/#exceptions
"Warning",
"Error",
"InterfaceError",
"DatabaseError",
"DataError",
"OperationalError",
"IntegrityError",
"InternalError",
"ProgrammingError",
"NotSupportedError",
]
apilevel = "2.0"
threadsafety = 2
paramstyle = "qmark"
logger = trino.logging.get_logger(__name__)
class TimeBoundLRUCache:
"""A bounded LRU cache which expires entries after a configured number of seconds.
Note that expired entries will be evicted only on an attempted access (or through
the LRU policy)."""
def __init__(self, capacity: int, ttl_seconds: int):
self.capacity = capacity
self.ttl_seconds = ttl_seconds
self.cache = OrderedDict()
self.lock = Lock()
def get(self, key):
with self.lock:
if key not in self.cache:
return None
value, timestamp = self.cache[key]
if time() - timestamp > self.ttl_seconds:
self.cache.pop(key)
return None
self.cache.move_to_end(key)
return value
def put(self, key, value):
with self.lock:
self.cache[key] = value, time()
self.cache.move_to_end(key)
if len(self.cache) > self.capacity:
self.cache.popitem(last=False)
def __repr__(self):
return f"LRUCache(capacity: {self.capacity}, ttl: {self.ttl_seconds} seconds, {self.cache})"
must_use_legacy_prepared_statements = TimeBoundLRUCache(1024, 3600)
def connect(*args, **kwargs):
"""Constructor for creating a connection to the database.
See class :py:class:`Connection` for arguments.
:returns: a :py:class:`Connection` object.
"""
return Connection(*args, **kwargs)
_USE_DEFAULT_ENCODING = object()
class Connection:
"""Trino supports transactions and the ability to either commit or rollback
a sequence of SQL statements. A single query i.e. the execution of a SQL
statement, can also be cancelled. Transactions are not supported by this
client implementation yet.
"""
def __init__(
self,
host: str,
port=constants.DEFAULT_PORT,
user=None,
source=constants.DEFAULT_SOURCE,
catalog=constants.DEFAULT_CATALOG,
schema=constants.DEFAULT_SCHEMA,
session_properties=None,
http_headers=None,
http_scheme=constants.HTTP,
auth=constants.DEFAULT_AUTH,
extra_credential=None,
max_attempts=constants.DEFAULT_MAX_ATTEMPTS,
request_timeout=constants.DEFAULT_REQUEST_TIMEOUT,
isolation_level=IsolationLevel.AUTOCOMMIT,
verify=True,
http_session=None,
client_tags=None,
legacy_primitive_types=False,
legacy_prepared_statements=None,
roles=None,
timezone=None,
encoding: Union[str, List[str]] = _USE_DEFAULT_ENCODING,
):
# Automatically assign http_schema, port based on hostname
parsed_host = urlparse(host, allow_fragments=False)
if encoding is _USE_DEFAULT_ENCODING:
encoding = [
"json+zstd",
"json+lz4",
"json",
]
self.host = host if parsed_host.hostname is None else parsed_host.hostname + parsed_host.path
self.port = port if parsed_host.port is None else parsed_host.port
self.user = user
self.source = source
self.catalog = catalog
self.schema = schema
self.session_properties = session_properties
self._client_session = trino.client.ClientSession(
user=user,
catalog=catalog,
schema=schema,
source=source,
properties=session_properties,
headers=http_headers,
transaction_id=NO_TRANSACTION,
extra_credential=extra_credential,
client_tags=client_tags,
roles=roles,
timezone=timezone,
encoding=encoding,
)
# mypy cannot follow module import
if http_session is None:
self._http_session = trino.client.TrinoRequest.http.Session()
self._http_session.verify = verify
else:
self._http_session = http_session
self.http_headers = http_headers
self.http_scheme = http_scheme if not parsed_host.scheme else parsed_host.scheme
self.auth = auth
self.extra_credential = extra_credential
self.max_attempts = max_attempts
self.request_timeout = request_timeout
self.client_tags = client_tags
self._isolation_level = isolation_level
self._request = None
self._transaction = None
self.legacy_primitive_types = legacy_primitive_types
self.legacy_prepared_statements = legacy_prepared_statements
@property
def isolation_level(self):
return self._isolation_level
@property
def transaction(self):
return self._transaction
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
try:
self.commit()
except Exception:
self.rollback()
else:
self.close()
def close(self):
# TODO cancel outstanding queries?
self._http_session.close()
def start_transaction(self):
self._transaction = Transaction(self._create_request())
self._transaction.begin()
return self._transaction
def commit(self):
if self.transaction is None:
return
self._transaction.commit()
self._transaction = None
def rollback(self):
if self.transaction is None:
raise RuntimeError("no transaction was started")
self._transaction.rollback()
self._transaction = None
def _create_request(self):
return trino.client.TrinoRequest(
self.host,
self.port,
self._client_session,
self._http_session,
self.http_scheme,
self.auth,
self.max_attempts,
self.request_timeout,
)
def cursor(self, cursor_style: str = "row", legacy_primitive_types: bool = None):
"""Return a new :py:class:`Cursor` object using the connection."""
if self.isolation_level != IsolationLevel.AUTOCOMMIT:
if self.transaction is None:
self.start_transaction()
if self.transaction is not None:
request = self.transaction.request
else:
request = self._create_request()
cursor_class = {
# Add any custom Cursor classes here
"segment": SegmentCursor,
"row": Cursor
}.get(cursor_style.lower(), Cursor)
return cursor_class(
self,
request,
legacy_primitive_types=(
legacy_primitive_types
if legacy_primitive_types is not None
else self.legacy_primitive_types
)
)
def _use_legacy_prepared_statements(self):
if self.legacy_prepared_statements is not None:
return self.legacy_prepared_statements
value = must_use_legacy_prepared_statements.get((self.host, self.port))
if value is None:
try:
query = trino.client.TrinoQuery(
self._create_request(),
query="EXECUTE IMMEDIATE 'SELECT 1'")
query.execute()
value = False
except Exception as e:
logger.warning(
"EXECUTE IMMEDIATE not available for %s:%s; defaulting to legacy prepared statements (%s)",
self.host, self.port, e)
value = True
must_use_legacy_prepared_statements.put((self.host, self.port), value)
return value
class DescribeOutput(NamedTuple):
name: str
catalog: str
schema: str
table: str
type: str
type_size: int
aliased: bool
@classmethod
def from_row(cls, row: List[Any]):
return cls(*row)
class ColumnDescription(NamedTuple):
name: str
type_code: int
display_size: int
internal_size: int
precision: int
scale: int
null_ok: bool
@classmethod
def from_column(cls, column: Dict[str, Any]):
type_signature = column["typeSignature"]
raw_type = type_signature["rawType"]
arguments = type_signature["arguments"]
return cls(
column["name"], # name
column["type"], # type_code
None, # display_size
arguments[0]["value"] if raw_type in LENGTH_TYPES else None, # internal_size
arguments[0]["value"] if raw_type in PRECISION_TYPES else None, # precision
arguments[1]["value"] if raw_type in SCALE_TYPES else None, # scale
None # null_ok
)
class Cursor:
"""Database cursor.
Cursors are not isolated, i.e., any changes done to the database by a
cursor are immediately visible by other cursors or connections.
"""
def __init__(
self,
connection,
request,
legacy_primitive_types: bool = False):
if not isinstance(connection, Connection):
raise ValueError(
"connection must be a Connection object: {}".format(type(connection))
)
self._connection = connection
self._request = request
self.arraysize = 1
self._iterator = None
self._query = None
self._legacy_primitive_types = legacy_primitive_types
def __iter__(self):
return self._iterator
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
self.close()
@property
def connection(self):
return self._connection
@property
def info_uri(self):
if self._query is not None:
return self._query.info_uri
return None
@property
def update_type(self):
if self._query is not None:
return self._query.update_type
return None
@property
def description(self) -> List[ColumnDescription]:
if self._query is None or self._query.columns is None:
return None
# [ (name, type_code, display_size, internal_size, precision, scale, null_ok) ]
return [
ColumnDescription.from_column(col) for col in self._query.columns
]
@property
def rowcount(self):
"""The rowcount will be returned for INSERT, UPDATE, DELETE, MERGE
and CTAS statements based on `update_count` returned by the Trino
API.
If the rowcount can't be determined, -1 will be returned.
Trino cannot reliably determine the number of rows returned for DQL
queries. For example, the result of a SELECT query is streamed and
the number of rows is only known when all rows have been retrieved.
See https://peps.python.org/pep-0249/#rowcount
"""
if self._query is not None and self._query.update_count is not None:
return self._query.update_count
return -1
@property
def stats(self):
if self._query is not None:
return self._query.stats
return None
@property
def query_id(self) -> Optional[str]:
if self._query is not None:
return self._query.query_id
return None
@property
def query(self) -> Optional[str]:
if self._query is not None:
return self._query.query
return None
@property
def warnings(self):
if self._query is not None:
return self._query.warnings
return None
def setinputsizes(self, sizes):
raise trino.exceptions.NotSupportedError
def setoutputsize(self, size, column):
raise trino.exceptions.NotSupportedError
def _prepare_statement(self, statement: str, name: str) -> None:
"""
Registers a prepared statement for the provided `operation` with the
`name` assigned to it.
:param statement: sql to be executed.
:param name: name that will be assigned to the prepared statement.
"""
sql = f"PREPARE {name} FROM {statement}"
query = trino.client.TrinoQuery(self.connection._create_request(), query=sql,
legacy_primitive_types=self._legacy_primitive_types)
query.execute()
def _execute_prepared_statement(
self,
statement_name,
params
):
sql = 'EXECUTE ' + statement_name + ' USING ' + ','.join(map(self._format_prepared_param, params))
return trino.client.TrinoQuery(self._request, query=sql, legacy_primitive_types=self._legacy_primitive_types)
def _execute_immediate_statement(self, statement: str, params):
"""
Binds parameters and executes a statement in one call.
:param statement: sql to be executed.
:param params: parameters to be bound.
"""
sql = "EXECUTE IMMEDIATE '" + statement.replace("'", "''") + \
"' USING " + ",".join(map(self._format_prepared_param, params))
return trino.client.TrinoQuery(
self.connection._create_request(), query=sql, legacy_primitive_types=self._legacy_primitive_types)
def _format_prepared_param(self, param):
"""
Formats parameters to be passed in an
EXECUTE statement.
"""
if param is None:
return "NULL"
if isinstance(param, bool):
return "true" if param else "false"
if isinstance(param, int):
# TODO represent numbers exceeding 64-bit (BIGINT) as DECIMAL
return "%d" % param
if isinstance(param, float):
if param == float("+inf"):
return "infinity()"
if param == float("-inf"):
return "-infinity()"
if math.isnan(param):
return "nan()"
return "DOUBLE '%s'" % param
if isinstance(param, str):
return ("'%s'" % param.replace("'", "''"))
if isinstance(param, (bytes, bytearray)):
return "X'%s'" % param.hex()
if isinstance(param, datetime.datetime) and param.tzinfo is None:
datetime_str = param.strftime("%Y-%m-%d %H:%M:%S.%f")
return "TIMESTAMP '%s'" % datetime_str
if isinstance(param, datetime.datetime) and param.tzinfo is not None:
datetime_str = param.strftime("%Y-%m-%d %H:%M:%S.%f")
# named timezones
if isinstance(param.tzinfo, ZoneInfo):
return "TIMESTAMP '%s %s'" % (datetime_str, param.tzinfo.key)
# offset-based timezones
return "TIMESTAMP '%s %s'" % (datetime_str, param.tzinfo.tzname(param))
# We can't calculate the offset for a time without a point in time
if isinstance(param, datetime.time) and param.tzinfo is None:
time_str = param.strftime("%H:%M:%S.%f")
return "TIME '%s'" % time_str
if isinstance(param, datetime.time) and param.tzinfo is not None:
time_str = param.strftime("%H:%M:%S.%f")
# named timezones
if isinstance(param.tzinfo, ZoneInfo):
utc_offset = datetime.datetime.now(tz=param.tzinfo).strftime('%z')
return "TIME '%s %s:%s'" % (time_str, utc_offset[:3], utc_offset[3:])
# offset-based timezones
return "TIME '%s %s'" % (time_str, param.strftime('%Z')[3:])
if isinstance(param, datetime.date):
date_str = param.strftime("%Y-%m-%d")
return "DATE '%s'" % date_str
if isinstance(param, list):
return "ARRAY[%s]" % ','.join(map(self._format_prepared_param, param))
if isinstance(param, tuple):
return "ROW(%s)" % ','.join(map(self._format_prepared_param, param))
if isinstance(param, dict):
keys = list(param.keys())
values = [param[key] for key in keys]
return "MAP({}, {})".format(
self._format_prepared_param(keys),
self._format_prepared_param(values)
)
if isinstance(param, uuid.UUID):
return "UUID '%s'" % param
if isinstance(param, Decimal):
return "DECIMAL '%s'" % format(param, "f")
raise trino.exceptions.NotSupportedError("Query parameter of type '%s' is not supported." % type(param))
def _deallocate_prepared_statement(self, statement_name: str) -> None:
sql = 'DEALLOCATE PREPARE ' + statement_name
query = trino.client.TrinoQuery(self.connection._create_request(), query=sql,
legacy_primitive_types=self._legacy_primitive_types)
query.execute()
def _generate_unique_statement_name(self):
return 'st_' + uuid.uuid4().hex.replace('-', '')
def execute(self, operation, params=None):
if params:
assert isinstance(params, (list, tuple)), (
'params must be a list or tuple containing the query '
'parameter values'
)
if self.connection._use_legacy_prepared_statements():
statement_name = self._generate_unique_statement_name()
self._prepare_statement(operation, statement_name)
try:
# Send execute statement and assign the return value to `results`
# as it will be returned by the function
self._query = self._execute_prepared_statement(
statement_name, params
)
self._iterator = iter(self._query.execute())
finally:
# Send deallocate statement
# At this point the query can be deallocated since it has already
# been executed
# TODO: Consider caching prepared statements if requested by caller
self._deallocate_prepared_statement(statement_name)
else:
self._query = self._execute_immediate_statement(operation, params)
self._iterator = iter(self._query.execute())
else:
self._query = trino.client.TrinoQuery(self._request, query=operation,
legacy_primitive_types=self._legacy_primitive_types)
self._iterator = iter(self._query.execute())
return self
def executemany(self, operation, seq_of_params):
"""
PEP-0249: Prepare a database operation (query or command) and then
execute it against all parameter sequences or mappings found in the sequence seq_of_parameters.
Modules are free to implement this method using multiple calls to
the .execute() method or by using array operations to have the
database process the sequence as a whole in one call.
Use of this method for an operation which produces one or more result
sets constitutes undefined behavior, and the implementation is permitted (but not required)
to raise an exception when it detects that a result set has been created by an invocation of the operation.
The same comments as for .execute() also apply accordingly to this method.
Return values are not defined.
"""
for parameters in seq_of_params[:-1]:
self.execute(operation, parameters)
self.fetchall()
if self._query.update_type is None:
raise NotSupportedError("Query must return update type")
if seq_of_params:
self.execute(operation, seq_of_params[-1])
else:
self.execute(operation)
return self
def fetchone(self) -> Optional[List[Any]]:
"""
PEP-0249: Fetch the next row of a query result set, returning a single
sequence, or None when no more data is available.
An Error (or subclass) exception is raised if the previous call to
.execute*() did not produce any result set or no call was issued yet.
"""
try:
assert self._iterator is not None
return next(self._iterator)
except StopIteration:
return None
except trino.exceptions.HttpError as err:
raise trino.exceptions.OperationalError(str(err))
def fetchmany(self, size=None) -> List[List[Any]]:
"""
PEP-0249: Fetch the next set of rows of a query result, returning a
sequence of sequences (e.g. a list of tuples). An empty sequence is
returned when no more rows are available.
The number of rows to fetch per call is specified by the parameter. If
it is not given, the cursor's arraysize determines the number of rows
to be fetched. The method should try to fetch as many rows as indicated
by the size parameter. If this is not possible due to the specified
number of rows not being available, fewer rows may be returned.
An Error (or subclass) exception is raised if the previous call to
.execute*() did not produce any result set or no call was issued yet.
Note there are performance considerations involved with the size
parameter. For optimal performance, it is usually best to use the
.arraysize attribute. If the size parameter is used, then it is best
for it to retain the same value from one .fetchmany() call to the next.
"""
if size is None:
size = self.arraysize
return list(islice(iter(self.fetchone, None), size))
def describe(self, sql: str) -> List[DescribeOutput]:
"""
List the output columns of a SQL statement, including the column name (or alias), catalog, schema, table, type,
type size in bytes, and a boolean indicating if the column is aliased.
:param sql: SQL statement
"""
statement_name = self._generate_unique_statement_name()
self._prepare_statement(sql, statement_name)
try:
sql = f"DESCRIBE OUTPUT {statement_name}"
self._query = trino.client.TrinoQuery(
self._request,
query=sql,
legacy_primitive_types=self._legacy_primitive_types,
)
result = self._query.execute()
finally:
self._deallocate_prepared_statement(statement_name)
return list(map(lambda x: DescribeOutput.from_row(x), result))
def genall(self):
return self._query.result
def fetchall(self) -> List[List[Any]]:
return list(iter(self.fetchone, None))
def cancel(self):
if self._query is None:
return
self._query.cancel()
def close(self):
self.cancel()
# TODO: Cancel not only the last query executed on this cursor
# but also any other outstanding queries executed through this cursor.
class SegmentCursor(Cursor):
def __init__(
self,
connection,
request,
legacy_primitive_types: bool = False):
super().__init__(connection, request, legacy_primitive_types=legacy_primitive_types)
if self.connection._client_session.encoding is None:
raise ValueError("SegmentCursor can only be used if encoding is set on the connection")
def execute(self, operation, params=None):
if params:
# TODO: refactor code to allow for params to be supported
raise ValueError("params not supported")
self._query = trino.client.TrinoQuery(self._request, query=operation,
legacy_primitive_types=self._legacy_primitive_types,
fetch_mode="segments")
self._iterator = iter(self._query.execute())
return self
Date = datetime.date
Time = datetime.time
Timestamp = datetime.datetime
DateFromTicks = datetime.date.fromtimestamp
TimestampFromTicks = datetime.datetime.fromtimestamp
def TimeFromTicks(ticks):
return datetime.time(*datetime.localtime(ticks)[3:6])
def Binary(string):
return string.encode("utf-8")
class DBAPITypeObject:
def __init__(self, *values):
self.values = [v.lower() for v in values]
def __eq__(self, other):
return other.lower() in self.values
STRING = DBAPITypeObject("VARCHAR", "CHAR", "VARBINARY", "JSON", "IPADDRESS")
BINARY = DBAPITypeObject(
"ARRAY", "MAP", "ROW", "HyperLogLog", "P4HyperLogLog", "QDigest"
)
NUMBER = DBAPITypeObject(
"BOOLEAN", "TINYINT", "SMALLINT", "INTEGER", "BIGINT", "REAL", "DOUBLE", "DECIMAL"
)
DATETIME = DBAPITypeObject(
"DATE",
"TIME",
"TIME WITH TIME ZONE",
"TIMESTAMP",
"TIMESTAMP WITH TIME ZONE",
"INTERVAL YEAR TO MONTH",
"INTERVAL DAY TO SECOND",
)
ROWID = DBAPITypeObject() # nothing indicates row id in Trino