-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add CI for MySQL #1019
feat: add CI for MySQL #1019
Conversation
I will move the CI to |
return mapping[mysql_type] | ||
else: | ||
raise Exception( | ||
f"Unsupported column {mysql_type} encountered in the mysql table. Please raise a feature request!" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add the link to our Slack in this message (https://evadb.ai/community)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add self.connection = None
in the base class. Else it throws property not found in some cases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean by the link?
@@ -186,10 +186,6 @@ def test_should_run_query_in_mysql(self): | |||
self._execute_native_query() | |||
self._execute_evadb_query() | |||
|
|||
# Test error. | |||
self._raise_error_on_multiple_creation() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we removing it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test is actually invariant on which database engine we use. I currently just test on Postgres
, so we should skip here.
return mapping[mysql_type] | ||
else: | ||
raise Exception( | ||
f"Unsupported column {mysql_type} encountered in the mysql table. Please raise a feature request!" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add self.connection = None
in the base class. Else it throws property not found in some cases.
7c0d5d5
to
634567f
Compare
634567f
to
f70592b
Compare
Co-authored-by: Rohith Mulumudy <[email protected]>
No description provided.