diff options
| author | mikhnenko <[email protected]> | 2025-09-26 16:05:56 +0300 |
|---|---|---|
| committer | mikhnenko <[email protected]> | 2025-09-26 16:36:44 +0300 |
| commit | 5f06d989f8c9230743fef30f7a9f70809b7d07a3 (patch) | |
| tree | 2e855d912a6ada03658da395f470e075e085c79d /yql/essentials/sql/v1/select.cpp | |
| parent | ee38d4a04d0b4226b36bd9d548c35739f11e88f9 (diff) | |
Fix -Wunused-but-set-variable in yql
If you think that this pr has broken something for you, roll it back
If the problem is not trivial, come to [support](https://nda.ya.ru/t/a1JIzEbo78mtfQ)
Original errors you can see [here](https://nda.ya.ru/t/pFJQM0ho7KSaTN
commit_hash:77d426cfbc646733517e14e69ac61a1afedaf82f
Diffstat (limited to 'yql/essentials/sql/v1/select.cpp')
| -rw-r--r-- | yql/essentials/sql/v1/select.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/sql/v1/select.cpp b/yql/essentials/sql/v1/select.cpp index f20668ddbc6..c6ba387e7bd 100644 --- a/yql/essentials/sql/v1/select.cpp +++ b/yql/essentials/sql/v1/select.cpp @@ -2430,7 +2430,7 @@ public: } if (ListCall_) { - if (auto atom = dynamic_cast<TTableRows*>(term.Get())) { + if (/* auto atom = */ dynamic_cast<TTableRows*>(term.Get())) { listPosIndex = termIndex; } } |
