summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2002-05-22Un-break table creation.Tom Lane
2002-05-22AllowHiroshi Inoue
2002-05-21Since COPY fires triggers, it seems like a good idea for it to useTom Lane
2002-05-21Remove SetQuerySnapshot() from FETCH processing. No longer necessaryTom Lane
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-05-19Reorder keyword token declarations alphabetically. Status of the keywordsPeter Eisentraut
2002-05-18Add display of sort keys to the default EXPLAIN output.Tom Lane
2002-05-18Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan toTom Lane
2002-05-18Revise command completion tags as per hackers message on 20 March.Peter Eisentraut
2002-05-18Allow functions to be executed with the privileges of the function owner.Peter Eisentraut
2002-05-18Change set_plan_references and join_references to take an rtable ListTom Lane
2002-05-18Add missing fix_expr_references() step for the funcexpr of aTom Lane
2002-05-17Get rid of the last few uses of typeidTypeName() rather thanTom Lane
2002-05-17Support temporary setting of search path during CREATE SCHEMA; thisTom Lane
2002-05-17Dept. of second thoughts: interaction between DoIt and makeDependTom Lane
2002-05-17Extend syntax of CREATE FUNCTION to resemble SQL99.Peter Eisentraut
2002-05-17Merge the last few variable.c configuration variables into the genericTom Lane
2002-05-14Remove unnecessary pfree's in geometric operators. At least one of theseTom Lane
2002-05-14Fix lookup tables used for rounding interval data values when not usingThomas G. Lockhart
2002-05-14Make regression tests locale-proof by setting some locale categoriesPeter Eisentraut
2002-05-13Fix typo in _copyAlterUserSetStmt.Tom Lane
2002-05-13Make operators have their own comments separate from those of theTom Lane
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-05-11Forgot to handle 'opaque' function arguments in regprocedurein/out.Tom Lane
2002-05-10Suppress duplicate logging of utility commands under debug_print_query.Tom Lane
2002-05-09Make initdb print a message about which locale it is about to use.Peter Eisentraut
2002-05-06Accept SET SESSION AUTHORIZATION DEFAULT and RESET SESSION AUTHORIZATIONTom Lane
2002-05-06Reorder snapshot checks to save a couple comparisons in the common case,Tom Lane
2002-05-05A little paranoia never hurt anyone.Tom Lane
2002-05-05Add missing includes.Tom Lane
2002-05-05Add a trivial testbed for pg_sema and pg_shmem code.Tom Lane
2002-05-05Cope with case that SEM_FAILED is not defined (assume failure code is -1)Tom Lane
2002-05-05First test of Darwin port with POSIX semaphore code.Tom Lane
2002-05-05Fix code to work when isalpha and friends are macros, not functions.Tom Lane
2002-05-05Create an internal semaphore API that is not tied to SysV semaphores.Tom Lane
2002-05-03Fix compile errors in CYR_RECODE code, per report from Oliver Elphick.Tom Lane
2002-05-03Make ruleutils.c schema-aware. Displayed names are schema-qualifiedTom Lane
2002-05-03Fix obsolete comments.Tom Lane
2002-05-03Use quote_identifier on relation names in EXPLAIN output, per suggestionTom Lane
2002-05-03Remove the last traces of datatypes datetime and timespan.Tom Lane
2002-05-03Retire xlateSqlType/xlateSqlFunc; all type name translations are nowTom Lane
2002-05-02Fix backslash-n typo, per Joe Conway.Tom Lane
2002-05-02Tweak scanner/grammar interface so that the keyword-as-identifier rulesTom Lane
2002-05-01Add routines in namespace.c to determine whether objects are visibleTom Lane
2002-05-01Give left_oper() and right_oper() noError parameters like oper() (theTom Lane
2002-05-01Improve lexer's error reporting. You get the whole token mentioned nowTom Lane
2002-05-01Change heap_get_latest_tid() so that a transaction canHiroshi Inoue
2002-04-30Clean up loose ends remaining from schema privileges discussion.Tom Lane