diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-14 18:08:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-14 18:08:15 +0000 |
commit | 22c4caef12a43e2815bbbd4816d9da8b065fba9b (patch) | |
tree | daa0167756222f149efaa537c7ee049d784bf255 /src | |
parent | 4e1ed3da9b3be389875f63e6c5656856290a72b3 (diff) | |
download | postgresql-22c4caef12a43e2815bbbd4816d9da8b065fba9b.tar.gz postgresql-22c4caef12a43e2815bbbd4816d9da8b065fba9b.zip |
Add text(cidr) cast, per recent discussion. I'm not bothering to
force an initdb for this.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_cast.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/catalog/pg_cast.h b/src/include/catalog/pg_cast.h index d2894d926f4..ed6834c6683 100644 --- a/src/include/catalog/pg_cast.h +++ b/src/include/catalog/pg_cast.h @@ -7,7 +7,7 @@ * * Copyright (c) 2002, PostgreSQL Global Development Group * - * $Id: pg_cast.h,v 1.5 2002/10/14 22:12:49 tgl Exp $ + * $Id: pg_cast.h,v 1.6 2003/05/14 18:08:15 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -261,6 +261,7 @@ DATA(insert ( 701 25 840 i )); DATA(insert ( 25 701 838 e )); DATA(insert ( 829 25 752 e )); DATA(insert ( 25 829 767 e )); +DATA(insert ( 650 25 730 e )); DATA(insert ( 869 25 730 e )); DATA(insert ( 25 869 1713 e )); DATA(insert ( 1082 25 749 i )); |