From a7edbfe85d995c3d93659c08ee736d71f782de8c Mon Sep 17 00:00:00 2001 From: MrLolthe1st Date: Thu, 18 Jan 2024 10:30:09 +0000 Subject: [PATCH] YQL-16252, YQL-16623: fix set_config --- ydb/library/yql/sql/pg/pg_sql.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ydb/library/yql/sql/pg/pg_sql.cpp b/ydb/library/yql/sql/pg/pg_sql.cpp index 5e4d328ca05d..03bc0ffacbd5 100644 --- a/ydb/library/yql/sql/pg/pg_sql.cpp +++ b/ydb/library/yql/sql/pg/pg_sql.cpp @@ -640,6 +640,7 @@ class TConverter : public IPGParseEvents { } auto loc = value->location; VariableSetStmt config; + config.kind = VAR_SET_VALUE; auto arg0 = ListNodeNth(value->args, 0); auto arg1 = ListNodeNth(value->args, 1); auto arg2 = ListNodeNth(value->args, 2);