- 25 Mar, 2002 4 commits
-
-
Bruce Momjian authored
< * Automatically make a view temporary if it uses a temporary table > * Require view using temporary tables to be temporary views
-
Tom Lane authored
-
Bruce Momjian authored
> o Fix problems with complex temporary table creation/destruction > without using PL/PgSQL EXECUTE
-
Bruce Momjian authored
-
- 24 Mar, 2002 5 commits
-
-
Bruce Momjian authored
> * Automatically make a view temporary if it uses a temporary table
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
Also, fix debug logging of parse/plan trees so that the messages actually go through elog(), not directly to stdout.
-
- 22 Mar, 2002 4 commits
-
-
Tom Lane authored
there and CREATE SCHEMA will make entries in it...
-
Tom Lane authored
-
Peter Eisentraut authored
-
Tom Lane authored
addRangeTableEntry calls. Remove relname field from RTEs, since it will no longer be a useful unique identifier of relations; we want to encourage people to rely on the relation OID instead. Further work on dumping qual expressions in EXPLAIN, too.
-
- 21 Mar, 2002 11 commits
-
-
Tom Lane authored
objects to be privilege-checked. Some change in their APIs would be necessary no matter what in the schema environment, and simply getting rid of the name-based interface entirely seems like the best way.
-
Tom Lane authored
-
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 12 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
-