]> git.ipfire.org Git - thirdparty/postgresql.git/log
thirdparty/postgresql.git
25 years agoUpdate release notes for 6.5.2.
Bruce Momjian [Mon, 13 Sep 1999 02:47:25 +0000 (02:47 +0000)] 
Update release notes for 6.5.2.

25 years agoUpdate for 6.5.2.
Bruce Momjian [Mon, 13 Sep 1999 00:20:48 +0000 (00:20 +0000)] 
Update for 6.5.2.

25 years agoUpdate to 6.5.2.
Bruce Momjian [Mon, 13 Sep 1999 00:13:24 +0000 (00:13 +0000)] 
Update to 6.5.2.

25 years agoDidn't commit right last time...SRCH_LIBS fix...
Marc G. Fournier [Sun, 12 Sep 1999 22:58:37 +0000 (22:58 +0000)] 
Didn't commit right last time...SRCH_LIBS fix...

25 years agowhen checking include directories, make sure you check for existence of
Marc G. Fournier [Sun, 12 Sep 1999 22:47:14 +0000 (22:47 +0000)] 
when checking include directories, make sure you check for existence of
SRCH_INC also...makes template file kinda useless without :)

25 years agocygwin defines BYTE_ORDER in sys/param.h, and has no endian.h ...
Marc G. Fournier [Sun, 12 Sep 1999 22:25:32 +0000 (22:25 +0000)] 
cygwin defines BYTE_ORDER in sys/param.h, and has no endian.h ...

25 years agoRepair incorrect cleanup of heap memory allocation during
Tom Lane [Thu, 9 Sep 1999 16:29:22 +0000 (16:29 +0000)] 
Repair incorrect cleanup of heap memory allocation during
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...

25 years agoStreamConnection() mustn't call elog().
Tom Lane [Wed, 8 Sep 1999 23:00:51 +0000 (23:00 +0000)] 
StreamConnection() mustn't call elog().

25 years agoRepair logic error in LIKE: should not return LIKE_ABORT
Tom Lane [Tue, 7 Sep 1999 19:12:16 +0000 (19:12 +0000)] 
Repair logic error in LIKE: should not return LIKE_ABORT
when reach end of pattern before end of text.  Improve code comments.

25 years agoIrix linking fix from Yu Cao <yucao@falcon.kla-tencor.com>
Tom Lane [Tue, 7 Sep 1999 18:11:35 +0000 (18:11 +0000)] 
Irix linking fix from Yu Cao <yucao@falcon.kla-tencor.com>

25 years agoComment out FileUnlink of excess segments during mdtruncate().
Tom Lane [Mon, 6 Sep 1999 20:00:15 +0000 (20:00 +0000)] 
Comment out FileUnlink of excess segments during mdtruncate().
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().

25 years agoBackpatch fix for unary operators in rule deparser.
Tom Lane [Sun, 5 Sep 1999 22:55:28 +0000 (22:55 +0000)] 
Backpatch fix for unary operators in rule deparser.

25 years agoI'm gonna stick my neck out a little and back-patch these
Tom Lane [Thu, 2 Sep 1999 04:07:18 +0000 (04:07 +0000)] 
I'm gonna stick my neck out a little and back-patch these
changes into REL6_5 ... they could use some more testing before we release
6.5.2, though.

25 years agodocument -x for pg_dump
Bruce Momjian [Wed, 1 Sep 1999 23:06:26 +0000 (23:06 +0000)] 
document -x for pg_dump

25 years agoThis is to re-use space on index pages freed by vacuum.
Marc G. Fournier [Wed, 1 Sep 1999 17:54:00 +0000 (17:54 +0000)] 
This is to re-use space on index pages freed by vacuum.

Approved by: Vadim Mikheev <vadim@krs.ru>

