Kseniia Sumarokova
|
ae214ffc5b
|
Merge pull request #32222 from kssenii/fix-remaining-window-tests
Add missing timezones to some tests
|
2021-12-04 12:29:06 +03:00 |
|
alexey-milovidov
|
d4c7f24744
|
Merge pull request #32203 from Algunenano/master_i32186
Add test for #32186
|
2021-12-04 00:54:21 +03:00 |
|
kssenii
|
1cc5dd7979
|
Fix
|
2021-12-03 23:36:35 +03:00 |
|
Kseniia Sumarokova
|
d38d2ba14f
|
Merge pull request #32178 from kssenii/fix-window-view-tests
Fix window view tests
|
2021-12-03 18:45:44 +03:00 |
|
Raúl Marín
|
d1f0b249d3
|
Fix style
|
2021-12-03 14:50:33 +01:00 |
|
Raúl Marín
|
0c1e89b043
|
Add test
|
2021-12-03 14:18:01 +01:00 |
|
kssenii
|
adaa32b41b
|
Fix inner table name
|
2021-12-03 15:52:57 +03:00 |
|
kssenii
|
0470525ea3
|
Fix
|
2021-12-03 13:39:27 +03:00 |
|
Maksim Kita
|
ca2a70cd8d
|
Merge pull request #32080 from azat/cast-fix-ubsan
Fix CAST from Nullable with cast_keep_nullable
|
2021-12-03 13:05:38 +03:00 |
|
Kruglov Pavel
|
17d6f539b3
|
Merge pull request #32019 from azat/dist-desc
Fix excessive DESC TABLE for remote() over identifier
|
2021-12-03 12:15:05 +03:00 |
|
Maksim Kita
|
74979a5f01
|
Merge pull request #31095 from amosbird/addprojection
Function name normalization for ALTER queries
|
2021-12-03 12:07:07 +03:00 |
|
SuperDJY
|
5d7dfc6eb9
|
fix storage join settings with persistency (#32066)
|
2021-12-03 12:06:58 +03:00 |
|
Kruglov Pavel
|
3d047747ed
|
Merge pull request #32123 from Avogar/fix-tests
Change test 02117_custom_separated_with_names_and_types
|
2021-12-03 12:06:50 +03:00 |
|
Azat Khuzhin
|
344298f403
|
Fix CAST from Nullable with cast_keep_nullable
UBsan report [1]:
SELECT toUInt32OrDefault(toNullable(0)) SETTINGS cast_keep_nullable = 1
../src/Common/assert_cast.h:50:12: runtime error: downcast of address 0x000029461170 which does not point to an object of type 'const DB::ColumnNullable'
0x000029461170: note: object is of type 'DB::ColumnVector<unsigned int>'
00 00 00 00 a0 51 3d 09 00 00 00 00 01 00 00 00 00 00 00 00 a0 3f 4e 29 00 00 00 00 a4 3f 4e 29
^~~~~~~~~~~~~~~~~~~~~~~
vptr for 'DB::ColumnVector<unsigned int>'
0 0x1e3e279d in DB::ColumnNullable const& assert_cast<DB::ColumnNullable const&, DB::IColumn const&>(DB::IColumn const&) obj-x86_64-linux-gnu/../src/Common/assert_cast.h:50:12
1 0x1e3e279d in DB::ColumnNullable::insertRangeFrom(DB::IColumn const&, unsigned long, unsigned long) obj-x86_64-linux-gnu/../src/Columns/ColumnNullable.cpp:167:43
2 0x12db4507 in DB::FunctionCastOrDefault::executeImpl() const (/src/ch/tmp/32019/clickhouse-ubsan+0x12db4507)
[1]: https://s3.amazonaws.com/clickhouse-test-reports/32019/9e1222a50b1805f696f4205e451365f8acdbc8a5/fuzzer_astfuzzerubsan,actions//report.html
And w/o -fsanitize=undefined:
SELECT toUInt32OrDefault(toNullable(1), toNullable(toUInt32(1))) SETTINGS cast_keep_nullable = 1
Received exception:
Code: 12. DB::Exception: Parameters start = 0, length = 1 are out of bound in ColumnVector<T>::insertRangeFrom method (data.size() = 0).: While processing toUInt32OrDefault(toNullable(1), toNullable(toUInt32(1))). (PARAMETER_OUT_OF_BOUND)
|
2021-12-03 02:02:42 +03:00 |
|
Anton Popov
|
f6be3d16fd
|
Merge pull request #24820 from kssenii/versioning
Versioning of aggregate function states
|
2021-12-03 01:41:44 +03:00 |
|
Kruglov Pavel
|
afd74aa166
|
Update 02117_custom_separated_with_names_and_types.sh
|
2021-12-02 18:15:50 +03:00 |
|
Nikolai Kochetov
|
4d10762727
|
Remove 02116_global_in_time_limit.
|
2021-12-02 16:05:06 +03:00 |
|
avogar
|
27e6e063d0
|
Change test 02117_custom_separated_with_names_and_types
|
2021-12-02 15:06:15 +03:00 |
|
Kruglov Pavel
|
049b2c0c14
|
Merge pull request #31072 from MaxWk/feature-support-bool-type
Feature support bool type
|
2021-12-02 14:50:29 +03:00 |
|
Anton Popov
|
a79dbb6b6a
|
Merge pull request #32079 from Avogar/parse-plus-in-float
Allow plus before Float32/Float64
|
2021-12-02 14:03:48 +03:00 |
|
Maksim Kita
|
a426ed0a5a
|
Merge pull request #31800 from kitaisreal/dict-get-with-type-nullable-fix
Function dictGet with type Nullable fix
|
2021-12-02 12:27:47 +03:00 |
|
kssenii
|
8edf146687
|
Merge branch 'master' of github.com:ClickHouse/ClickHouse into versioning
|
2021-12-02 07:57:14 +00:00 |
|
Azat Khuzhin
|
f74d5750eb
|
Update 01455_opentelemetry_distributed reference
|
2021-12-01 22:52:20 +03:00 |
|
Azat Khuzhin
|
4535232f4a
|
Fix excessive DESC TABLE for remote() over identifier
Fixes: #14228
|
2021-12-01 22:52:20 +03:00 |
|
avogar
|
e2eea4f361
|
Allow plus before Float32/Float64
|
2021-12-01 21:20:00 +03:00 |
|
tavplubix
|
77c946d307
|
Merge pull request #32050 from ClickHouse/fix_test_00925
Fix flaky test 00925
|
2021-12-01 20:38:30 +03:00 |
|
Alexander Tokmakov
|
4c7fba49e1
|
fix test
|
2021-12-01 17:59:26 +03:00 |
|
tavplubix
|
b623a387af
|
Merge pull request #31887 from ClickHouse/fix_cannot_create_empty_part
Parse partition key value from `partition_id` when need to create part in empty partition
|
2021-12-01 15:38:46 +03:00 |
|
Kruglov Pavel
|
cbfd77a394
|
Merge pull request #31839 from loneylee/master
Fix a bug about function transform with decimal args
|
2021-12-01 12:56:41 +03:00 |
|
Maksim Kita
|
44ff739854
|
Added test
|
2021-12-01 11:32:42 +03:00 |
|
Kseniia Sumarokova
|
3ab014d796
|
Merge pull request #31648 from michael1589/master
basic access authentication for http/https
|
2021-12-01 09:47:55 +03:00 |
|
alexey-milovidov
|
1f9b542ee9
|
Merge pull request #32003 from cmsxbc/support-postgresql-style-alter-modify-column
Support PostgreSQL style ALTER MODIFY COLUMN
|
2021-12-01 04:10:41 +03:00 |
|
Anton Popov
|
21c0aa4a1b
|
Merge pull request #31823 from amosbird/fixnullablekey
Fix invalid cast of nullable type when nullable primary key is used
|
2021-11-30 21:44:27 +03:00 |
|
MaxWk
|
02ce70f738
|
fix ci check
|
2021-12-01 00:13:11 +08:00 |
|
Kseniia Sumarokova
|
3c348a2998
|
Merge pull request #8331 from Vxider/window-view
Support for Stream Processing
|
2021-11-30 18:20:12 +03:00 |
|
cmsxbc
|
366ee3deba
|
Support PostgreSQL style ALTER MODIFY COLUMN
|
2021-11-30 21:07:14 +08:00 |
|
Anton Popov
|
53559523da
|
Merge pull request #31694 from Algunenano/speedup_avg_sumcount
Speedup avg and sumCount aggregate functions
|
2021-11-30 15:55:15 +03:00 |
|
michael1589
|
92feada9e6
|
Merge branch 'ClickHouse:master' into master
|
2021-11-30 20:48:10 +08:00 |
|
Kseniia Sumarokova
|
18e200b1e2
|
Merge pull request #31967 from ucasfl/fix-filelog
Fix FileLog engine unnesessary create meta data directory when create table failed
|
2021-11-30 15:38:05 +03:00 |
|
mergify[bot]
|
d729cd50b3
|
Merge branch 'master' into fixnullablekey
|
2021-11-30 11:44:35 +00:00 |
|
tavplubix
|
78224ef273
|
Merge pull request #31738 from ClickHouse/fix_segfault_on_attach_partition
Fix segfault on attach parititon
|
2021-11-30 14:32:50 +03:00 |
|
Kseniia Sumarokova
|
a515767c51
|
Merge pull request #31741 from kssenii/fix-positional-args-setting
Fix aliases with positional args enabled
|
2021-11-30 13:17:45 +03:00 |
|
michael1589
|
93efc75dc7
|
Merge branch 'ClickHouse:master' into master
|
2021-11-30 15:05:24 +08:00 |
|
feng lv
|
2c51b10ff3
|
add tests
|
2021-11-30 06:31:40 +00:00 |
|
feng lv
|
0efabb39cf
|
Fix FileLog engine unnesessary create meta data directory when create table failed.
fix style
|
2021-11-30 04:39:55 +00:00 |
|
alexey-milovidov
|
bab8ea144b
|
Merge pull request #31866 from ClickHouse/fix-31687
Support toUInt8/toInt8 for if constant condition optimization.
|
2021-11-30 05:54:58 +03:00 |
|
mergify[bot]
|
c8533aab07
|
Merge branch 'master' into fix-positional-args-setting
|
2021-11-29 20:53:55 +00:00 |
|
Alexander Tokmakov
|
2cf4b51029
|
fix
|
2021-11-29 21:54:46 +03:00 |
|
Raúl Marín
|
f3a22166a1
|
Merge remote-tracking branch 'blessed/master' into speedup_avg_sumcount
|
2021-11-29 19:50:28 +01:00 |
|
Kseniia Sumarokova
|
c7a8ad69c4
|
Merge pull request #31825 from azat/query_views_log-test
Cover query_views_log
|
2021-11-29 16:10:56 +03:00 |
|