Add support for Tcl 9

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Add support for Tcl 9
Date: 2024-11-15 10:24:04
Message-ID: bce0fe54-75b4-438e-b42b-8e84bc7c0e9c@eisentraut.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tcl 9 changed several API functions to take Tcl_Size, which is
ptrdiff_t, instead of int, for 64-bit enablement. We have to change a
few local variables to be compatible with that. We also provide a
fallback typedef of Tcl_Size for older Tcl versions. Here is a patch
for that.

The affected variables are used for quantities that will not approach
values beyond the range of int (usually number of columns), so this
doesn't change any functionality, AFAICT.

Attachment Content-Type Size
0001-Add-support-for-Tcl-9.patch text/plain 2.7 KB

Browse pgsql-hackers by date

  From Date Subject
Next Message Shubham Khanna 2024-11-15 10:27:11 Re: Improve the error message for logical replication of regular column to generated column.
Previous Message Amul Sul 2024-11-15 10:20:10 Re: NOT ENFORCED constraint feature