File tree 5 files changed +10
-10
lines changed
dataframe-jdbc/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ class MySqlH2Test {
323
323
"""
324
324
SELECT
325
325
t1.id,
326
- t1.enumCol,
326
+ t1.enumCol
327
327
FROM table1 t1
328
328
JOIN table2 t2 ON t1.id = t2.id
329
329
""" .trimIndent()
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ import java.sql.DriverManager
16
16
import java.util.Properties
17
17
import kotlin.reflect.typeOf
18
18
19
- private const val URL = " jdbc:mariadb://localhost:3307 /imdb"
20
- private const val URL2 = " jdbc:mariadb://localhost:3307 "
19
+ private const val URL = " jdbc:mariadb://localhost:3306 /imdb"
20
+ private const val URL2 = " jdbc:mariadb://localhost:3306 "
21
21
private const val USER_NAME = " root"
22
22
private const val PASSWORD = " pass"
23
23
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import java.sql.DriverManager
23
23
import java.sql.SQLException
24
24
import kotlin.reflect.typeOf
25
25
26
- private const val URL = " jdbc:mariadb://localhost:3307 "
26
+ private const val URL = " jdbc:mariadb://localhost:3306 "
27
27
private const val USER_NAME = " root"
28
28
private const val PASSWORD = " pass"
29
29
private const val TEST_DATABASE_NAME = " testKDFdatabase"
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ implementation("org.postgresql:postgresql:$version")
46
46
For MySQL:
47
47
48
48
``` kotlin
49
- implementation(" mysql:mysql-connector-java :$version " )
49
+ implementation(" com. mysql:mysql-connector-j :$version " )
50
50
```
51
51
52
52
For SQLite:
Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ serialization = "1.7.0"
28
28
fuel = " 2.3.1"
29
29
poi = " 5.2.5"
30
30
mariadb = " 3.3.2"
31
- h2db = " 2.2.224 "
32
- mssql = " 12.6.1 .jre11"
33
- mysql = " 8.3 .0"
34
- postgresql = " 42.7.2 "
35
- sqlite = " 3.45.1 .0"
31
+ h2db = " 2.3.230 "
32
+ mssql = " 12.6.3 .jre11"
33
+ mysql = " 9.0 .0"
34
+ postgresql = " 42.7.3 "
35
+ sqlite = " 3.45.3 .0"
36
36
jtsCore = " 1.18.1"
37
37
kotlinDatetime = " 0.6.0"
38
38
openapi = " 2.1.20"
You can’t perform that action at this time.
0 commit comments