Update 02391_recursive_buffer.sql

This commit is contained in:
Alexey Milovidov 2022-08-26 16:08:05 +03:00 committed by GitHub
parent f63fa3b04b
commit 03ed472964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,6 @@
-- Tags: no-parallel
-- because of system.tables poisoning
DROP TABLE IF EXISTS test; DROP TABLE IF EXISTS test;
CREATE TABLE test (key UInt32) Engine = Buffer(currentDatabase(), test, 16, 10, 100, 10000, 1000000, 10000000, 100000000); CREATE TABLE test (key UInt32) Engine = Buffer(currentDatabase(), test, 16, 10, 100, 10000, 1000000, 10000000, 100000000);
SELECT * FROM test; -- { serverError 269 } SELECT * FROM test; -- { serverError 269 }