This is an automated email from the ASF dual-hosted git repository.
xikai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-horaedb.git
The following commit(s) were added to refs/heads/main by this push:
new 9838a073 chore: update create tables result (#1454)
9838a073 is described below
commit 9838a073cf111216f0c469e1187ef0b44e2b01f9
Author: CooooolFrog <[email protected]>
AuthorDate: Tue Jan 23 16:31:28 2024 +0800
chore: update create tables result (#1454)
## Rationale
Refer to: https://github.com/apache/incubator-horaedb-meta/pull/286,
since we implement idempotent table creation, the error message when
repeatedly creating a table has changed, and the results of the
integration test need to be modified.
## Detailed Changes
* Update `create_tables.result`
## Test Plan
No need.
---
integration_tests/cases/env/cluster/ddl/create_tables.result | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/integration_tests/cases/env/cluster/ddl/create_tables.result
b/integration_tests/cases/env/cluster/ddl/create_tables.result
index 1abd07c6..d68ea742 100644
--- a/integration_tests/cases/env/cluster/ddl/create_tables.result
+++ b/integration_tests/cases/env/cluster/ddl/create_tables.result
@@ -45,12 +45,12 @@ affected_rows: 0
CREATE TABLE IF NOT EXISTS `05_create_tables_t`(c1 int, t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE = Analytic;
-Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t\", engine: \"Analytic\", create_if_not_exist: true,
options: {}, partition_table_info: None }, err:Bad re [...]
+Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t\", engine: \"Analytic\", create_if_not_exist: true,
options: {}, partition_table_info: None }, err:Bad re [...]
-- table already exist
CREATE TABLE `05_create_tables_t`(c1 int, t timestamp NOT NULL, TIMESTAMP
KEY(t)) ENGINE = Analytic;
-Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad r [...]
+Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad r [...]
create table `05_create_tables_t2`(a int, b int, t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE = Analytic with (enable_ttl='false');
@@ -70,12 +70,12 @@ Int32(4),
-- table already exist
create table `05_create_tables_t2`(a int,b int, t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE = Analytic;
-Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t2\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad [...]
+Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t2\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad [...]
-- table already exist
create table `05_create_tables_t2`(a int,b int, t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE = Analytic;
-Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t2\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad [...]
+Failed to execute query, err: Server(ServerError { code: 500, msg: "Failed to
execute plan. Caused by: Internal error, msg:Failed to execute interpreter,
err:Failed to execute create table, err:Failed to create table by table
manipulator, err:Failed to create table, msg:failed to create table by meta
client, req:CreateTableRequest { schema_name: \"public\", name:
\"05_create_tables_t2\", engine: \"Analytic\", create_if_not_exist: false,
options: {}, partition_table_info: None }, err:Bad [...]
create table `05_create_tables_t3`(a int,b int, t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE = Analytic;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]