From d6d3b88304ed66710e96b962c7ab1c0c63ff49a1 Mon Sep 17 00:00:00 2001 From: Alec Merdler Date: Mon, 1 Apr 2024 16:23:37 -0400 Subject: [PATCH] Correct version requirement for datastore repair The 'spicedb datastore repair transaction-ids' command requires Postgres v15+ to succeed. --- internal/datastore/postgres/postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datastore/postgres/postgres.go b/internal/datastore/postgres/postgres.go index c0144b741c..6cd9015f56 100644 --- a/internal/datastore/postgres/postgres.go +++ b/internal/datastore/postgres/postgres.go @@ -468,7 +468,7 @@ func (pgd *pgDatastore) RepairOperations() []datastore.RepairOperation { return []datastore.RepairOperation{ { Name: repairTransactionIDsOperation, - Description: "Brings the Postgres database up to the expected transaction ID (Postgres v14+ only)", + Description: "Brings the Postgres database up to the expected transaction ID (Postgres v15+ only)", }, } }