diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-21 18:33:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-21 18:33:12 +0000 |
commit | 167529f2216300e886a0bc8e17074320cc6f8b09 (patch) | |
tree | d229932f0860e34ba8aeb6fbf96316dc584d3de5 /src | |
parent | c0d979614e33a52498dbac17a09b332e79d312fe (diff) | |
download | postgresql-167529f2216300e886a0bc8e17074320cc6f8b09.tar.gz postgresql-167529f2216300e886a0bc8e17074320cc6f8b09.zip |
Disable fix. Didn't work.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/heap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index 564f185b238..6775eebbdd7 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -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 */ |