From 6c349272710805d6e766161ae21680579127c969 Mon Sep 17 00:00:00 2001 From: wd-mgreynolds Date: Mon, 23 Oct 2023 11:14:53 -0400 Subject: [PATCH] Bug fix truncate_tables. --- prism/commands/tables_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/commands/tables_commands.py b/prism/commands/tables_commands.py index 3b86cd8..f48e825 100644 --- a/prism/commands/tables_commands.py +++ b/prism/commands/tables_commands.py @@ -363,7 +363,7 @@ def tables_truncate(ctx, table, isname): bucket_id = bucket['id'] # Don't specify a file to put a zero sized file into the bucket. - p.buckets_upload(bucket_id) + p.buckets_files(bucket_id) # Ask Prism to run the delete statement by completing the bucket. bucket = p.buckets_complete(bucket_id)