summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-08Make regression optional.Bruce Momjian
1998-06-08update to say "most advanced".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-01removed constraint for perl: installed pgsqlEdmund Mergl
1998-06-01adapted Makefile.PL to be build in source treeEdmund Mergl
1998-05-31Update the text...Marc G. Fournier
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.
1998-05-29Do type conversion to match columns in UNION clauses.Thomas G. Lockhart
Currently force the type to match the _first_ select in the union. Move oper_select_candidate() from parse_func.c to parse_oper.c. Throw error inside of oper_inexact() if no match for binary operators. Check more carefully that types can be coerced even if there is only one candidate operator in oper_inexact(). Fix up error messages for more uniform look. Remove unused code. Fix up comments.
1998-05-29Require #define variable ALLOW_ABSOLUTE_DBPATHS if absolute paths areThomas G. Lockhart
allowed to be used for alternate database locations. Probably best to default to not allowed, as now, since there are security and integrity issues which should be considered carefully before opening things up. Will update docs to discuss this issue.
1998-05-29Fix up a couple of comments broken by the automatic indenting process.Thomas G. Lockhart
1998-05-29Add conversion functions between "name" and other string types.Thomas G. Lockhart
1998-05-29Add conversion functions to and from the "name" data type.Thomas G. Lockhart
1998-05-29Ensure string is completely null padded on input (as advertised).Thomas G. Lockhart
1998-05-29Add test for UNION.Thomas G. Lockhart
Add additional tests in strings for conversions of the "name" data type. Test SQL92 string functions such as SUBSTRING() and POSITION().
1998-05-29Add test for UNION.Thomas G. Lockhart
Add additional tests in strings for conversions of the "name" data type. Test SQL92 string functions such as SUBSTRING() and POSITION(). Fix geometry tests to reflect code fixed by Gautam. Update error messages.
1998-05-29Clarify ownership and security issues with alternate db locations.Thomas G. Lockhart
1998-05-29Define PGDOC to use POSTGRESDIR by default.Thomas G. Lockhart
Can be set to something else in Makefile.custom if necessary.
1998-05-27postmaster/postgres options cleanup.Bruce Momjian
1998-05-26Cleanup.Bruce Momjian
1998-05-26From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier
+Wed May 20 10:46:48 CEST 1998 + + - Fixed handling of preprocessor directives and variable + initialization. + - Added enum datatype. - Set version to 2.3.2
1998-05-26Fix for drop database and junk filters.Bruce Momjian
1998-05-26Fix for postgres started from command line, sends 'Z' protocolBruce Momjian
flag.
1998-05-24Clean up pg_hba.confBruce Momjian
1998-05-241998-05-18 Karl Eichwalder <ke@suse.de>Marc G. Fournier
* configure.in (AC_CHECK_LIB): check for ncurses; if this fails check for curses.
1998-05-24From: Brook Milligan <brook@trillium.NMSU.Edu>Marc G. Fournier
Everything (except of course random) passes on my netbsd box except int2, int4, oidint2, and oidint4; all fail because of error message differences. Below are some patches to the expectations to correct the problem by creating *-NetBSD.out files.
1998-05-24From: Tom Lane <tgl@sss.pgh.pa.us>Marc G. Fournier
... which causes it to build and install the shared version of libpgtcl under the wrong name, on HPUX only. Patch against today's sources follows.
1998-05-22Solaris 5 fix.Bruce Momjian
1998-05-22Move FAQ_DEV to docs directory, where it belongs.Bruce Momjian