forked from snowflakedb/snowflake-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnowdialect.py
More file actions
689 lines (613 loc) · 26.3 KB
/
snowdialect.py
File metadata and controls
689 lines (613 loc) · 26.3 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2019 Snowflake Computing Inc. All right reserved.
#
from collections import defaultdict
import operator
from functools import reduce
import sqlalchemy.types as sqltypes
from six import iteritems
from six.moves.urllib_parse import unquote_plus
from snowflake.connector import errors as sf_errors
from snowflake.connector.constants import UTF8
from sqlalchemy import event as sa_vnt
from sqlalchemy import exc as sa_exc
from sqlalchemy import util as sa_util
from sqlalchemy.engine import default, reflection
from sqlalchemy.schema import Table
from sqlalchemy.sql import text
from sqlalchemy.sql.elements import quoted_name
from sqlalchemy.sql.sqltypes import String
from sqlalchemy.types import (
BIGINT,
BINARY,
BOOLEAN,
CHAR,
DATE,
DATETIME,
DECIMAL,
FLOAT,
INTEGER,
REAL,
SMALLINT,
TIME,
TIMESTAMP,
VARCHAR,
)
from .base import (
SnowflakeCompiler,
SnowflakeDDLCompiler,
SnowflakeExecutionContext,
SnowflakeIdentifierPreparer,
SnowflakeTypeCompiler,
)
from .custom_types import ARRAY, OBJECT, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TIMESTAMP_TZ, VARIANT, GEOGRAPHY
colspecs = {}
ischema_names = {
'BIGINT': BIGINT,
'BINARY': BINARY,
# 'BIT': BIT,
'BOOLEAN': BOOLEAN,
'CHAR': CHAR,
'CHARACTER': CHAR,
'DATE': DATE,
'DATETIME': DATETIME,
'DEC': DECIMAL,
'DECIMAL': DECIMAL,
'DOUBLE': FLOAT,
'FIXED': DECIMAL,
'FLOAT': FLOAT,
'INT': INTEGER,
'INTEGER': INTEGER,
'NUMBER': DECIMAL,
# 'OBJECT': ?
'REAL': REAL,
'BYTEINT': SMALLINT,
'SMALLINT': SMALLINT,
'STRING': VARCHAR,
'TEXT': VARCHAR,
'TIME': TIME,
'TIMESTAMP': TIMESTAMP,
'TIMESTAMP_TZ': TIMESTAMP_TZ,
'TIMESTAMP_LTZ': TIMESTAMP_LTZ,
'TIMESTAMP_NTZ': TIMESTAMP_NTZ,
'TINYINT': SMALLINT,
'VARBINARY': BINARY,
'VARCHAR': VARCHAR,
'VARIANT': VARIANT,
'OBJECT': OBJECT,
'ARRAY': ARRAY,
'GEOGRAPHY': GEOGRAPHY,
}
class SnowflakeDialect(default.DefaultDialect):
name = 'snowflake'
driver = 'snowflake'
max_identifier_length = 255
cte_follows_insert = True
# TODO: support SQL caching, for more info see: https://docs.sqlalchemy.org/en/14/core/connections.html#caching-for-third-party-dialects
supports_statement_cache = False
encoding = UTF8
default_paramstyle = 'pyformat'
colspecs = colspecs
ischema_names = ischema_names
# all str types must be converted in Unicode
convert_unicode = True
# Indicate whether the DB-API can receive SQL statements as Python
# unicode strings
supports_unicode_statements = True
supports_unicode_binds = True
returns_unicode_strings = String.RETURNS_UNICODE
description_encoding = None
# No lastrowid support. See SNOW-11155
postfetch_lastrowid = False
# Indicate whether the dialect properly implements rowcount for
# ``UPDATE`` and ``DELETE`` statements.
supports_sane_rowcount = True
# Indicate whether the dialect properly implements rowcount for
# ``UPDATE`` and ``DELETE`` statements when executed via
# executemany.
supports_sane_multi_rowcount = True
# NUMERIC type returns decimal.Decimal
supports_native_decimal = True
# The dialect supports a native boolean construct.
# This will prevent types.Boolean from generating a CHECK
# constraint when that type is used.
supports_native_boolean = True
# The dialect supports ``ALTER TABLE``.
supports_alter = True
# The dialect supports CREATE SEQUENCE or similar.
supports_sequences = True
# The dialect supports a native ENUM construct.
supports_native_enum = False
# The dialect supports inserting multiple rows at once.
supports_multivalues_insert = True
# The dialect supports comments
supports_comments = True
preparer = SnowflakeIdentifierPreparer
ddl_compiler = SnowflakeDDLCompiler
type_compiler = SnowflakeTypeCompiler
statement_compiler = SnowflakeCompiler
execution_ctx_cls = SnowflakeExecutionContext
# indicates symbol names are UPPERCASEd if they are case insensitive
# within the database. If this is True, the methods normalize_name()
# and denormalize_name() must be provided.
requires_name_normalize = True
@classmethod
def dbapi(cls):
from snowflake import connector
return connector
def create_connect_args(self, url):
opts = url.translate_connect_args(username='user')
if 'database' in opts:
name_spaces = [unquote_plus(e) for e in opts['database'].split('/')]
if len(name_spaces) == 1:
pass
elif len(name_spaces) == 2:
opts['database'] = name_spaces[0]
opts['schema'] = name_spaces[1]
else:
raise sa_exc.ArgumentError(
"Invalid name space is specified: {0}".format(
opts['database']
))
if '.snowflakecomputing.com' not in opts['host'] and not opts.get(
'port'):
opts['account'] = opts['host']
if u'.' in opts['account']:
# remove region subdomain
opts['account'] = opts['account'][0:opts['account'].find(u'.')]
# remove external ID
opts['account'] = opts['account'].split('-')[0]
opts['host'] = opts['host'] + '.snowflakecomputing.com'
opts['port'] = '443'
opts['autocommit'] = False # autocommit is disabled by default
opts.update(url.query)
self._cache_column_metadata = opts.get('cache_column_metadata',
"false").lower() == 'true'
return ([], opts)
def has_table(self, connection, table_name, schema=None):
"""
Checks if the table exists
"""
return self._has_object(connection, 'TABLE', table_name, schema)
def has_sequence(self, connection, sequence_name, schema=None):
"""
Checks if the sequence exists
"""
return self._has_object(connection, 'SEQUENCE', sequence_name, schema)
def _has_object(self, connection, object_type, object_name, schema=None):
full_name = self._denormalize_quote_join(schema, object_name)
try:
results = connection.execute(
text("DESC {0} /* sqlalchemy:_has_object */ {1}".format(
object_type, full_name)))
row = results.fetchone()
have = row is not None
return have
except sa_exc.DBAPIError as e:
if e.orig.__class__ == sf_errors.ProgrammingError:
return False
raise
def normalize_name(self, name):
if name is None:
return None
if name.upper() == name and not \
self.identifier_preparer._requires_quotes(name.lower()):
return name.lower()
elif name.lower() == name:
return quoted_name(name, quote=True)
else:
return name
def denormalize_name(self, name):
if name is None:
return None
elif name.lower() == name and not \
self.identifier_preparer._requires_quotes(name.lower()):
name = name.upper()
return name
def _denormalize_quote_join(self, *idents):
ip = self.identifier_preparer
split_idents = reduce(
operator.add,
[ip._split_schema_by_dot(ids) for ids in idents if ids is not None])
return '.'.join(
ip._quote_free_identifiers(*split_idents))
@reflection.cache
def _current_database_schema(self, connection, **kw):
# "branches" a connection if one exists, otherwise creates one
# branched connections use the same underlying DBAPI but maintain separate references
with connection.connect() as sqla_con:
dbapi_con = sqla_con.connection
return (
self.normalize_name(dbapi_con.database),
self.normalize_name(dbapi_con.schema))
def _get_default_schema_name(self, connection):
# NOTE: no cache object is passed here
_, current_schema = self._current_database_schema(connection)
return current_schema
@staticmethod
def _map_name_to_idx(result):
name_to_idx = {}
for idx, col in enumerate(result.cursor.description):
name_to_idx[col[0]] = idx
return name_to_idx
@reflection.cache
def get_indexes(self, connection, table_name, schema=None, **kw):
"""
Gets all indexes
"""
# no index is supported by Snowflake
return []
@reflection.cache
def get_check_constraints(self, connection, table_name, schema, **kw):
# check constraints are not supported by Snowflake
return []
@reflection.cache
def _get_schema_primary_keys(self, connection, schema, **kw):
result = connection.execute(text(
"SHOW /* sqlalchemy:_get_schema_primary_keys */PRIMARY KEYS IN SCHEMA {0}".format(schema)
))
ans = {}
for row in result:
table_name = self.normalize_name(row['table_name'])
if table_name not in ans:
ans[table_name] = {'constrained_columns': [], 'name': self.normalize_name(row['constraint_name'])}
ans[table_name]['constrained_columns'].append(self.normalize_name(row['column_name']))
return ans
def get_pk_constraint(self, connection, table_name, schema=None, **kw):
schema = schema or self.default_schema_name
current_database, current_schema = self._current_database_schema(connection, **kw)
full_schema_name = self._denormalize_quote_join(
current_database, schema if schema else current_schema)
return self._get_schema_primary_keys(
connection,
self.denormalize_name(full_schema_name),
**kw
).get(table_name, {'constrained_columns': [],
'name': None})
@reflection.cache
def _get_schema_unique_constraints(self, connection, schema, **kw):
result = connection.execute(text(
"SHOW /* sqlalchemy:_get_schema_unique_constraints */ UNIQUE KEYS IN SCHEMA {0}".format(schema)
))
unique_constraints = {}
for row in result:
name = self.normalize_name(row['constraint_name'])
if name not in unique_constraints:
unique_constraints[name] = {
'column_names': [self.normalize_name(row['column_name'])],
'name': name,
'table_name': self.normalize_name(row['table_name'])
}
else:
unique_constraints[name]['column_names'].append(self.normalize_name(row['column_name']))
ans = defaultdict(list)
for constraint in unique_constraints.values():
table_name = constraint.pop('table_name')
ans[table_name].append(constraint)
return ans
def get_unique_constraints(self, connection, table_name, schema, **kw):
schema = schema or self.default_schema_name
current_database, current_schema = self._current_database_schema(connection, **kw)
full_schema_name = self._denormalize_quote_join(
current_database, schema if schema else current_schema)
return self._get_schema_unique_constraints(
connection,
self.denormalize_name(full_schema_name),
**kw
).get(table_name, [])
@reflection.cache
def _get_schema_foreign_keys(self, connection, schema, **kw):
_, current_schema = self._current_database_schema(connection, **kw)
result = connection.execute(text(
"SHOW /* sqlalchemy:_get_schema_foreign_keys */ IMPORTED KEYS IN SCHEMA {0}".format(schema)
))
foreign_key_map = {}
for row in result:
name = self.normalize_name(row['fk_name'])
if name not in foreign_key_map:
referred_schema = self.normalize_name(row['pk_schema_name'])
foreign_key_map[name] = {
'constrained_columns': [self.normalize_name(row['fk_column_name'])],
# referred schema should be None in context where it doesn't need to be specified
# https://docs.sqlalchemy.org/en/14/core/reflection.html#reflection-schema-qualified-interaction
'referred_schema': (referred_schema
if referred_schema not in (self.default_schema_name, current_schema)
else None),
'referred_table': self.normalize_name(row['pk_table_name']),
'referred_columns': [self.normalize_name(row['pk_column_name'])],
'name': name,
'table_name': self.normalize_name(row['fk_table_name'])
}
else:
foreign_key_map[name]['constrained_columns'].append(self.normalize_name(row['fk_column_name']))
foreign_key_map[name]['referred_columns'].append(self.normalize_name(row['pk_column_name']))
ans = {}
for _, v in iteritems(foreign_key_map):
if v['table_name'] not in ans:
ans[v['table_name']] = []
ans[v['table_name']].append({k2: v2 for k2, v2 in iteritems(v) if k2 != 'table_name'})
return ans
def get_foreign_keys(self, connection, table_name, schema=None, **kw):
"""
Gets all foreign keys for a table
"""
schema = schema or self.default_schema_name
current_database, current_schema = self._current_database_schema(connection, **kw)
full_schema_name = self._denormalize_quote_join(
current_database, schema if schema else current_schema)
foreign_key_map = self._get_schema_foreign_keys(connection, self.denormalize_name(full_schema_name), **kw)
return foreign_key_map.get(table_name, [])
@reflection.cache
def _get_schema_columns(self, connection, schema, **kw):
"""Get all columns in the schema, if we hit 'Information schema query returned too much data' problem return
None, as it is cacheable and is an unexpected return type for this function"""
ans = {}
current_database, _ = self._current_database_schema(connection, **kw)
full_schema_name = self._denormalize_quote_join(current_database, schema)
try:
schema_primary_keys = self._get_schema_primary_keys(connection, full_schema_name, **kw)
result = connection.execute(text("""
SELECT /* sqlalchemy:_get_schema_columns */
ic.table_name,
ic.column_name,
ic.data_type,
ic.character_maximum_length,
ic.numeric_precision,
ic.numeric_scale,
ic.is_nullable,
ic.column_default,
ic.is_identity,
ic.comment
FROM information_schema.columns ic
WHERE ic.table_schema=:table_schema
ORDER BY ic.ordinal_position"""), {"table_schema": self.denormalize_name(schema)})
except sa_exc.ProgrammingError as pe:
if pe.orig.errno == 90030:
# This means that there are too many tables in the schema, we need to go more granular
return None # None triggers _get_table_columns while staying cacheable
raise
for (table_name,
column_name,
coltype,
character_maximum_length,
numeric_precision,
numeric_scale,
is_nullable,
column_default,
is_identity,
comment) in result:
table_name = self.normalize_name(table_name)
column_name = self.normalize_name(column_name)
if table_name not in ans:
ans[table_name] = list()
if column_name.startswith('sys_clustering_column'):
continue # ignoring clustering column
col_type = self.ischema_names.get(coltype, None)
col_type_kw = {}
if col_type is None:
sa_util.warn(
"Did not recognize type '{}' of column '{}'".format(
coltype, column_name))
col_type = sqltypes.NULLTYPE
else:
if issubclass(col_type, FLOAT):
col_type_kw['precision'] = numeric_precision
col_type_kw['decimal_return_scale'] = numeric_scale
elif issubclass(col_type, sqltypes.Numeric):
col_type_kw['precision'] = numeric_precision
col_type_kw['scale'] = numeric_scale
elif issubclass(col_type,
(sqltypes.String, sqltypes.BINARY)):
col_type_kw['length'] = character_maximum_length
type_instance = col_type(**col_type_kw)
current_table_pks = schema_primary_keys.get(table_name)
ans[table_name].append({
'name': column_name,
'type': type_instance,
'nullable': is_nullable == 'YES',
'default': column_default,
'autoincrement': is_identity == 'YES',
'comment': comment,
'primary_key': (column_name in schema_primary_keys[table_name]['constrained_columns']) if current_table_pks else False,
})
return ans
@reflection.cache
def _get_table_columns(self, connection, table_name, schema=None, **kw):
"""Get all columns in a table in a schema"""
ans = []
current_database, _ = self._current_database_schema(connection, **kw)
full_schema_name = self._denormalize_quote_join(current_database, schema)
schema_primary_keys = self._get_schema_primary_keys(connection, full_schema_name, **kw)
result = connection.execute(text("""
SELECT /* sqlalchemy:get_table_columns */
ic.table_name,
ic.column_name,
ic.data_type,
ic.character_maximum_length,
ic.numeric_precision,
ic.numeric_scale,
ic.is_nullable,
ic.column_default,
ic.is_identity,
ic.comment
FROM information_schema.columns ic
WHERE ic.table_schema=:table_schema
AND ic.table_name=:table_name
ORDER BY ic.ordinal_position"""), {"table_schema": self.denormalize_name(schema),
"table_name": self.denormalize_name(table_name)})
for (table_name,
column_name,
coltype,
character_maximum_length,
numeric_precision,
numeric_scale,
is_nullable,
column_default,
is_identity,
comment) in result:
table_name = self.normalize_name(table_name)
column_name = self.normalize_name(column_name)
if column_name.startswith('sys_clustering_column'):
continue # ignoring clustering column
col_type = self.ischema_names.get(coltype, None)
col_type_kw = {}
if col_type is None:
sa_util.warn(
"Did not recognize type '{}' of column '{}'".format(
coltype, column_name))
col_type = sqltypes.NULLTYPE
else:
if issubclass(col_type, FLOAT):
col_type_kw['precision'] = numeric_precision
col_type_kw['decimal_return_scale'] = numeric_scale
elif issubclass(col_type, sqltypes.Numeric):
col_type_kw['precision'] = numeric_precision
col_type_kw['scale'] = numeric_scale
elif issubclass(col_type,
(sqltypes.String, sqltypes.BINARY)):
col_type_kw['length'] = character_maximum_length
type_instance = col_type(**col_type_kw)
current_table_pks = schema_primary_keys.get(table_name)
ans.append({
'name': column_name,
'type': type_instance,
'nullable': is_nullable == 'YES',
'default': column_default,
'autoincrement': is_identity == 'YES',
'comment': comment if comment != '' else None,
'primary_key': (column_name in schema_primary_keys[table_name][
'constrained_columns']) if current_table_pks else False,
})
return ans
def get_columns(self, connection, table_name, schema=None, **kw):
"""
Gets all column info given the table info
"""
schema = schema or self.default_schema_name
if not schema:
_, schema = self._current_database_schema(connection, **kw)
schema_columns = self._get_schema_columns(connection, schema, **kw)
if schema_columns is None:
# Too many results, fall back to only query about single table
return self._get_table_columns(connection, table_name, schema, **kw)
return schema_columns[self.normalize_name(table_name)]
@reflection.cache
def get_table_names(self, connection, schema=None, **kw):
"""
Gets all table names.
"""
schema = schema or self.default_schema_name
current_schema = schema
if schema:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_table_names */ TABLES IN {0}".format(
self._denormalize_quote_join(schema))))
else:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_table_names */ TABLES"))
_, current_schema = self._current_database_schema(connection)
ret = [self.normalize_name(row[1]) for row in cursor]
return ret
@reflection.cache
def get_view_names(self, connection, schema=None, **kw):
"""
Gets all view names
"""
schema = schema or self.default_schema_name
if schema:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_view_names */ VIEWS IN {0}".format(
self._denormalize_quote_join((schema)))))
else:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_view_names */ VIEWS"))
return [self.normalize_name(row[1]) for row in cursor]
@reflection.cache
def get_view_definition(self, connection, view_name, schema=None, **kw):
"""
Gets the view definition
"""
schema = schema or self.default_schema_name
if schema:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_view_definition */ VIEWS "
"LIKE '{0}' IN {1}".format(
self._denormalize_quote_join(view_name),
self._denormalize_quote_join(schema))))
else:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_view_definition */ VIEWS "
"LIKE '{0}'".format(
self._denormalize_quote_join(view_name))))
n2i = self.__class__._map_name_to_idx(cursor)
try:
ret = cursor.fetchone()
if ret:
return ret[n2i['text']]
except Exxception:
pass
return None
def get_temp_table_names(self, connection, schema=None, **kw):
schema = schema or self.default_schema_name
if schema:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_temp_table_names */ TABLES "
"IN {0}".format(
self._denormalize_quote_join(schema))))
else:
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_temp_table_names */ TABLES"))
ret = []
n2i = self.__class__._map_name_to_idx(cursor)
for row in cursor:
if row[n2i['kind']] == 'TEMPORARY':
ret.append(self.normalize_name(row[n2i['name']]))
return ret
def get_schema_names(self, connection, **kw):
"""
Gets all schema names.
"""
cursor = connection.execute(text(
"SHOW /* sqlalchemy:get_schema_names */ SCHEMAS"))
return [self.normalize_name(row[1]) for row in cursor]
def _get_table_comment(self, connection, table_name, schema=None, **kw):
"""
Returns comment of table in a dictionary as described by SQLAlchemy spec.
"""
sql_command = "SHOW /* sqlalchemy:_get_table_comment */ " \
"TABLES LIKE '{}'{}".format(
table_name,
(' IN SCHEMA {}'.format(self.normalize_name(schema))) if schema else ''
)
cursor = connection.execute(text(sql_command))
return cursor.fetchone()
def _get_view_comment(self, connection, table_name, schema=None, **kw):
"""
Returns comment of view in a dictionary as described by SQLAlchemy spec.
"""
sql_command = "SHOW /* sqlalchemy:_get_view_comment */ " \
"VIEWS LIKE '{}'{}".format(
table_name,
(' IN SCHEMA {}'.format(self.normalize_name(schema))) if schema else ''
)
cursor = connection.execute(text(sql_command))
return cursor.fetchone()
def get_table_comment(self, connection, table_name, schema=None, **kw):
"""
Returns comment associated with a table (or view) in a dictionary as
SQLAlchemy expects. Note that since SQLAlchemy may not (in fact,
typically does not) know if this is a table or a view, we have to
handle both cases here.
"""
result = self._get_table_comment(connection, table_name, schema)
if result is None:
# the "table" being reflected is actually a view
result = self._get_view_comment(connection, table_name, schema)
return {'text': result['comment'] if result and result['comment'] else None}
@sa_vnt.listens_for(Table, 'before_create')
def check_table(table, connection, _ddl_runner, **kw):
if isinstance(_ddl_runner.dialect, SnowflakeDialect) and table.indexes:
raise NotImplementedError("Snowflake does not support indexes")
dialect = SnowflakeDialect