- Feb 26, 2009
-
-
Peter Eisentraut authored
programs that have a -W/--password option. In passing, remove the ancient PSQL_ALWAYS_GET_PASSWORDS compile option.
-
- Feb 24, 2009
-
-
Peter Eisentraut authored
Robert Haas
-
Peter Eisentraut authored
wrappers (similar to procedural languages). This way we don't need to retain the nearly empty libraries, and we are more free in how to implement the wrapper API in the future.
-
- Feb 23, 2009
-
-
Tom Lane authored
-
- Feb 18, 2009
-
-
Bruce Momjian authored
-
- Feb 17, 2009
-
-
Bruce Momjian authored
utilities. The new code allows transfer of dropped column information to the upgraded server.
-
- Feb 15, 2009
-
-
Tom Lane authored
-
- Feb 12, 2009
-
-
Peter Eisentraut authored
speak in tongues and mess up the regression test diffs.
-
Bruce Momjian authored
-
- Feb 11, 2009
-
-
Tom Lane authored
get rid of the OID column. This eliminates the problem discovered by Heikki back in November that 8.4's suppression of "unnecessary" junk filtering in INSERT/SELECT could lead to an Assert failure, or storing of oids into a table that shouldn't have them if Asserts are off. While that particular problem could have been solved in other ways, it seems likely to be just a forerunner of things to come if we continue to allow tables to contain rows that disagree with the pg_class.relhasoids setting. It's better to make this operation slow than to sacrifice performance or risk bugs in more common code paths. Also, add ALTER TABLE SET WITH OIDS to rewrite the table to add oids. This was a bit more controversial, but in view of the very small amount of extra code needed given the current ALTER TABLE infrastructure, it seems best to eliminate the asymmetry in features.
-
Peter Eisentraut authored
presumably designed, but didn't act). This allows running the temp install tests in a non-C locale, thus exercising users' real environments better. Document how to change locales for test runs.
-
Bruce Momjian authored
-
- Feb 10, 2009
-
-
Peter Eisentraut authored
-
Bruce Momjian authored
collection.
-
- Feb 09, 2009
-
-
Alvaro Herrera authored
per-table overrides of parameters. This removes a whole class of problems related to misusing the catalog, and perhaps more importantly, gives us pg_dump support for the parameters. Based on a patch by Euler Taveira de Oliveira, heavily reworked by me.
-
Bruce Momjian authored
Erik Rijkers
-
- Feb 07, 2009
-
-
Bruce Momjian authored
-
Bruce Momjian authored
btree; keep mention about missing WAL logging. Kenneth Marshall
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
bit more visibility to the PGOPTIONS environment variable supported by libpq. Bryce Nesbitt
-
Bruce Momjian authored
designations (AM/PM). Also separate out matching of a meridian with periods (e.g. A.M.) and with those without. Do the same for AD/BC. Brendan Jurd
-
- Feb 06, 2009
-
-
Tom Lane authored
-
Tom Lane authored
has_column_privilege and has_any_column_privilege SQL functions; fix the information_schema views that are supposed to pay attention to column privileges; adjust pg_stats to show stats for any column you have select privilege on; and fix COPY to allow copying a subset of columns if the user has suitable per-column privileges for all the columns. To improve efficiency of some of the information_schema views, extend the has_xxx_privilege functions to allow inquiring about the OR of a set of privileges in just one call. This is just exposing capability that already existed in the underlying aclcheck routines. In passing, make the information_schema views report the owner's own privileges as being grantable, since Postgres assumes this even when the grant option bit is not set in the ACL. This is a longstanding oversight. Also, make the new has_xxx_privilege functions for foreign data objects follow the same coding conventions used by the older ones. Stephen Frost and Tom Lane
-
Bruce Momjian authored
-
Bruce Momjian authored
Andrew Chernow
-
- Feb 05, 2009
-
-
Bruce Momjian authored
statement Pavel Stehule
-
- Feb 04, 2009
-
-
Alvaro Herrera authored
-
Bruce Momjian authored
behavior of concurrent commands in cases where rows are being added and removed from matching query criteria. Minor word-smithing.
-
- Feb 02, 2009
-
-
Tom Lane authored
per gripe from David Wheeler that this was mentioned nowhere. In passing, editorialize a bit on the description of the SQL:2008 equivalent syntax.
-
Andrew Dunstan authored
post-data step is run in a separate worker child (a thread on Windows, a child process elsewhere) up to the concurrent number specified by the new pg_restore command-line --multi-thread | -m switch. Andrew Dunstan, with some editing by Tom Lane.
-
Alvaro Herrera authored
qualifier, and add support for this in pg_dump. This allows TOAST tables to have user-defined fillfactor, and will also enable us to move the autovacuum parameters to reloptions without taking away the possibility of setting values for TOAST tables.
-
Peter Eisentraut authored
-
- Jan 30, 2009
-
-
Tom Lane authored
-
- Jan 27, 2009
-
-
Peter Eisentraut authored
-
- Jan 23, 2009
-
-
Bruce Momjian authored
results out of order because of locking, per bug report 4593
-
- Jan 22, 2009
-
-
Tom Lane authored
Stephen Frost, with help from KaiGai Kohei and others
-
Peter Eisentraut authored
Bernd Helmle
-
- Jan 21, 2009
-
-
Heikki Linnakangas authored
case that the command is rewritten into another type of command. The old behavior to return the command tag of the last executed command was pretty surprising. In PL/pgSQL, for example, it meant that if a command was rewritten to a utility statement, FOUND wasn't set at all.
-