From: Tom Lane Date: Tue, 11 Nov 2003 21:23:26 +0000 (+0000) Subject: Fix thinko in reltime and tinterval operator classes that I added a X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9d0bb5ad05c1c8d1594d8006cb1a3036c1f34bc3;p=users%2Fbernd%2Fpostgres.git 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. --- diff --git a/src/include/catalog/pg_amop.h b/src/include/catalog/pg_amop.h index 77e74935bb..5293f7e4dd 100644 --- a/src/include/catalog/pg_amop.h +++ b/src/include/catalog/pg_amop.h @@ -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