mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Restore \G suffix support
This commit is contained in:
parent
5c39023ebe
commit
bfdab88efb
@ -513,6 +513,12 @@ private:
|
|||||||
if (input.empty())
|
if (input.empty())
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
if (input.ends_with("\\G"))
|
||||||
|
{
|
||||||
|
input.resize(input.size() - 2);
|
||||||
|
has_vertical_output_suffix = true;
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!process(input))
|
if (!process(input))
|
||||||
|
Loading…
Reference in New Issue
Block a user