Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-13 | Fix typo in _copyAlterUserSetStmt. | Tom Lane | |
2002-05-13 | Make operators have their own comments separate from those of the | Tom 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-12 | Get rid of long-since-vestigial Iter node type, in favor of adding a | Tom 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-12 | First pass at set-returning-functions in FROM, by Joe Conway with | Tom 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-11 | Forgot to handle 'opaque' function arguments in regprocedurein/out. | Tom Lane | |
2002-05-10 | First pass at schema-fying pg_dump/pg_restore. Much to do still, | Tom Lane | |
but the basic capability seems to work. | |||
2002-05-10 | Suppress duplicate logging of utility commands under debug_print_query. | Tom Lane | |
2002-05-09 | Make 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-09 | Add a file for version control. | Hiroshi Inoue | |
2002-05-06 | Accept SET SESSION AUTHORIZATION DEFAULT and RESET SESSION AUTHORIZATION | Tom 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-06 | Make dumpACL behave more reasonably for case where owner has revoked | Tom Lane | |
some of his own privileges. | |||
2002-05-06 | Cause 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-06 | Reorder 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-05 | A little paranoia never hurt anyone. | Tom Lane | |
2002-05-05 | plpgsql_dstring_append was broken for long strings. | Tom Lane | |
2002-05-05 | Not needed anymore. | Tom Lane | |
2002-05-05 | Add missing includes. | Tom Lane | |
2002-05-05 | Add a trivial testbed for pg_sema and pg_shmem code. | Tom Lane | |
2002-05-05 | Cope with case that SEM_FAILED is not defined (assume failure code is -1) | Tom Lane | |
2002-05-05 | First test of Darwin port with POSIX semaphore code. | Tom Lane | |
2002-05-05 | Fix code to work when isalpha and friends are macros, not functions. | Tom Lane | |
2002-05-05 | Create 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-03 | Fix compile errors in CYR_RECODE code, per report from Oliver Elphick. | Tom Lane | |
2002-05-03 | Make ruleutils.c schema-aware. Displayed names are schema-qualified | Tom Lane | |
only if they would not be found without qualification given the current search path, as per idea from Peter Eisentraut. | |||
2002-05-03 | Fix obsolete comments. | Tom Lane | |
2002-05-03 | Use quote_identifier on relation names in EXPLAIN output, per suggestion | Tom Lane | |
from Liam Stewart. Minor code cleanups also. | |||
2002-05-03 | Fix typo in usage instructions. | Tom Lane | |
2002-05-03 | Remove the last traces of datatypes datetime and timespan. | Tom Lane | |
2002-05-03 | Retire xlateSqlType/xlateSqlFunc; all type name translations are now | Tom 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-02 | Fix backslash-n typo, per Joe Conway. | Tom Lane | |
2002-05-02 | Tweak scanner/grammar interface so that the keyword-as-identifier rules | Tom 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-01 | Add routines in namespace.c to determine whether objects are visible | Tom 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-01 | Give left_oper() and right_oper() noError parameters like oper() (the | Tom Lane | |
binary case) already has. Needed for upcoming ruleutils change. | |||
2002-05-01 | Improve lexer's error reporting. You get the whole token mentioned now | Tom 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-01 | The attached patch fixes 4 instances of missing simi-colons in the | Jan Wieck | |
PL/PgSQL grammar, which were causing warnings when used with Bison 1.35. Neil Conway <neilconway@rogers.com> | |||
2002-05-01 | Change heap_get_latest_tid() so that a transaction can | Hiroshi Inoue | |
see changes made by the transaction itself. | |||
2002-04-30 | Fix obj_description() and col_description() functions to work reliably | Tom Lane | |
in presence of schemas. | |||
2002-04-30 | Document that NAMEDATALEN must be a multiple of sizeof(int). | Tom Lane | |
2002-04-30 | Clean 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-30 | Code review for ALTER TRIGGER RENAME patch: make better use of index, | Tom Lane | |
don't scribble on tuple returned by table scan. | |||
2002-04-29 | Enforce EXECUTE privilege for aggregate functions. | Tom Lane | |
2002-04-29 | Implement checking of USAGE rights on namespaces. | Tom Lane | |
2002-04-29 | Add cache invalidation callback hooks. | Tom Lane | |
2002-04-29 | Add missing 'static' keyword to suppress compiler complaints. | Tom Lane | |
gcc does not complain about this mistake, but other compilers do. | |||
2002-04-29 | Remove unnecessary/obsolete regproctooid() references. | Tom Lane | |
2002-04-28 | Fix problem with new pg_hba.conf code where the same comparison function | Bruce Momjian | |
was incorrectly used for both qsort and bsearch. | |||
2002-04-28 | Second try at fixing join alias variables. Instead of attaching miscellaneous | Tom 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-28 | Make ruleutils.c use format_type for printing typenames. Minor tweaks | Tom Lane | |
in quoting rules and recognition of implicit type coercions. | |||
2002-04-28 | Minor code cleanup. | Tom Lane | |