25 years agoFix quoting problems in mkMakefile.tcldefs.sh.in and
Tom Lane [Sun, 29 Aug 1999 20:11:52 +0000 (20:11 +0000)] 
Fix quoting problems in mkMakefile.tcldefs.sh.in and
mkMakefile.tkdefs.sh.in.

25 years agoBackpatch rule deparsing bugfixes into 6.5.*.
Tom Lane [Sun, 29 Aug 1999 19:22:28 +0000 (19:22 +0000)] 
Backpatch rule deparsing bugfixes into 6.5.*.
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...).

25 years agoBack-patch fix for timestamp(datetime) into 6.5.*.
Tom Lane [Sun, 29 Aug 1999 01:39:57 +0000 (01:39 +0000)] 
Back-patch fix for timestamp(datetime) into 6.5.*.
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.

25 years agoSorry, I accidentaly reverted to 6.5.1 vacuum.c.
Tatsuo Ishii [Wed, 25 Aug 1999 12:01:45 +0000 (12:01 +0000)] 
Sorry, I accidentaly reverted to 6.5.1 vacuum.c.
Now everything should be ok.

25 years agoAdd new vpl_num_allocated_pages member to VPageListData.
Tatsuo Ishii [Wed, 25 Aug 1999 11:32:52 +0000 (11:32 +0000)] 
Add new vpl_num_allocated_pages member to VPageListData.
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.

25 years agoFix vacuum's memory consumption
Tatsuo Ishii [Wed, 25 Aug 1999 11:27:06 +0000 (11:27 +0000)] 
Fix vacuum's memory consumption

25 years agoBack-patch int8 fixes into REL6_5.
Tom Lane [Sat, 21 Aug 1999 03:09:18 +0000 (03:09 +0000)] 
Back-patch int8 fixes into REL6_5.

25 years agoOld multi-byte bug. Forgot to rename #ifdef MB to #ifdef MULTIBYTE
Tatsuo Ishii [Wed, 18 Aug 1999 13:01:50 +0000 (13:01 +0000)] 
Old multi-byte bug. Forgot to rename #ifdef MB to #ifdef MULTIBYTE
Now SET NAMES working again...

25 years agoTypo fix.
Bruce Momjian [Mon, 16 Aug 1999 20:32:56 +0000 (20:32 +0000)] 
Typo fix.

25 years ago I've sent 3 mails to pgsql-patches. There are two files, one for doc
Bruce Momjian [Mon, 16 Aug 1999 20:29:11 +0000 (20:29 +0000)] 
   I've sent 3 mails to pgsql-patches. There are two files, one for doc
and
for src/data directories, and one minor patch for doc/README.locale.
   Please apply.

Oleg.

25 years agoFix for perl5 on BSD/OS.
Bruce Momjian [Mon, 16 Aug 1999 20:10:25 +0000 (20:10 +0000)] 
Fix for perl5 on BSD/OS.

25 years agoAllow BSD yacc and bison to compile pl code.
Bruce Momjian [Mon, 16 Aug 1999 19:55:46 +0000 (19:55 +0000)] 
Allow BSD yacc and bison to compile pl code.

25 years agoFix for Win32 making problem with MB enabled.
Tatsuo Ishii [Mon, 16 Aug 1999 02:01:53 +0000 (02:01 +0000)] 
Fix for Win32 making problem with MB enabled.
Patches created by Hiroki Kataoka.

25 years agoRepair the check for redundant UNIQUE and PRIMARY KEY indices.
Thomas G. Lockhart [Sun, 15 Aug 1999 06:50:22 +0000 (06:50 +0000)] 
Repair the check for redundant UNIQUE and PRIMARY KEY indices.
Also, improve it so that it checks for multi-column constraints.
Thanks to Mark Dalphin <mdalphin@amgen.com> for reporting the problem.

25 years agoSomeone back-patched a regression test change without
Tom Lane [Sun, 8 Aug 1999 21:39:34 +0000 (21:39 +0000)] 
Someone back-patched a regression test change without
back-patching the expected file (or running the test, evidently...)

