summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1999-07-18Update for 6.6.Bruce Momjian
1999-07-18configure cleanupBruce Momjian
1999-07-18configure cleanupBruce Momjian
1999-07-18autoconfBruce Momjian
1999-07-18Update configure include checks.Bruce Momjian
1999-07-18autoconfBruce Momjian
1999-07-18Update includes from configureBruce Momjian
1999-07-18autoconfBruce Momjian
1999-07-18No check for string/strings.h.Bruce Momjian
1999-07-18Improve commentary about ArrayRef and ResTarget nodes.Tom Lane
1999-07-17 Move some system includes into c.h, and remove duplicates.Bruce Momjian
1999-07-17Fix incorrect declaration of rtentry as 'ResTarget' where itTom Lane
should be 'RangeTblEntry' ; explain.c had copied the erroneous code.
1999-07-17Fix for multi-byte includes.Bruce Momjian
1999-07-17Fix silly typo in commentary...Tom Lane
1999-07-17Add c.h to exclusion list.Bruce Momjian
1999-07-17clean up comment on missing file.Bruce Momjian
1999-07-17Include checkBruce Momjian
1999-07-17More config.h cleanups.Bruce Momjian
1999-07-17Add config.h as needed.Bruce Momjian
1999-07-16Tired of seeing that 'unused variable' warning...Tom Lane
1999-07-16Add back improperly removed #include for utils/trace.h.Tom Lane
1999-07-16Add back improperly removed #include for config.h.Tom Lane
This probably ought to be kept in *all* the port files, but these two are the only ones that generated compiler warnings for me ...
1999-07-16Add back improperly removed #include for utils/dynamic_loader.h.Tom Lane
1999-07-16Fix 'SO__MINOR_VERSION' typo for irix5; add AIX shlib supportTom Lane
from Andreas Z.; minor cosmetic cleanups.
1999-07-16Support subscripts on bare column names.Tom Lane
1999-07-16Allow bare column names to be subscripted as arrays. ThisTom Lane
creates a reduce/reduce conflict, which I resolved by changing the 'AexprConst -> Typename Sconst' rule to 'AexprConst -> SimpleTypename Sconst'. In other words, a subscripted type declaration can't be used in that syntax any longer. This seems a small price to pay for not having to qualify subscripted columns anymore. Other cleanups: rename res_target_list to update_target_list, and remove productions for variants that are not legal in an UPDATE target list; rename res_target_list2 to plain target_list; delete position_expr in favor of using b_expr in that production; merge opt_indirection into attr nonterminal, since there are no places where an unsubscripted attr is wanted; fix typos in Param support; change case_arg so that an arbitrary a_expr is allowed, not only a column name.
1999-07-16Revise _bt_binsrch() so that its binary search loop takesTom Lane
care of equal-key cases, eliminating bt_firsteq(). The linear search formerly done by bt_firsteq() took a lot of time in the case where many equal keys appear on the same page.
1999-07-16More cleanupBruce Momjian
1999-07-16More cleanupBruce Momjian
1999-07-16More cleanupBruce Momjian
1999-07-16Final cleanupBruce Momjian
1999-07-16Final cleanup.Bruce Momjian
1999-07-16Update #include cleanupsBruce Momjian
1999-07-15Change #include's to use <> and "" as appropriate.Bruce Momjian
1999-07-15Remove unused #includes in *.c files.Bruce Momjian
1999-07-15Cleanups.Bruce Momjian
1999-07-15Remove un-needed #include's from *.c files.Bruce Momjian
1999-07-15Add updates.Bruce Momjian
1999-07-15Clean up #include in /include directory. Add scripts for checking includes.Bruce Momjian
1999-07-15Add SHLIB_LINK setting for solaris_i386 and solaris_sparc ports,Tom Lane
per bug report from Daren Sefcik <daren@partnersdata.com>.
1999-07-15Several routines failed to cope with CASE expressions, andTom Lane
indeed some of 'em were missing support for more node types than that...
1999-07-14Cleanup of /include #include's, for 6.6 only.Bruce Momjian
1999-07-13Remove S*I comments from Stephan.Bruce Momjian
1999-07-13More cpu cleanups, only for 6.6.Bruce Momjian
1999-07-13Redefine cpu's as __cpu__. Only for 6.6 branch.Bruce Momjian
1999-07-12readd include for safety.Bruce Momjian
1999-07-11Fix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel ↵Tatsuo Ishii
Behal)
1999-07-11RewritePreprocessQuery tried to match resjunk targets againstTom Lane
result relation ... wrong ...
1999-07-11Ignore resjunk targetlist entries when matching arguments toTom Lane
a SubLink with the subplan's targetlist. This fixes a problem seen with, for example, a subselect that uses GROUP BY.
1999-07-11ExecReScanGroup() forgot to clear grpstate->grp_firstTuple,Tom Lane
thereby guaranteeing wrong results from a rescanned Group node.