- 01 Oct, 2002 5 commits
-
-
Barry Lind authored
Modified Files: OptionalTestSuite.java
-
Barry Lind authored
patch submitted by ammulder@alumni.princeton.edu Modified Files: jdbc.sgml
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Dave Cramer authored
-
- 29 Sep, 2002 1 commit
-
-
Bruce Momjian authored
-
- 28 Sep, 2002 1 commit
-
-
Tom Lane authored
remove the special case in ALTER DROP COLUMN to prohibit dropping a table's last column.
-
- 27 Sep, 2002 7 commits
-
-
Tom Lane authored
Vacuum must not advance pg_database.datvacuumxid nor truncate CLOG unless it's processed *all* tables in the database. Vacuums run by unprivileged users don't count. (Beats head against nearest convenient wall...)
-
Bruce Momjian authored
Please apply the patch attached and this should be solved. Alvaro Herrera
-
Tom Lane authored
heap_addheader is wrong because it doesn't cope with varlena fields, notably indpred.
-
Tom Lane authored
no reason to worry about the tuple commit status bits until the tuple is inserted in a relation by heapam.c. Also, improve comments for heap_addheader().
-
Bruce Momjian authored
-
Bruce Momjian authored
at this area in the code.
-
Bruce Momjian authored
-
- 26 Sep, 2002 9 commits
-
-
Tom Lane authored
recent WAL activity has occurred. Without this, it's possible that a later crash might leave tuples on disk with un-updated commit status bits.
-
Tom Lane authored
VACUUM FULL tuple moves. Store full-width t_infomask in WAL, rather than storing low 8 bits and expecting to be able to reconstruct upper bits. While at it, remove redundant t_oid field from WAL headers (the OID, if present, is now recorded in the data portion of the tuple). WAL version number bumped --- this does not force an initdb, you can instead run pg_resetxlog after a clean shutdown of the old postmaster.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
causing the postmaster to crash when the trigger was running on a table without a primary key. I've also updated the docs to explicitly say that tables need primary keys. Steven Singer
-
Bruce Momjian authored
let's say this patch superscedes the previous one. I have also attached a patch addressing the similar memory leak problem in plpython. This includes a slight adjustment of the tests in the source directory. The patch also includes a cosmetic change to remove a compiler warning although I think the change makes the code look worse though. BTW, by my reckoning the memory leak would occur with prepared plans and without. If that is not the case then I've been barking up the wrong tree. Nigel J. Andrews
-
Bruce Momjian authored
adding a missing sprintf(). Neil Conway
-
Bruce Momjian authored
handling in the backend.
-
Bruce Momjian authored
-
- 25 Sep, 2002 7 commits
-
-
Peter Eisentraut authored
number of forward references in the admin guide.
-
Tom Lane authored
ProcKill instead, where we still have a PGPROC with which to wait on LWLocks. This fixes 'can't wait without a PROC structure' failures occasionally seen during backend shutdown (I'm surprised they weren't more frequent, actually). Add an Assert() to LWLockAcquire to help catch any similar mistakes in future. Fix failure to update MyProcPid for standalone backends and pgstat processes.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Barry Lind authored
jdbc datasource support for jdk1.4/jdbc3 Modified Files: jdbc/build.xml jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/jdbc2/optional/BaseDataSource.java jdbc/org/postgresql/jdbc2/optional/PGObjectFactory.java jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java jdbc/org/postgresql/jdbc2/optional/PoolingDataSource.java jdbc/org/postgresql/test/jdbc2/optional/BaseDataSourceTest.java jdbc/org/postgresql/test/jdbc2/optional/OptionalTestSuite.java jdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java Added Files: jdbc/org/postgresql/jdbc3/Jdbc3ConnectionPool.java jdbc/org/postgresql/jdbc3/Jdbc3ObjectFactory.java jdbc/org/postgresql/jdbc3/Jdbc3PooledConnection.java jdbc/org/postgresql/jdbc3/Jdbc3PoolingDataSource.java jdbc/org/postgresql/jdbc3/Jdbc3SimpleDataSource.java jdbc/org/postgresql/test/jdbc2/optional/PoolingDataSourceTest.java jdbc/org/postgresql/test/jdbc3/Jdbc3ConnectionPoolTest.java jdbc/org/postgresql/test/jdbc3/Jdbc3PoolingDataSourceTest.java jdbc/org/postgresql/test/jdbc3/Jdbc3SimpleDataSourceTest.java jdbc/org/postgresql/test/util/MiniJndiContext.java jdbc/org/postgresql/test/util/MiniJndiContextFactory.java
-
Bruce Momjian authored
-
- 24 Sep, 2002 7 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
and PUBLIC EXECUTE, respectively. Per discussion about easing updates from prior versions.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
document that scheme.
-
Bruce Momjian authored
-
Tom Lane authored
Fixes problem with cases like SELECT * FROM foo t WHERE NOT EXISTS (SELECT remoteid FROM (SELECT f1 as remoteid FROM foo WHERE f1 = t.f1) AS t1)
-
- 23 Sep, 2002 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
executor should not return the tuple as successfully marked, because in fact it's been deleted. Not clear that this case has ever been seen in practice (I think you'd have to write a SELECT FOR UPDATE that calls a function that deletes some row the SELECT will visit later...) but we should be consistent. Also add comments to several other places that got it right but didn't explain what they were doing.
-
Peter Eisentraut authored
editing.
-