Commit 85851371bec1bb382c974962012020290f941868
1 parent
054ff63d
Exists in
master
9639 : bug with format without separator
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
server/kernel/src/Transformation/TransformationResult.cpp
... | ... | @@ -72,7 +72,9 @@ namespace TREPS |
72 | 72 | |
73 | 73 | for (t_FieldList::const_iterator field = fields->begin(); field != fields->end(); ++field) |
74 | 74 | { |
75 | - if (/*((*field).type == FT_TIME) &&*/ ((*field).id.compare(timeFieldId) == 0)) | |
75 | + // 9639 update starting index copy, escape all time fields | |
76 | + // if (/*((*field).type == FT_TIME) &&*/ ((*field).id.compare(timeFieldId) == 0)) | |
77 | + if (/*((*field).type == FT_TIME) &&*/ ( atoi((*field).id.c_str()) <= atoi(timeFieldId) )) | |
76 | 78 | continue; |
77 | 79 | this->dstFields.push_back((*field)); |
78 | 80 | } | ... | ... |