ClickHouse/tests/queries/0_stateless/02418_keeper_map_keys_limit.sql
2023-02-13 11:22:43 +00:00

31 lines
1.1 KiB
SQL

-- Tags: no-ordinary-database, no-fasttest
DROP TABLE IF EXISTS 02418_test SYNC;
CREATE TABLE 02418_test (key UInt64, value Float64) Engine=KeeperMap('/' || currentDatabase() || '/test2418', 3) PRIMARY KEY(key);
INSERT INTO 02418_test VALUES (1, 1.1), (2, 2.2);
SELECT count() FROM 02418_test;
INSERT INTO 02418_test VALUES (3, 3.3), (4, 4.4); -- { serverError LIMIT_EXCEEDED }
INSERT INTO 02418_test VALUES (1, 2.1), (2, 3.2), (3, 3.3);
SELECT count() FROM 02418_test;
CREATE TABLE 02418_test_another (key UInt64, value Float64) Engine=KeeperMap('/' || currentDatabase() || '/test2418', 4) PRIMARY KEY(key);
INSERT INTO 02418_test VALUES (4, 4.4); -- { serverError LIMIT_EXCEEDED }
INSERT INTO 02418_test_another VALUES (4, 4.4);
SELECT count() FROM 02418_test;
SELECT count() FROM 02418_test_another;
DELETE FROM 02418_test WHERE key <= 2;
INSERT INTO 02418_test VALUES (1, 1.1);
INSERT INTO 02418_test VALUES (2, 1.1); -- { serverError LIMIT_EXCEEDED }
SELECT count() FROM 02418_test;
SELECT count() FROM 02418_test_another;
DROP TABLE 02418_test SYNC;
DROP TABLE 02418_test_another SYNC;