|
1 | 1 | CREATE TABLE foo (key UInt32, a String, b Int64, c String) ENGINE = TinyLog; |
2 | 2 |
|
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