diff options
| author | Peter Eisentraut | 2016-12-28 17:00:00 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2017-03-06 18:31:47 +0000 |
| commit | 63ebd377a6ecd3388596c3ea958e813f23b5f4ae (patch) | |
| tree | f9fc4c773d2edaa39c8d5f39798c72554049543a /src/include/nodes | |
| parent | 12a2544cb5f9e1f8541d1b941da6d9dae15f50a5 (diff) | |
Use class_args field in opclass_drop
This makes it consistent with the usage in opclass_item.
Reviewed-by: Jim Nasby <Jim.Nasby@BlueTreble.com>
Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 5afc3ebea0..a9d0d08b53 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -2424,7 +2424,8 @@ typedef struct CreateOpClassItem List *args; /* argument types */ int number; /* strategy num or support proc num */ List *order_family; /* only used for ordering operators */ - List *class_args; /* only used for functions */ + List *class_args; /* amproclefttype/amprocrighttype or + * amoplefttype/amoprighttype */ /* fields used for a storagetype item: */ TypeName *storedtype; /* datatype stored in index */ } CreateOpClassItem; |
