diff options
| author | grigoriypisar <[email protected]> | 2025-09-04 15:38:50 +0300 |
|---|---|---|
| committer | grigoriypisar <[email protected]> | 2025-09-04 16:19:21 +0300 |
| commit | 99efb5c4ed87067d5f6e2393b9d746532d7e66fe (patch) | |
| tree | 3b964a463eaea62808ee344594c5ef481b39013c /yql/essentials/sql/v1/sql_ut.h | |
| parent | c089750f85877af1507e3d309def33f4a3be6299 (diff) | |
cleared world dependency for streaming queries
Cleared world dependency for streaming queries
Supported top level pragmas for streaming queries
commit_hash:2bf7256ee9ff7bba724c76acf7086db014a96afd
Diffstat (limited to 'yql/essentials/sql/v1/sql_ut.h')
| -rw-r--r-- | yql/essentials/sql/v1/sql_ut.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yql/essentials/sql/v1/sql_ut.h b/yql/essentials/sql/v1/sql_ut.h index fb18b1658f3..ac6e410b5dd 100644 --- a/yql/essentials/sql/v1/sql_ut.h +++ b/yql/essentials/sql/v1/sql_ut.h @@ -132,9 +132,9 @@ public: typedef std::function<void (const TString& word, const TString& line)> TVerifyLineFunc; inline TString VerifyProgram(const NYql::TAstParseResult& res, TWordCountHive& wordCounter, TVerifyLineFunc verifyLine = TVerifyLineFunc()) { - const auto programm = GetPrettyPrint(res); + const auto program = GetPrettyPrint(res); TVector<TString> yqlProgram; - Split(programm, "\n", yqlProgram); + Split(program, "\n", yqlProgram); for (const auto& line: yqlProgram) { for (auto& counterIter: wordCounter) { const auto& word = counterIter.first; @@ -148,7 +148,7 @@ inline TString VerifyProgram(const NYql::TAstParseResult& res, TWordCountHive& w } } } - return programm; + return program; } inline void VerifySqlInHints(const TString& query, const THashSet<TString>& expectedHints, TMaybe<bool> ansi) { |
