Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
azimafroozeh committed Sep 13, 2024
1 parent afde79c commit 16b8f78
Show file tree
Hide file tree
Showing 14 changed files with 88 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:

- name: Test
working-directory: ${{github.workspace}}/test_build_${{ matrix.build_type }}
run: ctest -j 96 --stop-on-failure --output-on-failure --timeout 5000
run: ctest -j 10 --stop-on-failure --output-on-failure --timeout 5000



Expand Down
44 changes: 44 additions & 0 deletions data/include/data/NextiaJD.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#ifndef DATA_NEXTIAJD_HPP
#define DATA_NEXTIAJD_HPP

#include "fls/std/string.hpp"

namespace fastlanes {

// clang-format off
class NextiaJD {
public:
static constexpr string_view all_anonymized_2015_11_2017_03 {FASTLANES_DATA_DIR "/NextiaJD/tables/all_anonymized_2015_11_2017_03"}; //NOLINT
static constexpr string_view artists {FASTLANES_DATA_DIR "/NextiaJD/tables/artists"}; //NOLINT
static constexpr string_view az {FASTLANES_DATA_DIR "/NextiaJD/tables/az"}; //NOLINT
static constexpr string_view business_licences {FASTLANES_DATA_DIR "/NextiaJD/tables/business_licences"}; //NOLINT
static constexpr string_view Chicago_Crimes_2001_to_2004 {FASTLANES_DATA_DIR "/NextiaJD/tables/Chicago_Crimes_2001_to_2004"}; //NOLINT
static constexpr string_view Chicago_Crimes_2005_to_2007 {FASTLANES_DATA_DIR "/NextiaJD/tables/Chicago_Crimes_2005_to_2007"}; //NOLINT
static constexpr string_view Chicago_Crimes_2012_to_2017 {FASTLANES_DATA_DIR "/NextiaJD/tables/Chicago_Crimes_2012_to_2017"}; //NOLINT
static constexpr string_view comments {FASTLANES_DATA_DIR "/NextiaJD/tables/comments"}; //NOLINT
static constexpr string_view Consumer_Complaints {FASTLANES_DATA_DIR "/NextiaJD/tables/Consumer_Complaints"}; //NOLINT
static constexpr string_view econbiz {FASTLANES_DATA_DIR "/NextiaJD/tables/econbiz"}; //NOLINT
static constexpr string_view eo2 {FASTLANES_DATA_DIR "/NextiaJD/tables/eo2"}; //NOLINT
static constexpr string_view eo3 {FASTLANES_DATA_DIR "/NextiaJD/tables/eo3"}; //NOLINT
static constexpr string_view examiner_date_text {FASTLANES_DATA_DIR "/NextiaJD/tables/examiner_date_text"}; //NOLINT
static constexpr string_view examiner_date_tokens {FASTLANES_DATA_DIR "/NextiaJD/tables/examiner_date_tokens"}; //NOLINT
static constexpr string_view glassdoor_photos {FASTLANES_DATA_DIR "/NextiaJD/tables/glassdoor_photos"}; //NOLINT
static constexpr string_view Homo_sapiens_GRCh38_92 {FASTLANES_DATA_DIR "/NextiaJD/tables/Homo_sapiens_GRCh38_92"}; //NOLINT
static constexpr string_view news_week_17aug24 {FASTLANES_DATA_DIR "/NextiaJD/tables/news_week_17aug24"}; //NOLINT
static constexpr string_view otp {FASTLANES_DATA_DIR "/NextiaJD/tables/otp"}; //NOLINT
static constexpr string_view plays {FASTLANES_DATA_DIR "/NextiaJD/tables/plays"}; //NOLINT
static constexpr string_view previous_application {FASTLANES_DATA_DIR "/NextiaJD/tables/previous_application"}; //NOLINT
static constexpr string_view property_tax_report {FASTLANES_DATA_DIR "/NextiaJD/tables/property_tax_report"}; //NOLINT
static constexpr string_view reviews_detailed {FASTLANES_DATA_DIR "/NextiaJD/tables/reviews_detailed"}; //NOLINT
static constexpr string_view reviews_summary {FASTLANES_DATA_DIR "/NextiaJD/tables/reviews_summary"}; //NOLINT
static constexpr string_view saudi_hourly_weather_data {FASTLANES_DATA_DIR "/NextiaJD/tables/saudi_hourly_weather_data"}; //NOLINT
static constexpr string_view train_balanced_sarcasm {FASTLANES_DATA_DIR "/NextiaJD/tables/train_balanced_sarcasm"}; //NOLINT
static constexpr string_view trainView {FASTLANES_DATA_DIR "/NextiaJD/tables/trainView"}; //NOLINT
static constexpr string_view us_perm_visas {FASTLANES_DATA_DIR "/NextiaJD/tables/us_perm_visas"}; //NOLINT
static constexpr string_view wowah_data {FASTLANES_DATA_DIR "/NextiaJD/tables/wowah_data"}; //NOLINT
static constexpr string_view yellow_tripdata_2019_01 {FASTLANES_DATA_DIR "/NextiaJD/tables/yellow_tripdata_2019_01"}; //NOLINT

};
} // namespace fastlanes

