Skip to content

Commit

Permalink
Remove backtick for colname
Browse files Browse the repository at this point in the history
  • Loading branch information
shydefoo committed Feb 4, 2025
1 parent 135f79f commit 9674a97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CustomDialect extends JdbcDialect {
}

override def quoteIdentifier(colName: String): String = {
s"`$colName`"
s"$colName"
}

override def getJDBCType(dt: DataType): Option[JdbcType] = {
Expand Down

0 comments on commit 9674a97

Please sign in to comment.