Skip to content

Commit

Permalink
fix function
Browse files Browse the repository at this point in the history
  • Loading branch information
hongyunyan committed Jun 13, 2022
1 parent 7e4114c commit c3b2237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbms/src/Storages/tests/gtest_filter_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ DM::RSOperatorPtr FilterParserTest::generateRsOperator(const String table_info_j
DM::ColumnDefines columns_to_read;
{
NamesAndTypes source_columns;
std::tie(source_columns, std::ignore) = parseColumnsFromTableInfo(table_info, log->getLog());
std::tie(source_columns, std::ignore) = parseColumnsFromTableInfo(table_info);
dag_query = std::make_unique<DAGQueryInfo>(
conditions,
DAGPreparedSets(),
Expand Down
2 changes: 1 addition & 1 deletion dbms/src/TiDB/Schema/SchemaBuilder-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct TableInfo;
}
namespace DB
{
std::tuple<NamesAndTypes, Strings> parseColumnsFromTableInfo(const TiDB::TableInfo & table_info, Poco::Logger * log);
std::tuple<NamesAndTypes, Strings> parseColumnsFromTableInfo(const TiDB::TableInfo & table_info);

constexpr char tmpNamePrefix[] = "_tiflash_tmp_";

Expand Down

0 comments on commit c3b2237

Please sign in to comment.