diff options
Diffstat (limited to 'src/backend/commands/typecmds.c')
-rw-r--r-- | src/backend/commands/typecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index 8891b1d5645..9e5938b10eb 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -2176,7 +2176,7 @@ AlterDomainDefault(List *names, Node *defaultRaw) * DefineDomain.) */ if (defaultExpr == NULL || - (IsA(defaultExpr, Const) &&((Const *) defaultExpr)->constisnull)) + (IsA(defaultExpr, Const) && ((Const *) defaultExpr)->constisnull)) { /* Default is NULL, drop it */ defaultExpr = NULL; |