pars0opt.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:31k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Simple SQL optimizer
  3. (c) 1997 Innobase Oy
  4. Created 12/21/1997 Heikki Tuuri
  5. *******************************************************/
  6. #include "pars0opt.h"
  7. #ifdef UNIV_NONINL
  8. #include "pars0opt.ic"
  9. #endif
  10. #include "row0sel.h"
  11. #include "row0ins.h"
  12. #include "row0upd.h"
  13. #include "dict0dict.h"
  14. #include "dict0mem.h"
  15. #include "que0que.h"
  16. #include "pars0grm.h"
  17. #include "pars0pars.h"
  18. #include "lock0lock.h"
  19. #define OPT_EQUAL 1 /* comparison by = */
  20. #define OPT_COMPARISON 2 /* comparison by <, >, <=, or >= */
  21. #define OPT_NOT_COND 1
  22. #define OPT_END_COND 2
  23. #define OPT_TEST_COND 3
  24. #define OPT_SCROLL_COND 4
  25. /***********************************************************************
  26. Inverts a comparison operator. */
  27. static
  28. int
  29. opt_invert_cmp_op(
  30. /*==============*/
  31. /* out: the equivalent operator when the order of
  32. the arguments is switched */
  33. int op) /* in: operator */
  34. {
  35. if (op == '<') {
  36. return('>');
  37. } else if (op == '>') {
  38. return('<');
  39. } else if (op == '=') {
  40. return('=');
  41. } else if (op == PARS_LE_TOKEN) {
  42. return(PARS_GE_TOKEN);
  43. } else if (op == PARS_GE_TOKEN) {
  44. return(PARS_LE_TOKEN);
  45. } else {
  46. ut_error;
  47. }
  48. return(0);
  49. }
  50. /***********************************************************************
  51. Checks if the value of an expression can be calculated BEFORE the nth table
  52. in a join is accessed. If this is the case, it can possibly be used in an
  53. index search for the nth table. */
  54. static
  55. ibool
  56. opt_check_exp_determined_before(
  57. /*============================*/
  58. /* out: TRUE if already determined */
  59. que_node_t* exp, /* in: expression */
  60. sel_node_t* sel_node, /* in: select node */
  61. ulint nth_table) /* in: nth table will be accessed */
  62. {
  63. func_node_t* func_node;
  64. sym_node_t* sym_node;
  65. dict_table_t* table;
  66. que_node_t* arg;
  67. ulint i;
  68. ut_ad(exp && sel_node);
  69. if (que_node_get_type(exp) == QUE_NODE_FUNC) {
  70. func_node = exp;
  71. arg = func_node->args;
  72. while (arg) {
  73. if (!opt_check_exp_determined_before(arg, sel_node,
  74. nth_table)) {
  75. return(FALSE);
  76. }
  77. arg = que_node_get_next(arg);
  78. }
  79. return(TRUE);
  80. }
  81. ut_a(que_node_get_type(exp) == QUE_NODE_SYMBOL);
  82. sym_node = exp;
  83. if (sym_node->token_type != SYM_COLUMN) {
  84. return(TRUE);
  85. }
  86. for (i = 0; i < nth_table; i++) {
  87. table = sel_node_get_nth_plan(sel_node, i)->table;
  88. if (sym_node->table == table) {
  89. return(TRUE);
  90. }
  91. }
  92. return(FALSE);
  93. }
  94. /***********************************************************************
  95. Looks in a comparison condition if a column value is already restricted by
  96. it BEFORE the nth table is accessed. */
  97. static
  98. que_node_t*
  99. opt_look_for_col_in_comparison_before(
  100. /*==================================*/
  101. /* out: expression restricting the
  102. value of the column, or NULL if not
  103. known */
  104. ulint cmp_type, /* in: OPT_EQUAL, OPT_COMPARISON */
  105. ulint col_no, /* in: column number */
  106. func_node_t* search_cond, /* in: comparison condition */
  107. sel_node_t* sel_node, /* in: select node */
  108. ulint nth_table, /* in: nth table in a join (a query
  109. from a single table is considered a
  110. join of 1 table) */
  111. ulint* op) /* out: comparison operator ('=',
  112. PARS_GE_TOKEN, ... ); this is inverted
  113. if the column appears on the right
  114. side */
  115. {
  116. sym_node_t* sym_node;
  117. dict_table_t* table;
  118. que_node_t* exp;
  119. que_node_t* arg;
  120. ut_ad(search_cond);
  121. ut_a((search_cond->func == '<')
  122.      || (search_cond->func == '>')
  123.      || (search_cond->func == '=')
  124.      || (search_cond->func == PARS_GE_TOKEN)
  125.      || (search_cond->func == PARS_LE_TOKEN));
  126. table = sel_node_get_nth_plan(sel_node, nth_table)->table;
  127. if ((cmp_type == OPT_EQUAL) && (search_cond->func != '=')) {
  128. return(NULL);
  129. } else if ((cmp_type == OPT_COMPARISON)
  130. && (search_cond->func != '<')
  131. && (search_cond->func != '>')
  132. && (search_cond->func != PARS_GE_TOKEN)
  133. && (search_cond->func != PARS_LE_TOKEN)) {
  134. return(NULL);
  135. }
  136. arg = search_cond->args;
  137. if (que_node_get_type(arg) == QUE_NODE_SYMBOL) {
  138. sym_node = arg;
  139. if ((sym_node->token_type == SYM_COLUMN)
  140. && (sym_node->table == table)
  141. && (sym_node->col_no == col_no)) {
  142. /* sym_node contains the desired column id */
  143. /* Check if the expression on the right side of the
  144. operator is already determined */
  145. exp = que_node_get_next(arg);
  146. if (opt_check_exp_determined_before(exp, sel_node,
  147. nth_table)) {
  148. *op = search_cond->func;
  149. return(exp);
  150. }
  151. }
  152.      }
  153.      exp = search_cond->args;
  154.         arg = que_node_get_next(arg);
  155. if (que_node_get_type(arg) == QUE_NODE_SYMBOL) {
  156. sym_node = arg;
  157. if ((sym_node->token_type == SYM_COLUMN)
  158. && (sym_node->table == table)
  159. && (sym_node->col_no == col_no)) {
  160. if (opt_check_exp_determined_before(exp, sel_node,
  161. nth_table)) {
  162. *op = opt_invert_cmp_op(search_cond->func);
  163. return(exp);
  164. }
  165. }
  166.      }
  167. return(NULL);
  168. }
  169. /***********************************************************************
  170. Looks in a search condition if a column value is already restricted by the
  171. search condition BEFORE the nth table is accessed. Takes into account that
  172. if we will fetch in an ascending order, we cannot utilize an upper limit for
  173. a column value; in a descending order, respectively, a lower limit. */
  174. static
  175. que_node_t*
  176. opt_look_for_col_in_cond_before(
  177. /*============================*/
  178. /* out: expression restricting the
  179. value of the column, or NULL if not
  180. known */
  181. ulint cmp_type, /* in: OPT_EQUAL, OPT_COMPARISON */
  182. ulint col_no, /* in: column number */
  183. func_node_t* search_cond, /* in: search condition or NULL */
  184. sel_node_t* sel_node, /* in: select node */
  185. ulint nth_table, /* in: nth table in a join (a query
  186. from a single table is considered a
  187. join of 1 table) */
  188. ulint* op) /* out: comparison operator ('=',
  189. PARS_GE_TOKEN, ... ) */
  190. {
  191. func_node_t* new_cond;
  192. que_node_t* exp;
  193. if (search_cond == NULL) {
  194. return(NULL);
  195. }
  196. ut_a(que_node_get_type(search_cond) == QUE_NODE_FUNC);
  197. ut_a(search_cond->func != PARS_OR_TOKEN);
  198. ut_a(search_cond->func != PARS_NOT_TOKEN);
  199. if (search_cond->func == PARS_AND_TOKEN) {
  200. new_cond = search_cond->args;
  201. exp = opt_look_for_col_in_cond_before(cmp_type, col_no,
  202. new_cond, sel_node, nth_table, op);
  203. if (exp) {
  204. return(exp);
  205. }
  206. new_cond = que_node_get_next(new_cond);
  207. exp = opt_look_for_col_in_cond_before(cmp_type, col_no,
  208. new_cond, sel_node, nth_table, op);
  209. return(exp);
  210. }
  211. exp = opt_look_for_col_in_comparison_before(cmp_type, col_no,
  212. search_cond, sel_node, nth_table, op);
  213. if (exp == NULL) {
  214. return(NULL);
  215. }
  216. /* If we will fetch in an ascending order, we cannot utilize an upper
  217. limit for a column value; in a descending order, respectively, a lower
  218. limit */
  219. if (sel_node->asc && ((*op == '<') || (*op == PARS_LE_TOKEN))) {
  220. return(NULL);
  221. } else if (!sel_node->asc && ((*op == '>') || (*op == PARS_GE_TOKEN))) {
  222. return(NULL);
  223. }
  224. return(exp);
  225. }
  226. /***********************************************************************
  227. Calculates the goodness for an index according to a select node. The
  228. goodness is 4 times the number of first fields in index whose values we
  229. already know exactly in the query. If we have a comparison condition for
  230. an additional field, 2 point are added. If the index is unique, and we know
  231. all the unique fields for the index we add 1024 points. For a clustered index
  232. we add 1 point. */
  233. static
  234. ulint
  235. opt_calc_index_goodness(
  236. /*====================*/
  237. /* out: goodness */
  238. dict_index_t* index, /* in: index */
  239. sel_node_t* sel_node, /* in: parsed select node */
  240. ulint nth_table, /* in: nth table in a join */
  241. que_node_t** index_plan, /* in/out: comparison expressions for
  242. this index */
  243. ulint* last_op) /* out: last comparison operator, if
  244. goodness > 1 */
  245. {
  246. que_node_t* exp;
  247. ulint goodness;
  248. ulint n_fields;
  249. ulint col_no;
  250. ulint mix_id_col_no;
  251. ulint op;
  252. ulint j;
  253. goodness = 0;
  254. /* Note that as higher level node pointers in the B-tree contain
  255. page addresses as the last field, we must not put more fields in
  256. the search tuple than dict_index_get_n_unique_in_tree(index); see
  257. the note in btr_cur_search_to_nth_level. */
  258. n_fields = dict_index_get_n_unique_in_tree(index);
  259. mix_id_col_no = dict_table_get_sys_col_no(index->table, DATA_MIX_ID);
  260. for (j = 0; j < n_fields; j++) {
  261. col_no = dict_index_get_nth_col_no(index, j);
  262. exp = opt_look_for_col_in_cond_before(OPT_EQUAL, col_no,
  263. sel_node->search_cond,
  264. sel_node, nth_table, &op);
  265. if (col_no == mix_id_col_no) {
  266. ut_ad(exp == NULL);
  267. index_plan[j] = NULL;
  268. *last_op = '=';
  269. goodness += 4;
  270. } else if (exp) {
  271. /* The value for this column is exactly known already
  272. at this stage of the join */
  273. index_plan[j] = exp;
  274. *last_op = op;
  275. goodness += 4;
  276. } else {
  277. /* Look for non-equality comparisons */
  278. exp = opt_look_for_col_in_cond_before(OPT_COMPARISON,
  279. col_no, sel_node->search_cond,
  280. sel_node, nth_table, &op);
  281. if (exp) {
  282. index_plan[j] = exp;
  283. *last_op = op;
  284. goodness += 2;
  285. }
  286. break;
  287. }
  288. }
  289. if (goodness >= 4 * dict_index_get_n_unique(index)) {
  290. goodness += 1024;
  291. if (index->type & DICT_CLUSTERED) {
  292. goodness += 1024;
  293. }
  294. }
  295. /* We have to test for goodness here, as last_op may note be set */
  296. if (goodness && index->type & DICT_CLUSTERED) {
  297. goodness++;
  298. }
  299. return(goodness);
  300. }
  301. /***********************************************************************
  302. Calculates the number of matched fields based on an index goodness. */
  303. UNIV_INLINE
  304. ulint
  305. opt_calc_n_fields_from_goodness(
  306. /*============================*/
  307. /* out: number of excatly or partially matched
  308. fields */
  309. ulint goodness) /* in: goodness */
  310. {
  311. return(((goodness % 1024) + 2) / 4);
  312. }
  313. /***********************************************************************
  314. Converts a comparison operator to the corresponding search mode PAGE_CUR_GE,
  315. ... */
  316. UNIV_INLINE
  317. ulint
  318. opt_op_to_search_mode(
  319. /*==================*/
  320. /* out: search mode */
  321. ibool asc, /* in: TRUE if the rows should be fetched in an
  322. ascending order */
  323. ulint op) /* in: operator '=', PARS_GE_TOKEN, ... */
  324. {
  325. if (op == '=') {
  326. if (asc) {
  327. return(PAGE_CUR_GE);
  328. } else {
  329. return(PAGE_CUR_LE);
  330. }
  331. } else if (op == '<') {
  332. ut_a(!asc);
  333. return(PAGE_CUR_L);
  334. } else if (op == '>') {
  335. ut_a(asc);
  336. return(PAGE_CUR_G);
  337. } else if (op == PARS_GE_TOKEN) {
  338. ut_a(asc);
  339. return(PAGE_CUR_GE);
  340. } else if (op == PARS_LE_TOKEN) {
  341. ut_a(!asc);
  342. return(PAGE_CUR_LE);
  343. } else {
  344. ut_error;
  345. }
  346. return(0);
  347. }
  348. /***********************************************************************
  349. Determines if a node is an argument node of a function node. */
  350. static
  351. ibool
  352. opt_is_arg(
  353. /*=======*/
  354. /* out: TRUE if is an argument */
  355. que_node_t* arg_node, /* in: possible argument node */
  356. func_node_t* func_node) /* in: function node */
  357. {
  358. que_node_t* arg;
  359. arg = func_node->args;
  360. while (arg) {
  361. if (arg == arg_node) {
  362. return(TRUE);
  363. }
  364. arg = que_node_get_next(arg);
  365. }
  366. return(FALSE);
  367. }
  368. /***********************************************************************
  369. Decides if the fetching of rows should be made in a descending order, and
  370. also checks that the chosen query plan produces a result which satisfies
  371. the order-by. */
  372. static
  373. void
  374. opt_check_order_by(
  375. /*===============*/
  376. sel_node_t* sel_node) /* in: select node; asserts an error
  377. if the plan does not agree with the
  378. order-by */
  379. {
  380. order_node_t* order_node;
  381. dict_table_t* order_table;
  382. ulint order_col_no;
  383. plan_t* plan;
  384. ulint i;
  385. if (!sel_node->order_by) {
  386. return;
  387. }
  388. order_node = sel_node->order_by;
  389. order_col_no = order_node->column->col_no;
  390. order_table = order_node->column->table;
  391. /* If there is an order-by clause, the first non-exactly matched field
  392. in the index used for the last table in the table list should be the
  393. column defined in the order-by clause, and for all the other tables
  394. we should get only at most a single row, otherwise we cannot presently
  395. calculate the order-by, as we have no sort utility */
  396. for (i = 0; i < sel_node->n_tables; i++) {
  397. plan = sel_node_get_nth_plan(sel_node, i);
  398. if (i < sel_node->n_tables - 1) {
  399. ut_a(dict_index_get_n_unique(plan->index)
  400. <= plan->n_exact_match);
  401. } else {
  402. ut_a(plan->table == order_table);
  403. ut_a((dict_index_get_n_unique(plan->index)
  404. <= plan->n_exact_match)
  405.      || (dict_index_get_nth_col_no(plan->index,
  406.       plan->n_exact_match)
  407.     == order_col_no));
  408. }
  409. }
  410. }
  411. /***********************************************************************
  412. Optimizes a select. Decides which indexes to tables to use. The tables
  413. are accessed in the order that they were written to the FROM part in the
  414. select statement. */
  415. static
  416. void
  417. opt_search_plan_for_table(
  418. /*======================*/
  419. sel_node_t* sel_node, /* in: parsed select node */
  420. ulint i, /* in: this is the ith table */
  421. dict_table_t* table) /* in: table */
  422. {
  423. plan_t* plan;
  424. dict_index_t* index;
  425. dict_index_t* best_index;
  426. ulint n_fields;
  427. ulint goodness;
  428. ulint last_op = 75946965; /* Eliminate a Purify
  429. warning */
  430. ulint best_goodness;
  431. ulint best_last_op = 0; /* remove warning */
  432. ulint mix_id_pos;
  433. que_node_t* index_plan[256];
  434. que_node_t* best_index_plan[256];
  435. plan = sel_node_get_nth_plan(sel_node, i);
  436. plan->table = table;
  437. plan->asc = sel_node->asc;
  438. plan->pcur_is_open = FALSE;
  439. plan->cursor_at_end = FALSE;
  440. /* Calculate goodness for each index of the table */
  441. index = dict_table_get_first_index(table);
  442. best_index = index; /* Eliminate compiler warning */
  443. best_goodness = 0;
  444. /* should be do ... until ? comment by Jani */
  445. while (index) {
  446. goodness = opt_calc_index_goodness(index, sel_node, i,
  447. index_plan, &last_op);
  448. if (goodness > best_goodness) {
  449. best_index = index;
  450. best_goodness = goodness;
  451. n_fields = opt_calc_n_fields_from_goodness(goodness);
  452. ut_memcpy(best_index_plan, index_plan,
  453. n_fields * sizeof(void*));
  454. best_last_op = last_op;
  455. }
  456. index = dict_table_get_next_index(index);
  457. }
  458. plan->index = best_index;
  459. n_fields = opt_calc_n_fields_from_goodness(best_goodness);
  460. if (n_fields == 0) {
  461. plan->tuple = NULL;
  462. plan->n_exact_match = 0;
  463. } else {
  464. plan->tuple = dtuple_create(pars_sym_tab_global->heap,
  465. n_fields);
  466. dict_index_copy_types(plan->tuple, plan->index, n_fields);
  467. plan->tuple_exps = mem_heap_alloc(pars_sym_tab_global->heap,
  468. n_fields * sizeof(void*));
  469. ut_memcpy(plan->tuple_exps, best_index_plan,
  470.    n_fields * sizeof(void*));
  471. if (best_last_op == '=') {
  472. plan->n_exact_match = n_fields;
  473. } else {
  474. plan->n_exact_match = n_fields - 1;
  475. }
  476. plan->mode = opt_op_to_search_mode(sel_node->asc,
  477. best_last_op);
  478. }
  479. if ((best_index->type & DICT_CLUSTERED)
  480.     && (plan->n_exact_match >= dict_index_get_n_unique(best_index))) {
  481. plan->unique_search = TRUE;
  482. } else {
  483. plan->unique_search = FALSE;
  484. }
  485. if ((table->type != DICT_TABLE_ORDINARY)
  486.      && (best_index->type & DICT_CLUSTERED)) {
  487.      plan->mixed_index = TRUE;
  488.      mix_id_pos = table->mix_len;
  489.      if (mix_id_pos < n_fields) {
  490.      /* We have to add the mix id as a (string) literal
  491. expression to the tuple_exps */
  492. plan->tuple_exps[mix_id_pos] =
  493. sym_tab_add_str_lit(pars_sym_tab_global,
  494. table->mix_id_buf,
  495. table->mix_id_len);
  496.      }
  497. } else {
  498. plan->mixed_index = FALSE;
  499. }
  500. plan->old_vers_heap = NULL;
  501. btr_pcur_init(&(plan->pcur));
  502. btr_pcur_init(&(plan->clust_pcur));
  503. }
  504. /***********************************************************************
  505. Looks at a comparison condition and decides if it can, and need, be tested for
  506. a table AFTER the table has been accessed. */
  507. static
  508. ulint
  509. opt_classify_comparison(
  510. /*====================*/
  511. /* out: OPT_NOT_COND if not for this
  512. table, else OPT_END_COND,
  513. OPT_TEST_COND, or OPT_SCROLL_COND,
  514. where the last means that the
  515. condition need not be tested, except
  516. when scroll cursors are used */
  517. sel_node_t* sel_node, /* in: select node */
  518. ulint i, /* in: ith table in the join */
  519. func_node_t* cond) /* in: comparison condition */
  520. {
  521. plan_t* plan;
  522. ulint n_fields;
  523. ulint op;
  524. ulint j;
  525. ut_ad(cond && sel_node);
  526. plan = sel_node_get_nth_plan(sel_node, i);
  527. /* Check if the condition is determined after the ith table has been
  528. accessed, but not after the i - 1:th */
  529. if (!opt_check_exp_determined_before(cond, sel_node, i + 1)) {
  530. return(OPT_NOT_COND);
  531. }
  532. if ((i > 0) && opt_check_exp_determined_before(cond, sel_node, i)) {
  533. return(OPT_NOT_COND);
  534. }
  535. /* If the condition is an exact match condition used in constructing
  536. the search tuple, it is classified as OPT_END_COND */
  537. if (plan->tuple) {
  538. n_fields = dtuple_get_n_fields(plan->tuple);
  539. } else {
  540. n_fields = 0;
  541. }
  542. for (j = 0; j < plan->n_exact_match; j++) {
  543. if (opt_is_arg(plan->tuple_exps[j], cond)) {
  544. return(OPT_END_COND);
  545. }
  546. }
  547. /* If the condition is an non-exact match condition used in
  548. constructing the search tuple, it is classified as OPT_SCROLL_COND.
  549. When the cursor is positioned, and if a non-scroll cursor is used,
  550. there is no need to test this condition; if a scroll cursor is used
  551. the testing is necessary when the cursor is reversed. */
  552. if ((n_fields > plan->n_exact_match)
  553.      && opt_is_arg(plan->tuple_exps[n_fields - 1], cond)) {
  554.      return(OPT_SCROLL_COND);
  555. }
  556. /* If the condition is a non-exact match condition on the first field
  557. in index for which there is no exact match, and it limits the search
  558. range from the opposite side of the search tuple already BEFORE we
  559. access the table, it is classified as OPT_END_COND */
  560. if ((dict_index_get_n_fields(plan->index) > plan->n_exact_match)
  561.     && opt_look_for_col_in_comparison_before(
  562. OPT_COMPARISON,
  563.      dict_index_get_nth_col_no(plan->index,
  564.      plan->n_exact_match),
  565.      cond, sel_node, i, &op)) {
  566.     
  567. if (sel_node->asc && ((op == '<') || (op == PARS_LE_TOKEN))) {
  568. return(OPT_END_COND);
  569. }
  570. if (!sel_node->asc && ((op == '>') || (op == PARS_GE_TOKEN))) {
  571. return(OPT_END_COND);
  572. }
  573. }
  574. /* Otherwise, cond is classified as OPT_TEST_COND */
  575. return(OPT_TEST_COND);
  576. }
  577. /***********************************************************************
  578. Recursively looks for test conditions for a table in a join. */
  579. static
  580. void
  581. opt_find_test_conds(
  582. /*================*/
  583. sel_node_t* sel_node, /* in: select node */
  584. ulint i, /* in: ith table in the join */
  585. func_node_t* cond) /* in: conjunction of search
  586. conditions or NULL */
  587. {
  588. func_node_t* new_cond;
  589. ulint class;
  590. plan_t* plan;
  591. if (cond == NULL) {
  592. return;
  593. }
  594. if (cond->func == PARS_AND_TOKEN) {
  595. new_cond = cond->args;
  596. opt_find_test_conds(sel_node, i, new_cond);
  597. new_cond = que_node_get_next(new_cond);
  598. opt_find_test_conds(sel_node, i, new_cond);
  599. return;
  600. }
  601. plan = sel_node_get_nth_plan(sel_node, i);
  602. class = opt_classify_comparison(sel_node, i, cond);
  603. if (class == OPT_END_COND) {
  604. UT_LIST_ADD_LAST(cond_list, plan->end_conds, cond);
  605. } else if (class == OPT_TEST_COND) {
  606. UT_LIST_ADD_LAST(cond_list, plan->other_conds, cond);
  607. }
  608. }
  609. /***********************************************************************
  610. Normalizes a list of comparison conditions so that a column of the table
  611. appears on the left side of the comparison if possible. This is accomplished
  612. by switching the arguments of the operator. */
  613. static
  614. void
  615. opt_normalize_cmp_conds(
  616. /*====================*/
  617. func_node_t* cond, /* in: first in a list of comparison
  618. conditions, or NULL */
  619. dict_table_t* table) /* in: table */
  620. {
  621. que_node_t* arg1;
  622. que_node_t* arg2;
  623. sym_node_t* sym_node;
  624. while (cond) {
  625. arg1 = cond->args;
  626. arg2 = que_node_get_next(arg1);
  627. if (que_node_get_type(arg2) == QUE_NODE_SYMBOL) {
  628. sym_node = arg2;
  629. if ((sym_node->token_type == SYM_COLUMN)
  630. && (sym_node->table == table)) {
  631. /* Switch the order of the arguments */
  632. cond->args = arg2;
  633. que_node_list_add_last(NULL, arg2);
  634. que_node_list_add_last(arg2, arg1);
  635. /* Invert the operator */
  636. cond->func = opt_invert_cmp_op(cond->func);
  637. }
  638. }
  639. cond = UT_LIST_GET_NEXT(cond_list, cond);
  640. }
  641. }
  642. /***********************************************************************
  643. Finds out the search condition conjuncts we can, and need, to test as the ith
  644. table in a join is accessed. The search tuple can eliminate the need to test
  645. some conjuncts. */
  646. static
  647. void
  648. opt_determine_and_normalize_test_conds(
  649. /*===================================*/
  650. sel_node_t* sel_node, /* in: select node */
  651. ulint i) /* in: ith table in the join */
  652. {
  653. plan_t* plan;
  654. plan = sel_node_get_nth_plan(sel_node, i);
  655. UT_LIST_INIT(plan->end_conds);
  656. UT_LIST_INIT(plan->other_conds);
  657. /* Recursively go through the conjuncts and classify them */
  658. opt_find_test_conds(sel_node, i, sel_node->search_cond);
  659. opt_normalize_cmp_conds(UT_LIST_GET_FIRST(plan->end_conds),
  660. plan->table);
  661. ut_a(UT_LIST_GET_LEN(plan->end_conds) >= plan->n_exact_match);
  662. }
  663. /***********************************************************************
  664. Looks for occurrences of the columns of the table in the query subgraph and
  665. adds them to the list of columns if an occurrence of the same column does not
  666. already exist in the list. If the column is already in the list, puts a value
  667. indirection to point to the occurrence in the column list, except if the
  668. column occurrence we are looking at is in the column list, in which case
  669. nothing is done. */
  670. void
  671. opt_find_all_cols(
  672. /*==============*/
  673. ibool copy_val, /* in: if TRUE, new found columns are
  674. added as columns to copy */
  675. dict_index_t* index, /* in: index of the table to use */
  676. sym_node_list_t* col_list, /* in: base node of a list where
  677. to add new found columns */
  678. plan_t* plan, /* in: plan or NULL */
  679. que_node_t* exp) /* in: expression or condition or
  680. NULL */
  681. {
  682. func_node_t* func_node;
  683. que_node_t* arg;
  684. sym_node_t* sym_node;
  685. sym_node_t* col_node;
  686. ulint col_pos;
  687. if (exp == NULL) {
  688. return;
  689. }
  690. if (que_node_get_type(exp) == QUE_NODE_FUNC) {
  691. func_node = exp;
  692. arg = func_node->args;
  693. while (arg) {
  694. opt_find_all_cols(copy_val, index, col_list, plan,
  695. arg);
  696. arg = que_node_get_next(arg);
  697. }
  698. return;
  699. }
  700. ut_a(que_node_get_type(exp) == QUE_NODE_SYMBOL);
  701. sym_node = exp;
  702. if (sym_node->token_type != SYM_COLUMN) {
  703. return;
  704. }
  705. if (sym_node->table != index->table) {
  706. return;
  707. }
  708. /* Look for an occurrence of the same column in the plan column
  709. list */
  710. col_node = UT_LIST_GET_FIRST(*col_list);
  711. while (col_node) {
  712. if (col_node->col_no == sym_node->col_no) {
  713. if (col_node == sym_node) {
  714. /* sym_node was already in a list: do
  715. nothing */
  716. return;
  717. }
  718. /* Put an indirection */
  719. sym_node->indirection = col_node;
  720. sym_node->alias = col_node;
  721. return;
  722. }
  723. col_node = UT_LIST_GET_NEXT(col_var_list, col_node);
  724. }
  725. /* The same column did not occur in the list: add it */
  726. UT_LIST_ADD_LAST(col_var_list, *col_list, sym_node);
  727. sym_node->copy_val = copy_val;
  728. /* Fill in the field_no fields in sym_node */
  729. sym_node->field_nos[SYM_CLUST_FIELD_NO]
  730. = dict_index_get_nth_col_pos(
  731. dict_table_get_first_index(index->table),
  732. sym_node->col_no);
  733. if (!(index->type & DICT_CLUSTERED)) {
  734. ut_a(plan);
  735. col_pos = dict_index_get_nth_col_pos(index, sym_node->col_no);
  736. if (col_pos == ULINT_UNDEFINED) {
  737. plan->must_get_clust = TRUE;
  738. }
  739. sym_node->field_nos[SYM_SEC_FIELD_NO] = col_pos;
  740. }
  741. }
  742. /***********************************************************************
  743. Looks for occurrences of the columns of the table in conditions which are
  744. not yet determined AFTER the join operation has fetched a row in the ith
  745. table. The values for these column must be copied to dynamic memory for
  746. later use. */
  747. static
  748. void
  749. opt_find_copy_cols(
  750. /*===============*/
  751. sel_node_t* sel_node, /* in: select node */
  752. ulint i, /* in: ith table in the join */
  753. func_node_t* search_cond) /* in: search condition or NULL */
  754. {
  755. func_node_t* new_cond;
  756. plan_t* plan;
  757. if (search_cond == NULL) {
  758. return;
  759. }
  760. ut_ad(que_node_get_type(search_cond) == QUE_NODE_FUNC);
  761. if (search_cond->func == PARS_AND_TOKEN) {
  762. new_cond = search_cond->args;
  763. opt_find_copy_cols(sel_node, i, new_cond);
  764. new_cond = que_node_get_next(new_cond);
  765. opt_find_copy_cols(sel_node, i, new_cond);
  766. return;
  767. }
  768. if (!opt_check_exp_determined_before(search_cond, sel_node, i + 1)) {
  769. /* Any ith table columns occurring in search_cond should be
  770. copied, as this condition cannot be tested already on the
  771. fetch from the ith table */
  772. plan = sel_node_get_nth_plan(sel_node, i);
  773. opt_find_all_cols(TRUE, plan->index, &(plan->columns), plan,
  774. search_cond);
  775. }
  776. }
  777. /***********************************************************************
  778. Classifies the table columns according to whether we use the column only while
  779. holding the latch on the page, or whether we have to copy the column value to
  780. dynamic memory. Puts the first occurrence of a column to either list in the
  781. plan node, and puts indirections to later occurrences of the column. */
  782. static
  783. void
  784. opt_classify_cols(
  785. /*==============*/
  786. sel_node_t* sel_node, /* in: select node */
  787. ulint i) /* in: ith table in the join */
  788. {
  789. plan_t* plan;
  790. que_node_t* exp;
  791. plan = sel_node_get_nth_plan(sel_node, i);
  792. /* The final value of the following field will depend on the
  793. environment of the select statement: */
  794. plan->must_get_clust = FALSE;
  795. UT_LIST_INIT(plan->columns);
  796. /* All select list columns should be copied: therefore TRUE as the
  797. first argument */
  798. exp = sel_node->select_list;
  799. while (exp) {
  800. opt_find_all_cols(TRUE, plan->index, &(plan->columns), plan,
  801. exp);
  802. exp = que_node_get_next(exp);
  803. }
  804. opt_find_copy_cols(sel_node, i, sel_node->search_cond);
  805. /* All remaining columns in the search condition are temporary
  806. columns: therefore FALSE */
  807. opt_find_all_cols(FALSE, plan->index, &(plan->columns), plan,
  808. sel_node->search_cond);
  809. }
  810. /***********************************************************************
  811. Fills in the info in plan which is used in accessing a clustered index
  812. record. The columns must already be classified for the plan node. */
  813. static
  814. void
  815. opt_clust_access(
  816. /*=============*/
  817. sel_node_t* sel_node, /* in: select node */
  818. ulint n) /* in: nth table in select */
  819. {
  820. plan_t* plan;
  821. dict_table_t* table;
  822. dict_index_t* clust_index;
  823. dict_index_t* index;
  824. dfield_t* dfield;
  825. mem_heap_t* heap;
  826. ulint n_fields;
  827. ulint pos;
  828. ulint i;
  829. plan = sel_node_get_nth_plan(sel_node, n);
  830. index = plan->index;
  831. /* The final value of the following field depends on the environment
  832. of the select statement: */
  833. plan->no_prefetch = FALSE;
  834. if (index->type & DICT_CLUSTERED) {
  835. plan->clust_map = NULL;
  836. plan->clust_ref = NULL;
  837. return;
  838. }
  839. table = index->table;
  840. clust_index = dict_table_get_first_index(table);
  841. n_fields = dict_index_get_n_unique(clust_index);
  842. heap = pars_sym_tab_global->heap;
  843. plan->clust_ref = dtuple_create(heap, n_fields);
  844. dict_index_copy_types(plan->clust_ref, clust_index, n_fields);
  845. plan->clust_map = mem_heap_alloc(heap, n_fields * sizeof(ulint));
  846. for (i = 0; i < n_fields; i++) {
  847. pos = dict_index_get_nth_field_pos(index, clust_index, i);
  848. ut_a(pos != ULINT_UNDEFINED);
  849. /* We optimize here only queries to InnoDB's internal system
  850. tables, and they should not contain column prefix indexes. */
  851. if (dict_index_get_nth_field(index, pos)->prefix_len != 0
  852.     || dict_index_get_nth_field(clust_index, i)
  853. ->prefix_len != 0) {
  854. fprintf(stderr,
  855. "InnoDB: Error in pars0opt.c: table %s has prefix_len != 0n",
  856. index->table_name);
  857. }
  858. *(plan->clust_map + i) = pos;
  859. ut_ad((pos != ULINT_UNDEFINED)
  860. || ((table->type == DICT_TABLE_CLUSTER_MEMBER)
  861.   && (i == table->mix_len)));
  862. }
  863. if (table->type == DICT_TABLE_CLUSTER_MEMBER) {
  864. /* Preset the mix id field to the mix id constant */
  865. dfield = dtuple_get_nth_field(plan->clust_ref, table->mix_len);
  866. dfield_set_data(dfield, mem_heap_alloc(heap,
  867. table->mix_id_len),
  868. table->mix_id_len);
  869. ut_memcpy(dfield_get_data(dfield), table->mix_id_buf,
  870. table->mix_id_len);
  871. }
  872. }
  873. /***********************************************************************
  874. Optimizes a select. Decides which indexes to tables to use. The tables
  875. are accessed in the order that they were written to the FROM part in the
  876. select statement. */
  877. void
  878. opt_search_plan(
  879. /*============*/
  880. sel_node_t* sel_node) /* in: parsed select node */
  881. {
  882. sym_node_t* table_node;
  883. dict_table_t* table;
  884. order_node_t* order_by;
  885. ulint i;
  886. sel_node->plans = mem_heap_alloc(pars_sym_tab_global->heap,
  887. sel_node->n_tables * sizeof(plan_t));
  888. /* Analyze the search condition to find out what we know at each
  889. join stage about the conditions that the columns of a table should
  890. satisfy */
  891. table_node = sel_node->table_list;
  892. if (sel_node->order_by == NULL) {
  893. sel_node->asc = TRUE;
  894. } else {
  895. order_by = sel_node->order_by;
  896. sel_node->asc = order_by->asc;
  897. }
  898. for (i = 0; i < sel_node->n_tables; i++) {
  899. table = table_node->table;
  900. /* Choose index through which to access the table */
  901. opt_search_plan_for_table(sel_node, i, table);
  902. /* Determine the search condition conjuncts we can test at
  903. this table; normalize the end conditions */
  904. opt_determine_and_normalize_test_conds(sel_node, i);
  905. table_node = que_node_get_next(table_node);
  906. }
  907. table_node = sel_node->table_list;
  908. for (i = 0; i < sel_node->n_tables; i++) {
  909. /* Classify the table columns into those we only need to access
  910. but not copy, and to those we must copy to dynamic memory */
  911. opt_classify_cols(sel_node, i);
  912. /* Calculate possible info for accessing the clustered index
  913. record */
  914. opt_clust_access(sel_node, i);
  915. table_node = que_node_get_next(table_node);
  916. }
  917. /* Check that the plan obeys a possible order-by clause: if not,
  918. an assertion error occurs */
  919. opt_check_order_by(sel_node);
  920. #ifdef UNIV_SQL_DEBUG
  921. opt_print_query_plan(sel_node);
  922. #endif
  923. }
  924. /************************************************************************
  925. Prints info of a query plan. */
  926. void
  927. opt_print_query_plan(
  928. /*=================*/
  929. sel_node_t* sel_node) /* in: select node */
  930. {
  931. plan_t* plan;
  932. ulint n_fields;
  933. ulint i;
  934. fputs("QUERY PLAN FOR A SELECT NODEn", stderr);
  935. fputs(sel_node->asc ? "Asc. search; " : "Desc. search; ", stderr);
  936. if (sel_node->set_x_locks) {
  937. fputs("sets row x-locks; ", stderr);
  938. ut_a(sel_node->row_lock_mode == LOCK_X);
  939. ut_a(!sel_node->consistent_read);
  940. } else if (sel_node->consistent_read) {
  941. fputs("consistent read; ", stderr);
  942. } else {
  943. ut_a(sel_node->row_lock_mode == LOCK_S);
  944. fputs("sets row s-locks; ", stderr);
  945. }
  946. putc('n', stderr);
  947. for (i = 0; i < sel_node->n_tables; i++) {
  948. plan = sel_node_get_nth_plan(sel_node, i);
  949. if (plan->tuple) {
  950. n_fields = dtuple_get_n_fields(plan->tuple);
  951. } else {
  952. n_fields = 0;
  953. }
  954. fputs("Table ", stderr);
  955. dict_index_name_print(stderr, NULL, plan->index);
  956. fprintf(stderr,"; exact m. %lu, match %lu, end conds %lun",
  957.         (unsigned long) plan->n_exact_match,
  958.         (unsigned long) n_fields,
  959. (unsigned long) UT_LIST_GET_LEN(plan->end_conds));
  960. }
  961. }