BUG: IF NOT EXISTS not working properly with CREATE TABLE
talagluck opened this issue · 0 comments
talagluck commented
Description
I am trying to do:
CREATE TABLE IF NOT EXISTS dbt_nyc_sales AS
SELECT * FROM read_parquet('https://github.com/GlareDB/tutorial_data/raw/main/nyc_sales/sale_year=2019/sale_month=1/f55363e2587849bcb25c057be706c69d-0.parquet')
When I try this on Cloud (QA), every time I run the command, it appends the data from the parquet file to my table, where I would expect it to not do anything once the table exists.