Skip to content

Commit f915019

Browse files
committedFeb 26, 2025
✅ ass test for INET4 and INET6 types in MySQL to SQLite translation
1 parent 43872f4 commit f915019

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎tests/unit/mysql_to_sqlite3_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ def test_translate_type_from_mysql_to_sqlite_all_valid_columns(self) -> None:
7979
"MEDIUMTEXT",
8080
"SET",
8181
"TINYTEXT",
82+
"INET4",
83+
"INET6",
8284
}:
8385
assert MySQLtoSQLite._translate_type_from_mysql_to_sqlite(column_type) == "TEXT"
8486
elif column_type == "JSON":

0 commit comments

Comments
 (0)
Failed to load comments.