aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* From: Jan Wieck <jwieck@debis.com>Marc G. Fournier1998-02-11
| | | | | | | A few minutes ago I sent down the PL/Tcl directory to this list. Look at it and reuse anything that might help to build PL/perl. I really hope that PL/perl and PL/Tcl appear in the 6.3 distribution. I'll do whatever I can to make this happen.
* From: Jan Wieck <jwieck@debis.com>Marc G. Fournier1998-02-11
| | | | | | | A few minutes ago I sent down the PL/Tcl directory to this list. Look at it and reuse anything that might help to build PL/perl. I really hope that PL/perl and PL/Tcl appear in the 6.3 distribution. I'll do whatever I can to make this happen.
* From: Jan Wieck <jwieck@debis.com>Marc G. Fournier1998-02-11
| | | | | | | A few minutes ago I sent down the PL/Tcl directory to this list. Look at it and reuse anything that might help to build PL/perl. I really hope that PL/perl and PL/Tcl appear in the 6.3 distribution. I'll do whatever I can to make this happen.
* Update test for newly implemented "<=" operator.Thomas G. Lockhart1998-02-11
|
* Try bumping to version two...Thomas G. Lockhart1998-02-11
|
* Define ROW and STATEMENT as parser tokens.Thomas G. Lockhart1998-02-11
| | | | | | | | | | | | | | Use explicit tokens to decode CREATE TRIGGER clauses. Allow ROW and STATEMENT as column identifiers. Fix CAST syntax to require parens per SQL92 spec. Define TypeId to allow correct translation of type names in CREATE FUNCTION and other statements. Need to do this without looking up defined type names because CREATE FUNCTION can specify undefined (new) types. Define UserId to complete removal of "Id" generic entity. Define xlateSqlFunc() to convert SQL92 CHARACTER_LENGTH() and CHAR_LENGTH() functions to calls to length(). Define func_name parser entity for contexts requiring a function name. Have xlateSqlType() translate "float" to "float8".
* Automatically promote out of range integers to floats.Thomas G. Lockhart1998-02-11
| | | | Throw elog(NOTICE) to flag promotion.
* Fix typos in SQL statement terminators.Thomas G. Lockhart1998-02-11
|
* regression test based off of Solaris/Sparc v2.6Marc G. Fournier1998-02-10
|
* Erk, the whole directory structure changed on us here...Marc G. Fournier1998-02-10
|
* Updated ECPG From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-02-10
|
* Pass around typmod as int16.Bruce Momjian1998-02-10
|
* Clean up regression tests for SunOS (based on Solaris v2.6)Marc G. Fournier1998-02-10
| | | | Clean up strings.out , removed func_get_detail from error message
* Pass attypmod through to executor by adding to Var and Resdom.Bruce Momjian1998-02-10
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-02-09
| | | | | | | | | | | This patch fixes the following: * Fixes minor bug found in DatabaseMetaData.getTables() where it doesn't handle default table types. * It now reports an error if the client opens a database using properties, and either the user or password properties are missing. This should make the recent problem with Servlets easier to find. * Commented out obsolete property in Driver.getPropertyInfo()
* This was a new class that was introduced last weekend. I'm attaching theMarc G. Fournier1998-02-09
| | | | | | source here. It goes in the src/interfaces/jdbc/postgresql/util directory Marc, can you make sure this is in the distribution, Thanks
* Atttypmod cleanups.Bruce Momjian1998-02-07
|
* atttypmod now -1.Bruce Momjian1998-02-07
|
* Update now that attcacheoff initial value is -1 always.Bruce Momjian1998-02-06
|
* Set attcacheoff value to -1 for all tables.Bruce Momjian1998-02-06
|
* Fix for \d on long table names.Bruce Momjian1998-02-06
|
* FIx hasSubLinks for Vadim.Bruce Momjian1998-02-06
|
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-02-06
| | | | | I have implemented a better user interface (well part of) so you can use it as expected. As usual there are some bug fixes. :-)
* FIx for varchar(), char() and INSERT .. SELECT.Bruce Momjian1998-02-05
|
* Vadim fix for vacuum analyze.Bruce Momjian1998-02-05
|
* FIx for atttypmod on system tables.Bruce Momjian1998-02-05
|
* FIx for atttypmod in system catalogs.Bruce Momjian1998-02-05
|
* Fix for varchar functions, and indextyple j-1 fix.Bruce Momjian1998-02-05
|
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-02-05
| | | | | | | | | | Well this is not really a patch. But I mananged to get Linus' old Postgres95 precompiler to compile and work with PostgreSQL. The next step would be to collect bug/missing feature reports and to put it into the distribution so that it is made with the standard make procedure. Warning! So far it is not tested much and it does not install correctly. But I was able to create a small binary with it.
* Symptom:Marc G. Fournier1998-02-05
| | | | | | | | select from a table with attrs (a int, b char(20)) crashed in bpcharout() (palloc of -1 bytes). But a table with attrs (a int, b varchar(20)) worked. From: Jan Wieck <jwieck@debis.com>
* init_fixup_addr() function removed, so port-protos.h no longer requiredMarc G. Fournier1998-02-05
|
* func_error() changed so that if caller is passed with NULL value, itsMarc G. Fournier1998-02-05
| | | | | | output at least doesn't appear that its missing something. wasn't particularly confident with removing 'caller' altogether :(
* Build in a 'dummy' tas file...nothing in it, just used for the link processMarc G. Fournier1998-02-05
| | | | of configure
* char() cleanup and more cacheoff improvements.Bruce Momjian1998-02-05
|
* Fix up this so that it also doesn't use a caller variable...Marc G. Fournier1998-02-05
|
* Clean up func_error() function completely removing caller variable asMarc G. Fournier1998-02-05
| | | | "more info then user requires"
* Port specific, compiler specfied for SGI/Irix5Marc G. Fournier1998-02-05
| | | | From: Andrew Martin <martin@biochemistry.ucl.ac.uk>
* Cleanup getattr code. Make CHAR() use attcacheoff.Bruce Momjian1998-02-04
|
* Try this fix for the tas.s code...Marc G. Fournier1998-02-04
|
* Allow most expressions in BETWEEN clause. Allow all expressions ifThomas G. Lockhart1998-02-04
| | | | | | | surrounded by parentheses (but not all are meaningful). Remove unused keywords ACL, APPEND, MERGE. Requires a "make clean" to recompile all code since keyword numeric assignments have changed with keyword removal.
* Vacuum parameter fix.Bruce Momjian1998-02-03
|
* Strange, this should be required, but initialize need_tas to noMarc G. Fournier1998-02-03
|
* I tried to match up the if/test stuff...fixed now, I thinkMarc G. Fournier1998-02-03
|
* Subselects with =, >, etc.Bruce Momjian1998-02-03
| | | | Cleanup for vacuum help, manual page, and error message
* various i386_solaris cleanups that should fix sparc_solaris and hpuxMarc G. Fournier1998-02-03
|
* Learning a little more about autoconf each day...Marc G. Fournier1998-02-03
| | | | Fix inclusion of 'tas.s' for various ports
* Supress call to tzset() in reset_timezone() if a new time zone has neverThomas G. Lockhart1998-02-03
| | | | | been set in the session. General cleanup of timezone support code.
* Remove unused keyword CHANGE.Thomas G. Lockhart1998-02-03
|
* Define boolean functions and operators for lseg <, <=, <>, >=, >.Thomas G. Lockhart1998-02-03
| | | | | | | | Define functions and operators for closest point to lseg on box, to line on lseg, to lseg on lseg. Define function and operator for length of lseg. Change length operator from '??' to '@-@' (currently defined for path and lseg).
* Define boolean functions for lseg <, <=, <>, >=, >Thomas G. Lockhart1998-02-03
| | | | | | | | | Define close_ls(), close_lseg(), lseg_length(). Write real code for close_sb(), close_pb(), inter_sb(), inter_lb(). Repair lseg_perp() which determines if two lsegs are perpendicular. Repair lseg_dt() distance between two lsegs. Note: close_sl() is clearly broken but will repair later (calculating point on lseg rather than point on line).