- 14 Jan, 2003 4 commits
-
-
Barry Lind authored
the code would only capture milliseconds where as both postgres and the java Timestamp object support greater resolution. Also fixed a bug reported by Rhett Sutphin where the last digit of the fractional seconds was lost when using timestamp without time zone Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java jdbc/org/postgresql/test/jdbc2/TimestampTest.java
-
Barry Lind authored
Modified Files: jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java jdbc/org/postgresql/test/jdbc2/optional/BaseDataSourceTest.java
-
Barry Lind authored
Use explicit joins to avoid using the genetic query optimizer. Also fixed a regression test that was failing to compile. This change also cleans up how key names are reported as per: A change to the value of the FK_NAME column. Currently the returned value is the triggers arguments which look like "<unnamed>\000t2\000t1\000UNSPECIFIED\000a\000a\000" This was required for server versions < 7.3 when a user did not supply constraint names. Every constraint was named "<unnamed>" . 7.3 has enforced unique constraint names per table so unnamed foreign keys will have different names "$1", "$2" and so on. I've used logic along the lines of the following to preserve the unique names in the original scheme, but allow people who go to the trouble of naming their constraints to see them: if (triggerargs.startsWith("<unnamed>")) { fkname = [the whole ugly trigger args name originally used]; } else { fkname = [the actual fk name]; } Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/test/jdbc2/optional/ConnectionPoolTest.java
-
Bruce Momjian authored
> o Allow PL/PgSQL to support array element assignment
-
- 13 Jan, 2003 7 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
source tree.
-
Tom Lane authored
a qualification clause (and hence can get away with being sloppy about distinguishing FALSE from UNKNOWN). We need to know this in subselect.c; marking the subplans in setrefs.c is too late.
-
Hiroshi Inoue authored
even when cast functions are allowed to be volatile.
-
Bruce Momjian authored
-
Tom Lane authored
HAVING quals. Normally this is an insignificant effect --- but it will not be insignificant when these clauses contain sub-selects. The added costs cannot affect the planning of the query containing them, but they might have an impact when the query is a sub-query of a larger one.
-
Tom Lane authored
SubPlan nodes, else explaining queries containing sublinks may fail.
-
- 12 Jan, 2003 10 commits
-
-
Tom Lane authored
costs for expression evaluation, not only per-tuple cost as before. This extension is needed in order to deal realistically with hashed or materialized sub-selects.
-
Tom Lane authored
ExecAssignResultTypeFromTL().
-
Tom Lane authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
more to be done yet, but this is a good start.
-
Bruce Momjian authored
-
- 11 Jan, 2003 10 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
supported.
-
Tom Lane authored
direction on HP-UX; our former approach has been obsolete since HPUX 9. Giles Lean
-
Bruce Momjian authored
-
Tatsuo Ishii authored
-
Bruce Momjian authored
> > I'd suggest that the runtime.sgml description explicitly say "values of > at least a few thousand are recommended for production installations". Neil Conway
-
Bruce Momjian authored
Manfred Koizar
-
Bruce Momjian authored
RELEASE_CHANGES. Manfred Koizar
-
Bruce Momjian authored
SET_TRANSACTION.
-
Peter Eisentraut authored
-
- 10 Jan, 2003 7 commits
-
-
Tom Lane authored
shared by nodeGroup, nodeAgg, and soon nodeSubplan.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
command with arguments.
-
Tom Lane authored
Simplify SubLink by storing just a List of operator OIDs, instead of a list of incomplete OpExprs --- that was a bizarre and bulky choice, with no redeeming social value since we have to build new OpExprs anyway when forming the plan tree.
-
Peter Eisentraut authored
Currently, only RESTRICT is allowed.
-
Peter Eisentraut authored
-
- 09 Jan, 2003 2 commits
-
-
Tom Lane authored
'NOT (x IN (subselect))', that is 'NOT (x = ANY (subselect))', rather than 'x <> ALL (subselect)' as we formerly did. This opens the door to optimizing NOT IN the same way as IN, whereas there's no hope of optimizing the expression using <>. Also, convert 'x <> ALL (subselect)' to the NOT(IN) style, so that the optimization will be available when processing rules dumped by older Postgres versions. initdb forced due to small change in SubLink node representation.
-
Tom Lane authored
-