Skip to content

Commit 95f96c9

Browse files
committed
fix(sm_manager): 添加当前系统路径输出以便调试CSV数据加载
1 parent e505d25 commit 95f96c9

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

TPCC-Tester

src/system/sm_manager.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,7 @@ void SmManager::set_output_file(bool enable) { is_output_file_ = enable; }
612612
void SmManager::load_csv_data(const std::string& table_name, const std::string& file_path) {
613613
// INFO("Loading CSV data into table: {}, from file: {}", table_name, file_path);
614614
// 1. 检查表是否存在
615+
std::cerr << "system path: " << get_current_dir_name() << std::endl;
615616
if (!db_.is_table(table_name)) {
616617
throw TableNotFoundError(table_name);
617618
}

0 commit comments

Comments
 (0)