Skip to content

Commit 687c99e

Browse files
committed
try to fix
1 parent 2e1f00d commit 687c99e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
CREATE TABLE foo (key UInt32, a String, b Int64, c String) ENGINE = TinyLog;
22

3-
SELECT count() FROM mysql(mysql('127.0.0.1:9004', currentDatabase(), 'foo', 'default', ''), '127.0.0.1:9004', currentDatabase(), 'foo', '', ''); -- { serverError UNKNOWN_FUNCTION }
4-
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 }
3+
SELECT count() FROM mysql(
4+
mysql('127.0.0.1:9004', currentDatabase(), 'foo', 'default', ''),
5+
'127.0.0.1:9004', currentDatabase(), 'foo', '', '',
6+
SETTINGS connect_timeout = 100, connection_wait_timeout = 100, read_write_timeout = 300); -- { serverError UNKNOWN_FUNCTION }
7+
SELECT count() FROM mysql(
8+
mysql('127.0.0.1:9004', currentDatabase(), 'foo', 'default', '', SETTINGS connection_pool_size = 1),
9+
'127.0.0.1:9004', currentDatabase(), 'foo', '', '',
10+
SETTINGS connect_timeout = 100, connection_wait_timeout = 100, read_write_timeout = 300); -- { serverError UNKNOWN_FUNCTION, UNSUPPORTED_METHOD }

0 commit comments

Comments
 (0)