Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | > 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 |
| | |||
* | 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 |
| | |||
* | 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 |
| | |||
* | Fix for removal of temp tables if last transaction was aborted. | Bruce Momjian | 1999-07-02 |
| | |||
* | typo fix. | Bruce Momjian | 1999-07-02 |
| | |||
* | #ifdef around true and false. | Bruce Momjian | 1999-07-01 |
| | |||
* | make distclean missed a few symlinks created by configure. | Tom Lane | 1999-07-01 |
| | |||
* | Make sure symlinks for sharedlib get removed by 'make clean'. | Tom Lane | 1999-06-30 |
| | |||
* | Generate a full set of version-numbered symlinks when building | Tom Lane | 1999-06-30 |
| | | | | a shared library, not just when installing it. | ||
* | *** empty log message *** | Michael Meskes | 1999-06-29 |
| | |||
* | Avoid disk writes for read-only transactions. | Vadim B. Mikheev | 1999-06-29 |
| | |||
* | Add time warning about bigtests. | Bruce Momjian | 1999-06-28 |
| | |||
* | Some minor bug fixes | Peter Mount | 1999-06-27 |
| | |||
* | Add var defines for no testandset | Bruce Momjian | 1999-06-26 |
| | |||
* | Remove -m486 on Openbsd. | Bruce Momjian | 1999-06-26 |
| | |||
* | *** empty log message *** | Michael Meskes | 1999-06-25 |
| | |||
* | Makefile.global failed to define $(LIBS), which is | Tom Lane | 1999-06-25 |
| | | | | | unfortunate considering that several subdirectory makefiles were counting on it to do so... | ||
* | *** empty log message *** | Michael Meskes | 1999-06-24 |
| | |||
* | Some fixes supplied by Jon Nielsen jonfn@image.dk | Peter Mount | 1999-06-23 |
| | |||
* | Replace rewriter's checkQueryHasAggs and checkQueryHasSubLink | Tom Lane | 1999-06-21 |
| | | | | | | | | with expression_tree_walker-based code. The former failed to cope with expressions containing SubLinks, and the latter returned TRUE for both SubLinks and Aggrefs (cut-and-paste bug?). There is a lot more scope for using expression_tree_walker in this module, but I'll restrain myself until the 6.6 split occurs from touching not-demonstrably-broken code. | ||
* | Clean up problems with sublinks + grouping in planner. Not | Tom Lane | 1999-06-21 |
| | | | | | sure if they are all fixed, because rewriter is now the stumbling block, but at least some cases work that did not work before. | ||
* | On second thought, expression_tree_walker should handle bare | Tom Lane | 1999-06-21 |
| | | | | SubLink nodes after all ... | ||
* | I have a small patch for 6.5. | Bruce Momjian | 1999-06-19 |
| | | | | | | aclchk.c: heap_close() is not called after calling heap_openr(). Atsushi Ogawa | ||
* | Rename to vararg_format(). | Bruce Momjian | 1999-06-19 |
| | |||
* | Change form() to varargform() to prevent portability problems. | Bruce Momjian | 1999-06-19 |
| | |||
* | My first chosen victim for expression_tree_walker conversion | Tom Lane | 1999-06-19 |
| | | | | | | | | | | | | is parse_aggs.c. This fixes its failure to cope with (at least) CaseExpr and ArrayRef nodes, which is the reason why both of these fail in 6.5: select coalesce(f1,0) from int4_tbl group by f1; ERROR: Illegal use of aggregates or non-group column in target list select sentence.words[0] from sentence group by sentence.words[0]; ERROR: Illegal use of aggregates or non-group column in target list The array case still fails, but at least it's not parse_agg's fault anymore ... considering that we now support CASE officially, I think it's important to fix the first example ... | ||
* | Create a generic expression-tree-walker subroutine, which | Tom Lane | 1999-06-19 |
| | | | | | | will gradually replace all of the boilerplate tree-walk-recursion code that currently exists in O(N) slightly different forms in N subroutines. I've had it with adding missing cases to these subroutines... | ||
* | Temporarily disable error checks for missing selectivity | Tom Lane | 1999-06-19 |
| | | | | | functions, in order to work around oversight in 6.5 release: rtree index functions haven't got any. Mea culpa ... | ||
* | Patch to allow vacuum on multi-segment tables, from Hiroshi Inoue | Bruce Momjian | 1999-06-18 |
| | |||
* | Incorporate fixes from Date and Darwen, 1997. | Thomas G. Lockhart | 1999-06-18 |
| | | | | | Did not check the function declarations as carefully as the other parts, though all of the function names *do* match up with D&D. | ||
* | linux_ppc now use -O0 to fix problem in optimization of fmgr calls. | Bruce Momjian | 1999-06-18 |
| | |||
* | Explain didn't handle inheritance correctly (it didn't | Tom Lane | 1999-06-17 |
| | | | | manipulate rtable the same way executor does). |