mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Merge pull request #34058 from FArthur-cmd/26686_test_final_modifier
Small test for `FINAL`
This commit is contained in:
commit
2c85373966
@ -0,0 +1,2 @@
|
||||
something 1
|
||||
something 1
|
@ -0,0 +1,15 @@
|
||||
DROP TABLE IF EXISTS test_02187;
|
||||
CREATE TABLE test_02187 (
|
||||
info String,
|
||||
id Int32
|
||||
)
|
||||
ENGINE = ReplacingMergeTree(id)
|
||||
ORDER BY id;
|
||||
|
||||
INSERT INTO TABLE test_02187 VALUES ('nothing', 1);
|
||||
INSERT INTO TABLE test_02187 VALUES ('something', 1);
|
||||
|
||||
SELECT * FROM test_02187 FINAL;
|
||||
SELECT * FROM test_02187 FINAL LIMIT 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user