-
Notifications
You must be signed in to change notification settings - Fork 15
/
table.py
302 lines (236 loc) · 10.4 KB
/
table.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
#!/usr/bin/env python
"""
This module contains the agatesql extensions to
:class:`Table <agate.table.Table>`.
"""
import decimal
import datetime
import six
import agate
from sqlalchemy import Column, MetaData, Table, create_engine, dialects
from sqlalchemy.engine import Connection
from sqlalchemy.types import BOOLEAN, DECIMAL, DATE, TIMESTAMP, VARCHAR, Interval
from sqlalchemy.dialects.oracle import INTERVAL as ORACLE_INTERVAL
from sqlalchemy.dialects.postgresql import INTERVAL as POSTGRES_INTERVAL
from sqlalchemy.schema import CreateTable
from sqlalchemy.sql import select
SQL_TYPE_MAP = {
agate.Boolean: BOOLEAN,
agate.Number: DECIMAL,
agate.Date: DATE,
agate.DateTime: TIMESTAMP,
agate.TimeDelta: None, # See below
agate.Text: VARCHAR
}
INTERVAL_MAP = {
'postgresql': POSTGRES_INTERVAL,
'oracle': ORACLE_INTERVAL
}
def get_connection(connection_or_string=None):
"""
Gets a connection to a specific SQL alchemy backend. If an existing
connection is provided, it will be passed through. If no connection
string is provided, then in in-memory SQLite database will be created.
"""
if connection_or_string is None:
engine = create_engine('sqlite:///:memory:')
connection = engine.connect()
elif isinstance(connection_or_string, Connection):
connection = connection_or_string
else:
engine = create_engine(connection_or_string)
connection = engine.connect()
return connection
def from_sql(cls, connection_or_string, table_name):
"""
Create a new :class:`agate.Table` from a given SQL table. Types will be
inferred from the database schema.
Monkey patched as class method :meth:`Table.from_sql`.
:param connection_or_string:
An existing sqlalchemy connection or connection string.
:param table_name:
The name of a table in the referenced database.
"""
connection = get_connection(connection_or_string)
metadata = MetaData(connection)
sql_table = Table(table_name, metadata, autoload=True, autoload_with=connection)
column_names = []
column_types = []
for sql_column in sql_table.columns:
column_names.append(sql_column.name)
if type(sql_column.type) in INTERVAL_MAP.values():
py_type = datetime.timedelta
else:
py_type = sql_column.type.python_type
if py_type in [int, float, decimal.Decimal]:
if py_type is float:
sql_column.type.asdecimal = True
column_types.append(agate.Number())
elif py_type is bool:
column_types.append(agate.Boolean())
elif issubclass(py_type, six.string_types):
column_types.append(agate.Text())
elif py_type is datetime.date:
column_types.append(agate.Date())
elif py_type is datetime.datetime:
column_types.append(agate.DateTime())
elif py_type is datetime.timedelta:
column_types.append(agate.TimeDelta())
else:
raise ValueError('Unsupported sqlalchemy column type: %s' % type(sql_column.type))
s = select([sql_table])
rows = connection.execute(s)
return agate.Table(rows, column_names, column_types)
def from_sql_query(self, query):
"""
Create an agate table from the results of a SQL query. Note that column
data types will be inferred from the returned data, not the column types
declared in SQL (if any). This is more flexible than :func:`.from_sql` but
could result in unexpected typing issues.
:param query:
A SQL query to execute.
"""
connection = get_connection()
# Must escape '%'.
# @see https://github.com/wireservice/csvkit/issues/440
# @see https://bitbucket.org/zzzeek/sqlalchemy/commits/5bc1f17cb53248e7cea609693a3b2a9bb702545b
rows = connection.execute(query.replace('%', '%%'))
table = agate.Table(list(rows), column_names=rows._metadata.keys)
return table
def make_sql_column(column_name, column, sql_type_kwargs=None, sql_column_kwargs=None):
"""
Creates a sqlalchemy column from agate column data.
:param column_name:
The name of the column.
:param column:
The agate column.
:param sql_column_kwargs:
Additional kwargs to passed through to the Column constructor, such as
``nullable``.
"""
sql_column_type = None
for agate_type, sql_type in SQL_TYPE_MAP.items():
if isinstance(column.data_type, agate_type):
sql_column_type = sql_type
break
if sql_column_type is None:
raise ValueError('Unsupported column type: %s' % sql_column_type)
sql_type_kwargs = sql_type_kwargs or {}
sql_column_kwargs = sql_column_kwargs or {}
return Column(column_name, sql_column_type(**sql_type_kwargs), **sql_column_kwargs)
def make_sql_table(table, table_name, dialect=None, db_schema=None, constraints=True, connection=None):
"""
Generates a SQL alchemy table from an agate table.
"""
metadata = MetaData(connection)
sql_table = Table(table_name, metadata, schema=db_schema)
if dialect in INTERVAL_MAP.keys():
SQL_TYPE_MAP[agate.TimeDelta] = INTERVAL_MAP[dialect]
else:
SQL_TYPE_MAP[agate.TimeDelta] = Interval
for column_name, column in table.columns.items():
sql_type_kwargs = {}
sql_column_kwargs = {}
if constraints:
if isinstance(column.data_type, agate.Text):
# If length is zero, SQLAlchemy may raise "VARCHAR requires a length on dialect mysql".
sql_type_kwargs['length'] = table.aggregate(agate.MaxLength(column_name)) or 1
# PostgreSQL and SQLite don't have scale default 0.
# @see https://www.postgresql.org/docs/9.2/static/datatype-numeric.html
# @see https://www.sqlite.org/datatype3.html
if isinstance(column.data_type, agate.Number) and dialect in ('mssql', 'mysql', 'oracle'):
# MySQL has precision range 1-65 and default 10, scale default 0.
# @see https://dev.mysql.com/doc/refman/5.7/en/fixed-point-types.html
# Oracle has precision range 1-38 and default 38, scale default 0.
# @see https://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm#CNCPT1832
# SQL Server has range 1-38 and default 18, scale default 0.
# @see https://docs.microsoft.com/en-us/sql/t-sql/data-types/decimal-and-numeric-transact-sql
sql_type_kwargs['precision'] = 38
sql_type_kwargs['scale'] = table.aggregate(agate.MaxPrecision(column_name))
# Avoid errors due to NO_ZERO_DATE.
# @see http://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_no_zero_date
if not isinstance(column.data_type, agate.DateTime):
sql_column_kwargs['nullable'] = table.aggregate(agate.HasNulls(column_name))
sql_table.append_column(make_sql_column(column_name, column, sql_type_kwargs, sql_column_kwargs))
return sql_table
def to_sql(self, connection_or_string, table_name, overwrite=False, create=True, create_if_not_exists=False, insert=True, prefixes=[], db_schema=None, constraints=True):
"""
Write this table to the given SQL database.
Monkey patched as instance method :meth:`Table.to_sql`.
:param connection_or_string:
An existing sqlalchemy connection or a connection string.
:param table_name:
The name of the SQL table to create.
:param overwrite:
Drop any existing table with the same name before creating.
:param create:
Create the table.
:param create_if_not_exists:
When creating the table, don't fail if the table already exists.
:param insert:
Insert table data.
:param prefixes:
Add prefixes to the insert query.
:param db_schema:
Create table in the specified database schema.
:param constraints
Generate constraints such as ``nullable`` for table columns.
"""
connection = get_connection(connection_or_string)
dialect = connection.engine.dialect.name
sql_table = make_sql_table(self, table_name, dialect=dialect, db_schema=db_schema, constraints=constraints, connection=connection)
if create:
if overwrite:
sql_table.drop(checkfirst=True)
sql_table.create(checkfirst=create_if_not_exists)
if insert:
insert = sql_table.insert()
for prefix in prefixes:
insert = insert.prefix_with(prefix)
connection.execute(insert, [dict(zip(self.column_names, row)) for row in self.rows])
return sql_table
def to_sql_create_statement(self, table_name, dialect=None, db_schema=None, constraints=True):
"""
Generates a CREATE TABLE statement for this SQL table, but does not execute
it.
:param table_name:
The name of the SQL table to create.
:param dialect:
The dialect of SQL to use for the table statement.
:param db_schema:
Create table in the specified database schema.
:param constraints
Generate constraints such as ``nullable`` for table columns.
"""
sql_table = make_sql_table(self, table_name, dialect=dialect, db_schema=db_schema, constraints=constraints)
if dialect:
sql_dialect = dialects.registry.load(dialect)()
else:
sql_dialect = None
return six.text_type(CreateTable(sql_table).compile(dialect=sql_dialect)).strip() + ';'
def sql_query(self, query, table_name='agate'):
"""
Convert this agate table into an intermediate, in-memory sqlite table,
run a query against it, and then return the results as a new agate table.
Multiple queries may be separated with semicolons.
:param query:
One SQL query, or multiple queries to be run consecutively separated
with semicolons.
:param table_name:
The name to use for the table in the queries, defaults to ``agate``.
"""
connection = get_connection()
# Execute the specified SQL queries
queries = query.split(';')
rows = None
self.to_sql(connection, table_name)
for q in queries:
if q:
rows = connection.execute(q)
table = agate.Table(list(rows), column_names=rows._metadata.keys)
return table
agate.Table.from_sql = classmethod(from_sql)
agate.Table.from_sql_query = classmethod(from_sql_query)
agate.Table.to_sql = to_sql
agate.Table.to_sql_create_statement = to_sql_create_statement
agate.Table.sql_query = sql_query