summaryrefslogtreecommitdiff
path: root/src/schema/schema_drop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema/schema_drop.c')
-rw-r--r--src/schema/schema_drop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/schema/schema_drop.c b/src/schema/schema_drop.c
index 65c955cf1e9..c1a4f257648 100644
--- a/src/schema/schema_drop.c
+++ b/src/schema/schema_drop.c
@@ -75,7 +75,7 @@ __drop_colgroup(
/*
* __drop_index --
- * WT_SESSION::drop for a colgroup.
+ * WT_SESSION::drop for an index.
*/
static int
__drop_index(
@@ -85,7 +85,7 @@ __drop_index(
WT_DECL_RET;
WT_TABLE *table;
- /* If we can get the colgroup, detach it from the table. */
+ /* If we can get the index, detach it from the table. */
if ((ret = __wt_schema_get_index(
session, uri, force, &table, &idx)) == 0) {
table->idx_complete = false;
@@ -136,7 +136,7 @@ __drop_table(WT_SESSION_IMPL *session, const char *uri, const char *cfg[])
if ((idx = table->indices[i]) == NULL)
continue;
/*
- * Drop the column group before updating the metadata to avoid
+ * Drop the index before updating the metadata to avoid
* the metadata for the table becoming inconsistent if we can't
* get exclusive access.
*/