From 24f27c355ccc1c3fad614bcc8b14015e78f9547c Mon Sep 17 00:00:00 2001 From: krlmlr Date: Mon, 9 Oct 2023 07:53:36 +0000 Subject: [PATCH] [create-pull-request] automated change --- tests/testthat/_snaps/postgres.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/testthat/_snaps/postgres.md b/tests/testthat/_snaps/postgres.md index 8711b2735..93489b7d5 100644 --- a/tests/testthat/_snaps/postgres.md +++ b/tests/testthat/_snaps/postgres.md @@ -87,12 +87,12 @@ CAST("e1" AS INTEGER) AS "e1" FROM ( VALUES + ('cat', 7, 'F', 6), + ('dog', 6, 'E', 5), ('elephant', 2, 'D', 4), ('lion', 3, 'E', 5), ('seal', 4, 'F', 6), - ('worm', 5, 'G', 7), - ('dog', 6, 'E', 5), - ('cat', 7, 'F', 6) + ('worm', 5, 'G', 7) ) AS drvd("c", "d", "e", "e1") $load$tf_3 @@ -154,11 +154,11 @@ CAST("o" AS TEXT) AS "o" FROM ( VALUES - (1, 'house', 'e'), - (1, 'tree', 'f'), + (1, 'garden', 'i'), (1, 'hill', 'g'), + (1, 'house', 'e'), (1, 'streetlamp', 'h'), - (1, 'garden', 'i') + (1, 'tree', 'f') ) AS drvd("zz", "n", "o")