Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make sure the $Id tags are converted to $PostgreSQL as well ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| | |||||
* | - Corrections for tables, columns with uppercase characters | Bruce Momjian | 2003-06-25 | 2 | -31/+95 |
| | | | | | | | | | | | | | | | | | | | | | | | - Don't attempt to convert partial or expressional unique indexes - Don't attempt to convert unique indexes based on a non-default opclasses - Untested prevention of conversion of non-btree indexes unique indexes. Untested as postgresql doesn't allow hash, gist, or rtree based indexes to be unique. rbt=# create unique index t on a using hash (col); ERROR: DefineIndex: access method "hash" does not support UNIQUE indexes rbt=# create unique index t on a using gist (col); ERROR: DefineIndex: access method "gist" does not support UNIQUE indexes rbt=# select version(); version ------------------------------------------------------------------------ PostgreSQL 7.4devel on i386-unknown-freebsd4.8, compiled by GCC 2.95.4 Rod Taylor | ||||
* | Backend support for autocommit removed, per recent discussions. The | Tom Lane | 2003-05-14 | 1 | -9/+2 |
| | | | | | | only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq. | ||||
* | Fix script name in README. | Tom Lane | 2002-12-02 | 1 | -1/+1 |
| | |||||
* | Fix dependency generation for multicolumn foreign keys. From Adam Buraczewski. | Tom Lane | 2002-12-02 | 1 | -2/+2 |
| | |||||
* | Update /contrib for "autocommit TO 'on'". | Bruce Momjian | 2002-10-18 | 1 | -1/+15 |
| | | | | | | | | | | Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs. | ||||
* | Add 'adddepend' script to handle pre-7.3 object dependencies. | Bruce Momjian | 2002-09-18 | 2 | -0/+598 |