25 years agoBack-patch BTScan abort fix into REL6_5.
Tom Lane [Sun, 8 Aug 1999 20:24:12 +0000 (20:24 +0000)] 
Back-patch BTScan abort fix into REL6_5.

25 years agoBack-patch fix for busted ELF test in configure.
Tom Lane [Sun, 8 Aug 1999 17:55:19 +0000 (17:55 +0000)] 
Back-patch fix for busted ELF test in configure.

25 years agoFinal round before bed...more tomorrow...
Marc G. Fournier [Mon, 2 Aug 1999 06:27:09 +0000 (06:27 +0000)] 
Final round before bed...more tomorrow...

25 years agoAnother mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN
Marc G. Fournier [Mon, 2 Aug 1999 05:57:07 +0000 (05:57 +0000)] 
Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN

25 years agoAnother 'mega-commit' of back-patches ...
Marc G. Fournier [Mon, 2 Aug 1999 05:25:27 +0000 (05:25 +0000)] 
Another 'mega-commit' of back-patches ...

- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN

25 years agoMake sure D'Arcy's elf/configure changes get into -stable:
Marc G. Fournier [Mon, 2 Aug 1999 01:33:33 +0000 (01:33 +0000)] 
Make sure D'Arcy's elf/configure changes get into -stable:

-------
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.

25 years agofinal one before weekend starts...more at end of weekend
Marc G. Fournier [Fri, 30 Jul 1999 19:36:33 +0000 (19:36 +0000)] 
final one before weekend starts...more at end of weekend

25 years agoconfig.h.in was so re-org'd, tested and committing seperately...
Marc G. Fournier [Fri, 30 Jul 1999 19:13:44 +0000 (19:13 +0000)] 
config.h.in was so re-org'd, tested and committing seperately...

25 years agoAnother batch ...
Marc G. Fournier [Fri, 30 Jul 1999 18:52:56 +0000 (18:52 +0000)] 
Another batch ...

25 years agoMore include merges from -current, following a clean compile...
Marc G. Fournier [Fri, 30 Jul 1999 18:27:02 +0000 (18:27 +0000)] 
More include merges from -current, following a clean compile...

25 years agoCarefully merge in Bruce's include file changes ... commit'd only after a
Marc G. Fournier [Fri, 30 Jul 1999 17:07:23 +0000 (17:07 +0000)] 
Carefully merge in Bruce's include file changes ... commit'd only after a
clean compile ...

25 years agoremove "define NO_UNISTD_H"
Marc G. Fournier [Fri, 30 Jul 1999 04:26:51 +0000 (04:26 +0000)] 
remove "define NO_UNISTD_H"

25 years agospelling corrections ...
Marc G. Fournier [Fri, 30 Jul 1999 04:23:23 +0000 (04:23 +0000)] 
spelling corrections ...

25 years agoMinor back-ports from v6.6 for the compile/configuration...
Marc G. Fournier [Fri, 30 Jul 1999 04:13:44 +0000 (04:13 +0000)] 
Minor back-ports from v6.6 for the compile/configuration...

25 years agothere should be no reasons why configure can't/isn't maintained across
Marc G. Fournier [Fri, 30 Jul 1999 03:30:57 +0000 (03:30 +0000)] 
there should be no reasons why configure can't/isn't maintained across
versions...

25 years agoBring down template changes from -CURRENT
Marc G. Fournier [Fri, 30 Jul 1999 03:26:29 +0000 (03:26 +0000)] 
Bring down template changes from -CURRENT

25 years agoIts a stable release, not development...
Marc G. Fournier [Fri, 30 Jul 1999 03:22:40 +0000 (03:22 +0000)] 
Its a stable release, not development...

25 years agoBack-patch fixes for CASE in WHERE join clauses.
Tom Lane [Thu, 29 Jul 1999 03:34:11 +0000 (03:34 +0000)] 
Back-patch fixes for CASE in WHERE join clauses.

