summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/json2/sql_exists.h
diff options
context:
space:
mode:
authorimunkin <[email protected]>2025-07-25 14:36:33 +0300
committerimunkin <[email protected]>2025-07-25 15:25:21 +0300
commit835b6519eb8e218bb0c84d8d7827bf9fbe7893c8 (patch)
tree24c4778644641d8c2be1aa8f1333269d683db984 /yql/essentials/udfs/common/json2/sql_exists.h
parentc439c8555866bacd34054603e87433b69becd631 (diff)
YQL-20241: Use ASCIIZ strings for UdfTerminate (essential udfs)
commit_hash:1a11133ec66e71b6c798178453a5ab43cdc6761c
Diffstat (limited to 'yql/essentials/udfs/common/json2/sql_exists.h')
-rw-r--r--yql/essentials/udfs/common/json2/sql_exists.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/udfs/common/json2/sql_exists.h b/yql/essentials/udfs/common/json2/sql_exists.h
index 8a049b49d42..cb89f20ec21 100644
--- a/yql/essentials/udfs/common/json2/sql_exists.h
+++ b/yql/essentials/udfs/common/json2/sql_exists.h
@@ -105,7 +105,7 @@ namespace NJson2Udf {
return TUnboxedValuePod(!result.GetNodes().empty());
} catch (const std::exception& e) {
- UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
+ UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).c_str());
}
}