mirror of
https://github.com/postgres/postgres.git
synced 2025-08-18 12:22:09 +03:00
The following uuencoded, gzip'd file will ...
1. Remove the char2, char4, char8 and char16 types from postgresql 2. Change references of char16 to name in the regression tests. 3. Rename the char16.sql regression test to name.sql. 4. Modify the regression test scripts and outputs to match up. Might require new regression.{SYSTEM} files... Darren King
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_index.l,v 1.8 1998/01/11 22:17:14 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_index.l,v 1.9 1998/03/30 17:25:50 momjian Exp $
|
||||
.TH "CREATE INDEX" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
create index - construct a secondary index
|
||||
@@ -99,26 +99,6 @@ btree |bpchar_ops |<=
|
||||
btree |bpchar_ops |=
|
||||
btree |bpchar_ops |>
|
||||
btree |bpchar_ops |>=
|
||||
btree |char16_ops |<
|
||||
btree |char16_ops |<=
|
||||
btree |char16_ops |=
|
||||
btree |char16_ops |>
|
||||
btree |char16_ops |>=
|
||||
btree |char2_ops |<
|
||||
btree |char2_ops |<=
|
||||
btree |char2_ops |=
|
||||
btree |char2_ops |>
|
||||
btree |char2_ops |>=
|
||||
btree |char4_ops |<
|
||||
btree |char4_ops |<=
|
||||
btree |char4_ops |=
|
||||
btree |char4_ops |>
|
||||
btree |char4_ops |>=
|
||||
btree |char8_ops |<
|
||||
btree |char8_ops |<=
|
||||
btree |char8_ops |=
|
||||
btree |char8_ops |>
|
||||
btree |char8_ops |>=
|
||||
btree |char_ops |<
|
||||
btree |char_ops |<=
|
||||
btree |char_ops |=
|
||||
@@ -200,10 +180,6 @@ btree |varchar_ops|=
|
||||
btree |varchar_ops|>
|
||||
btree |varchar_ops|>=
|
||||
hash |bpchar_ops |=
|
||||
hash |char16_ops |=
|
||||
hash |char2_ops |=
|
||||
hash |char4_ops |=
|
||||
hash |char8_ops |=
|
||||
hash |char_ops |=
|
||||
hash |date_ops |=
|
||||
hash |float4_ops |=
|
||||
@@ -254,7 +230,7 @@ The operator classes
|
||||
.IR oidint2_ops ,
|
||||
.IR oidint4_ops ,
|
||||
and
|
||||
.IR oidchar16_ops
|
||||
.IR oidname_ops
|
||||
represent the use of
|
||||
.IR "functional indices"
|
||||
to simulate multi-key indices.
|
||||
@@ -300,7 +276,7 @@ create index empindex on emp using btree (age int4_ops)
|
||||
--Create a btree index on employee name.
|
||||
--
|
||||
create index empname
|
||||
on emp using btree (name char16_ops)
|
||||
on emp using btree (name name_ops)
|
||||
.fi
|
||||
.nf
|
||||
--
|
||||
|
Reference in New Issue
Block a user