mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
16 lines
604 B
MySQL
16 lines
604 B
MySQL
|
SELECT 'executable_pool_simple';
|
||
|
|
||
|
SELECT dictGet('executable_pool_simple', 'a', toUInt64(1));
|
||
|
SELECT dictGet('executable_pool_simple', 'b', toUInt64(1));
|
||
|
|
||
|
SELECT dictGet('executable_pool_simple', 'a', toUInt64(2));
|
||
|
SELECT dictGet('executable_pool_simple', 'b', toUInt64(2));
|
||
|
|
||
|
SELECT 'executable_pool_complex';
|
||
|
|
||
|
SELECT dictGet('executable_pool_complex', 'a', ('First_1', 'Second_1'));
|
||
|
SELECT dictGet('executable_pool_complex', 'b', ('First_1', 'Second_1'));
|
||
|
|
||
|
SELECT dictGet('executable_pool_complex', 'a', ('First_2', 'Second_2'));
|
||
|
SELECT dictGet('executable_pool_complex', 'b', ('First_2', 'Second_2'));
|