aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* mdcreate():Vadim B. Mikheev1997-05-06
| | | | | | | | | | | | | | | fd = FileNameOpenFile(path, O_RDWR|O_CREAT|O_EXCL, 0600); /* * If the file already exists and is empty, we pretend that the * create succeeded. During bootstrap processing, we skip that check, * because pg_time, pg_variable, and pg_log get created before their * .bki file entries are processed. * > * As the result of this pretence it was possible to have in > * pg_class > 1 records with the same relname. Actually, it > * should be fixed in upper levels, too, but... - vadim 05/06/97 > */
* Kill re-incarnated bug arroundVadim B. Mikheev1997-05-05
| | | | | | Assert ( --Vnpages > 0 ); and Assert ( --Fnpages > 0 );
* There is no more _CWD_ tag in sources...Vadim B. Mikheev1997-05-05
|
* WARN:parser: parser error ...Vadim B. Mikheev1997-05-05
| | | | | changed to WARN:parser: syntax error ...
* If SELECT uses index (btree) then ordered results are returned.Vadim B. Mikheev1997-05-05
|
* There is no partial index onek2_u1_prtl in tests...Vadim B. Mikheev1997-05-05
|
* Bug: backend crashes in btbeginscan()->btrescan()->_bt_orderkeys()Vadim B. Mikheev1997-05-05
| | | | | | | | | 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.
* Add substitution from output/.. to input/.. to match templates from inputs.Thomas G. Lockhart1997-05-02
|
* Update to work with new regression tests and directory structure.Thomas G. Lockhart1997-05-02
|
* New test data for aggregate functions.Thomas G. Lockhart1997-05-02
|
* Fix old bug in _hash_first() for scan without keys:Vadim B. Mikheev1997-04-30
| | | | if 1st bucket chain is empty then need to continue scan in the rest buckets.
* More informative NOTICEs in tuple checks.Vadim B. Mikheev1997-04-30
|
* creation for postgresql-6.1Edmund Mergl1997-04-29
|
* Reorder tests and move aggregate table data to data/.Thomas G. Lockhart1997-04-29
|
* Added initial set of expected outputs for new regression testing.Thomas G. Lockhart1997-04-29
| | | | Modified a few tests to match results on RedHat Linux/gcc for v6.1beta.
* SET geqo TO ON|OFFVadim B. Mikheev1997-04-29
|
* #ifdef GEQOVadim B. Mikheev1997-04-29
| | | | | | | | | bool _use_geqo_ = true; #else bool _use_geqo_ = false; #endif _use_geqo_ is settable via SET var TO ...
* Fix GroupBy: enable functions over aggregates and GroupBy-ed fieldsVadim B. Mikheev1997-04-29
| | | | in target list.
* Fix configure so that installbsd gets -c alsoMarc G. Fournier1997-04-28
| | | | From: Lee Roth <roth@tpusa.com>
* Add a netbsd template file and update linux-elf and .similarMarc G. Fournier1997-04-28
|
* From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier1997-04-28
| | | | | | | | | | 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.
* Provide template for the misc tests which contain path names.Thomas G. Lockhart1997-04-27
|
* Fix path name templates.Thomas G. Lockhart1997-04-27
|
* Update SQL query results for lists of operators and functions.Thomas G. Lockhart1997-04-27
| | | | Add a little info on count().
* Change mixed-case routines to lower-case for case-insensitive SQL.Thomas G. Lockhart1997-04-27
| | | | | | 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.
* Change mixed-case routines to lower-case in pg_proc.hThomas G. Lockhart1997-04-27
| | | | | | Add comparison operators for boolean. Add aggregate min() and max() for datetime and timespan. Fix duplicate OID in pg_proc.h
* Change mixed-case routines to lower-case if referenced in pg_proc.hThomas G. Lockhart1997-04-27
|
* Change mixed-case routines to lower-case if referenced in pg_proc.hThomas G. Lockhart1997-04-27
| | | | | Add comparison operators to boolean and smaller/larger operators to datetime and timespan. Fix int4 overflow math problem in timespan comparison operators.
* Modify references to function manager to use lower-case calls.Thomas G. Lockhart1997-04-27
|
* From: Keith Parks <emkxp01@mtcc.demon.co.uk>Marc G. Fournier1997-04-27
| | | | | | | | | | | 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.
* There, I'll leave this alone until Thomas catchs up *grin*Marc G. Fournier1997-04-27
|
* split out a bunch more tests from misc.source so that the tester knowsMarc G. Fournier1997-04-27
| | | | what's being tested :)
* Alot of regression test fixes, mainly to compensate for movingMarc G. Fournier1997-04-27
| | | | | | | | 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...
* Get first four tests to pass:Marc G. Fournier1997-04-27
| | | | | | | | | | =============== 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
* Make these self-contained tests...they are testing types, so the tablesMarc G. Fournier1997-04-27
| | | | | | that are created should only exist as long as the test requires them... things are just toooooo spread around
* Trying to continue breaking down the large files into smaller tests so thatMarc G. Fournier1997-04-27
| | | | debugging is a little (well, alot!) easier
* clean up misc.source and create *individual test* files ... trying to moveMarc G. Fournier1997-04-27
| | | | away from one big massive confusing file
* *shrug* I don't know anymore...Marc G. Fournier1997-04-27
|
* *shrug*Marc G. Fournier1997-04-27
|
* Massive regression test patches from Thomas *woo hoo!*Marc G. Fournier1997-04-27
|
* A few changes to reflect things properly suggested by DavidMarc G. Fournier1997-04-26
|
* Reverse check for TR so that trbsd gets checked for firstMarc G. Fournier1997-04-26
| | | | Pointed out by: adrian@waltham.harvard.net
* Add a results directory and a Makefile so that 'make clean' cleans it outMarc G. Fournier1997-04-26
|
* Missed an -I directiveMarc G. Fournier1997-04-26
|
* More misc patches from Thomas for regression tests and linux templatesMarc G. Fournier1997-04-26
|
* Clean out/up some files that are causing me great headaches since I didn'tMarc G. Fournier1997-04-26
| | | | | do this completely last time and Thomas is creating patches on files that aren't supposed to exist :(
* clean up the bin/*/Makefiles...up version.h to v6.1 instead of v6.0Marc G. Fournier1997-04-26
| | | | | Remove bin/Makefile.global since it wasn't actually *doing* anything that Makefile.global hadn't already done
* Fix for bootstrap.c problem (F_* values missing from fmgr.h)Marc G. Fournier1997-04-26
|
* More timezone patches by Thomas:Marc G. Fournier1997-04-25
| | | | | | | | | 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.
* From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>Marc G. Fournier1997-04-24
| | | | | | | | | | | | | | | | | 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... :-)