Disable fix. Didn't work.

This commit is contained in:
Bruce Momjian 1999-05-21 18:33:12 +00:00
parent c0d979614e
commit 167529f221
1 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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 * INTERFACE ROUTINES
@ -1543,14 +1543,16 @@ start:
* length on the disk, requiring non-bpchar types to be padded * length on the disk, requiring non-bpchar types to be padded
* before storage in the default table. bjm 1999/05/18 * 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)) (type == TEXTOID || type == BPCHAROID || type == UNKNOWNOID))
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = typeidTypeName(atp->atttypid); n->funcname = typeidTypeName(atp->atttypid);
n->args = lcons((Node *)expr, NIL); n->args = lcons((Node *)expr, NIL);
expr = transformExpr(NULL, (Node *) n, EXPR_COLUMN_FIRST); expr = transformExpr(NULL, (Node *) n, EXPR_COLUMN_FIRST);
} }
else if (IS_BINARY_COMPATIBLE(type, atp->atttypid)) else if (IS_BINARY_COMPATIBLE(type, atp->atttypid))
; /* use without change */ ; /* use without change */