From 300adba2f14660494b55db49476040ff2febae81 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 13 May 2023 20:44:46 -0700 Subject: [PATCH] Updated messages --- src/ivfbuild.c | 4 ++-- src/ivfscan.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ivfbuild.c b/src/ivfbuild.c index d4419ee..9a20973 100644 --- a/src/ivfbuild.c +++ b/src/ivfbuild.c @@ -438,8 +438,8 @@ ComputeCenters(IvfflatBuildState * buildstate) { ereport(NOTICE, (errmsg("ivfflat index created with little data"), - errdetail("this will cause poor recall"), - errhint("drop the index until the table has more data"))); + errdetail("This will cause low recall."), + errhint("Drop the index until the table has more data."))); } } diff --git a/src/ivfscan.c b/src/ivfscan.c index ce53053..b4501cb 100644 --- a/src/ivfscan.c +++ b/src/ivfscan.c @@ -174,8 +174,8 @@ GetScanItems(IndexScanDesc scan, Datum value) if (tuples < 100) ereport(DEBUG1, (errmsg("index scan found few tuples"), - errdetail("index may have been created without data or lists is too high"), - errhint("recreate the index and possibly decrease lists"))); + errdetail("Index may have been created with little data."), + errhint("Recreate the index and possibly decrease lists."))); tuplesort_performsort(so->sortstate); }