diff options
| author | Peter Eisentraut <peter@eisentraut.org> | 2025-12-03 14:41:12 +0100 |
|---|---|---|
| committer | Peter Eisentraut <peter@eisentraut.org> | 2025-12-03 14:44:14 +0100 |
| commit | 9790affcce032710c907aced834e968f2fc41bce (patch) | |
| tree | 50329e12f87bbaa117688193a624b7cde61670aa /contrib | |
| parent | 1b2bb5077e9e9deac60a3e92e742465e7bcd3a21 (diff) | |
Fix stray references to SubscriptRef
This type never existed. SubscriptingRef was meant instead.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/2eaa45e3-efc5-4d75-b082-f8159f51445f%40eisentraut.org
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/hstore/hstore_subs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hstore/hstore_subs.c b/contrib/hstore/hstore_subs.c index 3d03f66fa0d..1bae69e4e2c 100644 --- a/contrib/hstore/hstore_subs.c +++ b/contrib/hstore/hstore_subs.c @@ -74,7 +74,7 @@ hstore_subscript_transform(SubscriptingRef *sbsref, errmsg("hstore subscript must have type text"), parser_errposition(pstate, exprLocation(ai->uidx)))); - /* ... and store the transformed subscript into the SubscriptRef node */ + /* ... and store the transformed subscript into the SubscriptingRef node */ sbsref->refupperindexpr = list_make1(subexpr); sbsref->reflowerindexpr = NIL; |
