Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | -mieee and # does not work for certain version of egcs | Tatsuo Ishii | 1999-07-10 |
| | |||
* | Fix gcc complaint about long being passed to sprintf %d. | Tom Lane | 1999-07-09 |
| | |||
* | Make ^ precidence greater than *. | Bruce Momjian | 1999-07-09 |
| | |||
* | update readme.nt | 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 |
| | |||
* | Update TODO list. | 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-09 |
| | |||
* | Rename tuturials for char2/char16 removal. | Bruce Momjian | 1999-07-08 |
| | |||
* | Rename example temp to mytemp. | Bruce Momjian | 1999-07-08 |
| | |||
* | Update TODO | Bruce Momjian | 1999-07-08 |
| | |||
* | Update. | Bruce Momjian | 1999-07-08 |
| | |||
* | Update todo | Bruce Momjian | 1999-07-08 |
| | |||
* | Update TODO. | Bruce Momjian | 1999-07-08 |
| | |||
* | New TODO list. | Bruce Momjian | 1999-07-08 |
| | |||
* | Test Case: | Bruce Momjian | 1999-07-08 |
| | | | | | | | | | | | | | | | | ---------- 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 | ||
* | Add CXXFLAGS += | Bruce Momjian | 1999-07-08 |
| | |||
* | > In both datetime_trunc() and timespan_trunc() in dt.c, | Bruce Momjian | 1999-07-08 |
| | | | | | | | | | > 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. | ||
* | 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 | 1999-07-08 |
| | | | | | | | | | | | | "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.) | ||
* | Irix update from Mark Dalphin | Bruce Momjian | 1999-07-08 |
| | |||
* | Add ^ precidence. | Bruce Momjian | 1999-07-08 |
| | |||
* | Allow port numbers 32k - 64k. | Bruce Momjian | 1999-07-07 |
| | |||
* | Newer README.NT. | Bruce Momjian | 1999-07-07 |
| | |||
* | Fix for \do and ceil()/float. | Bruce Momjian | 1999-07-07 |
| | |||
* | Fix spelling of variable name. | Bruce Momjian | 1999-07-07 |
| | |||
* | Cleanup of min tuple size. | Bruce Momjian | 1999-07-07 |
| | |||
* | Fix misspelling. | Bruce Momjian | 1999-07-07 |
| | |||
* | Add new TODO file to CVS tree. | Bruce Momjian | 1999-07-06 |
| | |||
* | Update makefile to generate man pages. | Thomas G. Lockhart | 1999-07-06 |
| | | | | | Include first cut at instructions for man pages in docguide.sgml. Fix markup. | ||
* | Add missing paragraph end tag. | Thomas G. Lockhart | 1999-07-06 |
| | |||
* | Fix some markup, but probably not finished yet... | Thomas G. Lockhart | 1999-07-06 |
| | |||
* | Fix markup for docbook2man man page generation. | Thomas G. Lockhart | 1999-07-06 |
| | | | | | | | No big deal; fixed lots of other markup at the same time. Bigest change: make sure there is no whitespace in front of <term> contents. This will probably help the other output types too. | ||
* | Include rules for building a man tar file. | Thomas G. Lockhart | 1999-07-06 |
| | |||
* | Remove old readme file. | Bruce Momjian | 1999-07-05 |
| | |||
* | Align cleanup. | Bruce Momjian | 1999-07-04 |
| | |||
* | More alignment | Bruce Momjian | 1999-07-04 |
| | |||
* | Clean up maximum rewrite tuple length. | Bruce Momjian | 1999-07-04 |
| | |||
* | Clarify maximum tuple and max attribute lengths. | Bruce Momjian | 1999-07-04 |
| | |||
* | Make exec_simple_check_plan() check for a null plan, so | Tom Lane | 1999-07-04 |
| | | | | that it doesn't crash when processing a utility statement. | ||
* | Add abortcurrent trans to temp table fix. | Bruce Momjian | 1999-07-03 |
| | |||
* | More cleanup | Bruce Momjian | 1999-07-03 |
| | |||
* | Update tuple size check. | Bruce Momjian | 1999-07-03 |
| | |||
* | Fix for insertion of tuple too large. | Bruce Momjian | 1999-07-03 |
| | |||
* | Fix to prevent too large tuple from being created. | Bruce Momjian | 1999-07-03 |
| |