We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15c40e commit a02e248Copy full SHA for a02e248
2.Function/2.33_execute_plan_hint/overview.md
@@ -68,9 +68,9 @@ hint 的语法沿用 [dble hint](../2.04_hint.md)
68
1. (a,c) 表示a和c表之间存在ER关系,可以整体下推
69
2. & 表示后面的内容依赖前面的内容,需要等待前面的结果返回之后带入到后面之中作为条件下发,相当于nestloop的方式
70
3. | 表示两者可以并发,数据处理方式取决于join的方式
71
-4. left2inner 参数表示是否用left join取代inner join
72
-5. right2inner 参数表示是否用right join取代inner join
73
-6. in2join 参数表示是否in子查询转为join
+4. left2inner 参数表示是将left join转成inner join
+5. right2inner 参数表示是将right join转成inner join
+6. in2join 参数表示将in子查询转为join查询;(此参数优先于bootstrap.cnf中的inSubQueryTransformToJoin策略)
74
75
76
## 限制
0 commit comments