2023-05-01 16:25:35 +00:00
|
|
|
CREATE TABLE foo (key UInt32, a String, b Int64, c String) ENGINE = TinyLog;
|
|
|
|
|
2023-03-17 18:28:55 +00:00
|
|
|
SELECT count() FROM mysql(mysql('127.0.0.1:9004', currentDatabase(), 'foo', 'default', ''), '127.0.0.1:9004', currentDatabase(), 'foo', '', ''); -- { serverError UNKNOWN_FUNCTION }
|
2023-05-01 16:25:35 +00:00
|
|
|
SELECT count() FROM mysql(mysql('127.0.0.1:9004', currentDatabase(), 'foo', 'default', '', SETTINGS connection_pool_size = 1), '127.0.0.1:9004', currentDatabase(), 'foo', '', ''); -- { serverError UNKNOWN_FUNCTION, UNSUPPORTED_METHOD }
|