Skip to content

Commit

Permalink
test: order by and limit
Browse files Browse the repository at this point in the history
  • Loading branch information
holicc committed Oct 17, 2024
1 parent eed0fae commit 60eb0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qurious/src/planner/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@ mod tests {
fn test_order_by() {
quick_test(
"SELECT name FROM person ORDER BY name asc, age desc",
"Sort: person.name ASC\n Projection: (person.name)\n TableScan: person\n",
"Sort: person.name ASC, person.age DESC\n Projection: (person.name)\n TableScan: person\n",
);

quick_test(
Expand Down

0 comments on commit 60eb0ee

Please sign in to comment.