Skip to content

Commit ec09124

Browse files
committed
Bump version to v0.2.1
1 parent f4979bd commit ec09124

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.2.1] - 2019-02-17
810
### Added
911
- Unary `NOT`
1012
- `NOT LIKE`
1113

1214
### Fixed
1315
- Fix LIKE operator not matching entire expression
1416

15-
# [0.2.0] - 2018-12-31
17+
## [0.2.0] - 2018-12-31
1618
### Added
1719
- Reliable parser and full set of basic SQL functionality except joins
1820

19-
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.2.0...HEAD
20-
[0.2.0]: https://github.com/cswinter/LocustDB/compare/v0.1.0-alpha..v0.2.0
21+
[Unreleased]: https://github.com/cswinter/LocustDB/compare/v0.2.1..HEAD
22+
[0.2.1]: https://github.com/cswinter/LocustDB/compare/v0.2.0...v0.2.1
23+
[0.2.0]: https://github.com/cswinter/LocustDB/compare/v0.1.0-alpha...v0.2.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Clemens Winter <[email protected]>"]
33
name = "locustdb"
4-
version = "0.2.1-dev"
4+
version = "0.2.1"
55
license-file = "LICENSE"
66
description = "Embeddable high-performance analytics database."
77
[build-dependencies]

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For additional usage info, invoke with `--help`:
3434

3535
```Bash
3636
$ ./locustdb --help
37-
LocustDB 0.1.0-alpha
37+
LocustDB 0.2.1
3838
Clemens Winter <[email protected]>
3939
Massively parallel, high performance analytics database that will rapidly devour all of your data.
4040

@@ -51,11 +51,17 @@ FLAGS:
5151

5252
OPTIONS:
5353
--db-path <PATH> Path to data directory
54-
--load <CSV_FILE>... Load .csv or .csv.gz files into the database
54+
--load <FILES> Load .csv or .csv.gz files into the database
5555
--mem-limit-tables <GB> Limit for in-memory size of tables in GiB [default: 8]
5656
--partition-size <ROWS> Number of rows per partition when loading new data [default: 65536]
5757
--readahead <MB> How much data to load at a time when reading from disk during queries in MiB
5858
[default: 256]
59+
--schema <SCHEMA> Comma separated list specifying the types and (optionally) names of all columns in
60+
files specified by `--load` option.
61+
Valid types: `s`, `string`, `i`, `integer`, `ns` (nullable string), `ni` (nullable
62+
integer)
63+
Example schema without column names: `int,string,string,string,int`
64+
Example schema with column names: `name:s,age:i,country:s`
5965
--table <NAME> Name for the table populated with --load [default: default]
6066
--threads <INTEGER> Number of worker threads. [default: number of cores (12)]
6167
```

0 commit comments

Comments
 (0)