mirror of
https://github.com/HypoPG/hypopg
synced 2026-05-24 09:38:21 +00:00
Pg 17 support (#83)
tuplestore_donestoring() has been a no-op for a very long time (way before any version we support), and now that upstream removed the compatibility macro (see commit 75680c3d8) let's remove it too.
This commit is contained in:
parent
4520a493c8
commit
5593f82f17
1 changed files with 0 additions and 9 deletions
|
|
@ -1289,9 +1289,6 @@ hypopg(PG_FUNCTION_ARGS)
|
|||
tuplestore_putvalues(tupstore, tupdesc, values, nulls);
|
||||
}
|
||||
|
||||
/* clean up and return the tuplestore */
|
||||
tuplestore_donestoring(tupstore);
|
||||
|
||||
return (Datum) 0;
|
||||
}
|
||||
|
||||
|
|
@ -1371,9 +1368,6 @@ hypopg_create_index(PG_FUNCTION_ARGS)
|
|||
i++;
|
||||
}
|
||||
|
||||
/* clean up and return the tuplestore */
|
||||
tuplestore_donestoring(tupstore);
|
||||
|
||||
return (Datum) 0;
|
||||
}
|
||||
|
||||
|
|
@ -1719,9 +1713,6 @@ hypopg_hidden_indexes(PG_FUNCTION_ARGS)
|
|||
tuplestore_putvalues(tupstore, tupdesc, values, nulls);
|
||||
}
|
||||
|
||||
/* clean up and return the tuplestore */
|
||||
tuplestore_donestoring(tupstore);
|
||||
|
||||
return (Datum) 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue