Not hardcode "false" in UpdateAutoConvertedForConnectedRelations (#6452)

This didn't cause any bugs since today we're always calling
UpdateAutoConvertedForConnectedRelations with autoconverted=false, so we
don't need to backport this to anywhere.
pull/6456/head
Onur Tirtir 2022-10-21 18:14:20 +03:00 committed by GitHub
parent dbe2749bbf
commit 2d14dd85e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ UpdateAutoConvertedForConnectedRelations(List *relationIds, bool autoConverted)
foreach_oid(relid, relationIdList)
{
UpdatePgDistPartitionAutoConverted(relid, false);
UpdatePgDistPartitionAutoConverted(relid, autoConverted);
}
}