Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit 8e492c5

Browse files
author
Juanjo Alvarez
committed
Add also test in engine_test.go
Signed-off-by: Juanjo Alvarez <[email protected]>
1 parent c936158 commit 8e492c5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

engine_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -877,6 +877,10 @@ var queries = []struct {
877877
"SELECT substring(s, 1, 1), count(*) FROM mytable GROUP BY substring(s, 1, 1)",
878878
[]sql.Row{{"f", int64(1)}, {"s", int64(1)}, {"t", int64(1)}},
879879
},
880+
{
881+
"SELECT SLEEP(0.5)",
882+
[]sql.Row{{int(0)}},
883+
},
880884
}
881885

882886
func TestQueries(t *testing.T) {

0 commit comments

Comments
 (0)