Skip to content

feat(udf): top_n_value_ratio_cate & top_n_value_key_ratio_cate #3414

feat(udf): top_n_value_ratio_cate & top_n_value_key_ratio_cate

feat(udf): top_n_value_ratio_cate & top_n_value_key_ratio_cate #3414

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / SDK Test Report succeeded Jun 20, 2023 in 0s

All 208 tests pass, 13 skipped in 2m 11s

  98 files    98 suites   2m 11s ⏱️
221 tests 208 ✔️ 13 💤 0
268 runs  255 ✔️ 13 💤 0

Results for commit 7cf1478.

Annotations

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / SDK Test Report

13 skipped tests found

There are 13 skipped tests, see "Raw output" for the full list of skipped tests.
Raw output
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode non-utf string
com._4paradigm.openmldb.batch.catalog.TestOpenmldbCatalogService ‑ TestOpenmldbCatalogService
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with last join
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with skew config
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with union in INSTANCE_NOT_IN_WINDOW
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeHive ‑ Test CREATE TABLE LIKE HIVE
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeHive ‑ Test CREATE TABLE LIKE HIVE with default db
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeParquet ‑ Test CREATE TABLE LIKE PARQUET
com._4paradigm.openmldb.batch.utils.HybridseUtilTest ‑ Test read from hive
tests.cmd_test ‑ test_cmd_static_check
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_request_timeout
tests.static_check_test ‑ test_in_demo_docker

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / SDK Test Report

221 tests found

