pars0opt.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:30k
源码类别:

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. if (index->type & DICT_CLUSTERED) {
  296. goodness++;
  297. }
  298. return(goodness);
  299. }
  300. /***********************************************************************
  301. Calculates the number of matched fields based on an index goodness. */
  302. UNIV_INLINE
  303. ulint
  304. opt_calc_n_fields_from_goodness(
  305. /*============================*/
  306. /* out: number of excatly or partially matched
  307. fields */
  308. ulint goodness) /* in: goodness */
  309. {
  310. return(((goodness % 1024) + 2) / 4);
  311. }
  312. /***********************************************************************
  313. Converts a comparison operator to the corresponding search mode PAGE_CUR_GE,
  314. ... */
  315. UNIV_INLINE
  316. ulint
  317. opt_op_to_search_mode(
  318. /*==================*/
  319. /* out: search mode */
  320. ibool asc, /* in: TRUE if the rows should be fetched in an
  321. ascending order */
  322. ulint op) /* in: operator '=', PARS_GE_TOKEN, ... */
  323. {
  324. if (op == '=') {
  325. if (asc) {
  326. return(PAGE_CUR_GE);
  327. } else {
  328. return(PAGE_CUR_LE);
  329. }
  330. } else if (op == '<') {
  331. ut_a(!asc);
  332. return(PAGE_CUR_L);
  333. } else if (op == '>') {
  334. ut_a(asc);
  335. return(PAGE_CUR_G);
  336. } else if (op == PARS_GE_TOKEN) {
  337. ut_a(asc);
  338. return(PAGE_CUR_GE);
  339. } else if (op == PARS_LE_TOKEN) {
  340. ut_a(!asc);
  341. return(PAGE_CUR_LE);
  342. } else {
  343. ut_error;
  344. }
  345. return(0);
  346. }
  347. /***********************************************************************
  348. Determines if a node is an argument node of a function node. */
  349. static
  350. ibool
  351. opt_is_arg(
  352. /*=======*/
  353. /* out: TRUE if is an argument */
  354. que_node_t* arg_node, /* in: possible argument node */
  355. func_node_t* func_node) /* in: function node */
  356. {
  357. que_node_t* arg;
  358. arg = func_node->args;
  359. while (arg) {
  360. if (arg == arg_node) {
  361. return(TRUE);
  362. }
  363. arg = que_node_get_next(arg);
  364. }
  365. return(FALSE);
  366. }
  367. /***********************************************************************
  368. Decides if the fetching of rows should be made in a descending order, and
  369. also checks that the chosen query plan produces a result which satisfies
  370. the order-by. */
  371. static
  372. void
  373. opt_check_order_by(
  374. /*===============*/
  375. sel_node_t* sel_node) /* in: select node; asserts an error
  376. if the plan does not agree with the
  377. order-by */
  378. {
  379. order_node_t* order_node;
  380. dict_table_t* order_table;
  381. ulint order_col_no;
  382. plan_t* plan;
  383. ulint i;
  384. if (!sel_node->order_by) {
  385. return;
  386. }
  387. order_node = sel_node->order_by;
  388. order_col_no = order_node->column->col_no;
  389. order_table = order_node->column->table;
  390. /* If there is an order-by clause, the first non-exactly matched field
  391. in the index used for the last table in the table list should be the
  392. column defined in the order-by clause, and for all the other tables
  393. we should get only at most a single row, otherwise we cannot presently
  394. calculate the order-by, as we have no sort utility */
  395. for (i = 0; i < sel_node->n_tables; i++) {
  396. plan = sel_node_get_nth_plan(sel_node, i);
  397. if (i < sel_node->n_tables - 1) {
  398. ut_a(dict_index_get_n_unique(plan->index)
  399. <= plan->n_exact_match);
  400. } else {
  401. ut_a(plan->table == order_table);
  402. ut_a((dict_index_get_n_unique(plan->index)
  403. <= plan->n_exact_match)
  404.      || (dict_index_get_nth_col_no(plan->index,
  405.       plan->n_exact_match)
  406.     == order_col_no));
  407. }
  408. }
  409. }
  410. /***********************************************************************
  411. Optimizes a select. Decides which indexes to tables to use. The tables
  412. are accessed in the order that they were written to the FROM part in the
  413. select statement. */
  414. static
  415. void
  416. opt_search_plan_for_table(
  417. /*======================*/
  418. sel_node_t* sel_node, /* in: parsed select node */
  419. ulint i, /* in: this is the ith table */
  420. dict_table_t* table) /* in: table */
  421. {
  422. plan_t* plan;
  423. dict_index_t* index;
  424. dict_index_t* best_index;
  425. ulint n_fields;
  426. ulint goodness;
  427. ulint last_op;
  428. ulint best_goodness;
  429. ulint best_last_op;
  430. ulint mix_id_pos;
  431. que_node_t* index_plan[128];
  432. que_node_t* best_index_plan[128];
  433. plan = sel_node_get_nth_plan(sel_node, i);
  434. plan->table = table;
  435. plan->asc = sel_node->asc;
  436. plan->pcur_is_open = FALSE;
  437. plan->cursor_at_end = FALSE;
  438. /* Calculate goodness for each index of the table */
  439. index = dict_table_get_first_index(table);
  440. best_goodness = 0;
  441. while (index) {
  442. goodness = opt_calc_index_goodness(index, sel_node, i,
  443. index_plan, &last_op);
  444. if (goodness > best_goodness) {
  445. best_index = index;
  446. best_goodness = goodness;
  447. n_fields = opt_calc_n_fields_from_goodness(goodness);
  448. ut_memcpy(best_index_plan, index_plan,
  449. n_fields * sizeof(void*));
  450. best_last_op = last_op;
  451. }
  452. index = dict_table_get_next_index(index);
  453. }
  454. plan->index = best_index;
  455. n_fields = opt_calc_n_fields_from_goodness(best_goodness);
  456. if (n_fields == 0) {
  457. plan->tuple = NULL;
  458. plan->n_exact_match = 0;
  459. } else {
  460. plan->tuple = dtuple_create(pars_sym_tab_global->heap,
  461. n_fields);
  462. dict_index_copy_types(plan->tuple, plan->index, n_fields);
  463. plan->tuple_exps = mem_heap_alloc(pars_sym_tab_global->heap,
  464. n_fields * sizeof(void*));
  465. ut_memcpy(plan->tuple_exps, best_index_plan,
  466.    n_fields * sizeof(void*));
  467. if (best_last_op == '=') {
  468. plan->n_exact_match = n_fields;
  469. } else {
  470. plan->n_exact_match = n_fields - 1;
  471. }
  472. plan->mode = opt_op_to_search_mode(sel_node->asc,
  473. best_last_op);
  474. }
  475. if ((best_index->type & DICT_CLUSTERED)
  476.     && (plan->n_exact_match >= dict_index_get_n_unique(best_index))) {
  477. plan->unique_search = TRUE;
  478. } else {
  479. plan->unique_search = FALSE;
  480. }
  481. if ((table->type != DICT_TABLE_ORDINARY)
  482.      && (best_index->type & DICT_CLUSTERED)) {
  483.      plan->mixed_index = TRUE;
  484.      mix_id_pos = table->mix_len;
  485.      if (mix_id_pos < n_fields) {
  486.      /* We have to add the mix id as a (string) literal
  487. expression to the tuple_exps */
  488. plan->tuple_exps[mix_id_pos] =
  489. sym_tab_add_str_lit(pars_sym_tab_global,
  490. table->mix_id_buf,
  491. table->mix_id_len);
  492.      }
  493. } else {
  494. plan->mixed_index = FALSE;
  495. }
  496. plan->old_vers_heap = NULL;
  497. btr_pcur_init(&(plan->pcur));
  498. btr_pcur_init(&(plan->clust_pcur));
  499. }
  500. /***********************************************************************
  501. Looks at a comparison condition and decides if it can, and need, be tested for
  502. a table AFTER the table has been accessed. */
  503. static
  504. ulint
  505. opt_classify_comparison(
  506. /*====================*/
  507. /* out: OPT_NOT_COND if not for this
  508. table, else OPT_END_COND,
  509. OPT_TEST_COND, or OPT_SCROLL_COND,
  510. where the last means that the
  511. condition need not be tested, except
  512. when scroll cursors are used */
  513. sel_node_t* sel_node, /* in: select node */
  514. ulint i, /* in: ith table in the join */
  515. func_node_t* cond) /* in: comparison condition */
  516. {
  517. plan_t* plan;
  518. ulint n_fields;
  519. ulint op;
  520. ulint j;
  521. ut_ad(cond && sel_node);
  522. plan = sel_node_get_nth_plan(sel_node, i);
  523. /* Check if the condition is determined after the ith table has been
  524. accessed, but not after the i - 1:th */
  525. if (!opt_check_exp_determined_before(cond, sel_node, i + 1)) {
  526. return(OPT_NOT_COND);
  527. }
  528. if ((i > 0) && opt_check_exp_determined_before(cond, sel_node, i)) {
  529. return(OPT_NOT_COND);
  530. }
  531. /* If the condition is an exact match condition used in constructing
  532. the search tuple, it is classified as OPT_END_COND */
  533. if (plan->tuple) {
  534. n_fields = dtuple_get_n_fields(plan->tuple);
  535. } else {
  536. n_fields = 0;
  537. }
  538. for (j = 0; j < plan->n_exact_match; j++) {
  539. if (opt_is_arg(plan->tuple_exps[j], cond)) {
  540. return(OPT_END_COND);
  541. }
  542. }
  543. /* If the condition is an non-exact match condition used in
  544. constructing the search tuple, it is classified as OPT_SCROLL_COND.
  545. When the cursor is positioned, and if a non-scroll cursor is used,
  546. there is no need to test this condition; if a scroll cursor is used
  547. the testing is necessary when the cursor is reversed. */
  548. if ((n_fields > plan->n_exact_match)
  549.      && opt_is_arg(plan->tuple_exps[n_fields - 1], cond)) {
  550.      return(OPT_SCROLL_COND);
  551. }
  552. /* If the condition is a non-exact match condition on the first field
  553. in index for which there is no exact match, and it limits the search
  554. range from the opposite side of the search tuple already BEFORE we
  555. access the table, it is classified as OPT_END_COND */
  556. if ((dict_index_get_n_fields(plan->index) > plan->n_exact_match)
  557.     && opt_look_for_col_in_comparison_before(
  558. OPT_COMPARISON,
  559.      dict_index_get_nth_col_no(plan->index,
  560.      plan->n_exact_match),
  561.      cond, sel_node, i, &op)) {
  562.     
  563. if (sel_node->asc && ((op == '<') || (op == PARS_LE_TOKEN))) {
  564. return(OPT_END_COND);
  565. }
  566. if (!sel_node->asc && ((op == '>') || (op == PARS_GE_TOKEN))) {
  567. return(OPT_END_COND);
  568. }
  569. }
  570. /* Otherwise, cond is classified as OPT_TEST_COND */
  571. return(OPT_TEST_COND);
  572. }
  573. /***********************************************************************
  574. Recursively looks for test conditions for a table in a join. */
  575. static
  576. void
  577. opt_find_test_conds(
  578. /*================*/
  579. sel_node_t* sel_node, /* in: select node */
  580. ulint i, /* in: ith table in the join */
  581. func_node_t* cond) /* in: conjunction of search
  582. conditions or NULL */
  583. {
  584. func_node_t* new_cond;
  585. ulint class;
  586. plan_t* plan;
  587. if (cond == NULL) {
  588. return;
  589. }
  590. if (cond->func == PARS_AND_TOKEN) {
  591. new_cond = cond->args;
  592. opt_find_test_conds(sel_node, i, new_cond);
  593. new_cond = que_node_get_next(new_cond);
  594. opt_find_test_conds(sel_node, i, new_cond);
  595. return;
  596. }
  597. plan = sel_node_get_nth_plan(sel_node, i);
  598. class = opt_classify_comparison(sel_node, i, cond);
  599. if (class == OPT_END_COND) {
  600. UT_LIST_ADD_LAST(cond_list, plan->end_conds, cond);
  601. } else if (class == OPT_TEST_COND) {
  602. UT_LIST_ADD_LAST(cond_list, plan->other_conds, cond);
  603. }
  604. }
  605. /***********************************************************************
  606. Normalizes a list of comparison conditions so that a column of the table
  607. appears on the left side of the comparison if possible. This is accomplished
  608. by switching the arguments of the operator. */
  609. static
  610. void
  611. opt_normalize_cmp_conds(
  612. /*====================*/
  613. func_node_t* cond, /* in: first in a list of comparison
  614. conditions, or NULL */
  615. dict_table_t* table) /* in: table */
  616. {
  617. que_node_t* arg1;
  618. que_node_t* arg2;
  619. sym_node_t* sym_node;
  620. while (cond) {
  621. arg1 = cond->args;
  622. arg2 = que_node_get_next(arg1);
  623. if (que_node_get_type(arg2) == QUE_NODE_SYMBOL) {
  624. sym_node = arg2;
  625. if ((sym_node->token_type == SYM_COLUMN)
  626. && (sym_node->table == table)) {
  627. /* Switch the order of the arguments */
  628. cond->args = arg2;
  629. que_node_list_add_last(NULL, arg2);
  630. que_node_list_add_last(arg2, arg1);
  631. /* Invert the operator */
  632. cond->func = opt_invert_cmp_op(cond->func);
  633. }
  634. }
  635. cond = UT_LIST_GET_NEXT(cond_list, cond);
  636. }
  637. }
  638. /***********************************************************************
  639. Finds out the search condition conjuncts we can, and need, to test as the ith
  640. table in a join is accessed. The search tuple can eliminate the need to test
  641. some conjuncts. */
  642. static
  643. void
  644. opt_determine_and_normalize_test_conds(
  645. /*===================================*/
  646. sel_node_t* sel_node, /* in: select node */
  647. ulint i) /* in: ith table in the join */
  648. {
  649. plan_t* plan;
  650. plan = sel_node_get_nth_plan(sel_node, i);
  651. UT_LIST_INIT(plan->end_conds);
  652. UT_LIST_INIT(plan->other_conds);
  653. /* Recursively go through the conjuncts and classify them */
  654. opt_find_test_conds(sel_node, i, sel_node->search_cond);
  655. opt_normalize_cmp_conds(UT_LIST_GET_FIRST(plan->end_conds),
  656. plan->table);
  657. ut_a(UT_LIST_GET_LEN(plan->end_conds) >= plan->n_exact_match);
  658. }
  659. /***********************************************************************
  660. Looks for occurrences of the columns of the table in the query subgraph and
  661. adds them to the list of columns if an occurrence of the same column does not
  662. already exist in the list. If the column is already in the list, puts a value
  663. indirection to point to the occurrence in the column list, except if the
  664. column occurrence we are looking at is in the column list, in which case
  665. nothing is done. */
  666. void
  667. opt_find_all_cols(
  668. /*==============*/
  669. ibool copy_val, /* in: if TRUE, new found columns are
  670. added as columns to copy */
  671. dict_index_t* index, /* in: index of the table to use */
  672. sym_node_list_t* col_list, /* in: base node of a list where
  673. to add new found columns */
  674. plan_t* plan, /* in: plan or NULL */
  675. que_node_t* exp) /* in: expression or condition or
  676. NULL */
  677. {
  678. func_node_t* func_node;
  679. que_node_t* arg;
  680. sym_node_t* sym_node;
  681. sym_node_t* col_node;
  682. ulint col_pos;
  683. if (exp == NULL) {
  684. return;
  685. }
  686. if (que_node_get_type(exp) == QUE_NODE_FUNC) {
  687. func_node = exp;
  688. arg = func_node->args;
  689. while (arg) {
  690. opt_find_all_cols(copy_val, index, col_list, plan,
  691. arg);
  692. arg = que_node_get_next(arg);
  693. }
  694. return;
  695. }
  696. ut_a(que_node_get_type(exp) == QUE_NODE_SYMBOL);
  697. sym_node = exp;
  698. if (sym_node->token_type != SYM_COLUMN) {
  699. return;
  700. }
  701. if (sym_node->table != index->table) {
  702. return;
  703. }
  704. /* Look for an occurrence of the same column in the plan column
  705. list */
  706. col_node = UT_LIST_GET_FIRST(*col_list);
  707. while (col_node) {
  708. if (col_node->col_no == sym_node->col_no) {
  709. if (col_node == sym_node) {
  710. /* sym_node was already in a list: do
  711. nothing */
  712. return;
  713. }
  714. /* Put an indirection */
  715. sym_node->indirection = col_node;
  716. sym_node->alias = col_node;
  717. return;
  718. }
  719. col_node = UT_LIST_GET_NEXT(col_var_list, col_node);
  720. }
  721. /* The same column did not occur in the list: add it */
  722. UT_LIST_ADD_LAST(col_var_list, *col_list, sym_node);
  723. sym_node->copy_val = copy_val;
  724. /* Fill in the field_no fields in sym_node */
  725. sym_node->field_nos[SYM_CLUST_FIELD_NO]
  726. = dict_index_get_nth_col_pos(
  727. dict_table_get_first_index(index->table),
  728. sym_node->col_no);
  729. if (!(index->type & DICT_CLUSTERED)) {
  730. ut_a(plan);
  731. col_pos = dict_index_get_nth_col_pos(index, sym_node->col_no);
  732. if (col_pos == ULINT_UNDEFINED) {
  733. plan->must_get_clust = TRUE;
  734. }
  735. sym_node->field_nos[SYM_SEC_FIELD_NO] = col_pos;
  736. }
  737. }
  738. /***********************************************************************
  739. Looks for occurrences of the columns of the table in conditions which are
  740. not yet determined AFTER the join operation has fetched a row in the ith
  741. table. The values for these column must be copied to dynamic memory for
  742. later use. */
  743. static
  744. void
  745. opt_find_copy_cols(
  746. /*===============*/
  747. sel_node_t* sel_node, /* in: select node */
  748. ulint i, /* in: ith table in the join */
  749. func_node_t* search_cond) /* in: search condition or NULL */
  750. {
  751. func_node_t* new_cond;
  752. plan_t* plan;
  753. if (search_cond == NULL) {
  754. return;
  755. }
  756. ut_ad(que_node_get_type(search_cond) == QUE_NODE_FUNC);
  757. if (search_cond->func == PARS_AND_TOKEN) {
  758. new_cond = search_cond->args;
  759. opt_find_copy_cols(sel_node, i, new_cond);
  760. new_cond = que_node_get_next(new_cond);
  761. opt_find_copy_cols(sel_node, i, new_cond);
  762. return;
  763. }
  764. if (!opt_check_exp_determined_before(search_cond, sel_node, i + 1)) {
  765. /* Any ith table columns occurring in search_cond should be
  766. copied, as this condition cannot be tested already on the
  767. fetch from the ith table */
  768. plan = sel_node_get_nth_plan(sel_node, i);
  769. opt_find_all_cols(TRUE, plan->index, &(plan->columns), plan,
  770. search_cond);
  771. }
  772. }
  773. /***********************************************************************
  774. Classifies the table columns according to whether we use the column only while
  775. holding the latch on the page, or whether we have to copy the column value to
  776. dynamic memory. Puts the first occurrence of a column to either list in the
  777. plan node, and puts indirections to later occurrences of the column. */
  778. static
  779. void
  780. opt_classify_cols(
  781. /*==============*/
  782. sel_node_t* sel_node, /* in: select node */
  783. ulint i) /* in: ith table in the join */
  784. {
  785. plan_t* plan;
  786. que_node_t* exp;
  787. plan = sel_node_get_nth_plan(sel_node, i);
  788. /* The final value of the following field will depend on the
  789. environment of the select statement: */
  790. plan->must_get_clust = FALSE;
  791. UT_LIST_INIT(plan->columns);
  792. /* All select list columns should be copied: therefore TRUE as the
  793. first argument */
  794. exp = sel_node->select_list;
  795. while (exp) {
  796. opt_find_all_cols(TRUE, plan->index, &(plan->columns), plan,
  797. exp);
  798. exp = que_node_get_next(exp);
  799. }
  800. opt_find_copy_cols(sel_node, i, sel_node->search_cond);
  801. /* All remaining columns in the search condition are temporary
  802. columns: therefore FALSE */
  803. opt_find_all_cols(FALSE, plan->index, &(plan->columns), plan,
  804. sel_node->search_cond);
  805. }
  806. /***********************************************************************
  807. Fills in the info in plan which is used in accessing a clustered index
  808. record. The columns must already be classified for the plan node. */
  809. static
  810. void
  811. opt_clust_access(
  812. /*=============*/
  813. sel_node_t* sel_node, /* in: select node */
  814. ulint n) /* in: nth table in select */
  815. {
  816. plan_t* plan;
  817. dict_table_t* table;
  818. dict_index_t* clust_index;
  819. dict_index_t* index;
  820. dfield_t* dfield;
  821. mem_heap_t* heap;
  822. ulint n_fields;
  823. ulint col_no;
  824. ulint pos;
  825. ulint i;
  826. plan = sel_node_get_nth_plan(sel_node, n);
  827. index = plan->index;
  828. /* The final value of the following field depends on the environment
  829. of the select statement: */
  830. plan->no_prefetch = FALSE;
  831. if (index->type & DICT_CLUSTERED) {
  832. plan->clust_map = NULL;
  833. plan->clust_ref = NULL;
  834. return;
  835. }
  836. table = index->table;
  837. clust_index = dict_table_get_first_index(table);
  838. n_fields = dict_index_get_n_unique(clust_index);
  839. heap = pars_sym_tab_global->heap;
  840. plan->clust_ref = dtuple_create(heap, n_fields);
  841. dict_index_copy_types(plan->clust_ref, clust_index, n_fields);
  842. plan->clust_map = mem_heap_alloc(heap, n_fields * sizeof(ulint));
  843. for (i = 0; i < n_fields; i++) {
  844. col_no = dict_index_get_nth_col_no(clust_index, i);
  845. pos = dict_index_get_nth_col_pos(index, col_no);
  846. *(plan->clust_map + i) = pos;
  847. ut_ad((pos != ULINT_UNDEFINED)
  848. || ((table->type == DICT_TABLE_CLUSTER_MEMBER)
  849.   && (i == table->mix_len)));
  850. }
  851. if (table->type == DICT_TABLE_CLUSTER_MEMBER) {
  852. /* Preset the mix id field to the mix id constant */
  853. dfield = dtuple_get_nth_field(plan->clust_ref, table->mix_len);
  854. dfield_set_data(dfield, mem_heap_alloc(heap, table->mix_id_len),
  855. table->mix_id_len);
  856. ut_memcpy(dfield_get_data(dfield), table->mix_id_buf,
  857. table->mix_id_len);
  858. }
  859. }
  860. /***********************************************************************
  861. Optimizes a select. Decides which indexes to tables to use. The tables
  862. are accessed in the order that they were written to the FROM part in the
  863. select statement. */
  864. void
  865. opt_search_plan(
  866. /*============*/
  867. sel_node_t* sel_node) /* in: parsed select node */
  868. {
  869. sym_node_t* table_node;
  870. dict_table_t* table;
  871. order_node_t* order_by;
  872. ulint i;
  873. sel_node->plans = mem_heap_alloc(pars_sym_tab_global->heap,
  874. sel_node->n_tables * sizeof(plan_t));
  875. /* Analyze the search condition to find out what we know at each
  876. join stage about the conditions that the columns of a table should
  877. satisfy */
  878. table_node = sel_node->table_list;
  879. if (sel_node->order_by == NULL) {
  880. sel_node->asc = TRUE;
  881. } else {
  882. order_by = sel_node->order_by;
  883. sel_node->asc = order_by->asc;
  884. }
  885. for (i = 0; i < sel_node->n_tables; i++) {
  886. table = table_node->table;
  887. /* Choose index through which to access the table */
  888. opt_search_plan_for_table(sel_node, i, table);
  889. /* Determine the search condition conjuncts we can test at
  890. this table; normalize the end conditions */
  891. opt_determine_and_normalize_test_conds(sel_node, i);
  892. table_node = que_node_get_next(table_node);
  893. }
  894. table_node = sel_node->table_list;
  895. for (i = 0; i < sel_node->n_tables; i++) {
  896. /* Classify the table columns into those we only need to access
  897. but not copy, and to those we must copy to dynamic memory */
  898. opt_classify_cols(sel_node, i);
  899. /* Calculate possible info for accessing the clustered index
  900. record */
  901. opt_clust_access(sel_node, i);
  902. table_node = que_node_get_next(table_node);
  903. }
  904. /* Check that the plan obeys a possible order-by clause: if not,
  905. an assertion error occurs */
  906. opt_check_order_by(sel_node);
  907. #ifdef UNIV_SQL_DEBUG
  908. opt_print_query_plan(sel_node);
  909. #endif
  910. }
  911. /************************************************************************
  912. Prints info of a query plan. */
  913. void
  914. opt_print_query_plan(
  915. /*=================*/
  916. sel_node_t* sel_node) /* in: select node */
  917. {
  918. plan_t* plan;
  919. ulint n_fields;
  920. ulint i;
  921. printf("QUERY PLAN FOR A SELECT NODEn");
  922. if (sel_node->asc) {
  923. printf("Asc. search; ");
  924. } else {
  925. printf("Desc. search; ");
  926. }
  927. if (sel_node->set_x_locks) {
  928. printf("sets row x-locks; ");
  929. ut_a(sel_node->row_lock_mode == LOCK_X);
  930. ut_a(!sel_node->consistent_read);
  931. } else if (sel_node->consistent_read) {
  932. printf("consistent read; ");
  933. } else {
  934. ut_a(sel_node->row_lock_mode == LOCK_S);
  935. printf("sets row s-locks; ");
  936. }
  937. printf("n");
  938. for (i = 0; i < sel_node->n_tables; i++) {
  939. plan = sel_node_get_nth_plan(sel_node, i);
  940. if (plan->tuple) {
  941. n_fields = dtuple_get_n_fields(plan->tuple);
  942. } else {
  943. n_fields = 0;
  944. }
  945. printf(
  946. "Table %s index %s; exact m. %lu, match %lu, end conds %lun",
  947. plan->table->name, plan->index->name,
  948. plan->n_exact_match, n_fields,
  949. UT_LIST_GET_LEN(plan->end_conds));
  950. }
  951. }