Skip to content

Commit

Permalink
Rename datasets.h to table_config.h
Browse files Browse the repository at this point in the history
  • Loading branch information
vs9h committed Dec 5, 2023
1 parent b7f8a0a commit 4978ff7
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/tests/all_tables_config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "datasets.h"
#include "table_config.h"

namespace tests {
extern TableConfig const kWDC_astronomical;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/tests/test_ac_algorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "algorithms/algebraic_constraints/bin_operation_enum.h"
#include "algorithms/algo_factory.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"
#include "types.h"

namespace {
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_algo_interfaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "algorithms/fd/pyro/pyro.h"
#include "config/error/type.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {

Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_apriori.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "algorithms/algo_factory.h"
#include "algorithms/association_rules/apriori.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace fs = std::filesystem;

Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_cfd_algos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "algorithms/cfd/enums.h"
#include "algorithms/cfd/fd_first_algorithm.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {
namespace fs = std::filesystem;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_cfd_relation_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <gtest/gtest.h>

#include "algorithms/cfd/model/cfd_relation_data.h"
#include "datasets.h"
#include "parser/csv_parser/csv_parser.h"
#include "table_config.h"

namespace tests {

Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_data_stats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "algorithms/algo_factory.h"
#include "algorithms/statistics/data_stats.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {
namespace mo = model;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_fd_algorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#include "algorithms/fd/hyfd/hyfd.h"
#include "algorithms/fd/pyro/pyro.h"
#include "algorithms/fd/tane/tane.h"
#include "datasets.h"
#include "model/table/relational_schema.h"
#include "table_config.h"
#include "test_fd_util.h"

using std::string, std::vector;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_fd_mine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include "algorithms/fd/tane/tane.h"
#include "config/error/type.h"
#include "config/names.h"
#include "datasets.h"
#include "model/table/relational_schema.h"
#include "table_config.h"
#include "test_fd_util.h"

using ::testing::ContainerEq, ::testing::Eq;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_fd_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "all_tables_config.h"
#include "config/error/type.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {
template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_fd_verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#include "algo_factory.h"
#include "builtin.h"
#include "config/indices/type.h"
#include "datasets.h"
#include "fd/fd_verifier/fd_verifier.h"
#include "fd/fd_verifier/stats_calculator.h"
#include "table_config.h"

namespace {
using namespace algos::fd_verifier;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_metric_verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "algorithms/metric/enums.h"
#include "algorithms/metric/metric_verifier.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {
namespace onam = config::names;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_typed_column_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#include <gtest/gtest.h>

#include "algorithms/fd/fd_algorithm.h"
#include "datasets.h"
#include "model/table/column_layout_typed_relation_data.h"
#include "parser/csv_parser/csv_parser.h"
#include "table_config.h"

namespace tests {

Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_typo_miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "algorithms/algo_factory.h"
#include "algorithms/pipelines/typo_miner/typo_miner.h"
#include "config/names.h"
#include "datasets.h"
#include "table_config.h"

namespace tests {
namespace onam = config::names;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_ucc_algorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "algorithms/ucc/ucc_algorithm.h"
#include "all_tables_config.h"
#include "config/thread_number/type.h"
#include "datasets.h"
#include "table_config.h"

std::ostream& operator<<(std::ostream& os, Vertical const& v) {
os << v.ToString();
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include "datasets.h"
#include "fd/pyro/model/list_agree_set_sample.h"
#include "levenshtein_distance.h"
#include "model/table/agree_set_factory.h"
#include "model/table/column_layout_relation_data.h"
#include "model/table/identifier_set.h"
#include "table_config.h"

namespace tests {

Expand Down

0 comments on commit 4978ff7

Please sign in to comment.