OSDN Git Service

Repair unforgivably brain-dead representation of CaseExpr nodes in
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 16 Jun 2000 05:27:03 +0000 (05:27 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 16 Jun 2000 05:27:03 +0000 (05:27 +0000)
stored rules.  Bump catversion to reflect incompatibility.

src/backend/nodes/outfuncs.c
src/backend/nodes/readfuncs.c
src/include/catalog/catversion.h

index e2c60c8..7858542 100644 (file)
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- *     $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.118 2000/06/14 18:17:32 petere Exp $
+ *     $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.119 2000/06/16 05:27:02 tgl Exp $
  *
  * NOTES
  *       Every (plan) node in POSTGRES has an associated "out" routine which
@@ -1385,10 +1385,14 @@ _outConstraint(StringInfo str, Constraint *node)
 static void
 _outCaseExpr(StringInfo str, CaseExpr *node)
 {
-       appendStringInfo(str, "CASE ");
+       appendStringInfo(str, " CASE :casetype %u :arg ",
+                                        node->casetype);
+       _outNode(str, node->arg);
+
+       appendStringInfo(str, " :args ");
        _outNode(str, node->args);
 
-       appendStringInfo(str, " :default ");
+       appendStringInfo(str, " :defresult ");
        _outNode(str, node->defresult);
 }
 
index 8277d1e..99d2569 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.89 2000/05/30 00:49:45 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.90 2000/06/16 05:27:03 tgl Exp $
  *
  * NOTES
  *       Most of the read functions for plan nodes are tested. (In fact, they
@@ -670,7 +670,7 @@ _readResdom()
 
        token = lsptok(NULL, &length);          /* eat :restype */
        token = lsptok(NULL, &length);          /* get restype */
-       local_node->restype = atol(token);
+       local_node->restype = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* eat :restypmod */
        token = lsptok(NULL, &length);          /* get restypmod */
@@ -762,8 +762,17 @@ _readCaseExpr()
 
        local_node = makeNode(CaseExpr);
 
+       token = lsptok(NULL, &length);          /* eat :casetype */
+       token = lsptok(NULL, &length);          /* get casetype */
+       local_node->casetype = (Oid) atol(token);
+
+       token = lsptok(NULL, &length);          /* eat :arg */
+       local_node->arg = nodeRead(true);
+
+       token = lsptok(NULL, &length);          /* eat :args */
        local_node->args = nodeRead(true);
-       token = lsptok(NULL, &length);          /* eat :default */
+
+       token = lsptok(NULL, &length);          /* eat :defresult */
        local_node->defresult = nodeRead(true);
 
        return local_node;
@@ -824,15 +833,15 @@ _readVar()
 
        token = lsptok(NULL, &length);          /* eat :varlevelsup */
        token = lsptok(NULL, &length);          /* get varlevelsup */
-       local_node->varlevelsup = (Oid) atol(token);
+       local_node->varlevelsup = (Index) atoi(token);
 
        token = lsptok(NULL, &length);          /* eat :varnoold */
        token = lsptok(NULL, &length);          /* get varnoold */
-       local_node->varnoold = (Oid) atol(token);
+       local_node->varnoold = (Index) atoi(token);
 
        token = lsptok(NULL, &length);          /* eat :varoattno */
        token = lsptok(NULL, &length);          /* eat :varoattno */
-       local_node->varoattno = (int) atol(token);
+       local_node->varoattno = atoi(token);
 
        return local_node;
 }
@@ -942,7 +951,7 @@ _readConst()
 
        token = lsptok(NULL, &length);          /* get :consttype */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->consttype = atol(token);
+       local_node->consttype = (Oid) atol(token);
 
 
        token = lsptok(NULL, &length);          /* get :constlen */
@@ -1001,11 +1010,11 @@ _readFunc()
 
        token = lsptok(NULL, &length);          /* get :funcid */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->funcid = atol(token);
+       local_node->funcid = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :functype */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->functype = atol(token);
+       local_node->functype = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :funcisindex */
        token = lsptok(NULL, &length);          /* now read it */
@@ -1051,15 +1060,15 @@ _readOper()
 
        token = lsptok(NULL, &length);          /* get :opno */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->opno = atol(token);
+       local_node->opno = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :opid */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->opid = atol(token);
+       local_node->opid = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :opresulttype */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->opresulttype = atol(token);
+       local_node->opresulttype = (Oid) atol(token);
 
        /*
         * NOTE: Alternatively we can call 'replace_opid' which initializes
@@ -1102,8 +1111,8 @@ _readParam()
 
        token = lsptok(NULL, &length);          /* get :paramtype */
        token = lsptok(NULL, &length);          /* now read it */
+       local_node->paramtype = (Oid) atol(token);
 
-       local_node->paramtype = atol(token);
        token = lsptok(NULL, &length);          /* get :param_tlist */
        local_node->param_tlist = nodeRead(true);       /* now read it */
 
@@ -1711,7 +1720,7 @@ _readPathKeyItem()
        token = lsptok(NULL, &length);          /* get :sortop */
        token = lsptok(NULL, &length);          /* now read it */
 
-       local_node->sortop = atol(token);
+       local_node->sortop = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :key */
        local_node->key = nodeRead(true);       /* now read it */
@@ -1742,19 +1751,19 @@ _readRestrictInfo()
 
        token = lsptok(NULL, &length);          /* get :mergejoinoperator */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->mergejoinoperator = atol(token);
+       local_node->mergejoinoperator = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :left_sortop */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->left_sortop = atol(token);
+       local_node->left_sortop = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :right_sortop */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->right_sortop = atol(token);
+       local_node->right_sortop = (Oid) atol(token);
 
        token = lsptok(NULL, &length);          /* get :hashjoinoperator */
        token = lsptok(NULL, &length);          /* now read it */
-       local_node->hashjoinoperator = atol(token);
+       local_node->hashjoinoperator = (Oid) atol(token);
 
        return local_node;
 }
index fd09903..b0e958d 100644 (file)
@@ -37,7 +37,7 @@
  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: catversion.h,v 1.31 2000/06/13 07:35:19 tgl Exp $
+ * $Id: catversion.h,v 1.32 2000/06/16 05:27:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -53,6 +53,6 @@
  */
 
 /*                                                     yyyymmddN */
-#define CATALOG_VERSION_NO     200006131
+#define CATALOG_VERSION_NO     200006161
 
 #endif