diff options
author | vvvv <[email protected]> | 2025-02-19 17:28:26 +0300 |
---|---|---|
committer | vvvv <[email protected]> | 2025-02-19 17:46:38 +0300 |
commit | 52daccf61e2e827114cfb3372071cddaec7974ba (patch) | |
tree | 07404f6ec241c8a2b96a4da07dc0f0d0c247799c /yql/essentials/public/sql_format/sql_format.h | |
parent | ca4b5f28703b0d06599c94f3eacc5d6c498c31d5 (diff) |
YQL-19594 Explicit lexers & parsers
commit_hash:6be543b7c5bff6ee474ee606c920197fb2569767
Diffstat (limited to 'yql/essentials/public/sql_format/sql_format.h')
-rw-r--r-- | yql/essentials/public/sql_format/sql_format.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/yql/essentials/public/sql_format/sql_format.h b/yql/essentials/public/sql_format/sql_format.h new file mode 100644 index 00000000000..afde5204e69 --- /dev/null +++ b/yql/essentials/public/sql_format/sql_format.h @@ -0,0 +1,8 @@ +#pragma once +#include <util/generic/string.h> + +namespace NSQLFormat { + +bool SqlFormatSimple(const TString& query, TString& formattedQuery, TString& error); + +} |