Skip to content

Commit

Permalink
[KYUUBI #5464] correct term "MySQL"
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjunbo committed Nov 1, 2023
1 parent 4a1bc3c commit e0437a0
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

org.apache.kyuubi.engine.jdbc.doris.DorisConnectionProvider
org.apache.kyuubi.engine.jdbc.phoenix.PhoenixConnectionProvider
org.apache.kyuubi.engine.jdbc.mysql.MysqlConnectionProvider
org.apache.kyuubi.engine.jdbc.mysql.MySQLConnectionProvider
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import scala.collection.mutable.ArrayBuffer
import org.apache.commons.lang3.StringUtils

import org.apache.kyuubi.KyuubiSQLException
import org.apache.kyuubi.engine.jdbc.mysql.{MysqlRowSetHelper, MysqlSchemaHelper}
import org.apache.kyuubi.engine.jdbc.mysql.{MySQLRowSetHelper, MySQLSchemaHelper}
import org.apache.kyuubi.engine.jdbc.schema.{RowSetHelper, SchemaHelper}
import org.apache.kyuubi.operation.Operation
import org.apache.kyuubi.operation.meta.ResultSetSchemaConstant._
Expand Down Expand Up @@ -153,11 +153,11 @@ class MysqlDialect extends JdbcDialect {
}

override def getRowSetHelper(): RowSetHelper = {
new MysqlRowSetHelper
new MySQLRowSetHelper
}

override def getSchemaHelper(): SchemaHelper = {
new MysqlSchemaHelper
new MySQLSchemaHelper
}

override def name(): String = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.apache.kyuubi.engine.jdbc.mysql

class MysqlConnectionProvider extends Mysql8ConnectionProvider {
class MySQLConnectionProvider extends Mysql8ConnectionProvider {

override val name: String = classOf[MysqlConnectionProvider].getSimpleName
override val name: String = classOf[MySQLConnectionProvider].getSimpleName
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import org.apache.hive.service.rpc.thrift.{TColumn, TColumnValue}

import org.apache.kyuubi.engine.jdbc.schema.RowSetHelper

class MysqlRowSetHelper extends RowSetHelper {
class MySQLRowSetHelper extends RowSetHelper {

override def toTinyIntTColumn(rows: Seq[Seq[Any]], ordinal: Int): TColumn =
toIntegerTColumn(rows, ordinal)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ package org.apache.kyuubi.engine.jdbc.mysql

import org.apache.kyuubi.engine.jdbc.schema.SchemaHelper

class MysqlSchemaHelper extends SchemaHelper {}
class MySQLSchemaHelper extends SchemaHelper {}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import org.apache.kyuubi.config.KyuubiConf
import org.apache.kyuubi.engine.jdbc.connection.ConnectionProvider
import org.apache.kyuubi.operation.HiveJDBCTestHelper

class OperationWithEngineSuite extends MysqlOperationSuite with HiveJDBCTestHelper {
class OperationWithEngineSuite extends MySQLOperationSuite with HiveJDBCTestHelper {

override protected def jdbcUrl: String = jdbcConnectionUrl

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package org.apache.kyuubi.engine.jdbc.mysql

import org.apache.kyuubi.operation.HiveJDBCTestHelper

class SessionSuite extends WithMysqlEngine with HiveJDBCTestHelper {
class SessionSuite extends WithMySQLEngine with HiveJDBCTestHelper {

test("test session") {
withJdbcStatement() { statement =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.sql.{Date, Timestamp}

import org.apache.kyuubi.operation.HiveJDBCTestHelper

class StatementSuite extends WithMysqlEngine with HiveJDBCTestHelper {
class StatementSuite extends WithMySQLEngine with HiveJDBCTestHelper {

test("test select") {
withJdbcStatement("test1") { statement =>
Expand Down

0 comments on commit e0437a0

Please sign in to comment.