Skip to content

Commit

Permalink
[KYUUBI-5507] Improve codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
link3280 committed Nov 2, 2023
1 parent 13035f3 commit 0782738
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,16 @@ class FlinkEngineInitializeSuite extends HiveJDBCTestHelper
protected def jdbcUrl: String = getFlinkEngineServiceUrl

protected val ENGINE_INITIALIZE_SQL_VALUE: String =
s"""
show databases;
"""
"show databases;"

protected val ENGINE_SESSION_INITIALIZE_SQL_VALUE: String =
s"""
create catalog cat_b with ('type'='generic_in_memory');
"""create catalog cat_b with ('type'='generic_in_memory');
create table blackhole(i int) with ('connector'='blackhole');
create table datagen(i int) with (
create table datagen(i int) with (
'connector'='datagen',
'fields.i.kind'='sequence',
'fields.i.start'='1',
'fields.i.end'='10')
"""
'fields.i.end'='10')""".stripMargin

override def withKyuubiConf: Map[String, String] = {
Map(
Expand Down

0 comments on commit 0782738

Please sign in to comment.