Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix
  • Loading branch information
wForget committed Aug 1, 2024
commit 6f79228c6bbeaad3459986acd10602dfe7bd43ef
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ class PlanOnlyOperationSuite extends WithKyuubiServer with HiveJDBCTestHelper {

statement.execute(s"SET ${KyuubiConf.OPERATION_PLAN_ONLY_MODE.key}=${NoneMode.name}")
val e = intercept[KyuubiSQLException](statement.executeQuery(s"select * from $table"))
assert(e.getMessage.contains("TABLE_OR_VIEW_NOT_FOUND"))
assert(e.getMessage.contains("TABLE_OR_VIEW_NOT_FOUND")
|| e.getMessage.contains("Table or view not found"))
}
}

Expand Down