- 15 Mar, 2005 1 commit
-
-
Bruce Momjian authored
bytes/character for each encoding.
-
- 14 Mar, 2005 14 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
if it finds a pg_rewrite entry for which there is no pg_class entry. Per report from Andrew Slobodyanyk.
-
Bruce Momjian authored
Roland Volkmann
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Cache last known per-tuple offsets to speed long tuple access
-
Neil Conway authored
-
Tom Lane authored
output mode. This was already stated in other places in the psql reference page, but not here.
-
Tom Lane authored
a tuple are being accessed via ExecEvalVar and the attcacheoff shortcut isn't usable (due to nulls and/or varlena columns). To do this, cache Datums extracted from a tuple in the associated TupleTableSlot. Also some code cleanup in and around the TupleTable handling. Atsushi Ogawa with some kibitzing by Tom Lane.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Support triggers on columns (Greg Sabino Mullane)
-
Bruce Momjian authored
-
Neil Conway authored
whether or not it is a security definer. Changing a function's strictness is required by SQL2003, and the other capabilities make sense. Also, allow an optional RESTRICT noise word to be specified, for SQL conformance. Some trivial regression tests added and the documentation has been updated.
-
Bruce Momjian authored
-
- 13 Mar, 2005 21 commits
-
-
Tom Lane authored
of postgres.h.
-
Tom Lane authored
-
Bruce Momjian authored
client aplications so 7.4.X releases can be installed on the same machine as 8.0.X.
-
Tom Lane authored
-
Bruce Momjian authored
-
Neil Conway authored
no longer include OIDs, unless WITH OIDS is specified or the default_with_oids configuration parameter is enabled. Update the docs accordingly.
-
Bruce Momjian authored
-
Neil Conway authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Remove warning about pre-7.2 LATIN5 usage.
-
Bruce Momjian authored
Add a few encodings that were not documented.
-
- 12 Mar, 2005 4 commits
-
-
Tom Lane authored
database's datallowconn and datfrozenxid to the current transaction ID instead of copying the source database's values. This is OK because we assume the source DB contains no normal transaction IDs whatsoever. This keeps VACUUM from immediately starting to complain about unvacuumed databases in the situation where we are more than 2 billion transactions out from the XID stamp of template0. Per discussion with Milen Radev (although his complaint turned out to be due to something else, but the problem is real anyway).
-
Tom Lane authored
who for some reason isn't marked usecreatedb. Per report from Alexander Pravking. Also fix sloppy coding in have_createdb_privilege().
-
Tom Lane authored
can tell whether it is being used as an aggregate or not. This allows such a function to avoid re-pallocing a pass-by-reference transition value; normally it would be unsafe for a function to scribble on an input, but in the aggregate case it's safe to reuse the old transition value. Make int8inc() do this. This gets a useful improvement in the speed of COUNT(*), at least on narrow tables (it seems to be swamped by I/O when the table rows are wide). Per a discussion in early December with Neil Conway. I also fixed int_aggregate.c to check this, thereby turning it into something approaching a supportable technique instead of being a crude hack.
-
Neil Conway authored
-