-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
3,027 additions
and
22 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
regression-test/suites/db_sync/table/properties/auto_bucket/test_ds_tbl_auto_bucket.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_ds_tbl_auto_bucket") { | ||
def helper = new GroovyShell(new Binding(['suite': delegate])) | ||
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy")) | ||
|
||
def dbName = context.dbName | ||
def tableName = "tbl_" + helper.randomSuffix() | ||
def test_num = 0 | ||
def insert_num = 5 | ||
|
||
def exist = { res -> Boolean | ||
return res.size() != 0 | ||
} | ||
|
||
sql "DROP TABLE IF EXISTS ${dbName}.${tableName}" | ||
target_sql "DROP TABLE IF EXISTS TEST_${dbName}.${tableName}" | ||
|
||
helper.enableDbBinlog() | ||
|
||
sql """ | ||
CREATE TABLE if NOT EXISTS ${tableName} | ||
( | ||
`test` INT, | ||
`id` INT | ||
) | ||
ENGINE=OLAP | ||
AGGREGATE KEY(`test`, `id`) | ||
PARTITION BY RANGE(`id`) | ||
( | ||
) | ||
DISTRIBUTED BY HASH(`id`) BUCKETS AUTO | ||
PROPERTIES ( | ||
"replication_allocation" = "tag.location.default: 1", | ||
"binlog.enable" = "true" | ||
) | ||
""" | ||
|
||
helper.ccrJobDelete() | ||
helper.ccrJobCreate() | ||
|
||
assertTrue(helper.checkRestoreFinishTimesOf("${tableName}", 30)) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "sql")) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "target")) | ||
|
||
def target_res = target_sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
assertTrue(target_res[0][1].contains("DISTRIBUTED BY HASH(`id`) BUCKETS AUTO")) | ||
} |
67 changes: 67 additions & 0 deletions
67
...n-test/suites/db_sync/table/properties/auto_compaction/test_ds_tbl_auto_compaction.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_ds_tbl_auto_compaction") { | ||
def helper = new GroovyShell(new Binding(['suite': delegate])) | ||
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy")) | ||
|
||
def dbName = context.dbName | ||
def tableName = "tbl_" + helper.randomSuffix() | ||
def test_num = 0 | ||
def insert_num = 5 | ||
|
||
def exist = { res -> Boolean | ||
return res.size() != 0 | ||
} | ||
|
||
sql "DROP TABLE IF EXISTS ${dbName}.${tableName}" | ||
target_sql "DROP TABLE IF EXISTS TEST_${dbName}.${tableName}" | ||
|
||
helper.enableDbBinlog() | ||
|
||
sql """ | ||
CREATE TABLE if NOT EXISTS ${tableName} | ||
( | ||
`test` INT, | ||
`id` INT | ||
) | ||
ENGINE=OLAP | ||
AGGREGATE KEY(`test`, `id`) | ||
PARTITION BY RANGE(`id`) | ||
( | ||
) | ||
DISTRIBUTED BY HASH(id) BUCKETS 1 | ||
PROPERTIES ( | ||
"replication_allocation" = "tag.location.default: 1", | ||
"binlog.enable" = "true", | ||
"disable_auto_compaction" = "false" | ||
) | ||
""" | ||
|
||
helper.ccrJobDelete() | ||
helper.ccrJobCreate() | ||
|
||
assertTrue(helper.checkRestoreFinishTimesOf("${tableName}", 30)) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "sql")) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "target")) | ||
|
||
def target_res = target_sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
assertTrue(target_res[0][1].contains("\"disable_auto_compaction\" = \"false\"")) | ||
} |
71 changes: 71 additions & 0 deletions
71
...ion-test/suites/db_sync/table/properties/auto_increment/test_ds_tbl_auto_increment.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_ds_tbl_auto_increment") { | ||
def helper = new GroovyShell(new Binding(['suite': delegate])) | ||
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy")) | ||
|
||
def dbName = context.dbName | ||
def tableName = "tbl_" + helper.randomSuffix() | ||
def test_num = 0 | ||
def insert_num = 5 | ||
|
||
def exist = { res -> Boolean | ||
return res.size() != 0 | ||
} | ||
|
||
sql "DROP TABLE IF EXISTS ${dbName}.${tableName}" | ||
target_sql "DROP TABLE IF EXISTS TEST_${dbName}.${tableName}" | ||
|
||
helper.enableDbBinlog() | ||
|
||
sql """ | ||
CREATE TABLE ${tableName} ( | ||
`id` BIGINT NOT NULL AUTO_INCREMENT, | ||
`value` int(11) NOT NULL | ||
) ENGINE=OLAP | ||
DUPLICATE KEY(`id`) | ||
PROPERTIES ( | ||
"replication_allocation" = "tag.location.default: 1" | ||
) | ||
""" | ||
|
||
for (int index = 0; index < insert_num; index++) { | ||
sql "INSERT INTO ${tableName} (value) VALUES (${insert_num})" | ||
} | ||
sql "sync" | ||
|
||
helper.ccrJobDelete() | ||
helper.ccrJobCreate() | ||
|
||
assertTrue(helper.checkRestoreFinishTimesOf("${tableName}", 30)) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "sql")) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "target")) | ||
|
||
def target_res = target_sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
assertTrue(target_res[0][1].contains("`id` bigint NOT NULL AUTO_INCREMENT(1)")) | ||
|
||
target_res = target_sql "select * from ${tableName} order by id" | ||
|
||
for (int index = 0; index < insert_num; index++) { | ||
assertEquals(target_res[index][0],index + 1) | ||
assertEquals(target_res[index][1],insert_num) | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
regression-test/suites/db_sync/table/properties/bloom_filter/test_ds_tbl_bloom_filter.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_ds_tbl_bloom_filter") { | ||
def helper = new GroovyShell(new Binding(['suite': delegate])) | ||
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy")) | ||
|
||
def dbName = context.dbName | ||
def tableName = "tbl_" + helper.randomSuffix() | ||
|
||
def exist = { res -> Boolean | ||
return res.size() != 0 | ||
} | ||
|
||
sql "DROP TABLE IF EXISTS ${dbName}.${tableName}" | ||
target_sql "DROP TABLE IF EXISTS TEST_${dbName}.${tableName}" | ||
|
||
helper.enableDbBinlog() | ||
|
||
sql """ | ||
CREATE TABLE if NOT EXISTS ${tableName} | ||
( | ||
`test` INT, | ||
`id` INT | ||
) | ||
ENGINE=OLAP | ||
AGGREGATE KEY(`test`, `id`) | ||
PARTITION BY RANGE(`id`) | ||
( | ||
) | ||
DISTRIBUTED BY HASH(id) BUCKETS 1 | ||
PROPERTIES ( | ||
"replication_allocation" = "tag.location.default: 1", | ||
"binlog.enable" = "true", | ||
"bloom_filter_columns" = "test" | ||
) | ||
""" | ||
|
||
helper.ccrJobDelete() | ||
helper.ccrJobCreate() | ||
|
||
assertTrue(helper.checkRestoreFinishTimesOf("${tableName}", 30)) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "sql")) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "target")) | ||
|
||
def target_res = target_sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
assertTrue(target_res[0][1].contains("\"bloom_filter_columns\" = \"test\"")) | ||
} |
71 changes: 71 additions & 0 deletions
71
...ssion-test/suites/db_sync/table/properties/colocate_with/test_ds_tbl_colocate_with.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_ds_tbl_colocate_with") { | ||
def helper = new GroovyShell(new Binding(['suite': delegate])) | ||
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy")) | ||
|
||
def dbName = context.dbName | ||
def tableName = "tbl_" + helper.randomSuffix() | ||
def test_num = 0 | ||
def insert_num = 5 | ||
|
||
def exist = { res -> Boolean | ||
return res.size() != 0 | ||
} | ||
|
||
sql "DROP TABLE IF EXISTS ${dbName}.${tableName}" | ||
target_sql "DROP TABLE IF EXISTS TEST_${dbName}.${tableName}" | ||
|
||
helper.enableDbBinlog() | ||
|
||
sql """ | ||
CREATE TABLE if NOT EXISTS ${tableName} | ||
( | ||
`test` INT, | ||
`id` INT | ||
) | ||
ENGINE=OLAP | ||
AGGREGATE KEY(`test`, `id`) | ||
PARTITION BY RANGE(`id`) | ||
( | ||
) | ||
DISTRIBUTED BY HASH(id) BUCKETS 1 | ||
PROPERTIES ( | ||
"replication_allocation" = "tag.location.default: 1", | ||
"binlog.enable" = "true", | ||
"colocate_with" = "group1" | ||
) | ||
""" | ||
|
||
helper.ccrJobDelete() | ||
helper.ccrJobCreate() | ||
|
||
assertTrue(helper.checkRestoreFinishTimesOf("${tableName}", 30)) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "sql")) | ||
|
||
assertTrue(helper.checkShowTimesOf("SHOW TABLES LIKE \"${tableName}\"", exist, 60, "target")) | ||
|
||
def res = sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
def target_res = target_sql "SHOW CREATE TABLE ${tableName}" | ||
|
||
assertTrue(res[0][1].contains("\"colocate_with\" = \"group1\"")) | ||
|
||
assertTrue(!target_res[0][1].contains("\"colocate_with\" = \"group1\"")) | ||
} |
Oops, something went wrong.