summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-06-04Allow kerberos name and username case sensitivity to be specified fromBruce Momjian
2005-06-04Tom Lane <tgl@sss.pgh.pa.us> writes:Bruce Momjian
2005-06-04Change expandRTE() and ResolveNew() back to taking just the singleTom Lane
2005-06-04Improve readability of config location params by adding newline.Bruce Momjian
2005-06-04Fix NUMERIC modulus to properly truncate division in computation.Bruce Momjian
2005-06-04Remove unused 'printCost' field from ExplainState, and simplify the codeNeil Conway
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-06-03Just noticed that you can't Query-Cancel a long planner run, becauseTom Lane
2005-06-02Push enable/disable of notify and catchup interrupts all the way downTom Lane
2005-06-02The no-lexer-backup speedup hadn't been there a week before somebodyTom Lane
2005-06-02Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane
2005-06-02Add support for \x hex escapes in backend strings. Octal was alreadyBruce Momjian
2005-06-02Add support for \x hex escapes in COPY.Bruce Momjian
2005-06-01Fix log_statement to properly recognize SELECT INTO and CREATE TABLE ASBruce Momjian
2005-06-01patternsel() was improperly stripping RelabelType from the derivedTom Lane
2005-05-31Add test to WAL replay to verify that xl_prev points back to the previousTom Lane
2005-05-31Fix information_schema for OUT and INOUT parameters.Tom Lane
2005-05-31Teach ruleutils to drill down into RECORD-type Vars in the same wayTom Lane
2005-05-31ParseComplexProjection should make use of expandRecordVariable so thatTom Lane
2005-05-30Document get_call_result_type() and friends; mark TypeGetTupleDesc()Tom Lane
2005-05-30Add support for FUNCTION RTEs to build_physical_tlist(), so that theTom Lane
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-30Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway
2005-05-30Fix longstanding oversight in ruleutils.c: it doesn't regurgitateTom Lane
2005-05-30Change the UNKNOWN type to have an internal representation matchingTom Lane
2005-05-30Skip eval_const_expressions when the query is such that the expressionTom Lane
2005-05-29Avoid unnecessary fetch from pg_shadow in the normal case inTom Lane
2005-05-29Improve LockAcquire API per my recent proposal. All error conditionsTom Lane
2005-05-29Make superuser.c maintain a simple one-entry cache holding the superuserTom Lane
2005-05-29Marginal hack to save a little bit of time in bpcharin() when typmod is -1,Tom Lane
2005-05-29Avoid unnecessary call of rangeTableEntry_used() for the result relationTom Lane
2005-05-29Remove typeidIsValid() checks in can_coerce_type(). These checksTom Lane
2005-05-29expandRTE and get_rte_attribute_type mistakenly always imputed typmod -1Tom Lane
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-28Bgwriter should PANIC if it runs out of memory for pending-fsyncsTom Lane
2005-05-28get_expr_result_type has to be prepared to pull type informationTom Lane
2005-05-27Arrange to cache fmgr lookup information for an index's access methodTom Lane
2005-05-27Display only 9 subsecond digits instead of 10 for time values, forBruce Momjian
2005-05-27Re-order 'else' clause for clarity.Bruce Momjian
2005-05-27Back out part of patch that should be applied later.Bruce Momjian
2005-05-27Fix compile of entab to use stdarg.h. Clean up includes.Bruce Momjian
2005-05-27Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway
2005-05-26Back out:Bruce Momjian
2005-05-26Display only 9 not 10 digits of precision for timestamp values whenBruce Momjian
2005-05-26Adjust datetime parsing to be more robust. We now pass the length of theNeil Conway
2005-05-26Tweak the backend scanner (and psqlscan.l, which must track the backendTom Lane
2005-05-25At the head of wchareq, length of (multibyte) character is compared byBruce Momjian
2005-05-25Add parentheses to macros when args are used in computations. WithoutBruce Momjian
2005-05-24Previous fix for "x FULL JOIN y ON true" failed to handle the caseTom Lane
2005-05-24Inserting 5 characters into char(10) does not produce 5 padding spacesTatsuo Ishii