tpch-kit icon indicating copy to clipboard operation
tpch-kit copied to clipboard

TPC-H benchmark kit with some modifications/additions

Results 5 tpch-kit issues
Sort by recently updated
recently updated
newest added

Because `qgen` is essentially a find-and-replace, it was outputting PostgreSQL SQL like ``` order by l_returnflag, l_linestatus; limit -1; order by revenue desc; limit 20; ``` which has the following...

`qgen` is not working for PostgreSQL due to the following reasons. The output has: - negative limits. - the `limit` clause outside the `select` statement. The following is an example...

This patch adds `-std=gnu99` flag to `gcc` to avoid compilation errors due to difference in C standards. For example, at default `gnu++17` on `gcc` version `15`, there is the following...

Follow the instruction to build dbgen. Then run below command to stream generated table data to stdout. But the trailing delimiter will be added for every row. Reproduce command is...