diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2022-03-22 19:55:15 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2022-03-22 19:56:14 -0400 |
commit | 1460fc5942591fdb6bee0bc8342019ede31ff3b6 (patch) | |
tree | 8b2b3d2370610f8e21c14f223b08523491c7559c /src/include/nodes/parsenodes.h | |
parent | 3707e437c73920492cab0dd17432be6e89bafd76 (diff) |
Revert "Common SQL/JSON clauses"
This reverts commit 865fe4d5df560a6f5353da652018ff876978ad2d.
This has caused issues with a significant number of buildfarm members
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 712e56b5f28..2f618cb2292 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -1553,19 +1553,6 @@ typedef struct TriggerTransition bool isTable; } TriggerTransition; -/* Nodes for SQL/JSON support */ - -/* - * JsonOutput - - * representation of JSON output clause (RETURNING type [FORMAT format]) - */ -typedef struct JsonOutput -{ - NodeTag type; - TypeName *typeName; /* RETURNING type name, if specified */ - JsonReturning returning; /* RETURNING FORMAT clause and type Oids */ -} JsonOutput; - /***************************************************************************** * Raw Grammar Output Statements *****************************************************************************/ |