benchbox 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- benchbox/__init__.py +1 -1
- benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query72.tpl +1 -1
- benchbox/_binaries/tpc-ds/{darwin-x86_64/query_templates/ansi.tpl → templates/query_templates/sqlserver.tpl} +1 -1
- benchbox/_binaries/tpc-ds/templates/query_variants/README +6 -0
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query10.tpl → templates/query_variants/query10a.tpl} +13 -14
- benchbox/_binaries/tpc-ds/{darwin-x86_64/query_templates/query14.tpl → templates/query_variants/query14a.tpl} +30 -26
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query18.tpl → templates/query_variants/query18a.tpl} +40 -19
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query22.tpl → templates/query_variants/query22a.tpl} +31 -9
- benchbox/_binaries/tpc-ds/{darwin-x86_64/query_templates/query27.tpl → templates/query_variants/query27a.tpl} +23 -10
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query35.tpl → templates/query_variants/query35a.tpl} +9 -8
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query36.tpl → templates/query_variants/query36a.tpl} +24 -12
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query51.tpl → templates/query_variants/query51a.tpl} +37 -20
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query5.tpl → templates/query_variants/query5a.tpl} +15 -10
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query67.tpl → templates/query_variants/query67a.tpl} +46 -18
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query70.tpl → templates/query_variants/query70a.tpl} +31 -27
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query77.tpl → templates/query_variants/query77a.tpl} +22 -15
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query80.tpl → templates/query_variants/query80a.tpl} +22 -8
- benchbox/_binaries/tpc-ds/{linux-arm64/query_templates/query86.tpl → templates/query_variants/query86a.tpl} +22 -13
- benchbox/_binaries/tpc-h/templates/dists.dss +836 -0
- benchbox/_binaries/tpc-h/templates/queries/1.sql +28 -0
- benchbox/_binaries/tpc-h/templates/queries/10.sql +38 -0
- benchbox/_binaries/tpc-h/templates/queries/11.sql +34 -0
- benchbox/_binaries/tpc-h/templates/queries/12.sql +35 -0
- benchbox/_binaries/tpc-h/templates/queries/13.sql +27 -0
- benchbox/_binaries/tpc-h/templates/queries/14.sql +20 -0
- benchbox/_binaries/tpc-h/templates/queries/15.sql +40 -0
- benchbox/_binaries/tpc-h/templates/queries/16.sql +37 -0
- benchbox/_binaries/tpc-h/templates/queries/17.sql +24 -0
- benchbox/_binaries/tpc-h/templates/queries/18.sql +39 -0
- benchbox/_binaries/tpc-h/templates/queries/19.sql +42 -0
- benchbox/_binaries/tpc-h/templates/queries/2.sql +50 -0
- benchbox/_binaries/tpc-h/templates/queries/20.sql +44 -0
- benchbox/_binaries/tpc-h/templates/queries/21.sql +46 -0
- benchbox/_binaries/tpc-h/templates/queries/22.sql +44 -0
- benchbox/_binaries/tpc-h/templates/queries/3.sql +29 -0
- benchbox/_binaries/tpc-h/templates/queries/4.sql +28 -0
- benchbox/_binaries/tpc-h/templates/queries/5.sql +31 -0
- benchbox/_binaries/tpc-h/templates/queries/6.sql +16 -0
- benchbox/_binaries/tpc-h/templates/queries/7.sql +46 -0
- benchbox/_binaries/tpc-h/templates/queries/8.sql +44 -0
- benchbox/_binaries/tpc-h/templates/queries/9.sql +39 -0
- benchbox/_binaries/tpc-h/templates/variants/12a.sql +27 -0
- benchbox/_binaries/tpc-h/templates/variants/13a.sql +30 -0
- benchbox/_binaries/tpc-h/templates/variants/14a.sql +18 -0
- benchbox/_binaries/tpc-h/templates/variants/15a.sql +39 -0
- benchbox/_binaries/tpc-h/templates/variants/8a.sql +77 -0
- benchbox/base.py +88 -121
- benchbox/cli/benchmarks.py +3 -3
- benchbox/cli/commands/calculate_qphh.py +55 -14
- benchbox/cli/commands/checks.py +1 -4
- benchbox/cli/commands/convert.py +8 -3
- benchbox/cli/commands/metrics.py +55 -14
- benchbox/cli/commands/results.py +131 -3
- benchbox/cli/commands/run.py +157 -22
- benchbox/cli/commands/visualize.py +3 -3
- benchbox/cli/composite_params.py +1 -1
- benchbox/cli/config.py +13 -3
- benchbox/cli/database.py +3 -3
- benchbox/cli/dryrun.py +30 -4
- benchbox/cli/exceptions.py +2 -1
- benchbox/cli/execution_pipeline.py +2 -1
- benchbox/cli/orchestrator.py +25 -71
- benchbox/cli/tuning.py +1 -1
- benchbox/core/ai_primitives/benchmark.py +53 -0
- benchbox/core/ai_primitives/dataframe_operations.py +1217 -0
- benchbox/core/base_benchmark.py +90 -68
- benchbox/core/coffeeshop/queries.py +1 -1
- benchbox/core/coffeeshop/schema.py +1 -1
- benchbox/core/comparison/plotter.py +5 -4
- benchbox/core/dataframe/__init__.py +26 -0
- benchbox/core/dataframe/benchmark_suite.py +5 -4
- benchbox/core/dataframe/context.py +45 -0
- benchbox/core/dataframe/data_loader.py +180 -79
- benchbox/core/dataframe/maintenance_interface.py +866 -0
- benchbox/core/dryrun.py +152 -22
- benchbox/core/expected_results/registry.py +22 -5
- benchbox/core/manifest/io.py +4 -3
- benchbox/core/metadata_primitives/__init__.py +31 -0
- benchbox/core/metadata_primitives/benchmark.py +337 -0
- benchbox/core/metadata_primitives/dataframe_operations.py +1824 -0
- benchbox/core/platform_registry.py +134 -45
- benchbox/core/read_primitives/benchmark.py +56 -4
- benchbox/core/read_primitives/dataframe_queries.py +6547 -0
- benchbox/core/results/__init__.py +47 -6
- benchbox/core/results/builder.py +909 -0
- benchbox/core/results/database.py +5 -5
- benchbox/core/results/exporter.py +58 -96
- benchbox/core/results/filenames.py +102 -0
- benchbox/core/results/loader.py +10 -9
- benchbox/core/results/metrics.py +211 -0
- benchbox/core/results/models.py +3 -1
- benchbox/core/results/normalizer.py +346 -0
- benchbox/core/results/platform_info.py +235 -0
- benchbox/core/results/query_normalizer.py +200 -0
- benchbox/core/results/schema.py +368 -69
- benchbox/core/runner/conversion.py +2 -0
- benchbox/core/runner/dataframe_runner.py +135 -131
- benchbox/core/runner/runner.py +111 -18
- benchbox/core/schemas.py +145 -3
- benchbox/core/ssb/generator.py +14 -2
- benchbox/core/tpc_compliance.py +4 -4
- benchbox/core/tpc_metrics.py +9 -4
- benchbox/core/tpcdi/generator/manifest.py +15 -2
- benchbox/core/tpcds/benchmark/runner.py +3 -7
- benchbox/core/tpcds/c_tools.py +34 -28
- benchbox/core/tpcds/dataframe_queries/queries.py +44 -21
- benchbox/core/tpcds/generator/filesystem.py +23 -11
- benchbox/core/tpcds/generator/manager.py +3 -2
- benchbox/core/tpcds/maintenance_test.py +281 -0
- benchbox/core/tpcds/power_test.py +21 -11
- benchbox/core/tpcds/throughput_test.py +27 -9
- benchbox/core/tpcds_obt/etl/transformer.py +24 -5
- benchbox/core/tpch/dataframe_queries.py +46 -43
- benchbox/core/tpch/generator.py +21 -8
- benchbox/core/tpch/maintenance_test.py +87 -0
- benchbox/core/tpch/power_test.py +21 -5
- benchbox/core/tpch/queries.py +2 -7
- benchbox/core/tpch/streams.py +3 -19
- benchbox/core/transaction_primitives/benchmark.py +99 -0
- benchbox/core/transaction_primitives/dataframe_operations.py +1294 -0
- benchbox/core/transaction_primitives/generator.py +11 -4
- benchbox/core/visualization/__init__.py +2 -2
- benchbox/core/visualization/charts.py +4 -4
- benchbox/core/visualization/dependencies.py +1 -12
- benchbox/core/visualization/exporters.py +15 -26
- benchbox/core/visualization/result_plotter.py +90 -49
- benchbox/core/visualization/templates.py +6 -6
- benchbox/core/write_primitives/__init__.py +13 -0
- benchbox/core/write_primitives/benchmark.py +66 -0
- benchbox/core/write_primitives/dataframe_operations.py +912 -0
- benchbox/core/write_primitives/generator.py +11 -4
- benchbox/mcp/__init__.py +5 -1
- benchbox/mcp/errors.py +29 -0
- benchbox/mcp/resources/registry.py +12 -7
- benchbox/mcp/schemas.py +62 -0
- benchbox/mcp/server.py +17 -14
- benchbox/mcp/tools/__init__.py +3 -0
- benchbox/mcp/tools/analytics.py +550 -582
- benchbox/mcp/tools/benchmark.py +603 -611
- benchbox/mcp/tools/discovery.py +156 -205
- benchbox/mcp/tools/results.py +332 -533
- benchbox/mcp/tools/visualization.py +449 -0
- benchbox/platforms/__init__.py +740 -622
- benchbox/platforms/adapter_factory.py +6 -6
- benchbox/platforms/azure_synapse.py +3 -7
- benchbox/platforms/base/adapter.py +189 -49
- benchbox/platforms/base/cloud_spark/config.py +8 -0
- benchbox/platforms/base/cloud_spark/mixins.py +96 -0
- benchbox/platforms/base/cloud_spark/session.py +4 -2
- benchbox/platforms/base/cloud_spark/staging.py +15 -7
- benchbox/platforms/base/data_loading.py +315 -1
- benchbox/platforms/base/format_capabilities.py +37 -2
- benchbox/platforms/base/utils.py +6 -4
- benchbox/platforms/bigquery.py +5 -6
- benchbox/platforms/clickhouse_cloud.py +263 -0
- benchbox/platforms/databricks/adapter.py +16 -15
- benchbox/platforms/databricks/dataframe_adapter.py +4 -1
- benchbox/platforms/dataframe/__init__.py +31 -0
- benchbox/platforms/dataframe/benchmark_mixin.py +779 -0
- benchbox/platforms/dataframe/cudf_df.py +3 -3
- benchbox/platforms/dataframe/dask_df.py +3 -3
- benchbox/platforms/dataframe/datafusion_df.py +152 -15
- benchbox/platforms/dataframe/delta_lake_maintenance.py +341 -0
- benchbox/platforms/dataframe/ducklake_maintenance.py +402 -0
- benchbox/platforms/dataframe/expression_family.py +47 -8
- benchbox/platforms/dataframe/hudi_maintenance.py +437 -0
- benchbox/platforms/dataframe/iceberg_maintenance.py +605 -0
- benchbox/platforms/dataframe/modin_df.py +3 -3
- benchbox/platforms/dataframe/pandas_df.py +3 -3
- benchbox/platforms/dataframe/pandas_family.py +59 -8
- benchbox/platforms/dataframe/platform_checker.py +16 -49
- benchbox/platforms/dataframe/polars_df.py +14 -12
- benchbox/platforms/dataframe/polars_maintenance.py +630 -0
- benchbox/platforms/dataframe/pyspark_df.py +15 -0
- benchbox/platforms/dataframe/pyspark_maintenance.py +613 -0
- benchbox/platforms/datafusion.py +5 -6
- benchbox/platforms/duckdb.py +2 -1
- benchbox/platforms/fabric_warehouse.py +15 -15
- benchbox/platforms/firebolt.py +3 -2
- benchbox/platforms/influxdb/adapter.py +7 -3
- benchbox/platforms/motherduck.py +3 -2
- benchbox/platforms/onehouse/__init__.py +39 -0
- benchbox/platforms/onehouse/onehouse_client.py +509 -0
- benchbox/platforms/onehouse/quanton_adapter.py +646 -0
- benchbox/platforms/postgresql.py +5 -9
- benchbox/platforms/presto.py +2 -2
- benchbox/platforms/pyspark/session.py +3 -3
- benchbox/platforms/pyspark/sql_adapter.py +2 -3
- benchbox/platforms/redshift.py +7 -7
- benchbox/platforms/snowflake.py +4 -4
- benchbox/platforms/snowpark_connect.py +2 -1
- benchbox/platforms/trino.py +2 -2
- benchbox/release/__init__.py +17 -0
- benchbox/release/content_validation.py +745 -0
- benchbox/release/workflow.py +17 -0
- benchbox/utils/VERSION_MANAGEMENT.md +1 -1
- benchbox/utils/cloud_storage.py +7 -5
- benchbox/utils/compression.py +8 -8
- benchbox/utils/compression_mixin.py +2 -1
- benchbox/utils/data_validation.py +23 -14
- benchbox/utils/dependencies.py +47 -7
- benchbox/utils/file_format.py +407 -0
- benchbox/utils/format_converters/__init__.py +5 -1
- benchbox/utils/format_converters/ducklake_converter.py +227 -0
- benchbox/utils/format_converters/vortex_converter.py +168 -0
- benchbox/utils/tpc_compilation.py +43 -0
- benchbox/utils/version.py +14 -2
- {benchbox-0.1.0.dist-info → benchbox-0.1.1.dist-info}/METADATA +15 -15
- benchbox-0.1.1.dist-info/RECORD +839 -0
- {benchbox-0.1.0.dist-info → benchbox-0.1.1.dist-info}/WHEEL +1 -1
- benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/sqlserver.tpl +0 -37
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/README +0 -4
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/db2.tpl +0 -38
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/netezza.tpl +0 -38
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/oracle.tpl +0 -38
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query1.tpl +0 -62
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query10.tpl +0 -98
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query11.tpl +0 -119
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query12.tpl +0 -72
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query13.tpl +0 -89
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query15.tpl +0 -56
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query16.tpl +0 -76
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query17.tpl +0 -80
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query18.tpl +0 -73
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query19.tpl +0 -64
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query2.tpl +0 -94
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query20.tpl +0 -67
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query21.tpl +0 -65
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query22.tpl +0 -54
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query23.tpl +0 -144
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query24.tpl +0 -147
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query25.tpl +0 -84
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query26.tpl +0 -61
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query28.tpl +0 -90
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query29.tpl +0 -85
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query3.tpl +0 -58
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query30.tpl +0 -66
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query31.tpl +0 -88
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query32.tpl +0 -65
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query33.tpl +0 -113
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query34.tpl +0 -77
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query35.tpl +0 -98
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query36.tpl +0 -74
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query37.tpl +0 -57
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query38.tpl +0 -58
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query39.tpl +0 -93
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query4.tpl +0 -154
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query40.tpl +0 -63
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query41.tpl +0 -90
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query42.tpl +0 -64
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query43.tpl +0 -55
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query44.tpl +0 -72
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query45.tpl +0 -56
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query46.tpl +0 -78
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query47.tpl +0 -89
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query48.tpl +0 -104
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query49.tpl +0 -164
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query5.tpl +0 -165
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query50.tpl +0 -96
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query51.tpl +0 -80
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query52.tpl +0 -59
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query53.tpl +0 -64
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query54.tpl +0 -95
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query55.tpl +0 -52
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query56.tpl +0 -108
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query57.tpl +0 -87
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query58.tpl +0 -101
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query59.tpl +0 -79
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query6.tpl +0 -62
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query60.tpl +0 -115
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query61.tpl +0 -83
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query62.tpl +0 -71
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query63.tpl +0 -64
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query64.tpl +0 -157
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query65.tpl +0 -62
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query66.tpl +0 -261
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query67.tpl +0 -81
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query68.tpl +0 -82
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query69.tpl +0 -85
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query7.tpl +0 -60
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query70.tpl +0 -73
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query71.tpl +0 -74
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query72.tpl +0 -67
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query73.tpl +0 -69
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query74.tpl +0 -99
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query75.tpl +0 -107
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query76.tpl +0 -64
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query77.tpl +0 -145
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query78.tpl +0 -94
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query79.tpl +0 -60
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query8.tpl +0 -144
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query80.tpl +0 -131
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query81.tpl +0 -68
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query82.tpl +0 -56
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query83.tpl +0 -104
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query84.tpl +0 -58
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query85.tpl +0 -121
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query86.tpl +0 -60
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query87.tpl +0 -56
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query88.tpl +0 -128
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query89.tpl +0 -75
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query9.tpl +0 -88
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query90.tpl +0 -58
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query91.tpl +0 -68
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query92.tpl +0 -68
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query93.tpl +0 -53
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query94.tpl +0 -67
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query95.tpl +0 -71
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query96.tpl +0 -52
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query97.tpl +0 -62
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query98.tpl +0 -70
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query99.tpl +0 -69
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/sqlserver.tpl +0 -37
- benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/templates.lst +0 -99
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/README +0 -4
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/ansi.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/db2.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/netezza.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/oracle.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query1.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query11.tpl +0 -119
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query12.tpl +0 -72
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query13.tpl +0 -89
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query14.tpl +0 -247
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query15.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query16.tpl +0 -76
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query17.tpl +0 -80
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query19.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query2.tpl +0 -94
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query20.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query21.tpl +0 -65
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query23.tpl +0 -144
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query24.tpl +0 -147
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query25.tpl +0 -84
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query26.tpl +0 -61
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query27.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query28.tpl +0 -90
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query29.tpl +0 -85
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query3.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query30.tpl +0 -66
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query31.tpl +0 -88
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query32.tpl +0 -65
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query33.tpl +0 -113
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query34.tpl +0 -77
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query37.tpl +0 -57
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query38.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query39.tpl +0 -93
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query4.tpl +0 -154
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query40.tpl +0 -63
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query41.tpl +0 -90
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query42.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query43.tpl +0 -55
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query44.tpl +0 -72
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query45.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query46.tpl +0 -78
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query47.tpl +0 -89
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query48.tpl +0 -104
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query49.tpl +0 -164
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query50.tpl +0 -96
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query52.tpl +0 -59
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query53.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query54.tpl +0 -95
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query55.tpl +0 -52
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query56.tpl +0 -108
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query57.tpl +0 -87
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query58.tpl +0 -101
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query59.tpl +0 -79
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query6.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query60.tpl +0 -115
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query61.tpl +0 -83
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query62.tpl +0 -71
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query63.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query64.tpl +0 -157
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query65.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query66.tpl +0 -261
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query68.tpl +0 -82
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query69.tpl +0 -85
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query7.tpl +0 -60
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query71.tpl +0 -74
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query72.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query73.tpl +0 -69
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query74.tpl +0 -99
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query75.tpl +0 -107
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query76.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query78.tpl +0 -94
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query79.tpl +0 -60
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query8.tpl +0 -144
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query81.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query82.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query83.tpl +0 -104
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query84.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query85.tpl +0 -121
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query87.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query88.tpl +0 -128
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query89.tpl +0 -75
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query9.tpl +0 -88
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query90.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query91.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query92.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query93.tpl +0 -53
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query94.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query95.tpl +0 -71
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query96.tpl +0 -52
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query97.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query98.tpl +0 -70
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query99.tpl +0 -69
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/sqlserver.tpl +0 -37
- benchbox/_binaries/tpc-ds/linux-arm64/query_templates/templates.lst +0 -99
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/README +0 -4
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/ansi.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/db2.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/netezza.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/oracle.tpl +0 -38
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query1.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query10.tpl +0 -98
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query11.tpl +0 -119
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query12.tpl +0 -72
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query13.tpl +0 -89
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query14.tpl +0 -247
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query15.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query16.tpl +0 -76
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query17.tpl +0 -80
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query18.tpl +0 -73
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query19.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query2.tpl +0 -94
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query20.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query21.tpl +0 -65
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query22.tpl +0 -54
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query23.tpl +0 -144
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query24.tpl +0 -147
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query25.tpl +0 -84
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query26.tpl +0 -61
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query27.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query28.tpl +0 -90
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query29.tpl +0 -85
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query3.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query30.tpl +0 -66
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query31.tpl +0 -88
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query32.tpl +0 -65
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query33.tpl +0 -113
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query34.tpl +0 -77
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query35.tpl +0 -98
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query36.tpl +0 -74
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query37.tpl +0 -57
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query38.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query39.tpl +0 -93
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query4.tpl +0 -154
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query40.tpl +0 -63
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query41.tpl +0 -90
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query42.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query43.tpl +0 -55
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query44.tpl +0 -72
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query45.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query46.tpl +0 -78
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query47.tpl +0 -89
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query48.tpl +0 -104
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query49.tpl +0 -164
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query5.tpl +0 -165
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query50.tpl +0 -96
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query51.tpl +0 -80
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query52.tpl +0 -59
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query53.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query54.tpl +0 -95
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query55.tpl +0 -52
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query56.tpl +0 -108
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query57.tpl +0 -87
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query58.tpl +0 -101
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query59.tpl +0 -79
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query6.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query60.tpl +0 -115
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query61.tpl +0 -83
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query62.tpl +0 -71
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query63.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query64.tpl +0 -157
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query65.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query66.tpl +0 -261
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query67.tpl +0 -81
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query68.tpl +0 -82
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query69.tpl +0 -85
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query7.tpl +0 -60
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query70.tpl +0 -73
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query71.tpl +0 -74
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query72.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query73.tpl +0 -69
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query74.tpl +0 -99
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query75.tpl +0 -107
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query76.tpl +0 -64
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query77.tpl +0 -145
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query78.tpl +0 -94
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query79.tpl +0 -60
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query8.tpl +0 -144
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query80.tpl +0 -131
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query81.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query82.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query83.tpl +0 -104
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query84.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query85.tpl +0 -121
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query86.tpl +0 -60
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query87.tpl +0 -56
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query88.tpl +0 -128
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query89.tpl +0 -75
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query9.tpl +0 -88
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query90.tpl +0 -58
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query91.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query92.tpl +0 -68
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query93.tpl +0 -53
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query94.tpl +0 -67
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query95.tpl +0 -71
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query96.tpl +0 -52
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query97.tpl +0 -62
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query98.tpl +0 -70
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query99.tpl +0 -69
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/sqlserver.tpl +0 -37
- benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/templates.lst +0 -99
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/README +0 -4
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/ansi.tpl +0 -38
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/db2.tpl +0 -38
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/netezza.tpl +0 -38
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/oracle.tpl +0 -38
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query1.tpl +0 -62
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query10.tpl +0 -98
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query11.tpl +0 -119
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query12.tpl +0 -72
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query13.tpl +0 -89
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query14.tpl +0 -247
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query15.tpl +0 -56
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query16.tpl +0 -76
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query17.tpl +0 -80
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query18.tpl +0 -73
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query19.tpl +0 -64
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query2.tpl +0 -94
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query20.tpl +0 -67
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query21.tpl +0 -65
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query22.tpl +0 -54
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query23.tpl +0 -144
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query24.tpl +0 -147
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query25.tpl +0 -84
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query26.tpl +0 -61
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query27.tpl +0 -68
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query28.tpl +0 -90
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query29.tpl +0 -85
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query3.tpl +0 -58
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query30.tpl +0 -66
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query31.tpl +0 -88
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query32.tpl +0 -65
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query33.tpl +0 -113
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query34.tpl +0 -77
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query35.tpl +0 -98
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query36.tpl +0 -74
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query37.tpl +0 -57
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query38.tpl +0 -58
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query39.tpl +0 -93
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query4.tpl +0 -154
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query40.tpl +0 -63
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query41.tpl +0 -90
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query42.tpl +0 -64
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query43.tpl +0 -55
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query44.tpl +0 -72
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query45.tpl +0 -56
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query46.tpl +0 -78
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query47.tpl +0 -89
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query48.tpl +0 -104
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query49.tpl +0 -164
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query5.tpl +0 -165
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query50.tpl +0 -96
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query51.tpl +0 -80
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query52.tpl +0 -59
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query53.tpl +0 -64
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query54.tpl +0 -95
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query55.tpl +0 -52
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query56.tpl +0 -108
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query57.tpl +0 -87
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query58.tpl +0 -101
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query59.tpl +0 -79
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query6.tpl +0 -62
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query60.tpl +0 -115
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query61.tpl +0 -83
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query62.tpl +0 -71
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query63.tpl +0 -64
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query64.tpl +0 -157
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query65.tpl +0 -62
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query66.tpl +0 -261
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query67.tpl +0 -81
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query68.tpl +0 -82
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query69.tpl +0 -85
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query7.tpl +0 -60
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query70.tpl +0 -73
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query71.tpl +0 -74
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query72.tpl +0 -67
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query73.tpl +0 -69
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query74.tpl +0 -99
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query75.tpl +0 -107
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query76.tpl +0 -64
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query77.tpl +0 -145
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query78.tpl +0 -94
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query79.tpl +0 -60
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query8.tpl +0 -144
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query80.tpl +0 -131
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query81.tpl +0 -68
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query82.tpl +0 -56
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query83.tpl +0 -104
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query84.tpl +0 -58
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query85.tpl +0 -121
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query86.tpl +0 -60
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query87.tpl +0 -56
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query88.tpl +0 -128
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query89.tpl +0 -75
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query9.tpl +0 -88
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query90.tpl +0 -58
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query91.tpl +0 -68
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query92.tpl +0 -68
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query93.tpl +0 -53
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query94.tpl +0 -67
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query95.tpl +0 -71
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query96.tpl +0 -52
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query97.tpl +0 -62
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query98.tpl +0 -70
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query99.tpl +0 -69
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/sqlserver.tpl +0 -37
- benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/templates.lst +0 -99
- benchbox-0.1.0.dist-info/RECORD +0 -1192
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/README +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/ansi.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/db2.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/netezza.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/oracle.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query1.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query10.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query11.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query12.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query13.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query14.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query15.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query16.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query17.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query18.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query19.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query2.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query20.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query21.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query22.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query23.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query24.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query25.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query26.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query27.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query28.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query29.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query3.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query30.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query31.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query32.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query33.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query34.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query35.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query36.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query37.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query38.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query39.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query4.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query40.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query41.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query42.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query43.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query44.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query45.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query46.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query47.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query48.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query49.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query5.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query50.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query51.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query52.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query53.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query54.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query55.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query56.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query57.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query58.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query59.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query6.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query60.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query61.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query62.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query63.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query64.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query65.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query66.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query67.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query68.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query69.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query7.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query70.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query71.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query73.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query74.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query75.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query76.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query77.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query78.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query79.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query8.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query80.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query81.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query82.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query83.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query84.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query85.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query86.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query87.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query88.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query89.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query9.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query90.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query91.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query92.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query93.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query94.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query95.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query96.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query97.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query98.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/query99.tpl +0 -0
- /benchbox/_binaries/tpc-ds/{darwin-arm64 → templates}/query_templates/templates.lst +0 -0
- {benchbox-0.1.0.dist-info → benchbox-0.1.1.dist-info}/entry_points.txt +0 -0
- {benchbox-0.1.0.dist-info → benchbox-0.1.1.dist-info}/licenses/LICENSE +0 -0
- {benchbox-0.1.0.dist-info → benchbox-0.1.1.dist-info}/top_level.txt +0 -0
benchbox-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,1192 +0,0 @@
|
|
|
1
|
-
benchbox/__init__.py,sha256=kwkddsjpp-xNZnmn4javIhUCuylHwzEVG4wga2ytHEk,6049
|
|
2
|
-
benchbox/amplab.py,sha256=jJaOxr0Yk4AwDlDl_WBenJpYfkehXpE6qqvHiNw-oHw,3166
|
|
3
|
-
benchbox/base.py,sha256=RUmouNDfoU7fO_cQ-DDwLjkV1YyOvL68SR0nZZdgCcA,30396
|
|
4
|
-
benchbox/clickbench.py,sha256=lnrGZjDHkwD7yPmskMZHLhXbGW5PBnIgknBMj8RL1MA,4345
|
|
5
|
-
benchbox/coffeeshop.py,sha256=txBkVbIsn_LZQtglRn-FvbvctgHgZzJyBXIAU9roLL8,3073
|
|
6
|
-
benchbox/datavault.py,sha256=YIar2KQ-DchFgaTzs3YdMAz3MpSqj7bLhXro4gR7Nc8,5446
|
|
7
|
-
benchbox/h2odb.py,sha256=6hbtYWFXsoE0wy4LLkLYbNmRepV5t3eGubw9-LNDMRg,3141
|
|
8
|
-
benchbox/joinorder.py,sha256=kvgOC4Yn8sb7f8P_rjyxyk3XWH6F0RuwP1ZwQOwMjVA,3136
|
|
9
|
-
benchbox/metadata_primitives.py,sha256=75Z0Z6TWL4aNgamBc2B58Z54j7V2TfjhqtFZ4bFsy7c,8944
|
|
10
|
-
benchbox/nyctaxi.py,sha256=leqZMBoU2o9t37_AtxuQZssgrphZSi1LSsywhZQs9BA,7577
|
|
11
|
-
benchbox/read_primitives.py,sha256=cMBn-PzwlF03TfKDLENWFltfyqQll9POylwLs3jCytM,7457
|
|
12
|
-
benchbox/ssb.py,sha256=Kf4FEtGhkFdgfW7V-PP3mDZw2DnjS_CX6mnI2RkJYHA,3280
|
|
13
|
-
benchbox/tpcdi.py,sha256=zz2zgL8uilISYU-ElGAEq8NcywucfwF-GSgScYc1f1U,9989
|
|
14
|
-
benchbox/tpcds.py,sha256=HVFe6KC3DogNXespdyDE8W2BhY4RFuBQUun7EpIg-OU,8028
|
|
15
|
-
benchbox/tpcds_obt.py,sha256=VnX1XzXHU4dVdxEpVx-iwK_M-CQsE7Kp9RJGET1q4JE,1759
|
|
16
|
-
benchbox/tpch.py,sha256=9MsiMJ719F9VHqoSyakMrrm3nvwyxOc3k7qwdTwHtsA,10925
|
|
17
|
-
benchbox/tpch_skew.py,sha256=g1uYnPDD6i1X7yNIgZCRLu8600PTbQ3cmzOKtbpeqac,11856
|
|
18
|
-
benchbox/tpchavoc.py,sha256=PjtW07SW6Eb4o0Zt1oKqIpU831urQu3xbpMaJ8ZEGSc,15871
|
|
19
|
-
benchbox/transaction_primitives.py,sha256=5-2mqSy9sBxpr8pHAsp5G8HHwTV-Nf8-Eeix_niXrEU,9890
|
|
20
|
-
benchbox/tsbs_devops.py,sha256=KNs7GSVeJi_DirJaENJ8NCtukLO4Qv6WCci0IvzOW44,8925
|
|
21
|
-
benchbox/write_primitives.py,sha256=P51LYHc6B8EXZ5sXLnglTEzFlW2BEbJWHK1WtiLl1HQ,9713
|
|
22
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/checksums.md5,sha256=kRVREDG-l6epX_YuSqmcoG9niMepvA4S9H8df5v7Ilk,166
|
|
23
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/dsdgen,sha256=2YwY7q4-me-2K6iXJsHGjWwf79jKqzSFJAliD3bsfOk,319080
|
|
24
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/dsqgen,sha256=G5FjU2AE1wEJYD4Nu7V4wpTIH99sMzX9hF1NiN2ZgCo,227288
|
|
25
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
26
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/tpcds.idx,sha256=GcEfO8l0WzQjRq4_WYL5-sM_jc8N2I9x24b3N0iaLlo,640585
|
|
27
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/README,sha256=mDG8UM4W0ffi4HpTEMAlL8o5jMqHxyH4RBlKV807FDM,164
|
|
28
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/ansi.tpl,sha256=RBTh66Hdcp8vEfrkKnv9sVbvYaT3VyaU7XsXJRmQaes,1833
|
|
29
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/db2.tpl,sha256=HgSHXmIT83Uq0Elm-dcDQv130rcJ7KiXqX2J8eMJTiY,1852
|
|
30
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/netezza.tpl,sha256=yj_GuEHTKuixq_vWefwAibzGCBDVjFL1-llEGGIlVz4,1835
|
|
31
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/oracle.tpl,sha256=nz8zUfWR2zc0LoJaOLqGsIL8RyQV3V9jsG2mjjoTYv4,1863
|
|
32
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query1.tpl,sha256=Q70ScEMV9Fhml23pdOgJxTcXNNjf4qBPO6DBOENQ7Pc,2739
|
|
33
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query10.tpl,sha256=k3iCuGsKDFRddx6fI2IoGf2kMEM509p5y_frYmsbRZE,3683
|
|
34
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query11.tpl,sha256=oDMeoGjpxP2342HZjo8P68dN9YHOCoTRB188M1ek_J8,4861
|
|
35
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query12.tpl,sha256=hJ7pSWREG96F_zIHjzyrOjjUl6XPKST8pxOC4aFsWmk,2676
|
|
36
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query13.tpl,sha256=JkfP9OqhDVvyaQCwSYYdMGvVOnrlj6qJ6QXUiPHab1o,3403
|
|
37
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query14.tpl,sha256=pVDNXFqCqM1v7Rc4C-2M8gacPp5S1eeiNJqBH7Uz_14,9316
|
|
38
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query15.tpl,sha256=nTnb3v-lbqNyKHC-5wPVvSKTND3k6EMaja72L_uDvFc,2396
|
|
39
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query16.tpl,sha256=WRE0iSISB5B_M9SoaDSqPied68VHG7kDoXhYO1tt9LA,3265
|
|
40
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query17.tpl,sha256=RKnzyB9NxgzvJlEcBWMLjCia4MG-fF26N-Hp_4XxJEg,3465
|
|
41
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query18.tpl,sha256=WgkpSSLpaQ-0ev-Ry5wOtD1kpxPwURDJMzZAk2T64Rs,3314
|
|
42
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query19.tpl,sha256=Ypnf0Qe-vYesZAEIQ4AZlu_t2ZYF79eKSxHR-LnpdvM,2690
|
|
43
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query2.tpl,sha256=TdSJF1VmNPs9faGg3iQlmScuJ_Ikdr_itSIbTxWwr8I,3897
|
|
44
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query20.tpl,sha256=fgvFvAKjBcTIUncRqWXl9BnnKLTnZoQ0lFbo1yJeaMk,2697
|
|
45
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query21.tpl,sha256=RxPWQ36lZcVPFUPolCgLeC27ehwTK2d9TAfxHuQrbGc,2919
|
|
46
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query22.tpl,sha256=uguZR2AYZCLwciPWoIQVxCkuwdpb4XCisDySHla2iW0,2361
|
|
47
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query23.tpl,sha256=gMe6_zOz7PyQMWun2JzwmM2z6d63emKt5RCTR5Ce4-A,5790
|
|
48
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query24.tpl,sha256=cf-w55-VJZiKIR2isaMh9hoB6gJbNHF6ZXz5XSeHFPQ,4286
|
|
49
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query25.tpl,sha256=5RFbpRnqi--3Ab9bvXBDw98vC8awGkK-eIwqqkce3vI,2910
|
|
50
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query26.tpl,sha256=dLsyUSosT46xFhflDwRBz-mh5OggUeUhGN8HRSrz0rM,2558
|
|
51
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query27.tpl,sha256=CK9LgMHvxSVy_4eZp6v8fAceXcPZa2ic_e7uNLauR9Y,3104
|
|
52
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query28.tpl,sha256=M8on68B6j01iTq4Aida2kH8mQigYQmpOohhB6jLt6Yc,4515
|
|
53
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query29.tpl,sha256=hPsEL5rKpZ768t8JdSdFhEyVhUCYFh5hLhM-eqr4WTw,3195
|
|
54
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query3.tpl,sha256=l1Z0JZD3RqyXcDowr3UfJ43ZsWpGoqX4Ch6OtqnFw_I,2435
|
|
55
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query30.tpl,sha256=Bv_59vMHLa9dzmiqn7XID2hZkP18stN6rBJ55-U8xG8,3071
|
|
56
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query31.tpl,sha256=va6TlpHsQdpnCGMq5ScDOnAxQHhc6bbtoMl5mDujrUM,3634
|
|
57
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query32.tpl,sha256=HVM0F_Vz16oEsx-1CM1RlgLzlUFedDBQD3ZbUM8aUZ8,2594
|
|
58
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query33.tpl,sha256=fvZltnOabaSEFHtjYVXWYcwwcnIWjwZ3alJJayGfEDs,3974
|
|
59
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query34.tpl,sha256=aXGvO3Mpd7o5x1suEilfVViWbV1QtPPn-9jwcBcT-sw,3836
|
|
60
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query35.tpl,sha256=4CEEuznGlnaKpbvu1TfwUvU5dTVSXug8A8_KN6n1ZXQ,3800
|
|
61
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query36.tpl,sha256=6bt-ja7G9KUU5MjywdlGx_w7jNwuvm6FjvCHG0UigtM,3234
|
|
62
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query37.tpl,sha256=lWQsaj3Rdc-TKok3oNYANKKmU3AhwBG6HtYS21fggTE,2536
|
|
63
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query38.tpl,sha256=vEJ_30-6Ldd2t_0PsZCZHMOjTinCc14hE1kbOw9oNh4,2723
|
|
64
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query39.tpl,sha256=lJjvgYSHB1qPD16WKNPHcB12eX-s7uaYjTjNee52mco,3962
|
|
65
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query4.tpl,sha256=CluSv_pl-kbtBPbuEQeW1aSbqysIGcd22GiguIULe80,6251
|
|
66
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query40.tpl,sha256=UWTGaOajjzYDAMKBKTseNvuDbB7N1oVwgtpKcBo1CNY,2763
|
|
67
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query41.tpl,sha256=vCHjW-24RN2Kt6jlwgy5JrPlBu3dLE0xUVojslLCahc,4014
|
|
68
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query42.tpl,sha256=upuQNuwuuL-rwULcPtnfamY5JAHEL1uNMzVv-uetzYk,2353
|
|
69
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query43.tpl,sha256=59GBmJkZSjdcPHYuEPJf3gT5R5l_XvfRxxm3B03drsg,2937
|
|
70
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query44.tpl,sha256=molZlnzODdW6CSpUHP-rCyD6xZtvD9FUGYITaZdR84c,3584
|
|
71
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query45.tpl,sha256=784fwwm0frZDvK4UeTjUQ84fY9wRYHTmJdwvm5ryGNE,2605
|
|
72
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query46.tpl,sha256=4dPdZafuAEQ7CqLtWgbbXNHDjB-ENTLhAoy4DqcgPFQ,3550
|
|
73
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query47.tpl,sha256=1flFdQhGaRXJfRIzt4FNs4100Wh1YZjW_wTNEfOtOxw,3969
|
|
74
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query48.tpl,sha256=Vsz-s-bN11Ed8rNvt7Trw0KagoYzowK9KXd3XjghAp4,3196
|
|
75
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query49.tpl,sha256=BHdJp8wDUmQGHufMRv90MZS_KroGaHPZc4lLsWmJ_u8,5618
|
|
76
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query5.tpl,sha256=4jLGQrMfe9Wif2UqBSj10z6zjoVPbEXqbyfgrTq6pN4,5808
|
|
77
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query50.tpl,sha256=WF6SSFgsZQ7h9ceKQs4N5IBtmur1vWqbM20aDL6-KUc,3427
|
|
78
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query51.tpl,sha256=TLb7P13U6beqJqbCnHWVF_Kcx7_pgicGmS4UybQOfoA,3462
|
|
79
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query52.tpl,sha256=AV4ha60hA7Fy0mpd1ty7feDM3ZyGVXhPKCF04w1-Zt8,2313
|
|
80
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query53.tpl,sha256=KhJWWgqPMldWZ6DJPCEufSH3kZ8DrTGL41pe3tu_BDc,2890
|
|
81
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query54.tpl,sha256=zeOE0UHJErha3b_yVPKavckCixA9JbKgELKV0o3FjW4,3756
|
|
82
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query55.tpl,sha256=2s1Y1v3yT9VKfX1372CN9tmMDoxwHv938-9lJS093e8,2233
|
|
83
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query56.tpl,sha256=eo8WP3He1lC7ydia-IEUtEt_zEyq-ndoV6wim4VcWjs,3833
|
|
84
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query57.tpl,sha256=mDNIEAZpS1Zc5-GfUTpitJuxZmBzGxc-Ikq74m84wkA,3676
|
|
85
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query58.tpl,sha256=RSEJxjSXdmQV-nPOSradW6h8EMOWxmsYNufkGrM55V8,4220
|
|
86
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query59.tpl,sha256=X0PqKu_VyQCW6voTE7KW5Ac4SfXlTlsS3kt9r23TK7c,3836
|
|
87
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query6.tpl,sha256=UC9KfWTY3lBDecdQvk6ZGO9Gax2ygCSxtE-3DeJXcF4,2535
|
|
88
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query60.tpl,sha256=l8ML7IUOE57EqwIGyMVPvW2WJY6a8kZpZguCILMpYf4,3859
|
|
89
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query61.tpl,sha256=lQH0j9c9TtJxEZQ9-oaUgGlYhNcLmqrwVKBYXuScjW8,3269
|
|
90
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query62.tpl,sha256=ogVAw2YEjDamfC6HeUcr7ukfgeKpWYGRj_6RhqkBRU4,2975
|
|
91
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query63.tpl,sha256=zSkLb4qD5pD8-o7inOScvRU6iIQLdxLcHO05EvWHBFk,3093
|
|
92
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query64.tpl,sha256=2sD5yeDPcVlu6MdtfNLjLbGQEk5S8lp3Ivtz-k0EHZM,5417
|
|
93
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query65.tpl,sha256=R2mlUXG6WdNdZn1rEIptfV5XI_cEgj4qh1R0z0YEyDg,2669
|
|
94
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query66.tpl,sha256=g8SxMhLCI8E4wvgH9ltnNxGSpUCs_05JBrdH708LfBM,9583
|
|
95
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query67.tpl,sha256=O7CsjVnuN-BPIj_5AEG_0uC7Coy_Cu2qs8nGEDOOmcw,2990
|
|
96
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query68.tpl,sha256=uIlPE73RuC-dujrq5J-NVofIO5nCmxNMNeI5uM7Kiwc,3535
|
|
97
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query69.tpl,sha256=8C6Ll5Lr862udEDCX1E0kkhdy874X21Kl8GD9weqVio,3362
|
|
98
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query7.tpl,sha256=Gl_ifbLVARoHMtn5jbVVj0DrKO37HOR0HfzPVp6vzi0,2548
|
|
99
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query70.tpl,sha256=ki2YYgtEwN0TdA7Gy5SnAKDACY7TJAGvfXUQfTzJYe4,2961
|
|
100
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query71.tpl,sha256=IwvVKVekSMRtjGMmRVLt8mBU89WJGqdx00NWdyMD3QE,3383
|
|
101
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query72.tpl,sha256=7cG9IQRgHMwTejeG7AKLCzQm-UhXClb368vtTsnWPfk,3073
|
|
102
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query73.tpl,sha256=b1AaAoQ7IqmdhezIMJmdBed88V2BT0J4zn5xevYo0Dc,3409
|
|
103
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query74.tpl,sha256=oZ2ezdTSRRXH2Pp7Op-lhdkcKDaTRrR3OM9x8u8HDEc,4024
|
|
104
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query75.tpl,sha256=GytyP_Y_qm_hZwsxa6nUUsEbsBvJxpUjv-KIsuaRqdA,5028
|
|
105
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query76.tpl,sha256=dIIBof1CmVGqFsWno2GupDfMf4Pb-g3_pfaEToaqwFw,3564
|
|
106
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query77.tpl,sha256=IWRPu8W3zasktRpxZHzsk3-LsmHuX2_UnMf45ipmkCY,5008
|
|
107
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query78.tpl,sha256=UAB7acSyoaB8zaF3gakeMjzLyTWjA3IqD9Z1slahTDk,4013
|
|
108
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query79.tpl,sha256=vJuFrXyESN6t7UdpodA-LcaBbafCp5Y_520WhxQ9sm8,2822
|
|
109
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query8.tpl,sha256=N4w_7EY43VfO8XMr5wBln8cNeNCl4EtdLl87ErCpur4,9513
|
|
110
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query80.tpl,sha256=lNuxyA-MToi7GmHCiFI03j8kXqZ7KvaO2BsRKdcBTiY,4795
|
|
111
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query81.tpl,sha256=Yd7xS8x8TRFsxn_rvx8XNlDXUHMVlb2XxSa0_o2vuVg,3145
|
|
112
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query82.tpl,sha256=5vvhnLl_Q9Rzsgk0SRuki9zMw6HBMt_vW5a9D9rAjCk,2526
|
|
113
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query83.tpl,sha256=cPW8l3g-QUDpVSjWpD-3LT_AeNFDMp9p1praQ1Od1dU,3888
|
|
114
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query84.tpl,sha256=fu2TOsZqQ69ed2xgTcFtS2YkvvCsjRDR6YP1xWSL968,2477
|
|
115
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query85.tpl,sha256=HpVhTnrr24WPXZqnb5j_GUDtadhssmu5JiN-mcl4kCU,4066
|
|
116
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query86.tpl,sha256=m3cimG1u_pz6vKvYfasSYo99-a27BgnKzvayMkfr3xA,2463
|
|
117
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query87.tpl,sha256=pSGlBmNMti98wFbZER5hYxjMFR6yBeHRTyWt97mvWXY,2698
|
|
118
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query88.tpl,sha256=ngB1U5xVR1MPHplXOP4-36vwXDZnP7sRaE-PzeC33Tw,7296
|
|
119
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query89.tpl,sha256=pg3yfuI-ifyjaPLatILai_9hyTA6Edw3h-gH7Ibazfo,3581
|
|
120
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query9.tpl,sha256=LbHVk_BaDTZIMbtMW0hwdD-LkbaKm-5i8_cbMCPO2yk,4098
|
|
121
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query90.tpl,sha256=QFIO9-lsk-0_-s-uhOLTPyF1p5Xg21Djayx7F1jiTeg,2911
|
|
122
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query91.tpl,sha256=BFhgl-ODhx503-Wzbf02PDlnYnbWHna3S4Svy--oyYY,3073
|
|
123
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query92.tpl,sha256=qObBM3XaGMLKnM6NBEvt8XnmbRmed7C1Pd8MjB8onuI,2625
|
|
124
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query93.tpl,sha256=lAOYYMg1pvFEwcK3E_q_wOGSN4M9YS8U31SAcCT0RVY,2596
|
|
125
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query94.tpl,sha256=isB-qbnDXa-T1kmAgltgZ2mQ7sQ8cKZTx-asqtPRCJ8,2749
|
|
126
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query95.tpl,sha256=xGdarRdFaf9HfTkYwIT9Vv1qtPrCxdPFnQePCImpCOo,2941
|
|
127
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query96.tpl,sha256=TxU9YQLBmsf8JjV14U6p7mI9DXL4XiLbjt0sdBHb9Pw,2278
|
|
128
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query97.tpl,sha256=qrN8yPtUK2UGO0dera6RFqNucUoStWLYMHE8scqNnIM,2773
|
|
129
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query98.tpl,sha256=DIwnN710Ip34U_RbOPTmeUJRQis_DsCWICgt_IDt4z8,2629
|
|
130
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/query99.tpl,sha256=o45SAM7MRzHl8NoPPq95jBk3LkxzK14aVyVeeu49K1g,2985
|
|
131
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/sqlserver.tpl,sha256=YXA-Rb6aPimaLb16aWiSdy_aovQHk1SmM5USfFQfZlM,1815
|
|
132
|
-
benchbox/_binaries/tpc-ds/darwin-arm64/query_templates/templates.lst,sha256=bIi72xXh93BN2YaGO25G0KebRCXRldqfCvZYQGp6jDA,1179
|
|
133
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/checksums.md5,sha256=_eBCeEZHd2vTXhIkEGV3vTL9VAL-L3QA7TFo04eidts,166
|
|
134
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/dsdgen,sha256=dECypXN64xtK496hWoElJJ1pQUn21p73qbGSs0RwF0E,283656
|
|
135
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/dsqgen,sha256=HwqRtcsGMAQFrwOSUgqgXTrJ6ciIdkHK_Ek2FiyJR9Q,196648
|
|
136
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
137
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/tpcds.idx,sha256=GcEfO8l0WzQjRq4_WYL5-sM_jc8N2I9x24b3N0iaLlo,640585
|
|
138
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/README,sha256=mDG8UM4W0ffi4HpTEMAlL8o5jMqHxyH4RBlKV807FDM,164
|
|
139
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/ansi.tpl,sha256=RBTh66Hdcp8vEfrkKnv9sVbvYaT3VyaU7XsXJRmQaes,1833
|
|
140
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/db2.tpl,sha256=HgSHXmIT83Uq0Elm-dcDQv130rcJ7KiXqX2J8eMJTiY,1852
|
|
141
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/netezza.tpl,sha256=yj_GuEHTKuixq_vWefwAibzGCBDVjFL1-llEGGIlVz4,1835
|
|
142
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/oracle.tpl,sha256=nz8zUfWR2zc0LoJaOLqGsIL8RyQV3V9jsG2mjjoTYv4,1863
|
|
143
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query1.tpl,sha256=Q70ScEMV9Fhml23pdOgJxTcXNNjf4qBPO6DBOENQ7Pc,2739
|
|
144
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query10.tpl,sha256=k3iCuGsKDFRddx6fI2IoGf2kMEM509p5y_frYmsbRZE,3683
|
|
145
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query11.tpl,sha256=oDMeoGjpxP2342HZjo8P68dN9YHOCoTRB188M1ek_J8,4861
|
|
146
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query12.tpl,sha256=hJ7pSWREG96F_zIHjzyrOjjUl6XPKST8pxOC4aFsWmk,2676
|
|
147
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query13.tpl,sha256=JkfP9OqhDVvyaQCwSYYdMGvVOnrlj6qJ6QXUiPHab1o,3403
|
|
148
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query14.tpl,sha256=pVDNXFqCqM1v7Rc4C-2M8gacPp5S1eeiNJqBH7Uz_14,9316
|
|
149
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query15.tpl,sha256=nTnb3v-lbqNyKHC-5wPVvSKTND3k6EMaja72L_uDvFc,2396
|
|
150
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query16.tpl,sha256=WRE0iSISB5B_M9SoaDSqPied68VHG7kDoXhYO1tt9LA,3265
|
|
151
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query17.tpl,sha256=RKnzyB9NxgzvJlEcBWMLjCia4MG-fF26N-Hp_4XxJEg,3465
|
|
152
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query18.tpl,sha256=WgkpSSLpaQ-0ev-Ry5wOtD1kpxPwURDJMzZAk2T64Rs,3314
|
|
153
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query19.tpl,sha256=Ypnf0Qe-vYesZAEIQ4AZlu_t2ZYF79eKSxHR-LnpdvM,2690
|
|
154
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query2.tpl,sha256=TdSJF1VmNPs9faGg3iQlmScuJ_Ikdr_itSIbTxWwr8I,3897
|
|
155
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query20.tpl,sha256=fgvFvAKjBcTIUncRqWXl9BnnKLTnZoQ0lFbo1yJeaMk,2697
|
|
156
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query21.tpl,sha256=RxPWQ36lZcVPFUPolCgLeC27ehwTK2d9TAfxHuQrbGc,2919
|
|
157
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query22.tpl,sha256=uguZR2AYZCLwciPWoIQVxCkuwdpb4XCisDySHla2iW0,2361
|
|
158
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query23.tpl,sha256=gMe6_zOz7PyQMWun2JzwmM2z6d63emKt5RCTR5Ce4-A,5790
|
|
159
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query24.tpl,sha256=cf-w55-VJZiKIR2isaMh9hoB6gJbNHF6ZXz5XSeHFPQ,4286
|
|
160
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query25.tpl,sha256=5RFbpRnqi--3Ab9bvXBDw98vC8awGkK-eIwqqkce3vI,2910
|
|
161
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query26.tpl,sha256=dLsyUSosT46xFhflDwRBz-mh5OggUeUhGN8HRSrz0rM,2558
|
|
162
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query27.tpl,sha256=CK9LgMHvxSVy_4eZp6v8fAceXcPZa2ic_e7uNLauR9Y,3104
|
|
163
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query28.tpl,sha256=M8on68B6j01iTq4Aida2kH8mQigYQmpOohhB6jLt6Yc,4515
|
|
164
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query29.tpl,sha256=hPsEL5rKpZ768t8JdSdFhEyVhUCYFh5hLhM-eqr4WTw,3195
|
|
165
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query3.tpl,sha256=l1Z0JZD3RqyXcDowr3UfJ43ZsWpGoqX4Ch6OtqnFw_I,2435
|
|
166
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query30.tpl,sha256=Bv_59vMHLa9dzmiqn7XID2hZkP18stN6rBJ55-U8xG8,3071
|
|
167
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query31.tpl,sha256=va6TlpHsQdpnCGMq5ScDOnAxQHhc6bbtoMl5mDujrUM,3634
|
|
168
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query32.tpl,sha256=HVM0F_Vz16oEsx-1CM1RlgLzlUFedDBQD3ZbUM8aUZ8,2594
|
|
169
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query33.tpl,sha256=fvZltnOabaSEFHtjYVXWYcwwcnIWjwZ3alJJayGfEDs,3974
|
|
170
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query34.tpl,sha256=aXGvO3Mpd7o5x1suEilfVViWbV1QtPPn-9jwcBcT-sw,3836
|
|
171
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query35.tpl,sha256=4CEEuznGlnaKpbvu1TfwUvU5dTVSXug8A8_KN6n1ZXQ,3800
|
|
172
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query36.tpl,sha256=6bt-ja7G9KUU5MjywdlGx_w7jNwuvm6FjvCHG0UigtM,3234
|
|
173
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query37.tpl,sha256=lWQsaj3Rdc-TKok3oNYANKKmU3AhwBG6HtYS21fggTE,2536
|
|
174
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query38.tpl,sha256=vEJ_30-6Ldd2t_0PsZCZHMOjTinCc14hE1kbOw9oNh4,2723
|
|
175
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query39.tpl,sha256=lJjvgYSHB1qPD16WKNPHcB12eX-s7uaYjTjNee52mco,3962
|
|
176
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query4.tpl,sha256=CluSv_pl-kbtBPbuEQeW1aSbqysIGcd22GiguIULe80,6251
|
|
177
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query40.tpl,sha256=UWTGaOajjzYDAMKBKTseNvuDbB7N1oVwgtpKcBo1CNY,2763
|
|
178
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query41.tpl,sha256=vCHjW-24RN2Kt6jlwgy5JrPlBu3dLE0xUVojslLCahc,4014
|
|
179
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query42.tpl,sha256=upuQNuwuuL-rwULcPtnfamY5JAHEL1uNMzVv-uetzYk,2353
|
|
180
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query43.tpl,sha256=59GBmJkZSjdcPHYuEPJf3gT5R5l_XvfRxxm3B03drsg,2937
|
|
181
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query44.tpl,sha256=molZlnzODdW6CSpUHP-rCyD6xZtvD9FUGYITaZdR84c,3584
|
|
182
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query45.tpl,sha256=784fwwm0frZDvK4UeTjUQ84fY9wRYHTmJdwvm5ryGNE,2605
|
|
183
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query46.tpl,sha256=4dPdZafuAEQ7CqLtWgbbXNHDjB-ENTLhAoy4DqcgPFQ,3550
|
|
184
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query47.tpl,sha256=1flFdQhGaRXJfRIzt4FNs4100Wh1YZjW_wTNEfOtOxw,3969
|
|
185
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query48.tpl,sha256=Vsz-s-bN11Ed8rNvt7Trw0KagoYzowK9KXd3XjghAp4,3196
|
|
186
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query49.tpl,sha256=BHdJp8wDUmQGHufMRv90MZS_KroGaHPZc4lLsWmJ_u8,5618
|
|
187
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query5.tpl,sha256=4jLGQrMfe9Wif2UqBSj10z6zjoVPbEXqbyfgrTq6pN4,5808
|
|
188
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query50.tpl,sha256=WF6SSFgsZQ7h9ceKQs4N5IBtmur1vWqbM20aDL6-KUc,3427
|
|
189
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query51.tpl,sha256=TLb7P13U6beqJqbCnHWVF_Kcx7_pgicGmS4UybQOfoA,3462
|
|
190
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query52.tpl,sha256=AV4ha60hA7Fy0mpd1ty7feDM3ZyGVXhPKCF04w1-Zt8,2313
|
|
191
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query53.tpl,sha256=KhJWWgqPMldWZ6DJPCEufSH3kZ8DrTGL41pe3tu_BDc,2890
|
|
192
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query54.tpl,sha256=zeOE0UHJErha3b_yVPKavckCixA9JbKgELKV0o3FjW4,3756
|
|
193
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query55.tpl,sha256=2s1Y1v3yT9VKfX1372CN9tmMDoxwHv938-9lJS093e8,2233
|
|
194
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query56.tpl,sha256=eo8WP3He1lC7ydia-IEUtEt_zEyq-ndoV6wim4VcWjs,3833
|
|
195
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query57.tpl,sha256=mDNIEAZpS1Zc5-GfUTpitJuxZmBzGxc-Ikq74m84wkA,3676
|
|
196
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query58.tpl,sha256=RSEJxjSXdmQV-nPOSradW6h8EMOWxmsYNufkGrM55V8,4220
|
|
197
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query59.tpl,sha256=X0PqKu_VyQCW6voTE7KW5Ac4SfXlTlsS3kt9r23TK7c,3836
|
|
198
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query6.tpl,sha256=UC9KfWTY3lBDecdQvk6ZGO9Gax2ygCSxtE-3DeJXcF4,2535
|
|
199
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query60.tpl,sha256=l8ML7IUOE57EqwIGyMVPvW2WJY6a8kZpZguCILMpYf4,3859
|
|
200
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query61.tpl,sha256=lQH0j9c9TtJxEZQ9-oaUgGlYhNcLmqrwVKBYXuScjW8,3269
|
|
201
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query62.tpl,sha256=ogVAw2YEjDamfC6HeUcr7ukfgeKpWYGRj_6RhqkBRU4,2975
|
|
202
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query63.tpl,sha256=zSkLb4qD5pD8-o7inOScvRU6iIQLdxLcHO05EvWHBFk,3093
|
|
203
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query64.tpl,sha256=2sD5yeDPcVlu6MdtfNLjLbGQEk5S8lp3Ivtz-k0EHZM,5417
|
|
204
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query65.tpl,sha256=R2mlUXG6WdNdZn1rEIptfV5XI_cEgj4qh1R0z0YEyDg,2669
|
|
205
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query66.tpl,sha256=g8SxMhLCI8E4wvgH9ltnNxGSpUCs_05JBrdH708LfBM,9583
|
|
206
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query67.tpl,sha256=O7CsjVnuN-BPIj_5AEG_0uC7Coy_Cu2qs8nGEDOOmcw,2990
|
|
207
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query68.tpl,sha256=uIlPE73RuC-dujrq5J-NVofIO5nCmxNMNeI5uM7Kiwc,3535
|
|
208
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query69.tpl,sha256=8C6Ll5Lr862udEDCX1E0kkhdy874X21Kl8GD9weqVio,3362
|
|
209
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query7.tpl,sha256=Gl_ifbLVARoHMtn5jbVVj0DrKO37HOR0HfzPVp6vzi0,2548
|
|
210
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query70.tpl,sha256=ki2YYgtEwN0TdA7Gy5SnAKDACY7TJAGvfXUQfTzJYe4,2961
|
|
211
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query71.tpl,sha256=IwvVKVekSMRtjGMmRVLt8mBU89WJGqdx00NWdyMD3QE,3383
|
|
212
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query72.tpl,sha256=7cG9IQRgHMwTejeG7AKLCzQm-UhXClb368vtTsnWPfk,3073
|
|
213
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query73.tpl,sha256=b1AaAoQ7IqmdhezIMJmdBed88V2BT0J4zn5xevYo0Dc,3409
|
|
214
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query74.tpl,sha256=oZ2ezdTSRRXH2Pp7Op-lhdkcKDaTRrR3OM9x8u8HDEc,4024
|
|
215
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query75.tpl,sha256=GytyP_Y_qm_hZwsxa6nUUsEbsBvJxpUjv-KIsuaRqdA,5028
|
|
216
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query76.tpl,sha256=dIIBof1CmVGqFsWno2GupDfMf4Pb-g3_pfaEToaqwFw,3564
|
|
217
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query77.tpl,sha256=IWRPu8W3zasktRpxZHzsk3-LsmHuX2_UnMf45ipmkCY,5008
|
|
218
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query78.tpl,sha256=UAB7acSyoaB8zaF3gakeMjzLyTWjA3IqD9Z1slahTDk,4013
|
|
219
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query79.tpl,sha256=vJuFrXyESN6t7UdpodA-LcaBbafCp5Y_520WhxQ9sm8,2822
|
|
220
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query8.tpl,sha256=N4w_7EY43VfO8XMr5wBln8cNeNCl4EtdLl87ErCpur4,9513
|
|
221
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query80.tpl,sha256=lNuxyA-MToi7GmHCiFI03j8kXqZ7KvaO2BsRKdcBTiY,4795
|
|
222
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query81.tpl,sha256=Yd7xS8x8TRFsxn_rvx8XNlDXUHMVlb2XxSa0_o2vuVg,3145
|
|
223
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query82.tpl,sha256=5vvhnLl_Q9Rzsgk0SRuki9zMw6HBMt_vW5a9D9rAjCk,2526
|
|
224
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query83.tpl,sha256=cPW8l3g-QUDpVSjWpD-3LT_AeNFDMp9p1praQ1Od1dU,3888
|
|
225
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query84.tpl,sha256=fu2TOsZqQ69ed2xgTcFtS2YkvvCsjRDR6YP1xWSL968,2477
|
|
226
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query85.tpl,sha256=HpVhTnrr24WPXZqnb5j_GUDtadhssmu5JiN-mcl4kCU,4066
|
|
227
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query86.tpl,sha256=m3cimG1u_pz6vKvYfasSYo99-a27BgnKzvayMkfr3xA,2463
|
|
228
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query87.tpl,sha256=pSGlBmNMti98wFbZER5hYxjMFR6yBeHRTyWt97mvWXY,2698
|
|
229
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query88.tpl,sha256=ngB1U5xVR1MPHplXOP4-36vwXDZnP7sRaE-PzeC33Tw,7296
|
|
230
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query89.tpl,sha256=pg3yfuI-ifyjaPLatILai_9hyTA6Edw3h-gH7Ibazfo,3581
|
|
231
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query9.tpl,sha256=LbHVk_BaDTZIMbtMW0hwdD-LkbaKm-5i8_cbMCPO2yk,4098
|
|
232
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query90.tpl,sha256=QFIO9-lsk-0_-s-uhOLTPyF1p5Xg21Djayx7F1jiTeg,2911
|
|
233
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query91.tpl,sha256=BFhgl-ODhx503-Wzbf02PDlnYnbWHna3S4Svy--oyYY,3073
|
|
234
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query92.tpl,sha256=qObBM3XaGMLKnM6NBEvt8XnmbRmed7C1Pd8MjB8onuI,2625
|
|
235
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query93.tpl,sha256=lAOYYMg1pvFEwcK3E_q_wOGSN4M9YS8U31SAcCT0RVY,2596
|
|
236
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query94.tpl,sha256=isB-qbnDXa-T1kmAgltgZ2mQ7sQ8cKZTx-asqtPRCJ8,2749
|
|
237
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query95.tpl,sha256=xGdarRdFaf9HfTkYwIT9Vv1qtPrCxdPFnQePCImpCOo,2941
|
|
238
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query96.tpl,sha256=TxU9YQLBmsf8JjV14U6p7mI9DXL4XiLbjt0sdBHb9Pw,2278
|
|
239
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query97.tpl,sha256=qrN8yPtUK2UGO0dera6RFqNucUoStWLYMHE8scqNnIM,2773
|
|
240
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query98.tpl,sha256=DIwnN710Ip34U_RbOPTmeUJRQis_DsCWICgt_IDt4z8,2629
|
|
241
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/query99.tpl,sha256=o45SAM7MRzHl8NoPPq95jBk3LkxzK14aVyVeeu49K1g,2985
|
|
242
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/sqlserver.tpl,sha256=YXA-Rb6aPimaLb16aWiSdy_aovQHk1SmM5USfFQfZlM,1815
|
|
243
|
-
benchbox/_binaries/tpc-ds/darwin-x86_64/query_templates/templates.lst,sha256=bIi72xXh93BN2YaGO25G0KebRCXRldqfCvZYQGp6jDA,1179
|
|
244
|
-
benchbox/_binaries/tpc-ds/linux-arm64/checksums.md5,sha256=VQlNDNB8Mm1IdNDT7ED3pUN73BDSRSPZnqIsQ7BOSac,166
|
|
245
|
-
benchbox/_binaries/tpc-ds/linux-arm64/dsdgen,sha256=DQP9QfeYTQE1foweY2An2HZJCT2V8Tx2i2YDlY9qJX0,561760
|
|
246
|
-
benchbox/_binaries/tpc-ds/linux-arm64/dsqgen,sha256=SeaYLLHqQElXyJabB9HZCaOsdN22_RVgbBD9syKX1-A,357200
|
|
247
|
-
benchbox/_binaries/tpc-ds/linux-arm64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
248
|
-
benchbox/_binaries/tpc-ds/linux-arm64/tpcds.idx,sha256=GcEfO8l0WzQjRq4_WYL5-sM_jc8N2I9x24b3N0iaLlo,640585
|
|
249
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/README,sha256=mDG8UM4W0ffi4HpTEMAlL8o5jMqHxyH4RBlKV807FDM,164
|
|
250
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/ansi.tpl,sha256=RBTh66Hdcp8vEfrkKnv9sVbvYaT3VyaU7XsXJRmQaes,1833
|
|
251
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/db2.tpl,sha256=HgSHXmIT83Uq0Elm-dcDQv130rcJ7KiXqX2J8eMJTiY,1852
|
|
252
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/netezza.tpl,sha256=yj_GuEHTKuixq_vWefwAibzGCBDVjFL1-llEGGIlVz4,1835
|
|
253
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/oracle.tpl,sha256=nz8zUfWR2zc0LoJaOLqGsIL8RyQV3V9jsG2mjjoTYv4,1863
|
|
254
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query1.tpl,sha256=Q70ScEMV9Fhml23pdOgJxTcXNNjf4qBPO6DBOENQ7Pc,2739
|
|
255
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query10.tpl,sha256=k3iCuGsKDFRddx6fI2IoGf2kMEM509p5y_frYmsbRZE,3683
|
|
256
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query11.tpl,sha256=oDMeoGjpxP2342HZjo8P68dN9YHOCoTRB188M1ek_J8,4861
|
|
257
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query12.tpl,sha256=hJ7pSWREG96F_zIHjzyrOjjUl6XPKST8pxOC4aFsWmk,2676
|
|
258
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query13.tpl,sha256=JkfP9OqhDVvyaQCwSYYdMGvVOnrlj6qJ6QXUiPHab1o,3403
|
|
259
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query14.tpl,sha256=pVDNXFqCqM1v7Rc4C-2M8gacPp5S1eeiNJqBH7Uz_14,9316
|
|
260
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query15.tpl,sha256=nTnb3v-lbqNyKHC-5wPVvSKTND3k6EMaja72L_uDvFc,2396
|
|
261
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query16.tpl,sha256=WRE0iSISB5B_M9SoaDSqPied68VHG7kDoXhYO1tt9LA,3265
|
|
262
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query17.tpl,sha256=RKnzyB9NxgzvJlEcBWMLjCia4MG-fF26N-Hp_4XxJEg,3465
|
|
263
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query18.tpl,sha256=WgkpSSLpaQ-0ev-Ry5wOtD1kpxPwURDJMzZAk2T64Rs,3314
|
|
264
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query19.tpl,sha256=Ypnf0Qe-vYesZAEIQ4AZlu_t2ZYF79eKSxHR-LnpdvM,2690
|
|
265
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query2.tpl,sha256=TdSJF1VmNPs9faGg3iQlmScuJ_Ikdr_itSIbTxWwr8I,3897
|
|
266
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query20.tpl,sha256=fgvFvAKjBcTIUncRqWXl9BnnKLTnZoQ0lFbo1yJeaMk,2697
|
|
267
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query21.tpl,sha256=RxPWQ36lZcVPFUPolCgLeC27ehwTK2d9TAfxHuQrbGc,2919
|
|
268
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query22.tpl,sha256=uguZR2AYZCLwciPWoIQVxCkuwdpb4XCisDySHla2iW0,2361
|
|
269
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query23.tpl,sha256=gMe6_zOz7PyQMWun2JzwmM2z6d63emKt5RCTR5Ce4-A,5790
|
|
270
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query24.tpl,sha256=cf-w55-VJZiKIR2isaMh9hoB6gJbNHF6ZXz5XSeHFPQ,4286
|
|
271
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query25.tpl,sha256=5RFbpRnqi--3Ab9bvXBDw98vC8awGkK-eIwqqkce3vI,2910
|
|
272
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query26.tpl,sha256=dLsyUSosT46xFhflDwRBz-mh5OggUeUhGN8HRSrz0rM,2558
|
|
273
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query27.tpl,sha256=CK9LgMHvxSVy_4eZp6v8fAceXcPZa2ic_e7uNLauR9Y,3104
|
|
274
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query28.tpl,sha256=M8on68B6j01iTq4Aida2kH8mQigYQmpOohhB6jLt6Yc,4515
|
|
275
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query29.tpl,sha256=hPsEL5rKpZ768t8JdSdFhEyVhUCYFh5hLhM-eqr4WTw,3195
|
|
276
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query3.tpl,sha256=l1Z0JZD3RqyXcDowr3UfJ43ZsWpGoqX4Ch6OtqnFw_I,2435
|
|
277
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query30.tpl,sha256=Bv_59vMHLa9dzmiqn7XID2hZkP18stN6rBJ55-U8xG8,3071
|
|
278
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query31.tpl,sha256=va6TlpHsQdpnCGMq5ScDOnAxQHhc6bbtoMl5mDujrUM,3634
|
|
279
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query32.tpl,sha256=HVM0F_Vz16oEsx-1CM1RlgLzlUFedDBQD3ZbUM8aUZ8,2594
|
|
280
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query33.tpl,sha256=fvZltnOabaSEFHtjYVXWYcwwcnIWjwZ3alJJayGfEDs,3974
|
|
281
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query34.tpl,sha256=aXGvO3Mpd7o5x1suEilfVViWbV1QtPPn-9jwcBcT-sw,3836
|
|
282
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query35.tpl,sha256=4CEEuznGlnaKpbvu1TfwUvU5dTVSXug8A8_KN6n1ZXQ,3800
|
|
283
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query36.tpl,sha256=6bt-ja7G9KUU5MjywdlGx_w7jNwuvm6FjvCHG0UigtM,3234
|
|
284
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query37.tpl,sha256=lWQsaj3Rdc-TKok3oNYANKKmU3AhwBG6HtYS21fggTE,2536
|
|
285
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query38.tpl,sha256=vEJ_30-6Ldd2t_0PsZCZHMOjTinCc14hE1kbOw9oNh4,2723
|
|
286
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query39.tpl,sha256=lJjvgYSHB1qPD16WKNPHcB12eX-s7uaYjTjNee52mco,3962
|
|
287
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query4.tpl,sha256=CluSv_pl-kbtBPbuEQeW1aSbqysIGcd22GiguIULe80,6251
|
|
288
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query40.tpl,sha256=UWTGaOajjzYDAMKBKTseNvuDbB7N1oVwgtpKcBo1CNY,2763
|
|
289
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query41.tpl,sha256=vCHjW-24RN2Kt6jlwgy5JrPlBu3dLE0xUVojslLCahc,4014
|
|
290
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query42.tpl,sha256=upuQNuwuuL-rwULcPtnfamY5JAHEL1uNMzVv-uetzYk,2353
|
|
291
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query43.tpl,sha256=59GBmJkZSjdcPHYuEPJf3gT5R5l_XvfRxxm3B03drsg,2937
|
|
292
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query44.tpl,sha256=molZlnzODdW6CSpUHP-rCyD6xZtvD9FUGYITaZdR84c,3584
|
|
293
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query45.tpl,sha256=784fwwm0frZDvK4UeTjUQ84fY9wRYHTmJdwvm5ryGNE,2605
|
|
294
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query46.tpl,sha256=4dPdZafuAEQ7CqLtWgbbXNHDjB-ENTLhAoy4DqcgPFQ,3550
|
|
295
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query47.tpl,sha256=1flFdQhGaRXJfRIzt4FNs4100Wh1YZjW_wTNEfOtOxw,3969
|
|
296
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query48.tpl,sha256=Vsz-s-bN11Ed8rNvt7Trw0KagoYzowK9KXd3XjghAp4,3196
|
|
297
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query49.tpl,sha256=BHdJp8wDUmQGHufMRv90MZS_KroGaHPZc4lLsWmJ_u8,5618
|
|
298
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query5.tpl,sha256=4jLGQrMfe9Wif2UqBSj10z6zjoVPbEXqbyfgrTq6pN4,5808
|
|
299
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query50.tpl,sha256=WF6SSFgsZQ7h9ceKQs4N5IBtmur1vWqbM20aDL6-KUc,3427
|
|
300
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query51.tpl,sha256=TLb7P13U6beqJqbCnHWVF_Kcx7_pgicGmS4UybQOfoA,3462
|
|
301
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query52.tpl,sha256=AV4ha60hA7Fy0mpd1ty7feDM3ZyGVXhPKCF04w1-Zt8,2313
|
|
302
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query53.tpl,sha256=KhJWWgqPMldWZ6DJPCEufSH3kZ8DrTGL41pe3tu_BDc,2890
|
|
303
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query54.tpl,sha256=zeOE0UHJErha3b_yVPKavckCixA9JbKgELKV0o3FjW4,3756
|
|
304
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query55.tpl,sha256=2s1Y1v3yT9VKfX1372CN9tmMDoxwHv938-9lJS093e8,2233
|
|
305
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query56.tpl,sha256=eo8WP3He1lC7ydia-IEUtEt_zEyq-ndoV6wim4VcWjs,3833
|
|
306
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query57.tpl,sha256=mDNIEAZpS1Zc5-GfUTpitJuxZmBzGxc-Ikq74m84wkA,3676
|
|
307
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query58.tpl,sha256=RSEJxjSXdmQV-nPOSradW6h8EMOWxmsYNufkGrM55V8,4220
|
|
308
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query59.tpl,sha256=X0PqKu_VyQCW6voTE7KW5Ac4SfXlTlsS3kt9r23TK7c,3836
|
|
309
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query6.tpl,sha256=UC9KfWTY3lBDecdQvk6ZGO9Gax2ygCSxtE-3DeJXcF4,2535
|
|
310
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query60.tpl,sha256=l8ML7IUOE57EqwIGyMVPvW2WJY6a8kZpZguCILMpYf4,3859
|
|
311
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query61.tpl,sha256=lQH0j9c9TtJxEZQ9-oaUgGlYhNcLmqrwVKBYXuScjW8,3269
|
|
312
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query62.tpl,sha256=ogVAw2YEjDamfC6HeUcr7ukfgeKpWYGRj_6RhqkBRU4,2975
|
|
313
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query63.tpl,sha256=zSkLb4qD5pD8-o7inOScvRU6iIQLdxLcHO05EvWHBFk,3093
|
|
314
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query64.tpl,sha256=2sD5yeDPcVlu6MdtfNLjLbGQEk5S8lp3Ivtz-k0EHZM,5417
|
|
315
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query65.tpl,sha256=R2mlUXG6WdNdZn1rEIptfV5XI_cEgj4qh1R0z0YEyDg,2669
|
|
316
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query66.tpl,sha256=g8SxMhLCI8E4wvgH9ltnNxGSpUCs_05JBrdH708LfBM,9583
|
|
317
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query67.tpl,sha256=O7CsjVnuN-BPIj_5AEG_0uC7Coy_Cu2qs8nGEDOOmcw,2990
|
|
318
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query68.tpl,sha256=uIlPE73RuC-dujrq5J-NVofIO5nCmxNMNeI5uM7Kiwc,3535
|
|
319
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query69.tpl,sha256=8C6Ll5Lr862udEDCX1E0kkhdy874X21Kl8GD9weqVio,3362
|
|
320
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query7.tpl,sha256=Gl_ifbLVARoHMtn5jbVVj0DrKO37HOR0HfzPVp6vzi0,2548
|
|
321
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query70.tpl,sha256=ki2YYgtEwN0TdA7Gy5SnAKDACY7TJAGvfXUQfTzJYe4,2961
|
|
322
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query71.tpl,sha256=IwvVKVekSMRtjGMmRVLt8mBU89WJGqdx00NWdyMD3QE,3383
|
|
323
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query72.tpl,sha256=7cG9IQRgHMwTejeG7AKLCzQm-UhXClb368vtTsnWPfk,3073
|
|
324
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query73.tpl,sha256=b1AaAoQ7IqmdhezIMJmdBed88V2BT0J4zn5xevYo0Dc,3409
|
|
325
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query74.tpl,sha256=oZ2ezdTSRRXH2Pp7Op-lhdkcKDaTRrR3OM9x8u8HDEc,4024
|
|
326
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query75.tpl,sha256=GytyP_Y_qm_hZwsxa6nUUsEbsBvJxpUjv-KIsuaRqdA,5028
|
|
327
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query76.tpl,sha256=dIIBof1CmVGqFsWno2GupDfMf4Pb-g3_pfaEToaqwFw,3564
|
|
328
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query77.tpl,sha256=IWRPu8W3zasktRpxZHzsk3-LsmHuX2_UnMf45ipmkCY,5008
|
|
329
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query78.tpl,sha256=UAB7acSyoaB8zaF3gakeMjzLyTWjA3IqD9Z1slahTDk,4013
|
|
330
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query79.tpl,sha256=vJuFrXyESN6t7UdpodA-LcaBbafCp5Y_520WhxQ9sm8,2822
|
|
331
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query8.tpl,sha256=N4w_7EY43VfO8XMr5wBln8cNeNCl4EtdLl87ErCpur4,9513
|
|
332
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query80.tpl,sha256=lNuxyA-MToi7GmHCiFI03j8kXqZ7KvaO2BsRKdcBTiY,4795
|
|
333
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query81.tpl,sha256=Yd7xS8x8TRFsxn_rvx8XNlDXUHMVlb2XxSa0_o2vuVg,3145
|
|
334
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query82.tpl,sha256=5vvhnLl_Q9Rzsgk0SRuki9zMw6HBMt_vW5a9D9rAjCk,2526
|
|
335
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query83.tpl,sha256=cPW8l3g-QUDpVSjWpD-3LT_AeNFDMp9p1praQ1Od1dU,3888
|
|
336
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query84.tpl,sha256=fu2TOsZqQ69ed2xgTcFtS2YkvvCsjRDR6YP1xWSL968,2477
|
|
337
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query85.tpl,sha256=HpVhTnrr24WPXZqnb5j_GUDtadhssmu5JiN-mcl4kCU,4066
|
|
338
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query86.tpl,sha256=m3cimG1u_pz6vKvYfasSYo99-a27BgnKzvayMkfr3xA,2463
|
|
339
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query87.tpl,sha256=pSGlBmNMti98wFbZER5hYxjMFR6yBeHRTyWt97mvWXY,2698
|
|
340
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query88.tpl,sha256=ngB1U5xVR1MPHplXOP4-36vwXDZnP7sRaE-PzeC33Tw,7296
|
|
341
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query89.tpl,sha256=pg3yfuI-ifyjaPLatILai_9hyTA6Edw3h-gH7Ibazfo,3581
|
|
342
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query9.tpl,sha256=LbHVk_BaDTZIMbtMW0hwdD-LkbaKm-5i8_cbMCPO2yk,4098
|
|
343
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query90.tpl,sha256=QFIO9-lsk-0_-s-uhOLTPyF1p5Xg21Djayx7F1jiTeg,2911
|
|
344
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query91.tpl,sha256=BFhgl-ODhx503-Wzbf02PDlnYnbWHna3S4Svy--oyYY,3073
|
|
345
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query92.tpl,sha256=qObBM3XaGMLKnM6NBEvt8XnmbRmed7C1Pd8MjB8onuI,2625
|
|
346
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query93.tpl,sha256=lAOYYMg1pvFEwcK3E_q_wOGSN4M9YS8U31SAcCT0RVY,2596
|
|
347
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query94.tpl,sha256=isB-qbnDXa-T1kmAgltgZ2mQ7sQ8cKZTx-asqtPRCJ8,2749
|
|
348
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query95.tpl,sha256=xGdarRdFaf9HfTkYwIT9Vv1qtPrCxdPFnQePCImpCOo,2941
|
|
349
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query96.tpl,sha256=TxU9YQLBmsf8JjV14U6p7mI9DXL4XiLbjt0sdBHb9Pw,2278
|
|
350
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query97.tpl,sha256=qrN8yPtUK2UGO0dera6RFqNucUoStWLYMHE8scqNnIM,2773
|
|
351
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query98.tpl,sha256=DIwnN710Ip34U_RbOPTmeUJRQis_DsCWICgt_IDt4z8,2629
|
|
352
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/query99.tpl,sha256=o45SAM7MRzHl8NoPPq95jBk3LkxzK14aVyVeeu49K1g,2985
|
|
353
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/sqlserver.tpl,sha256=YXA-Rb6aPimaLb16aWiSdy_aovQHk1SmM5USfFQfZlM,1815
|
|
354
|
-
benchbox/_binaries/tpc-ds/linux-arm64/query_templates/templates.lst,sha256=bIi72xXh93BN2YaGO25G0KebRCXRldqfCvZYQGp6jDA,1179
|
|
355
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/checksums.md5,sha256=ppl6s8oMaa22tcUzTCU6IFblza--c1UIwelkigTwxZI,166
|
|
356
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/dsdgen,sha256=Y_i21WZumnzVvC7JeqCqJ4exId5y-a1DI2xL-l52iw8,543880
|
|
357
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/dsqgen,sha256=tlgSTSlKNnd7JP-8XsIp-7osDq1yRAu360Wg8TDh4Oo,342944
|
|
358
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
359
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/tpcds.idx,sha256=GcEfO8l0WzQjRq4_WYL5-sM_jc8N2I9x24b3N0iaLlo,640585
|
|
360
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/README,sha256=mDG8UM4W0ffi4HpTEMAlL8o5jMqHxyH4RBlKV807FDM,164
|
|
361
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/ansi.tpl,sha256=RBTh66Hdcp8vEfrkKnv9sVbvYaT3VyaU7XsXJRmQaes,1833
|
|
362
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/db2.tpl,sha256=HgSHXmIT83Uq0Elm-dcDQv130rcJ7KiXqX2J8eMJTiY,1852
|
|
363
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/netezza.tpl,sha256=yj_GuEHTKuixq_vWefwAibzGCBDVjFL1-llEGGIlVz4,1835
|
|
364
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/oracle.tpl,sha256=nz8zUfWR2zc0LoJaOLqGsIL8RyQV3V9jsG2mjjoTYv4,1863
|
|
365
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query1.tpl,sha256=Q70ScEMV9Fhml23pdOgJxTcXNNjf4qBPO6DBOENQ7Pc,2739
|
|
366
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query10.tpl,sha256=k3iCuGsKDFRddx6fI2IoGf2kMEM509p5y_frYmsbRZE,3683
|
|
367
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query11.tpl,sha256=oDMeoGjpxP2342HZjo8P68dN9YHOCoTRB188M1ek_J8,4861
|
|
368
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query12.tpl,sha256=hJ7pSWREG96F_zIHjzyrOjjUl6XPKST8pxOC4aFsWmk,2676
|
|
369
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query13.tpl,sha256=JkfP9OqhDVvyaQCwSYYdMGvVOnrlj6qJ6QXUiPHab1o,3403
|
|
370
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query14.tpl,sha256=pVDNXFqCqM1v7Rc4C-2M8gacPp5S1eeiNJqBH7Uz_14,9316
|
|
371
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query15.tpl,sha256=nTnb3v-lbqNyKHC-5wPVvSKTND3k6EMaja72L_uDvFc,2396
|
|
372
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query16.tpl,sha256=WRE0iSISB5B_M9SoaDSqPied68VHG7kDoXhYO1tt9LA,3265
|
|
373
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query17.tpl,sha256=RKnzyB9NxgzvJlEcBWMLjCia4MG-fF26N-Hp_4XxJEg,3465
|
|
374
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query18.tpl,sha256=WgkpSSLpaQ-0ev-Ry5wOtD1kpxPwURDJMzZAk2T64Rs,3314
|
|
375
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query19.tpl,sha256=Ypnf0Qe-vYesZAEIQ4AZlu_t2ZYF79eKSxHR-LnpdvM,2690
|
|
376
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query2.tpl,sha256=TdSJF1VmNPs9faGg3iQlmScuJ_Ikdr_itSIbTxWwr8I,3897
|
|
377
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query20.tpl,sha256=fgvFvAKjBcTIUncRqWXl9BnnKLTnZoQ0lFbo1yJeaMk,2697
|
|
378
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query21.tpl,sha256=RxPWQ36lZcVPFUPolCgLeC27ehwTK2d9TAfxHuQrbGc,2919
|
|
379
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query22.tpl,sha256=uguZR2AYZCLwciPWoIQVxCkuwdpb4XCisDySHla2iW0,2361
|
|
380
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query23.tpl,sha256=gMe6_zOz7PyQMWun2JzwmM2z6d63emKt5RCTR5Ce4-A,5790
|
|
381
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query24.tpl,sha256=cf-w55-VJZiKIR2isaMh9hoB6gJbNHF6ZXz5XSeHFPQ,4286
|
|
382
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query25.tpl,sha256=5RFbpRnqi--3Ab9bvXBDw98vC8awGkK-eIwqqkce3vI,2910
|
|
383
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query26.tpl,sha256=dLsyUSosT46xFhflDwRBz-mh5OggUeUhGN8HRSrz0rM,2558
|
|
384
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query27.tpl,sha256=CK9LgMHvxSVy_4eZp6v8fAceXcPZa2ic_e7uNLauR9Y,3104
|
|
385
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query28.tpl,sha256=M8on68B6j01iTq4Aida2kH8mQigYQmpOohhB6jLt6Yc,4515
|
|
386
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query29.tpl,sha256=hPsEL5rKpZ768t8JdSdFhEyVhUCYFh5hLhM-eqr4WTw,3195
|
|
387
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query3.tpl,sha256=l1Z0JZD3RqyXcDowr3UfJ43ZsWpGoqX4Ch6OtqnFw_I,2435
|
|
388
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query30.tpl,sha256=Bv_59vMHLa9dzmiqn7XID2hZkP18stN6rBJ55-U8xG8,3071
|
|
389
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query31.tpl,sha256=va6TlpHsQdpnCGMq5ScDOnAxQHhc6bbtoMl5mDujrUM,3634
|
|
390
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query32.tpl,sha256=HVM0F_Vz16oEsx-1CM1RlgLzlUFedDBQD3ZbUM8aUZ8,2594
|
|
391
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query33.tpl,sha256=fvZltnOabaSEFHtjYVXWYcwwcnIWjwZ3alJJayGfEDs,3974
|
|
392
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query34.tpl,sha256=aXGvO3Mpd7o5x1suEilfVViWbV1QtPPn-9jwcBcT-sw,3836
|
|
393
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query35.tpl,sha256=4CEEuznGlnaKpbvu1TfwUvU5dTVSXug8A8_KN6n1ZXQ,3800
|
|
394
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query36.tpl,sha256=6bt-ja7G9KUU5MjywdlGx_w7jNwuvm6FjvCHG0UigtM,3234
|
|
395
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query37.tpl,sha256=lWQsaj3Rdc-TKok3oNYANKKmU3AhwBG6HtYS21fggTE,2536
|
|
396
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query38.tpl,sha256=vEJ_30-6Ldd2t_0PsZCZHMOjTinCc14hE1kbOw9oNh4,2723
|
|
397
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query39.tpl,sha256=lJjvgYSHB1qPD16WKNPHcB12eX-s7uaYjTjNee52mco,3962
|
|
398
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query4.tpl,sha256=CluSv_pl-kbtBPbuEQeW1aSbqysIGcd22GiguIULe80,6251
|
|
399
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query40.tpl,sha256=UWTGaOajjzYDAMKBKTseNvuDbB7N1oVwgtpKcBo1CNY,2763
|
|
400
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query41.tpl,sha256=vCHjW-24RN2Kt6jlwgy5JrPlBu3dLE0xUVojslLCahc,4014
|
|
401
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query42.tpl,sha256=upuQNuwuuL-rwULcPtnfamY5JAHEL1uNMzVv-uetzYk,2353
|
|
402
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query43.tpl,sha256=59GBmJkZSjdcPHYuEPJf3gT5R5l_XvfRxxm3B03drsg,2937
|
|
403
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query44.tpl,sha256=molZlnzODdW6CSpUHP-rCyD6xZtvD9FUGYITaZdR84c,3584
|
|
404
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query45.tpl,sha256=784fwwm0frZDvK4UeTjUQ84fY9wRYHTmJdwvm5ryGNE,2605
|
|
405
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query46.tpl,sha256=4dPdZafuAEQ7CqLtWgbbXNHDjB-ENTLhAoy4DqcgPFQ,3550
|
|
406
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query47.tpl,sha256=1flFdQhGaRXJfRIzt4FNs4100Wh1YZjW_wTNEfOtOxw,3969
|
|
407
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query48.tpl,sha256=Vsz-s-bN11Ed8rNvt7Trw0KagoYzowK9KXd3XjghAp4,3196
|
|
408
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query49.tpl,sha256=BHdJp8wDUmQGHufMRv90MZS_KroGaHPZc4lLsWmJ_u8,5618
|
|
409
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query5.tpl,sha256=4jLGQrMfe9Wif2UqBSj10z6zjoVPbEXqbyfgrTq6pN4,5808
|
|
410
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query50.tpl,sha256=WF6SSFgsZQ7h9ceKQs4N5IBtmur1vWqbM20aDL6-KUc,3427
|
|
411
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query51.tpl,sha256=TLb7P13U6beqJqbCnHWVF_Kcx7_pgicGmS4UybQOfoA,3462
|
|
412
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query52.tpl,sha256=AV4ha60hA7Fy0mpd1ty7feDM3ZyGVXhPKCF04w1-Zt8,2313
|
|
413
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query53.tpl,sha256=KhJWWgqPMldWZ6DJPCEufSH3kZ8DrTGL41pe3tu_BDc,2890
|
|
414
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query54.tpl,sha256=zeOE0UHJErha3b_yVPKavckCixA9JbKgELKV0o3FjW4,3756
|
|
415
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query55.tpl,sha256=2s1Y1v3yT9VKfX1372CN9tmMDoxwHv938-9lJS093e8,2233
|
|
416
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query56.tpl,sha256=eo8WP3He1lC7ydia-IEUtEt_zEyq-ndoV6wim4VcWjs,3833
|
|
417
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query57.tpl,sha256=mDNIEAZpS1Zc5-GfUTpitJuxZmBzGxc-Ikq74m84wkA,3676
|
|
418
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query58.tpl,sha256=RSEJxjSXdmQV-nPOSradW6h8EMOWxmsYNufkGrM55V8,4220
|
|
419
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query59.tpl,sha256=X0PqKu_VyQCW6voTE7KW5Ac4SfXlTlsS3kt9r23TK7c,3836
|
|
420
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query6.tpl,sha256=UC9KfWTY3lBDecdQvk6ZGO9Gax2ygCSxtE-3DeJXcF4,2535
|
|
421
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query60.tpl,sha256=l8ML7IUOE57EqwIGyMVPvW2WJY6a8kZpZguCILMpYf4,3859
|
|
422
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query61.tpl,sha256=lQH0j9c9TtJxEZQ9-oaUgGlYhNcLmqrwVKBYXuScjW8,3269
|
|
423
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query62.tpl,sha256=ogVAw2YEjDamfC6HeUcr7ukfgeKpWYGRj_6RhqkBRU4,2975
|
|
424
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query63.tpl,sha256=zSkLb4qD5pD8-o7inOScvRU6iIQLdxLcHO05EvWHBFk,3093
|
|
425
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query64.tpl,sha256=2sD5yeDPcVlu6MdtfNLjLbGQEk5S8lp3Ivtz-k0EHZM,5417
|
|
426
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query65.tpl,sha256=R2mlUXG6WdNdZn1rEIptfV5XI_cEgj4qh1R0z0YEyDg,2669
|
|
427
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query66.tpl,sha256=g8SxMhLCI8E4wvgH9ltnNxGSpUCs_05JBrdH708LfBM,9583
|
|
428
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query67.tpl,sha256=O7CsjVnuN-BPIj_5AEG_0uC7Coy_Cu2qs8nGEDOOmcw,2990
|
|
429
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query68.tpl,sha256=uIlPE73RuC-dujrq5J-NVofIO5nCmxNMNeI5uM7Kiwc,3535
|
|
430
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query69.tpl,sha256=8C6Ll5Lr862udEDCX1E0kkhdy874X21Kl8GD9weqVio,3362
|
|
431
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query7.tpl,sha256=Gl_ifbLVARoHMtn5jbVVj0DrKO37HOR0HfzPVp6vzi0,2548
|
|
432
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query70.tpl,sha256=ki2YYgtEwN0TdA7Gy5SnAKDACY7TJAGvfXUQfTzJYe4,2961
|
|
433
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query71.tpl,sha256=IwvVKVekSMRtjGMmRVLt8mBU89WJGqdx00NWdyMD3QE,3383
|
|
434
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query72.tpl,sha256=7cG9IQRgHMwTejeG7AKLCzQm-UhXClb368vtTsnWPfk,3073
|
|
435
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query73.tpl,sha256=b1AaAoQ7IqmdhezIMJmdBed88V2BT0J4zn5xevYo0Dc,3409
|
|
436
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query74.tpl,sha256=oZ2ezdTSRRXH2Pp7Op-lhdkcKDaTRrR3OM9x8u8HDEc,4024
|
|
437
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query75.tpl,sha256=GytyP_Y_qm_hZwsxa6nUUsEbsBvJxpUjv-KIsuaRqdA,5028
|
|
438
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query76.tpl,sha256=dIIBof1CmVGqFsWno2GupDfMf4Pb-g3_pfaEToaqwFw,3564
|
|
439
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query77.tpl,sha256=IWRPu8W3zasktRpxZHzsk3-LsmHuX2_UnMf45ipmkCY,5008
|
|
440
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query78.tpl,sha256=UAB7acSyoaB8zaF3gakeMjzLyTWjA3IqD9Z1slahTDk,4013
|
|
441
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query79.tpl,sha256=vJuFrXyESN6t7UdpodA-LcaBbafCp5Y_520WhxQ9sm8,2822
|
|
442
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query8.tpl,sha256=N4w_7EY43VfO8XMr5wBln8cNeNCl4EtdLl87ErCpur4,9513
|
|
443
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query80.tpl,sha256=lNuxyA-MToi7GmHCiFI03j8kXqZ7KvaO2BsRKdcBTiY,4795
|
|
444
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query81.tpl,sha256=Yd7xS8x8TRFsxn_rvx8XNlDXUHMVlb2XxSa0_o2vuVg,3145
|
|
445
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query82.tpl,sha256=5vvhnLl_Q9Rzsgk0SRuki9zMw6HBMt_vW5a9D9rAjCk,2526
|
|
446
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query83.tpl,sha256=cPW8l3g-QUDpVSjWpD-3LT_AeNFDMp9p1praQ1Od1dU,3888
|
|
447
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query84.tpl,sha256=fu2TOsZqQ69ed2xgTcFtS2YkvvCsjRDR6YP1xWSL968,2477
|
|
448
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query85.tpl,sha256=HpVhTnrr24WPXZqnb5j_GUDtadhssmu5JiN-mcl4kCU,4066
|
|
449
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query86.tpl,sha256=m3cimG1u_pz6vKvYfasSYo99-a27BgnKzvayMkfr3xA,2463
|
|
450
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query87.tpl,sha256=pSGlBmNMti98wFbZER5hYxjMFR6yBeHRTyWt97mvWXY,2698
|
|
451
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query88.tpl,sha256=ngB1U5xVR1MPHplXOP4-36vwXDZnP7sRaE-PzeC33Tw,7296
|
|
452
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query89.tpl,sha256=pg3yfuI-ifyjaPLatILai_9hyTA6Edw3h-gH7Ibazfo,3581
|
|
453
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query9.tpl,sha256=LbHVk_BaDTZIMbtMW0hwdD-LkbaKm-5i8_cbMCPO2yk,4098
|
|
454
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query90.tpl,sha256=QFIO9-lsk-0_-s-uhOLTPyF1p5Xg21Djayx7F1jiTeg,2911
|
|
455
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query91.tpl,sha256=BFhgl-ODhx503-Wzbf02PDlnYnbWHna3S4Svy--oyYY,3073
|
|
456
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query92.tpl,sha256=qObBM3XaGMLKnM6NBEvt8XnmbRmed7C1Pd8MjB8onuI,2625
|
|
457
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query93.tpl,sha256=lAOYYMg1pvFEwcK3E_q_wOGSN4M9YS8U31SAcCT0RVY,2596
|
|
458
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query94.tpl,sha256=isB-qbnDXa-T1kmAgltgZ2mQ7sQ8cKZTx-asqtPRCJ8,2749
|
|
459
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query95.tpl,sha256=xGdarRdFaf9HfTkYwIT9Vv1qtPrCxdPFnQePCImpCOo,2941
|
|
460
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query96.tpl,sha256=TxU9YQLBmsf8JjV14U6p7mI9DXL4XiLbjt0sdBHb9Pw,2278
|
|
461
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query97.tpl,sha256=qrN8yPtUK2UGO0dera6RFqNucUoStWLYMHE8scqNnIM,2773
|
|
462
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query98.tpl,sha256=DIwnN710Ip34U_RbOPTmeUJRQis_DsCWICgt_IDt4z8,2629
|
|
463
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/query99.tpl,sha256=o45SAM7MRzHl8NoPPq95jBk3LkxzK14aVyVeeu49K1g,2985
|
|
464
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/sqlserver.tpl,sha256=YXA-Rb6aPimaLb16aWiSdy_aovQHk1SmM5USfFQfZlM,1815
|
|
465
|
-
benchbox/_binaries/tpc-ds/linux-x86_64/query_templates/templates.lst,sha256=bIi72xXh93BN2YaGO25G0KebRCXRldqfCvZYQGp6jDA,1179
|
|
466
|
-
benchbox/_binaries/tpc-ds/windows-arm64/checksums.md5,sha256=qm0KlH7hDTQowqO_RgMmAC_Dpy1L2MTz6_rCShUxwpU,46
|
|
467
|
-
benchbox/_binaries/tpc-ds/windows-arm64/dsdgen.exe,sha256=m7nHOE9M7eznw2njjun2pyQlft_B44AisSC21nXrOP8,1310059
|
|
468
|
-
benchbox/_binaries/tpc-ds/windows-arm64/dsqgen.exe,sha256=3oTUBWNv2IaPPj5_d-XXGo3VtKinxSB97nxOYzGgc-8,1048461
|
|
469
|
-
benchbox/_binaries/tpc-ds/windows-arm64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
470
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/checksums.md5,sha256=qm0KlH7hDTQowqO_RgMmAC_Dpy1L2MTz6_rCShUxwpU,46
|
|
471
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/dsdgen.exe,sha256=5Hq1CBLajSDWyL8bU1_QLe1t0Yw_3y-1Lr7mrDeeIuU,1257021
|
|
472
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/dsqgen.exe,sha256=D5hd6oDPjRckbGzZY6QjTjXhxXl6FaCvk0QNzOaQYr8,1004385
|
|
473
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/tpcds.dst,sha256=eusUfOyVghaKD8n-OXm_LTNx3Qi-JSi-alMQlMavPHE,20099
|
|
474
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/README,sha256=mDG8UM4W0ffi4HpTEMAlL8o5jMqHxyH4RBlKV807FDM,164
|
|
475
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/ansi.tpl,sha256=RBTh66Hdcp8vEfrkKnv9sVbvYaT3VyaU7XsXJRmQaes,1833
|
|
476
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/db2.tpl,sha256=HgSHXmIT83Uq0Elm-dcDQv130rcJ7KiXqX2J8eMJTiY,1852
|
|
477
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/netezza.tpl,sha256=yj_GuEHTKuixq_vWefwAibzGCBDVjFL1-llEGGIlVz4,1835
|
|
478
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/oracle.tpl,sha256=nz8zUfWR2zc0LoJaOLqGsIL8RyQV3V9jsG2mjjoTYv4,1863
|
|
479
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query1.tpl,sha256=Q70ScEMV9Fhml23pdOgJxTcXNNjf4qBPO6DBOENQ7Pc,2739
|
|
480
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query10.tpl,sha256=k3iCuGsKDFRddx6fI2IoGf2kMEM509p5y_frYmsbRZE,3683
|
|
481
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query11.tpl,sha256=oDMeoGjpxP2342HZjo8P68dN9YHOCoTRB188M1ek_J8,4861
|
|
482
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query12.tpl,sha256=hJ7pSWREG96F_zIHjzyrOjjUl6XPKST8pxOC4aFsWmk,2676
|
|
483
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query13.tpl,sha256=JkfP9OqhDVvyaQCwSYYdMGvVOnrlj6qJ6QXUiPHab1o,3403
|
|
484
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query14.tpl,sha256=pVDNXFqCqM1v7Rc4C-2M8gacPp5S1eeiNJqBH7Uz_14,9316
|
|
485
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query15.tpl,sha256=nTnb3v-lbqNyKHC-5wPVvSKTND3k6EMaja72L_uDvFc,2396
|
|
486
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query16.tpl,sha256=WRE0iSISB5B_M9SoaDSqPied68VHG7kDoXhYO1tt9LA,3265
|
|
487
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query17.tpl,sha256=RKnzyB9NxgzvJlEcBWMLjCia4MG-fF26N-Hp_4XxJEg,3465
|
|
488
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query18.tpl,sha256=WgkpSSLpaQ-0ev-Ry5wOtD1kpxPwURDJMzZAk2T64Rs,3314
|
|
489
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query19.tpl,sha256=Ypnf0Qe-vYesZAEIQ4AZlu_t2ZYF79eKSxHR-LnpdvM,2690
|
|
490
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query2.tpl,sha256=TdSJF1VmNPs9faGg3iQlmScuJ_Ikdr_itSIbTxWwr8I,3897
|
|
491
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query20.tpl,sha256=fgvFvAKjBcTIUncRqWXl9BnnKLTnZoQ0lFbo1yJeaMk,2697
|
|
492
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query21.tpl,sha256=RxPWQ36lZcVPFUPolCgLeC27ehwTK2d9TAfxHuQrbGc,2919
|
|
493
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query22.tpl,sha256=uguZR2AYZCLwciPWoIQVxCkuwdpb4XCisDySHla2iW0,2361
|
|
494
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query23.tpl,sha256=gMe6_zOz7PyQMWun2JzwmM2z6d63emKt5RCTR5Ce4-A,5790
|
|
495
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query24.tpl,sha256=cf-w55-VJZiKIR2isaMh9hoB6gJbNHF6ZXz5XSeHFPQ,4286
|
|
496
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query25.tpl,sha256=5RFbpRnqi--3Ab9bvXBDw98vC8awGkK-eIwqqkce3vI,2910
|
|
497
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query26.tpl,sha256=dLsyUSosT46xFhflDwRBz-mh5OggUeUhGN8HRSrz0rM,2558
|
|
498
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query27.tpl,sha256=CK9LgMHvxSVy_4eZp6v8fAceXcPZa2ic_e7uNLauR9Y,3104
|
|
499
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query28.tpl,sha256=M8on68B6j01iTq4Aida2kH8mQigYQmpOohhB6jLt6Yc,4515
|
|
500
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query29.tpl,sha256=hPsEL5rKpZ768t8JdSdFhEyVhUCYFh5hLhM-eqr4WTw,3195
|
|
501
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query3.tpl,sha256=l1Z0JZD3RqyXcDowr3UfJ43ZsWpGoqX4Ch6OtqnFw_I,2435
|
|
502
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query30.tpl,sha256=Bv_59vMHLa9dzmiqn7XID2hZkP18stN6rBJ55-U8xG8,3071
|
|
503
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query31.tpl,sha256=va6TlpHsQdpnCGMq5ScDOnAxQHhc6bbtoMl5mDujrUM,3634
|
|
504
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query32.tpl,sha256=HVM0F_Vz16oEsx-1CM1RlgLzlUFedDBQD3ZbUM8aUZ8,2594
|
|
505
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query33.tpl,sha256=fvZltnOabaSEFHtjYVXWYcwwcnIWjwZ3alJJayGfEDs,3974
|
|
506
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query34.tpl,sha256=aXGvO3Mpd7o5x1suEilfVViWbV1QtPPn-9jwcBcT-sw,3836
|
|
507
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query35.tpl,sha256=4CEEuznGlnaKpbvu1TfwUvU5dTVSXug8A8_KN6n1ZXQ,3800
|
|
508
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query36.tpl,sha256=6bt-ja7G9KUU5MjywdlGx_w7jNwuvm6FjvCHG0UigtM,3234
|
|
509
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query37.tpl,sha256=lWQsaj3Rdc-TKok3oNYANKKmU3AhwBG6HtYS21fggTE,2536
|
|
510
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query38.tpl,sha256=vEJ_30-6Ldd2t_0PsZCZHMOjTinCc14hE1kbOw9oNh4,2723
|
|
511
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query39.tpl,sha256=lJjvgYSHB1qPD16WKNPHcB12eX-s7uaYjTjNee52mco,3962
|
|
512
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query4.tpl,sha256=CluSv_pl-kbtBPbuEQeW1aSbqysIGcd22GiguIULe80,6251
|
|
513
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query40.tpl,sha256=UWTGaOajjzYDAMKBKTseNvuDbB7N1oVwgtpKcBo1CNY,2763
|
|
514
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query41.tpl,sha256=vCHjW-24RN2Kt6jlwgy5JrPlBu3dLE0xUVojslLCahc,4014
|
|
515
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query42.tpl,sha256=upuQNuwuuL-rwULcPtnfamY5JAHEL1uNMzVv-uetzYk,2353
|
|
516
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query43.tpl,sha256=59GBmJkZSjdcPHYuEPJf3gT5R5l_XvfRxxm3B03drsg,2937
|
|
517
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query44.tpl,sha256=molZlnzODdW6CSpUHP-rCyD6xZtvD9FUGYITaZdR84c,3584
|
|
518
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query45.tpl,sha256=784fwwm0frZDvK4UeTjUQ84fY9wRYHTmJdwvm5ryGNE,2605
|
|
519
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query46.tpl,sha256=4dPdZafuAEQ7CqLtWgbbXNHDjB-ENTLhAoy4DqcgPFQ,3550
|
|
520
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query47.tpl,sha256=1flFdQhGaRXJfRIzt4FNs4100Wh1YZjW_wTNEfOtOxw,3969
|
|
521
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query48.tpl,sha256=Vsz-s-bN11Ed8rNvt7Trw0KagoYzowK9KXd3XjghAp4,3196
|
|
522
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query49.tpl,sha256=BHdJp8wDUmQGHufMRv90MZS_KroGaHPZc4lLsWmJ_u8,5618
|
|
523
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query5.tpl,sha256=4jLGQrMfe9Wif2UqBSj10z6zjoVPbEXqbyfgrTq6pN4,5808
|
|
524
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query50.tpl,sha256=WF6SSFgsZQ7h9ceKQs4N5IBtmur1vWqbM20aDL6-KUc,3427
|
|
525
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query51.tpl,sha256=TLb7P13U6beqJqbCnHWVF_Kcx7_pgicGmS4UybQOfoA,3462
|
|
526
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query52.tpl,sha256=AV4ha60hA7Fy0mpd1ty7feDM3ZyGVXhPKCF04w1-Zt8,2313
|
|
527
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query53.tpl,sha256=KhJWWgqPMldWZ6DJPCEufSH3kZ8DrTGL41pe3tu_BDc,2890
|
|
528
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query54.tpl,sha256=zeOE0UHJErha3b_yVPKavckCixA9JbKgELKV0o3FjW4,3756
|
|
529
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query55.tpl,sha256=2s1Y1v3yT9VKfX1372CN9tmMDoxwHv938-9lJS093e8,2233
|
|
530
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query56.tpl,sha256=eo8WP3He1lC7ydia-IEUtEt_zEyq-ndoV6wim4VcWjs,3833
|
|
531
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query57.tpl,sha256=mDNIEAZpS1Zc5-GfUTpitJuxZmBzGxc-Ikq74m84wkA,3676
|
|
532
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query58.tpl,sha256=RSEJxjSXdmQV-nPOSradW6h8EMOWxmsYNufkGrM55V8,4220
|
|
533
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query59.tpl,sha256=X0PqKu_VyQCW6voTE7KW5Ac4SfXlTlsS3kt9r23TK7c,3836
|
|
534
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query6.tpl,sha256=UC9KfWTY3lBDecdQvk6ZGO9Gax2ygCSxtE-3DeJXcF4,2535
|
|
535
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query60.tpl,sha256=l8ML7IUOE57EqwIGyMVPvW2WJY6a8kZpZguCILMpYf4,3859
|
|
536
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query61.tpl,sha256=lQH0j9c9TtJxEZQ9-oaUgGlYhNcLmqrwVKBYXuScjW8,3269
|
|
537
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query62.tpl,sha256=ogVAw2YEjDamfC6HeUcr7ukfgeKpWYGRj_6RhqkBRU4,2975
|
|
538
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query63.tpl,sha256=zSkLb4qD5pD8-o7inOScvRU6iIQLdxLcHO05EvWHBFk,3093
|
|
539
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query64.tpl,sha256=2sD5yeDPcVlu6MdtfNLjLbGQEk5S8lp3Ivtz-k0EHZM,5417
|
|
540
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query65.tpl,sha256=R2mlUXG6WdNdZn1rEIptfV5XI_cEgj4qh1R0z0YEyDg,2669
|
|
541
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query66.tpl,sha256=g8SxMhLCI8E4wvgH9ltnNxGSpUCs_05JBrdH708LfBM,9583
|
|
542
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query67.tpl,sha256=O7CsjVnuN-BPIj_5AEG_0uC7Coy_Cu2qs8nGEDOOmcw,2990
|
|
543
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query68.tpl,sha256=uIlPE73RuC-dujrq5J-NVofIO5nCmxNMNeI5uM7Kiwc,3535
|
|
544
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query69.tpl,sha256=8C6Ll5Lr862udEDCX1E0kkhdy874X21Kl8GD9weqVio,3362
|
|
545
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query7.tpl,sha256=Gl_ifbLVARoHMtn5jbVVj0DrKO37HOR0HfzPVp6vzi0,2548
|
|
546
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query70.tpl,sha256=ki2YYgtEwN0TdA7Gy5SnAKDACY7TJAGvfXUQfTzJYe4,2961
|
|
547
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query71.tpl,sha256=IwvVKVekSMRtjGMmRVLt8mBU89WJGqdx00NWdyMD3QE,3383
|
|
548
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query72.tpl,sha256=7cG9IQRgHMwTejeG7AKLCzQm-UhXClb368vtTsnWPfk,3073
|
|
549
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query73.tpl,sha256=b1AaAoQ7IqmdhezIMJmdBed88V2BT0J4zn5xevYo0Dc,3409
|
|
550
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query74.tpl,sha256=oZ2ezdTSRRXH2Pp7Op-lhdkcKDaTRrR3OM9x8u8HDEc,4024
|
|
551
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query75.tpl,sha256=GytyP_Y_qm_hZwsxa6nUUsEbsBvJxpUjv-KIsuaRqdA,5028
|
|
552
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query76.tpl,sha256=dIIBof1CmVGqFsWno2GupDfMf4Pb-g3_pfaEToaqwFw,3564
|
|
553
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query77.tpl,sha256=IWRPu8W3zasktRpxZHzsk3-LsmHuX2_UnMf45ipmkCY,5008
|
|
554
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query78.tpl,sha256=UAB7acSyoaB8zaF3gakeMjzLyTWjA3IqD9Z1slahTDk,4013
|
|
555
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query79.tpl,sha256=vJuFrXyESN6t7UdpodA-LcaBbafCp5Y_520WhxQ9sm8,2822
|
|
556
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query8.tpl,sha256=N4w_7EY43VfO8XMr5wBln8cNeNCl4EtdLl87ErCpur4,9513
|
|
557
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query80.tpl,sha256=lNuxyA-MToi7GmHCiFI03j8kXqZ7KvaO2BsRKdcBTiY,4795
|
|
558
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query81.tpl,sha256=Yd7xS8x8TRFsxn_rvx8XNlDXUHMVlb2XxSa0_o2vuVg,3145
|
|
559
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query82.tpl,sha256=5vvhnLl_Q9Rzsgk0SRuki9zMw6HBMt_vW5a9D9rAjCk,2526
|
|
560
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query83.tpl,sha256=cPW8l3g-QUDpVSjWpD-3LT_AeNFDMp9p1praQ1Od1dU,3888
|
|
561
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query84.tpl,sha256=fu2TOsZqQ69ed2xgTcFtS2YkvvCsjRDR6YP1xWSL968,2477
|
|
562
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query85.tpl,sha256=HpVhTnrr24WPXZqnb5j_GUDtadhssmu5JiN-mcl4kCU,4066
|
|
563
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query86.tpl,sha256=m3cimG1u_pz6vKvYfasSYo99-a27BgnKzvayMkfr3xA,2463
|
|
564
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query87.tpl,sha256=pSGlBmNMti98wFbZER5hYxjMFR6yBeHRTyWt97mvWXY,2698
|
|
565
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query88.tpl,sha256=ngB1U5xVR1MPHplXOP4-36vwXDZnP7sRaE-PzeC33Tw,7296
|
|
566
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query89.tpl,sha256=pg3yfuI-ifyjaPLatILai_9hyTA6Edw3h-gH7Ibazfo,3581
|
|
567
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query9.tpl,sha256=LbHVk_BaDTZIMbtMW0hwdD-LkbaKm-5i8_cbMCPO2yk,4098
|
|
568
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query90.tpl,sha256=QFIO9-lsk-0_-s-uhOLTPyF1p5Xg21Djayx7F1jiTeg,2911
|
|
569
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query91.tpl,sha256=BFhgl-ODhx503-Wzbf02PDlnYnbWHna3S4Svy--oyYY,3073
|
|
570
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query92.tpl,sha256=qObBM3XaGMLKnM6NBEvt8XnmbRmed7C1Pd8MjB8onuI,2625
|
|
571
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query93.tpl,sha256=lAOYYMg1pvFEwcK3E_q_wOGSN4M9YS8U31SAcCT0RVY,2596
|
|
572
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query94.tpl,sha256=isB-qbnDXa-T1kmAgltgZ2mQ7sQ8cKZTx-asqtPRCJ8,2749
|
|
573
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query95.tpl,sha256=xGdarRdFaf9HfTkYwIT9Vv1qtPrCxdPFnQePCImpCOo,2941
|
|
574
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query96.tpl,sha256=TxU9YQLBmsf8JjV14U6p7mI9DXL4XiLbjt0sdBHb9Pw,2278
|
|
575
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query97.tpl,sha256=qrN8yPtUK2UGO0dera6RFqNucUoStWLYMHE8scqNnIM,2773
|
|
576
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query98.tpl,sha256=DIwnN710Ip34U_RbOPTmeUJRQis_DsCWICgt_IDt4z8,2629
|
|
577
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/query99.tpl,sha256=o45SAM7MRzHl8NoPPq95jBk3LkxzK14aVyVeeu49K1g,2985
|
|
578
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/sqlserver.tpl,sha256=YXA-Rb6aPimaLb16aWiSdy_aovQHk1SmM5USfFQfZlM,1815
|
|
579
|
-
benchbox/_binaries/tpc-ds/windows-x86_64/query_templates/templates.lst,sha256=bIi72xXh93BN2YaGO25G0KebRCXRldqfCvZYQGp6jDA,1179
|
|
580
|
-
benchbox/_binaries/tpc-h/darwin-arm64/checksums.md5,sha256=Kz5lLVzRXC_Q7_dnPJ8pyMbB6q72wjieifc0mYogyAQ,120
|
|
581
|
-
benchbox/_binaries/tpc-h/darwin-arm64/dbgen,sha256=HvgoIXmRCzjlF6k5OtirDfnytldbvKtkVbOKZhdHW8E,93128
|
|
582
|
-
benchbox/_binaries/tpc-h/darwin-arm64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
583
|
-
benchbox/_binaries/tpc-h/darwin-arm64/qgen,sha256=B0BP5oMKM1ISRChy7Vjiq4hwIwPsJ0hPUtDUFnPLASg,91448
|
|
584
|
-
benchbox/_binaries/tpc-h/darwin-x86_64/checksums.md5,sha256=ITZfgmAR5lLhm37gJ3O858Q5PZymxWTtOktRFtuWdSI,199
|
|
585
|
-
benchbox/_binaries/tpc-h/darwin-x86_64/dbgen,sha256=f5DMxvoDEwZ4MLPwQxglmkwuwYLe1VFDu87EeR_bf8I,63624
|
|
586
|
-
benchbox/_binaries/tpc-h/darwin-x86_64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
587
|
-
benchbox/_binaries/tpc-h/darwin-x86_64/qgen,sha256=-FoIaxs3P3e4C4yjyG9otCadh-OWenzoUKAJZbkfk_k,73104
|
|
588
|
-
benchbox/_binaries/tpc-h/linux-arm64/checksums.md5,sha256=88GoeFR0403xrvQ-7fDO-AAsW6VDLzRfo5HUlx4xNOA,123
|
|
589
|
-
benchbox/_binaries/tpc-h/linux-arm64/dbgen,sha256=W2hFdEDBbd-WGnPltBLr20ypA2it7d2xWSBx5uaEegI,139344
|
|
590
|
-
benchbox/_binaries/tpc-h/linux-arm64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
591
|
-
benchbox/_binaries/tpc-h/linux-arm64/qgen,sha256=C4ZIHIoFdUfnaZEPp76xJC8vpXQAzvklB3UirgOl5vg,125768
|
|
592
|
-
benchbox/_binaries/tpc-h/linux-x86_64/checksums.md5,sha256=La26skxOxurttlfRD-8aEW32j51vgyWqKci8PzctzzM,123
|
|
593
|
-
benchbox/_binaries/tpc-h/linux-x86_64/dbgen,sha256=hoJYXHfwbUwstjRAigO7ML6TkdUhHRcibiwo3hOK24s,133840
|
|
594
|
-
benchbox/_binaries/tpc-h/linux-x86_64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
595
|
-
benchbox/_binaries/tpc-h/linux-x86_64/qgen,sha256=jRPO-1FY87WxiNu6geZ2jlFVID1ZsVtd2kh2_yyL8y4,120432
|
|
596
|
-
benchbox/_binaries/tpc-h/windows-arm64/checksums.md5,sha256=Wme9gw_hF8zDl4EZt6ljtLoLQM6Y_0nOma4O7SmuAw0,179
|
|
597
|
-
benchbox/_binaries/tpc-h/windows-arm64/dbgen.exe,sha256=P51VdnwJmyrgFtr-aI1PIQF1ib2z3PtDOe_RPj1or_E,824547
|
|
598
|
-
benchbox/_binaries/tpc-h/windows-arm64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
599
|
-
benchbox/_binaries/tpc-h/windows-arm64/qgen.exe,sha256=k4YCz1IeoRRqC_KoX8RwRc4kFJagX2j9DU6CQR8TrL8,808737
|
|
600
|
-
benchbox/_binaries/tpc-h/windows-x86_64/checksums.md5,sha256=5tHLx6ADzbWdUnbYnNFqYUy9LyFUg0YcxVpYfuzDwss,179
|
|
601
|
-
benchbox/_binaries/tpc-h/windows-x86_64/dbgen.exe,sha256=s4IJOMupdNwd4p2-J78_hu7dxte8HGAsCRQ6Gz-VIEA,824547
|
|
602
|
-
benchbox/_binaries/tpc-h/windows-x86_64/dists.dss,sha256=TcVjAN4eWsXhkAUZeUU44rXRtsr1zVVwO_UwAN10iHY,11815
|
|
603
|
-
benchbox/_binaries/tpc-h/windows-x86_64/qgen.exe,sha256=Uyf8gTj_-9pf-2Mi1SHGhN2QoP2YriR9uhdP0AEgqig,808737
|
|
604
|
-
benchbox/cli/__init__.py,sha256=pTDUcsp4MEm15fdUiaIavpvZEvKdXaJBWpFbvXtabRo,412
|
|
605
|
-
benchbox/cli/app.py,sha256=e6CdIW-Jkiwr7JjgvMsUPyAsvgeqPRzvWdvZHwgYcyY,2993
|
|
606
|
-
benchbox/cli/benchmarks.py,sha256=w60a_c-nq0iz7riTCnENZ5Lv8ki_wlVhAM5KvWMjaSE,62067
|
|
607
|
-
benchbox/cli/cloud_storage.py,sha256=AC8LqSWI3kF6kk2Y7cyI8XAnjDoq76WU3W0cJqS5484,6163
|
|
608
|
-
benchbox/cli/common_types.py,sha256=6OXjFlWPp6hmGO7eGHXM6MvCn-KNHTyy-Y9_PExjiS8,164
|
|
609
|
-
benchbox/cli/composite_params.py,sha256=KsUDs-6FQ35dURjqAMv64XloznDSaBa_sYZeeyH8RsE,14142
|
|
610
|
-
benchbox/cli/config.py,sha256=5F4QKZGKm1AL3U-gOVJkdPSz04YlyO24yr02WjggDmU,52321
|
|
611
|
-
benchbox/cli/database.py,sha256=co8L9MMi4gjtluHGesF3WAPg7nSjP8JsFA26AhnqDAk,22537
|
|
612
|
-
benchbox/cli/display.py,sha256=lE8nBKpqHA4OmVH6YD7tYJMJSpeDC3D8XrWHgtyUiGs,17998
|
|
613
|
-
benchbox/cli/dryrun.py,sha256=jowsBygZMk4UqghV3Frv5eDTEeZ9JrWiXfYd_42P8aI,32620
|
|
614
|
-
benchbox/cli/exceptions.py,sha256=vQnNzxQ9GAC49toxZWoL2gtW-iemJ04NwZiffqpuP2I,22062
|
|
615
|
-
benchbox/cli/execution.py,sha256=gCUDiULVwhgz14nyh94IBbFYfrhaN9et2aCR51z4_gs,10648
|
|
616
|
-
benchbox/cli/execution_pipeline.py,sha256=IniGWlSn7c4K3GvBiaUI0yR22ORMu_djmvN1qu-rI5Y,18233
|
|
617
|
-
benchbox/cli/help.py,sha256=1mi8eSoLceni4-SXNTUEuIGvS40C2Eemc-6FfIblnyY,30246
|
|
618
|
-
benchbox/cli/main.py,sha256=0IQEHgLWwAt8O1rKkJ48LT6pqIF3rTHelKG5YhoKaHI,2482
|
|
619
|
-
benchbox/cli/onboarding.py,sha256=3kjOfdKSxBiL4MYoz3x81YOvmgd7fH86EwZvF5FXk6k,13632
|
|
620
|
-
benchbox/cli/orchestrator.py,sha256=u2qnhHOwfqkjXZk8cTm9jUIAlHiSey1wOYVz4gnuU0w,23883
|
|
621
|
-
benchbox/cli/output.py,sha256=1K1S2-seZ0z_VkfA1KFTWV_wguphed---pXpUKnkUv0,30499
|
|
622
|
-
benchbox/cli/platform.py,sha256=DW7lc_B4Rj7Xlhnb0TiDiqEjyUnzr2XSXMFUpjlP-FY,35469
|
|
623
|
-
benchbox/cli/platform_checks.py,sha256=d4KqSn7YauWYDNxCpKCL5OZdqaD7OdK1Fmyp0NTqxqQ,3127
|
|
624
|
-
benchbox/cli/platform_defaults.py,sha256=NZtdywIoacwHOkWSnp0j1KVqu3P6WsjW5IyXDqyyk5U,7916
|
|
625
|
-
benchbox/cli/platform_hooks.py,sha256=IYn6NKU5_gqHRyS_gRiPDzdRYoO1QFJkyJe4yDE0rTU,7964
|
|
626
|
-
benchbox/cli/preferences.py,sha256=2uAmuNPCxOVpEX26xd5vUSss2HS6f8XRLtRhcgPY_vw,12208
|
|
627
|
-
benchbox/cli/progress.py,sha256=qz2TdVUYYkEW-oWiyFR9Koe_g-brkRFCVul63g3hVeg,5356
|
|
628
|
-
benchbox/cli/shared.py,sha256=6dmveL6g0RXdXRI6os5Z6yC0Ekh-N1LjfLgqNSGG3P8,261
|
|
629
|
-
benchbox/cli/system.py,sha256=qEiHjDCDvensjF8QEEKRzLKkhcJ_U_zie4v9-RknwUw,2038
|
|
630
|
-
benchbox/cli/tuning.py,sha256=ddEskzZEYy06BPdlndwXZYSYieTuFd_4RNKjb2JbQgQ,33829
|
|
631
|
-
benchbox/cli/tuning_resolver.py,sha256=-wwGRxgpK9LPe_XGn84Nsffg_iXc2SU5cHxVRQpsnhg,16215
|
|
632
|
-
benchbox/cli/types.py,sha256=TzshuqBWiHNcjmaKv144gbphC3oiz1tLFiuZidN9cDU,288
|
|
633
|
-
benchbox/cli/validation.py,sha256=Q6amvGIpy1gH9bAJj1AEierY28c7DmbQqdXySbc7zc4,11584
|
|
634
|
-
benchbox/cli/commands/__init__.py,sha256=YXeolM22_l_RExEG0nNg_VAJfKyMCjfmmnAtwOZ7ogI,2543
|
|
635
|
-
benchbox/cli/commands/aggregate.py,sha256=yuY_KX4V7_omzu0JOB9_Lp4XlYvoGdOMCvncLOHp4AU,6392
|
|
636
|
-
benchbox/cli/commands/benchmarks.py,sha256=Aj8udrYhc4C1oX9BgJTw8i2uzxPPVRtG2uo_2kcLEaM,943
|
|
637
|
-
benchbox/cli/commands/calculate_qphh.py,sha256=b84yTZ4MHZ-1H3_RKaemlpEKl-DsszwI6nbCI698x7M,7198
|
|
638
|
-
benchbox/cli/commands/checks.py,sha256=aDitCC1OWSvF6hixwwdYj1AZzy3gfZlTj1CUwDxCz1k,5216
|
|
639
|
-
benchbox/cli/commands/compare.py,sha256=k6AiGrWEpt-MU7Q9bcUqXU-DPd4-_zXSJ6fDxi9lRW4,64330
|
|
640
|
-
benchbox/cli/commands/compare_dataframes.py,sha256=-FhKa-e2Z7Yp3tDU6LVnsLu6VMXht4e6l2awcoTuu6A,17173
|
|
641
|
-
benchbox/cli/commands/compare_plans.py,sha256=o2S-wHdnsz9EpOo4zevExxHYnbDoiDu3YrRJZXIC-xI,27315
|
|
642
|
-
benchbox/cli/commands/config.py,sha256=Gi0jRkRcLONDJx_z4_ZeLsxesyiMqO7L9xHNJk97WxY,905
|
|
643
|
-
benchbox/cli/commands/convert.py,sha256=jXyhX_Gdg5vMhRJ2LiNhgH-NxkSgDYjvYVKkRjQ_Ikc,9718
|
|
644
|
-
benchbox/cli/commands/datagen.py,sha256=LoZFwve169NgwJ5sB17ybr_cv6N0-GCjOQOytE0Gd7I,3999
|
|
645
|
-
benchbox/cli/commands/df_tuning.py,sha256=Y4PTqqqwxeFHCFgPFOiXBlHBXZFJBNjih70lKwk1YMQ,13810
|
|
646
|
-
benchbox/cli/commands/export.py,sha256=OBBPy1tjUcJZ4hXhA18VzuinbrWJYg9gtyFDBFDHBV8,6825
|
|
647
|
-
benchbox/cli/commands/metrics.py,sha256=HqGybqRUxOFgW3O3NDO2KtY4EieokM1T41IUCwSNRqY,7232
|
|
648
|
-
benchbox/cli/commands/plan_history.py,sha256=ylf4QYNYtoBZ-shPcGLv9LvZr2I3JvHkCmVrFDaQYPk,4507
|
|
649
|
-
benchbox/cli/commands/plot.py,sha256=aeBMfBgsITrFFsxCwi3vMTWftbzaGSUo_gNsz_bKMcQ,4841
|
|
650
|
-
benchbox/cli/commands/profile.py,sha256=l93yVh4ujkJKBWcCvV-PQqMEmkrCuIUonmp4bABXJCc,788
|
|
651
|
-
benchbox/cli/commands/report.py,sha256=pAahGrFrzfA4R2Ljl9GIfSvczBAha7s4NyNS3AjZMZY,13362
|
|
652
|
-
benchbox/cli/commands/results.py,sha256=vRNinC5qcvdAXCwDr4gF8ko7nGb6tbtHLiysDgOpCQs,687
|
|
653
|
-
benchbox/cli/commands/run.py,sha256=iI1mX1Kl0u_IxcF51UBcqzMkKYBvQlUe88rxCHPGrp8,88696
|
|
654
|
-
benchbox/cli/commands/run_official.py,sha256=qrTJ4arKfQCD-Pdk06sG8aRxb8_pmFp-LNObt8QPCdg,5946
|
|
655
|
-
benchbox/cli/commands/setup.py,sha256=SfGeBskoSbvIui0nW0L5Eq0_vZ5a8tilcnsWeNuvzcI,16461
|
|
656
|
-
benchbox/cli/commands/shell.py,sha256=06HKNOW1uKBfK480owsCgiSf-fSztgDyF6M8O22TqB4,28158
|
|
657
|
-
benchbox/cli/commands/show_plan.py,sha256=ROwN-jXcW5gF_l4Y9dHFgWM5HCykWH2Edk54gyypgpU,4435
|
|
658
|
-
benchbox/cli/commands/tuning.py,sha256=_EMWttxCGextohskkaDC1uVI6Hn4pgb1aKqe0rf9E3Y,2140
|
|
659
|
-
benchbox/cli/commands/tuning_group.py,sha256=VWyT2SvP0dS8mTANTZ_T22hhxxdk5_9UvJo3G77Zbv4,19542
|
|
660
|
-
benchbox/cli/commands/visualize.py,sha256=PaRgP9Hh20cSafK2wQhtR50N4-FyXgCRqNfVrQncIq4,4606
|
|
661
|
-
benchbox/cli/presentation/__init__.py,sha256=3guyI7OAbKe3Gs1k_3TuBoePnE0Gs40evjeNxr_ODdo,150
|
|
662
|
-
benchbox/cli/presentation/system.py,sha256=aBtZYLnbs7Xz8RZf7DGzreIpKyLfMHuGhl6ecHhTT7c,1810
|
|
663
|
-
benchbox/core/__init__.py,sha256=EfAelF8jNh8S9S4-YIYA89aJ-YweW0UEY7xaN5-9aAc,341
|
|
664
|
-
benchbox/core/base_benchmark.py,sha256=m-iDNooyEVImy4n0Aqf8USUUQKHacRdUV1NdSVGoxK4,18183
|
|
665
|
-
benchbox/core/benchmark_loader.py,sha256=x4nXPsE1KFsEKXd1TLA6mS4OqCKKqwRF4USBKXXnZmw,3462
|
|
666
|
-
benchbox/core/benchmark_registry.py,sha256=yBqcB9t4Zad_Z_3q4sJCHaSccPTXilU6-NPVNVOPAfY,15236
|
|
667
|
-
benchbox/core/config.py,sha256=rxRp2dgYblwDKYIgtTynL_XWwWVWRKsn9gJowfFNK6U,733
|
|
668
|
-
benchbox/core/config_inheritance.py,sha256=YqDtJ5AnMBk9O91YK1ZhRmauGUm5nokMlH54EgTUnL0,6533
|
|
669
|
-
benchbox/core/config_utils.py,sha256=9LXO2yEOV3KXVMC55tsQJxYqVHP2_PzfYqPE6tmvVJE,21556
|
|
670
|
-
benchbox/core/connection.py,sha256=4rG-lcvRpSEilorxy36eAP6rnOOVk6B9RdBShhb5XrA,6541
|
|
671
|
-
benchbox/core/constants.py,sha256=eb7QtVG8NOQuNuxAsZ04sJYMPa7W2j_nE_qQzMffUBU,1376
|
|
672
|
-
benchbox/core/dryrun.py,sha256=ebIO2Tv4OuRiNpYblTtxu10tI8vZzhYcobq-MSrkDyw,39572
|
|
673
|
-
benchbox/core/errors.py,sha256=M55i6PDTUaKGcnHFUf4bBvYc5Iu66L48uvtBz2ul_tw,3310
|
|
674
|
-
benchbox/core/exceptions.py,sha256=73Hy9FJ4eeW0Y_aMm_oCgGOgkVdgynSqr1yi0ZMjkkg,1416
|
|
675
|
-
benchbox/core/platform_config.py,sha256=wYPrTux5bNIZPIUWOyMIoJ5-Ru6-_7dnZiulefCXmU4,3532
|
|
676
|
-
benchbox/core/platform_config_utils.py,sha256=_qKZkDB5yL2JAQSAST7PVY38JLzfbQFOaQQw6cPnHuE,10438
|
|
677
|
-
benchbox/core/platform_registry.py,sha256=OvdsRw8Y57m2Qhl-0QOJutDF5bcejsOgh09Tr54RSQQ,73351
|
|
678
|
-
benchbox/core/reports.py,sha256=zdZa4BpJe06Y1oY_2Fi5YMLPYEcAVyxEa_Mcgg8ltmI,2342
|
|
679
|
-
benchbox/core/schemas.py,sha256=gj-xQibJbqXlUwOSVmEGnCoT_fkrXW9KkrQduPjJ1Hw,13387
|
|
680
|
-
benchbox/core/system.py,sha256=PNgIvIDa_f4RMrKRkrjWCbwRPguPkLhQ0YGrUbXs214,3015
|
|
681
|
-
benchbox/core/tpc_compliance.py,sha256=AN4qq8opUBbuKTmdvT7ckCTD1Dz8omDgu6Jfy2ZAbxk,17379
|
|
682
|
-
benchbox/core/tpc_metrics.py,sha256=k94w_dWKZQ0T0NzR3uSqUZ85O_BxVhYgptyfDhvh6no,32866
|
|
683
|
-
benchbox/core/tpc_patterns.py,sha256=9u9VHt44pntr8UetHzywqIGnl0pM9jCjFEEsu-Ul9QI,37441
|
|
684
|
-
benchbox/core/tpc_validation.py,sha256=q6yXlv5ixM4Pg6lsr7VbnJRT7y-WG0fR_zGCJ-yPOzo,57999
|
|
685
|
-
benchbox/core/upload_validation.py,sha256=wAXCt4LGWXS0eEoNWSp5xvBaIi68A4UqO7kSSVgSHyg,17321
|
|
686
|
-
benchbox/core/ai_primitives/__init__.py,sha256=4OzlZOypMOOSDS36uq_bpTRu7X-F0VdX58ll78p-HIw,1801
|
|
687
|
-
benchbox/core/ai_primitives/benchmark.py,sha256=KWsgRbxT2dE-x9yqF0FjFuQCw8ulQLCfwi_mMMjs2zA,19218
|
|
688
|
-
benchbox/core/ai_primitives/cost.py,sha256=8Y2i2ygZNRrVG3LZXAOw3J33ti5uAqY3Cd-YPMY8qX8,9405
|
|
689
|
-
benchbox/core/ai_primitives/queries.py,sha256=MVXO4IJbMkJGUvPMIn63u9RtoLfvwcpP73DcVJDthlk,6089
|
|
690
|
-
benchbox/core/ai_primitives/catalog/__init__.py,sha256=FYiuMNCA47scjMyoeytiXzEpi4Pyu5WdHNCU_pKGsDI,404
|
|
691
|
-
benchbox/core/ai_primitives/catalog/loader.py,sha256=QW4hKlhNX2WUKQFI_F3t6WBxgGgj38c9z9UE-qZWkPM,7613
|
|
692
|
-
benchbox/core/ai_primitives/catalog/queries.yaml,sha256=0cEygOEuz2DwDAaCxOQ4iOkHW-vl_mF5urFvHPdlYvU,24100
|
|
693
|
-
benchbox/core/aiml_functions/__init__.py,sha256=FDquApe2y0KlY1yHCIEcZP0Aq1GLuOBo3EmK8lPWopg,1114
|
|
694
|
-
benchbox/core/aiml_functions/benchmark.py,sha256=rzQbI6u5T16AuvuR_dQ0-NWTn-Klm7e9zl3GVwNnsvU,17535
|
|
695
|
-
benchbox/core/aiml_functions/data.py,sha256=njxoYZ6JXnGjwLW95bKn7doW7GYg7mTDU6JYjn2gGdU,25111
|
|
696
|
-
benchbox/core/aiml_functions/functions.py,sha256=2dvkpIXlGXo2XXR_MP6AFCtVHvI5WOG-c7JAsqRv3KM,18179
|
|
697
|
-
benchbox/core/aiml_functions/queries.py,sha256=g3uxoo-iWb8WKVaB8KsJiZkmio-nWY0Jfg7OwpabYyE,16183
|
|
698
|
-
benchbox/core/amplab/__init__.py,sha256=m3vp0PnyDfhx1_6KMURcU_4xEMOTKh9DbCvuKo-fjuQ,1195
|
|
699
|
-
benchbox/core/amplab/benchmark.py,sha256=GCXDy3rrONHs0_VFM5w24mjw659wYRzatSpreYupf3U,17906
|
|
700
|
-
benchbox/core/amplab/generator.py,sha256=W5kemqSaiLzVA4YX0ShV0BsBcD9qVY-Q3NBluS8LgW0,14019
|
|
701
|
-
benchbox/core/amplab/queries.py,sha256=XcVfZ4WDwPXuApxg-AnayezdDWMvIsp4MMG16u7zKz4,6202
|
|
702
|
-
benchbox/core/amplab/schema.py,sha256=70QMEnv_SwAwkw08pfzXCNmtSwDEiwg_8LpdUZd1hDE,5671
|
|
703
|
-
benchbox/core/analysis/__init__.py,sha256=5eGgvknc4iKG8TtVP8UVEa69gr8yqSQVgiP--gDz2q4,3683
|
|
704
|
-
benchbox/core/analysis/comparison.py,sha256=aZRAqYuUQDTPDFf5WdSluLQDVunublFcRXsf1DVfHro,35018
|
|
705
|
-
benchbox/core/analysis/insights.py,sha256=ISTAIec9tnnZQAUqRxdQyw_tV-BdDuo5sekLT3TajwM,22019
|
|
706
|
-
benchbox/core/analysis/models.py,sha256=IOM7mu5AiR642JdfUXpP3Y3Ltm1rfn8dmmW5RgGX9t4,15584
|
|
707
|
-
benchbox/core/analysis/ranking.py,sha256=WccvjfPEIVlRLpvUac8KWicpU5QnWC6dgHkFhkrpDvE,19648
|
|
708
|
-
benchbox/core/analysis/statistics.py,sha256=3gopg9jmXWOoJcAf3A6Vq96jTOUHCrhwB5No_FBINtU,18832
|
|
709
|
-
benchbox/core/clickbench/__init__.py,sha256=2R2yOFqyoSgVQKNZwhkfS4tDR175WxnIewkVlgQHH1w,1175
|
|
710
|
-
benchbox/core/clickbench/benchmark.py,sha256=3vd-aBEsucq77mmv7PAFpy3ywc0ug3GhY7k79ub21ys,14509
|
|
711
|
-
benchbox/core/clickbench/generator.py,sha256=bN3CaSYAjPURflPYWGLrub0E9_vfRoKPlXPSiyoPelo,14810
|
|
712
|
-
benchbox/core/clickbench/queries.py,sha256=-akDZLN1xoL6Le6MGaFwQwAAC9_HlzEfrK50tjkyNn0,12149
|
|
713
|
-
benchbox/core/clickbench/schema.py,sha256=5y539WG1WfGWJHg9V4dNyNmHdPeaI4B4ikUN_5Y0y7I,10578
|
|
714
|
-
benchbox/core/coffeeshop/__init__.py,sha256=gLQ25U82n6p4ymFRgk_06Panrq8_PgfQvlpFf7e36UQ,348
|
|
715
|
-
benchbox/core/coffeeshop/benchmark.py,sha256=TuK6hbFFkNIo91Xd-Bo1T2P4ap2r_zcKgyR4oSiybhk,9647
|
|
716
|
-
benchbox/core/coffeeshop/generator.py,sha256=cgBza2dpPW3vhSLypsDgbGbENgQLHbwCZ25OCuatSIs,17803
|
|
717
|
-
benchbox/core/coffeeshop/queries.py,sha256=gIs6ulyvzB4Ftb0h_5Be-Q07AqH8mUMMMI9sCqtt5HI,8584
|
|
718
|
-
benchbox/core/coffeeshop/schema.py,sha256=TbeAcDmhOwoV6bVHhqQVFKcynKvq-1yzechHE86od2M,6238
|
|
719
|
-
benchbox/core/comparison/__init__.py,sha256=SCjXACOBhSFXMYnhPj7H5EjtTcg6hMd4WFvMmMCmp7k,2020
|
|
720
|
-
benchbox/core/comparison/plotter.py,sha256=2MIr8j7wJ5bhrGh7foRvSNjn5beCpI3ttUQw9hRv6Fk,7693
|
|
721
|
-
benchbox/core/comparison/suite.py,sha256=2aEPHKULPVR3JewMJTuqHQmmCjKwE5HAJcZrZxWvuAc,23755
|
|
722
|
-
benchbox/core/comparison/types.py,sha256=QVB7BLCzhbe5GuShTMuGOMr1ka9l_IfQJbZ3MeiI794,8095
|
|
723
|
-
benchbox/core/concurrency/__init__.py,sha256=UqwdcucyMAN7u-1WbYq_gx3TmmGkwMPDp8WSjXpPehs,1664
|
|
724
|
-
benchbox/core/concurrency/analyzer.py,sha256=J4f_qn2qrqZxFsiy4k8uMpEQ4QjKdc6TGCP44J-pMdg,16597
|
|
725
|
-
benchbox/core/concurrency/executor.py,sha256=uFL2RxTksuXlOaktDJrOUT_E4h5EDztLub7EaZxyWu8,17823
|
|
726
|
-
benchbox/core/concurrency/patterns.py,sha256=PKryTriDa9ieuEz4gn_rrgwHpWjFYn2gXVN6yDqsMzQ,17632
|
|
727
|
-
benchbox/core/concurrency/pool_tester.py,sha256=sNuxTLW4PuwiFdDoKl2PQHwfyCweCIGJikPVem88njY,12960
|
|
728
|
-
benchbox/core/cost/README.md,sha256=-UsLSsVjBSj1wWQegVCTk2vT7qOg2VKgEG3_bkMu5fE,24717
|
|
729
|
-
benchbox/core/cost/__init__.py,sha256=_4qe8OYWp_GpLZsWwrsOfF0Yprk-oUzosdUNSov0n4Y,1951
|
|
730
|
-
benchbox/core/cost/calculator.py,sha256=HUtmze3t1RZ4-JsbSSmFaxShtTd_oMrBB-ylm5wo3Ug,29273
|
|
731
|
-
benchbox/core/cost/integration.py,sha256=82FhdTDY4yltRYpYL9n5VGADCfSBx0BxMI0EIruq8C8,18356
|
|
732
|
-
benchbox/core/cost/models.py,sha256=7kV6pDGNvPhEFEuzrkFEPUnnqehDwUvZ-vZUu6qzLjQ,5081
|
|
733
|
-
benchbox/core/cost/optimizer.py,sha256=j6NxDYRKCVqN88W1p_DJXmVAqsl_7uuKf0XnTxKJMJc,46661
|
|
734
|
-
benchbox/core/cost/pricing.py,sha256=e6xyZrZv2qArhzn0nIbaWCDilRfh8Rw-603rZd-Lxok,26214
|
|
735
|
-
benchbox/core/cost/storage.py,sha256=uKMit07pCahZOiCgw-Ecdof2J6WSfACgm463R3jn_MU,3946
|
|
736
|
-
benchbox/core/cost/tco.py,sha256=kaz-T9vo5jj3w9oj1P6_NIzT3suXMVG74XAGcERUjr4,20847
|
|
737
|
-
benchbox/core/databases/manager.py,sha256=JEuqo5qgg91tmGhw3VkGrG5xfh0613VLFi6WKfPT4L8,978
|
|
738
|
-
benchbox/core/dataframe/__init__.py,sha256=k-VFpO5Rqq0xrXtuS89YNdVh5jQILWp-IwIoRnJBDKw,5619
|
|
739
|
-
benchbox/core/dataframe/benchmark_suite.py,sha256=Rrq5I6iLlBcTsW3vctB_vmWtlr7P67jkuGiV7tPys98,60727
|
|
740
|
-
benchbox/core/dataframe/capabilities.py,sha256=2Oql24jASRdnZzemQkuZOrTZpXuc58LGOWYKTuAdGZM,18592
|
|
741
|
-
benchbox/core/dataframe/context.py,sha256=bcQyc7Dd28amoynLMtF5GguBl3F7fHFeu1GCWVoL-Xs,18507
|
|
742
|
-
benchbox/core/dataframe/data_loader.py,sha256=vCjUijF8HG4P4BHSdw0kemv9DHnGQb-FYemZgvZ0X_I,39221
|
|
743
|
-
benchbox/core/dataframe/profiling.py,sha256=L1QEwpDtqoBABX7OeQcAglOA84juKURPdjwXBDr5T9o,31808
|
|
744
|
-
benchbox/core/dataframe/protocols.py,sha256=S0RpNhCsqlvwLeRAxPxVx2Df5qYyXw2EceIn5Y8ieOI,11551
|
|
745
|
-
benchbox/core/dataframe/query.py,sha256=2zJMjPB89_0kd3bSxRBeGfCwN_JfDSto4o2ReRqE8mA,13636
|
|
746
|
-
benchbox/core/dataframe/validation.py,sha256=xcNR04cB7Mvjon2yM0cAGvEZz94skmKmK4zUn56qf9Y,21405
|
|
747
|
-
benchbox/core/dataframe/tuning/__init__.py,sha256=Fnpqjl_yww_Ol4joowq9QVWB-Qwe-Odg3ujt73aqsvY,3427
|
|
748
|
-
benchbox/core/dataframe/tuning/defaults.py,sha256=lxuCIfJhCU-XAiKWAMPP5lj163wxEOf4q3hmeQ27oOQ,12543
|
|
749
|
-
benchbox/core/dataframe/tuning/interface.py,sha256=16KYKdRHD9JRYd7mHt0GOspuakyzCZw_gmLzreLKjCA,23391
|
|
750
|
-
benchbox/core/dataframe/tuning/loader.py,sha256=hw_mk4yat0CQLATtBXjkWraVonSw2vP0eL9LIY4phoY,17141
|
|
751
|
-
benchbox/core/dataframe/tuning/types.py,sha256=NeubEkqtvofbHqRN8eKpsibNve8lSqoOfUa0OjpkZmg,5514
|
|
752
|
-
benchbox/core/dataframe/tuning/validation.py,sha256=9E-Mi7xTJzNP_Xo9VBl6QAoAb8YG3xN4l86AVHGNS7w,12026
|
|
753
|
-
benchbox/core/dataframe/tuning/write_config.py,sha256=U7eSVICDIcMHkuxc3HQWcyObSECh7BU26QGHIbtV1HU,16111
|
|
754
|
-
benchbox/core/datavault/__init__.py,sha256=nLczk5wULIDRCB5FNEIa8vyTrw5BHkAkS3izYk5Kn58,1157
|
|
755
|
-
benchbox/core/datavault/benchmark.py,sha256=H7RMldv8IxbeAhjP7JainSH239JXbaAfaS-rW9gIqps,17447
|
|
756
|
-
benchbox/core/datavault/queries.py,sha256=d5fhf_vyiKvw6AftX4W1FaakSv6Es3f038wkLm8uz78,45408
|
|
757
|
-
benchbox/core/datavault/schema.py,sha256=wvA11Pj9JhpzAi1I1fLTVglMdko7Z-JIQ1UTjFbMDCM,19119
|
|
758
|
-
benchbox/core/datavault/validation.py,sha256=4GeK53uG6AmNe3vueGqhmWry5H0mu9nJwz_m4VK4XkU,11947
|
|
759
|
-
benchbox/core/datavault/etl/__init__.py,sha256=aEoPTznOdCVbs6FpRMBNK0owG6yv8b5uzoxEcFW0CKg,610
|
|
760
|
-
benchbox/core/datavault/etl/hash_functions.py,sha256=0LCHnkhxkHiZRdV-W_pp6CuBK7IAAK1oh70S0cV-FM8,4888
|
|
761
|
-
benchbox/core/datavault/etl/transformer.py,sha256=5JQTYEd4VMU1p2aL5d4Mj2605V9J_w9g8b_70ocmpzw,24950
|
|
762
|
-
benchbox/core/expected_results/__init__.py,sha256=otsCbwbh_ZDDCbrudHirxBDBH6HMiJpf_OR-Au8vYSI,1966
|
|
763
|
-
benchbox/core/expected_results/loader.py,sha256=A1TSxqkT-XmmjAJD6FPpHYTVI_TNMI4Yvdzs4JUCT4c,9802
|
|
764
|
-
benchbox/core/expected_results/models.py,sha256=i1RRiNWv4T1bfbiaVsTD5gZubGSt7ue_MibhjxCOl0w,13313
|
|
765
|
-
benchbox/core/expected_results/registry.py,sha256=IiN-PycEwWOgZfkrxA14c92GXEQALCEh0eGydqDhJ3Y,12559
|
|
766
|
-
benchbox/core/expected_results/tpcds_results.py,sha256=qFp0lmAl9Uuio6w2zCH0TGa6ReDlPeyU4zmXYu_oSeQ,8532
|
|
767
|
-
benchbox/core/expected_results/tpch_results.py,sha256=JkPCDa2S3l1OAsuqFcORpXzYfOefqu1sjraYt8Y2jg4,5427
|
|
768
|
-
benchbox/core/gpu/__init__.py,sha256=mkI_GIWE6BI5FbM7AlKJmsSd6osNZhPXGuzzAhywX0U,796
|
|
769
|
-
benchbox/core/gpu/benchmark.py,sha256=uzFgD6-riFkvU5FLLvBhcUJ6gZS-5MiIXzdAmRnIS3A,23488
|
|
770
|
-
benchbox/core/gpu/capabilities.py,sha256=tesHwTSOfJmAOLJCUqHGeh_lmhblFoq0qw7J5adJ7CY,14318
|
|
771
|
-
benchbox/core/gpu/metrics.py,sha256=WBUd97Xo-q2c2_pvFuA-whidp8FEUNKgJ_tyEqV3NHk,15002
|
|
772
|
-
benchbox/core/h2odb/__init__.py,sha256=VnhhRR2QQ4rTwBzxxBddRHU-zQ6RsoZ83netUzi3wrs,1041
|
|
773
|
-
benchbox/core/h2odb/benchmark.py,sha256=4SIm_XgHtUxLer-6p9Rkj6YinUVHh1kGzF7yyAiDwIM,13405
|
|
774
|
-
benchbox/core/h2odb/generator.py,sha256=f5Nsq5K820dmJewOojED4GG278lSRtr9KXceYqIVW6Q,11657
|
|
775
|
-
benchbox/core/h2odb/queries.py,sha256=QNsO30W2qsMVyE7qfGb6DEKBhf4jLkNTAoFEfyuANfs,4146
|
|
776
|
-
benchbox/core/h2odb/schema.py,sha256=0vs9D717fs0EJ_aArJm5I9G-bJi2HlaCuzKNrb4RTCc,3938
|
|
777
|
-
benchbox/core/joinorder/__init__.py,sha256=rlfvt99Lm2OoWDuZQ6Sm6MQEyPCNPp5EKDwqwsF6qaQ,255
|
|
778
|
-
benchbox/core/joinorder/benchmark.py,sha256=OCdkqI_Eyvg9IIDTqlrQVAy_GFp84lK5c_j6jiOqgSI,9770
|
|
779
|
-
benchbox/core/joinorder/generator.py,sha256=-PsQMhny5eCcoYzBM7iyVDNgRH1I5FMYNxZ482iq_fo,23213
|
|
780
|
-
benchbox/core/joinorder/queries.py,sha256=V_qamKIYr2OfdFlvRnWiPJtPyENEkUfII-686zVoeh8,16285
|
|
781
|
-
benchbox/core/joinorder/schema.py,sha256=UFsSc9ePdJLOu8TRTGl4-eEWEbbddiWuibEcd5LEw_g,13494
|
|
782
|
-
benchbox/core/manifest/__init__.py,sha256=5J7FVZO11JERdsKuD2pp78H9S5xO3aTz4U-FBeW8Ahs,1182
|
|
783
|
-
benchbox/core/manifest/io.py,sha256=AY2DO02niaqOJOIundYU4cX212yHeO3ZmmoKdRyWblM,9159
|
|
784
|
-
benchbox/core/manifest/models.py,sha256=DvJYJKDDf8z0bghH4UPBo2TqpO3o8gp-XJdJpOEI18I,4108
|
|
785
|
-
benchbox/core/manifest/plan_metadata_utils.py,sha256=3ozNng5l18rp3X8e9p2EOzLB83TY4Hzw6tpGardmFQU,4928
|
|
786
|
-
benchbox/core/manifest/preferences.py,sha256=zG26ytzDmTBmN-ss_O48A7LAy1WSgbAfen9RBH5An-g,2519
|
|
787
|
-
benchbox/core/metadata_primitives/__init__.py,sha256=VzQU2baofaBI-FG_sD8wP1QR72Zg7CmOJXXUjhRixcQ,2026
|
|
788
|
-
benchbox/core/metadata_primitives/benchmark.py,sha256=7gQ1Fnrl6rgdXiIMHqp1Yyp256il1ke0g1tKCyi4lv4,41979
|
|
789
|
-
benchbox/core/metadata_primitives/complexity.py,sha256=pZA8CPJSkLTSmWA-PHInm9ibyaT4KWqUA7A9KOXmVFQ,14376
|
|
790
|
-
benchbox/core/metadata_primitives/ddl.py,sha256=meKXeWgkDPjvCKT03sTL8RyRnpUwDru48XjSnXT3AgI,26562
|
|
791
|
-
benchbox/core/metadata_primitives/generator.py,sha256=puzf839Tg7ccEy65jujqIjimTCmul6C50L2_CUdirMs,27710
|
|
792
|
-
benchbox/core/metadata_primitives/queries.py,sha256=jf4SAoIL5BjgT4tFA8UEg4wk3-4JbqFxQYD7Jny7mL0,5766
|
|
793
|
-
benchbox/core/metadata_primitives/schema.py,sha256=qF36_aKkvOE34bolMcqemXfLCPjiolEqmuwEAtc1Ogw,3890
|
|
794
|
-
benchbox/core/metadata_primitives/catalog/__init__.py,sha256=zKuU-ql7Ks_Sb9H48Fr856VYKpNh3OQwVhu2HEaksk4,493
|
|
795
|
-
benchbox/core/metadata_primitives/catalog/loader.py,sha256=RwnS02TYKRF5fyu-it4hfnXpKjYmezZZwL4yR6KIH94,6492
|
|
796
|
-
benchbox/core/metadata_primitives/catalog/queries.yaml,sha256=olhTXMWEPrmTzq8KKGJzZ8v_mEsYgYlmCag8I0b0hTo,76041
|
|
797
|
-
benchbox/core/multiregion/__init__.py,sha256=4C3L_OglUa6cbYtFa22kC006ZWb4EVY4gFfiJ3nAlwQ,1290
|
|
798
|
-
benchbox/core/multiregion/config.py,sha256=SNzB-RmG8LT7MxkFgmEpSvjkJR8q0ELohWxHX3v43mc,7418
|
|
799
|
-
benchbox/core/multiregion/latency.py,sha256=V8aRn034VYGaagrnYKNrlMDTtFRwbNEqB_MK3_yyiwU,10036
|
|
800
|
-
benchbox/core/multiregion/orchestrator.py,sha256=WLeIi-dnKhOsqT6g0rFde0slOT-ZTN_LFM2fDY_ZsOY,16437
|
|
801
|
-
benchbox/core/multiregion/transfer.py,sha256=ZYr0eIoAQSt_Z9CunpxvZyFoTIqb8PGp-Q-PRpy-msE,10538
|
|
802
|
-
benchbox/core/nl2sql/__init__.py,sha256=MH3uTMm4gYpNzBV3gG24_MUb6h8cTRBeZI4COVC8zSc,1355
|
|
803
|
-
benchbox/core/nl2sql/benchmark.py,sha256=j3AEDohpl7I8OzgHnk-1Sh4PuC6AyW1f_7kOFB9pmIs,22526
|
|
804
|
-
benchbox/core/nl2sql/evaluator.py,sha256=cZeD4RgAkvH0s_Opco0NImh7u5vOMF4O1fEOmd-CunQ,16974
|
|
805
|
-
benchbox/core/nl2sql/queries.py,sha256=Q8IbnE8ha16x3jbCfuVp-NrH2Lmp030cRRsMuGPcTcA,20466
|
|
806
|
-
benchbox/core/nyctaxi/__init__.py,sha256=qcVV5TJQqcD3MRSt0L_0lcYR4FhGC3czTFUCMn_rvrI,1033
|
|
807
|
-
benchbox/core/nyctaxi/benchmark.py,sha256=9AgSVN-47nPJrNSW8f9aMetEOnBqyriB03UGCUSr5EU,14534
|
|
808
|
-
benchbox/core/nyctaxi/downloader.py,sha256=V85HNKbiwHizOe108Oz7S73qMPlJP8xO70elF3yw5yQ,26284
|
|
809
|
-
benchbox/core/nyctaxi/queries.py,sha256=Cib_aDluNviXpVk60kbqCQJF1CscwfjCi9w2efnCGQI,24198
|
|
810
|
-
benchbox/core/nyctaxi/schema.py,sha256=iT_VywRQtSXHaHjdN-9PUxVtroyt5xcuHYx-67y-f0w,8345
|
|
811
|
-
benchbox/core/nyctaxi/spatial.py,sha256=ZkraFjxiyf_JGQmNjtPb9QoiJOnPKCPeXEnmKYyjXVs,31109
|
|
812
|
-
benchbox/core/operations/__init__.py,sha256=pdDH_4iQ7XPPxa8Imk2kr_gpoF4yx9Gab2uGJwFTi3U,267
|
|
813
|
-
benchbox/core/operations/base.py,sha256=6P58VnEafew5x3qdkCfUeLREw6jAlmj-05xvdQwe-Ac,2275
|
|
814
|
-
benchbox/core/publishing/__init__.py,sha256=GJ4GqgrNyQ9-ld5adEebm45cu3A7OJ4_gQBtGHfIdQE,1476
|
|
815
|
-
benchbox/core/publishing/artifacts.py,sha256=NeAq14Fg-hyY5khWTDjVf8rdtlzdspRcDDmLwl1-sgA,12611
|
|
816
|
-
benchbox/core/publishing/config.py,sha256=rJWE-ND6X1Npc6pKZberf7VYEwdAw3aTfrzCtSepx68,5415
|
|
817
|
-
benchbox/core/publishing/permalink.py,sha256=Q8dnSjEKgvYtQXmOAnVoyNEh1iBBHHRsXkLjZoEQKko,8118
|
|
818
|
-
benchbox/core/publishing/publisher.py,sha256=qRZGHt_jiqeJT7Rka8Lg2Afo_Rqg4OeTHkV22uA3Bkg,18525
|
|
819
|
-
benchbox/core/query_plans/__init__.py,sha256=nHXZCcZ-tgozI7VloSC6qnO6e4qLhMX6B0ka8TlpLoo,515
|
|
820
|
-
benchbox/core/query_plans/comparison.py,sha256=e2XvaeEA7d4oLv8uAalEvTqN1wpMhyTlUVCg8V_2zQ4,23617
|
|
821
|
-
benchbox/core/query_plans/history.py,sha256=WGh9LgYfIIzM0ARwuD7ZFreObclPCvToUcGPw0FmaIQ,8819
|
|
822
|
-
benchbox/core/query_plans/insights.py,sha256=fSbA_dSTDbbhRqCWgNp7LmSpzXsHdVaHFZe2Gh7PeU8,9596
|
|
823
|
-
benchbox/core/query_plans/visualization.py,sha256=_E9YP1CK687pr45s0UwobUSEmix7ThYH-r2i06agy3Q,14807
|
|
824
|
-
benchbox/core/query_plans/parsers/__init__.py,sha256=ks-SAszq5tizm1YhBT0Q9auVqvUKrQblp8kJU_06WIs,984
|
|
825
|
-
benchbox/core/query_plans/parsers/base.py,sha256=euXMk_2qy-bS5gexM9dNBGswe9b40GJX7l4WblMlcTI,14184
|
|
826
|
-
benchbox/core/query_plans/parsers/datafusion.py,sha256=mMDy5X57_7Qp7u8ztrI3fM-DUKj9QmjFgOXQT_dp4es,20465
|
|
827
|
-
benchbox/core/query_plans/parsers/duckdb.py,sha256=ZMoN-O3CIFQYIN4Ge68TuWfq-DFDK18kzik03BnO3Ao,26339
|
|
828
|
-
benchbox/core/query_plans/parsers/postgresql.py,sha256=WlrvDIJEivmWvcZ2kSlqWWfnU6nFOqFIdc1Y6tOkFPw,10846
|
|
829
|
-
benchbox/core/query_plans/parsers/redshift.py,sha256=_8vja227gc61KeB9tFLSrKV25gUdMewOfw6-7RF838c,12206
|
|
830
|
-
benchbox/core/query_plans/parsers/registry.py,sha256=eR06LXYO-dEtdU7kJh1Q3emZlLAz1ASiq_3S4IUAetY,7788
|
|
831
|
-
benchbox/core/query_plans/parsers/sqlite.py,sha256=x35_qZdvmW9jildMm9DjWpUbMsxdnG82e32pPHR2zag,9298
|
|
832
|
-
benchbox/core/read_primitives/__init__.py,sha256=zTuIYqgfwmCHCGapLsWcGA-JXEGGw5xOkP8byscWiT4,934
|
|
833
|
-
benchbox/core/read_primitives/benchmark.py,sha256=GGeRTn2IQruC1kxPXMTgKpv_QCk8VFLq_W3NA469rJE,28060
|
|
834
|
-
benchbox/core/read_primitives/generator.py,sha256=EZdCjAty_STRupSshTv7Kmk9a77Wyj9mTTH86MVRqzs,4008
|
|
835
|
-
benchbox/core/read_primitives/queries.py,sha256=HBPYmsppLzUgOVOMtPvvXCi8Re4EVR17SQg1euiAUgs,4599
|
|
836
|
-
benchbox/core/read_primitives/schema.py,sha256=Cmi-Mq4CD8deXEQdBA_Wy4G_zuX51kxKANY9bU71URk,8274
|
|
837
|
-
benchbox/core/read_primitives/catalog/__init__.py,sha256=RuubmYh3e9XcpRtImQd0uNXU8eFq4Y2ck6E9QMusZmU,272
|
|
838
|
-
benchbox/core/read_primitives/catalog/loader.py,sha256=nFwm-bbEg434TRvAyt92oeFDBNVJYFoI3aRT6i-RsLw,5943
|
|
839
|
-
benchbox/core/read_primitives/catalog/queries.yaml,sha256=lj8nBhu5PTwJ8GT3ie4VyZMxBXY44QzSU9uzJXzMkCU,71248
|
|
840
|
-
benchbox/core/results/__init__.py,sha256=-hrOE9K4pTd_Hc1azFxKj6oaJykyalNDcOJMHm5IXs0,1243
|
|
841
|
-
benchbox/core/results/anonymization.py,sha256=nv-9oIXO13aldZa57_uSPEvaCwX27qebb4X5oMH8OyM,21802
|
|
842
|
-
benchbox/core/results/database.py,sha256=f5HpeXD5UHqSzCkayW-5KhgxD0TBRf7AvP3XU0wCcHw,34432
|
|
843
|
-
benchbox/core/results/display.py,sha256=Qc64KTx0gFIDToUPJU1uf21bq2-zB6CXp2GkdnrMvZU,9288
|
|
844
|
-
benchbox/core/results/exporter.py,sha256=dEN9-ghZido1MaCSDMxV05-XjEbvFi8AmKTT5wbUuaE,37007
|
|
845
|
-
benchbox/core/results/loader.py,sha256=jgAUHYTVfdpCIcd1wUNZJR_3DkJpmncEr9eaRG5yFTo,14457
|
|
846
|
-
benchbox/core/results/models.py,sha256=jz3-PYlZuFYfHCghbr3x2lkxZ28gCkFpFOsjIj5tpSQ,8655
|
|
847
|
-
benchbox/core/results/query_plan_models.py,sha256=8kSk6LnRdc2iYYhdWLFE4NE3rT7rXJ62as-dzWAcQ7M,28097
|
|
848
|
-
benchbox/core/results/schema.py,sha256=uGoIW50PxNhe86bMj-eE6ZmAJBEZQrVpeenKZ1_vIQo,23347
|
|
849
|
-
benchbox/core/results/timing.py,sha256=duH1ysvR-swNsb8EfJR286ZoPXKberDTA-p3EYaEcEg,17431
|
|
850
|
-
benchbox/core/runner/__init__.py,sha256=qX66l9n3QzgzB8ngWorSY6a5WYY4jnVjK2AkHlP1z0o,279
|
|
851
|
-
benchbox/core/runner/conversion.py,sha256=jygDKD7h4EsfAK1vSg0ofp6kXpfMtsXKP4aVlVdeUHM,8492
|
|
852
|
-
benchbox/core/runner/dataframe_runner.py,sha256=vodm_dSDlUbFbl6VYdznWrEGdUWool7YPcY1syRIV8Y,21539
|
|
853
|
-
benchbox/core/runner/runner.py,sha256=G0UWpLnyELvbx9pPSPrS4lbVfbhCZdo41blbenLYLR4,34879
|
|
854
|
-
benchbox/core/ssb/__init__.py,sha256=Y-CYtxu5mV8g2ji-lkpz-FYnyYeeHm4v9Gxf4Bj5ue0,1442
|
|
855
|
-
benchbox/core/ssb/benchmark.py,sha256=dkF8An6GeLL8ZlrvLJhluX-um75qqpvwfqA_gi8KJR4,18616
|
|
856
|
-
benchbox/core/ssb/generator.py,sha256=_jPbQdw8-Rw8BnEsnM9x3p-WfrpDbbx37qZkYZMsdzo,22393
|
|
857
|
-
benchbox/core/ssb/queries.py,sha256=e6WB65gYQDh7OEDdtv9q6vLVYyUmqZHa3apiDiIjLl8,9049
|
|
858
|
-
benchbox/core/ssb/schema.py,sha256=355xEVSeAo2taq5oAMup1nUCABO2wD745AfMtbB740U,9554
|
|
859
|
-
benchbox/core/tpcdi/__init__.py,sha256=2OqsgK3YXrBSQOngGmmKHoDmih8Y-p10jEpnRQ7jW2U,1682
|
|
860
|
-
benchbox/core/tpcdi/benchmark.py,sha256=Gb9QxATz4gHeWW7O0G_W2f_jtw3ZR4nn9QLClogvC-I,103451
|
|
861
|
-
benchbox/core/tpcdi/config.py,sha256=n8cBMBcKG7M-iN6ZoxrIYdnOVPADemHij63egdQwdq8,11176
|
|
862
|
-
benchbox/core/tpcdi/financial_data.py,sha256=DQqxwgBEkP7RWijjLgDw5K9azEZKpjV_BY8Ahv_ntxk,17822
|
|
863
|
-
benchbox/core/tpcdi/loader.py,sha256=USnvXq0OZ7yNIipIV7STpd2gvjNOrCmnWOAcLIqc9Yg,18038
|
|
864
|
-
benchbox/core/tpcdi/metrics.py,sha256=qTNKgjQW_7MtvWeOoIBHcPw9CrsgpPIBsJtH4fwPKeM,18038
|
|
865
|
-
benchbox/core/tpcdi/queries.py,sha256=laEsM6ruR3HTBGHE_WDJo8BLgEX-kDlp4XNNCzREqMQ,23243
|
|
866
|
-
benchbox/core/tpcdi/query_analytics.py,sha256=i6V_W_pA7EQL0_2DcQ3epRm68UUobaFqdBZos2jyfHU,31074
|
|
867
|
-
benchbox/core/tpcdi/query_etl.py,sha256=bCmAq1uua38NZ_FOJ-n8R4lkfAgP3nmvzcPdVAx0MJU,32439
|
|
868
|
-
benchbox/core/tpcdi/query_validation.py,sha256=wCnieOiQ7CnAUipqqg-RTZKxl9nbkB4IBVi-D6IkLGY,27858
|
|
869
|
-
benchbox/core/tpcdi/schema.py,sha256=FNus6C4s_-qWvd1ALb0s3tDJsijz94_menEKDVSobHI,19358
|
|
870
|
-
benchbox/core/tpcdi/schema_extensions.py,sha256=QJjFkLADBex1baACqGwGqUstwlr84aySQ_wD_R6B3Ow,13791
|
|
871
|
-
benchbox/core/tpcdi/source_generators.py,sha256=toQl8gdmT2_lCcmmyxPky3P_zJGB5q7MFL5cErdlcGY,39704
|
|
872
|
-
benchbox/core/tpcdi/specification_validator.py,sha256=z3f6Aa--BAX6W89kzSv2quz4YCgvyLqHr4lpjyIbYYw,46223
|
|
873
|
-
benchbox/core/tpcdi/validation.py,sha256=t9XhooNspq3P9dSKObKQ7TLD8fiMtadUDXP0qb8xsEk,15950
|
|
874
|
-
benchbox/core/tpcdi/worker_pool_examples.py,sha256=c-J9B9l79OBQUkYspdQTD1dIw3qPKwDYmDSUjJ_Sz5E,11047
|
|
875
|
-
benchbox/core/tpcdi/etl/__init__.py,sha256=Bi0u3riIvRq7VB5vfIVqaNQPBJ2O5-UupLO-_zTl2_Y,576
|
|
876
|
-
benchbox/core/tpcdi/etl/batch.py,sha256=Px4EreE-YCxHKnWWv2MPY0XXNXOYKGpeTXa9097SYBE,103701
|
|
877
|
-
benchbox/core/tpcdi/etl/customer_mgmt_processor.py,sha256=i0T7kf2LV2a4jjrz9WdgyTxL-WR9nLLRbXEj1CtSw9k,32213
|
|
878
|
-
benchbox/core/tpcdi/etl/data_quality_monitor.py,sha256=_UiO59MDcB4SNqvBOdgK7ouCAa-bqkPKTxmjBe-S41k,35594
|
|
879
|
-
benchbox/core/tpcdi/etl/error_recovery.py,sha256=h2sc8FuSvlXyzgtZ6_EQxpBQu2dC5QALu_2dmjUY6bQ,26748
|
|
880
|
-
benchbox/core/tpcdi/etl/finwire_processor.py,sha256=k7XlEF5HGZ4Fkne_-_waBk7nJNAKl8xFJLNV36BOl28,21270
|
|
881
|
-
benchbox/core/tpcdi/etl/incremental_loader.py,sha256=XHOnWqp4ERic3a7qoO_b9oqlnJfpJ3yZvMsTsc3szII,30337
|
|
882
|
-
benchbox/core/tpcdi/etl/parallel_batch_processor.py,sha256=9RrcAeRiiHLILthAth3IqZZlgiOmJX0cyj6fEpxXBSM,33852
|
|
883
|
-
benchbox/core/tpcdi/etl/pipeline.py,sha256=zcKe5pgFH8mNpgVENyFxZxpX3S6so_1dUrg748hO2_Q,30956
|
|
884
|
-
benchbox/core/tpcdi/etl/results.py,sha256=fmSaFzbawy5rONT0eM2iuYRXC011XJkvO4nkuzZR-NI,1724
|
|
885
|
-
benchbox/core/tpcdi/etl/scd_processor.py,sha256=K8HI63EO7dSeLZJo9HIIiVALxAdxPP-ECjtU7OPtkzw,38524
|
|
886
|
-
benchbox/core/tpcdi/etl/sources.py,sha256=t900nPDaVwNjyp-W6KkhDWj4Ng2KHPxa3i6YdYQ0KmA,17033
|
|
887
|
-
benchbox/core/tpcdi/etl/transformations.py,sha256=bWfaooAF2gYGdDNxmGwBO05juJKSshc9QrHJzitP6jw,107662
|
|
888
|
-
benchbox/core/tpcdi/etl/validation.py,sha256=8oYSRt6LyX5dgruI9JHjJfoWfarVbnk7x4LNK4ClF4g,26742
|
|
889
|
-
benchbox/core/tpcdi/generator/__init__.py,sha256=kTYwG52WRYNCD9HRf4PimfO9Ne3LKOejHCf3SQhYQ3o,467
|
|
890
|
-
benchbox/core/tpcdi/generator/data.py,sha256=NS1Qy2oXODccXvivivMgSntG-ZEDhIkPaX0Qm8qa5a0,11051
|
|
891
|
-
benchbox/core/tpcdi/generator/dimensions.py,sha256=NBBWLwrfJkVOH_h7AOC2c9G6tnL_WpMgOAJzXPI1HDk,21419
|
|
892
|
-
benchbox/core/tpcdi/generator/facts.py,sha256=syXIbF-GJKwpr3wg1jQVxk67HKJbfMMarXLBMfvDah8,17857
|
|
893
|
-
benchbox/core/tpcdi/generator/manifest.py,sha256=iBPteWGmuJD96U1c0uBUIrFjvhank9I4Dy-T0W6xp_M,3284
|
|
894
|
-
benchbox/core/tpcdi/generator/monitoring.py,sha256=_CwvMAIbHd3-Ldtz3nqX0S7rcwbCSPY4olrXyXkcl9Q,3480
|
|
895
|
-
benchbox/core/tpcdi/generator/sql.py,sha256=wIlV2_pBMUs63r6EOx2lIYn1Z-VtWL31LoSWUHJINCU,27906
|
|
896
|
-
benchbox/core/tpcdi/tools/__init__.py,sha256=O3jcyysABAOAghTrb_y0Z-Om9EcvbVtTyuTTQavLqzk,589
|
|
897
|
-
benchbox/core/tpcdi/tools/data_cleaners.py,sha256=cwXPc5XcxTzY44fcBRNvbduzlzLPdOtH4iGky4T0NOg,20894
|
|
898
|
-
benchbox/core/tpcdi/tools/file_parsers.py,sha256=FifX2ix1ddYQ4X3S7sBO6rpqY-CjiG6UOI2sdWxO3Ts,19238
|
|
899
|
-
benchbox/core/tpcds/__init__.py,sha256=0uGUzmgqCktraE5vyDgl5CgyZ4naU2fYK59YPr3m9ko,2636
|
|
900
|
-
benchbox/core/tpcds/c_tools.py,sha256=l7jzYexEbL0C9z21X1DOQ27vwuwEXKVm-1RJs5wmY-E,41696
|
|
901
|
-
benchbox/core/tpcds/dist_parser.py,sha256=c-HXaRbyicinZYSXxKVaMP4YLovDoKl_v3YuL4R3DCk,8564
|
|
902
|
-
benchbox/core/tpcds/maintenance_operations.py,sha256=8CkEJ33GCgRXs6PtwqF1m_6KRRxhice-w4wYH_PG9Ws,54698
|
|
903
|
-
benchbox/core/tpcds/maintenance_test.py,sha256=auRyome4gjVQ8df393h-griuUrFnJyVRdlevdroqjuk,20122
|
|
904
|
-
benchbox/core/tpcds/official_benchmark.py,sha256=tfb_jghRrYkTf8YDjzfgvfyjRV1tN0OhV4lGjm-23jU,11422
|
|
905
|
-
benchbox/core/tpcds/power_test.py,sha256=Mhg9xTx9lasL2s7m0H9xyVRgkul8FqG2yMlphPmv_jI,30492
|
|
906
|
-
benchbox/core/tpcds/queries.py,sha256=8AaA4lSkX9ec1o0WbRHUKRYdfLfzcWWcO7rhAuyN-FQ,6046
|
|
907
|
-
benchbox/core/tpcds/reporting.py,sha256=-2hTxRtoy14erH2j5yygt_q6uwKH7EzbXm_vx__cAfQ,23523
|
|
908
|
-
benchbox/core/tpcds/streams.py,sha256=uMAHfFXCFzwl9utD9COClFLfolhMy4nObkFbX3AMQs8,10095
|
|
909
|
-
benchbox/core/tpcds/throughput_test.py,sha256=ES2gJfTgG6u7Pm8aCLNKJeRGdlC_ybiBPMIJu6-DbwY,23269
|
|
910
|
-
benchbox/core/tpcds/benchmark/__init__.py,sha256=JQ4KNqEKbXMXoLwnL8viVj3nnDLzrmBRE5tFzG77OLM,556
|
|
911
|
-
benchbox/core/tpcds/benchmark/config.py,sha256=pdM80W-KBoSsWVthVFfhSa-a0jQLaHAkp1ivagR72Dg,836
|
|
912
|
-
benchbox/core/tpcds/benchmark/phases.py,sha256=YmZAXX4QFWJIe8lbVQrzDubICN7SCBOLO1vw-pPamwY,342
|
|
913
|
-
benchbox/core/tpcds/benchmark/results.py,sha256=ucrJ2ZjU98stY_QBC8GR8q--MW53XfLegPLH9gfoV2o,2448
|
|
914
|
-
benchbox/core/tpcds/benchmark/runner.py,sha256=lUmwkA3RzXrDW5UBO1KjvycRVTrzV4TA22LrMXb8oi0,77309
|
|
915
|
-
benchbox/core/tpcds/dataframe_queries/__init__.py,sha256=sPOToqarL6GutHYAAL6jBXSIn3su5GAnUn8YJDI4h6o,879
|
|
916
|
-
benchbox/core/tpcds/dataframe_queries/channel_helper.py,sha256=aY3QvNzxoVG-ih7CFdycjvGp2Ejjly6BSEA9rRhvHS4,17555
|
|
917
|
-
benchbox/core/tpcds/dataframe_queries/parameters.py,sha256=6wrGIyD_A-wm4dA8BzEQgKCfp8Uv-Qm2G_vxTs9ifqE,14212
|
|
918
|
-
benchbox/core/tpcds/dataframe_queries/queries.py,sha256=XUfVkZ1DoiUAO0j0ZG5DTewjs3jSMIeYqHKsKTqthRk,579260
|
|
919
|
-
benchbox/core/tpcds/dataframe_queries/registry.py,sha256=bLGBxGwTnyNkzTi8-yu6g77AzQHmoq1TYRMyBacmOio,1757
|
|
920
|
-
benchbox/core/tpcds/dataframe_queries/rollup_helper.py,sha256=TG-4p6kHwixhitLKPNXmODlux2NCnVCsza_DoYW9_zg,11106
|
|
921
|
-
benchbox/core/tpcds/generator/__init__.py,sha256=mhwB6oayJKjideX_sBGwIUCiXoTopMUHAAJUDSRGSDs,397
|
|
922
|
-
benchbox/core/tpcds/generator/filesystem.py,sha256=_RzUc5nNrX2E-I6cudyrc3BE_ruGU4WM7fNDxPqmcsI,15134
|
|
923
|
-
benchbox/core/tpcds/generator/manager.py,sha256=OgICb7Gt60TupwpJ5A3aV8jZx7wDb7VjuU1j81pYqtU,15887
|
|
924
|
-
benchbox/core/tpcds/generator/runner.py,sha256=SRdTmKsh_kN_2u0RW9RguGs8Y9EFmmfW6pXQ3zHNc0I,14721
|
|
925
|
-
benchbox/core/tpcds/generator/streaming.py,sha256=8I_0Tw2TcO6nIhNRe_BDoyu6xKg_c_A8cWjvoqdSe8c,21896
|
|
926
|
-
benchbox/core/tpcds/schema/__init__.py,sha256=pSL4ozBoahnNgq2bjwedR-32YCtK5qigbmZasTmnWGw,366
|
|
927
|
-
benchbox/core/tpcds/schema/models.py,sha256=hmu22xysxUX88_4DyeBsXUQ3zvuEfYlUCgMJNAN4Dok,3145
|
|
928
|
-
benchbox/core/tpcds/schema/registry.py,sha256=ljCJc1LATPA9P2SNk7w-TqJsFG3cm-rhLLEoesVfW6Y,7516
|
|
929
|
-
benchbox/core/tpcds/schema/tables.py,sha256=nvbfjb6xOI8deB8vFp-_Llm5WgQ6rpqE0mDx0er6jEw,40734
|
|
930
|
-
benchbox/core/tpcds_obt/__init__.py,sha256=gVvUt9qyTDaj_RPPYSYrOjyQpPNHNyMtIc1iuMi05mU,440
|
|
931
|
-
benchbox/core/tpcds_obt/benchmark.py,sha256=Xwum_sl0EIkf6Ga0qgSsbELZmvvDo2F3LPOmSYmQ9RE,11360
|
|
932
|
-
benchbox/core/tpcds_obt/manual_queries.py,sha256=UEG_KnqLdYSlC4E4BtZrP76ucU9XCLFWLh4QhXZ1poc,17964
|
|
933
|
-
benchbox/core/tpcds_obt/queries.py,sha256=zLtfpTULQl90gubbq1yfuH1WrvVd4GEAW_FgJEHs3dU,4931
|
|
934
|
-
benchbox/core/tpcds_obt/query_conversion.py,sha256=5qHPOUk8xzsrmXu2o6BYkFHc7tvJZxOrxBxNcAP9dXQ,66497
|
|
935
|
-
benchbox/core/tpcds_obt/schema.py,sha256=BD4C3i-HSVR6lCvoCxFEVwQxpqeRB4BdprejBcRooV4,23971
|
|
936
|
-
benchbox/core/tpcds_obt/etl/__init__.py,sha256=8sk04HysyhVFpAlSbCw2KyHbTu6lCXFJeuys1vcFih8,173
|
|
937
|
-
benchbox/core/tpcds_obt/etl/transformer.py,sha256=goHGonItPXTJxjVi7z0T7G8zUO3GTQsoYLr5Wl5O1Ek,35155
|
|
938
|
-
benchbox/core/tpch/__init__.py,sha256=Zm694DgRXgV9ocRZ5wU5BdW42Yg6xNulqdukILb8orc,1108
|
|
939
|
-
benchbox/core/tpch/benchmark.py,sha256=11CzGZrPq4AhZ-8Admkawk-HEztd44skq0Z-7nS1Hu8,15474
|
|
940
|
-
benchbox/core/tpch/dataframe_queries.py,sha256=hRMRvi1xXLA6CkTFHyGebIexpnio6ylxtm0VKtZ_HKw,77304
|
|
941
|
-
benchbox/core/tpch/generator.py,sha256=0kEGVMBq8FT_wolefSkU5JBaaF6bhvVXabmHCUwbIDI,47775
|
|
942
|
-
benchbox/core/tpch/maintenance_test.py,sha256=GeTEnCbNBhwnltlrDy-IWLef1hoBxoTGfSOVMH7gxHc,31065
|
|
943
|
-
benchbox/core/tpch/official_benchmark.py,sha256=ISGxewGS2txhBhsE31LiDB7gsVDKJVsAfIkwlJVb5F8,9692
|
|
944
|
-
benchbox/core/tpch/power_test.py,sha256=DzA4UuldFt1hVjPFwo9S489_C6QtyaH3QbgOaiux_-g,17895
|
|
945
|
-
benchbox/core/tpch/queries.py,sha256=mOAqGss39u9LnRw5vLyaK3SxxH3YhPgO7owCb9FyEP4,11668
|
|
946
|
-
benchbox/core/tpch/reporting.py,sha256=cYlblNamUZgdji_eL4OD4tprvfzId-IG13ucgLp7yTw,26158
|
|
947
|
-
benchbox/core/tpch/schema.py,sha256=7g4V7J_z-YSZ1lHrQMwvYO8MLVF7ev_NmEcuuph6nSQ,13331
|
|
948
|
-
benchbox/core/tpch/streams.py,sha256=TsWwOAqYQj8YbQwNB8HvZxdDGWVubMKK_hgpxUhC2Ac,25462
|
|
949
|
-
benchbox/core/tpch/throughput_test.py,sha256=0AqWeveIXTFoz8j4YPUBDUb9AHLKZN-TiLxP-KyjZh0,16893
|
|
950
|
-
benchbox/core/tpch_skew/__init__.py,sha256=pisynhQj9EVsTQSyX01XFDGokWAFH3C8T8phcOyqADE,1534
|
|
951
|
-
benchbox/core/tpch_skew/benchmark.py,sha256=fSA6P2n6N_VxAcLNXbqtX0IZ2zlpy1JRnY4FdGRMVCQ,17986
|
|
952
|
-
benchbox/core/tpch_skew/distributions.py,sha256=LMilsiBDJ4_QjaDWqC-S8TnaV-JJItIfWR00uzsFgHs,9729
|
|
953
|
-
benchbox/core/tpch_skew/generator.py,sha256=b0fhEoEyUgz0T0EtHqAaJqJ0zbUfqoi_JGO7FBrNQVc,26386
|
|
954
|
-
benchbox/core/tpch_skew/skew_config.py,sha256=y5XP-e5pktYfJc2kWVahdI_3CVcLsQwJ4HUWi-EQy9c,12375
|
|
955
|
-
benchbox/core/tpchavoc/README.md,sha256=GnrjSUeGUsYxam3zRRq_rzl8VhQrBzzQZTzVg3XE2xI,880
|
|
956
|
-
benchbox/core/tpchavoc/__init__.py,sha256=LPeQePi4MGAdHuhRc-kjOWgMXxD6KFafJ66tOZk_LWc,524
|
|
957
|
-
benchbox/core/tpchavoc/benchmark.py,sha256=stxH28q_ZympRp3d9rR9bkRihIw2f4s7lwh0FZm86EM,16401
|
|
958
|
-
benchbox/core/tpchavoc/queries.py,sha256=FeL43NdGXV2aRGYUrAgosvFzKubkQyqjPvEcWibcMuI,10106
|
|
959
|
-
benchbox/core/tpchavoc/validation.py,sha256=wro36Yl118osD14a3XCbjs0B2jmTE9rIQ9Ee4YO5YVY,14313
|
|
960
|
-
benchbox/core/tpchavoc/variant_base.py,sha256=sjZQmpKMU6NQ6ICvNx9AgFNnybioc3yp6UnyrV2Q6os,1134
|
|
961
|
-
benchbox/core/tpchavoc/variants.py,sha256=qPkI6Uv-EJDR6a0JfrI6yFeKECd7A0Q4aat46EfPuvA,1139
|
|
962
|
-
benchbox/core/tpchavoc/variant_sets/__init__.py,sha256=0x4qqYKLTg54ET3Ejbtnhvu7s-pTWvaG3fXANSgKCqU,1869
|
|
963
|
-
benchbox/core/tpchavoc/variant_sets/q01.py,sha256=mwW7XCHiP8uPgoh1_9bo4wSMEfnW3ICHcz4Gts82-Co,10998
|
|
964
|
-
benchbox/core/tpchavoc/variant_sets/q02.py,sha256=Yqp8wsxWYZo6axlIpQFryw4VkBF21xf4LSfAtg4JjBw,11836
|
|
965
|
-
benchbox/core/tpchavoc/variant_sets/q03.py,sha256=gj8-YjnKeQUd2KThL26npm4q9lZT-x3Hfdr_BQrOtps,7961
|
|
966
|
-
benchbox/core/tpchavoc/variant_sets/q04.py,sha256=PgQKZ5IQHhT--wza1GMA6O-nXO8Qy5EviQtNRMyzF2Q,6856
|
|
967
|
-
benchbox/core/tpchavoc/variant_sets/q05.py,sha256=JkNfBXKzZ_oVepA3uuPqvsGEk-YUsR-uudnfa51pGqk,9845
|
|
968
|
-
benchbox/core/tpchavoc/variant_sets/q06.py,sha256=efvpDn3poZk8Z6Lp8HQHZRLK1nF_e7Jopa8ODZda0DI,5567
|
|
969
|
-
benchbox/core/tpchavoc/variant_sets/q07.py,sha256=-uiRimSMT66EQoH5rA6EWrfGCkM75E2IWytdXLX7HkU,13483
|
|
970
|
-
benchbox/core/tpchavoc/variant_sets/q08.py,sha256=y0zaxAhJfFT9NlVpkghNnrSqA6kLqkXvD9dehHoxdTk,14212
|
|
971
|
-
benchbox/core/tpchavoc/variant_sets/q09.py,sha256=Q-cUNmnABhMc-VbEyoW0_zDnhoWWjdxTEUUCwG25r2I,10889
|
|
972
|
-
benchbox/core/tpchavoc/variant_sets/q10.py,sha256=6h-NexUcfYX-ke_2RpH5NoJt2BTlx5tgrbbHvx-56KQ,10745
|
|
973
|
-
benchbox/core/tpchavoc/variant_sets/q11.py,sha256=zVWi3QHWMvTqL5p4zSvdJkka4F3LpzYNapgw0vECNbw,8676
|
|
974
|
-
benchbox/core/tpchavoc/variant_sets/q12.py,sha256=HSDJCSulIcw7OXh6pw0UdVACBzrrTEbJ_HdiRXzhsfE,10411
|
|
975
|
-
benchbox/core/tpchavoc/variant_sets/q13.py,sha256=PtSOaQmREz4Jf8LgJNARv5_ee44zqCOhHBaWIwWHjyI,6935
|
|
976
|
-
benchbox/core/tpchavoc/variant_sets/q14.py,sha256=e0LI_Jjga8s66a9S9oFV0F0EOPLJ2cV5lfY-FzoPjOk,7250
|
|
977
|
-
benchbox/core/tpchavoc/variant_sets/q15.py,sha256=1CATY73bkTL4j0UNPEGIy4wCuID5Mhx_tDDy4FAFQJo,11160
|
|
978
|
-
benchbox/core/tpchavoc/variant_sets/q16.py,sha256=hRG3O3oCh_2wu2ddXHKJrSaKEpJ0AODRVPwWfKJbslQ,10121
|
|
979
|
-
benchbox/core/tpchavoc/variant_sets/q17.py,sha256=U-5zRvCzarOxLjxZBlLJdB8G0-7oKp-WPRsyyKcmacI,4859
|
|
980
|
-
benchbox/core/tpchavoc/variant_sets/q18.py,sha256=e_dLpMy0IF1KfbNqVyr7Ugs1u7XEq72Du4o1G7L9-PA,6133
|
|
981
|
-
benchbox/core/tpchavoc/variant_sets/q19.py,sha256=QaKYg9w8s8HBArGmIPXpd8RnPLbNcGwzZbiLEqqzPXM,9846
|
|
982
|
-
benchbox/core/tpchavoc/variant_sets/q20.py,sha256=aI1toUGy4pgDxXp8f77uMSnL84UyIL_lUtkXq0PL-oU,5526
|
|
983
|
-
benchbox/core/tpchavoc/variant_sets/q21.py,sha256=5KwoYmQw1vps-g9uCVNVQNFPzSZDLKHRFRXl6oWcrPQ,6936
|
|
984
|
-
benchbox/core/tpchavoc/variant_sets/q22.py,sha256=OKQBWEpGFZr7BxNaGSNvlFPBahbnNBOatuzQjqYyM0k,6286
|
|
985
|
-
benchbox/core/transaction_primitives/__init__.py,sha256=UzlTpYbqIO_YMoxl2SObKOVxjpFZOMzVpeL1SG74zKA,1098
|
|
986
|
-
benchbox/core/transaction_primitives/benchmark.py,sha256=9tepWuN-0Pt5Q7N_c6UN2iH7gzCBmu3fU5wuSc0Abqc,42523
|
|
987
|
-
benchbox/core/transaction_primitives/generator.py,sha256=HQMddFx46xCjjAb4oNAfSIvYWgCjfwm6hyHBe8mcCWA,43686
|
|
988
|
-
benchbox/core/transaction_primitives/operations.py,sha256=ujtv3aLysU1QPWz_aTYJhFgGmyFhRT0riYSh5F1Vi5s,3855
|
|
989
|
-
benchbox/core/transaction_primitives/schema.py,sha256=yfoLAnJZ0oyrxEqHVIpoyPFyI540WXnz8XisirIrbZg,6242
|
|
990
|
-
benchbox/core/transaction_primitives/catalog/__init__.py,sha256=XtYzR0QSAnTqP3Rwnbu52oSqFqlIqIxgEQ3804FC_9E,591
|
|
991
|
-
benchbox/core/transaction_primitives/catalog/loader.py,sha256=L3ScbHThG2wZA7WpDl4AKP61Ys_Jjpcd9wtTgF1x98E,8873
|
|
992
|
-
benchbox/core/transaction_primitives/catalog/operations.yaml,sha256=YW6x7bMzJHVxQVk8GIE9KB5XbOMNnV088ILdJd6CDWE,24047
|
|
993
|
-
benchbox/core/tsbs_devops/__init__.py,sha256=WsuJnC9-NDb-ycyo8Kpyt4JtXbgdPz0M8WCxCGyDGl4,1012
|
|
994
|
-
benchbox/core/tsbs_devops/benchmark.py,sha256=anHmla_GhcEjRlUHAEvD3a9ytbB90K1dFB-xoJUX-lI,14013
|
|
995
|
-
benchbox/core/tsbs_devops/generator.py,sha256=xZ7QCtf_HrN6j8s9pXMHpCWvVJY84se1Mz5vtZIDcP4,18763
|
|
996
|
-
benchbox/core/tsbs_devops/queries.py,sha256=F-X2UoeB4-29fn4-JvXZpAIbifC8uuwSpexx36GInn0,16486
|
|
997
|
-
benchbox/core/tsbs_devops/schema.py,sha256=YK5dlWLVoO_C1ojLLCdXC5hWtQ5XxrYrzrcNRZqv3cI,11901
|
|
998
|
-
benchbox/core/tuning/__init__.py,sha256=KHuE5_YZbiwgqco4kfgRsmS3uMYrDT_ZHhi9yWU-W2E,1754
|
|
999
|
-
benchbox/core/tuning/ddl_generator.py,sha256=-gV38TLGGftu94pIoywCKRBVI9X0Rr6JbxqSpJ1ZN8Q,23649
|
|
1000
|
-
benchbox/core/tuning/interface.py,sha256=7xZVkkGFweYmePBpXnudocwZuLnYSOwqFHQ7cTSGCtY,48026
|
|
1001
|
-
benchbox/core/tuning/metadata.py,sha256=mbCcUMuljzjYmfFoiiwRtn5BVXZsd96-0SK7sHaumi4,25453
|
|
1002
|
-
benchbox/core/tuning/validation.py,sha256=bN_WKI5MwWFLA4be0j7-GBVAiGNAWeranTQEdlcvhWo,24461
|
|
1003
|
-
benchbox/core/tuning/generators/__init__.py,sha256=4QN89jowdn6jNf3QMvnQJEElTVTjBX6aX2PQBZgO3qI,3570
|
|
1004
|
-
benchbox/core/tuning/generators/azure_synapse.py,sha256=jjXENgl7DycifXCTXJTplPCxn-WVguLlLSD6J2iBygk,11003
|
|
1005
|
-
benchbox/core/tuning/generators/bigquery.py,sha256=HhCIsQxVtTc_O1wiVnbe3ZpS2cty3LVQGVGJM-7aQVA,10153
|
|
1006
|
-
benchbox/core/tuning/generators/clickhouse.py,sha256=bk5uCjlIeU-OyLyHZ6dyzCpAbL4wjuWTGw8-_ITVccI,11277
|
|
1007
|
-
benchbox/core/tuning/generators/duckdb.py,sha256=OfG-XoD7Cy_qhlnYx0leavYEgJhIwm47k5s6tulwS4c,11821
|
|
1008
|
-
benchbox/core/tuning/generators/firebolt.py,sha256=LKe_O-ljnOaHPC41Z9b3IMRkZrjmoZOeYrJE0mpcYsA,7975
|
|
1009
|
-
benchbox/core/tuning/generators/postgresql.py,sha256=4_TG2Jif8uhgc5dvRwvDxbQ5BLfVxlGvOdao976qaUA,15138
|
|
1010
|
-
benchbox/core/tuning/generators/redshift.py,sha256=nlO_672tftyQhIJ-UAbGcz3u9198esuYR1QxAYWfsEg,12752
|
|
1011
|
-
benchbox/core/tuning/generators/snowflake.py,sha256=n5hbLfBeBhUKfneLLSHbCyT9rwx-GG7eaB0k7ERfpXg,9182
|
|
1012
|
-
benchbox/core/tuning/generators/spark_family.py,sha256=96OVaHm3BQEqhLmLuoW7Y_m-BM-W7f5Xhpvel8HQzNo,18623
|
|
1013
|
-
benchbox/core/tuning/generators/timescaledb.py,sha256=3iGp_4qwmDBpCxmnLF5gKh2OHIYjJRZLeONkzAsavQU,8441
|
|
1014
|
-
benchbox/core/tuning/generators/trino.py,sha256=4yknK60EQylfawwYLuLujKC79zlpLAyGGzdUxckCr7U,15826
|
|
1015
|
-
benchbox/core/validation/__init__.py,sha256=Mj6eCRmCsGBNN2iZB39TG5qA4chvt56MKXM4pRkq56w,847
|
|
1016
|
-
benchbox/core/validation/data.py,sha256=dCiPC4vWjtW6E8faQHh8dK46VXDdkkoe9JPleh6cT2A,20701
|
|
1017
|
-
benchbox/core/validation/engines.py,sha256=aPgOWyXg8L92eyRPQQQ5bouClEA9RNDIgSpxyQJ3vGU,17765
|
|
1018
|
-
benchbox/core/validation/query_validation.py,sha256=-42zzzKQt6rF1UAbUbVlX-XKdQDZX2Bg31RVqJMgK7g,14536
|
|
1019
|
-
benchbox/core/validation/service.py,sha256=Q-ZZEqHFUVLlgSPuJNhZ32IQC_e0F_kySMBKKs0hgbQ,5178
|
|
1020
|
-
benchbox/core/validation/shared/__init__.py,sha256=CM96BMOjcINBgDXpXLh9DpssUpSfLTbZFU3r_eNDZwI,232
|
|
1021
|
-
benchbox/core/validation/shared/logging.py,sha256=z42XrrqG8W7gXOlOzsHzWOT85LVFqjtdY93RDXrdzA8,1340
|
|
1022
|
-
benchbox/core/validation/shared/models.py,sha256=Iyoo3UE8FD5z5BPJxAQnrPLpxQtE80t2JHSYITed_NU,1120
|
|
1023
|
-
benchbox/core/visualization/__init__.py,sha256=3P3paCahloxqMGQgJR56-Uf7zOq8pNXE8QTYmf1gEsQ,1504
|
|
1024
|
-
benchbox/core/visualization/charts.py,sha256=BMMK2hk0LSBj0oyBUpoPONw0IuqWwcvaROj7pQVYZWU,12507
|
|
1025
|
-
benchbox/core/visualization/dependencies.py,sha256=A_JE3NKRDFDYUUqNa7SrTdLA1iOJWwttSgTSzvSTS0A,1086
|
|
1026
|
-
benchbox/core/visualization/exceptions.py,sha256=fpN0bShFaPee1bC0j2N6pJ8QVfpBW9oYO1QARslwjIo,620
|
|
1027
|
-
benchbox/core/visualization/exporters.py,sha256=yxL-rNc26AZ0lHxvChYjPe7KYzl1bjcEZuQMAOv76PI,2926
|
|
1028
|
-
benchbox/core/visualization/result_plotter.py,sha256=WPagK9fk3e0PRIJXcOkjphHpkSgxA6lIkj_0lcaTBes,18270
|
|
1029
|
-
benchbox/core/visualization/styles.py,sha256=4AqYt0h1Lc6j2Aqlgsm-1cOkHP7GdD6wfYbqKySTKh0,4521
|
|
1030
|
-
benchbox/core/visualization/templates.py,sha256=HyzRDJVWvrDsh2nwLF0sYbd7q_8PKmiBZWnzYcx_Nqs,2420
|
|
1031
|
-
benchbox/core/visualization/utils.py,sha256=jamw76fdJQDz1FQvBhqReIHtxaCe9msAmKgu7E8fLk4,666
|
|
1032
|
-
benchbox/core/write_primitives/README.md,sha256=WOS1v8AeQayT8-7WKghVIFfBoeIbVAoQRHCPCb6wVeU,6483
|
|
1033
|
-
benchbox/core/write_primitives/__init__.py,sha256=G4Ssc5uANgCBdvTHZPW2Asc7TnMDM1LqA0cjDwsDMwA,1769
|
|
1034
|
-
benchbox/core/write_primitives/benchmark.py,sha256=jXnaxEx5SPnFUPZ32AaOctGJXlXk8Mldb0T3dNuYufY,47820
|
|
1035
|
-
benchbox/core/write_primitives/generator.py,sha256=Y-KNenoGlAON4s-kcWlNVAMDlpbIni-dL4eO6gUFWtQ,43608
|
|
1036
|
-
benchbox/core/write_primitives/operations.py,sha256=fM9H29j2rj7HYgVSMT6eox15ArcmG-sNhpdgoS7q9oM,3813
|
|
1037
|
-
benchbox/core/write_primitives/schema.py,sha256=SwWr3--1xXBEyFsff3h7cHp73gVaIA3ovwx6oyLMg6w,17499
|
|
1038
|
-
benchbox/core/write_primitives/catalog/__init__.py,sha256=I7VksMO4ZjioBAZo6iBYDxs29u1IyOuf6v3Ii2wyMm4,542
|
|
1039
|
-
benchbox/core/write_primitives/catalog/loader.py,sha256=axMMG1OnHrRsVDnZyx29Z_3krxSj7WbHQSVtJblosEM,8565
|
|
1040
|
-
benchbox/core/write_primitives/catalog/operations.yaml,sha256=2mEl44NkWjtl18BtA2p3VW2yiCQikUB72IdaT5Pvgac,99411
|
|
1041
|
-
benchbox/data/__init__.py,sha256=o4zzfShwkMfGE7p73wzjhX-AUVzaAbAbOue4_iMMUxI,56
|
|
1042
|
-
benchbox/data/coffeeshop/__init__.py,sha256=uRF2J-vZtLSyex7QQVT8aZRxSFHlFpJ5uUconaCmvqY,350
|
|
1043
|
-
benchbox/data/coffeeshop/dim_locations.csv,sha256=UiexsPBvJxnNmoAwOsiVO7MuyJGC8Rt5aW8bvEjGfB0,36544
|
|
1044
|
-
benchbox/data/coffeeshop/dim_products.csv,sha256=8JYMI5MWGPxljLD6q1mAt846VzHlYfkSQ0-5wBy-RHo,1569
|
|
1045
|
-
benchbox/examples/__init__.py,sha256=a6Z4wNHO0D-KyN6ePZ8X6johxCG5pLg4M0r2VgWSgEg,197
|
|
1046
|
-
benchbox/examples/dryrun_utils.py,sha256=k7EuSvGxFMMujau9xuRMDe92S_MO5-WeUjd7cmtCdQk,3754
|
|
1047
|
-
benchbox/mcp/__init__.py,sha256=N7OtQ-YiY5eIRxHGenzGwSQDmw4Chovjkbe3XqZ9ncA,3726
|
|
1048
|
-
benchbox/mcp/__main__.py,sha256=J4tav01D71ZgUvRLZebJTO9_svBqDBc14ZuEr-Wpcm8,302
|
|
1049
|
-
benchbox/mcp/errors.py,sha256=rwSp9Dsz71GFokMbhbyPl37HYKJoSwQDqKVh_Bro3OE,9990
|
|
1050
|
-
benchbox/mcp/execution.py,sha256=zGdU-oxzoA_eeTgWHwo1_LkDgFtYbxqZVsqmtYTnoY4,13662
|
|
1051
|
-
benchbox/mcp/observability.py,sha256=lfmPzP7vLwWOilpCk4kkpOzSAJ87O2Sr4f4EjDWEcsM,10939
|
|
1052
|
-
benchbox/mcp/schemas.py,sha256=42mLdUqhTQH9yMpuzPr-T8DG3UMyGiuXDceM0Z06RLM,12034
|
|
1053
|
-
benchbox/mcp/server.py,sha256=r_sIajRhhl6XWBPhoe178M65cC-Gu3ZclXmjo39vyxw,2923
|
|
1054
|
-
benchbox/mcp/prompts/__init__.py,sha256=DlCHlsMqXb4OnW9N0DGuSfBQJXtS-iS06mzNfX-6KRQ,682
|
|
1055
|
-
benchbox/mcp/prompts/registry.py,sha256=S-m0gW6BMjsHmO4ntwFSn62w1syYyFgwRPiV4OWmk50,10586
|
|
1056
|
-
benchbox/mcp/resources/__init__.py,sha256=uRQrM09F4FB2i5BY4ChoyP8OJho2IXLOWmycDt3ImDI,752
|
|
1057
|
-
benchbox/mcp/resources/registry.py,sha256=ujJxkfStuYp7ihNUAysulWbdzX76KfTmE4E8Lr2rnuk,9967
|
|
1058
|
-
benchbox/mcp/tools/__init__.py,sha256=Epl2-MsGT-CtZIsPIisb1Tl79_LEAno4ZUBur2zskKI,852
|
|
1059
|
-
benchbox/mcp/tools/analytics.py,sha256=GliUFjAV_4zexybRm-xXeqtSHy0r3dzGWbF3tKsF3eA,31657
|
|
1060
|
-
benchbox/mcp/tools/benchmark.py,sha256=EpQew9LAcH7jVmbxt_2Xzvp4NtwnSGQSUnDIVqY3xrw,32464
|
|
1061
|
-
benchbox/mcp/tools/discovery.py,sha256=4c4N-S0AEgtkcWsT7HdqdsW3Ra_Q2FuAByGUEQTIdWY,16235
|
|
1062
|
-
benchbox/mcp/tools/results.py,sha256=uhqlmVoo9iWRCWp1AxMm_AZBS0rs_JhaLqNIuZ2GSEU,23268
|
|
1063
|
-
benchbox/monitoring/__init__.py,sha256=3lDJ5McRz_SI2SRmptUp5AAZrnuyNYvYK4YYNPSF2oE,2631
|
|
1064
|
-
benchbox/monitoring/bottleneck.py,sha256=MahqMUdlZlSNEmFwI5y4qnK8pibeetAZKjS64S5ucDI,19273
|
|
1065
|
-
benchbox/monitoring/performance.py,sha256=0YN218b4mY1nX1SZonvjxEDqzzdmKOfqDRRBBk7-1Ck,21200
|
|
1066
|
-
benchbox/monitoring/profiler.py,sha256=xOVrqsFg5M2HLU5_TBGDV51UqT8kvsjhn1-SVfpM8Tk,17886
|
|
1067
|
-
benchbox/monitoring/report.py,sha256=g_WKU3fkNbcIOG7Gnplw8FB8lvpHPM0WMm0_-F1n-_o,12351
|
|
1068
|
-
benchbox/platforms/__init__.py,sha256=_hKF46tePhJticMJhR1eiVgerILoiplPWY6oS9klFow,35687
|
|
1069
|
-
benchbox/platforms/adapter_factory.py,sha256=Lski5H1jJsTjAEanLQFWGfxilpFfp_Z6MjB46RqixZM,12024
|
|
1070
|
-
benchbox/platforms/athena.py,sha256=jZoaOlI-9RZiOAFbiiSkB3f-gjzrAJTXUFnUBLm_OQ8,52828
|
|
1071
|
-
benchbox/platforms/azure_synapse.py,sha256=OvztepeafyTlXxZ0Ve_P0RZFd-OKCtuESm47GJ_k1bA,44399
|
|
1072
|
-
benchbox/platforms/bigquery.py,sha256=n3nucwCfi6RDeusTBNSSA-gQW2SdCPTj2AaehYGj3V8,82473
|
|
1073
|
-
benchbox/platforms/cloud_error_context.py,sha256=I1ZdKE6P14ZJCGBmWEEqaMRpcsVn6_Jj4Ezoic_Lt7A,14807
|
|
1074
|
-
benchbox/platforms/cudf.py,sha256=vPlmuWJcjIUNWwJzDURMX8s8okjCEhqvc00lYK_cw0k,26436
|
|
1075
|
-
benchbox/platforms/datafusion.py,sha256=rFc2e1bEFTd9m0bYEkQK4iUxxMN7SDsO0J_ePHvM4I0,43487
|
|
1076
|
-
benchbox/platforms/duckdb.py,sha256=OBlBlRdqmipKJkatddfSV81i5hrWLK2YL2JeU2fgk3c,39745
|
|
1077
|
-
benchbox/platforms/fabric_warehouse.py,sha256=WJDo9zEACAbtbFP4j_An1pAncAbJE2Hau1RKeUeK8Ec,46437
|
|
1078
|
-
benchbox/platforms/firebolt.py,sha256=Q0zCLuhWgmujDZa0QAkIUQnr-W6f-g8eeJ4qSVA7YeQ,55112
|
|
1079
|
-
benchbox/platforms/motherduck.py,sha256=W2DEdIZ7HmCGKVQZdpeuJCBWV6PW3UXSoO3fKdmbq1U,11936
|
|
1080
|
-
benchbox/platforms/polars_platform.py,sha256=mSQoRw2hNvAHE5j01KTYhSvOf_9awjp8PICRytaKEWc,27853
|
|
1081
|
-
benchbox/platforms/postgresql.py,sha256=-0CkzkzYg6okTspgn1hQ_7JDmSHfy-LRNUyXsp8J4wM,37221
|
|
1082
|
-
benchbox/platforms/presto.py,sha256=eJ8OUhQ-QqSO4h7zeOcX7KwikJxRMZLXq33T_Z9qvRs,57573
|
|
1083
|
-
benchbox/platforms/redshift.py,sha256=YcoWTwrPSXmlYO_k34rZkBMwvoHUdwqSzZNnpDFw1fk,99182
|
|
1084
|
-
benchbox/platforms/snowflake.py,sha256=ZpM1yoNgy2akb369Wt6wUlJSLRVoIfK0ETeJlZK6ktA,77481
|
|
1085
|
-
benchbox/platforms/snowpark_connect.py,sha256=kEoJMlCQ3SdiuBehxm1vaGzDUWL7guGgoq2hfnKMZ9c,21577
|
|
1086
|
-
benchbox/platforms/spark.py,sha256=2mcro3DrkB96rSeSVRKsLgeyx8Ynea_lwzsJXphO6_4,42221
|
|
1087
|
-
benchbox/platforms/sqlite.py,sha256=zlzsYq9da_yewETu9Pl2LP9RDE5rOwwMvmsvDnUjLPg,16948
|
|
1088
|
-
benchbox/platforms/starburst.py,sha256=85cxYjuHt4yDS2I-7KdeDSKs68eWaJ54YDA1y4fVjio,13916
|
|
1089
|
-
benchbox/platforms/timescaledb.py,sha256=k8wSOgDOI_QuxC5tC7rfZMdk2gDsG23WS04RbEO_seE,29077
|
|
1090
|
-
benchbox/platforms/trino.py,sha256=mx6ImHmQvD8Oggf0E7bGjeG-NRItmW3o3Z8yiUaOUBs,57598
|
|
1091
|
-
benchbox/platforms/aws/__init__.py,sha256=zVuzd88xqXN2zyY6aBz-X2qOBRHTZBHc95KsL0aOOPk,808
|
|
1092
|
-
benchbox/platforms/aws/athena_spark_adapter.py,sha256=mGyUB4SHPg3g0MEjmu1rlbBkQooJG-TDIBB0fTQEcl4,25847
|
|
1093
|
-
benchbox/platforms/aws/emr_serverless_adapter.py,sha256=SGRfz2aNMUXMtX6cuaULd0Rs0jqlxytvo6O3Dk4nyYk,27255
|
|
1094
|
-
benchbox/platforms/aws/glue_adapter.py,sha256=SiZ8bDDA3qQrLv4RO77oS94EIfV-1mKtSs5S5uZfbqM,28112
|
|
1095
|
-
benchbox/platforms/azure/__init__.py,sha256=waCADAmPG6FR5PxCeNNYXX6UorDqpFcFRACtPaY4JJA,607
|
|
1096
|
-
benchbox/platforms/azure/fabric_spark_adapter.py,sha256=FhyOynAEbRnjt6dvp4tGZ1HvnaMv0NkFIJtDbvN2OOE,28412
|
|
1097
|
-
benchbox/platforms/azure/synapse_spark_adapter.py,sha256=X6CnJKYkFhpqjsXr-DaukFjO0csLFwsLVk3pCZ20ePM,28693
|
|
1098
|
-
benchbox/platforms/base/README.md,sha256=BjnNOz-_3Idfvy-Sqc4hI2W_q6-W-aoVl42ZkXtLLxM,1379
|
|
1099
|
-
benchbox/platforms/base/__init__.py,sha256=ZZhBDYDlg54G99V_u0AiiV0FNGWYJZKxbPgfDGT23a4,1378
|
|
1100
|
-
benchbox/platforms/base/adapter.py,sha256=WttIW1d_X74gIYzdPW58I2dHaPSRzBDJfqEveoVd-Tc,191721
|
|
1101
|
-
benchbox/platforms/base/data_loading.py,sha256=dkaGvFqezic_G2-1VQrE5yJsOjGvB2od9IhSPZicsvA,57612
|
|
1102
|
-
benchbox/platforms/base/format_capabilities.py,sha256=MzCE1xRjbZY1f3cnAJr1koudt5UE_PsbhMSZTXgVByU,7016
|
|
1103
|
-
benchbox/platforms/base/models.py,sha256=_Yz4eR7yGI8RcsAmDM0L5t0pVPlb7TSpgrIm66s2O8A,5418
|
|
1104
|
-
benchbox/platforms/base/utils.py,sha256=1gpEXWF25I8lcJgXCk2S8SYrvQmKUBE9nJUXkuwNgh4,2489
|
|
1105
|
-
benchbox/platforms/base/validation.py,sha256=kXHpnR1Y5HeCbMSFy2ik17cpYn3gGTZRDnCa7dLUEd8,22523
|
|
1106
|
-
benchbox/platforms/base/cloud_spark/__init__.py,sha256=3BEXnRk5oHj-5r_Pcw10jcWOLNXQTEh43knQnRqZC84,1804
|
|
1107
|
-
benchbox/platforms/base/cloud_spark/config.py,sha256=85yYqUA55OZ05Va9iDtp1F6gwmTc9mOnvBBLBdxffW4,17593
|
|
1108
|
-
benchbox/platforms/base/cloud_spark/mixins.py,sha256=TE1y0LfaSHvK81EKpI8MGxIagkseD8jJWi4VRJQVkdk,27108
|
|
1109
|
-
benchbox/platforms/base/cloud_spark/session.py,sha256=cnh7sl8IefgIM45I90m-xNgEWI8smCnld6hYz1i2ZII,18487
|
|
1110
|
-
benchbox/platforms/base/cloud_spark/staging.py,sha256=NpJiGKh3oMiZQofEKGEJHuM519OaFsaYDt8h8qoAiqA,26866
|
|
1111
|
-
benchbox/platforms/credentials/__init__.py,sha256=_DBk0S17ZYzKZlDoTkervPaSWFBn_6g8IQ12OVFvZJA,270
|
|
1112
|
-
benchbox/platforms/credentials/athena.py,sha256=6Ybad7jHH4WqoZW06nG0jJ32wkEowoAIDn1bfBlk5g0,13906
|
|
1113
|
-
benchbox/platforms/credentials/bigquery.py,sha256=LIE75EaC9N875Sda2hqV_vswV2plchr2uvuqcPpyYHE,18546
|
|
1114
|
-
benchbox/platforms/credentials/helpers.py,sha256=gtGKABKEgd7cUZo0jj169hy4TgGRGN0BG3PvzO_EenE,3945
|
|
1115
|
-
benchbox/platforms/credentials/redshift.py,sha256=m3F05_ps4AToz4g9puKCjIX7fxVuJSeQPMHzzuor4FI,34573
|
|
1116
|
-
benchbox/platforms/credentials/snowflake.py,sha256=WODe4UBfpuG_dcd7B5R1DRxfuGvl2sVFM2Cb4shjW2Y,14470
|
|
1117
|
-
benchbox/platforms/databricks/__init__.py,sha256=rb5b9-Sep1453q9KvbRLMmyVFlStqdWDtzE5eW32ZXg,3738
|
|
1118
|
-
benchbox/platforms/databricks/adapter.py,sha256=l_ArhVrjrSJNfC-5cCZIJFEFSITBIRwvA_2MKkzL7_g,84365
|
|
1119
|
-
benchbox/platforms/databricks/credentials.py,sha256=7PmL8lukwt3jqJaAr-tQ5Qrh3_y1JkTNwlU4FUhR1fk,14045
|
|
1120
|
-
benchbox/platforms/databricks/dataframe_adapter.py,sha256=gi4aFpYP3nZf9im5dnG42PANWpkre7y-q63iVa__W0U,19244
|
|
1121
|
-
benchbox/platforms/dataframe/__init__.py,sha256=QxAeuw_V5ln51x7swCqa2piNomajt3rYLKKf_Bd0fo4,4280
|
|
1122
|
-
benchbox/platforms/dataframe/cudf_df.py,sha256=q6yQrL-DgADioacQeSlymd_t8kNsCtLCGKza0hTbdU8,14318
|
|
1123
|
-
benchbox/platforms/dataframe/dask_df.py,sha256=ZdyoDN4g-LkoTgQtNmlS6_IN0YXo5_33eOXFvOHjTss,21105
|
|
1124
|
-
benchbox/platforms/dataframe/datafusion_df.py,sha256=XZkBcC7BuMf1qnfiwCfS5n5V1LsrN1xQL8wlyIOIyy8,35927
|
|
1125
|
-
benchbox/platforms/dataframe/expression_family.py,sha256=2eOKPkCre3QhiipkVTBR0IHE3I-kh_oCXXKAdSr_OwQ,45014
|
|
1126
|
-
benchbox/platforms/dataframe/modin_df.py,sha256=lTZxQkNGlpX1mgebmVvlY2ArBWlC_Eu-yMVJjbTVr4U,16426
|
|
1127
|
-
benchbox/platforms/dataframe/pandas_df.py,sha256=cVozg1aWfPppmb097VOiSX8F6ESy-MuRVMkEzNE9YKc,16421
|
|
1128
|
-
benchbox/platforms/dataframe/pandas_family.py,sha256=E2eIRdZYLQEvrTtJVbNaV3V9iK4Z2l4E65yztGCn4F0,40992
|
|
1129
|
-
benchbox/platforms/dataframe/platform_checker.py,sha256=drtuaxNduHoOGC3-ZuJvLekWQmsc6FwsElzyTmSZx_0,13084
|
|
1130
|
-
benchbox/platforms/dataframe/polars_df.py,sha256=VcLZFgQlZqY9UyvM-KtDlaIpdUPKHZA_-VVVcuYrpo4,23195
|
|
1131
|
-
benchbox/platforms/dataframe/pyspark_df.py,sha256=DLOveu6eN7qr6o_TN0DqK7bi-3rMunmztlZdXppE7aE,31936
|
|
1132
|
-
benchbox/platforms/dataframe/tuning_mixin.py,sha256=Tg-ThhvBGn673yJsoxW3B1WdLMRQB9Zs8761UQFYTGE,4927
|
|
1133
|
-
benchbox/platforms/dataframe/unified_frame.py,sha256=IzW8sor20Awx4wuaqcn-rxB--AWYM7IrVHlnxfTXE10,134022
|
|
1134
|
-
benchbox/platforms/dataframe/unified_pandas_frame.py,sha256=v7MbiRBrgPyTbYjbME9t_AxetByqVqx8IgwuOB6nV3A,16854
|
|
1135
|
-
benchbox/platforms/gcp/__init__.py,sha256=hqh9h9gujKex_1OhvQB_7-pVltPz-NGnDB0U4_0_Rfg,485
|
|
1136
|
-
benchbox/platforms/gcp/dataproc_adapter.py,sha256=XkpZ_qBvEc8zSnK87pDyCNNyFYaF0y-SeV9dqMyB45Q,26286
|
|
1137
|
-
benchbox/platforms/gcp/dataproc_serverless_adapter.py,sha256=u8r_c3VzHdDqCRFwgRS90O5je3ex6BWtbep_Hpjx8qU,21129
|
|
1138
|
-
benchbox/platforms/influxdb/__init__.py,sha256=lyKdyOrZ-CUPHdY7z3k_7ZZLP-BF1QhQdeaW5VTPDkc,2420
|
|
1139
|
-
benchbox/platforms/influxdb/_dependencies.py,sha256=B7IXyaJaWb0yFd92ccZj_rR0xeVz3q-tSxo6Wd1pbMk,1442
|
|
1140
|
-
benchbox/platforms/influxdb/adapter.py,sha256=yNBwCnMzn7-hvBW9eTAwZRiBWXYgtqyG2k2Ip7bcklQ,19122
|
|
1141
|
-
benchbox/platforms/influxdb/client.py,sha256=Y7pJucEj_27_te89Uy3gIZMOETGNN7Comn2Ab24V8Vw,14114
|
|
1142
|
-
benchbox/platforms/influxdb/metadata.py,sha256=7nsseXEClDm6uLaNKKGe5oEFySmSsgiEUwReo-UxULc,5391
|
|
1143
|
-
benchbox/platforms/influxdb/setup.py,sha256=a9KRw3he7RgopTZmVdKL0NhIIBtEb_3TJX6_RO1NzYI,4960
|
|
1144
|
-
benchbox/platforms/pyspark/__init__.py,sha256=4tTX4XtLI0fbzL7VMUSMN1mcImbR_UIQ9R2ySuFUl9I,1471
|
|
1145
|
-
benchbox/platforms/pyspark/session.py,sha256=ldc5drwwgmEFIchZs5PYbRDo-rRLkLKAWeOA91TjkkE,16787
|
|
1146
|
-
benchbox/platforms/pyspark/sql_adapter.py,sha256=-DhmMMxHbsKlVHF3ofHtkNgb6xhrFZ0ywChL4odZy5g,2995
|
|
1147
|
-
benchbox/release/__init__.py,sha256=av3kQ6eMOFVadWp0KeSc9bISl0ZyPw8_J6BQYfpcTxg,357
|
|
1148
|
-
benchbox/release/sync.py,sha256=u6O_-X9GHocJ1Ry2W9P-4xeFSe0ODC7F2WOFA86gcYg,15040
|
|
1149
|
-
benchbox/release/workflow.py,sha256=bqraki7CpzPOrEyCWOFJFEBBt0N12mS5d8SOcOhiXpc,33994
|
|
1150
|
-
benchbox/security/__init__.py,sha256=IMriGQFi50dMLO1-3uAeYNG-RMEWSAHoEIp4-TN5AMo,380
|
|
1151
|
-
benchbox/security/credentials.py,sha256=pQQqIGYnc5ol0P73Hkzu_6kriZglfGsIV25pox6wEII,8511
|
|
1152
|
-
benchbox/utils/VERSION_MANAGEMENT.md,sha256=Rw9Jf5ewf4BXAZF8X6L62XSK8cpkV1v7sdXsf7ugT0I,9726
|
|
1153
|
-
benchbox/utils/__init__.py,sha256=-DqfDyqVu-gIymJM3WYIq317U9RDBIkxXv6T9Oeit9U,2119
|
|
1154
|
-
benchbox/utils/cloud_storage.py,sha256=j-7JI-NIGAgPKXyoiH1powOW2SuGXGnSsecxBZc3Uvk,29645
|
|
1155
|
-
benchbox/utils/coffeeshop_seed_loader.py,sha256=dw5Z-LOH4xaW-mMiOrYQ9KPn_rtFytSxa0xblUMETVE,3158
|
|
1156
|
-
benchbox/utils/compression.py,sha256=0c6VU2BD52UArmDLER7A0VzSqoLN7Xb1djVqLtmwOAU,13299
|
|
1157
|
-
benchbox/utils/compression_mixin.py,sha256=RpQxshvsoDEaacl-TWlNlq7dXUcnF4n-WezcyJZbZlI,8696
|
|
1158
|
-
benchbox/utils/config_helpers.py,sha256=OAIp8oAozo1-AavIqA5P3or0_LETcEbxJ71DG_XwiQ4,15488
|
|
1159
|
-
benchbox/utils/config_interface.py,sha256=RYl4miS_hErA-glFxroQ8sX2AH0W1Pe6jiknvDCYrY4,3366
|
|
1160
|
-
benchbox/utils/data_validation.py,sha256=Ga83E6jmNJb0m4CP4s9fuoLzI8QqwF1YcY9zboo7GUI,25353
|
|
1161
|
-
benchbox/utils/database_naming.py,sha256=1hV1vkzc17RnAHvygzuz9LNAonJTyWeVKD3lRgehg_A,15866
|
|
1162
|
-
benchbox/utils/datagen_manifest.py,sha256=y5zObIeVY-mvi1fUCzqWo3UbWznwYlAbtaWUf4aaDbs,15065
|
|
1163
|
-
benchbox/utils/dependencies.py,sha256=9UU9BmMxoLMShF_S8ybq2aTOk39VgURSxWBHoHnnodo,35700
|
|
1164
|
-
benchbox/utils/dependency_validation.py,sha256=gL0S0vZ1UW06oekjCxYSpht8xK7aXDHjVMxGCPZn3Pc,7357
|
|
1165
|
-
benchbox/utils/dialect_utils.py,sha256=kQcm56LpsTJ8t1W-M3DGkm66MXFLuT8pFn58S2glLgk,6580
|
|
1166
|
-
benchbox/utils/execution_manager.py,sha256=yfKyx2O7JEMN6lY7ybNw1L7uFsGHtk8OgeYxA-gTYmQ,30248
|
|
1167
|
-
benchbox/utils/format_selection.py,sha256=xqlwAShK71UqU0T7mTo4phduoerpgGaWYKxz1gOldLw,5956
|
|
1168
|
-
benchbox/utils/formatting.py,sha256=CQxD2Vwk0HDPBID82y5mWDmA_aUlcxxnM1-Z0uyD2oE,2574
|
|
1169
|
-
benchbox/utils/input_validation.py,sha256=31zXO5xK1gJTql5oMyckPMJeBhkpYPgmWGjoSrSzDbk,20260
|
|
1170
|
-
benchbox/utils/lazy_loader.py,sha256=_UBqtIdlyDoYO91MJZba494WogQZKwNbID5oYrlaMM8,4214
|
|
1171
|
-
benchbox/utils/output_path.py,sha256=1d-6ctRcRrhlA3rGlTCxcdyPkMzBnvjlTsxMK8eHkCQ,1116
|
|
1172
|
-
benchbox/utils/path_utils.py,sha256=mLGNkpN1paSwVPey5gReR5UlWYN8fbtK1hR0G_GBvHg,2480
|
|
1173
|
-
benchbox/utils/printing.py,sha256=3q0LT1HMfqtmZCsmMmYCbu1KGGu4XrDkIriJkeX6p1Y,3508
|
|
1174
|
-
benchbox/utils/resource_limits.py,sha256=VkPzKBT6S0L8rIvS8dQL_il_yQoKz4orQczvP8ylvu8,17951
|
|
1175
|
-
benchbox/utils/runtime_env.py,sha256=qLF0ebTwVOSgJm2PTMnn-X-TPUht50Y_9pd6vOtEI_Y,5931
|
|
1176
|
-
benchbox/utils/scale_factor.py,sha256=ViXEUM0I5MZZscKgeP0lib1WeP85id6cHUsqv4Ez_Ak,2959
|
|
1177
|
-
benchbox/utils/system_info.py,sha256=1RkR3I5Mm1agArCRvCIbNj4LKJqE4WTyCSp3JYZRGQk,3109
|
|
1178
|
-
benchbox/utils/timeout_manager.py,sha256=tCGlhJS31ReBmUWqDiem9mXi2zjVtKz_YaV1QxDeAUc,7532
|
|
1179
|
-
benchbox/utils/tpc_compilation.py,sha256=HgWCL-ZIdi9N9r_DkwwwwOtcf5pZ0kl8yszb0zmMaeo,31789
|
|
1180
|
-
benchbox/utils/verbosity.py,sha256=bOaudOtA7qN6PXg79lQabeWpCejaLIJf1oM7hkFQ03A,10145
|
|
1181
|
-
benchbox/utils/version.py,sha256=jpvAfOzlrmOTVnyORnynn6vsiluHmo9x6pPbmNEuFdE,17119
|
|
1182
|
-
benchbox/utils/format_converters/__init__.py,sha256=5jYS7KTblmYoSodF7bS5i5w-BKmmTeMWg2orjMzbYzY,746
|
|
1183
|
-
benchbox/utils/format_converters/base.py,sha256=zEzhA7Ae7o_IYV4hXw0gxQLNOsfWdK50Y57vAj83WOU,20317
|
|
1184
|
-
benchbox/utils/format_converters/delta_converter.py,sha256=BUmmKeUALdREd15t9FCSEYja4I9-HuqKvGyw4ezBXZg,6804
|
|
1185
|
-
benchbox/utils/format_converters/iceberg_converter.py,sha256=BfNdBdjrCt3GDFz1Av1FkpqQB28iGyJ6s43Jey6iC64,12089
|
|
1186
|
-
benchbox/utils/format_converters/parquet_converter.py,sha256=aC3ApdPGxW4TFlHjhhp1Ml0HFIXnVNqBGzVHUaZVl4A,13142
|
|
1187
|
-
benchbox-0.1.0.dist-info/licenses/LICENSE,sha256=igUc4AB72JDVJoGIvP1eq9WmSLaCTsUdytVP0PPJ5Ow,1086
|
|
1188
|
-
benchbox-0.1.0.dist-info/METADATA,sha256=CP7MrXINPjAE5iFub5b-jiyFgut8X5jsb67FdgmENmE,60889
|
|
1189
|
-
benchbox-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1190
|
-
benchbox-0.1.0.dist-info/entry_points.txt,sha256=VGy1EwJ6O_qpsDa40-q61XMo8CSZ8x_bo1icbGMrbtM,129
|
|
1191
|
-
benchbox-0.1.0.dist-info/top_level.txt,sha256=MogNXs74UpYY-bSiLj7EnvXfnJ_VIEpUiAw_qWBB1Es,9
|
|
1192
|
-
benchbox-0.1.0.dist-info/RECORD,,
|