Skip to content

Commit

Permalink
dropped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
max-hoffman committed Nov 20, 2023
1 parent 13f511a commit b7e3b51
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions enginetest/queries/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,14 @@ var QueryTests = []QueryTest{
Query: "SELECT 1 % true",
Expected: []sql.Row{{"0"}},
},
{
Query: "SELECT * from mytable where (0.000 and true)",
Expected: []sql.Row{},
},
{
Query: "SELECT * from mytable where (-0.000 and true)",
Expected: []sql.Row{},
},
{
Query: "show full processlist",
Expected: []sql.Row{},
Expand Down

0 comments on commit b7e3b51

Please sign in to comment.