mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
Add const to values and nulls arguments
This excludes any changes that would change the external AM APIs. Reviewed-by: Aleksander Alekseev <aleksander@timescale.com> Discussion: https://www.postgresql.org/message-id/flat/14c31f4a-0347-0805-dce8-93a9072c05a5%40eisentraut.org
This commit is contained in:
@@ -106,7 +106,7 @@ _h_spooldestroy(HSpool *hspool)
|
||||
* spool an index entry into the sort file.
|
||||
*/
|
||||
void
|
||||
_h_spool(HSpool *hspool, ItemPointer self, Datum *values, bool *isnull)
|
||||
_h_spool(HSpool *hspool, ItemPointer self, const Datum *values, const bool *isnull)
|
||||
{
|
||||
tuplesort_putindextuplevalues(hspool->sortstate, hspool->index,
|
||||
self, values, isnull);
|
||||
|
Reference in New Issue
Block a user