#endif // DATA_NEXTIAJD_HPP
16 changes: 16 additions & 0 deletions data/include/data/clickbench.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef DATA_CLICKBENCH_HPP
#define DATA_CLICKBENCH_HPP

#include "fls/std/string.hpp"

namespace fastlanes {

// clang-format off
class clickbench {
public:
static constexpr string_view hits {FASTLANES_DATA_DIR "/clickbench/hits"}; //NOLINT

};
} // namespace fastlanes

#endif // DATA_CLICKBENCH_HPP
10 changes: 5 additions & 5 deletions data/include/data/fastlanes_data.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#ifndef DATA_FASTLANES_DATA_HPP
#define DATA_FASTLANES_DATA_HPP

#include "data/footer/NextiaJD.hpp"
#include "data/footer/clickbench.hpp"
#include "data/footer/generated.hpp"
#include "data/footer/issue.hpp"
#include "data/footer/public_bi.hpp"
#include "data/NextiaJD.hpp"
#include "data/clickbench.hpp"
#include "data/generated.hpp"
#include "data/issue.hpp"
#include "data/public_bi.hpp"

namespace fastlanes {

Expand Down
44 changes: 0 additions & 44 deletions data/include/data/footer/NextiaJD.hpp

This file was deleted.

16 changes: 0 additions & 16 deletions data/include/data/footer/clickbench.hpp

This file was deleted.

14 changes: 0 additions & 14 deletions data/include/data/footer/issue.hpp

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef DATA_FOOTER_GENERATED_HPP
#define DATA_FOOTER_GENERATED_HPP

#include "fls/table/dir.hpp"
#include "fls/std/string.hpp"

namespace fastlanes {

Expand Down
14 changes: 14 additions & 0 deletions data/include/data/issue.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#ifndef DATA_ISSUE_HPP
#define DATA_ISSUE_HPP

#include "fls/std/string.hpp"

namespace fastlanes {

class Issue {
public:
static constexpr string_view ISSUE76 {FASTLANES_DATA_DIR "/issue/tables/issue_76/"};
};
} // namespace fastlanes

#endif // DATA_ISSUE_HPP
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef DATA_FOOTER_PUBLIC_BI_HPP
#define DATA_FOOTER_PUBLIC_BI_HPP
#ifndef DATA_PUBLIC_BI_HPP
#define DATA_PUBLIC_BI_HPP

#include "fls/std/string.hpp"

Expand Down Expand Up @@ -48,4 +48,4 @@ class public_bi {
};
} // namespace fastlanes

#endif // DATA_FOOTER_PUBLIC_BI_HPP
#endif // DATA_PUBLIC_BI_HPP
2 changes: 1 addition & 1 deletion test/src/clickbench_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "data/footer/clickbench.hpp"
#include "data/clickbench.hpp"
#include "test/tester.hpp"

namespace fastlanes {
Expand Down
2 changes: 1 addition & 1 deletion test/src/issue_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "data/footer/issue.hpp"
#include "data/issue.hpp"
#include "test/tester.hpp"

namespace fastlanes {
Expand Down
2 changes: 1 addition & 1 deletion test/src/nextiajd_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "data/footer/NextiaJD.hpp"
#include "data/NextiaJD.hpp"
#include "fastlanes.hpp"
#include "test/tester.hpp"

Expand Down
2 changes: 1 addition & 1 deletion test/src/public_bi_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "data/footer/public_bi.hpp"
#include "data/public_bi.hpp"
#include "fastlanes.hpp"
#include "test/tester.hpp"

Expand Down

0 comments on commit 16b8f78

Please sign in to comment.