Restore \G suffix support

This commit is contained in:
Ivan Lezhankin 2020-01-23 14:18:47 +03:00
parent 5c39023ebe
commit bfdab88efb

View File

@ -513,6 +513,12 @@ private:
if (input.empty())
break;
if (input.ends_with("\\G"))
{
input.resize(input.size() - 2);
has_vertical_output_suffix = true;
}
try
{
if (!process(input))