25 years agoUpdate README.NT. REL6_5_1
Bruce Momjian [Mon, 19 Jul 1999 05:08:23 +0000 (05:08 +0000)] 
Update README.NT.

25 years agoFix 'SO__MINOR_VERSION' typo in 6.5 branch.
Tom Lane [Fri, 16 Jul 1999 22:46:16 +0000 (22:46 +0000)] 
Fix 'SO__MINOR_VERSION' typo in 6.5 branch.

25 years agoFix reference to European DateStyle startup options.
Thomas G. Lockhart [Fri, 16 Jul 1999 06:22:32 +0000 (06:22 +0000)] 
Fix reference to European DateStyle startup options.

25 years agoRebuild from sources to fix missing gif.
Thomas G. Lockhart [Fri, 16 Jul 1999 06:20:37 +0000 (06:20 +0000)] 
Rebuild from sources to fix missing gif.

25 years agoAdd missing gif to postgres integrated doc.
Thomas G. Lockhart [Fri, 16 Jul 1999 06:03:48 +0000 (06:03 +0000)] 
Add missing gif to postgres integrated doc.

25 years agoAdd missing gif to the tarball.
Thomas G. Lockhart [Fri, 16 Jul 1999 05:57:08 +0000 (05:57 +0000)] 
Add missing gif to the tarball.
Fix reference to '-o -e' flag set for Postmaster.

25 years agoCorrect typo in command line options for backend server.
Thomas G. Lockhart [Fri, 16 Jul 1999 05:51:42 +0000 (05:51 +0000)] 
Correct typo in command line options for backend server.

25 years agoAdd SHLIB_LINK setting for solaris_i386 and solaris_sparc ports,
Tom Lane [Thu, 15 Jul 1999 02:03:54 +0000 (02:03 +0000)] 
Add SHLIB_LINK setting for solaris_i386 and solaris_sparc ports,
per bug report from Daren Sefcik <daren@partnersdata.com>.

25 years agoBack-patch subselect+CASE fixes into 6.5.
Tom Lane [Thu, 15 Jul 1999 01:54:29 +0000 (01:54 +0000)] 
Back-patch subselect+CASE fixes into 6.5.

25 years agoUpdate with release notes for v6.5.1.
Thomas G. Lockhart [Wed, 14 Jul 1999 23:38:26 +0000 (23:38 +0000)] 
Update with release notes for v6.5.1.
Change references from v6.5 to v6.5.1 in the installation instructions.

25 years agoUpdate TODO list.
Bruce Momjian [Tue, 13 Jul 1999 03:07:20 +0000 (03:07 +0000)] 
Update TODO list.

25 years agoUpdate install file.
Bruce Momjian [Mon, 12 Jul 1999 17:33:36 +0000 (17:33 +0000)] 
Update install file.

25 years agoreadd include for safety.
Bruce Momjian [Mon, 12 Jul 1999 13:32:38 +0000 (13:32 +0000)] 
readd include for safety.

26 years agoUpdate 6.5.1 items.
Bruce Momjian [Mon, 12 Jul 1999 02:27:31 +0000 (02:27 +0000)] 
Update 6.5.1 items.

26 years agodocument updated for 6.5.1
Tatsuo Ishii [Sun, 11 Jul 1999 22:59:26 +0000 (22:59 +0000)] 
document updated for 6.5.1

26 years agoFix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel Behal)
Tatsuo Ishii [Sun, 11 Jul 1999 22:47:21 +0000 (22:47 +0000)] 
Fix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel Behal)

26 years agoUpdate release notes.
Bruce Momjian [Sun, 11 Jul 1999 18:02:59 +0000 (18:02 +0000)] 
Update release notes.

26 years agoRewritePreprocessQuery tried to match resjunk targets against
Tom Lane [Sun, 11 Jul 1999 17:54:30 +0000 (17:54 +0000)] 
RewritePreprocessQuery tried to match resjunk targets against
result relation ... wrong ...

