-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Fix failing testInsertIntoNotNullColumn in SingleStore #13677
Conversation
@@ -223,6 +223,31 @@ public void testSingleStoreTinyint() | |||
assertUpdate("DROP TABLE mysql_test_tinyint1"); | |||
} | |||
|
|||
// Overridden because the method from BaseConnectorTest fails on one of the assertions, see TODO below | |||
@Override | |||
public void testInsertIntoNotNullColumn() |
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.
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.
hmm how come it didn't fail when I added 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.
SingleStore tests don't run when the PR comes from forked repository because it requires a license.
https://github.com/trinodb/trino/blob/master/plugin/trino-singlestore/src/test/java/io/trino/plugin/singlestore/TestingSingleStoreServer.java#L31
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.
oh right, is SingleStore the only one that failed because of my change?
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.
I believe so. This master job https://github.com/trinodb/trino/runs/7822744342 was green except for test (plugin/trino-singlestore)
yesterday.
Description
Fix failing
testInsertIntoNotNullColumn
in SingleStore. The test has been failing on master.https://github.com/trinodb/trino/runs/7832907169
Documentation
(x) No documentation is needed.
Release notes
(x) No release notes entries required.