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

branch-3.0: [regression-test](fix) fix 'desc table' to follower assertion failure #46788 #46818

Merged
merged 1 commit into from
Jan 11, 2025
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
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
-- This file is automatically generated. You should know what you did if you want to edit this
-- !sql --
-- !master_sql --
col0 bigint No true \N
col_array array<text> Yes false \N NONE
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
col4 map<int,int> Yes false \N NONE
col5 struct<f1:int> Yes false \N NONE

-- !sql --
-- !master_sql --
col0 bigint No true \N
col_map map<char(32),text> Yes false \N NONE
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
col4 map<int,int> Yes false \N NONE
col5 struct<f1:int> Yes false \N NONE

-- !sql --
-- !master_sql --
col0 bigint No true \N
col_struct struct<f1:varchar(1)> Yes false \N NONE
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
col4 map<int,int> Yes false \N NONE
col5 struct<f1:int> Yes false \N NONE

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
col4 map<int,int> Yes false \N NONE
col5 struct<f1:int> Yes false \N NONE

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
col4 map<int,int> Yes false \N NONE
col5 struct<f1:int> Yes false \N NONE

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
Expand All @@ -47,7 +47,7 @@ col5 struct<f1:int> Yes false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
Expand All @@ -61,7 +61,7 @@ col6 variant Yes false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
Expand All @@ -75,7 +75,7 @@ col6 variant No false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
Expand All @@ -89,7 +89,7 @@ col6 variant Yes false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> No false \N NONE
Expand All @@ -103,7 +103,7 @@ col6 variant No false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> Yes false \N NONE
Expand All @@ -117,7 +117,7 @@ col6 variant Yes false \N NONE
-- !sql_before --
1 2 [1, 2] {1:2} {"f1":1} {"a":[1,2,3]}

-- !sql --
-- !master_sql --
col0 bigint No true \N
col2 int No false \N NONE
col3 array<int> No false \N NONE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite("create_nestedtypes_with_schemachange", "p0") {
}
}
// desc table
qt_sql "DESC $testTablex"
qt_master_sql "DESC $testTablex"
}

// array
Expand Down Expand Up @@ -102,7 +102,7 @@ suite("create_nestedtypes_with_schemachange", "p0") {
}
}
// desc table
qt_sql "DESC $testTablex"
qt_master_sql "DESC $testTablex"
qt_sql_after "select * from $testTablex"
}

Expand Down
Loading