aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Another little 'must fix' for 6.5.2: someone removed HAVE_KILLREL6_5_2Tom Lane1999-09-14
| | | | | | from the configuration symbols, but neglected to remove #ifdef HAVE_KILL from async.c in the REL6_5 branch. Result: cross-backend NOTIFY dead in the water.
* Last-minute fix for 6.5.2: repair optimizer coredump onTom Lane1999-09-14
| | | | CASE clauses in WHERE. Surprised no one noticed this before.
* Allow ISOLATION and LEVEL as column names. These are SQL92 reserved wordsThomas G. Lockhart1999-09-14
| | | | which do not need to be so for our parser. Apparently omitted earlier.
* Update pgaccess 0.98Bruce Momjian1999-09-13
|
* Allow CASE statement to contain *only* untyped result clauses or nulls.Thomas G. Lockhart1999-09-13
| | | | | | | Almost worked before, but forgot one place to check. Reported by Tatsuo Ishii. Still does not do the right thing if inserting into a non-string target column. Should look for a type coersion later, but doesn't.
* Update to 6.5.2.Bruce Momjian1999-09-13
|
* Didn't commit right last time...SRCH_LIBS fix...Marc G. Fournier1999-09-12
|
* when checking include directories, make sure you check for existence ofMarc G. Fournier1999-09-12
| | | | SRCH_INC also...makes template file kinda useless without :)
* cygwin defines BYTE_ORDER in sys/param.h, and has no endian.h ...Marc G. Fournier1999-09-12
|
* Repair incorrect cleanup of heap memory allocation duringTom Lane1999-09-09
| | | | | | transaction abort --- before it only worked if there was exactly one level of allocation context stacked in the blank portal. Now it does the right thing for any depth, including zero...
* StreamConnection() mustn't call elog().Tom Lane1999-09-08
|
* Repair logic error in LIKE: should not return LIKE_ABORTTom Lane1999-09-07
| | | | when reach end of pattern before end of text. Improve code comments.
* Irix linking fix from Yu Cao <yucao@falcon.kla-tencor.com>Tom Lane1999-09-07
|
* Comment out FileUnlink of excess segments during mdtruncate().Tom Lane1999-09-06
| | | | | | | | | This is unsafe in 6.5 because other backends may be able to access the file before noticing the shared cache inval message that tells 'em to re-open the file. We have fixed this for 6.6 but the changes seem too risky to back-patch for 6.5.2. Also, back-patch Tatsuo's change to prevent creation of files during mdopen().
* Backpatch fix for unary operators in rule deparser.Tom Lane1999-09-05
|
* I'm gonna stick my neck out a little and back-patch theseTom Lane1999-09-02
| | | | | changes into REL6_5 ... they could use some more testing before we release 6.5.2, though.
* document -x for pg_dumpBruce Momjian1999-09-01
|
* This is to re-use space on index pages freed by vacuum.Marc G. Fournier1999-09-01
| | | | Approved by: Vadim Mikheev <vadim@krs.ru>
* Fix quoting problems in mkMakefile.tcldefs.sh.in andTom Lane1999-08-29
| | | | mkMakefile.tkdefs.sh.in.
* Backpatch rule deparsing bugfixes into 6.5.*.Tom Lane1999-08-29
| | | | | | | I believe this is a pretty critical bugfix, since without it, stored rules containing CASE expressions or array references cannot be dumped by pg_dump. Worse, rules containing expressions like (a + b) * c will be dumped incorrectly (minus the parentheses, silently yielding the wrong answer...).
* Back-patch fix for timestamp(datetime) into 6.5.*.Tom Lane1999-08-29
| | | | | | | | I believe this is not a violation of our policy against requiring initdb for minor-version bugfixes, since users don't *have* to initdb; they just won't see any effect from the fix if they don't. But a user who does do a clean install or initdb upgrade to 6.5.2 will get the fix, and that seems worthwhile.
* Sorry, I accidentaly reverted to 6.5.1 vacuum.c.Tatsuo Ishii1999-08-25
| | | | Now everything should be ok.
* Add new vpl_num_allocated_pages member to VPageListData.Tatsuo Ishii1999-08-25
| | | | | | | It will keep track the number of pages allocated so that vacuum could allocate twice of the previous allocation. This will greatly reduce the total memory consumption of vacuum.
* Fix vacuum's memory consumptionTatsuo Ishii1999-08-25
|
* Back-patch int8 fixes into REL6_5.Tom Lane1999-08-21
|
* Old multi-byte bug. Forgot to rename #ifdef MB to #ifdef MULTIBYTETatsuo Ishii1999-08-18
| | | | Now SET NAMES working again...
* I've sent 3 mails to pgsql-patches. There are two files, one for docBruce Momjian1999-08-16
| | | | | | | | and for src/data directories, and one minor patch for doc/README.locale. Please apply. Oleg.
* Fix for perl5 on BSD/OS.Bruce Momjian1999-08-16
|
* Allow BSD yacc and bison to compile pl code.Bruce Momjian1999-08-16
|
* Fix for Win32 making problem with MB enabled.Tatsuo Ishii1999-08-16
| | | | Patches created by Hiroki Kataoka.
* Repair the check for redundant UNIQUE and PRIMARY KEY indices.Thomas G. Lockhart1999-08-15
| | | | | Also, improve it so that it checks for multi-column constraints. Thanks to Mark Dalphin <mdalphin@amgen.com> for reporting the problem.
* Someone back-patched a regression test change withoutTom Lane1999-08-08
| | | | back-patching the expected file (or running the test, evidently...)
* Back-patch BTScan abort fix into REL6_5.Tom Lane1999-08-08
|
* Back-patch fix for busted ELF test in configure.Tom Lane1999-08-08
|
* Final round before bed...more tomorrow...Marc G. Fournier1999-08-02
|
* Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGNMarc G. Fournier1999-08-02
|
* Another 'mega-commit' of back-patches ...Marc G. Fournier1999-08-02
| | | | | | - integrating the #include file cleanup that Bruce recently did - got the CPU change to adt/Makefile - changing DOUBLEALIGN -> MAXALIGN
* Make sure D'Arcy's elf/configure changes get into -stable:Marc G. Fournier1999-08-02
| | | | | | | | | ------- From: "D'Arcy" "J.M." Cain <darcy@druid.net> I didn't see any further discussion so here is, I hope, a clean fix to configure.in to determine if a system is ELF or not. Note that some of the tests earlier may be redundant but I took the safest route.
* final one before weekend starts...more at end of weekendMarc G. Fournier1999-07-30
|
* config.h.in was so re-org'd, tested and committing seperately...Marc G. Fournier1999-07-30
|
* Another batch ...Marc G. Fournier1999-07-30
|
* More include merges from -current, following a clean compile...Marc G. Fournier1999-07-30
|
* Carefully merge in Bruce's include file changes ... commit'd only after aMarc G. Fournier1999-07-30
| | | | clean compile ...
* remove "define NO_UNISTD_H"Marc G. Fournier1999-07-30
|
* spelling corrections ...Marc G. Fournier1999-07-30
|
* Minor back-ports from v6.6 for the compile/configuration...Marc G. Fournier1999-07-30
|
* there should be no reasons why configure can't/isn't maintained acrossMarc G. Fournier1999-07-30
| | | | versions...
* Bring down template changes from -CURRENTMarc G. Fournier1999-07-30
|
* Back-patch fixes for CASE in WHERE join clauses.Tom Lane1999-07-29
|
* Fix 'SO__MINOR_VERSION' typo in 6.5 branch.Tom Lane1999-07-16
|