mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
6 lines
414 B
SQL
6 lines
414 B
SQL
-- Tags: no-fasttest, no-parallel
|
|
insert into table function file('data.avro', 'Parquet', 'x UInt64') select * from numbers(10);
|
|
insert into table function file('data.avro', 'Parquet', 'x UInt64') select * from numbers(10); -- { serverError CANNOT_APPEND_TO_FILE }
|
|
insert into table function file('data.avro', 'Parquet', 'x UInt64') select * from numbers(10); -- { serverError CANNOT_APPEND_TO_FILE }
|
|
select 'OK';
|