Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-08-02 | Final round before bed...more tomorrow... | Marc G. Fournier | |
1999-08-02 | Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN | Marc G. Fournier | |
1999-08-02 | Another 'mega-commit' of back-patches ... | Marc G. Fournier | |
- integrating the #include file cleanup that Bruce recently did - got the CPU change to adt/Makefile - changing DOUBLEALIGN -> MAXALIGN | |||
1999-08-02 | Make sure D'Arcy's elf/configure changes get into -stable: | Marc G. Fournier | |
------- 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. | |||
1999-07-30 | final one before weekend starts...more at end of weekend | Marc G. Fournier | |
1999-07-30 | config.h.in was so re-org'd, tested and committing seperately... | Marc G. Fournier | |
1999-07-30 | Another batch ... | Marc G. Fournier | |
1999-07-30 | More include merges from -current, following a clean compile... | Marc G. Fournier | |
1999-07-30 | Carefully merge in Bruce's include file changes ... commit'd only after a | Marc G. Fournier | |
clean compile ... | |||
1999-07-30 | remove "define NO_UNISTD_H" | Marc G. Fournier | |
1999-07-30 | spelling corrections ... | Marc G. Fournier | |
1999-07-30 | Minor back-ports from v6.6 for the compile/configuration... | Marc G. Fournier | |
1999-07-30 | there should be no reasons why configure can't/isn't maintained across | Marc G. Fournier | |
versions... | |||
1999-07-30 | Bring down template changes from -CURRENT | Marc G. Fournier | |
1999-07-29 | Back-patch fixes for CASE in WHERE join clauses. | Tom Lane | |
1999-07-16 | Fix 'SO__MINOR_VERSION' typo in 6.5 branch. | Tom Lane | |
1999-07-15 | Add SHLIB_LINK setting for solaris_i386 and solaris_sparc ports, | Tom Lane | |
per bug report from Daren Sefcik <daren@partnersdata.com>. | |||
1999-07-15 | Back-patch subselect+CASE fixes into 6.5. | Tom Lane | |
1999-07-12 | readd include for safety. | Bruce Momjian | |
1999-07-11 | Fix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel ↵ | Tatsuo Ishii | |
Behal) | |||
1999-07-11 | RewritePreprocessQuery tried to match resjunk targets against | Tom Lane | |
result relation ... wrong ... | |||
1999-07-11 | Ignore resjunk targetlist entries when matching arguments to | Tom Lane | |
a SubLink with the subplan's targetlist. This fixes a problem seen with, for example, a subselect that uses GROUP BY. | |||
1999-07-11 | ExecReScanGroup() forgot to clear grpstate->grp_firstTuple, | Tom Lane | |
thereby guaranteeing wrong results from a rescanned Group node. | |||
1999-07-10 | heapam.h uses type time_t, but didn't include <time.h>. | Tom Lane | |
1999-07-10 | Fix tuplecmp() to ensure repeatable sort ordering of tuples | Tom Lane | |
that contain null fields. Old code would produce erratic sort results because comparisons of tuples containing nulls could produce inconsistent answers. | |||
1999-07-10 | cleanup of long long int atoi test. | Bruce Momjian | |
1999-07-10 | Update stuff for 6.5.1 release. | Bruce Momjian | |
1999-07-10 | -mieee and # does not work for certain version of egcs | Tatsuo Ishii | |
1999-07-09 | Fix gcc complaint about long being passed to sprintf %d. | Tom Lane | |
1999-07-09 | Make ^ precidence greater than *. | Bruce Momjian | |
1999-07-09 | createlang now returns 2 for language already exists. | Bruce Momjian | |
1999-07-09 | Re-apply range check patch after fixing LIMIT_H test and defines. | Bruce Momjian | |
1999-07-09 | Add mention block size <= 32k. | Bruce Momjian | |
1999-07-09 | Another place that HAVE_LIMITS_H was misspelled. | Tom Lane | |
1999-07-09 | cleanup | Bruce Momjian | |
1999-07-09 | Fix for ACL length problem on different platforms. | Bruce Momjian | |
1999-07-09 | Backup pg_atoi patch for long checking. Caused initdb problems. | Bruce Momjian | |
1999-07-09 | Add linux_m68k template file. | Bruce Momjian | |
1999-07-08 | Rename tuturials for char2/char16 removal. | Bruce Momjian | |
1999-07-08 | Rename example temp to mytemp. | Bruce Momjian | |
1999-07-08 | Test Case: | Bruce Momjian | |
---------- 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 | |||
1999-07-08 | Add CXXFLAGS += | Bruce Momjian | |
1999-07-08 | > In both datetime_trunc() and timespan_trunc() in dt.c, | Bruce Momjian | |
> 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. | |||
1999-07-08 | Rename pg_temp to pg_sorttemp so it does not conflict with temp table names. | Bruce Momjian | |
1999-07-08 | pg_atoi() does range check on int4 data only if | Bruce Momjian | |
"HAS_LONG_LONG" is defined based on the assumption that strtol() would return ERANGE if a platform does not support 64-bit integers. In current PostgreSQL 6.5 (and 6.4.2) distribution, "HAS_LONG_LONG" is defined only if platform is "alpha". (See include/port/alpha.h) I think the int4 range check should apply to linux_alpha as well. (I have not tested yet but I guess this might be applicable to newer Linux/i386 distributions which includes new GCC which implements long int as 64-bit int.) | |||
1999-07-08 | Irix update from Mark Dalphin | Bruce Momjian | |
1999-07-08 | Add ^ precidence. | Bruce Momjian | |
1999-07-07 | Allow port numbers 32k - 64k. | Bruce Momjian | |
1999-07-07 | Fix for \do and ceil()/float. | Bruce Momjian | |
1999-07-07 | Fix spelling of variable name. | Bruce Momjian | |