OSDN Git Service

Disable fix. Didn't work.
authorBruce Momjian <bruce@momjian.us>
Fri, 21 May 1999 18:33:12 +0000 (18:33 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 21 May 1999 18:33:12 +0000 (18:33 +0000)
src/backend/catalog/heap.c

index 564f185..6775eeb 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.82 1999/05/21 18:31:04 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.83 1999/05/21 18:33:12 momjian Exp $
  *
  *
  * INTERFACE ROUTINES
@@ -1543,14 +1543,16 @@ start:
                 *      length on the disk, requiring non-bpchar types to be padded
                 *      before storage in the default table.  bjm 1999/05/18
                 */
-               if (atp->atttypid == BPCHAROID &&
+               if (1==0 && atp->atttypid == BPCHAROID &&
                        (type == TEXTOID || type == BPCHAROID || type == UNKNOWNOID))
                {
+
                        FuncCall   *n = makeNode(FuncCall);
 
                        n->funcname = typeidTypeName(atp->atttypid);
                        n->args = lcons((Node *)expr, NIL);
                        expr = transformExpr(NULL, (Node *) n, EXPR_COLUMN_FIRST);
+
                }
                else if (IS_BINARY_COMPATIBLE(type, atp->atttypid))
                        ; /* use without change */