Skip to content

Commit

Permalink
Update comments and fix formatting in MsSql.kt and build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
zaleslaw committed May 6, 2024
1 parent 95e617a commit 1ebf651
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dataframe-jdbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
testImplementation(libs.postgresql)
testImplementation(libs.mysql)
testImplementation(libs.h2db)
testImplementation (libs.mssql)
testImplementation(libs.mssql)
testImplementation(libs.junit)
testImplementation(libs.sl4j)
testImplementation(libs.kotestAssertions) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import kotlin.reflect.KType
import kotlin.reflect.full.createType

/**
* Represents the MariaDb database type.
* Represents the MSSQL database type.
*
* This class provides methods to convert data from a ResultSet to the appropriate type for MariaDb,
* This class provides methods to convert data from a ResultSet to the appropriate type for MSSQL,
* and to generate the corresponding column schema.
*/
public object MsSql : DbType("sqlserver") {
Expand Down

0 comments on commit 1ebf651

Please sign in to comment.