26 years agoAdd Tom's group by fixes.
Bruce Momjian [Sun, 11 Jul 1999 03:57:58 +0000 (03:57 +0000)] 
Add Tom's group by fixes.

26 years agoIgnore resjunk targetlist entries when matching arguments to
Tom Lane [Sun, 11 Jul 1999 02:04:19 +0000 (02:04 +0000)] 
Ignore resjunk targetlist entries when matching arguments to
a SubLink with the subplan's targetlist.  This fixes a problem seen with,
for example, a subselect that uses GROUP BY.

26 years agoUpdate TODO list.
Bruce Momjian [Sun, 11 Jul 1999 02:02:13 +0000 (02:02 +0000)] 
Update TODO list.

26 years agoExecReScanGroup() forgot to clear grpstate->grp_firstTuple,
Tom Lane [Sun, 11 Jul 1999 01:57:32 +0000 (01:57 +0000)] 
ExecReScanGroup() forgot to clear grpstate->grp_firstTuple,
thereby guaranteeing wrong results from a rescanned Group node.

26 years agoheapam.h uses type time_t, but didn't include <time.h>.
Tom Lane [Sat, 10 Jul 1999 22:06:26 +0000 (22:06 +0000)] 
heapam.h uses type time_t, but didn't include <time.h>.

26 years agoAdd new item from Tom Lane sorting.
Bruce Momjian [Sat, 10 Jul 1999 18:38:16 +0000 (18:38 +0000)] 
Add new item from Tom Lane sorting.

26 years agoFix tuplecmp() to ensure repeatable sort ordering of tuples
Tom Lane [Sat, 10 Jul 1999 18:21:59 +0000 (18:21 +0000)] 
Fix tuplecmp() to ensure repeatable sort ordering of tuples
that contain null fields.  Old code would produce erratic sort results
because comparisons of tuples containing nulls could produce inconsistent
answers.

26 years agoUpdate release notes.
Bruce Momjian [Sat, 10 Jul 1999 17:26:09 +0000 (17:26 +0000)] 
Update release notes.

26 years agoUpdate release for 6.5.1.
Bruce Momjian [Sat, 10 Jul 1999 17:16:05 +0000 (17:16 +0000)] 
Update release for 6.5.1.

26 years agocleanup of long long int atoi test.
Bruce Momjian [Sat, 10 Jul 1999 17:03:34 +0000 (17:03 +0000)] 
cleanup of long long int atoi test.

26 years agoUpdate stuff for 6.5.1 release.
Bruce Momjian [Sat, 10 Jul 1999 16:28:02 +0000 (16:28 +0000)] 
Update stuff for 6.5.1 release.

26 years ago-mieee and # does not work for certain version of egcs
Tatsuo Ishii [Sat, 10 Jul 1999 12:33:10 +0000 (12:33 +0000)] 
-mieee and # does not work for certain version of egcs

26 years agoFix gcc complaint about long being passed to sprintf %d.
Tom Lane [Fri, 9 Jul 1999 22:53:40 +0000 (22:53 +0000)] 
Fix gcc complaint about long being passed to sprintf %d.

26 years agoMake ^ precidence greater than *.
Bruce Momjian [Fri, 9 Jul 1999 21:59:59 +0000 (21:59 +0000)] 
Make ^ precidence greater than *.

26 years agoupdate readme.nt
Bruce Momjian [Fri, 9 Jul 1999 21:46:14 +0000 (21:46 +0000)] 
update readme.nt

26 years agocreatelang now returns 2 for language already exists.
Bruce Momjian [Fri, 9 Jul 1999 17:57:46 +0000 (17:57 +0000)] 
createlang now returns 2 for language already exists.

26 years agoRe-apply range check patch after fixing LIMIT_H test and defines.
Bruce Momjian [Fri, 9 Jul 1999 17:40:31 +0000 (17:40 +0000)] 
Re-apply range check patch after fixing LIMIT_H test and defines.

