tpcds
tpcds copied to clipboard
Port of TPC-DS dsdgen to Java
The number of rows for scale 11 is lower than for scale 10 ``` Table.ITEM.getScalingInfo().getRowCountForScale(10); // returns 51 Table.ITEM.getScalingInfo().getRowCountForScale(11); // returns 9 ```
- name typos fixed according to tpcds queries in spark
There is a hard-coded 1 million row counts threshold of `Parallel`, which is not friendly for distributed computing engines to generate data in parallel. https://github.com/trinodb/tpcds/blob/8a02abbba864feedc2afd078c8153d66a95bb2d4/src/main/java/io/trino/tpcds/Parallel.java#L26-L36 For example, in Spark, generate...