Details
-
Task
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
Description
optimize_cond prints the rewrites done for WHERE and HAVING:
"join_optimization": {
|
"select_id": 1,
|
"steps": [
|
{
|
"condition_processing": {
|
"condition": "WHERE",
|
"original_condition": "..."
|
"steps": [
|
{
|
"transformation": "equality_propagation",
|
"resulting_condition": "..."
|
},
|
{
|
"transformation": "constant_propagation",
|
"resulting_condition": "..."
|
},
|
{
|
"transformation": "trivial_condition_removal",
|
"resulting_condition": "..."
|
but it doesn't print the same for ON expressions, which is misleading.
Make it print that.