From 9075917334c76ec879d16b8693237bf26b7d3a95 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 4 Sep 2015 10:10:18 -0700 Subject: [PATCH] Fix a comment --- object_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object_store.cpp b/object_store.cpp index 2c42f64b..bcfa964f 100644 --- a/object_store.cpp +++ b/object_store.cpp @@ -295,7 +295,7 @@ bool ObjectStore::create_tables(Group *group, Schema &target_schema, bool update for (auto& target_prop : target_props) { auto current_prop = current_schema.property_for_name(target_prop.name); - // add any new properties (new name or different type) + // add any new properties (no old column or old column was removed due to not matching) if (!current_prop || current_prop->table_column == npos) { switch (target_prop.type) { // for objects and arrays, we have to specify target table