diff options
| author | vvvv <[email protected]> | 2025-03-18 12:30:14 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-03-18 12:50:39 +0300 |
| commit | 269125dc862303a37741dfda6fcb2199aa7d329a (patch) | |
| tree | ebb781c65b15b0911e631f85043bf65b50edb0f8 /yql/essentials/sql/v1/query.cpp | |
| parent | 39355151af244681ffa988fda4b79f3f01da8797 (diff) | |
YQL-19712 RuntimeLogLevel setting, mrjob logger
init
commit_hash:6178c9e20a737d499b13f1b38fdfb621f2d8db2f
Diffstat (limited to 'yql/essentials/sql/v1/query.cpp')
| -rw-r--r-- | yql/essentials/sql/v1/query.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yql/essentials/sql/v1/query.cpp b/yql/essentials/sql/v1/query.cpp index 33fd31aed2d..8e886064784 100644 --- a/yql/essentials/sql/v1/query.cpp +++ b/yql/essentials/sql/v1/query.cpp @@ -3171,6 +3171,11 @@ public: BuildQuotedAtom(Pos, to_lower(ToString(warningPragma.GetAction())))))); } + if (ctx.RuntimeLogLevel) { + currentWorlds->Add(Y("let", "world", Y(TString(ConfigureName), "world", configSource, + BuildQuotedAtom(Pos, "RuntimeLogLevel"), BuildQuotedAtom(Pos, ctx.RuntimeLogLevel)))); + } + if (ctx.ResultSizeLimit > 0) { currentWorlds->Add(Y("let", "world", Y(TString(ConfigureName), "world", resultSink, BuildQuotedAtom(Pos, "SizeLimit"), BuildQuotedAtom(Pos, ToString(ctx.ResultSizeLimit))))); |
