summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-06-28updateBruce Momjian
1998-06-28backend update.Bruce Momjian
1998-06-28Update flowchart and backend descriptions.Bruce Momjian
1998-06-28Update backend flowchart.Bruce Momjian
1998-06-27Rename BindingTable to ShmemIndex.Bruce Momjian
1998-06-27More cleanups for compiler warnings.Bruce Momjian
1998-06-27Rename proc_exit_clear to on_exit_reset.Bruce Momjian
1998-06-27Fix for hang after postmaster restart. Add new proc_exit andBruce Momjian
shmem_exit to replace exitpg().
1998-06-26Rename Lockm to Locks.Bruce Momjian
1998-06-26Rename LockTab to LockTable in function name.Bruce Momjian
1998-06-25Rename BindingTab to BindingTable.Bruce Momjian
1998-06-24cleanupBruce Momjian
1998-06-24regenerate manual page list.Bruce Momjian
1998-06-24manual cleanupBruce Momjian
1998-06-24Add another underscore to manual page name.Bruce Momjian
1998-06-23Back out some changes I made just for testing.Bruce Momjian
1998-06-23Add underscores in manual references.Bruce Momjian
1998-06-23cleanupsBruce Momjian
1998-06-23Remove mention of monitor in manual pages.Bruce Momjian
1998-06-23rename MAIN_MEMORY to STABLE_MEMORY_STORAGEBruce Momjian
1998-06-22new linux_ppc port.Bruce Momjian
1998-06-21Remove un-needed include files.Bruce Momjian
1998-06-20Fixup for asserts.Bruce Momjian
1998-06-20Remove -c option for Constraint syntax so we us it by default.Bruce Momjian
1998-06-19From: t-ishii@sra.co.jpMarc G. Fournier
As mentioned around line 1153 in backend/commands/copy.c, the method of array checking is not perfect. test=> create table t1 (i text); test=> insert into t1 values('{\\.}'); INSERT 2645600 1 test=> select * from t1; i ----- {\\.} (2 rows) test=> copy t1 to '/tmp/aaa'; test=> copy t1 from '/tmp/aaa'; ERROR: CopyReadAttribute - end of record marker corrupted Copy cannot read data produced by itself!
1998-06-19Port name cleanupBruce Momjian
1998-06-19Solaris cleanup.Bruce Momjian
1998-06-18autocoinfBruce Momjian
1998-06-18Add SLEEP_ON_ABORTBruce Momjian
1998-06-18port name cleanupBruce Momjian
1998-06-18Update .similar file for new template names.Bruce Momjian
1998-06-18Add Assert().Bruce Momjian
1998-06-18Cleanup UsePrivateMemory define.Bruce Momjian
1998-06-18Cleanups.Bruce Momjian
1998-06-17goodbye vfork.Bruce Momjian
1998-06-17cleanupBruce Momjian
1998-06-16Update to v.0246Byron Nikolaidis
1998-06-16Add files to be updated for release.Bruce Momjian
1998-06-16More mb patches.Bruce Momjian
1998-06-16Hi, here are the patches to enhance existing MB handling. This timeBruce Momjian
I have implemented a framework of encoding translation between the backend and the frontend. Also I have added a new variable setting command: SET CLIENT_ENCODING TO 'encoding'; Other features include: Latin1 support more 8 bit cleaness See doc/README.mb for more details. Note that the pacthes are against May 30 snapshot. Tatsuo Ishii
1998-06-16Here is the long awaited optimized version of the S_LOCK patch.Bruce Momjian
This incorporates all the precedeing patches and emailed suggestions and the results of the performance testing I posted last week. I would like to get this tested on as many platforms as possible so I can verify it went in correctly (as opposed to the horrorshow last time I sent in a patch). Once this is confirmed, I will make a tarball of files that can be dropped into a 6.3.2 source tree as a few people have asked for this in 6.3.2 as well. David Gould
1998-06-16Added missing file.Bruce Momjian
1998-06-16large object fixBruce Momjian
1998-06-16I've hacked up pg_dump so that it generates CONSTRAINT and CHECKBruce Momjian
syntax that can be read back in with psql. I did this by adding a "-c" switch that controls moving the CONTSTRAINT statements inside the CREATE TABLE statements and adding () around the CHECK arguments. Here's diffs against the 6.3.2 version of pg_dump.c. ccb
1998-06-16Hello!Bruce Momjian
Attached to the mail is locale-patch.tar.gz. In the archive there are: file README.locale short description directory src/test/locale test suite; currently only koi8-r tests, but the suite can be easily extended file locale.patch the very patch; to apply: patch < locale.patch; should be applied to postgres-6.3.2 (at least I created it with 6.3.2 without any additional patches) Files touched by the patch: src/include/utils/builtins.h src/backend/utils/adt/char.c src/backend/utils/adt/varchar.c src/backend/utils/adt/varlena.c Oleg
1998-06-16There is a patch which has worked for me. The real problem mightBruce Momjian
be in PQreset, which can't reset a conninfo based connection. The patch: Arpad Magosanyi
1998-06-16The attached patch modifies libpgtcl per previous discussion: theBruce Momjian
pg_notifies statement is eliminated, and callbacks defined by pg_listen are instead invoked automatically from the Tcl idle loop whenever a NOTIFY message is received. I have done only cursory testing, so there may be problems still lurking (particularly on non-Unix machines?). But it seems to work. Patch is against today's cvs sources. Note that this will not work with the 6.3.2 release since it depends on the new libpq. The diffs are a bit large so I've gzipped them. A patch to update libpgtcl.sgml is included too. regards, tom lane
1998-06-16Add flag for linux-alpha.Bruce Momjian
1998-06-16autoconfBruce Momjian
1998-06-16Here are two patches to fix up the c++ (and c) support in theBruce Momjian
configuration system. The idea is to make the configure arguments that specify compilers to be compatible with the other --with options. The main point, though, is that the c++ support is on by default, but can easily be disabled by the --without-CXX option for those few(?) that don't want it. Brook Milligan