This commit is contained in:
Oscar Plaisant 2024-07-02 03:08:46 +02:00
parent 626b3a7327
commit 495bb4b63c
4 changed files with 7 additions and 3 deletions

View File

@ -5,7 +5,7 @@ The configuration is stored the the `src/config.yaml` file.
## Database-specific configuration
`database_name` should contain the name of the database to use. The database has to be stored in the proper directory structure (See the [Directory structure > Datasets](README.md#Datasets))
`database_name` should contain the name of the database to use. The database has to be stored in the proper directory structure (See the [Directory structure > Datasets](README.md#datasets))
# Directory structure of the project

View File

@ -0,0 +1 @@
{"duration": 15.753787755966187, "input_args": {"q": "\"\\n SELECT p_color, c_region, SUM(lo_quantity)\\n FROM lineorder\\n INNER JOIN customer ON lo_custkey = c_custkey\\nINNER JOIN part ON lo_partkey = p_partkey\\nWHERE p_color IN ('azure', 'bisque', 'black', 'aquamarine')\\n\\n GROUP BY p_color, c_region\\n ORDER BY SUM(lo_quantity) DESC;\\n \""}, "time": 1719882521.904444}

View File

@ -97,11 +97,14 @@ database:
# }}}
# set which parts of the program should ouput logs
verbose:
# queries to the database (src/querying.py)
querying: true
concentration_test: true
persistent_query_memoization: false
# memoïze the result of queries
persistent_query_memoization: true