Skip to content

Commit 82e7c5e

Browse files
author
James Cor
committed
remove comments
1 parent 6f8e440 commit 82e7c5e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

enginetest/queries/script_queries.go

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8809,17 +8809,14 @@ var CreateDatabaseScripts = []ScriptTest{
88098809
Expected: []sql.Row{{types.NewOkResult(1)}},
88108810
},
88118811
{
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"}},
88158814
},
88168815
{
88178816
Query: "CREATE DATABASE newtest1db DEFAULT COLLATE binary ENCRYPTION='Y'",
88188817
Expected: []sql.Row{{types.NewOkResult(1)}},
88198818
},
88208819
{
8821-
//SkipResultCheckOnServerEngine: true, // tracking issue here, https://github.com/dolthub/dolt/issues/6921.
8822-
// 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
88238820
Query: "SHOW WARNINGS /* 2 */",
88248821
Expected: []sql.Row{
88258822
{"Warning", 1235, "Setting CHARACTER SET, COLLATION and ENCRYPTION are not supported yet"},

0 commit comments

Comments
 (0)