Browse Source

avoid uninit stype (#9832)

uzhastik 5 months ago
parent
commit
29eaa4e43a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ydb/library/yql/sql/pg/pg_sql.cpp

+ 1 - 1
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;