Skip to content

Commit

Permalink
fix stack expected
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Aug 14, 2024
1 parent 98cc72d commit c8c1fca
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions vegafusion-sql/tests/expected/stack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ values2 AS (SELECT "a", "b", "c", ("end" - coalesce("a", 0.0)) AS "start", "end"
SELECT * FROM values2 ORDER BY "c" ASC NULLS FIRST, "end" ASC NULLS FIRST
"""
result = '''
+-----+---+----+-------+-------+
| a | b | c | start | end |
+-----+---+----+-------+-------+
| -11 | 4 | A | 0.0 | -11.0 |
| 5 | 7 | A | 0.0 | 5.0 |
| 1 | 9 | A | 5.0 | 6.0 |
| -3 | 8 | BB | -7.0 | -10.0 |
| -7 | 6 | BB | 0.0 | -7.0 |
| 13 | 3 | BB | 0.0 | 13.0 |
| 9 | 5 | BB | 13.0 | 22.0 |
+-----+---+----+-------+-------+
+-----+---+----+-------+-----+
| a | b | c | start | end |
+-----+---+----+-------+-----+
| -11 | 4 | A | 0.0 | -11 |
| 5 | 7 | A | 0.0 | 5 |
| 1 | 9 | A | 5.0 | 6 |
| -3 | 8 | BB | -7.0 | -10 |
| -7 | 6 | BB | 0.0 | -7 |
| 13 | 3 | BB | 0.0 | 13 |
| 9 | 5 | BB | 13.0 | 22 |
+-----+---+----+-------+-----+
'''

[mode_center]
Expand Down

0 comments on commit c8c1fca

Please sign in to comment.