- 21 Mar, 2002 9 commits
-
-
Tom Lane authored
the parsetree representation. As yet we don't *do* anything with schema names, just drop 'em on the floor; but you can enter schema-compatible command syntax, and there's even a primitive CREATE SCHEMA command. No doc updates yet, except to note that you can now extract a field from a function-returning-row's result with (foo(...)).fieldname.
-
Peter Eisentraut authored
Report from Ryan Murray via Debian
-
Michael Meskes authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Dave Cramer authored
these versions adhere to the backend protocol better than previous version fixes problem when an error occurs on the backend, and the connection is still used previous versions were throwing an exception half way through the protocol, leaving it indeterminate. also removes empty query code, should speed things up a bit
-
Dave Cramer authored
QueryExecutor. This includes: 1) only exit after we receive a 'Z' packet 2) append error messages to a buffer and throw the exception at the end
-
Dave Cramer authored
-
Dave Cramer authored
* Introduces a new class, StartupPacket. * Moves a lot of constants from Connection to StartupPacket. * Makes two instance variables in Connection into locals.
-
- 20 Mar, 2002 4 commits
-
-
Michael Meskes authored
-
Tom Lane authored
-
Tom Lane authored
okay to omit low-order dimensions when accessing an array slice.
-
D'Arcy J.M. Cain authored
compiled with --with-pymalloc. This change fixes that. Thanks to Dave Wallace <dwallace@udel.edu>
-
- 19 Mar, 2002 20 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> > to perform sql command: > > update pg_amop set amopreqcheck = true where amopclaid = > > (select oid from pg_opclass where opcname = 'gist_txtidx_ops'); > > Oleg, sorry, I don't understand where this should appear. In the README > file, and if so, where? Is this something only for people upgrading > from 7.2? Sorry Bruce, I was unclear. I have attached patch to Readme.tsearch Also, It'd be worth to mention in Changes to point users of tsearch about importang upgrade notices. Oleg Bartunov
-
Bruce Momjian authored
> > to perform sql command: > > update pg_amop set amopreqcheck = true where amopclaid = > > (select oid from pg_opclass where opcname = 'gist_txtidx_ops'); > > Oleg, sorry, I don't understand where this should appear. In the README > file, and if so, where? Is this something only for people upgrading > from 7.2? Sorry Bruce, I was unclear. I have attached patch to Readme.tsearch Also, It'd be worth to mention in Changes to point users of tsearch about importang upgrade notices. Oleg Bartunov
-
D'Arcy J.M. Cain authored
-
D'Arcy J.M. Cain authored
-
Bruce Momjian authored
feature. I'll do ALTER TABLE / DROP CONSTRAINT next... Christopher Kings-Lynne
-
Bruce Momjian authored
Neil Conway
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Add domain capability [domain] (Rod Taylor)
-
Bruce Momjian authored
-
Bruce Momjian authored
in the current code, the authentication logic (check user, check the relation we're operating on, etc) is done in tcop/utility.c, whereas the actual TRUNCATE command in done in TruncateRelation() in commands/createinh.c (which is really just a wrapper over heap_truncate() in catalog/heap.c). This patch moves the authentication logic into TruncateRelation(), as well as making some minor code cleanups. Neil Conway
-
Bruce Momjian authored
* We should not even consider checking the row if it is no longer * valid since it was either deleted (doesn't matter) or updated * (in which case it'll be checked with its final values). Stephan Szabo
-
Bruce Momjian authored
> Korean (JOHAB), Thai (WIN874), > Vietnamese (TCVN), Arabic (WIN1256) > >Added ClientEncoding > Simplified Chinese (GBK), Korean (UHC) > >Add PsqlODBC and document ...etc patch. "JDBC patch" is delivered, too. :-) Eiji Tokuya
-
Bruce Momjian authored
> > I am running Python 1.5. Therein lies the problem... :) Since it appears you have the requirement of supporting old python versions, attached is just the pgdb.py part of the patch (with a fix for DateTime handling). It has the same functionality but certainly won't be quite as fast. Given the absence of _PyString_Join in python1.5, it's a pain to get the C variants working for all versions. The pgdb.py patch does leaves the hooks in, should someone wish to do the optimization at a later point. Elliot Lee
-
Bruce Momjian authored
-
Bruce Momjian authored
Rod Taylor.
-
Dave Cramer authored
If one is trying to compile a JDBC 1 driver and junit.jar is in the CLASSPATH, then the build fails as ant tries to build the JDBC 2 test classes. This patch fixes this problem by excluding the jdbc 2 files unless the jdk1.2+ property is set.
-
Bruce Momjian authored
This one better describes the problem. heap.c needs to be updated to include 'Hard coded badness' for that table. -- Rod Taylor
-
Bruce Momjian authored
Ensure that sequence counters do not go backwards after a crash
-
- 18 Mar, 2002 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Dave Cramer authored
code before QueryExecutor class was created and copied behaviour
-
- 17 Mar, 2002 1 commit
-
-
Tom Lane authored
-
- 16 Mar, 2002 2 commits
-
-
Tom Lane authored
before a data item is now always skipped, rather than only sometimes. Backslashes not within double-quoted text are treated reasonably, as are multiple sequences of quoted text in a single data item. But it still seems rather prone to misbehavior if the input is not completely syntactically correct --- in particular, garbage following a right brace will be ignored.
-
Dave Cramer authored
previously it was throwing a SQLException as soon as the error message was received from the backend. This did not allow the protocol to finish properly now, simply collects error messages from the backend until the query is done and throws exception at the end Also added setLogLevel to Driver.java, and made the log levels public
-
- 15 Mar, 2002 1 commit
-
-
Bruce Momjian authored
Meskes. These files are not touched by pgindent so this has to be manually done.
-