diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-11 21:23:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-11 21:23:26 +0000 |
commit | 1d42f3246a6919d0c07dd2f7218dd8a6afef2f9e (patch) | |
tree | 5e2e02caeb9acb449e663439844b51eb12f30b13 /src | |
parent | 9736e8f95c70bbad603ae568a3a09c74b50d26af (diff) | |
download | postgresql-1d42f3246a6919d0c07dd2f7218dd8a6afef2f9e.tar.gz postgresql-1d42f3246a6919d0c07dd2f7218dd8a6afef2f9e.zip |
Fix thinko in reltime and tinterval operator classes that I added a
couple months ago: the >= and > operators were swapped. Not worth
forcing an initdb for this, but we should get it right in the release.
Will be patched separately in HEAD.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_amop.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/catalog/pg_amop.h b/src/include/catalog/pg_amop.h index bff4b217003..f665d2c7c40 100644 --- a/src/include/catalog/pg_amop.h +++ b/src/include/catalog/pg_amop.h @@ -16,7 +16,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_amop.h,v 1.55 2003/08/17 19:58:06 tgl Exp $ + * $Id: pg_amop.h,v 1.55.2.1 2003/11/11 21:23:26 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -435,8 +435,8 @@ DATA(insert ( 2099 5 f 903 )); DATA(insert ( 2233 1 f 568 )); DATA(insert ( 2233 2 f 570 )); DATA(insert ( 2233 3 f 566 )); -DATA(insert ( 2233 4 f 569 )); -DATA(insert ( 2233 5 f 571 )); +DATA(insert ( 2233 4 f 571 )); +DATA(insert ( 2233 5 f 569 )); /* * btree tinterval_ops @@ -445,8 +445,8 @@ DATA(insert ( 2233 5 f 571 )); DATA(insert ( 2234 1 f 813 )); DATA(insert ( 2234 2 f 815 )); DATA(insert ( 2234 3 f 811 )); -DATA(insert ( 2234 4 f 814 )); -DATA(insert ( 2234 5 f 816 )); +DATA(insert ( 2234 4 f 816 )); +DATA(insert ( 2234 5 f 814 )); /* * btree array_ops |