OSDN Git Service

Commit of a *MAJOR* patch from Dan McGuirk <djm@indirect.com>
authorMarc G. Fournier <scrappy@hub.org>
Wed, 13 Nov 1996 20:56:15 +0000 (20:56 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Wed, 13 Nov 1996 20:56:15 +0000 (20:56 +0000)
commit07a65b22554d54455de5bc791a48fb0542f48791
tree8320f9bb483ac60e34af929036a1a5a36c19d827
parent0cec8fe26c4c76bcc72b78c194a1aa026748c6dc
Commit of a *MAJOR* patch from Dan McGuirk <djm@indirect.com>

Changes:

        * Unique index capability works using the syntax 'create unique
          index'.

        * Duplicate OID's in the system tables are removed.  I put
          little scripts called 'duplicate_oids' and 'find_oid' in
          include/catalog that help to find and remove duplicate OID's.
          I also moved 'unused_oids' from backend/catalog to
          include/catalog, since it has to be in the same directory
          as the include files in order to work.

        * The backend tries converting the name of a function or aggregate
          to all lowercase if the original name given doesn't work (mostly
          for compatibility with ODBC).

        * You can 'SELECT NULL' to your heart's content.

        * I put my _bt_updateitem fix in instead, which uses
          _bt_insertonpg so that even if the new key is so big that
          the page has to be split, everything still works.

        * All literal references to system catalog OID's have been
          replaced with references to define'd constants from the catalog
          header files.

        * I added a couple of node copy functions.  I think this was a
          preliminary attempt to get rules to work.
45 files changed:
src/backend/access/gist/gist.c
src/backend/access/hash/hash.c
src/backend/access/index/indexam.c
src/backend/access/nbtree/nbtinsert.c
src/backend/access/nbtree/nbtree.c
src/backend/access/nbtree/nbtsearch.c
src/backend/access/rtree/rtree.c
src/backend/bootstrap/bootparse.y
src/backend/catalog/index.c
src/backend/catalog/indexing.c
src/backend/catalog/unused_oids
src/backend/commands/cluster.c
src/backend/commands/copy.c
src/backend/commands/defind.c
src/backend/executor/execMain.c
src/backend/executor/execUtils.c
src/backend/nodes/copyfuncs.c
src/backend/parser/analyze.c
src/backend/parser/catalog_utils.c
src/backend/parser/gram.y
src/backend/parser/keywords.c
src/backend/parser/parse_query.c
src/backend/parser/parser.c
src/backend/storage/large_object/inv_api.c
src/backend/storage/page/bufpage.c
src/backend/tcop/utility.c
src/backend/utils/cache/catcache.c
src/include/access/genam.h
src/include/access/gist.h
src/include/access/hash.h
src/include/access/nbtree.h
src/include/access/rtree.h
src/include/catalog/index.h
src/include/catalog/pg_amop.h
src/include/catalog/pg_amproc.h
src/include/catalog/pg_attribute.h
src/include/catalog/pg_class.h
src/include/catalog/pg_index.h
src/include/catalog/pg_operator.h
src/include/catalog/pg_parg.h
src/include/catalog/pg_proc.h
src/include/catalog/pg_type.h
src/include/commands/defrem.h
src/include/executor/executor.h
src/include/nodes/parsenodes.h