tpch-pgsql
tpch-pgsql copied to clipboard
Implements the [TPCH benchmark](http://www.tpc.org/tpch/) for Postgres
I use docker image `postgres:latest` (postgres version is 16.0) to run `./tpch_pgsql.py load` command, and I get the result `unable to run load tables. relation "LINEITEM" does not exist`. This...
Hi, Made the following update in load_tables function in load.py file to resolve errors during load step of TPC-H benchmark execution. Updated "table" to "table.lower()" conn.copyFrom(filepath, separator="|", table=table.lower()) Thanks and...
During `prepare` phase, there is an issue with dbgen crashing occasionally, because the privileges of the generated files get mixed up. Only solution at the moment is to delete the...