summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
1998-06-16Add bsdi shared library support.Bruce Momjian
1998-06-16Remove time travel reference.Bruce Momjian
1998-06-16Change error message and remove non-functional update message, fromBruce Momjian
Vadim.
1998-06-15Fix portname defines in Makefiles.Bruce Momjian
1998-06-15Add remove extra braces code to pgindent.Bruce Momjian
1998-06-15Remove un-needed braces around single statements.Bruce Momjian
1998-06-15Fix macros that were not properly surrounded by parens or braces.Bruce Momjian
1998-06-14RelationForgetRelation not needed in heap_destroy().Bruce Momjian
Vadim.
1998-06-14Make new DISABLE_COMPLEX_MACRO for compilers that can't handle ourBruce Momjian
macros.
1998-06-13Make lo_unlink take oid param, not int4.Bruce Momjian
1998-06-13Fix problem with table drop after rollback of transaction, no flushBruce Momjian
of index tuples. Thanks to Vadim for fix.
1998-06-13Cleanup of 'sameuser' patch.Bruce Momjian
1998-06-13> I needed to do that for the web database that I'm setting up. WeBruce Momjian
have > 20000 users and each (potentially) needs a separate database which is > only accessible to them. Rather than having 20000 lines in pg_hba.conf, > I've patched Postgres so that the special token "sameuser" in the > database field of pg_hba.conf allows access only to the username which > is connecting.
1998-06-12template changeBruce Momjian
1998-06-12template changesBruce Momjian
1998-06-12run autoconfBruce Momjian
1998-06-12Clean up template names and remove LINUX_ELF hack. No longerBruce Momjian
needed.
1998-06-09Now 6.4.Bruce Momjian
1998-06-09Auto-seed random so user's can't request random values based onBruce Momjian
our postmaster random seed used from cancel.
1998-06-09Fix for exec() removal.Bruce Momjian
1998-06-09Another for for exec() removal and finding binaries.Bruce Momjian
1998-06-09Attached is a patch that fixes these leaks, and does a couple otherBruce Momjian
things as well: * Computes and saves a cancel key for each backend. * fflush before forking, to eliminate double-buffering problems between postmaster and backends. Other cleanups. Tom Lane
1998-06-08Fixed exec path problem.Bruce Momjian
1998-06-08Official V.0244 (missed a file)Byron Nikolaidis
1998-06-08Show filename on exec failure.Bruce Momjian
1998-06-08Fix typo.Bruce Momjian
1998-06-08Update driver to official 6.30.0244 release.Byron Nikolaidis
1998-06-08Add real random() call to postmaster for use in cancel.Bruce Momjian
1998-06-05Also added two new files.Bruce Momjian
src/test/regess/sql/junkfilter.sql -- SQL for regression test src/test/regess/expected/junkfilter.out -- Expected output SQL for regression test David Hartwig
1998-06-05I made several adjustments to my earlier patch to handle theBruce Momjian
condition where the target label is ambiguous.
1998-06-04Show backend status on ps command line. Remove unused args fromBruce Momjian
pg_exec_query().
1998-06-03Update odbc driver to current version V.0244Byron Nikolaidis
1998-06-03From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier
Bug fixes: PreparedStatement.setObject didn't handle short's ResultSet.getDate() now handles null dates (returns null rather than a NullPointerException) ResultSetMetaData.getPrecision() now returns 0 for VARCHAR New features: Field now caches the typename->oid in a Hashtable to speed things up. It removes the need for some unnecessary queries to the backend. PreparedStatement.toString() now returns the sql statement that it will send to the backend. Before it did nothing. DatabaseMetaData.getTypeInfo() now does something.
1998-06-03From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier
Bug fixes: PreparedStatement.setObject didn't handle short's ResultSet.getDate() now handles null dates (returns null rather than a NullPointerException) ResultSetMetaData.getPrecision() now returns 0 for VARCHAR New features: Field now caches the typename->oid in a Hashtable to speed things up. It removes the need for some unnecessary queries to the backend. PreparedStatement.toString() now returns the sql statement that it will send to the backend. Before it did nothing. DatabaseMetaData.getTypeInfo() now does something.
1998-06-03From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier
+ Wed Jun 3 13:38:57 CEST 1998 + + - Made sqlca struct compatible with other systems. + - Give back a warning in case of truncation + - Changed the handling of OptimizableStmt since the old one broke + CREATE RULE + - Set library version to 2.3 + - Set version to 2.3.3
1998-06-01pgsql no more needs to be installed for perlEdmund Mergl
1998-06-01adapted Makefile.PL to be build in source treeEdmund Mergl
1998-05-31Rewrite JROUND macro to multiply by 1e6 rather than divide by 1e-6Thomas G. Lockhart
and vica versa for the next operation. This is reputed to fix inline math optimization troubles in glibc-2.0.x. Regression tests still pass on libc/i686 machine. Patch suggested by Matt.
1998-05-29cleanup.Bruce Momjian
1998-05-29Remove fork()/exec() and only do fork(). Small cleanups.Bruce Momjian
1998-05-29Define new routines oper_exact() and oper_inexact().Thomas G. Lockhart
Add coerce_target_expr().
1998-05-29Add func_select_candidate() to allow use in unary operator parsing.Thomas G. Lockhart
1998-05-29Add NAMEOID as built-in type.Thomas G. Lockhart
Change ordering of IS_BUILTIN_TYPE() macro to optimize lookup. Make CASH type _not_ equivalent to INT4. CASH is passed by reference rather than passed by value.