Skip to content

Commit

Permalink
updated CraSh version, fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Claus Matzinger committed Dec 2, 2015
1 parent 2da6112 commit 45098ab
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Changes for Crate
Unreleased
==========

- Updated Crash to 0.14.3, which includes the following change:

- Python2.6/2.7 output now prints unicode strings correctly when using
csv output format

- Improved the speed of group by queries which contain tables with more
than 1 shard per node.

Expand All @@ -16,7 +21,7 @@ Unreleased
- Fix: insert into a partitioned primary key column of type long
could fail under some circumstances

- Fix: missing characters when concatinating string under some
- Fix: missing characters when concatenating string under some
rare circumstances

- Internal optimization: Avoid writing partition values to the source.
Expand Down Expand Up @@ -59,9 +64,9 @@ Unreleased

- Updated crate/elasticsearch for improved logging on graceful shutdown errors

- Added ``array_cat``, ``array_unique`` and ``array_difference`` scalar
- Added ``array_cat``, ``array_unique`` and ``array_difference`` scalar
functions. Also modified ``concat`` function to resolve to ``array_cat`` when
``concat`` function is called with 2 array args, so the operator ``||`` will
``concat`` function is called with 2 array args, so the operator ``||`` will
work with arrays.

2015/11/11 0.52.2
Expand All @@ -86,7 +91,7 @@ Unreleased
- Fix: clean up file descriptors in case of exceptions when retrieving blobs
over the REST api

- Fixed an issue that was causing like queries to fail if using a special regex
- Fixed an issue that was causing like queries to fail if using a special regex
character

- Upgraded Elasticsearch to 1.7.3
Expand All @@ -95,7 +100,7 @@ Unreleased
the cluster when multiple clients connections are established

- Fixed a possible race condition that could lead to queries getting stuck
(Only affected SELECT queries with a limit/offset > 500000)
(Only affected SELECT queries with a limit/offset > 500000)

- Fix: Crate won't start properly if a plugin loading error occurs
(e.g. through a misconfigured plugin)
Expand All @@ -104,7 +109,7 @@ Unreleased
FetchContext to remain open longer than necessary in an error case.
This could then lead to failures if an attempt was made to move shards to
which the FetchContext hold onto.

- Updated crate-admin to 0.15.2 which includes following changes:

- fixed a bug that displays partitions that are not related to the selected
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ ext {
downloadDir = new File(buildDir, 'downloads')
plugin_crateadmin_version = '0.16.1'
plugin_repository_hdfs_version = '2.1.1-1'
crash_version = '0.14.2'
crash_version = '0.14.3'
}

def rootDir = project.parent.projectDir
Expand Down

0 comments on commit 45098ab

Please sign in to comment.