Nikita Mikhaylov
|
82ba97c3a7
|
More explicit template instantiations (#60730)
|
2024-03-07 17:16:13 +01:00 |
|
Maksim Kita
|
310dc22266
|
FunctionHelpers remove areTypesEqual function
|
2023-09-14 13:51:06 +03:00 |
|
Alexander Tokmakov
|
69790b76b2
|
fix the same issue in other functions
|
2023-04-12 20:36:23 +02:00 |
|
Yakov Olkhovskiy
|
4d144be39c
|
replace domain IP types (IPv4, IPv6) with native
|
2022-11-14 14:17:17 +00:00 |
|
Li Yin
|
4088c0a7f3
|
Automated function registration
Automated register all functions with below naming convention by
iterating through the symbols:
void DB::registerXXX(DB::FunctionFactory &)
|
2022-07-29 15:39:50 +08:00 |
|
avogar
|
0311dbb422
|
Add default implementation for Nothing, support arrays of nullable for arrayFilter and similar functions
|
2022-05-12 15:15:31 +00:00 |
|
Antonio Andelic
|
9990abb76a
|
Use compile-time check for Exception messages, fix wrong messages
|
2022-03-29 13:16:11 +00:00 |
|
Maksim Kita
|
b1a956c5f1
|
clang-tidy check performance-move-const-arg fix
|
2022-03-02 18:15:27 +00:00 |
|
Maksim Kita
|
2d3f773147
|
Function accurateCastOrDefault remove separate branch
|
2021-12-03 13:25:55 +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 |
|
Maksim Kita
|
fe6bb1bb1e
|
Fixed tests
|
2021-10-01 17:33:14 +03:00 |
|
Maksim Kita
|
b8702e613d
|
Fixed tests
|
2021-10-01 12:37:04 +03:00 |
|
Maksim Kita
|
c2407fee06
|
Fixed tests
|
2021-09-30 14:35:24 +03:00 |
|
Maksim Kita
|
a5151fb49b
|
Function accurateCastOrDefault updated implementation
|
2021-09-29 17:52:08 +03:00 |
|
Maksim Kita
|
ebb2f93a84
|
Updated accurateCastOrDefault implementation
|
2021-04-14 01:23:42 +03:00 |
|