Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shnikd committed May 24, 2024
1 parent ec460b7 commit 1790ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/sql/pg/pg_sql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2912,7 +2912,7 @@ class TConverter : public IPGParseEvents {
case AT_ColumnDefault: { /* ALTER COLUMN DEFAULT */
const auto* def = cmd->def;
const auto* colName = cmd->name;
switch (NodeTag(def)) {
switch (NodeTag(def)) {
case T_FuncCall: {
const auto* newDefault = CAST_NODE(FuncCall, def);
const auto* funcName = ListNodeNth(newDefault->funcname, 0);
Expand Down

0 comments on commit 1790ae6

Please sign in to comment.