summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-05-05WARN:parser: parser error ...Vadim B. Mikheev
changed to WARN:parser: syntax error ...
1997-05-05If SELECT uses index (btree) then ordered results are returned.Vadim B. Mikheev
1997-05-05There is no partial index onek2_u1_prtl in tests...Vadim B. Mikheev
1997-05-05Bug: backend crashes in btbeginscan()->btrescan()->_bt_orderkeys()Vadim B. Mikheev
when btree used in innerscan with run-time key which value passed by pointer. Fix: keys ordering stuff moved to _bt_first(). Pointed by Thomas Lockhart.
1997-05-02Add substitution from output/.. to input/.. to match templates from inputs.Thomas G. Lockhart
1997-05-02Update to work with new regression tests and directory structure.Thomas G. Lockhart
1997-05-02New test data for aggregate functions.Thomas G. Lockhart
1997-04-30Fix old bug in _hash_first() for scan without keys:Vadim B. Mikheev
if 1st bucket chain is empty then need to continue scan in the rest buckets.
1997-04-30More informative NOTICEs in tuple checks.Vadim B. Mikheev
1997-04-29creation for postgresql-6.1Edmund Mergl
1997-04-29Reorder tests and move aggregate table data to data/.Thomas G. Lockhart
1997-04-29Added initial set of expected outputs for new regression testing.Thomas G. Lockhart
Modified a few tests to match results on RedHat Linux/gcc for v6.1beta.
1997-04-29SET geqo TO ON|OFFVadim B. Mikheev
1997-04-29#ifdef GEQOVadim B. Mikheev
bool _use_geqo_ = true; #else bool _use_geqo_ = false; #endif _use_geqo_ is settable via SET var TO ...
1997-04-29Fix GroupBy: enable functions over aggregates and GroupBy-ed fieldsVadim B. Mikheev
in target list.
1997-04-28Fix configure so that installbsd gets -c alsoMarc G. Fournier
From: Lee Roth <roth@tpusa.com>
1997-04-28Add a netbsd template file and update linux-elf and .similarMarc G. Fournier
1997-04-28From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier
Subject: [HACKERS] Inputting money I notice that I have to put single quotes around money amounts if there is a decimal point in the value. I appears to be happening because there is something changing things like "123.45" to "123.450000" and the code has a problem with that. There may be a better way to fix this but here is a simple change to cash.c that lets it accept trailing zeroes.
1997-04-27Provide template for the misc tests which contain path names.Thomas G. Lockhart
1997-04-27Fix path name templates.Thomas G. Lockhart
1997-04-27Update SQL query results for lists of operators and functions.Thomas G. Lockhart
Add a little info on count().
1997-04-27Change mixed-case routines to lower-case for case-insensitive SQL.Thomas G. Lockhart
Add mixed-case #define synonyms to avoid changing more source code. Add comparison operators for boolean. Add aggregate min() and max() for datetime and timespan.
1997-04-27Change mixed-case routines to lower-case in pg_proc.hThomas G. Lockhart
Add comparison operators for boolean. Add aggregate min() and max() for datetime and timespan. Fix duplicate OID in pg_proc.h
1997-04-27Change mixed-case routines to lower-case if referenced in pg_proc.hThomas G. Lockhart
1997-04-27Change mixed-case routines to lower-case if referenced in pg_proc.hThomas G. Lockhart
Add comparison operators to boolean and smaller/larger operators to datetime and timespan. Fix int4 overflow math problem in timespan comparison operators.
1997-04-27Modify references to function manager to use lower-case calls.Thomas G. Lockhart
1997-04-27From: Keith Parks <emkxp01@mtcc.demon.co.uk>Marc G. Fournier
Subject: [PATCHES] to make regress.sh shell friendly to echo. Hi, I needed to make the following change to regress.sh to make it more shell friendly. The Solaris /bin/sh, and others, use \c to supress the newline.
1997-04-27There, I'll leave this alone until Thomas catchs up *grin*Marc G. Fournier
1997-04-27split out a bunch more tests from misc.source so that the tester knowsMarc G. Fournier
what's being tested :)
1997-04-27Alot of regression test fixes, mainly to compensate for movingMarc G. Fournier
the DROP TABLE calls from the destroy.sql file to the 'types' .sql files, so that they are self-contained btree_index, hash_index and misc all fail as there seems to be missing a 'misc.out' expected file...have asked Thomas for one...
1997-04-27Get first four tests to pass:Marc G. Fournier
=============== destroying old regression database... ================= =============== creating new regression database... ================= =============== running regression queries... ================= create_function_1 .. ok create_type .. ok create_table .. ok create_function_2 .. ok
1997-04-27Make these self-contained tests...they are testing types, so the tablesMarc G. Fournier
that are created should only exist as long as the test requires them... things are just toooooo spread around
1997-04-27Trying to continue breaking down the large files into smaller tests so thatMarc G. Fournier
debugging is a little (well, alot!) easier
1997-04-27clean up misc.source and create *individual test* files ... trying to moveMarc G. Fournier
away from one big massive confusing file
1997-04-27*shrug* I don't know anymore...Marc G. Fournier
1997-04-27*shrug*Marc G. Fournier
1997-04-27Massive regression test patches from Thomas *woo hoo!*Marc G. Fournier
1997-04-26A few changes to reflect things properly suggested by DavidMarc G. Fournier
1997-04-26Reverse check for TR so that trbsd gets checked for firstMarc G. Fournier
Pointed out by: adrian@waltham.harvard.net
1997-04-26Add a results directory and a Makefile so that 'make clean' cleans it outMarc G. Fournier
1997-04-26Missed an -I directiveMarc G. Fournier
1997-04-26More misc patches from Thomas for regression tests and linux templatesMarc G. Fournier
1997-04-26Clean out/up some files that are causing me great headaches since I didn'tMarc G. Fournier
do this completely last time and Thomas is creating patches on files that aren't supposed to exist :(
1997-04-26clean up the bin/*/Makefiles...up version.h to v6.1 instead of v6.0Marc G. Fournier
Remove bin/Makefile.global since it wasn't actually *doing* anything that Makefile.global hadn't already done
1997-04-26Fix for bootstrap.c problem (F_* values missing from fmgr.h)Marc G. Fournier
1997-04-25More timezone patches by Thomas:Marc G. Fournier
Here are patches which should help fix timezone problems in the datetime and abstime code. Also, I repatched varlena.c to add in some comments and a little error checking on top of Vadim's earlier repairs. There are slight mods to the circle data type to have the distance operator between circles measure the distance between closest points rather than between centers.
1997-04-24From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>Marc G. Fournier
Subject: [PATCHES] Patches for compiling 6.1 on Digital Unix 3.2c Attached to this message are the patches I needed to compile 6.1 cleanly under Digital Unix 3.2c with DEC cc. I hope these are the last ones. At least, the number of files needing a patch has decreased noticeably since I sent my previous patches. Nice work :-) One of the patches is a bug fix, but I'm including it here anyway. With these patches applied, the beast seems to work properly. However, I've done only some preliminary tests. More on this later (but hopefully before the April 30 deadline... :-)
1997-04-24Fixes:Marc G. Fournier
postgres backend processes end up as so called zombies. It seems that only Linux a.out (libc.4.6.27) systems are affected. By: Wolfgang Roth <roth@statistik.uni-mannheim.de>
1997-04-24Various bug fixes based on a bug report submitted byMarc G. Fournier
Doug Neuhauser <doug@seismo.berkeley.edu> on April 15th
1997-04-24Added comments about FASTBUILD.Vadim B. Mikheev
Added #define BTREE_VERSION_1.