We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Core
1.17.2
Yes
MacOS
ARM
Not relevant.
I have a SQL script with the following statement:
create table `form;3` ( id varchar(100), `first;name` varchar(100), `last;name` varchar(100), primary key (id) );
ScriptSplitter breaks this into multiple statements. Version 1.17.1 was not splitting it up, i.e. it remained a single statement.
No response
Failing unit test:
@Test public void testBacktickEnquotedSemicolon() { String script = "CREATE TABLE `bar;bar` (\n" + " end_time VARCHAR(255)\n" + ");"; List<String> expected = Arrays.asList( "CREATE TABLE `bar;bar` ( end_time VARCHAR(255) )" ); splitAndCompare(script, expected); }
The text was updated successfully, but these errors were encountered:
Fixed by #8593
Sorry, something went wrong.
No branches or pull requests
Module
Core
Testcontainers version
1.17.2
Using the latest Testcontainers version?
Yes
Host OS
MacOS
Host Arch
ARM
Docker version
What happened?
I have a SQL script with the following statement:
ScriptSplitter breaks this into multiple statements. Version 1.17.1 was not splitting it up, i.e. it remained a single statement.
Relevant log output
No response
Additional Information
Failing unit test:
The text was updated successfully, but these errors were encountered: