Skip to content

Commit 7ef64e7

Browse files
committed
Fix comment in parsenodes.h
CreateStmt->inhRelations is a list of RangeVars, but a comment was incorrect about that. Author: Julien Rouhaud Discussion: https://postgr.es/m/20210330123015.yzekhz5sweqbgxdr@nol
1 parent 6568cef commit 7ef64e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/nodes/parsenodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2131,7 +2131,7 @@ typedef struct CreateStmt
21312131
RangeVar *relation; /* relation to create */
21322132
List *tableElts; /* column definitions (list of ColumnDef) */
21332133
List *inhRelations; /* relations to inherit from (list of
2134-
* inhRelation) */
2134+
* RangeVar) */
21352135
PartitionBoundSpec *partbound; /* FOR VALUES clause */
21362136
PartitionSpec *partspec; /* PARTITION BY clause */
21372137
TypeName *ofTypename; /* OF typename */

0 commit comments

Comments
 (0)