summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Another for for exec() removal and finding binaries.Bruce Momjian1998-06-094-36/+38
|
* Attached is a patch that fixes these leaks, and does a couple otherBruce Momjian1998-06-091-8/+34
| | | | | | | | | | | 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
* Fixed exec path problem.Bruce Momjian1998-06-084-17/+27
|
* Official V.0244 (missed a file)Byron Nikolaidis1998-06-081-18/+13
|
* Show filename on exec failure.Bruce Momjian1998-06-081-2/+2
|
* Fix typo.Bruce Momjian1998-06-081-2/+2
|
* Make regression optional.Bruce Momjian1998-06-081-5/+3
|
* update to say "most advanced".Bruce Momjian1998-06-081-1/+1
|
* Update driver to official 6.30.0244 release.Byron Nikolaidis1998-06-0811-194/+533
|
* Add real random() call to postmaster for use in cancel.Bruce Momjian1998-06-081-13/+41
|
* Also added two new files.Bruce Momjian1998-06-052-0/+206
| | | | | | | | | src/test/regess/sql/junkfilter.sql -- SQL for regression test src/test/regess/expected/junkfilter.out -- Expected output SQL for regression test David Hartwig
* I made several adjustments to my earlier patch to handle theBruce Momjian1998-06-054-16/+31
| | | | condition where the target label is ambiguous.
* Show backend status on ps command line. Remove unused args fromBruce Momjian1998-06-0412-92/+141
| | | | pg_exec_query().
* Update odbc driver to current version V.0244Byron Nikolaidis1998-06-0339-3765/+5462
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-06-034-11/+161
| | | | | | | | | | | | | | | | | | | | | | 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.
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-06-031-2/+7
| | | | | | | | | | | | | | | | | | | | | | 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.
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-06-039-24/+74
| | | | | | | | | | | + 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
* pgsql no more needs to be installed for perlEdmund Mergl1998-06-012-16/+16
|
* removed constraint for perl: installed pgsqlEdmund Mergl1998-06-011-2/+1
|
* adapted Makefile.PL to be build in source treeEdmund Mergl1998-06-0110-65/+114
|
* Update the text...Marc G. Fournier1998-05-311-6/+15
|
* Rewrite JROUND macro to multiply by 1e6 rather than divide by 1e-6Thomas G. Lockhart1998-05-311-3/+3
| | | | | | 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.
* cleanup.Bruce Momjian1998-05-291-5/+5
|
* Remove fork()/exec() and only do fork(). Small cleanups.Bruce Momjian1998-05-2919-144/+172
|
* Define new routines oper_exact() and oper_inexact().Thomas G. Lockhart1998-05-292-3/+9
| | | | Add coerce_target_expr().
* Add func_select_candidate() to allow use in unary operator parsing.Thomas G. Lockhart1998-05-291-2/+6
|
* Add NAMEOID as built-in type.Thomas G. Lockhart1998-05-291-7/+22
| | | | | | 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.
* Do type conversion to match columns in UNION clauses.Thomas G. Lockhart1998-05-298-988/+526
| | | | | | | | | | | 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.
* Require #define variable ALLOW_ABSOLUTE_DBPATHS if absolute paths areThomas G. Lockhart1998-05-291-1/+5
| | | | | | | | 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.
* Fix up a couple of comments broken by the automatic indenting process.Thomas G. Lockhart1998-05-291-8/+11
|
* Add conversion functions between "name" and other string types.Thomas G. Lockhart1998-05-292-7/+31
|
* Add conversion functions to and from the "name" data type.Thomas G. Lockhart1998-05-292-4/+126
|
* Ensure string is completely null padded on input (as advertised).Thomas G. Lockhart1998-05-291-1/+8
|
* Add test for UNION.Thomas G. Lockhart1998-05-293-3/+135
| | | | | Add additional tests in strings for conversions of the "name" data type. Test SQL92 string functions such as SUBSTRING() and POSITION().
* Add test for UNION.Thomas G. Lockhart1998-05-294-41/+418
| | | | | | | 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.
* Clarify ownership and security issues with alternate db locations.Thomas G. Lockhart1998-05-291-23/+17
|
* Define PGDOC to use POSTGRESDIR by default.Thomas G. Lockhart1998-05-291-2/+2
| | | | Can be set to something else in Makefile.custom if necessary.
* postmaster/postgres options cleanup.Bruce Momjian1998-05-274-65/+62
|
* Cleanup.Bruce Momjian1998-05-261-5/+1
|
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-05-269-44/+95
| | | | | | | | | +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
* Fix for drop database and junk filters.Bruce Momjian1998-05-261-2/+3
|
* Fix for postgres started from command line, sends 'Z' protocolBruce Momjian1998-05-261-3/+3
| | | | flag.
* Clean up pg_hba.confBruce Momjian1998-05-241-12/+12
|
* 1998-05-18 Karl Eichwalder <ke@suse.de>Marc G. Fournier1998-05-242-259/+257
| | | | | * configure.in (AC_CHECK_LIB): check for ncurses; if this fails check for curses.
* From: Brook Milligan <brook@trillium.NMSU.Edu>Marc G. Fournier1998-05-244-0/+640
| | | | | | | 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.
* From: Tom Lane <tgl@sss.pgh.pa.us>Marc G. Fournier1998-05-241-2/+2
| | | | | | ... 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.
* Solaris 5 fix.Bruce Momjian1998-05-221-0/+2
|
* Move FAQ_DEV to docs directory, where it belongs.Bruce Momjian1998-05-222-12/+15
|
* From: David Hartwig <daveh@insightdist.com>Marc G. Fournier1998-05-214-38/+88
| | | | | Here is a patch to remove the requirement that ORDER/GROUP BY clause identifiers be included in the target list.
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-05-216-29/+45
| | | | | | | | + Tue May 19 11:49:34 CEST 1998 + + - Tested (and fixed) 'set connection' + - Fixed string notation in C + - Set version to 2.3.2