From 9b76b62bda72099f8b588a4cca08bcd4b63af979 Mon Sep 17 00:00:00 2001 From: Mehmet YILMAZ Date: Tue, 10 Sep 2024 14:25:08 +0000 Subject: [PATCH] remove freeze option from local --- src/backend/distributed/operations/worker_shard_copy.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/backend/distributed/operations/worker_shard_copy.c b/src/backend/distributed/operations/worker_shard_copy.c index 5a22fc95b..6ed81020b 100644 --- a/src/backend/distributed/operations/worker_shard_copy.c +++ b/src/backend/distributed/operations/worker_shard_copy.c @@ -556,10 +556,6 @@ CreateCopyOptions(bool isBinaryCopy) { List *options = NIL; - /* Add the FREEZE option */ - DefElem *freezeOption = makeDefElem("freeze", (Node *) makeInteger(true), -1); - options = lappend(options, freezeOption); - /* If binary format is used, add the binary format option */ if (isBinaryCopy) {