mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Fix misc-misplaced-const clang-tidy warning
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
parent
0610865811
commit
d8dd50a9c6
@ -169,7 +169,7 @@ bool TemplateRowInputFormat::parseRowAndPrintDiagnosticInfo(MutableColumns & col
|
|||||||
{
|
{
|
||||||
out << "Suffix does not match: ";
|
out << "Suffix does not match: ";
|
||||||
size_t last_successfully_parsed_idx = format_reader->getFormatDataIdx() + 1;
|
size_t last_successfully_parsed_idx = format_reader->getFormatDataIdx() + 1;
|
||||||
const ReadBuffer::Position row_begin_pos = buf->position();
|
auto * const row_begin_pos = buf->position();
|
||||||
bool caught = false;
|
bool caught = false;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user