You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TEMP TABLE sample1 AS (SELECT * FROM sample('id1'));
CREATE TEMP TABLE sample2 AS (SELECT * FROM sample('id2'));
SELECT * FROM sample1
MERGE
SELECT * FROM sample2
OUTPUT AS samples;
sample1 and sample2 should run in parallel.
The text was updated successfully, but these errors were encountered:
CREATE TEMP TABLE sample1 AS (SELECT * FROM sample('id1'));
CREATE TEMP TABLE sample2 AS (SELECT * FROM sample('id2'));
SELECT * FROM sample1
MERGE
SELECT * FROM sample2
OUTPUT AS samples;
sample1 and sample2 should run in parallel.
The text was updated successfully, but these errors were encountered: