├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── iceis2012.pdf ├── images ├── TPC-H_Datamodel.png └── tpch_process.png ├── query_root ├── perf_query_template │ ├── 1.sql │ ├── 10.sql │ ├── 11.sql │ ├── 12.sql │ ├── 13.sql │ ├── 14.sql │ ├── 15.sql │ ├── 16.sql │ ├── 17.sql │ ├── 18.sql │ ├── 19.sql │ ├── 2.sql │ ├── 20.sql │ ├── 21.sql │ ├── 22.sql │ ├── 3.sql │ ├── 4.sql │ ├── 5.sql │ ├── 6.sql │ ├── 7.sql │ ├── 8.sql │ └── 9.sql └── prep_query │ ├── create_idx.sql │ └── create_tbl.sql ├── requirements.txt ├── tests ├── test_common.py ├── test_load_after.py ├── test_prepare_after.py ├── test_prepare_before.py ├── test_query_after.py └── test_tpch_pgsql.py ├── tpch4pgsql ├── load.py ├── postgresqldb.py ├── prepare.py ├── query.py └── result.py └── tpch_pgsql.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /iceis2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/iceis2012.pdf -------------------------------------------------------------------------------- /images/TPC-H_Datamodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/images/TPC-H_Datamodel.png -------------------------------------------------------------------------------- /images/tpch_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/images/tpch_process.png -------------------------------------------------------------------------------- /query_root/perf_query_template/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/1.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/10.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/11.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/12.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/13.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/14.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/15.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/16.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/17.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/18.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/19.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/2.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/20.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/21.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/22.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/3.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/4.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/5.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/6.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/7.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/8.sql -------------------------------------------------------------------------------- /query_root/perf_query_template/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/perf_query_template/9.sql -------------------------------------------------------------------------------- /query_root/prep_query/create_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/prep_query/create_idx.sql -------------------------------------------------------------------------------- /query_root/prep_query/create_tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/query_root/prep_query/create_tbl.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2-binary 2 | mock -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_load_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_load_after.py -------------------------------------------------------------------------------- /tests/test_prepare_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_prepare_after.py -------------------------------------------------------------------------------- /tests/test_prepare_before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_prepare_before.py -------------------------------------------------------------------------------- /tests/test_query_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_query_after.py -------------------------------------------------------------------------------- /tests/test_tpch_pgsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tests/test_tpch_pgsql.py -------------------------------------------------------------------------------- /tpch4pgsql/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch4pgsql/load.py -------------------------------------------------------------------------------- /tpch4pgsql/postgresqldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch4pgsql/postgresqldb.py -------------------------------------------------------------------------------- /tpch4pgsql/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch4pgsql/prepare.py -------------------------------------------------------------------------------- /tpch4pgsql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch4pgsql/query.py -------------------------------------------------------------------------------- /tpch4pgsql/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch4pgsql/result.py -------------------------------------------------------------------------------- /tpch_pgsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data-Science-Platform/tpch-pgsql/HEAD/tpch_pgsql.py --------------------------------------------------------------------------------