summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-09Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2003-02-07Revise mechanism for getting rid of temp tables at backend shutdown.Tom Lane
2003-02-06Create a GUC variable REGEX_FLAVOR to control the type of regularTom Lane
2003-02-05Replace regular expression package with Henry Spencer's latest versionTom Lane
2003-02-04Minor code cleanup: remove no-longer-useful pull_subplans() function,Tom Lane
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-02-03Tweak planner and executor to avoid doing ExecProject() in table scanTom Lane
2003-02-02Implement EXPLAIN EXECUTE. By Neil Conway, with some kibitzing fromTom Lane
2003-01-29Repair array subscript overrun identified by Yichen Xie. Reduce theTom Lane
2003-01-28Extend join-selectivity API (oprjoin interface) so that join type isTom Lane
2003-01-27Upgrade cost estimation for joins, per discussion with Bradley Baetz.Tom Lane
2003-01-25Allow the planner to collapse explicit inner JOINs together, rather thanTom Lane
2003-01-25Where available, use utime() or utimes() to update the file mod timeTom Lane
2003-01-24Modify planner's implied-equality-deduction code so that when a setTom Lane
2003-01-23Grant options, and cascading revoke. Grant options are allowed only forPeter Eisentraut
2003-01-23Change CREATE TABLE AS / SELECT INTO to create the new table with OIDs,Tom Lane
2003-01-21Fix coredump problem in plpgsql's RETURN NEXT. When a SELECT INTOTom Lane
2003-01-20IN clauses appearing at top level of WHERE can now be handled as joins.Tom Lane
2003-01-17Fix parse_agg.c to detect ungrouped Vars in sub-SELECTs; remove codeTom Lane
2003-01-17Adjust API of expression_tree_mutator and query_tree_mutator toTom Lane
2003-01-16Add code to print information about a detected deadlock cycle. TheTom Lane
2003-01-16Repair an embarrassingly large number of alphabetization mistakes in theTom Lane
2003-01-15Now that switch_outer processing no longer relies on being run afterTom Lane
2003-01-15Allow merge and hash joins to occur on arbitrary expressions (anything notTom Lane
2003-01-13Reconsider mechanism for marking sub-selects that are at top level ofTom Lane
2003-01-12Revise cost_qual_eval() to compute both startup (one-time) and per-tupleTom Lane
2003-01-12Replace RelidGetNamespaceId() by get_rel_namespace().Peter Eisentraut
2003-01-12First cut at implementing IN (and NOT IN) via hashtables. There isTom Lane
2003-01-10Create a new file executor/execGrouping.c to centralize utility routinesTom Lane
2003-01-10Read-only transactions, as defined in SQL.Peter Eisentraut
2003-01-10Further tweaking of parsetree & plantree representation of SubLinks.Tom Lane
2003-01-09Adjust parser so that 'x NOT IN (subselect)' is converted toTom Lane
2003-01-09Move new typedef AclId into c.h, so as to avoid cluttering namespaceTom Lane
2003-01-09Remove bit.c/h routines. Not used anymore.Bruce Momjian
2003-01-09Add missing pg_proc entry for interval_scale(). The lack of this entryTom Lane
2003-01-08Repair bug noticed by Deepak Bhole: a shell type should have a dependencyTom Lane
2003-01-08Fix for bug #866. 7.3 contains new logic for avoiding redundant calls toTom Lane
2003-01-07Apply the proper version of Christopher Kings-Lynne's describe patchTom Lane
2003-01-06Use our own version of getopt_long() if the OS doesn't have one.Peter Eisentraut
2003-01-06Fix for systems that don't have INET_ADDRSTRLEN.Peter Eisentraut
2003-01-06Update comments on IPv6 #define.Bruce Momjian
2003-01-06Update ipv6 comment, move configure test to the right placeBruce Momjian
2003-01-06Add prototype for getaddrinfo().Bruce Momjian
2003-01-06Enable IPv6 connections to the server, and add pg_hba.conf IPv6 entriesBruce Momjian
2003-01-06ALTER DOMAIN OWNER, from Rod Taylor.Tom Lane
2003-01-01Awhile back I wrote that freebsd.h was probably broken in the places whereTom Lane
2002-12-30Adjust Tcl-related code to compile cleanly with Tcl 8.4 (add const modifiers asTom Lane
2002-12-30Code review for CLUSTER ALL patch. Fix bogus locking, incorrect transactionTom Lane