From 9bccc0bb4fa904e37ab63d31699c7167cb1da4ab Mon Sep 17 00:00:00 2001 From: Amogh Bharadwaj Date: Fri, 17 May 2024 03:16:21 +0530 Subject: [PATCH] qrep_partitions stats table: change rows_synced to bigint (#1731) Adds a sql file to alter the column rows_synced of peerdb_stats.qrep_partitions from integer to bigint --- nexus/catalog/migrations/V26__qrep_parts_bigint_rows_synced.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 nexus/catalog/migrations/V26__qrep_parts_bigint_rows_synced.sql diff --git a/nexus/catalog/migrations/V26__qrep_parts_bigint_rows_synced.sql b/nexus/catalog/migrations/V26__qrep_parts_bigint_rows_synced.sql new file mode 100644 index 0000000000..aa132ceb04 --- /dev/null +++ b/nexus/catalog/migrations/V26__qrep_parts_bigint_rows_synced.sql @@ -0,0 +1,2 @@ +ALTER TABLE peerdb_stats.qrep_partitions +ALTER COLUMN rows_synced TYPE bigint;