- 04 Jul, 2003 7 commits
-
-
Tom Lane authored
this is merely an API inconsistency, but in ecpg it's fatal.) Also, fix misconceived overflow test in HAVE_INT64_TIMESTAMP case.
-
Tom Lane authored
-
Tom Lane authored
without needing a running backend. Reorder postgresql.conf.sample to match new layout of runtime.sgml. This commit re-adds work lost in Wednesday's crash.
-
Tom Lane authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Tom Lane authored
function-not-found messages now distinguish the cases no-match and ambiguous-match, and they follow the style guidelines too.
-
- 03 Jul, 2003 3 commits
-
-
Tom Lane authored
integer conversions gave the wrong answer for values with stripped trailing zeroes, such as 10000000.
-
Tom Lane authored
instead of the former kluge whereby gram.y emitted already-transformed expressions. This is needed so that Params appearing in these clauses actually work correctly. I suppose some might claim that the side effect of 'SELECT ... LIMIT 2+2' working is a new feature, but I say this is a bug fix.
-
Tom Lane authored
so it has some chance of working in rules ...
-
- 02 Jul, 2003 1 commit
-
-
Michael Meskes authored
-
- 01 Jul, 2003 11 commits
-
-
Tom Lane authored
linked-list search of function cache with hash-table lookup. By Joe Conway.
-
Bruce Momjian authored
-
Tom Lane authored
It also works to create a non-polymorphic aggregate from polymorphic functions, should you want to do that. Regression test added, docs still lacking. By Joe Conway, with some kibitzing from Tom Lane.
-
Tom Lane authored
takes only a few more lines of code than preventing it, so might as well support it.
-
Tom Lane authored
-
Tom Lane authored
-
Michael Meskes authored
Applied patch by Philip Yarra to fix some thread issues. Added a new data type "decimal" which is mostly the same as our "numeric" but uses a fixed length array to store the digits. This is for compatibility with Informix and maybe others.
-
Tom Lane authored
a SQL function with polymorphic inputs, we can at least run the raw parser to catch silly syntactic errors.
-
Peter Eisentraut authored
-
Tom Lane authored
ANYELEMENT. The effect is to postpone typechecking of the function body until runtime. Documentation is still lacking. Original patch by Joe Conway, modified to postpone type checking by Tom Lane.
-
Peter Eisentraut authored
-
- 30 Jun, 2003 7 commits
-
-
Dave Cramer authored
getByte, getSort if input has decimal or whitespace setObject if object is a BIT boolean not on list of SQLKeywords
-
Tom Lane authored
to build.
-
Tom Lane authored
-
Tom Lane authored
now-untrusted status.
-
Tom Lane authored
reports get put into the postmaster log. Options are TERSE, DEFAULT, VERBOSE, with the same behavior as implemented on the client side in libpq.
-
Barry Lind authored
Modified Files: sgml/jdbc.sgml
-
Barry Lind authored
1) Patch from Kris Jurka to fix IPv6 parsing of the jdbc URL 2) Patch from Kris Jurka to fix an ArrayIndexOutOfBounds error when calling moveToCurrentRow while currentRow is "beforeFirst" 3) Patch from Kim Ho to fix add some bounds checking in setMaxRows(), setQueryTimeout(), setFetchSize() Modified Files: jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/errors.properties jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
-
- 29 Jun, 2003 7 commits
-
-
Tom Lane authored
node emits only those vars that are actually needed above it in the plan tree. (There were comments in the code suggesting that this was done at some point in the dim past, but for a long time we have just made join nodes emit everything that either input emitted.) Aside from being marginally more efficient, this fixes the problem noted by Peter Eisentraut where a join above an IN-implemented-as-join might fail, because the subplan targetlist constructed in the latter case didn't meet the expectation of including everything. Along the way, fix some places that were O(N^2) in the targetlist length. This is not all the trouble spots for wide queries by any means, but it's a step forward.
-
Michael Meskes authored
fixed amount of digits and not an allocated one. So we have to work around. PostgreSQL numeric type remains the same. - In INFORMIX_SE mode with autcommit set, make all cursors be "with hold". Is this really they way SE behaves?
-
Peter Eisentraut authored
privileges.
-
Peter Eisentraut authored
mentioned bug.
-
Peter Eisentraut authored
-
Michael Meskes authored
-
Tom Lane authored
'scalar op ALL (array)', where the operator is applied between the lefthand scalar and each element of the array. The operator must yield boolean; the result of the construct is the OR or AND of the per-element results, respectively. Original coding by Joe Conway, after an idea of Peter's. Rewritten by Tom to keep the implementation strictly separate from subqueries.
-
- 28 Jun, 2003 4 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
The view element_types is currently not functional, awaiting some fixes in the planner (reported on -hackers).
-
Bruce Momjian authored
> * Automatically place fixed-width, NOT NULL columns first in a table
-
Bruce Momjian authored
-