summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoruzhastik <[email protected]>2024-09-27 22:15:01 +0300
committerGitHub <[email protected]>2024-09-27 22:15:01 +0300
commit29eaa4e43a388583a4eaa972199b0b2e81d8ec3c (patch)
tree18eb3526a4d7e7e8fe22d3346b972235202642d1
parentbbb4500f6b1fcdfa439a7a1400ac80fd230492d2 (diff)
avoid uninit stype (#9832)
-rw-r--r--ydb/library/yql/sql/pg/pg_sql.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/sql/pg/pg_sql.cpp b/ydb/library/yql/sql/pg/pg_sql.cpp
index 2a5bd78852f..30ea64a9b0c 100644
--- a/ydb/library/yql/sql/pg/pg_sql.cpp
+++ b/ydb/library/yql/sql/pg/pg_sql.cpp
@@ -5852,7 +5852,7 @@ public:
auto nameNode = ListNodeNth(value->defnames, 0);
auto name = to_lower(TString(StrVal(nameNode)));
TString sfunc;
- ui32 stype;
+ ui32 stype = 0;
TString combinefunc;
TString finalfunc;
TString serialfunc;