From 8bdf02eb71a30ece8dd5f17895697455218fbcfc Mon Sep 17 00:00:00 2001 From: gatorsmile Date: Thu, 25 Oct 2018 10:30:00 -0700 Subject: [PATCH] remove CTAS --- .../resources/sql-tests/inputs/higher-order-functions.sql | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sql/core/src/test/resources/sql-tests/inputs/higher-order-functions.sql b/sql/core/src/test/resources/sql-tests/inputs/higher-order-functions.sql index 8335968b9f959..504306470faea 100644 --- a/sql/core/src/test/resources/sql-tests/inputs/higher-order-functions.sql +++ b/sql/core/src/test/resources/sql-tests/inputs/higher-order-functions.sql @@ -60,8 +60,3 @@ select zip_with(array('a', 'b', 'c'), array('d', 'e', 'f'), (x, y) -> concat(x, -- Zip with array coalesce select zip_with(array('a'), array('d', null, 'f'), (x, y) -> coalesce(x, y)) as v; - -create or replace temporary view nested as values - (1, map(1, 1, 2, 2, 3, 3)), - (2, map(4, 4, 5, 5, 6, 6)) - as t(x, ys);