Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions regression-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ under the License.

[示例](https://github.com/apache/doris/blob/master/regression-test/suites/javaudf_p0/test_javaudf_case.groovy#L27)

7. 同一个目录下不同case间不要创建相同的表,避免互相冲突

## 兼容性 case
指重启 FE 测试或升级测试中,在初始集群上创建的资源或规则,在集群重启或升级后也能正常使用,比如权限、UDF等。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ suite("test_show_create_table_and_views_nereids", "show") {
def shouldNotShowHiddenColumnsAndCreateWithHiddenColumns = {
connect {
multi_sql """
drop table if exists test_show_create_table_no_hidden_column;
create table test_show_create_table_no_hidden_column(id int, name varchar(50)) unique key(id) distributed by hash(id) properties('replication_num'='1');
drop table if exists test_show_create_table_no_hidden_column_nereids;
create table test_show_create_table_no_hidden_column_nereids(id int, name varchar(50)) unique key(id) distributed by hash(id) properties('replication_num'='1');
set show_hidden_columns=true;
"""

def result = JdbcUtils.executeToMapArray(context.getConnection(), "show create table test_show_create_table_no_hidden_column")
def result = JdbcUtils.executeToMapArray(context.getConnection(), "show create table test_show_create_table_no_hidden_column_nereids")
assertTrue(!result[0].get("Create Table").toString().contains("__DORIS_DELETE_SIGN__"))

test {
Expand Down