From c8c1fcab2080234c8b92903f37d78a09e7feeb7d Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Wed, 14 Aug 2024 06:26:05 -0400 Subject: [PATCH] fix stack expected --- vegafusion-sql/tests/expected/stack.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/vegafusion-sql/tests/expected/stack.toml b/vegafusion-sql/tests/expected/stack.toml index a0a06e6ce..92e430ea4 100644 --- a/vegafusion-sql/tests/expected/stack.toml +++ b/vegafusion-sql/tests/expected/stack.toml @@ -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]