From 544cab47f32568f2453625e556a6aff38e0d6c98 Mon Sep 17 00:00:00 2001 From: MilovdZee Date: Sat, 13 Dec 2025 12:18:20 +0100 Subject: [PATCH 1/5] bug 119245: not 100% fix but better --- .gitignore | 3 ++ .idea/.gitignore | 8 ++++++ .idea/.name | 1 + .idea/codeStyles/codeStyleConfig.xml | 5 ++++ .idea/misc.xml | 6 ++++ .idea/vcs.xml | 6 ++++ lib/.gitignore | 2 ++ lib/build.gradle | 28 +++++++++++++++++++ lib/download-dependencies.sh | 1 + run-tests.sh | 5 ++++ src/build/build.iml | 17 +++++++++++ src/demo/demo.iml | 14 ++++++++++ src/generated/generated.iml | 11 ++++++++ src/legacy/legacy.iml | 13 +++++++++ src/main/core-api/core-api.iml | 11 ++++++++ src/main/core-api/core-api2.iml | 11 ++++++++ .../core-api/java/com/mysql/cj/QueryInfo.java | 2 +- src/main/core-impl/core-impl.iml | 15 ++++++++++ src/main/core-impl/core-impl2.iml | 17 +++++++++++ src/main/protocol-impl/protocol-impl.iml | 15 ++++++++++ src/main/protocol-impl/protocol-impl2.iml | 17 +++++++++++ src/main/user-api/user-api.iml | 13 +++++++++ src/main/user-api/user-api2.iml | 22 +++++++++++++++ src/main/user-impl/user-impl.iml | 14 ++++++++++ src/main/user-impl/user-impl2.iml | 15 ++++++++++ .../regression/StatementRegressionTest.java | 12 ++++++++ src/test/test.iml | 18 ++++++++++++ 27 files changed, 301 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 lib/.gitignore create mode 100644 lib/build.gradle create mode 100755 lib/download-dependencies.sh create mode 100755 run-tests.sh create mode 100644 src/build/build.iml create mode 100644 src/demo/demo.iml create mode 100644 src/generated/generated.iml create mode 100644 src/legacy/legacy.iml create mode 100644 src/main/core-api/core-api.iml create mode 100644 src/main/core-api/core-api2.iml create mode 100644 src/main/core-impl/core-impl.iml create mode 100644 src/main/core-impl/core-impl2.iml create mode 100644 src/main/protocol-impl/protocol-impl.iml create mode 100644 src/main/protocol-impl/protocol-impl2.iml create mode 100644 src/main/user-api/user-api.iml create mode 100644 src/main/user-api/user-api2.iml create mode 100644 src/main/user-impl/user-impl.iml create mode 100644 src/main/user-impl/user-impl2.iml create mode 100644 src/test/test.iml diff --git a/.gitignore b/.gitignore index 0662ee8f3..e07abd4c3 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,6 @@ .attach_pid* hs_err_pid*.log *.sh +.idea +!run-tests.sh +!lib/download-dependencies.sh diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..13566b81b --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 000000000..bda3ec1d0 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +ConnectorJ 9x \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 000000000..a55e7a179 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..81b14a440 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/lib/.gitignore b/lib/.gitignore new file mode 100644 index 000000000..18962b212 --- /dev/null +++ b/lib/.gitignore @@ -0,0 +1,2 @@ +.gradle +*.jar diff --git a/lib/build.gradle b/lib/build.gradle new file mode 100644 index 000000000..2dd7f5abc --- /dev/null +++ b/lib/build.gradle @@ -0,0 +1,28 @@ +plugins { + id 'java' +} + +repositories { + mavenCentral() +} + +dependencies { + implementation 'org.junit.jupiter:junit-jupiter:5.12.2' + implementation 'org.junit.platform:junit-platform-launcher:1.12.2' + implementation 'org.apiguardian:apiguardian-api:1.1.2' + implementation 'org.javassist:javassist:3.30.2-GA' + implementation 'com.google.protobuf:protobuf-java:4.31.1' + implementation 'com.mchange:c3p0:0.11.0' + implementation 'org.slf4j:slf4j-api:2.0.17' + implementation 'org.hamcrest:hamcrest:3.0' + implementation 'com.oracle.oci.sdk:oci-java-sdk-common:3.66.0' + implementation 'io.opentelemetry:opentelemetry-api:1.50.0' + implementation 'org.apache.ant:ant-junitlauncher:1.10.15' + implementation 'org.apache.ant:ant-junit:1.10.15' +} + +task downloadDependencies(type: Copy) { + description = 'Downloads all runtime dependencies into the libs folder' + from configurations.runtimeClasspath + into '.' +} diff --git a/lib/download-dependencies.sh b/lib/download-dependencies.sh new file mode 100755 index 000000000..1b8711f9f --- /dev/null +++ b/lib/download-dependencies.sh @@ -0,0 +1 @@ + gradle downloadDependencies diff --git a/run-tests.sh b/run-tests.sh new file mode 100755 index 000000000..39e417eda --- /dev/null +++ b/run-tests.sh @@ -0,0 +1,5 @@ +ant -lib lib/ant-junitlauncher-1.10.15.jar -lib lib/ant-junit-1.10.15.jar \ + -Dcom.mysql.cj.testsuite.test.class=testsuite.regression.StatementRegressionTest \ + -Dcom.mysql.cj.testsuite.test.methods=testBug119245_IntoInsideVar \ + -Dcom.mysql.cj.testsuite.url=jdbc:mysql://test:test@127.0.0.1:3306/test \ + test diff --git a/src/build/build.iml b/src/build/build.iml new file mode 100644 index 000000000..92c435754 --- /dev/null +++ b/src/build/build.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/demo/demo.iml b/src/demo/demo.iml new file mode 100644 index 000000000..220abd1ea --- /dev/null +++ b/src/demo/demo.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/generated/generated.iml b/src/generated/generated.iml new file mode 100644 index 000000000..908ad4f52 --- /dev/null +++ b/src/generated/generated.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/legacy/legacy.iml b/src/legacy/legacy.iml new file mode 100644 index 000000000..1c74a3825 --- /dev/null +++ b/src/legacy/legacy.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/core-api/core-api.iml b/src/main/core-api/core-api.iml new file mode 100644 index 000000000..908ad4f52 --- /dev/null +++ b/src/main/core-api/core-api.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/core-api/core-api2.iml b/src/main/core-api/core-api2.iml new file mode 100644 index 000000000..908ad4f52 --- /dev/null +++ b/src/main/core-api/core-api2.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/core-api/java/com/mysql/cj/QueryInfo.java b/src/main/core-api/java/com/mysql/cj/QueryInfo.java index 4dd0e1bb4..4d023d1ab 100644 --- a/src/main/core-api/java/com/mysql/cj/QueryInfo.java +++ b/src/main/core-api/java/com/mysql/cj/QueryInfo.java @@ -59,7 +59,7 @@ public class QueryInfo { private static final String AS_CLAUSE = "AS"; private static final String[] ODKU_CLAUSE = new String[] { "ON", "DUPLICATE", "KEY", "UPDATE" }; private static final String LAST_INSERT_ID_FUNC = "LAST_INSERT_ID"; - private static final String INTO_CLAUSE = "INTO"; + private static final String INTO_CLAUSE = " INTO "; private QueryInfo baseQueryInfo = null; diff --git a/src/main/core-impl/core-impl.iml b/src/main/core-impl/core-impl.iml new file mode 100644 index 000000000..a7e23fa43 --- /dev/null +++ b/src/main/core-impl/core-impl.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/core-impl/core-impl2.iml b/src/main/core-impl/core-impl2.iml new file mode 100644 index 000000000..b42328dcf --- /dev/null +++ b/src/main/core-impl/core-impl2.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/protocol-impl/protocol-impl.iml b/src/main/protocol-impl/protocol-impl.iml new file mode 100644 index 000000000..165ee28c8 --- /dev/null +++ b/src/main/protocol-impl/protocol-impl.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/protocol-impl/protocol-impl2.iml b/src/main/protocol-impl/protocol-impl2.iml new file mode 100644 index 000000000..94e4b4769 --- /dev/null +++ b/src/main/protocol-impl/protocol-impl2.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/user-api/user-api.iml b/src/main/user-api/user-api.iml new file mode 100644 index 000000000..480c574c7 --- /dev/null +++ b/src/main/user-api/user-api.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/user-api/user-api2.iml b/src/main/user-api/user-api2.iml new file mode 100644 index 000000000..6100736b5 --- /dev/null +++ b/src/main/user-api/user-api2.iml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/user-impl/user-impl.iml b/src/main/user-impl/user-impl.iml new file mode 100644 index 000000000..64def5695 --- /dev/null +++ b/src/main/user-impl/user-impl.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/user-impl/user-impl2.iml b/src/main/user-impl/user-impl2.iml new file mode 100644 index 000000000..7e2b18cc2 --- /dev/null +++ b/src/main/user-impl/user-impl2.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/java/testsuite/regression/StatementRegressionTest.java b/src/test/java/testsuite/regression/StatementRegressionTest.java index 96014d2e3..6cd030113 100644 --- a/src/test/java/testsuite/regression/StatementRegressionTest.java +++ b/src/test/java/testsuite/regression/StatementRegressionTest.java @@ -14660,4 +14660,16 @@ public void testBug107543_IntoFile() throws Exception { } } + /** + * Tests fix for Bug#119245, INTO should be allowed + * + * @throws Exception + */ + @Test + public void testBug119245_IntoInsideVar() throws Exception { + createTable("testbug119245Table", "(id INT AUTO_INCREMENT PRIMARY KEY, margintotal VARCHAR(255))"); + + // Test 1: execute() with INTO @var + assertEquals(0, this.stmt.executeQuery("SELECT margintotal FROM testbug119245Table").getFetchSize()); + } } diff --git a/src/test/test.iml b/src/test/test.iml new file mode 100644 index 000000000..2f2555dcb --- /dev/null +++ b/src/test/test.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file From 3e46e0540dc4737c6bf7b67d24d20ecf9d8970d7 Mon Sep 17 00:00:00 2001 From: MilovdZee Date: Sat, 13 Dec 2025 12:29:36 +0100 Subject: [PATCH 2/5] .idea cleanup --- .idea/.gitignore | 8 -------- .idea/.name | 1 - .idea/codeStyles/codeStyleConfig.xml | 5 ----- .idea/misc.xml | 6 ------ .idea/vcs.xml | 6 ------ 5 files changed, 26 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/.name delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b81b..000000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index bda3ec1d0..000000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -ConnectorJ 9x \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index a55e7a179..000000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 81b14a440..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddfb..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From f8d67a37e8182ce6baa6f46a718ba93993edf23a Mon Sep 17 00:00:00 2001 From: MilovdZee Date: Sat, 13 Dec 2025 12:33:33 +0100 Subject: [PATCH 3/5] .iml cleanup --- src/build/build.iml | 17 ----------------- src/demo/demo.iml | 14 -------------- src/generated/generated.iml | 11 ----------- src/legacy/legacy.iml | 13 ------------- src/main/core-api/core-api.iml | 11 ----------- src/main/core-api/core-api2.iml | 11 ----------- src/main/core-impl/core-impl.iml | 15 --------------- src/main/core-impl/core-impl2.iml | 17 ----------------- src/main/protocol-impl/protocol-impl.iml | 15 --------------- src/main/protocol-impl/protocol-impl2.iml | 17 ----------------- src/main/user-api/user-api.iml | 13 ------------- src/main/user-api/user-api2.iml | 22 ---------------------- src/main/user-impl/user-impl.iml | 14 -------------- src/main/user-impl/user-impl2.iml | 15 --------------- src/test/test.iml | 18 ------------------ 15 files changed, 223 deletions(-) delete mode 100644 src/build/build.iml delete mode 100644 src/demo/demo.iml delete mode 100644 src/generated/generated.iml delete mode 100644 src/legacy/legacy.iml delete mode 100644 src/main/core-api/core-api.iml delete mode 100644 src/main/core-api/core-api2.iml delete mode 100644 src/main/core-impl/core-impl.iml delete mode 100644 src/main/core-impl/core-impl2.iml delete mode 100644 src/main/protocol-impl/protocol-impl.iml delete mode 100644 src/main/protocol-impl/protocol-impl2.iml delete mode 100644 src/main/user-api/user-api.iml delete mode 100644 src/main/user-api/user-api2.iml delete mode 100644 src/main/user-impl/user-impl.iml delete mode 100644 src/main/user-impl/user-impl2.iml delete mode 100644 src/test/test.iml diff --git a/src/build/build.iml b/src/build/build.iml deleted file mode 100644 index 92c435754..000000000 --- a/src/build/build.iml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/demo/demo.iml b/src/demo/demo.iml deleted file mode 100644 index 220abd1ea..000000000 --- a/src/demo/demo.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/generated/generated.iml b/src/generated/generated.iml deleted file mode 100644 index 908ad4f52..000000000 --- a/src/generated/generated.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/legacy/legacy.iml b/src/legacy/legacy.iml deleted file mode 100644 index 1c74a3825..000000000 --- a/src/legacy/legacy.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/core-api/core-api.iml b/src/main/core-api/core-api.iml deleted file mode 100644 index 908ad4f52..000000000 --- a/src/main/core-api/core-api.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/core-api/core-api2.iml b/src/main/core-api/core-api2.iml deleted file mode 100644 index 908ad4f52..000000000 --- a/src/main/core-api/core-api2.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/core-impl/core-impl.iml b/src/main/core-impl/core-impl.iml deleted file mode 100644 index a7e23fa43..000000000 --- a/src/main/core-impl/core-impl.iml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/core-impl/core-impl2.iml b/src/main/core-impl/core-impl2.iml deleted file mode 100644 index b42328dcf..000000000 --- a/src/main/core-impl/core-impl2.iml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/protocol-impl/protocol-impl.iml b/src/main/protocol-impl/protocol-impl.iml deleted file mode 100644 index 165ee28c8..000000000 --- a/src/main/protocol-impl/protocol-impl.iml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/protocol-impl/protocol-impl2.iml b/src/main/protocol-impl/protocol-impl2.iml deleted file mode 100644 index 94e4b4769..000000000 --- a/src/main/protocol-impl/protocol-impl2.iml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/user-api/user-api.iml b/src/main/user-api/user-api.iml deleted file mode 100644 index 480c574c7..000000000 --- a/src/main/user-api/user-api.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/user-api/user-api2.iml b/src/main/user-api/user-api2.iml deleted file mode 100644 index 6100736b5..000000000 --- a/src/main/user-api/user-api2.iml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/user-impl/user-impl.iml b/src/main/user-impl/user-impl.iml deleted file mode 100644 index 64def5695..000000000 --- a/src/main/user-impl/user-impl.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/user-impl/user-impl2.iml b/src/main/user-impl/user-impl2.iml deleted file mode 100644 index 7e2b18cc2..000000000 --- a/src/main/user-impl/user-impl2.iml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/test.iml b/src/test/test.iml deleted file mode 100644 index 2f2555dcb..000000000 --- a/src/test/test.iml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file From 66af9d797bc4d6a96b3b1f97f6e3aced06142675 Mon Sep 17 00:00:00 2001 From: MilovdZee Date: Sat, 13 Dec 2025 12:36:01 +0100 Subject: [PATCH 4/5] scripts cleanup --- lib/.gitignore | 2 -- lib/build.gradle | 28 ---------------------------- lib/download-dependencies.sh | 1 - run-tests.sh | 5 ----- 4 files changed, 36 deletions(-) delete mode 100644 lib/.gitignore delete mode 100644 lib/build.gradle delete mode 100755 lib/download-dependencies.sh delete mode 100755 run-tests.sh diff --git a/lib/.gitignore b/lib/.gitignore deleted file mode 100644 index 18962b212..000000000 --- a/lib/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.gradle -*.jar diff --git a/lib/build.gradle b/lib/build.gradle deleted file mode 100644 index 2dd7f5abc..000000000 --- a/lib/build.gradle +++ /dev/null @@ -1,28 +0,0 @@ -plugins { - id 'java' -} - -repositories { - mavenCentral() -} - -dependencies { - implementation 'org.junit.jupiter:junit-jupiter:5.12.2' - implementation 'org.junit.platform:junit-platform-launcher:1.12.2' - implementation 'org.apiguardian:apiguardian-api:1.1.2' - implementation 'org.javassist:javassist:3.30.2-GA' - implementation 'com.google.protobuf:protobuf-java:4.31.1' - implementation 'com.mchange:c3p0:0.11.0' - implementation 'org.slf4j:slf4j-api:2.0.17' - implementation 'org.hamcrest:hamcrest:3.0' - implementation 'com.oracle.oci.sdk:oci-java-sdk-common:3.66.0' - implementation 'io.opentelemetry:opentelemetry-api:1.50.0' - implementation 'org.apache.ant:ant-junitlauncher:1.10.15' - implementation 'org.apache.ant:ant-junit:1.10.15' -} - -task downloadDependencies(type: Copy) { - description = 'Downloads all runtime dependencies into the libs folder' - from configurations.runtimeClasspath - into '.' -} diff --git a/lib/download-dependencies.sh b/lib/download-dependencies.sh deleted file mode 100755 index 1b8711f9f..000000000 --- a/lib/download-dependencies.sh +++ /dev/null @@ -1 +0,0 @@ - gradle downloadDependencies diff --git a/run-tests.sh b/run-tests.sh deleted file mode 100755 index 39e417eda..000000000 --- a/run-tests.sh +++ /dev/null @@ -1,5 +0,0 @@ -ant -lib lib/ant-junitlauncher-1.10.15.jar -lib lib/ant-junit-1.10.15.jar \ - -Dcom.mysql.cj.testsuite.test.class=testsuite.regression.StatementRegressionTest \ - -Dcom.mysql.cj.testsuite.test.methods=testBug119245_IntoInsideVar \ - -Dcom.mysql.cj.testsuite.url=jdbc:mysql://test:test@127.0.0.1:3306/test \ - test From ea403bd9aeec2b7661d0c51615c8dba994482203 Mon Sep 17 00:00:00 2001 From: MilovdZee Date: Sat, 13 Dec 2025 12:39:08 +0100 Subject: [PATCH 5/5] intelliJ gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e07abd4c3..56585839c 100644 --- a/.gitignore +++ b/.gitignore @@ -19,5 +19,4 @@ hs_err_pid*.log *.sh .idea -!run-tests.sh -!lib/download-dependencies.sh +*.iml