detailyang
|
6e70f2ce7a
|
bugfix:aggregate:fix boundingratio args check
|
2020-09-28 19:56:42 +08:00 |
|
Artem Zuikov
|
51ba12c2c3
|
Try speedup build (#14809)
|
2020-09-15 12:55:57 +03:00 |
|
alexey-milovidov
|
1e300d9119
|
Merge pull request #14562 from CurtizJ/fix-fuzz
Fix segfault in combinator -Resample
|
2020-09-08 23:53:14 +03:00 |
|
alexey-milovidov
|
a5499ab9d6
|
Merge pull request #14555 from 4ertus2/some
Hide symbols in nameless namespace
|
2020-09-08 19:55:56 +03:00 |
|
Anton Popov
|
ee218c354e
|
fix segfault in combinator -Resample
|
2020-09-08 02:21:12 +03:00 |
|
Alexey Milovidov
|
e3924b8057
|
Fix "Arcadia"
|
2020-09-08 01:14:13 +03:00 |
|
Artem Zuikov
|
b3eafc1106
|
hide symbols in nameless namespace
|
2020-09-07 21:00:37 +03:00 |
|
Nikita Mikhaylov
|
5d9367aea4
|
Merge pull request #14411 from nikitamikhaylov/rank-corr
Merging #11769 (Rank Correlation Spearman)
|
2020-09-07 21:18:19 +04:00 |
|
Alexey Milovidov
|
1cee6d5a31
|
Check for array size overflow in topK #14452
|
2020-09-04 04:05:57 +03:00 |
|
Nikita Mikhaylov
|
cdb1f30630
|
style + fast test
|
2020-09-02 16:49:47 +03:00 |
|
Nikita Mikhaylov
|
7021f6edc1
|
better
(cherry picked from commit 81481f26b5 )
|
2020-09-02 15:47:23 +03:00 |
|
Nikita Mikhaylov
|
e9a1f4a383
|
update ya.make
(cherry picked from commit e62043e83b )
(cherry picked from commit a850388e62 )
|
2020-09-02 15:47:17 +03:00 |
|
Nikita Mikhaylov
|
eee19dada4
|
fixes + test
(cherry picked from commit 5daee1cae1 )
(cherry picked from commit c3dfb8e838 )
|
2020-09-02 15:47:09 +03:00 |
|
antikvist
|
a695344434
|
rank corr
(cherry picked from commit 649e4dd913 )
(cherry picked from commit ae17810201 )
|
2020-09-02 15:46:42 +03:00 |
|
antikvist
|
efc59d6686
|
rank corr
(cherry picked from commit 11c94bee69 )
(cherry picked from commit 483409f2e1 )
|
2020-09-02 15:46:29 +03:00 |
|
antikvist
|
e32887d300
|
rank corr
(cherry picked from commit 2815397a19 )
(cherry picked from commit d244797def )
|
2020-09-02 15:45:59 +03:00 |
|
antikvist
|
950094c233
|
rank correlation
(cherry picked from commit f9dda1e13e )
(cherry picked from commit 2a7026cb0c )
|
2020-09-02 15:45:51 +03:00 |
|
antikvist
|
098561def3
|
welch t-test
(cherry picked from commit 5cd118dcee )
(cherry picked from commit 8f19270f8d )
|
2020-09-02 15:45:37 +03:00 |
|
antikvist
|
df668d6297
|
Rank Correlation
(cherry picked from commit 3009c3885b )
(cherry picked from commit 024ff439e7 )
|
2020-09-02 15:45:31 +03:00 |
|
Artem Zuikov
|
d304d522cc
|
Refactoring: rename types to allow change bigint library (#14219)
|
2020-09-01 12:54:50 +03:00 |
|
Alexander Kuzmenkov
|
134aae89f3
|
Merge pull request #14110 from 4ertus2/decimal
Fix Decimal to Float conversion and toDecimal256() function
|
2020-08-31 17:08:49 +03:00 |
|
alexey-milovidov
|
f6f8dc9b8a
|
Merge pull request #13964 from zhang2014/fix/agg_combinator
Try fix IfAggCombinator with NullAggCombinator
|
2020-08-26 23:47:29 +03:00 |
|
Artem Zuikov
|
fe5db661ce
|
fix decimal to float conversion and toDecimal256()
|
2020-08-26 15:26:12 +03:00 |
|
Azat Khuzhin
|
99db9341a2
|
Fix -Werror=type-limits in AggregateFunctionTimeSeriesGroupSum.h (size_t() >= 0)
gcc10 reports:
In file included from ../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.cpp:1:
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h: In instantiation of ‘void DB::AggregateFunctionTimeSeriesGroupSumData<rate>::add(DB::UInt64, DB::Int64, DB::Float64) [with bool rate = true; DB::UInt64 = long unsigned int; DB::Int64 = long int; DB::Float64 = double]’:
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:246:34: required from ‘void DB::AggregateFunctionTimeSeriesGroupSum<rate>::add(DB::AggregateDataPtr, const DB::IColumn**, size_t, DB::Arena*) const [with bool rate = true; DB::AggregateDataPtr = char*; size_t = long unsigned int]’
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:239:10: required from here
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:113:71: error: comparison of unsigned expression in ‘>= 0’ is always true [-Werror=type-limits]
113 | while (result[i].first > it_ss->second.dps.front().first && i >= 0)
| ~~^~~~
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h: In instantiation of ‘void DB::AggregateFunctionTimeSeriesGroupSumData<rate>::add(DB::UInt64, DB::Int64, DB::Float64) [with bool rate = false; DB::UInt64 = long unsigned int; DB::Int64 = long int; DB::Float64 = double]’:
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:246:34: required from ‘void DB::AggregateFunctionTimeSeriesGroupSum<rate>::add(DB::AggregateDataPtr, const DB::IColumn**, size_t, DB::Arena*) const [with bool rate = false; DB::AggregateDataPtr = char*; size_t = long unsigned int]’
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:239:10: required from here
../src/AggregateFunctions/AggregateFunctionTimeSeriesGroupSum.h:113:71: error: comparison of unsigned expression in ‘>= 0’ is always true [-Werror=type-limits]
|
2020-08-25 21:20:04 +03:00 |
|
Nikita Mikhaylov
|
7209809e29
|
get rid of virtual call
|
2020-08-24 14:54:04 +03:00 |
|
Winter Zhang
|
75af61ea95
|
Try fix style failure
|
2020-08-24 18:51:54 +08:00 |
|
zhang2014
|
63868aaed3
|
Try fix CI
|
2020-08-24 13:05:59 +08:00 |
|
bharatnc
|
64d848f5c8
|
fix gcc-9 build check error
|
2020-08-23 10:09:41 -07:00 |
|
bharatnc
|
dd3068e2bb
|
fix file formatting
|
2020-08-23 10:09:41 -07:00 |
|
bharatnc
|
e1bf87019c
|
add quantileExactLow & quantileExactHigh functions
This PR adds the quantileExactLow and quantileExactHigh
implementations which are equivalent to how the `median_low`
and `median_high` functions are implemented in python.
`median_low`: https://github.com/python/cpython/blob/master/Lib/statistics.py#L438
`median_high`: https://github.com/python/cpython/blob/master/Lib/statistics.py#L460
|
2020-08-23 10:09:41 -07:00 |
|
zhang2014
|
0e8cb96eb1
|
Try fix IfAggCombinator with NullAggCombinator
|
2020-08-22 22:57:46 +08:00 |
|
alexey-milovidov
|
cda85a7828
|
Update AggregateFunctionResample.h
|
2020-08-21 15:05:58 +03:00 |
|
Mikhail f. Shiryaev
|
622c2d7e45
|
Increase limit in -Resample combinator to 1M
|
2020-08-21 13:35:19 +02:00 |
|
Artem Zuikov
|
becc186c91
|
Add support for extended precision integers and decimals (#13097)
|
2020-08-19 14:52:17 +03:00 |
|
Azat Khuzhin
|
0eac96972c
|
Fix topK/topKWeighted merge (wtih non-default parameters)
|
2020-08-16 22:32:56 +03:00 |
|
Alexey Milovidov
|
8c85ab3753
|
Fix error with batch aggregation and -Array combinator
|
2020-08-14 09:52:28 +03:00 |
|
Alexey Milovidov
|
350b8e87a7
|
Merge branch 'master' into fixed-hash-map-implicit-zero-6
|
2020-08-09 01:48:12 +03:00 |
|
Alexey Milovidov
|
edd89a8610
|
Fix half of typos
|
2020-08-08 03:47:03 +03:00 |
|
Alexey Milovidov
|
e3235e5b6e
|
Fix build
|
2020-08-07 22:06:31 +03:00 |
|
Alexey Milovidov
|
476da6c1fe
|
Slightly better
|
2020-08-07 03:35:13 +03:00 |
|
Alexey Milovidov
|
cf618c1e23
|
Remove false statements
|
2020-08-07 03:33:17 +03:00 |
|
Alexey Milovidov
|
733bd0ecec
|
Fix error
|
2020-08-07 03:29:52 +03:00 |
|
Alexey Milovidov
|
5c1703bd6c
|
Merge branch 'master' into fixed-hash-map-implicit-zero-6
|
2020-08-07 02:58:57 +03:00 |
|
alesapin
|
2ef491bc53
|
Fix moving sum segfault
|
2020-08-04 22:45:39 +03:00 |
|
Alexey Milovidov
|
6d5b9c36e0
|
Lower unroll count
|
2020-08-04 01:40:55 +03:00 |
|
Alexey Milovidov
|
e241df5541
|
Add warning suppression for gcc
|
2020-08-04 01:40:55 +03:00 |
|
Alexey Milovidov
|
373cd918fb
|
Remove warning suppression
|
2020-08-04 01:40:55 +03:00 |
|
Alexey Milovidov
|
eb534ebee3
|
Fix warning
|
2020-08-04 01:40:55 +03:00 |
|
Alexey Milovidov
|
f29c0af9aa
|
Simpler code
|
2020-08-04 01:40:55 +03:00 |
|
Alexey Milovidov
|
a9998746ea
|
Added fully unrolled method
|
2020-08-04 01:40:55 +03:00 |
|