mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +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:
@@ -2273,7 +2273,7 @@ begin_tup_output_tupdesc(DestReceiver *dest,
|
||||
* write a single tuple
|
||||
*/
|
||||
void
|
||||
do_tup_output(TupOutputState *tstate, Datum *values, bool *isnull)
|
||||
do_tup_output(TupOutputState *tstate, const Datum *values, const bool *isnull)
|
||||
{
|
||||
TupleTableSlot *slot = tstate->slot;
|
||||
int natts = slot->tts_tupleDescriptor->natts;
|
||||
|
Reference in New Issue
Block a user