- 08 Jan, 2002 10 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Peter Eisentraut authored
the info to the main bibliography.
-
Tom Lane authored
multibyte encodings.
-
Peter Eisentraut authored
-
Tom Lane authored
-
Peter Eisentraut authored
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 07 Jan, 2002 5 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
Marko Kreen says: This is so obvious that I would like to make it 'official'. Seems like the theology around bytea<>text casting kept me from seeing the simple :)
-
Tom Lane authored
granted the lock when awakened; the signal now only means that the lock is potentially available. The waiting process must retry its attempt to get the lock when it gets to run. This allows the lock releasing process to re-acquire the lock later in its timeslice. Since LWLocks are usually held for short periods, it is possible for a process to acquire and release the same lock many times in a timeslice. The old spinlock-based implementation of these locks allowed for that; but the original coding of LWLock would force a process swap for each acquisition if there was any contention. Although this approach reopens the door to process starvation (a waiter might repeatedly fail to get the lock), the odds of that being a big problem seem low, and the performance cost of the previous approach is considerable.
-
Michael Meskes authored
-
Peter Eisentraut authored
-
- 06 Jan, 2002 5 commits
-
-
Tom Lane authored
to the client before closing the connection. Before 7.2 this was done correctly, but new code would simply close the connection with no report to the client.
-
Bruce Momjian authored
-
Bruce Momjian authored
> Looking at this I also found an ecpg TODO list in the docs: > > http://candle.pha.pa.us/main/writings/pgsql/sgml/ecpg-develop.html > > Seems that TODO section should be removed. Some items are done, others > are on the main TODO list. That's correct. I did not fix the docs for quite some time. Michael -- Michael Meskes
-
Tom Lane authored
database.)
-
Tom Lane authored
from Hiroshi.
-
- 05 Jan, 2002 2 commits
-
-
Barry Lind authored
a get on a bytea value the code was running the raw value from the server through character set conversion, which if the character set was SQL_ASCII would cause all 8bit characters to become ?'s.
-
Bruce Momjian authored
< * Consider use of open/fctl(O_DIRECT) to minimize OS caching --- > * Consider use of open/fcntl(O_DIRECT) to minimize OS caching
-
- 04 Jan, 2002 12 commits
-
-
Bruce Momjian authored
> * Consider use of open/fctl(O_DIRECT) to minimize OS caching > * Make blind writes go through the file descriptor cache 391d392 < * Make blind writes go through the file descriptor cache 409d409 < * Consider use of open/fctl(O_DIRECT) to minimize OS caching
-
Bruce Momjian authored
> * Consider use of open/fctl(O_DIRECT) to minimize OS caching
-
Bruce Momjian authored
--------------------------------------------------------------------------- When you run 'ecpg --help' you get the following: -t turn on autocommit of transactions amongst the other options... Shouldn't this be OFF as per the documentation? Best regards, Lee. -- Lee Kindness, Senior Software Engineer, lkindness@csl.co.uk
-
Bruce Momjian authored
< perhaps CREATE DATABASE dbname WITH USER = "user" (Gavin) --- > perhaps CREATE DATABASE dbname WITH OWNER = "user" (Gavin)
-
Bruce Momjian authored
> * Allow command blocks that can ignore certain types of errors
-
Tom Lane authored
-
Thomas G. Lockhart authored
Move some tabular information on these from the chapter on data types to the appendix on dates and times.
-
Thomas G. Lockhart authored
Fixes time zone problems introduced by Thomas' implementation of TIMESTAMP WITHOUT TIME ZONE which caused the behavior of the previously appropriate routine, timestamp_date(), to change for the worse in this context.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
< perhaps CREATE DATABASE dbname WITH USER = "user" --- > perhaps CREATE DATABASE dbname WITH USER = "user" (Gavin)
-
Bruce Momjian authored
< * Allow only owner to create indexes
-
- 03 Jan, 2002 6 commits
-
-
Tom Lane authored
Disallow CREATE INDEX on system catalogs, non-tables (views, sequences, etc). Disallow CREATE/DROP TRIGGER on system catalogs, non-tables. Disallow ALTER TABLE ADD/DROP CONSTRAINT on system catalogs. Disallow FOREIGN KEY reference to non-table. None of these things can actually work in the present system structure, but the code was letting them pass without complaint.
-
Tom Lane authored
start up, wait until a psql connection attempt succeeds. Per gripe from Jason Tishler.
-
Bruce Momjian authored
< allow error codes to be specified; requires nested transactions --- > allow error codes to be specified; requires savepoints 321c321 < * Allow nested transactions / savepoints [transactions] --- > * Allow savepoints / nested transactions [transactions]
-
Bruce Momjian authored
< allow error codes to be specified --- > allow error codes to be specified; requires nested transactions
-
Tom Lane authored
portal's memory context, so that they will live as long as the portal does.
-
Bruce Momjian authored
> o Allow COPY to report error lines and continue; optionally > allow error codes to be specified
-