0
I Use This!
Inactive

Commits : Listings

Analyzed about 18 hours ago. based on code collected about 24 hours ago.
Mar 18, 2023 — Mar 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Update HOT README about when single-page vacuums happen.
tester_123
as Bruce Momjian
More... over 13 years ago
Replace last remaining $Id$ with $PostgreSQL$.
tester_123
as Tom Lane
More... over 13 years ago
Fix several broken $PostgreSQL$ keywords. Noted while experimenting with Magnus's script to remove these.
tester_123
as Tom Lane
More... over 13 years ago
Make sure we wait for protocol-level EOF when ending binary COPY IN.
tester_123
as Tom Lane
More... over 13 years ago
Give a suitable HINT when an INSERT's data source is a RowExpr containing the same number of columns expected by the insert. This suggests that there were extra parentheses that converted the intended column list into a row expression.
tester_123
as Tom Lane
More... over 13 years ago
Move pg_db_role_setting docs to correct place in alphabetical order. More... over 13 years ago
Remove duplicated code left behind by my recent refactoring of comment.c More... over 13 years ago
Add some documentation about how we WAL-log filesystem actions. Per a question from Robert Haas.
tester_123
as Tom Lane
More... over 13 years ago
Treat exit code 128 (ERROR_WAIT_NO_CHILDREN) as non-fatal on Win32, since it can happen when a process fails to start when the system is under high load. More... over 13 years ago
Stamp 9.0 release notes with expected release date; also some last-minute copy-editing.
tester_123
as Tom Lane
More... over 13 years ago
Fix bad grammar.
tester_123
as Tom Lane
More... over 13 years ago
Fix two new-in-9.0 bugs in hstore.
tester_123
as Tom Lane
More... over 13 years ago
Add a compatibility note about plpgsql's treatment of SELECT INTO rec.fld when fld is of composite type. Per discussion of bug #5644 from Valentine Gogichashvili.
tester_123
as Tom Lane
More... over 13 years ago
Fix two typos in comments, spotted by Fujii Masao and Thom Brown More... over 13 years ago
Use a latch to make startup process wake up and replay immediately when new WAL arrives via streaming replication. This reduces the latency, and also allows us to use a longer polling interval, which is good for energy efficiency. More... over 13 years ago
Simplify Windows implementation of latches. There's no need to keep a dynamic pool of event handles, we can permanently assign one for each shared latch. Thanks to that, we no longer need a separate shared memory block for latches, and we don't need to know in advance how many shared latches there is, so you no longer need to remember to update NumSharedLatches when you introduce a new latch to the system. More... over 13 years ago
Don't call OwnLatch while holding a spinlock. OwnLatch can elog() under some "can't happen" scenarios, and spinlocks should only be held for a few instructions anyway. As pointed out by Fujii Masao. More... over 13 years ago
Fix join-removal logic for pseudoconstant and outerjoin-delayed quals.
tester_123
as Tom Lane
More... over 13 years ago
Oops, the timeout argument to WaitLatchOrSocket is in microseconds, not milliseconds. More... over 13 years ago
Don't warn about an in-progress online backup, when we're recovering from an online backup instead of performing one. pg_ctl can detect that by checking if recovery.conf exists. More... over 13 years ago
Add a comment noting that the owner_pid test in OwnLatch is just a sanity check, per request by Jeff Davis. More... over 13 years ago
Elaborate on what gets stored in pg_authid.rolpasswd. More... over 13 years ago
Remove prototype for non-existent function from walreceiver.h. Tidy up by separating prototypes for functions in walreceiver.c and walreceiverfuncs.c with comments. More... over 13 years ago
Process options from the startup packed in walsender. Only few options make sense for walsender, but for example application_name and client_encoding do. We still don't apply per-role settings from pg_db_role_setting, because that would require connecting to a database to read the table. More... over 13 years ago
Don't try aligning comments for new archive_command Win32 doc example; it doesn't work.
tester_123
as Bruce Momjian
More... over 13 years ago
Link from pg_shadow docs to pg_authid docs. More... over 13 years ago
Re-add documentation for Win32 copy syntax for archive_command.
tester_123
as Bruce Momjian
More... over 13 years ago
SERIALIZABLE transactions are actually implemented beneath the covers with transaction snapshots, i.e. a snapshot registered at the beginning of a transaction. Change variable naming and comments to reflect this reality in preparation for a future, truly serializable mode, e.g. Serializable Snapshot Isolation (SSI). More... over 13 years ago
Add missing #includes, needed on some platforms. This should make the unixware buildfarm animals happy again. More... over 13 years ago
Introduce latches. A latch is a boolean variable, with the capability to wait until it is set. Latches can be used to reliably wait until a signal arrives, which is hard otherwise because signals don't interrupt select() on some platforms, and even when they do, there's race conditions. More... over 13 years ago