mirror of
https://github.com/sandronator/finetuning_aufgabe4.git
synced 2026-09-04 08:36:09 +02:00
10 lines
400 B
Python
10 lines
400 B
Python
resolve = {
|
|
"postgresql": {
|
|
"disable": ["SET enable_nestloop = off", "SET enable_mergejoin = off"],
|
|
"reset": ["RESET enable_nestloop", "RESET enable_mergejoin"],
|
|
},
|
|
"mariadb": {
|
|
"disable": ["SET optimizer_switch='join_cache_hashed=on'", "SET join_cache_level=8"],
|
|
"reset": ["SET optimizer_switch=DEFAULT", "SET join_cache_level=DEFAULT"],
|
|
},
|
|
} |