From 9feec65e664073d67dde11d096a09d116aca1455 Mon Sep 17 00:00:00 2001 From: Matt Spilchen Date: Wed, 7 Feb 2024 11:56:55 -0400 Subject: [PATCH] Sync from server repo (259b93bf698) --- vclusterops/nma_show_restore_points_op.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vclusterops/nma_show_restore_points_op.go b/vclusterops/nma_show_restore_points_op.go index c406b09..688ca7e 100644 --- a/vclusterops/nma_show_restore_points_op.go +++ b/vclusterops/nma_show_restore_points_op.go @@ -106,16 +106,16 @@ func (op *nmaShowRestorePointsOp) finalize(_ *opEngineExecContext) error { // RestorePoint contains information about a single restore point. type RestorePoint struct { // Name of the archive that this restore point was created in. - Archive string + Archive string `json:"archive"` // The ID of the restore point. This is a form of a UID that is static for the restore point. - ID string + ID string `json:"id"` // The current index of this restore point. Lower value means it was taken more recently. // This changes when new restore points are created. - Index int + Index int `json:"index"` // The timestamp when the restore point was created. - Timestamp string + Timestamp string `json:"timestamp"` // The version of Vertica running when the restore point was created. - VerticaVersion string + VerticaVersion string `json:"vertica_version"` } func (op *nmaShowRestorePointsOp) processResult(execContext *opEngineExecContext) error {