From a637c70b7fd573b3838190778ca7deb26faf6a04 Mon Sep 17 00:00:00 2001 From: Ahmet Gedemenli Date: Thu, 17 Feb 2022 11:19:28 +0300 Subject: [PATCH] Style --- .../distributed/commands/create_distributed_table.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/backend/distributed/commands/create_distributed_table.c b/src/backend/distributed/commands/create_distributed_table.c index e0c767474..298d9ab89 100644 --- a/src/backend/distributed/commands/create_distributed_table.c +++ b/src/backend/distributed/commands/create_distributed_table.c @@ -421,11 +421,11 @@ CreateDistributedTable(Oid relationId, Var *distributionColumn, char distributio if (distributionMethod != DISTRIBUTE_BY_NONE) { /* - * Because we create a new table when undistributing the table, attribute - * numbers might be changed, because of the dropped columns. To make sure we - * have the correct distribution column, we need to build it again, using the - * original column name that we have saved before. - */ + * Because we create a new table when undistributing the table, attribute + * numbers might be changed, because of the dropped columns. To make sure we + * have the correct distribution column, we need to build it again, using the + * original column name that we have saved before. + */ Relation relation = try_relation_open(relationId, ExclusiveLock); if (relation == NULL) {