We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1239a01 commit e19f6bcCopy full SHA for e19f6bc
src/backend/commands/tablecmds.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.130 2004/08/31 15:56:39 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.131 2004/08/31 23:27:05 tgl Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -5760,6 +5760,8 @@ needs_toast_table(Relation rel)
5760
5761
for (i = 0; i < tupdesc->natts; i++)
5762
{
5763
+ if (att[i]->attisdropped)
5764
+ continue;
5765
data_length = att_align(data_length, att[i]->attalign);
5766
if (att[i]->attlen > 0)
5767
0 commit comments