0
I Use This!
Inactive

Commits : Listings

Analyzed about 6 hours ago. based on code collected about 6 hours ago.
Aug 10, 2024 — Aug 10, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add query text to auto_explain output. More... over 15 years ago
Clean up package namespace use and use of Safe in plperl. Prevent use of another buggy version of Safe.pm. Only register the exit handler if we have successfully created an interpreter. Change log level of perl warnings from NOTICE to WARNING. More... over 15 years ago
Move log_error_verbosity GUC setting to "What to log" section, and document the behavior of terse and verbose output options.
tester_123
as Bruce Momjian
More... over 15 years ago
Honor to_char() "FM" specification in YYY, YY, and Y; it was already honored by YYYY. Also document Oracle "toggle" FM behavior.
tester_123
as Bruce Momjian
More... over 15 years ago
Prevent psql version banner from being printed by the \c command if the versions match, per report from Peter.
tester_123
as Bruce Momjian
More... over 15 years ago
Have SELECT and CREATE TABLE AS queries return a row count. While this is invisible in psql, other interfaces, like libpq, make this value visible.
tester_123
as Bruce Momjian
More... over 15 years ago
Remove personal copyright now that file has been rewritten using existing *.pl conversion script.
tester_123
as Bruce Momjian
More... over 15 years ago
Clarify documentation on the behavior of unnamed bind queries.
tester_123
as Bruce Momjian
More... over 15 years ago
revert to showing buffer counts in explain (buffers) More... over 15 years ago
Add emulation of non-blocking sockets to the win32 socket/signal layer, and use this in pq_getbyte_if_available. More... over 15 years ago
Do not check nan values for infinity. Some system are not able to handle this. More... over 15 years ago
Fix synopsis of DO statement. More... over 15 years ago
Move main error message text in plperl into errmsg from errdetail, and move the context information into errcontext instead of errmsg. This makes them better conform to our guidelines. More... over 15 years ago
When sorting functions in pg_dump, break ties (same name) by number of arguments More... over 15 years ago
Fix another stupid typo... More... over 15 years ago
Fix typo in comment More... over 15 years ago
Temporarily disable fsyncing the database directory in CREATE DATABASE until we can work out portability issues the build farm uncovered. More... over 15 years ago
remove an unused variable 'dirfd'. More... over 15 years ago
Add psql tab completion for DO blocks. Also adjust documentation of DO. More... over 15 years ago
Display explain buffers measurements in memory units rather than blocks. Also show "Total Buffer Usage" to hint that these are totals not averages per loop More... over 15 years ago
Speed up CREATE DATABASE by deferring the fsyncs until after copying all the data and using posix_fadvise to nudge the OS into flushing it earlier. This also hopefully makes CREATE DATABASE avoid spamming the cache. More... over 15 years ago
Wrap calls to SearchSysCache and related functions using macros. More... over 15 years ago
Make CREATE DATABASE safe against losing whole files by fsyncing the directory and not just the individual files. More... over 15 years ago
Make the msvc build system ask python about details of version and installation prefix, instead of assuming it will always be following the default layout. More... over 15 years ago
Ooops, let's get the non-null vs null bit right ...
tester_123
as Tom Lane
More... over 15 years ago
Document the behavior of STRICT VARIADIC functions.
tester_123
as Tom Lane
More... over 15 years ago
Improve C comment about why we return "0 0" for some tags.
tester_123
as Bruce Momjian
More... over 15 years ago
Don't expose the inline definition of MemoryContextSwitchTo when FRONTEND is defined. Its reference to CurrentMemoryContext causes link failures on some platforms, evidently because the inline function gets compiled despite lack of use. Per buildfarm member warthog.
tester_123
as Tom Lane
More... over 15 years ago
Improvements to ps message of startup process during Hot Standby. Message is reset earlier and potential bug avoided. More... over 15 years ago
Fix relcache init file invalidation during Hot Standby for the case where a database has a non-default tablespaceid. Pass thru MyDatabaseId and MyDatabaseTableSpace to allow file path to be re-created in standby and correct invalidation to take place in all cases. Update and rework xact_commit_desc() debug messages. Bug report from Tom by code inspection. Fix by me. More... over 15 years ago