Skip to content

Commit

Permalink
remove CTAS
Browse files Browse the repository at this point in the history
  • Loading branch information
gatorsmile committed Oct 25, 2018
1 parent f1f3d0b commit 8bdf02e
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit 8bdf02e

Please sign in to comment.