- Sep 07, 2007
-
-
Tom Lane authored
databases, per gripe from hubert depesz lubaczewski. Patch from Simon Riggs.
-
- Sep 05, 2007
-
-
Bruce Momjian authored
< * Reduce XID consumption of read-only queries < < http://archives.postgresql.org/pgsql-hackers/2007-08/msg00516.php < < > * -Reduce XID consumption of read-only queries
-
Tom Lane authored
rows will normally never obtain an XID at all. We already did things this way for subtransactions, but this patch extends the concept to top-level transactions. In applications where there are lots of short read-only transactions, this should improve performance noticeably; not so much from removal of the actual XID-assignments, as from reduction of overhead that's driven by the rate of XID consumption. We add a concept of a "virtual transaction ID" so that active transactions can be uniquely identified even if they don't have a regular XID. This is a much lighter-weight concept: uniqueness of VXIDs is only guaranteed over the short term, and no on-disk record is made about them. Florian Pflug, with some editorialization by Tom.
-
- Sep 04, 2007
-
-
Tom Lane authored
Random other wordsmithing.
-
- Sep 03, 2007
-
-
Tom Lane authored
(Actually, it works as a plain statement too, but I didn't document that because it seems a bit useless.) Unify VariableResetStmt with VariableSetStmt, and clean up some ancient cruft in the representation of same.
-
Tom Lane authored
There are still some loose ends: I didn't do anything about the SET FROM CURRENT idea yet, and it's not real clear whether we are happy with the interaction of SET LOCAL with function-local settings. The documentation is a bit spartan, too.
-
- Sep 02, 2007
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Aug 31, 2007
-
-
Bruce Momjian authored
Some alignment cleanups.
-
Bruce Momjian authored
-
Bruce Momjian authored
tool chains).
-
Bruce Momjian authored
"index" entries for GIN/GiST.
-
Bruce Momjian authored
-
Bruce Momjian authored
entire section, per Peter.
-
Bruce Momjian authored
entries in textsearch.sgml.
-
Bruce Momjian authored
older SGML toolchains.
-
- Aug 30, 2007
-
-
Bruce Momjian authored
-
Tatsuo Ishii authored
-
Bruce Momjian authored
-
- Aug 29, 2007
-
-
Bruce Momjian authored
to be more logical.
-
Bruce Momjian authored
the main documentation, out of its own text search chapter.
-
Bruce Momjian authored
-
- Aug 28, 2007
-
-
Bruce Momjian authored
section makes a little more sense.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
corrections. Not sure why these were not in CVS. Researching.
-
Bruce Momjian authored
fixes. Not sure how these weren't comitted before.
-
- Aug 25, 2007
- Aug 23, 2007
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Transactional Information Systems by Gerhard Weikum, Kaufmann
-
- Aug 22, 2007
-
-
Tom Lane authored
-
Tom Lane authored
This prevents needing to do complex and poorly-defined updates of the mapping table if the new parser has different token types than the old. Per discussion.
-
Tom Lane authored
syncing the existing docs with the final syntax decisions.
-
Tom Lane authored
init options of the template as top-level options in the syntax. This also makes ALTER a bit easier to use, since options can be replaced individually. I also made these statements verify that the tmplinit method will accept the new settings before they get stored; in the original coding you didn't find out about mistakes until the dictionary got invoked. Under the hood, init methods now get options as a List of DefElem instead of a raw text string --- that lets tsearch use existing options-pushing code instead of duplicating functionality.
-