executable_complexJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'x UInt64, y UInt64' --query "SELECT x, y, x + y AS a, x * y AS b FROM table"01000xUInt64yUInt64aUInt640bUInt640executable_simpleJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'x UInt64' --query "SELECT x, x + x AS a, x * x AS b FROM table"01000xaUInt640bUInt640executable_complex_directJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'x UInt64, y UInt64' --query "SELECT x, y, x + y AS a, x * y AS b FROM table"0xUInt64yUInt64aUInt640bUInt640simple_executable_cache_dictionary_no_implicit_keyidUInt64valueStringJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'id UInt64' --query "SELECT id, 'Value' AS value FROM table"false10000300simple_executable_cache_dictionary_implicit_keyidUInt64valueStringJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'id UInt64' --query "SELECT 'Value' AS value FROM table"true10000300complex_executable_cache_dictionary_no_implicit_keyidUInt64id_keyStringvalueStringJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'id UInt64, id_key String' --query "SELECT id, id_key, 'Value' AS value FROM table"false10000300complex_executable_cache_dictionary_implicit_keyidUInt64id_keyStringvalueStringJSONEachRowcd /; clickhouse-local --input-format JSONEachRow --output-format JSONEachRow --structure 'id UInt64, id_key String' --query "SELECT 'Value' AS value FROM table"true10000300