mirror of
https://github.com/sandronator/finetuning_aufgabe4.git
synced 2026-09-04 08:36:09 +02:00
11 lines
368 B
Python
11 lines
368 B
Python
# nestedLoopResolver.py
|
|
resolve = {
|
|
"postgresql": {
|
|
"disable": ["SET enable_hashjoin = off", "SET enable_mergejoin = off"],
|
|
"reset": ["RESET enable_hashjoin", "RESET enable_mergejoin"],
|
|
},
|
|
"mariadb": {
|
|
"disable": ["SET optimizer_switch='block_nested_loop=off'"],
|
|
"reset": ["SET optimizer_switch=DEFAULT"],
|
|
},
|
|
} |