26 years agoAdd mention block size <= 32k.
Bruce Momjian [Fri, 9 Jul 1999 16:56:44 +0000 (16:56 +0000)] 
Add mention block size <= 32k.

26 years agoAnother place that HAVE_LIMITS_H was misspelled.
Tom Lane [Fri, 9 Jul 1999 15:09:54 +0000 (15:09 +0000)] 
Another place that HAVE_LIMITS_H was misspelled.

26 years agocleanup
Bruce Momjian [Fri, 9 Jul 1999 04:51:27 +0000 (04:51 +0000)] 
cleanup

26 years agoUpdate TODO list.
Bruce Momjian [Fri, 9 Jul 1999 04:20:22 +0000 (04:20 +0000)] 
Update TODO list.

26 years agoFix for ACL length problem on different platforms.
Bruce Momjian [Fri, 9 Jul 1999 03:28:53 +0000 (03:28 +0000)] 
Fix for ACL length problem on different platforms.

26 years agoBackup pg_atoi patch for long checking. Caused initdb problems.
Bruce Momjian [Fri, 9 Jul 1999 03:27:20 +0000 (03:27 +0000)] 
Backup pg_atoi patch for long checking.  Caused initdb problems.

26 years agoAdd linux_m68k template file.
Bruce Momjian [Fri, 9 Jul 1999 02:35:37 +0000 (02:35 +0000)] 
Add linux_m68k template file.

26 years agoRename tuturials for char2/char16 removal.
Bruce Momjian [Thu, 8 Jul 1999 15:28:51 +0000 (15:28 +0000)] 
Rename tuturials for char2/char16 removal.

26 years agoRename example temp to mytemp.
Bruce Momjian [Thu, 8 Jul 1999 15:27:01 +0000 (15:27 +0000)] 
Rename example temp to mytemp.

26 years agoUpdate TODO
Bruce Momjian [Thu, 8 Jul 1999 05:04:49 +0000 (05:04 +0000)] 
Update TODO

26 years agoUpdate.
Bruce Momjian [Thu, 8 Jul 1999 05:02:09 +0000 (05:02 +0000)] 
Update.

26 years agoUpdate todo
Bruce Momjian [Thu, 8 Jul 1999 05:01:25 +0000 (05:01 +0000)] 
Update todo

26 years agoUpdate TODO.
Bruce Momjian [Thu, 8 Jul 1999 03:34:00 +0000 (03:34 +0000)] 
Update TODO.

26 years agoNew TODO list.
Bruce Momjian [Thu, 8 Jul 1999 03:33:19 +0000 (03:33 +0000)] 
New TODO list.

26 years agoTest Case:
Bruce Momjian [Thu, 8 Jul 1999 03:32:57 +0000 (03:32 +0000)] 
Test Case:
----------
exec sql begin declare section;
   short s ;
   unsigned short us;
exec sql end   declare section;
exec sql create table test(s smallint, us smallint);
exec sql commit;
s = 1; us =32000;
exec sql insert into test values( :s, :us ) ;  <== error

Error Message: "i4toi2: '-600309759' causes int2 underflow"

Masaaki Sakaida

26 years agoAdd CXXFLAGS +=
Bruce Momjian [Thu, 8 Jul 1999 03:30:16 +0000 (03:30 +0000)] 
Add CXXFLAGS +=

26 years ago> In both datetime_trunc() and timespan_trunc() in dt.c,
Bruce Momjian [Thu, 8 Jul 1999 03:22:46 +0000 (03:22 +0000)] 
> In both datetime_trunc() and timespan_trunc() in dt.c,
> the DTK_MICROSEC case is just like the DTK_MILLISEC case.
> I think this is wrong and it ought to look like
>         fsec = rint(fsec * 1000000) / 1000000;
> no?

Tom Lane.