File tree Expand file tree Collapse file tree 5 files changed +5
-15
lines changed
ktorm-support-mysql/src/main/kotlin/org/ktorm/support/mysql
ktorm-support-oracle/src/main/kotlin/org/ktorm/support/oracle
ktorm-support-postgresql/src/main/kotlin/org/ktorm/support/postgresql
ktorm-support-sqlite/src/main/kotlin/org/ktorm/support/sqlite
ktorm-support-sqlserver/src/main/kotlin/org/ktorm/support/sqlserver Expand file tree Collapse file tree 5 files changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,7 @@ public open class MySqlDialect : SqlDialect {
3636 * [SqlFormatter] implementation for MySQL, formatting SQL expressions as strings with their execution arguments.
3737 */
3838public open class MySqlFormatter (
39- database : Database ,
40- beautifySql : Boolean ,
41- indentSize : Int
39+ database : Database , beautifySql : Boolean , indentSize : Int
4240) : SqlFormatter(database, beautifySql, indentSize) {
4341
4442 override fun visit (expr : SqlExpression ): SqlExpression {
Original file line number Diff line number Diff line change @@ -36,9 +36,7 @@ public open class OracleDialect : SqlDialect {
3636 * [SqlFormatter] implementation for Oracle, formatting SQL expressions as strings with their execution arguments.
3737 */
3838public open class OracleFormatter (
39- database : Database ,
40- beautifySql : Boolean ,
41- indentSize : Int
39+ database : Database , beautifySql : Boolean , indentSize : Int
4240) : SqlFormatter(database, beautifySql, indentSize) {
4341
4442 override fun checkColumnName (name : String ) {
Original file line number Diff line number Diff line change @@ -35,9 +35,7 @@ public open class PostgreSqlDialect : SqlDialect {
3535 * [SqlFormatter] implementation for PostgreSQL, formatting SQL expressions as strings with their execution arguments.
3636 */
3737public open class PostgreSqlFormatter (
38- database : Database ,
39- beautifySql : Boolean ,
40- indentSize : Int
38+ database : Database , beautifySql : Boolean , indentSize : Int
4139) : SqlFormatter(database, beautifySql, indentSize) {
4240
4341 override fun checkColumnName (name : String ) {
Original file line number Diff line number Diff line change @@ -60,9 +60,7 @@ public open class SQLiteDialect : SqlDialect {
6060 * [SqlFormatter] implementation for SQLite, formatting SQL expressions as strings with their execution arguments.
6161 */
6262public open class SQLiteFormatter (
63- database : Database ,
64- beautifySql : Boolean ,
65- indentSize : Int
63+ database : Database , beautifySql : Boolean , indentSize : Int
6664) : SqlFormatter(database, beautifySql, indentSize) {
6765
6866 override fun writePagination (expr : QueryExpression ) {
Original file line number Diff line number Diff line change @@ -35,9 +35,7 @@ public open class SqlServerDialect : SqlDialect {
3535 * [SqlFormatter] implementation for SqlServer, formatting SQL expressions as strings with their execution arguments.
3636 */
3737public open class SqlServerFormatter (
38- database : Database ,
39- beautifySql : Boolean ,
40- indentSize : Int
38+ database : Database , beautifySql : Boolean , indentSize : Int
4139) : SqlFormatter(database, beautifySql, indentSize) {
4240
4341 override fun checkColumnName (name : String ) {
You can’t perform that action at this time.
0 commit comments