Skip to content

Commit

Permalink
Merge 11bbec4 into 92667ca
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger committed Nov 11, 2014
2 parents 92667ca + 11bbec4 commit 5eaad98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changes for Crate
Unreleased
==========

- Fixed a rare race condition that could cause the ``having`` clause to filter
incorrectly.

- Fix: ``alter table add column`` didn't work correctly on partitioned tables.

- Added cast function for timestamp type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void startProjection() {
}

@Override
public boolean setNextRow(Object... row) {
public synchronized boolean setNextRow(Object... row) {
for (CollectExpression<?> collectExpression : collectExpressions) {
collectExpression.setNextRow(row);
}
Expand Down

0 comments on commit 5eaad98

Please sign in to comment.