mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Revert "Common SQL/JSON clauses"
This reverts commit 865fe4d5df.
This has caused issues with a significant number of buildfarm members
This commit is contained in:
@@ -737,32 +737,6 @@ JumbleExpr(JumbleState *jstate, Node *node)
|
||||
JumbleExpr(jstate, (Node *) conf->exclRelTlist);
|
||||
}
|
||||
break;
|
||||
case T_JsonFormat:
|
||||
{
|
||||
JsonFormat *format = (JsonFormat *) node;
|
||||
|
||||
APP_JUMB(format->type);
|
||||
APP_JUMB(format->encoding);
|
||||
}
|
||||
break;
|
||||
case T_JsonReturning:
|
||||
{
|
||||
JsonReturning *returning = (JsonReturning *) node;
|
||||
|
||||
JumbleExpr(jstate, (Node *) returning->format);
|
||||
APP_JUMB(returning->typid);
|
||||
APP_JUMB(returning->typmod);
|
||||
}
|
||||
break;
|
||||
case T_JsonValueExpr:
|
||||
{
|
||||
JsonValueExpr *expr = (JsonValueExpr *) node;
|
||||
|
||||
JumbleExpr(jstate, (Node *) expr->raw_expr);
|
||||
JumbleExpr(jstate, (Node *) expr->formatted_expr);
|
||||
JumbleExpr(jstate, (Node *) expr->format);
|
||||
}
|
||||
break;
|
||||
case T_List:
|
||||
foreach(temp, (List *) node)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user