diff options
author | Pavan Deolasee | 2018-05-21 06:41:40 +0000 |
---|---|---|
committer | Pavan Deolasee | 2018-05-21 06:41:40 +0000 |
commit | f3747239ba12599e88b2e022f34ba09f26364e15 (patch) | |
tree | 2085a876c22ffdf5906bb8a10ab04a19c980e6ed | |
parent | 9a2505daa86a2e4c3525daca0d8e95d0a6a27a31 (diff) |
Remove some accidentally added elog(LOG) messages
-rw-r--r-- | src/backend/commands/vacuum.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 7a64c9b013..6ad0700f4d 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -1772,16 +1772,12 @@ get_remote_relstat(char *nspname, char *relname, bool istemp, bool replicated, { validpages++; *pages += DatumGetInt32(value); - elog(LOG, "get_remote_relstat: relname:%s, remote relpages: %d", - relname, DatumGetInt32(value)); } value = slot_getattr(result, 2, &isnull); /* reltuples */ if (!isnull) { validtuples++; *tuples += DatumGetFloat4(value); - elog(LOG, "get_remote_relstat: relname:%s, remote reltuples: %f", - relname, DatumGetFloat4(value)); } value = slot_getattr(result, 3, &isnull); /* relallvisible */ if (!isnull) @@ -1873,8 +1869,6 @@ vacuum_rel_coordinator(Relation onerel, bool is_outer) nspname = get_namespace_name(RelationGetNamespace(onerel)); istemp = (onerel->rd_rel->relpersistence == RELPERSISTENCE_TEMP); - elog(LOG, "Getting relation statistics for %s.%s", nspname, relname); - replicated = IsLocatorReplicated(RelationGetLocatorType(onerel)); /* * Get stats from the remote nodes. Function returns the number of nodes |