Skip to content

Commit

Permalink
Add more const
Browse files Browse the repository at this point in the history
  • Loading branch information
JayjeetAtGithub committed Jul 17, 2024
1 parent f635b71 commit e2f4341
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/benchmarks/common/cudf_datagen/schema.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,5 @@ auto const schema_part = std::vector<std::string>{"p_partkey",
"p_retailprice",
"p_comment"};

// NOTE: This schema is currently incomplete
auto const schema_partsupp =
std::vector<std::string>{"ps_partkey", "ps_availqty", "ps_supplycost", "ps_comment"};
auto const schema_partsupp = std::vector<std::string>{
"ps_partkey", "ps_suppkey", "ps_availqty", "ps_supplycost", "ps_comment"};

0 comments on commit e2f4341

Please sign in to comment.