Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: offline with git submodule #3787

Merged
merged 16 commits into from
Mar 4, 2024

Merge branch 'main' into feat/offline_with_submodule

a8413c8
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

feat: offline with git submodule #3787

Merge branch 'main' into feat/offline_with_submodule
a8413c8
Select commit
Loading
Failed to load commit list.
GitHub Actions / SDK Test Report succeeded Mar 4, 2024 in 0s

All 331 tests pass, 14 skipped in 2m 4s

101 files  + 2  101 suites  +2   2m 4s ⏱️ +8s
345 tests +39  331 ✅ +35  14 💤 +4  0 ❌ ±0 
471 runs  +39  457 ✅ +35  14 💤 +4  0 ❌ ±0 

Results for commit a8413c8. ± Comparison against earlier commit 7688d84.

Annotations

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / SDK Test Report

14 skipped tests found

There are 14 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.DataSourceUtilTest ‑ Test read from hive
tests.cmd_test ‑ test_cmd_static_check
tests.dbapi_test.TestOpenmldbDBAPI ‑ test_request_timeout
tests.sqlalchemy_api_test.TestSqlalchemyAPI ‑ 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

345 tests found

There are 345 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.TestSetOperation ‑ Test UNION ALL
com._4paradigm.openmldb.batch.TestSetOperation ‑ Test UNION DISTINCT
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 without ORDER BY
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 to last join
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 last join to window
com._4paradigm.openmldb.batch.nulldata.TestWindowWithNullData ‑ Test window with null data
com._4paradigm.openmldb.batch.utils.DataSourceUtilTest ‑ Test AutoLoad Csv
com._4paradigm.openmldb.batch.utils.DataSourceUtilTest ‑ Test AutoLoad Parquet
com._4paradigm.openmldb.batch.utils.DataSourceUtilTest ‑ Test AutoLoad Type Timestamp
com._4paradigm.openmldb.batch.utils.DataSourceUtilTest ‑ 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 ‑ testAppendNull2
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNull2[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNull2[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNullAndEmpty
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNullAndEmpty[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNullAndEmpty[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNull[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testAppendNull[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[100000](18)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[10000](16)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[1000](12)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[100](8)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[10](4)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[1](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[20000](17)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[2000](13)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[200](9)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[20](5)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[3000](14)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[300](10)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[30](6)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[3](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[5000](15)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[500](11)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[50](7)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPutBase[5](3)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[100000](18)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[10000](16)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[1000](12)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[100](8)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[10](4)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[1](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[20000](17)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[2000](13)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[200](9)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[20](5)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[3000](14)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[300](10)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[30](6)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[3](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[5000](15)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[500](11)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[50](7)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderPut[5](3)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[100000](18)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[10000](16)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[1000](12)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[100](8)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[10](4)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[1](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[20000](17)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[2000](13)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[200](9)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[20](5)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[3000](14)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[300](10)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[30](6)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[3](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[5000](15)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[500](11)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[50](7)
com._4paradigm.openmldb.common.RowCodecTest ‑ testDisorderStringOnly[5](3)
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncode
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncodeRow
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncodeRow[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncodeRow[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncode[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testEncode[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testLongString
com._4paradigm.openmldb.common.RowCodecTest ‑ testManyCol
com._4paradigm.openmldb.common.RowCodecTest ‑ testManyCol[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testManyCol[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNormal
com._4paradigm.openmldb.common.RowCodecTest ‑ testNormal[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNormal[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNotAppendString
com._4paradigm.openmldb.common.RowCodecTest ‑ testNotAppendString[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNotAppendString[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNull
com._4paradigm.openmldb.common.RowCodecTest ‑ testNull[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testNull[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testSetMultiTimes
com._4paradigm.openmldb.common.RowCodecTest ‑ testSetMultiTimes[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testSetMultiTimes[flexible](2)
com._4paradigm.openmldb.common.RowCodecTest ‑ testSpecialCase
com._4paradigm.openmldb.common.RowCodecTest ‑ testValueNull
com._4paradigm.openmldb.common.RowCodecTest ‑ testValueNull[classic](1)
com._4paradigm.openmldb.common.RowCodecTest ‑ testValueNull[flexible](2)
com._4paradigm.openmldb.common.codec.TestBitMap ‑ testClear
com._4paradigm.openmldb.common.codec.TestBitMap ‑ testSetted
com._4paradigm.openmldb.common.codec.TestBitMap ‑ testSize
com._4paradigm.openmldb.common.codec.TestBitMap ‑ testValue
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.common.codec.TestCodecUtil ‑ testSetStrOffset
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 ‑ testBatchRequest[NoCompress, HDD](2)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testBatchRequest[NoCompress, Memory](1)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testBatchRequest[Snappy, HDD](4)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testBatchRequest[Snappy, Memory](3)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentBatchRequest
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentBatchRequest[NoCompress, HDD](2)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentBatchRequest[NoCompress, Memory](1)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentBatchRequest[Snappy, HDD](4)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentBatchRequest[Snappy, Memory](3)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentRequest
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentRequest[NoCompress, HDD](2)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentRequest[NoCompress, Memory](1)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentRequest[Snappy, HDD](4)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testDeploymentRequest[Snappy, Memory](3)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest[NoCompress, HDD](2)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest[NoCompress, Memory](1)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest[Snappy, HDD](4)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testRequest[Snappy, Memory](3)
com._4paradigm.openmldb.jdbc.RequestPreparedStatementTest ‑ testResultSetNull
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testDDLParseMethods
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertMeta[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedStateBatch[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testInsertPreparedState[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
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@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testParameterizedQueryFail[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testParameterizedQueryFail[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSQLToDag
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSQLToDag[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSQLToDag[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSQLToDag[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@1280bae3](1)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@6d7556a8](2)
com._4paradigm.openmldb.jdbc.SQLRouterSmokeTest ‑ testSmoke[com._4paradigm.openmldb.sdk.impl.SqlClusterExecutor@7e0883f3](3)
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.inspect_test ‑ test_show
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.rpc_test ‑ test_rpc
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