Skip to content
Snippets Groups Projects
Commit 4b130b22 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix for Alter TABLE add column varchar(). Was causing zero length.

parent 620f0146
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.5 1996/11/06 08:21:30 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.6 1996/11/17 04:23:10 momjian Exp $
* *
* NOTES * NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated * The PortalExecutorHeapMemory crap needs to be eliminated
...@@ -444,7 +444,10 @@ PerformAddAttribute(char *relationName, ...@@ -444,7 +444,10 @@ PerformAddAttribute(char *relationName,
} }
namestrcpy(&(attribute->attname), (char*) key[1].sk_argument); namestrcpy(&(attribute->attname), (char*) key[1].sk_argument);
attribute->atttypid = typeTuple->t_oid; attribute->atttypid = typeTuple->t_oid;
attribute->attlen = form->typlen; if (form->typlen > 0)
attribute->attlen = form->typlen;
else /* bpchar and varchar */
attribute->attlen = colDef->typename->typlen;
attribute->attnum = i; attribute->attnum = i;
attribute->attbyval = form->typbyval; attribute->attbyval = form->typbyval;
attribute->attnelems = attnelems; attribute->attnelems = attnelems;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment