- Dec 20, 2002
-
-
Bruce Momjian authored
-
- Dec 18, 2002
-
-
Bruce Momjian authored
> I'm not objecting to improving the text. I am objecting to deleting it > outright... Ok, fair enough. I've attached a revised version of the patch -- let me know you think it needs further improvements. Neil Conway
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Ian Barwick
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Dec 17, 2002
-
-
Bruce Momjian authored
Neil Conway
-
- Dec 16, 2002
-
-
Tom Lane authored
-
Bruce Momjian authored
-
- Dec 14, 2002
-
-
Peter Eisentraut authored
-
- Dec 13, 2002
-
-
Bruce Momjian authored
libpq feature. Neil Conway
-
- Dec 12, 2002
-
-
Bruce Momjian authored
> > In pg.py the attributes of DB are defined as being the same as > the attributes of the corresponding pgobject "db", using the following ... > The problem is that the attributes of db (which are read only) > are not static (they are actually function calls to PostgreSQL), > especially "status" and "error", but those attributes are copied > and this is done only once when initializing the DB object. > > So, in effect, only the attribute "db.error" of a DB instance > will be updated, but not the attribute "error". Same with "status". > Don't copy the (read only) attributes of the pgobject to the > DB object, but only the methods, and all of them, like this: > > --------------- change in pg.py ------------------ > # Create convience methods, in a way that is still overridable. > for e in self.db.__methods__: > setattr(self, e, getattr(self.db, e)) > ---------------------------------------------------- > > Furthermore, make an addition to the documentation of the > DB wrapper class (i.e. in pygresql-pg-db.html): > After the sentence "All pgobject methods are included in this class also." > add the following sentence "The pgobject read-only attributes can be > accessed py adding the prefix 'db.' to them." Christoph Zwerschke
-
Bruce Momjian authored
* Add schema, cast, and conversion backslash commands to psql I had to create a new publically available function, pg_conversion_is_visible, as it seemed to be missing from the catalogs. This required me to do no small amount of hacking around in namespace.c I have updated the \? help and sgml docs. \dc - list conversions [PATTERN] \dC - list casts \dn list schemas I didn't support patterns with casts as there's nothing obvious to match against. Catalog version incremented --- initdb required. Christopher Kings-Lynne
-
Bruce Momjian authored
> * -Add schema, cast, and conversion backslash commands to psql (Christopher)
-
Tom Lane authored
make VALUE a non-reserved word again, use less invasive method of passing ConstraintTestValue into transformExpr, fix problems with nested constraint testing, do correct thing with NULL result from a constraint expression, remove memory leak. Domain checks still need much more work if we are going to allow ALTER DOMAIN, however.
-
Bruce Momjian authored
> o Compression?
-
- Dec 11, 2002
-
-
Bruce Momjian authored
template/sco updated.
-
- Dec 10, 2002
-
-
Bruce Momjian authored
> > * Wire Protocol Changes > o Show transaction status in psql > o Allow binding of query parameters, support for prepared queries > o Add optional textual message to NOTIFY > o Remove hard-coded limits on user/db/password names > o Remove unused elements of startup packet (unused, tty, passlength) > o Fix COPY/fastpath protocol? > o Replication support? > o Error codes > o Dynamic character set handling > o Special passing of binary values in platform-neutral format (bytea?) > o ecpg improvements? > o Add decoded type, length, precision
-
Bruce Momjian authored
doc/src/sgml/runtime.sgml Neil Conway
-
- Dec 09, 2002
-
-
Bruce Momjian authored
"OS/X". Neil Conway
-
Bruce Momjian authored
> * Add ROLLUP, CUBE, GROUPING SETS options to GROUP BY
-
- Dec 06, 2002
-
-
Bruce Momjian authored
to domain when copying alter table docs. -- Rod Taylor <rbt@rbt.ca>
-
Bruce Momjian authored
documentation and regression test mods. It seemed small and unobtrusive enough to not require a specific proposal on the hackers list -- but if not, let me know and I'll make a pitch. Otherwise, if there are no objections please apply. Joe Conway
-
Bruce Momjian authored
Jeff Davis
-
Bruce Momjian authored
Neil Conway
-
Bruce Momjian authored
Joseph Shraibman
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
ALTER DOMAIN .. SET / DROP DEFAULT ALTER DOMAIN .. ADD / DROP CONSTRAINT New files: - doc/src/sgml/ref/alter_domain.sgml Rod Taylor
-
Bruce Momjian authored
Rod Taylor
-
- Dec 05, 2002
-
-
Bruce Momjian authored
> * Add SQL99 WITH clause to SELECT (Tom, Fernando) > * Add SQL99 WITH RECURSIVE to SELECT (Tom, Fernando) 443a444 > * Fernando Nasser <fnasser@redhat.com>
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Dec 04, 2002
-
-
Bruce Momjian authored
Shraibman.
-
Bruce Momjian authored
> * Add ALTER SEQUENCE to modify min/max/increment/cache/cycle values
-