Details
-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Critical
-
Resolution: Fixed
-
Fix Version/s: 10.6.0
-
Component/s: Optimizer
-
Labels:
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.