There are 221 tests, see "Raw output" for the full list of tests.
Raw output
com._4paradigm.hybridse.HybridSeLibraryTest ‑ initCoreTest
com._4paradigm.hybridse.sdk.RequestEngineTest ‑ RequestEngineTest
com._4paradigm.hybridse.sdk.RequestEngineTest ‑ RequestEngineTest[select col1, col2, col3 col4, col5, col6 from t1;](1)
com._4paradigm.hybridse.sdk.RequestEngineTest ‑ RequestEngineTest[select col2+col3 as addcol23 from t1;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest2
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest2[select col1, col2, col3 col4, col5, col6 from t1;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest2[select col2+col3 as addcol23 from t1;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest3
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest3[select col1, col2, col3 col4, col5, col6 from t1;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest3[select col2+col3 as addcol23 from t1;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest4
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest4[select col1, col2, col3 col4, col5, col6 from t1;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest4[select col2+col3 as addcol23 from t1;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest[select col1, col2, col3 col4, col5, col6 from t1;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlEngineTest[select col2+col3 as addcol23 from t1;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[,  SELECT sum(db1.t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM db1.t1
 last join db2.t2 order by db2.t2.col1
 on db1.t1.col1 = db2.t2.col1 and db1.t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY db1.t1.col2 ORDER BY db1.t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[db1,  SELECT sum(t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY t1.col2 ORDER BY t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[null,  SELECT sum(db1.t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM db1.t1
 last join db2.t2 order by db2.t2.col1
 on db1.t1.col1 = db2.t2.col1 and db1.t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY db1.t1.col2 ORDER BY db1.t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](3)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Fail to transform data provider op: table t1 not exists in database []](4)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT db1.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: db1.t2.str1](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: .t2.col1](3)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: .t2.str1](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[null, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Fail to transform data provider op: table t1 not exists in database []](5)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlWindowLastJoin
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlWindowLastJoin[ SELECT sum(t1.col1) over w1 as sum_t1_col1, t2.str1 as t2_str1
 FROM t1
 last join t2 order by t2.col1
 on t1.col1 = t2.col1 and t1.col2 = t2.col0
 WINDOW w1 AS (
  PARTITION BY t1.col2 ORDER BY t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](1)
com._4paradigm.openmldb.batch.TestDate ‑ Test date before GMT 0
com._4paradigm.openmldb.batch.TestGroupByPlan ‑ Test groupBy
com._4paradigm.openmldb.batch.TestLimitPlan ‑ Test groupBy and limit
com._4paradigm.openmldb.batch.TestLimitPlan ‑ Test project and limit
com._4paradigm.openmldb.batch.TestLimitPlan ‑ Test simple project and limit
com._4paradigm.openmldb.batch.TestLoadDataPlan ‑ Test Load to Openmldb Offline Storage
com._4paradigm.openmldb.batch.TestLoadDataPlan ‑ Test LoadData to Openmldb Online Storage
com._4paradigm.openmldb.batch.TestLoadDataPlan ‑ Test Only Use SparkSession
com._4paradigm.openmldb.batch.TestNativeBufferPool ‑ Test native buffer pool
com._4paradigm.openmldb.batch.TestOpenmldbBatchConfig ‑ Test config of openmldb.sparksql
com._4paradigm.openmldb.batch.TestOpenmldbBatchConfig ‑ Test make config
com._4paradigm.openmldb.batch.TestOpenmldbBatchConfig ‑ Test make config from dict
com._4paradigm.openmldb.batch.TestProjectPlan ‑ Test groupBy and limit
com._4paradigm.openmldb.batch.TestSelectIntoPlan ‑ Test Plan Select Into
com._4paradigm.openmldb.batch.TestSerializableByteBuffer ‑ Test serializableBuffer
com._4paradigm.openmldb.batch.TestSerializableByteBuffer ‑ Test serializableDirectBuffer
com._4paradigm.openmldb.batch.TestSparkPlanner ‑ Test join plan smoke
com._4paradigm.openmldb.batch.TestSparkPlanner ‑ Test project plan smoke
com._4paradigm.openmldb.batch.TestSparkPlanner ‑ Test project plan with simple project
com._4paradigm.openmldb.batch.TestSparkPlanner ‑ Test window plan smoke
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode empty string
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode non-utf string
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode primitive types
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode special float values
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode special integer values
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode with date
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode with schema slices
com._4paradigm.openmldb.batch.TestSparkRowCodec ‑ Test encode and decode with strings
com._4paradigm.openmldb.batch.TestUnsafeRowRowProject ‑ Test unsafeRow window project
com._4paradigm.openmldb.batch.TestUnsafeRowWindowProject ‑ Test unsafeRow window project
com._4paradigm.openmldb.batch.catalog.TestOpenmldbCatalogService ‑ TestOpenmldbCatalogService
com._4paradigm.openmldb.batch.end2end.SameNameSqlIssue ‑ Test run same SQL in same process
com._4paradigm.openmldb.batch.end2end.TestMultipleDatabases ‑ Test SQL with default database
com._4paradigm.openmldb.batch.end2end.TestMultipleDatabases ‑ Test SQL with multiple databases
com._4paradigm.openmldb.batch.end2end.TestMultipleDatabases ‑ Test SQL with non-default database
com._4paradigm.openmldb.batch.end2end.TestOrderBy ‑ Test end2end Order by
com._4paradigm.openmldb.batch.end2end.TestProject ‑ Test end2end window aggregation
com._4paradigm.openmldb.batch.end2end.TestSelectInto ‑ Test end2end select into
com._4paradigm.openmldb.batch.end2end.TestUnsafeRowOptimization ‑ Test end2end UnsafeRow optimization
com._4paradigm.openmldb.batch.end2end.TestUnsafeRowProject ‑ Test end2end UnsafeRow optimization for row project
com._4paradigm.openmldb.batch.end2end.TestWhere ‑ Test end2end where expression
com._4paradigm.openmldb.batch.end2end.TestWindow ‑ Test end2end window aggregation
com._4paradigm.openmldb.batch.end2end.TestWindow ‑ Test window aggregation with extra window attributes
com._4paradigm.openmldb.batch.end2end.TestWindowParallelization ‑ Test end2end window paralleization in a complex case
com._4paradigm.openmldb.batch.end2end.TestWindowParallelization ‑ Test end2end window paralleization in last join
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with last join
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with skew config
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOpt ‑ Test end2end window skew optimization with union in INSTANCE_NOT_IN_WINDOW
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOptAndParallelization ‑ Test end2end window skew optimization
com._4paradigm.openmldb.batch.end2end.TestWindowSkewOptAndParallelization ‑ Test end2end window skew optimization and window paralleization with union
com._4paradigm.openmldb.batch.end2end.TestWindowUnion ‑ Test end2end window union
com._4paradigm.openmldb.batch.end2end.TestWindowUnion ‑ Test window union after window union
com._4paradigm.openmldb.batch.end2end.TestWindowUnion ‑ Test window union with extra window attributes
com._4paradigm.openmldb.batch.end2end.TestWindowUnionWithSameTimestamp ‑ Test window union with same timestamp
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeHive ‑ Test CREATE TABLE LIKE HIVE
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeHive ‑ Test CREATE TABLE LIKE HIVE with default db
com._4paradigm.openmldb.batch.end2end.hive.TestCreateTableLikeParquet ‑ Test CREATE TABLE LIKE PARQUET
com._4paradigm.openmldb.batch.end2end.simple_project.TestStringToTimestamp ‑ Test string to timestamp
com._4paradigm.openmldb.batch.end2end.sparksql.TestRegisterTable ‑ Test register table for OpenMLDB session and Spark catalog
com._4paradigm.openmldb.batch.end2end.unsafe.TestDateUdf ‑ Test project with date columns
com._4paradigm.openmldb.batch.end2end.unsafe.TestDateUdf ‑ Test simple project with date columns
com._4paradigm.openmldb.batch.end2end.unsafe.TestDateUdf ‑ Test udf of date for project
com._4paradigm.openmldb.batch.end2end.unsafe.TestDateUdf ‑ Test udf of date for window
com._4paradigm.openmldb.batch.end2end.unsafe.TestMultiSliceGetString ‑ Test window over window and get string
com._4paradigm.openmldb.batch.end2end.unsafe.TestSubqueryComplext ‑ Test subquery
com._4paradigm.openmldb.batch.end2end.unsafe.TestTimestampUdf ‑ Test udf of timestamp for project
com._4paradigm.openmldb.batch.end2end.unsafe.TestTimestampUdf ‑ Test udf of timestamp for window
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeFormatForWindowAppendSlice ‑ Test unsafe row format for window over window(window append slice)
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeGroupby ‑ Test unsafe groupby
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeJoin ‑ Test unsafe last join
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeJoin ‑ Test unsafe last join with arithmetic expression
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeJoin ‑ Test unsafe left join
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeLastJoin ‑ Test unsafe last join
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeProject ‑ Test unsafe project
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeProjectWithNull ‑ Test unsafe project with null data
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeWindow ‑ Test unsafe window
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeWindowOverWindow ‑ Test window over window with UnsafeRowOpt
com._4paradigm.openmldb.batch.end2end.unsafe.TestUnsafeWindowWithUnion ‑ Test unsafe window
com._4paradigm.openmldb.batch.end2end.unsafe.TestWindowWithoutSelect ‑ Test window without select
com._4paradigm.openmldb.batch.nulldata.TestJoinWithNullData ‑ Test last join with null data
com._4paradigm.openmldb.batch.nulldata.TestJoinWithNullData ‑ Test left join with null data
com._4paradigm.openmldb.batch.nulldata.TestWindowWithNullData ‑ Test window with null data
com._4paradigm.openmldb.batch.utils.HybridseUtilTest ‑ Test AutoLoad Csv
com._4paradigm.openmldb.batch.utils.HybridseUtilTest ‑ Test AutoLoad Parquet
com._4paradigm.openmldb.batch.utils.HybridseUtilTest ‑ Test AutoLoad Type Timestamp
com._4paradigm.openmldb.batch.utils.HybridseUtilTest ‑ Test read from hive
com._4paradigm.openmldb.batch.utils.TestByteArrayUtil ‑ testBytesToString
com._4paradigm.openmldb.batch.utils.TestByteArrayUtil ‑ testIntToByteArray
com._4paradigm.openmldb.batch.utils.TestByteArrayUtil ‑ testIntToOneByteArray
com._4paradigm.openmldb.batch.utils.TestCaseUtil ‑ Test getYamlSchemaString
com._4paradigm.openmldb.batch.utils.TestCaseUtil ‑ Test getYamlTypeString
com._4paradigm.openmldb.batch.utils.TestGraphvizUtil ‑ Test drawPhysicalPlan
com._4paradigm.openmldb.batch.utils.TestGraphvizUtil ‑ Test getGraphNode
com._4paradigm.openmldb.batch.utils.TestGraphvizUtil ‑ Test visitPhysicalOp
com._4paradigm.openmldb.batch.utils.TestSkewDataFrameUtils ‑ Test genAddColumnsDf
com._4paradigm.openmldb.batch.utils.TestSkewDataFrameUtils ‑ Test genDistributionDf
com._4paradigm.openmldb.batch.utils.TestSkewDataFrameUtils ‑ Test genUnionDf
com._4paradigm.openmldb.batch.utils.TestSparkRowUtil ‑ Test getLongFromIndex
com._4paradigm.openmldb.batch.utils.TestSparkRowUtil ‑ Test rowToString
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test addColumnByMonotonicallyIncreasingId
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test addColumnByZipWithIndex
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test addColumnByZipWithUniqueId
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test addIndexColumn
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test approximateDfEqual
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test checkSchemaIgnoreNullable
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test rddInternalRowToDf
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test smallDfEqual
com._4paradigm.openmldb.batch.utils.TestSparkUtil ‑ Test supportNativeLastJoin
com._4paradigm.openmldb.batch.window.TestWindowComputerWithSampleSupport ‑ Test sample window data
com._4paradigm.openmldb.batchjob.util.TestOpenmldbJobUtil ‑ Test getSqlFromFile
com._4paradigm.openmldb.batchjob.util.TestOpenmldbJobUtil ‑ Test getSqlFromFile for sql file
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNull
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNullAndEmpty
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncode
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncodeRow
com._4paradigm.openmldb.common.RowCodecTest ‑ testManyCol
com._4paradigm.openmldb.common.RowCodecTest ‑ testNormal
com._4paradigm.openmldb.common.RowCodecTest ‑ testNotAppendString
com._4paradigm.openmldb.common.RowCodecTest ‑ testNull
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ daysToDateInt
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ testDateIntToDate
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ testDateIntToDays
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ testDateToDateInt
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ testFromDateToDate
com._4paradigm.openmldb.common.codec.TestCodecUtil ‑ testFromDaysToDays
com._4paradigm.openmldb.jdbc.JDBCDriverTest ‑ testAllOptionsInUrl
com._4paradigm.openmldb.jdbc.JDBCDriverTest ‑ testForKafkaConnector
com._4paradigm.openmldb.jdbc.JDBCDriverTest ‑ testForPulsarConnector
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testBatchRequest
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testDDLParseMethods
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1376883](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@3db432c2](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1376883](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@3db432c2](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1376883](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@3db432c2](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testMergeSQL
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testMoreOptions
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testParameterizedQueryFail
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testParameterizedQueryFail[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1376883](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testParameterizedQueryFail[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@3db432c2](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1376883](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@3db432c2](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testValidateSQL
com._4paradigm.openmldb.jdbc.StatementTest ‑ testDelete
com._4paradigm.openmldb.jdbc.StatementTest ‑ testDeploy
com._4paradigm.openmldb.jdbc.StatementTest ‑ testExecute
com._4paradigm.openmldb.sdk.SdkOptionTest ‑ testGetSet
com._4paradigm.openmldb.spark.TestRead ‑ Test use connector to read openmldb online table
com._4paradigm.openmldb.spark.TestWrite ‑ Test write a local file to openmldb
tests.cmd_test ‑ test_argparse
tests.cmd_test ‑ test_cmd
tests.cmd_test ‑ test_cmd_static_check
tests.cmd_test ‑ test_helpmsg
tests.conf_validator_test ‑ test_validate_dist_conf
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_connect_options
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_cursor_without_db
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_custom_order_insert
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_invalid_create
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_invalid_database_arg
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_request_timeout
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_select_conditioned
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_simple_insert_select
tests.dist_conf_test ‑ test_auto_read
tests.dist_conf_test ‑ test_read_hosts
tests.dist_conf_test ‑ test_read_yaml
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/no_class.logfile]
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/no_db.logfile]
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/no_hive_table.logfile]
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/no_table.logfile]
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/select_into_empty.logfile]
tests.log_parser_test ‑ test_pattern_logs[/__w/OpenMLDB/OpenMLDB/python/openmldb_tool/tests/off_err_logs/yarn_error.logfile]
tests.openmldb_client_test.TestOpenMLDBClient ‑ test_basic
tests.openmldb_client_test.TestOpenMLDBClient ‑ test_more_parameterized_query
tests.openmldb_client_test.TestOpenMLDBClient ‑ test_procedure
tests.sdk_smoke_test ‑ test_sdk_smoke
tests.sql_magic_test.TestSQLMagicOpenMLDB ‑ test_create_table
tests.sql_magic_test.TestSQLMagicOpenMLDB ‑ test_drop
tests.sql_magic_test.TestSQLMagicOpenMLDB ‑ test_insert
tests.sql_magic_test.TestSQLMagicOpenMLDB ‑ test_select
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ test_create_table
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ test_insert
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ test_request_timeout
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ test_select
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ test_zk_log
tests.static_check_test ‑ test_in_demo_docker
tests.static_check_test ‑ test_local_collector