2019-11-04 22:47:26 +00:00
|
|
|
drop table if exists test_table_url_syntax
|
|
|
|
;
|
2022-01-14 13:27:57 +00:00
|
|
|
create table test_table_url_syntax (id UInt32) ENGINE = URL('')
|
|
|
|
; -- { serverError 36 }
|
2019-11-19 12:46:07 +00:00
|
|
|
create table test_table_url_syntax (id UInt32) ENGINE = URL('','','','')
|
2019-11-04 22:47:26 +00:00
|
|
|
; -- { serverError 42 }
|
|
|
|
drop table if exists test_table_url_syntax
|
|
|
|
;
|
2022-08-25 06:49:27 +00:00
|
|
|
|
|
|
|
drop table if exists test_table_url
|
|
|
|
;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint')
|
|
|
|
; -- { serverError 36 }
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint.json');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'ErrorFormat')
|
|
|
|
; -- { serverError 73 }
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'gzip');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'gz');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'deflate');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'brotli');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'lzma');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'zstd');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'lz4');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'bz2');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'snappy');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'none');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'auto');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint.gz', 'JSONEachRow');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint.fr', 'JSONEachRow');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow');
|
|
|
|
drop table test_table_url;
|
|
|
|
|
|
|
|
create table test_table_url(id UInt32) ENGINE = URL('http://localhost/endpoint', 'JSONEachRow', 'zip')
|
2022-08-25 11:20:39 +00:00
|
|
|
; -- { serverError 48 }
|
2022-08-25 06:49:27 +00:00
|
|
|
|