- May 13, 2002
-
-
Tom Lane authored
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.
-
Tom Lane authored
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.
-
- May 12, 2002
-
-
Tom Lane authored
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 ...
-
- May 11, 2002
- May 10, 2002
-
-
Tom Lane authored
-
- May 09, 2002
-
-
Peter Eisentraut authored
Re-add warning if the locale prevents LIKE-optimization. Done within initdb now.
-
Hiroshi Inoue authored
-
- May 06, 2002
-
-
Tom Lane authored
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.
-
Tom Lane authored
some of his own privileges.
-
Tom Lane authored
in hopes of making erroneous usage more apparent. Per discussion 15-Apr.
-
Tom Lane authored
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.
-
- May 05, 2002
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
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.
-
- May 03, 2002
-
-
Tom Lane authored
-
Tom Lane authored
only if they would not be found without qualification given the current search path, as per idea from Peter Eisentraut.
-
Tom Lane authored
-
Tom Lane authored
from Liam Stewart. Minor code cleanups also.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
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.
-
- May 02, 2002
-
-
Tom Lane authored
-
Tom Lane authored
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.
-
Tom Lane authored
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.
-
- May 01, 2002
-
-
Tom Lane authored
binary case) already has. Needed for upcoming ruleutils change.
-
Tom Lane authored
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.
-
Jan Wieck authored
PL/PgSQL grammar, which were causing warnings when used with Bison 1.35. Neil Conway <neilconway@rogers.com>
-
Hiroshi Inoue authored
see changes made by the transaction itself.
-
- Apr 30, 2002