summaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-04-18 11:57:37 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-04-18 11:57:37 -0400
commit92b503c48d9d98657c59fe630f44b80efaab87de (patch)
tree1a5c4420cae387a280cc60596954a0c8af8a07ea /src/backend/commands/indexcmds.c
parent248c268d5b9fce1c2bb3d8fc28634f4977b613b5 (diff)
Revert "Add temporary debug logging, in 9.4 branch only."
This reverts commit e55380f3b60108d402f64131fe655b0e5ccc1f31. It's served its purpose.
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r--src/backend/commands/indexcmds.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c
index e8b9d1a4dd8..05afcb0088d 100644
--- a/src/backend/commands/indexcmds.c
+++ b/src/backend/commands/indexcmds.c
@@ -758,8 +758,6 @@ DefineIndex(Oid relationId,
*/
validate_index(relationId, indexRelationId, snapshot);
- PrintSnapMgrStatus("concurrent index build, before snapshot release");
-
/*
* Drop the reference snapshot. We must do this before waiting out other
* snapshot holders, else we will deadlock against other processes also
@@ -772,13 +770,9 @@ DefineIndex(Oid relationId,
limitXmin = snapshot->xmin;
PopActiveSnapshot();
- PrintSnapMgrStatus("concurrent index build, after PopActiveSnapshot");
UnregisterSnapshot(snapshot);
- PrintSnapMgrStatus("concurrent index build, after UnregisterSnapshot");
InvalidateCatalogSnapshot();
- PrintSnapMgrStatus("concurrent index build, after InvalidateCatalogSnapshot");
-
/*
* The index is now valid in the sense that it contains all currently
* interesting tuples. But since it might not contain tuples deleted just