696 was describing an issue with multi-line queries in ClickHouse, where if a query started with SELECT immediately followed by a newline, it would not get cached. The parser previously only looked for SELECT or SELECT (including spaces), so this adds SELECT\n to the list. Also removed a make call that was unused.
696 was describing an issue with multi-line queries in ClickHouse, where if a query started with
SELECT
immediately followed by a newline, it would not get cached. The parser previously only looked forSELECT
orSELECT
(including spaces), so this addsSELECT\n
to the list. Also removed amake
call that was unused.