#379 - Add MySql support for @History

This commit is contained in:
Robin Bygrave
2015-08-18 06:13:59 +12:00
parent 98ec00a2d6
commit 9d83017374
7 changed files with 78 additions and 6 deletions
@@ -172,7 +172,7 @@ public class CQueryPredicates {
// there is one effective date predicate per table alias
Timestamp asOf = query.getAsOf();
bindLog.append(" asOf ").append(asOf);
for (int i = 0; i < historyTableAlias.size(); i++) {
for (int i = 0; i < historyTableAlias.size() * binder.getAsOfBindCount(); i++) {
binder.bindObject(dataBind, asOf);
}
}