We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d332eed commit a077390Copy full SHA for a077390
ydb/core/kqp/opt/physical/kqp_opt_phy_olap_filter.cpp
@@ -316,7 +316,7 @@ namespace {
316
317
//Workarownd for #19125
318
NYql::NNodes::TCoUtf8 RemoveJsonPathUnnecessaryQuote(const NYql::NNodes::TCoUtf8& node, TExprContext& ctx) {
319
- const std::string_view& path = node.Literal().StringValue();
+ const std::string_view& path = node.Literal();
320
if (UTF8Detect(path) == ASCII && path.starts_with("$.\"") && path.substr(3).ends_with("\"")) {
321
const auto& nakedPath = path.substr(3, path.length()-4);
322
for (auto c: nakedPath) {
0 commit comments