Skip to content

Commit 29c114d

Browse files
committed
Correct SQL query
1 parent e0d97ca commit 29c114d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests_and_examples/examples/sql.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,14 +916,17 @@
916916
"name": "Test #47"
917917
},
918918
{
919-
"query": "SELECT os FROM users ORDER BY os ASC LIMIT 2",
919+
"query": "SELECT os FROM users ORDER BY os ASC LIMIT 3",
920920
"expected": {
921921
"result": [
922922
{
923923
"os": "linux"
924924
},
925925
{
926926
"os": "mac"
927+
},
928+
{
929+
"os": "windows"
927930
}
928931
],
929932
"took": "ignore",

0 commit comments

Comments
 (0)