mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Remove useless if condition
This is useless because these fields are not set anywhere before, so we can assign them unconditionally. This also makes this more consistent with ATExecAddColumn(). Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org> Discussion: https://www.postgresql.org/message-id/flat/52a125e4-ff9a-95f5-9f61-b87cf447e4da@eisentraut.org
This commit is contained in:
parent
1fa9241bdd
commit
689c66a84b
1 changed files with 2 additions and 5 deletions
|
|
@ -942,11 +942,8 @@ DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId,
|
|||
attr->atthasdef = true;
|
||||
}
|
||||
|
||||
if (colDef->identity)
|
||||
attr->attidentity = colDef->identity;
|
||||
|
||||
if (colDef->generated)
|
||||
attr->attgenerated = colDef->generated;
|
||||
attr->attidentity = colDef->identity;
|
||||
attr->attgenerated = colDef->generated;
|
||||
|
||||
if (colDef->compression)
|
||||
attr->attcompression = GetAttributeCompression(attr->atttypid,
|
||||
|
|
|
|||
Loading…
Reference in a new issue