You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: enginetest/queries/script_queries.go
+3-9Lines changed: 3 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -8809,21 +8809,17 @@ var CreateDatabaseScripts = []ScriptTest{
8809
8809
Expected: []sql.Row{{types.NewOkResult(1)}},
8810
8810
},
8811
8811
{
8812
-
SkipResultCheckOnServerEngine: true, // tracking issue here, https://github.com/dolthub/dolt/issues/6921. Also for when run with prepares, the warning is added twice
8813
-
Query: "SHOW WARNINGS /* 1 */",
8814
-
Expected: []sql.Row{{"Warning", 1235, "Setting CHARACTER SET, COLLATION and ENCRYPTION are not supported yet"}},
8812
+
Query: "SHOW WARNINGS /* 1 */",
8813
+
Expected: []sql.Row{{"Warning", 1235, "Setting CHARACTER SET, COLLATION and ENCRYPTION are not supported yet"}},
// TODO: There should only be one warning (the warnings are not clearing for create database query) AND 'PREPARE' statements should not create warning from its query
8823
8820
Query: "SHOW WARNINGS /* 2 */",
8824
8821
Expected: []sql.Row{
8825
8822
{"Warning", 1235, "Setting CHARACTER SET, COLLATION and ENCRYPTION are not supported yet"},
8826
-
{"Warning", 1235, "Setting CHARACTER SET, COLLATION and ENCRYPTION are not supported yet"},
8827
8823
},
8828
8824
},
8829
8825
{
@@ -8939,10 +8935,8 @@ var DropDatabaseScripts = []ScriptTest{
0 commit comments