summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2002-05-13Fix typo in _copyAlterUserSetStmt.Tom Lane
2002-05-13Make operators have their own comments separate from those of theTom Lane
underlying function; but cause psql's \do to show the underlying function's comment if the operator has no comment of its own, to preserve the useful functionality of the original behavior. Also, implement COMMENT ON SCHEMA. Patch from Rod Taylor.
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
returns-set boolean field in Func and Oper nodes. This allows cleaner, more reliable tests for expressions returning sets in the planner and parser. For example, a WHERE clause returning a set is now detected and complained of in the parser, not only at runtime.
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
some kibitzing from Tom Lane. Not everything works yet, and there's no documentation or regression test, but let's commit this so Joe doesn't need to cope with tracking changes in so many files ...
2002-05-11Forgot to handle 'opaque' function arguments in regprocedurein/out.Tom Lane
2002-05-10First pass at schema-fying pg_dump/pg_restore. Much to do still,Tom Lane
but the basic capability seems to work.
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
Re-add warning if the locale prevents LIKE-optimization. Done within initdb now.
2002-05-09Add a file for version control.Hiroshi Inoue
2002-05-06Accept SET SESSION AUTHORIZATION DEFAULT and RESET SESSION AUTHORIZATIONTom Lane
to reset session userid to the originally-authenticated name. Also, relax SET SESSION AUTHORIZATION to allow specifying one's own username even if one is not superuser, so as to avoid unnecessary error messages when loading a pg_dump file that uses this command. Per discussion from several months ago.
2002-05-06Make dumpACL behave more reasonably for case where owner has revokedTom Lane
some of his own privileges.
2002-05-06Cause fmtId to always use its internal buffer for the returned value,Tom Lane
in hopes of making erroneous usage more apparent. Per discussion 15-Apr.
2002-05-06Reorder snapshot checks to save a couple comparisons in the common case,Tom Lane
where the tuple's xmin or xmax is older than the snapshot xmin. There is no need to check it against snapshot xmax in that case.
2002-05-05A little paranoia never hurt anyone.Tom Lane
2002-05-05plpgsql_dstring_append was broken for long strings.Tom Lane
2002-05-05Not needed anymore.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
As proof of concept, provide an alternate implementation based on POSIX semaphores. Also push the SysV shared-memory implementation into a separate file so that it can be replaced conveniently.
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
only if they would not be found without qualification given the current search path, as per idea from Peter Eisentraut.
2002-05-03Fix obsolete comments.Tom Lane
2002-05-03Use quote_identifier on relation names in EXPLAIN output, per suggestionTom Lane
from Liam Stewart. Minor code cleanups also.
2002-05-03Fix typo in usage instructions.Tom 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
handled as special productions. This is needed to keep us honest about user-schema type names that happen to coincide with system type names. Per pghackers discussion 24-Apr. To avoid bloating the keyword list too much, I removed the translations for datetime, timespan, and lztext, all of which were slated for destruction several versions back anyway.
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
in gram.y can make use of the keywords.c string table, instead of having their own copies of the keyword strings. This saves a few kilobytes and more importantly eliminates an opportunity for cut-and-paste errors.
2002-05-01Add routines in namespace.c to determine whether objects are visibleTom Lane
in the search path. (We might want to make these available as SQL functions too, but I haven't done that yet.) Fix format_type to be schema-aware.
2002-05-01Give left_oper() and right_oper() noError parameters like oper() (theTom Lane
binary case) already has. Needed for upcoming ruleutils change.
2002-05-01Improve lexer's error reporting. You get the whole token mentioned nowTom Lane
in parse error messages, not just the part scanned by the last flex rule. For example, select "foo" "bar"; used to draw ERROR: parser: parse error at or near """ which was rather unhelpful. Now it gives ERROR: parser: parse error at or near ""bar"" Also, error messages concerning bitstring literals and suchlike will quote the source text at you, not the processed internal form of the literal.
2002-05-01The attached patch fixes 4 instances of missing simi-colons in theJan Wieck
PL/PgSQL grammar, which were causing warnings when used with Bison 1.35. Neil Conway <neilconway@rogers.com>
2002-05-01Change heap_get_latest_tid() so that a transaction canHiroshi Inoue
see changes made by the transaction itself.
2002-04-30Fix obj_description() and col_description() functions to work reliablyTom Lane
in presence of schemas.
2002-04-30Document that NAMEDATALEN must be a multiple of sizeof(int).Tom Lane
2002-04-30Clean up loose ends remaining from schema privileges discussion.Tom Lane
I concluded that RENAME should require CREATE privilege on the namespace as well as ownership of the table.
2002-04-30Code review for ALTER TRIGGER RENAME patch: make better use of index,Tom Lane
don't scribble on tuple returned by table scan.
2002-04-29Enforce EXECUTE privilege for aggregate functions.Tom Lane
2002-04-29Implement checking of USAGE rights on namespaces.Tom Lane
2002-04-29Add cache invalidation callback hooks.Tom Lane
2002-04-29Add missing 'static' keyword to suppress compiler complaints.Tom Lane
gcc does not complain about this mistake, but other compilers do.
2002-04-29Remove unnecessary/obsolete regproctooid() references.Tom Lane
2002-04-28Fix problem with new pg_hba.conf code where the same comparison functionBruce Momjian
was incorrectly used for both qsort and bsearch.
2002-04-28Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane
lists to join RTEs, attach a list of Vars and COALESCE expressions that will replace the join's alias variables during planning. This simplifies flatten_join_alias_vars while still making it easy to fix up varno references when transforming the query tree. Add regression test cases for interactions of subqueries with outer joins.
2002-04-28 - Synced yet again.Michael Meskes
- Fixed a typo in a comment printed by ecpg.
2002-04-28Make ruleutils.c use format_type for printing typenames. Minor tweaksTom Lane
in quoting rules and recognition of implicit type coercions.
2002-04-28Minor code cleanup.Tom Lane