Skip to content

Commit

Permalink
Fix a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Sep 9, 2015
1 parent ba278c5 commit 0c111a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c111a2

Please sign in to comment.