easy resetting - Search results in mailing lists
Mailing lists >> pgsql-committers >> Thread
2025-06-16 20:12:08 | pgsql: aio: Add missing memory barrier when waiting for IO handle (Andres Freund)
easy enough to come up with a much quicker repro: Trigger a lot of very fast IO by limiting io_combine_limit to 1 and ensure that we always have to wait for a free
Mailing lists >> pgsql-committers >> Thread
2025-05-02 17:44:31 | pgsql: Make "directory" setting work with extension_control_path (Peter Eisentraut)
setting in their control file. Very few extensions use that and during the discussion on the previous commit it was suggested to maybe remove that functionality. But a fix was easier
Mailing lists >> pgsql-committers >> Thread
2025-04-25 20:35:03 | pgsql: aio: Fix crash potential for pg_aios views due to late state upd (Andres Freund)
resetting. Also add an assertion to pgaio_io_get_target_description() for the target to be valid - that'd have made this case a bit easier
Mailing lists >> pgsql-committers >> Thread
2025-03-21 02:07:00 | Re: pgsql: Add vacuum_truncate configuration parameter. (David Rowley)
easy to remove. Adding this GUC now does put us a bit further down the path of the boolean option. From [2], it seems there are people around unhappy with the current compile-time settings
Mailing lists >> pgsql-committers >> Thread
2024-08-26 17:14:09 | Re: pgsql: Restrict accesses to non-system views and foreign tables during (Peter Eisentraut)
setting is supposed to do. In config.sgml it says + This variable specifies relation kind to which access is restricted. + It contains a comma-separated list of relation kind. Currently, the + supported relation kinds
Mailing lists >> pgsql-committers >> Thread
2024-02-09 00:31:26 | pgsql: Improve COPY TO performance when server and client encodings mat (Michael Paquier)
setting CopyToStateData->need_transcoding would cause strlen() to be called for nothing for each attribute of all the rows copied, and that was showing high in some profiles (more attributes make that easier
Mailing lists >> pgsql-committers >> Thread
2023-04-08 04:35:13 | pgsql: Introduce PG_IO_ALIGN_SIZE and align all I/O buffers. (Thomas Munro)
setting PG_O_DIRECT to 0. This avoids the need to consider systems that have O_DIRECT but can't align stack objects the way we want; such systems could in theory be supported with
Mailing lists >> pgsql-committers >> Thread
2023-03-25 19:34:20 | pgsql: Fix CREATE INDEX progress reporting for multi-level partitioning (Tom Lane)
setting partitions_total to the total number of direct and indirect children once at command start, and then just incrementing partitions_done at appropriate points. Invent a new progress monitoring function "pgstat_progress_incr_param
Mailing lists >> pgsql-committers >> Thread
2023-03-09 16:40:38 | pgsql: pg_upgrade: copy locale and encoding information to new cluster. (Jeff Davis)
easier to change the default initdb locale or encoding settings without causing needless incompatibilities. Discussion
Mailing lists >> pgsql-committers >> Thread
2022-10-26 02:40:05 | Re: pgsql: Fix unlink() for STATUS_DELETE_PENDING on Windows. (Thomas Munro)
easy for open source projects from planet Unix. I wonder if those semantics came from the VMS orbit. I think it might be possible to create a ReFS filesystem inside a loopback file. On that
Mailing lists >> pgsql-committers >> Thread
2022-09-17 06:40:25 | pgsql: Fix huge_pages on Windows (Michael Paquier)
setting it. Note that the flag would be set only for binaries that knew about it at compile-time, which should be more or less all the Windows environments these days. Since 495ed0e, Windows
Mailing lists >> pgsql-committers >> Thread
2022-04-07 00:57:04 | pgsql: pgstat: prepare APIs used by pgstatfuncs for shared memory stats (Andres Freund)
Resetting all SLRUs/slots goes through the generic pgstat_reset_of_kind(). Previously pg_stat_reset_replication_slot() used SearchNamedReplicationSlot() to check if a slot exists. API wise it seems better to move that
Mailing lists >> pgsql-committers >> Thread
2022-02-24 07:12:02 | pgsql: Clean up and simplify code in a couple of set-returning function (Michael Paquier)
settings(), similarly, now uses get_call_result_type() to build its tuple descriptor instead of creating it from scratch. - pg_options_to_table() made use of a static routine called only once. This commit removes
Mailing lists >> pgsql-committers >> Thread
2022-02-21 18:35:29 | pgsql: Fix temporary object cleanup failing due to toast access without (Andres Freund)
setting up a snapshot. If an object with toasted catalog data needs to be cleaned up, init_toast_snapshot() could fail with the above error. Most of the time however the the problem is masked
Mailing lists >> pgsql-committers >> Thread
2022-02-21 18:35:29 | pgsql: Fix temporary object cleanup failing due to toast access without (Andres Freund)
setting up a snapshot. If an object with toasted catalog data needs to be cleaned up, init_toast_snapshot() could fail with the above error. Most of the time however the the problem is masked