We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a4c5d commit 175fd03Copy full SHA for 175fd03
src/sqlite3_to_mysql/mysql_utils.py
@@ -8,6 +8,7 @@
8
from packaging import version
9
from packaging.version import Version
10
11
+
12
# Shamelessly copied from SQLAlchemy's dialects/mysql/__init__.py
13
MYSQL_COLUMN_TYPES: t.Tuple[str, ...] = (
14
"BIGINT",
src/sqlite3_to_mysql/transporter.py
@@ -29,6 +29,7 @@
29
convert_timedelta,
30
unicase_compare,
31
)
32
33
from .mysql_utils import (
34
MYSQL_BLOB_COLUMN_TYPES,
35
MYSQL_COLUMN_TYPES,
@@ -38,8 +39,8 @@
38
39
MYSQL_TEXT_COLUMN_TYPES_WITH_JSON,
40
check_mysql_fulltext_support,
41
check_mysql_json_support,
- safe_identifier_length,
42
check_mysql_values_alias_support,
43
+ safe_identifier_length,
44
45
from .types import SQLite3toMySQLAttributes, SQLite3toMySQLParams
46
0 commit comments