mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
ad74189bc2
* Fix Log family table return wrong rows count after truncate * fix test * update test * update test
27 lines
582 B
SQL
27 lines
582 B
SQL
DROP TABLE IF EXISTS test_log;
|
|
CREATE TABLE test_log
|
|
(
|
|
`crypto_name` String,
|
|
`trade_date` Date
|
|
)
|
|
ENGINE = Log;
|
|
|
|
INSERT INTO test_log (crypto_name, trade_date) VALUES ('abc', '2021-01-01'), ('def', '2022-02-02');
|
|
|
|
TRUNCATE TABLE test_log;
|
|
SELECT count() FROM test_log;
|
|
|
|
DROP TABLE IF EXISTS test_log;
|
|
CREATE TABLE test_log
|
|
(
|
|
`crypto_name` String,
|
|
`trade_date` Date
|
|
)
|
|
ENGINE = StripeLog;
|
|
|
|
INSERT INTO test_log (crypto_name, trade_date) VALUES ('abc', '2021-01-01'), ('def', '2022-02-02');
|
|
|
|
TRUNCATE TABLE test_log;
|
|
SELECT count() FROM test_log;
|
|
DROP TABLE test_log;
|