mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
5d795661ed
Refs: #22560
6 lines
300 B
SQL
6 lines
300 B
SQL
DROP TABLE IF EXISTS underlying_01795;
|
|
CREATE TABLE underlying_01795 (key UInt64) Engine=TinyLog();
|
|
INSERT INTO FUNCTION remote('127.1', currentDatabase(), underlying_01795) SELECT toUInt64(number) FROM system.numbers LIMIT 1;
|
|
SELECT * FROM underlying_01795 FORMAT Null;
|
|
DROP TABLE underlying_01795;
|