| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 1999-11-01 | Backpatch REL6_5 for missing inherit '*' in rule dumps. | Tom Lane | |
| 1999-10-31 | Update for pgaccess 0.98. | Bruce Momjian | |
| 1999-10-31 | Update for pgaccess 0.98. | Bruce Momjian | |
| 1999-10-31 | Update for 0.98 pgaccess | Bruce Momjian | |
| 1999-10-30 | Update pgaccess for 0.98. | Bruce Momjian | |
| 1999-10-19 | Back-patch LIMIT + INTERSECT fix into 6.5.*. | Tom Lane | |
| 1999-10-19 | Not to change pg_log status after "commit". | Hiroshi Inoue | |
| This will happen when elog(ERROR)(elog(FATAL) also in 7.0) is called in vacuum after the internal commit. | |||
| 1999-10-13 | update jdbc version #. | Bruce Momjian | |
| 1999-10-12 | Update for 6.5.3, including new INSTALL file and updated HISTORY. | Bruce Momjian | |
| 1999-10-12 | I have created a small patch that makes possible to compile pgsql on newer | Bruce Momjian | |
| Cygwin snapshots (tested on 990115 which is recommended to use - it fixes some errors in B20.1) And I have another patch for including <sys/ipc.h> before <sys/sem.h> in backend/storage/lmgr/proc.c - it is required due the design of cygipc headers Dan | |||
| 1999-10-09 | Move __alpha to port/alpha.h. | Bruce Momjian | |
| 1999-10-08 | Define __alpha__ for __alpha. | Bruce Momjian | |
| 1999-09-27 | Remove 'v' from #include line. | Bruce Momjian | |
| 1999-09-24 | Fix the omitted declarations to allow '^' and '|' as math operators. | Thomas G. Lockhart | |
| Problem was introduced when precedence was added for these. How did *those* changes get into the stable tree in the first place?? | |||
| 1999-09-23 | Backpatch into 6.5.*. | Bruce Momjian | |
| One last missing quoting bug in pg_dump: now that sequence names are properly quoted for field defaults, mixed case sequence names are generated. These are properly quoted in the CREATE SEQUENCE lines, but not in the SELECT nextval lines, as per below: CREATE SEQUENCE "Teams_TeamID_seq" start 10 increment 1 maxvalue 2147483647 minvalue 1 cache 1 ; SELECT nextval ('Teams_TeamID_seq'); This needs to be: SELECT nextval ('"Teams_TeamID_seq"'); Patch included below. -- Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu> | |||
| 1999-09-20 | Add new files. | Bruce Momjian | |
| 1999-09-20 | Update pgaccess 0.98. | Bruce Momjian | |
| 1999-09-18 | Back-patch fix for NULL condition in CASE. | Tom Lane | |
| 1999-09-17 | re-add Makefile for pgaccess | Bruce Momjian | |
| 1999-09-14 | Another little 'must fix' for 6.5.2: someone removed HAVE_KILLREL6_5_2 | Tom Lane | |
| 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. | |||
| 1999-09-14 | Last-minute fix for 6.5.2: repair optimizer coredump on | Tom Lane | |
| CASE clauses in WHERE. Surprised no one noticed this before. | |||
| 1999-09-14 | Allow ISOLATION and LEVEL as column names. These are SQL92 reserved words | Thomas G. Lockhart | |
| which do not need to be so for our parser. Apparently omitted earlier. | |||
| 1999-09-13 | Update pgaccess 0.98 | Bruce Momjian | |
| 1999-09-13 | Allow CASE statement to contain *only* untyped result clauses or nulls. | Thomas G. Lockhart | |
| 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. | |||
| 1999-09-13 | Update to 6.5.2. | Bruce Momjian | |
| 1999-09-12 | Didn't commit right last time...SRCH_LIBS fix... | Marc G. Fournier | |
| 1999-09-12 | when checking include directories, make sure you check for existence of | Marc G. Fournier | |
| SRCH_INC also...makes template file kinda useless without :) | |||
| 1999-09-12 | cygwin defines BYTE_ORDER in sys/param.h, and has no endian.h ... | Marc G. Fournier | |
| 1999-09-09 | Repair incorrect cleanup of heap memory allocation during | Tom Lane | |
| 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... | |||
| 1999-09-08 | StreamConnection() mustn't call elog(). | Tom Lane | |
| 1999-09-07 | Repair logic error in LIKE: should not return LIKE_ABORT | Tom Lane | |
| when reach end of pattern before end of text. Improve code comments. | |||
| 1999-09-07 | Irix linking fix from Yu Cao <yucao@falcon.kla-tencor.com> | Tom Lane | |
| 1999-09-06 | Comment out FileUnlink of excess segments during mdtruncate(). | Tom Lane | |
| 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(). | |||
| 1999-09-05 | Backpatch fix for unary operators in rule deparser. | Tom Lane | |
| 1999-09-02 | I'm gonna stick my neck out a little and back-patch these | Tom Lane | |
| changes into REL6_5 ... they could use some more testing before we release 6.5.2, though. | |||
| 1999-09-01 | document -x for pg_dump | Bruce Momjian | |
| 1999-09-01 | This is to re-use space on index pages freed by vacuum. | Marc G. Fournier | |
| Approved by: Vadim Mikheev <vadim@krs.ru> | |||
| 1999-08-29 | Fix quoting problems in mkMakefile.tcldefs.sh.in and | Tom Lane | |
| mkMakefile.tkdefs.sh.in. | |||
| 1999-08-29 | Backpatch rule deparsing bugfixes into 6.5.*. | Tom Lane | |
| 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...). | |||
| 1999-08-29 | Back-patch fix for timestamp(datetime) into 6.5.*. | Tom Lane | |
| 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. | |||
| 1999-08-25 | Sorry, I accidentaly reverted to 6.5.1 vacuum.c. | Tatsuo Ishii | |
| Now everything should be ok. | |||
| 1999-08-25 | Add new vpl_num_allocated_pages member to VPageListData. | Tatsuo Ishii | |
| 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. | |||
| 1999-08-25 | Fix vacuum's memory consumption | Tatsuo Ishii | |
| 1999-08-21 | Back-patch int8 fixes into REL6_5. | Tom Lane | |
| 1999-08-18 | Old multi-byte bug. Forgot to rename #ifdef MB to #ifdef MULTIBYTE | Tatsuo Ishii | |
| Now SET NAMES working again... | |||
| 1999-08-16 | I've sent 3 mails to pgsql-patches. There are two files, one for doc | Bruce Momjian | |
| and for src/data directories, and one minor patch for doc/README.locale. Please apply. Oleg. | |||
| 1999-08-16 | Fix for perl5 on BSD/OS. | Bruce Momjian | |
| 1999-08-16 | Allow BSD yacc and bison to compile pl code. | Bruce Momjian | |
| 1999-08-16 | Fix for Win32 making problem with MB enabled. | Tatsuo Ishii | |
| Patches created by Hiroki Kataoka. | |||
| 1999-08-15 | Repair the check for redundant UNIQUE and PRIMARY KEY indices. | Thomas G. Lockhart | |
| Also, improve it so that it checks for multi-column constraints. Thanks to Mark Dalphin <mdalphin@amgen.com> for reporting the problem. | |||
