should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
//===----------------------------------------------------------------------===//
// DuckDB
//
// result_comparison.hpp
//
//
//===----------------------------------------------------------------------===//
#pragma once
#include "duckdb.hpp"
#include "sqllogic_command.hpp"
namespace duckdb {
class SQLLogicTestRunner;
class SQLLogicTestLogger;
class TestResultHelper {
public:
TestResultHelper(SQLLogicTestRunner &runner) : runner(runner) {
}
SQLLogicTestRunner &runner;
public:
bool CheckQueryResult(const Query &query, ExecuteContext &context,
duckdb::unique_ptr<MaterializedQueryResult> owned_result);
bool CheckStatementResult(const Statement &statement, ExecuteContext &context,
duckdb::unique_ptr<MaterializedQueryResult> owned_result);
string SQLLogicTestConvertValue(Value value, LogicalType sql_type, bool original_sqlite_test);
void DuckDBConvertResult(MaterializedQueryResult &result, bool original_sqlite_test, vector<string> &out_result);
static bool ResultIsHash(const string &result);
static bool ResultIsFile(string result);
void SortQueryResult(SortStyle sort_style, vector<string> &result, idx_t ncols);
bool MatchesRegex(SQLLogicTestLogger &logger, string lvalue_str, string rvalue_str);
bool CompareValues(SQLLogicTestLogger &logger, MaterializedQueryResult &result, string lvalue_str,
string rvalue_str, idx_t current_row, idx_t current_column, vector<string> &values,
idx_t expected_column_count, bool row_wise, vector<string> &result_values,
bool print_error = true);
bool SkipErrorMessage(const string &message);
bool SkipLoggingSameError(const string &file_name);
vector<string> LoadResultFromFile(string fname, vector<string> names, idx_t &expected_column_count, string &error);
};
} // namespace duckdb