We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e633770 commit 4ac08e7Copy full SHA for 4ac08e7
src/mysql_to_sqlite3/cli.py
@@ -212,7 +212,11 @@ def cli(
212
limit_rows=limit_rows,
213
collation=collation,
214
prefix_indices=prefix_indices,
215
- without_foreign_keys=without_foreign_keys or (mysql_tables is not None and len(mysql_tables) > 0),
+ without_foreign_keys=without_foreign_keys
216
+ or (
217
+ (mysql_tables is not None and len(mysql_tables) > 0)
218
+ or (exclude_mysql_tables is not None and len(exclude_mysql_tables) > 0)
219
+ ),
220
without_tables=without_tables,
221
without_data=without_data,
222
mysql_host=mysql_host,
0 commit comments