Vitaliy Lyudvichenko
bbe2a656cd
Fixed preferred_block_size_bytes in case of PREWHERE with non-materialized column. [#METR-25237]
2017-05-20 17:30:59 +04:00
Alexey Zatelepin
d9306ab6b5
choose row with the max version for unmatched paths [#CLICKHOUSE-2984]
2017-05-20 17:25:48 +04:00
Alexey Zatelepin
f37ed1fbdb
fix bugs in GraphiteMergeTree [#CLICKHOUSE-2984]:
...
* destructive rollup with Time=0 if no pattern matches
* differences in row count for Path and Value columns
* missed output rows on the boundaries between blocks
2017-05-20 17:25:48 +04:00
proller
f59ccb3db8
Doc: release: remove removed --standalone flag
2017-05-20 17:21:20 +04:00
KochetovNicolai
f9cdae50d9
Cast boolean json fields to numbers ( #809 )
...
* added readBoolTextWord
* moved json bool cast to DataTypeNumber
2017-05-20 17:15:04 +04:00
Alexey Zatelepin
807570b32f
Change tabs to spaces in clickhouse-test [#CLICKHOUSE-3].
2017-05-19 21:31:48 +03:00
Alexey Milovidov
3981375350
Merge branch 'master' of github.com:yandex/ClickHouse
2017-05-17 20:47:25 +03:00
proller
1338b03438
Fix freebsd and macos build (contrib/libbtrie) ( #806 )
...
* Try fix freebsd 11-STABLE OCbuild
* Fix freebsd and macos build (contrib/libbtrie)
2017-05-17 21:45:44 +04:00
robot-metrika-test
bc2d232494
Auto version update to [54235]
2017-05-17 21:44:16 +04:00
Vitaliy Lyudvichenko
1d00f45dd3
Detect race condition between fetches and merges of the same part. [#CLICKHOUSE-2989]
2017-05-17 21:44:16 +04:00
Alexey Milovidov
a22cfdcdb6
Removed CHANGELOG.md, because it became misleading [#CLICKHOUSE-3].
2017-05-17 20:37:29 +03:00
alexey-milovidov
771a563ce0
Merge pull request #804 from blinkov/CLICKHOUSE-2720
...
CLICKHOUSE-2720: some progress on website
2017-05-16 23:09:23 +04:00
Ivan Blinkov
5aad4e0c0e
CLICKHOUSE-2981: add Yandex.Metrika counter to sphinx generated docs
2017-05-16 22:01:47 +03:00
Ivan Blinkov
e47712e611
CLICKHOUSE-2981: additional links in sidebar
2017-05-16 21:52:02 +03:00
Ivan Blinkov
ab527d0117
revert 8a9b2f9f45
2017-05-16 21:51:42 +03:00
Luis Bosque
b39ca52354
Use git HEAD hash as possible package name
...
Pretty simple addition to allow generating debian packages with the git
hash as part of the packages name. This may be useful for a nightly
build style for fast testing
2017-05-16 22:45:57 +04:00
alexey-milovidov
1db9a73059
Merge pull request #740 from BayoNet/master
...
Description of distributed_product_mode was added.
2017-05-16 22:44:55 +04:00
Ivan Blinkov
8a9b2f9f45
tune release.sh
2017-05-16 21:32:44 +03:00
Ivan Blinkov
7a75734b25
CLICKHOUSE-2976: get rid of try_files
2017-05-16 21:32:35 +03:00
BayoNet
2d8df96f7e
1. GraphiteMergeTree is added.
...
2. Merge remote-tracking branch 'upstream/master'.
2017-05-16 19:54:45 +03:00
Ivan Blinkov
ebd72199e9
CLICKHOUSE-2976: basic 404 page
2017-05-16 19:48:59 +03:00
Ivan Blinkov
ed5820067a
CLICKHOUSE-2981: build docs with website
2017-05-16 19:00:24 +03:00
Ivan Blinkov
ddc50c1fa7
Merge branch 'CLICKHOUSE-2981' of https://github.com/blinkov/ClickHouse into CLICKHOUSE-2720
2017-05-16 18:50:44 +03:00
Ivan Blinkov
df30a48412
CLICKHOUSE-2981: basic styling of sphinx docs
2017-05-16 18:47:18 +03:00
BayoNet
ffaf8c167b
Lagging replicas processing is described.
...
Desctiption of settings application is actualized.
2017-05-16 15:30:31 +03:00
Nikolai Kochetov
df087a2e98
merged with master
2017-05-16 13:06:45 +03:00
Nikolai Kochetov
16256503ec
merged with master
2017-05-16 13:03:06 +03:00
Ivan Blinkov
fa5fcd7b5a
Update Yandex.Metrika counter code
2017-05-16 10:51:05 +03:00
Ivan Blinkov
74ddfbb6af
merge master
2017-05-16 10:44:06 +03:00
Dmitry Luhtionov
4cc10af7b7
Add MACStringToOUI function
2017-05-16 10:32:49 +04:00
Ilya Shipitsin
82ee94a3bb
optimized logo.png using "optipng", use more elegant "apt-add-repository"
...
repo management.
2017-05-16 10:25:41 +04:00
orantius
da83036326
Add age 55 for function roundAge. [#CLICKHOUSE-3001]
2017-05-15 22:42:39 +04:00
Veniamin Gvozdikov
496357a691
Fix docker clickhouse client
2017-05-15 22:33:17 +04:00
Veniamin Gvozdikov
c2651b4197
Fix missed dependency
2017-05-15 22:33:17 +04:00
Nikolai Kochetov
7398062010
added undate by invalidate_query for MySql and ODBC dictionary sources
2017-05-15 17:16:10 +03:00
Nikolai Kochetov
427c020140
deleted dictionary ptr from StorageDictionary
2017-05-15 16:58:40 +03:00
Marek Vavruša
9520234365
Dictionaries/TrieDictionary: IP prefix dictionary
...
This commit implements a basic IP prefix dictionary
that allows storing IPv4/IPv6 prefixes and
matching them against a single IP address on query
time. This allows for doing IP -> ASN matching and
other similar things on query time.
The implementation is basic for start, using a
simple bitwise trie and reusing interface for
complex key dictionaries (so using tuple instead
of UInt32/FixedString(16) as the key). A faster
bitwise trie implementation (like poptrie) is
desired to improve lookup performance and
memory consumption with large prefix tables.
2017-05-15 10:51:03 +04:00
alexey-milovidov
e7b7f6f73d
Update MergeTreeData.cpp
2017-05-15 10:34:40 +04:00
Vitaliy Lyudvichenko
6262fc8650
Fix inccorect columns size in MergeTreeData after ALTER. [#CLICKHOUSE-2]
2017-05-15 10:34:40 +04:00
f1yegor
92b56c2c7d
translate comments
2017-05-14 19:03:55 +04:00
f1yegor
c252863b2e
translate comments
2017-05-14 19:03:55 +04:00
Igor Hatarist
043717ed7b
Update the ontime example dataset instructions
2017-05-13 22:26:45 +04:00
Marek Vavruša
95d926ec14
AggregateFunctionTopK: smaller initial table size
...
By default start with 2^4 elements
2017-05-13 03:58:05 +04:00
Marek Vavruša
74cc0849dc
iostream_debug_helpers: fixed build
2017-05-13 03:58:05 +04:00
Marek Vavruša
f53acf40a0
build: pass PATH to debuild
...
this fixes build on Debian
2017-05-13 03:58:05 +04:00
robot-metrika-test
9d475d34f6
Auto version update to [54234]
2017-05-13 00:05:22 +03:00
Alexey Milovidov
282a395464
Fixed test [#CLICKHOUSE-2].
2017-05-13 00:03:01 +03:00
Alexey Milovidov
d3a8faee16
Fixed test reference file for aggregate function topK [#CLICKHOUSE-3].
2017-05-12 23:59:14 +03:00
Alexey Milovidov
cfc4c987c5
Added optional length parameter to aggregate function groupArrayInsertAt [#CLICKHOUSE-3003].
2017-05-12 23:57:24 +03:00
Alexey Milovidov
40595ce688
Whitespaces [#CLICKHOUSE-3003].
2017-05-12 23:41:50 +03:00