mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
18 lines
626 B
SQL
18 lines
626 B
SQL
-- Tags: no-parallel
|
|
|
|
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'));
|