aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* multi-byte fix from Tatsuo IshiiBruce Momjian1998-09-25
|
* Add new Makefile from Jan.Bruce Momjian1998-09-25
|
* Bracket filename in LOAD error message with single quotesThomas G. Lockhart1998-09-25
| | | | to clarify actual path used.
* Update to track gram.y.Thomas G. Lockhart1998-09-25
| | | | Had removed PARSEDEBUG statements...
* Cleanup markup and minor editing to prepare for first release.Thomas G. Lockhart1998-09-25
|
* Include the graphics directory in build lookup path.Thomas G. Lockhart1998-09-25
|
* Clean up existing debugging print statements.Thomas G. Lockhart1998-09-25
| | | | Modify comment blocks to insulate from pgindent.
* Clean up code in analyze.c for SERIAL data type.Thomas G. Lockhart1998-09-25
| | | | Remove _all_ PARSEDEBUG print statements.
* Fix comment for regproc.Bruce Momjian1998-09-25
|
* MB patches from Tatsuo IshiiBruce Momjian1998-09-25
|
* Fix for datetime from Tatsuo IshiiBruce Momjian1998-09-23
|
* Fix for oidArray from Christopher Oliver.Bruce Momjian1998-09-23
|
* Allow 8-key indexes.Bruce Momjian1998-09-23
|
* Add in, I think, support for %lld in snprintf(), specifically withMarc G. Fournier1998-09-23
| | | | Irix in mind...
* Fix for SELECT NOT boolfield FROM tableBruce Momjian1998-09-22
|
* Cleanup for oid8[] from Tatsuo Ishii.Bruce Momjian1998-09-22
|
* Here are some patches to fix up the regression tests so that the unionBruce Momjian1998-09-22
| | | | | | | | | | test passes. Interestingly, the fix involves no changes or special cases in the union test and actually removes a special case for the numerology test. Thus, following the strategy outlined below is a definite improvement over the previous situation. Cheers, Brook
* Add .h to string include.Bruce Momjian1998-09-22
|
* Editing and markup cleanup.Thomas G. Lockhart1998-09-22
|
* Fix for AND/OR handling.Bruce Momjian1998-09-21
|
* From: Michael Meskes <meskes@usa.net>Marc G. Fournier1998-09-21
| | | | docs improvement for ecpg..
* From: Michael Meskes <meskes@usa.net>Marc G. Fournier1998-09-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | + Mon Aug 31 09:40:04 CEST 1998 + + - Minor patch to Makefile + - Put pgc.l in sync with scan.l + + Tue Sep 1 11:31:05 CEST 1998 + + - Fixed another bug in preproc.y + + Thu Sep 3 12:21:16 CEST 1998 + + - Sync preproc.y with gram.y + + Mon Sep 14 09:21:02 CEST 1998 + + - Sync preproc.y with gram.y yet again + + Thu Sep 17 08:55:33 CEST 1998 + + - Synced preproc.y and gram.y one more time + + Thu Sep 17 19:23:24 CEST 1998 + + - Added missing ´;´ in preproc.y + - Set version to 2.4.2
* Fix for \z formatting from Tom Lane.Bruce Momjian1998-09-21
|
* This patch covers several to-do items that I had for libpgtcl:Bruce Momjian1998-09-21
| | | | | | | | | | | | | | | | | | | | | | | * It works under both Tcl 7.6 and Tcl 8.0 now. (The code claims to work under Tcl 7.5 as well, but I have no way to test that --- if anyone still cares, please check it with 7.5.) * pg_listen suppresses extra LISTEN commands and correctly sends an UNLISTEN when the last listen request for a relation is cancelled. (Note this means it will not work with pre-6.4 backends, but that was true already because it depends on the current libpq, which only speaks protocol 2.0.) * Added -error option to pg_result so that there's some way to find out what you did wrong ;-) * Miscellaneous cleanups of code comments and overenthusiastic #includes. BTW, I bumped the package version number from 1.2 to 1.3. Is this premature? Does someone run around and do that routinely before each pgsql release? regards, tom lane
* autoconfBruce Momjian1998-09-20
|
* Fix for memory leak, configure path fix, from Tom Lane.Bruce Momjian1998-09-20
|
* Fix memory leak from Tom Lane.Bruce Momjian1998-09-20
|
* I also noticed that pg_dump contains a copy of the sameBruce Momjian1998-09-20
| | | | | | | | prompt_for_password code that psql does. We fixed psql a month or two back to permit usernames and passwords longer than 8 characters. I propagated the same fix into pg_dump. Tom Lane
* Regression test cleanup.Bruce Momjian1998-09-18
|
* NS32K lock patch reversed.Bruce Momjian1998-09-18
|
* Fixes for VC and libpq.Bruce Momjian1998-09-18
| | | | Magnus Hagander
* Fix for NS32K machine.Bruce Momjian1998-09-18
|
* fix for aix snprintfBruce Momjian1998-09-18
|
* Remove /usr/local/* from templates.Bruce Momjian1998-09-18
|
* Fix for \df.Bruce Momjian1998-09-18
|
* New gram.cBruce Momjian1998-09-18
|
* Update entries for MkLinux and Linux/ix86 for Postgres v6.4.Thomas G. Lockhart1998-09-16
|
* Add Unix-specific installation and configuration info for psqlodbc.Thomas G. Lockhart1998-09-16
|
* Markup and editing adjustments...Thomas G. Lockhart1998-09-16
|
* Consolidate Jan's rules test into one file.Thomas G. Lockhart1998-09-16
| | | | | Remove dependency on a specific Postgres user name in the results (Check result against CURRENT_USER with a boolean instead).
* Support specifying PRIMARY KEY for the SERIAL type.Thomas G. Lockhart1998-09-16
| | | | | | | Change DEFAULT NULL to send back a NULL pointer rather than a string "NULL". This seems to work, where sending the string led to type conversion problems (and probably the wrong thing anyway).
* Support specifying PRIMARY KEY for the SERIAL type.Thomas G. Lockhart1998-09-16
| | | | | Check for a constraint if is_sequence is set and omit making a UNIQUE index if so, since the primary key will cover that for us.
* Use oper_select_candidate() for unary operatorsThomas G. Lockhart1998-09-16
| | | | | | rather than func_select_candidate(). Fix oper_select_candidate() to work with a single operator argument. Repair left operator checking for null return from candidate list.
* Forgot to remove README-1ST from the repository ...Marc G. Fournier1998-09-15
|
* tabularized a little bit...Marc G. Fournier1998-09-14
|
* A sort of 'log' of what operating systems are supported, and the dateMarc G. Fournier1998-09-14
| | | | last tested...
* Change order of install...installing interfaces is the last to be done,Marc G. Fournier1998-09-14
| | | | | | | | as, if not installing as root (which nobody *should* be doing, of course), the perl install fails, which means that both bin and man directories are not installed :( This way, only thing that doesn't get installed is perl interface...
* Add new make_oidjoin_check utility and template1_check.sql. Fix someBruce Momjian1998-09-14
| | | | pg_operator problems.
* Remove remnant from obsolete char16 data type.Thomas G. Lockhart1998-09-13
|
* Update to new DECLARE and FETCH features in gram.y.Thomas G. Lockhart1998-09-13
|