Skip to content

Commit

Permalink
Merge pull request #95 from azat-archive/SimpleAggregateFunction-doc
Browse files Browse the repository at this point in the history
Add SimpleAggregateFunction into documentation
  • Loading branch information
xzkostyan committed Jun 21, 2019
2 parents 5334f0d + 1cd48e8 commit a6df6f3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Changelog

## [Unreleased]
### Added
- SimpleAggregateFunction type.

## [0.0.20] - 2019-06-02
### Added
- LowCardinality(T) type.
- Access for processed rows, bytes and elapsed time of the last executed query.
- Allow to insert `datetime` into Date column. Pull request [#75](https://github.com/mymarilyn/clickhouse-driver/pull/75) by [gle4er](https://github.com/gle4er).
- 'max_partitions_per_insert_block' setting. Pull request [#85](https://github.com/mymarilyn/clickhouse-driver/pull/85) by [mhsekhavat](https://github.com/mhsekhavat).
- SimpleAggregateFunction type.

### Fixed
- Fallback for user name if it's not defined. Pull request [#87](https://github.com/mymarilyn/clickhouse-driver/pull/87) by [wawaka](https://github.com/wawaka).
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Features
* Decimal
* IPv4/IPv6
* LowCardinality(T)
* SimpleAggregateFunction(F, T)

- Query progress information.

Expand Down
10 changes: 10 additions & 0 deletions docs/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,13 @@ LowCardinality(T)
INSERT types: ``T``.

SELECT type: ``T``.


SimpleAggregateFunction(F, T)
-----------------------------

*New in version 0.0.21.*

INSERT types: ``T``.

SELECT type: ``T``.

0 comments on commit a6df6f3

Please sign in to comment.