Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Small fix for issue #102 #104

Merged
merged 1 commit into from
Jun 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion data_diff/databases/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def __init__(self, host, port, user, password, *, database, thread_count, **kw):

super().__init__(thread_count=thread_count)

self.default_schema = user
# In MySQL schema and database are synonymous
self.default_schema = database

def create_connection(self):
mysql = import_mysql()
Expand Down