OLD | NEW |
1 # 2013-09-05 | 1 # 2013-09-05 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 c_custkey = o_custkey and l_orderkey = o_orderkey | 183 c_custkey = o_custkey and l_orderkey = o_orderkey |
184 and o_orderdate >= '1994-08-01' and o_orderdate < date('1994-08-01', '+3
month') | 184 and o_orderdate >= '1994-08-01' and o_orderdate < date('1994-08-01', '+3
month') |
185 and l_returnflag = 'R' and c_nationkey = n_nationkey | 185 and l_returnflag = 'R' and c_nationkey = n_nationkey |
186 group by | 186 group by |
187 c_custkey, c_name, c_acctbal, c_phone, n_name, c_address, c_c
omment | 187 c_custkey, c_name, c_acctbal, c_phone, n_name, c_address, c_c
omment |
188 order by | 188 order by |
189 revenue desc; | 189 revenue desc; |
190 } {0 0 1 {SEARCH TABLE orders USING INDEX odi (O_ORDERDATE>? AND O_ORDERDATE<?)}
0 1 0 {SEARCH TABLE customer USING INDEX cpki (C_CUSTKEY=?)} 0 2 3 {SEARCH TABL
E nation USING INDEX npki (N_NATIONKEY=?)} 0 3 2 {SEARCH TABLE lineitem USING IN
DEX lpki (L_ORDERKEY=?)} 0 0 0 {USE TEMP B-TREE FOR GROUP BY} 0 0 0 {USE TEMP B-
TREE FOR ORDER BY}} | 190 } {0 0 1 {SEARCH TABLE orders USING INDEX odi (O_ORDERDATE>? AND O_ORDERDATE<?)}
0 1 0 {SEARCH TABLE customer USING INDEX cpki (C_CUSTKEY=?)} 0 2 3 {SEARCH TABL
E nation USING INDEX npki (N_NATIONKEY=?)} 0 3 2 {SEARCH TABLE lineitem USING IN
DEX lpki (L_ORDERKEY=?)} 0 0 0 {USE TEMP B-TREE FOR GROUP BY} 0 0 0 {USE TEMP B-
TREE FOR ORDER BY}} |
191 | 191 |
192 finish_test | 192 finish_test |
OLD | NEW |