Nikolay Degterinsky
d29193da51
Also prohibit complex types with Object('json')
2023-05-05 18:45:00 +00:00
Alexey Milovidov
52c99f5482
Merge pull request #49505 from myrrc/improvement/play-plaintext-password
...
Allow passing password in URL for play.html
2023-05-05 21:36:34 +03:00
Alexey Milovidov
5e2221bc5d
Update play.html
2023-05-05 21:36:10 +03:00
Dmitry Novik
2536dfad3a
Fix build
2023-05-05 18:21:25 +00:00
Robert Schulze
bba85c9c25
Improve docs
2023-05-05 18:11:33 +00:00
Azat Khuzhin
157da5b8cb
Optimize PODArray::resize_fill() callers ( #49459 )
...
* Use PODArray::resize_fill() without initialize whenever it is possible
resize_fill() with initializer uses std::fill() which is a loop over all
elements, while resize_fill() without argument uses memset().
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
* Optimize ColumnFixedString::insert/insertFrom
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
---------
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-05-05 20:01:20 +02:00
Michael Kolupaev
396157dcad
Allow reordering by default when reading from file/s3/url
2023-05-05 10:55:45 -07:00
Dmitry Novik
a3b3b78eb0
EXPECTED_TO_FAIL -> NOT_FAILED
2023-05-05 17:53:15 +00:00
Dmitry Novik
0baaaaba42
KNOWN_BROKEN -> BROKEN
2023-05-05 17:43:54 +00:00
Dmitry Novik
02520e9358
Make EXPRECTED_TO_FAIL red
2023-05-05 17:37:52 +00:00
Antonio Andelic
edf658010c
Add comments for enums
2023-05-05 19:09:32 +02:00
Kseniia Sumarokova
dfd8826254
Update 02731_zero_objects_in_metadata.sh
2023-05-05 18:59:58 +02:00
ltrk2
20cd799e51
Add CMake option for BOOST_USE_UCONTEXT
2023-05-05 16:29:21 +00:00
Robert Schulze
945a5130cf
Simplify simplify simplify
2023-05-05 16:28:51 +00:00
Dmitry Novik
3fe0cb28c4
Update broken_tests.txt
2023-05-05 16:21:49 +00:00
Dmitry Novik
5422e3058f
Use more specific test status
2023-05-05 16:19:01 +00:00
Nikolay Degterinsky
f361d96f21
Forbid the change of data type of Object('json') column
2023-05-05 15:51:17 +00:00
Dmitry Novik
b13e3abc4d
Improve CI check for Analyzer
2023-05-05 15:17:16 +00:00
Dmitry Novik
951bef4fd2
Fixmemory counting in TCPHandler
2023-05-05 15:10:50 +00:00
Alexey Milovidov
3a33f0eefb
Merge pull request #49531 from ClickHouse/remove-garbage-hdfs
...
Remove garbage from HDFS
2023-05-05 17:47:23 +03:00
Igor Nikonov
7bec75a59c
Use the same queries with '*' instead of specifying columns
2023-05-05 14:36:45 +00:00
Robert Schulze
aba5db40a1
Merge remote-tracking branch 'origin/master' into rs/qc-totals-extremes2
2023-05-05 14:11:10 +00:00
Nikolay Degterinsky
9934eae315
Merge pull request #48983 from evillique/mongodb-array-type
...
Add `Array` data type to MongoDB
2023-05-05 16:02:07 +02:00
Robert Schulze
f7e31a9664
More protection against SQL injection
2023-05-05 13:58:08 +00:00
Igor Nikonov
bb1dd0ff89
Remove test from broken_test
2023-05-05 13:56:48 +00:00
Nikolay Degterinsky
7a727bbbe3
Merge pull request #49520 from IvanTakarlikov-st/it-grammar-fixes
...
Fix some grammar mistakes in documentation, code and tests
2023-05-05 15:45:58 +02:00
kssenii
6bc302959b
Better
2023-05-05 14:55:52 +02:00
Han Fei
9c19bd8179
Merge branch 'master' into patch-1
2023-05-05 14:41:40 +02:00
kssenii
1050754432
Fix
2023-05-05 14:41:35 +02:00
Robert Schulze
d35ff02b8b
Fix writeAnyEscapedString if quote_character is a meta character
...
Function writeAnyEscapedString() escapes
- quote_character with itself or with a backslash, depending on template
parameter escape_quote_with_quote
- some metacharacters with backslash.
If quote_character is a metacharacter, the code previously always quoted
with backslash, independently of escape_quote_with_quote. I didn't find
places which do this but better be on the safe side.
2023-05-05 12:40:48 +00:00
Igor Nikonov
427d336e62
Update test
2023-05-05 12:22:37 +00:00
Kseniia Sumarokova
ab6e49ceaf
Update 02731_zero_objects_in_metadata.sh
2023-05-05 14:00:18 +02:00
Kseniia Sumarokova
30464b9397
Merge pull request #49464 from kssenii/allow-to-get-current-az
...
Add method `getCurrentAvailabilityZone` to `AWSEC2MetadataClient`
2023-05-05 13:57:34 +02:00
Kseniia Sumarokova
478542c6d7
Update ErrorCodes.cpp
2023-05-05 13:56:10 +02:00
Kseniia Sumarokova
221796e053
Merge branch 'master' into allow-to-get-current-az
2023-05-05 13:55:14 +02:00
Igor Nikonov
ce35709300
Make test stable for old/new analyzer
...
00597_push_down_predicate_long
2023-05-05 11:52:34 +00:00
xmy
2bcd1e5847
fix
2023-05-05 19:22:19 +08:00
wangxiaobo
f704c0dfec
Implement SYSTEM DROP REPLICA from auxillary ZooKeeper clusters ( #48932 )
...
* multiple zookeeper drop replica bug fix.
* add an integration test.
* format code.
* set stay_alive=True for test.
* style check bug fix.
* add check for is_active
* format code
* remove table_settings and has_metadata_out param.
2023-05-05 14:11:11 +03:00
Kseniia Sumarokova
7c203dbcd2
Merge pull request #49481 from snikch/master
...
Fix postgres database setting
2023-05-05 12:53:51 +02:00
Kuba Kaflik
8a6084abd4
Fix syntax error for TableFunctionS3
2023-05-05 12:41:30 +02:00
Anton Popov
c87a6e8e7d
Merge pull request #49117 from CurtizJ/limit-mutations
...
Add settings to delay or throw in case of too many mutations
2023-05-05 12:18:57 +02:00
Ilya Yatsishin
2414dd9a06
Merge pull request #49534 from ClickHouse/remove-garbage-pretty
...
Remove garbage from Pretty format
2023-05-05 12:15:38 +02:00
xmy
180bb9f13d
fix
2023-05-05 18:05:09 +08:00
Bulat Gaifullin
8556493c9e
Update LRUFileCachePriority.cpp
2023-05-05 12:00:24 +03:00
Bulat Gaifullin
a222c4c5a1
Update LRUFileCachePriority.h
2023-05-05 11:59:59 +03:00
Bulat Gaifullin
82e6ce22fa
Update IFileCachePriority.h
...
remove extra semicolumn
2023-05-05 11:59:37 +03:00
Bulat Gaifullin
3fe8c9e6ed
Remove extra semicolumns
2023-05-05 11:54:11 +03:00
Kuba Kaflik
ec30b0f2be
Add function inline documentation
2023-05-05 10:14:06 +02:00
Sergei Trifonov
f6c433cdd2
Merge pull request #49521 from ClickHouse/serxa-patch-3
2023-05-05 08:28:55 +02:00
Alexey Milovidov
f77d087404
Merge branch 'master' into low-cardinality-fix-progress
2023-05-05 06:43:37 +02:00