| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #ifdef around true and false. | Bruce Momjian | 1999-07-01 | 1 | -2/+6 |
| | | |||||
| * | Add files to point to TODO list. | Bruce Momjian | 1999-07-01 | 2 | -0/+8 |
| | | |||||
| * | make distclean missed a few symlinks created by configure. | Tom Lane | 1999-07-01 | 1 | -2/+6 |
| | | |||||
| * | Make sure symlinks for sharedlib get removed by 'make clean'. | Tom Lane | 1999-06-30 | 6 | -19/+23 |
| | | |||||
| * | Generate a full set of version-numbered symlinks when building | Tom Lane | 1999-06-30 | 1 | -1/+20 |
| | | | | | a shared library, not just when installing it. | ||||
| * | *** empty log message *** | Michael Meskes | 1999-06-29 | 6 | -62/+24 |
| | | |||||
| * | Avoid disk writes for read-only transactions. | Vadim B. Mikheev | 1999-06-29 | 2 | -29/+49 |
| | | |||||
| * | Add time warning about bigtests. | Bruce Momjian | 1999-06-28 | 1 | -2/+3 |
| | | |||||
| * | Some minor bug fixes | Peter Mount | 1999-06-27 | 4 | -33/+23 |
| | | |||||
| * | Add var defines for no testandset | Bruce Momjian | 1999-06-26 | 1 | -1/+3 |
| | | |||||
| * | Remove -m486 on Openbsd. | Bruce Momjian | 1999-06-26 | 1 | -1/+1 |
| | | |||||
| * | *** empty log message *** | Michael Meskes | 1999-06-25 | 2 | -3/+7 |
| | | |||||
| * | Makefile.global failed to define $(LIBS), which is | Tom Lane | 1999-06-25 | 1 | -2/+3 |
| | | | | | | unfortunate considering that several subdirectory makefiles were counting on it to do so... | ||||
| * | *** empty log message *** | Michael Meskes | 1999-06-24 | 2 | -1/+7 |
| | | |||||
| * | Remove User's Guide entities since they were not being used. | Thomas G. Lockhart | 1999-06-23 | 1 | -80/+34 |
| | | |||||
| * | Add information on generating INSTALL and HISTORY from sgml sources. | Thomas G. Lockhart | 1999-06-23 | 1 | -48/+160 |
| | | |||||
| * | Clarify input/output timezone information. | Thomas G. Lockhart | 1999-06-23 | 1 | -16/+38 |
| | | | | | | Add detail on exact interpretation of "concatenated date" for various lengths. | ||||
| * | Add backup/restore info to Admin Guide. | Thomas G. Lockhart | 1999-06-23 | 4 | -240/+396 |
| | | | | | Split management chapter from start-ag.sgml to manage-ag.sgml. | ||||
| * | Minor changes to Fred Horsh's updates. | Thomas G. Lockhart | 1999-06-23 | 2 | -383/+441 |
| | | |||||
| * | Update maximum identifier length from 15 to 31 characters. | Thomas G. Lockhart | 1999-06-23 | 1 | -1/+1 |
| | | |||||
| * | Some fixes supplied by Jon Nielsen jonfn@image.dk | Peter Mount | 1999-06-23 | 6 | -357/+65 |
| | | |||||
| * | The references to mailing lists in the resources page seem outdated. | Bruce Momjian | 1999-06-21 | 1 | -7/+10 |
| | | | | | | | Patch attached. Fred Horch | ||||
| * | Some suggestions to clarify the current status of PostgreSQL. Patch | Bruce Momjian | 1999-06-21 | 1 | -58/+71 |
| | | | | | | | attached. Fred Horch | ||||
| * | Replace rewriter's checkQueryHasAggs and checkQueryHasSubLink | Tom Lane | 1999-06-21 | 1 | -226/+29 |
| | | | | | | | | | 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 | 3 | -76/+85 |
| | | | | | | 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 | 2 | -32/+24 |
| | | | | | SubLink nodes after all ... | ||||
| * | I have a small patch for 6.5. | Bruce Momjian | 1999-06-19 | 1 | -1/+2 |
| | | | | | | | aclchk.c: heap_close() is not called after calling heap_openr(). Atsushi Ogawa | ||||
| * | Rename to vararg_format(). | Bruce Momjian | 1999-06-19 | 4 | -20/+20 |
| | | |||||
| * | Change form() to varargform() to prevent portability problems. | Bruce Momjian | 1999-06-19 | 8 | -49/+49 |
| | | |||||
| * | My first chosen victim for expression_tree_walker conversion | Tom Lane | 1999-06-19 | 1 | -115/+103 |
| | | | | | | | | | | | | | 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 | 3 | -250/+270 |
| | | | | | | | 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 | 1 | -19/+44 |
| | | | | | | 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 | 1 | -12/+46 |
| | | |||||
| * | Incorporate fixes from Date and Darwen, 1997. | Thomas G. Lockhart | 1999-06-18 | 1 | -220/+404 |
| | | | | | | 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 | 1 | -1/+1 |
| | | |||||
| * | Explain didn't handle inheritance correctly (it didn't | Tom Lane | 1999-06-17 | 1 | -2/+1 |
| | | | | | manipulate rtable the same way executor does). | ||||
| * | Defend against function calls with more than 8 arguments (code | Tom Lane | 1999-06-17 | 4 | -23/+33 |
| | | | | | | used to overrun its fixed-size arrays before detecting error; not cool). Also, replace uses of magic constant '8' with 'MAXFARGS'. | ||||
| * | Remove QUERY_LIMIT and documenation on same. Change _ALIGN to TYPEALIGN | Bruce Momjian | 1999-06-17 | 11 | -163/+18 |
| | | | | | for Irix. | ||||
| * | Add CLI required header and examples from SQL3/SQL98 | Thomas G. Lockhart | 1999-06-17 | 3 | -0/+966 |
| | | | | | | | August 1994 draft standard. Use the ecpg support libraries to write the CLI interface? Date and Darwen claim that CLI is a more modern and flexible approach... | ||||
| * | Make linux_ppc use only -O, not -O2. | Bruce Momjian | 1999-06-17 | 1 | -1/+1 |
| | | |||||
| * | *** empty log message *** | Michael Meskes | 1999-06-16 | 1 | -4/+0 |
| | | |||||
| * | *** empty log message *** | Michael Meskes | 1999-06-16 | 3 | -1/+9 |
| | | |||||
| * | Add NT readme file. | Bruce Momjian | 1999-06-16 | 1 | -0/+55 |
| | | |||||
| * | Cleanup | Bruce Momjian | 1999-06-16 | 2 | -6/+2 |
| | | |||||
| * | Undo Jan's typo that broke regress.sh's detection of systemREL6_5 | Tom Lane | 1999-06-14 | 1 | -8/+10 |
| | | | | | type name. | ||||
| * | Fix cross-reference to large objects. | Thomas G. Lockhart | 1999-06-14 | 1 | -4/+3 |
| | | |||||
| * | Fix cross-reference to large objects in the CREATE TYPE section. | Thomas G. Lockhart | 1999-06-14 | 1 | -0/+0 |
| | | |||||
| * | Release notes from sgml. | Thomas G. Lockhart | 1999-06-14 | 1 | -520/+680 |
| | | | | | | | Came out with max 79 columns from Applix by defining the page width at 10 inches and the right margin at 9.5 inches, then exporting as "ASCII Layout". | ||||
| * | Put in CREATE TABLE AS and SELECT INTO reference pages. | Thomas G. Lockhart | 1999-06-14 | 1 | -0/+0 |
| | | | | | | Left them out after splitting them from the CREATE TABLE and SELECT sources. | ||||
| * | Minor updates for release. | Thomas G. Lockhart | 1999-06-14 | 19 | -2810/+2988 |
| | | | | | | Split reference pages for CREATE TABLE AS and SELECT INTO to allow psgml (the emacs parser) to handle parsing. | ||||
