~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
212
212
  bool res= false;
213
213
  bool direct_ref= false;
214
214
 
215
 
  List<Item_outer_ref>::iterator ref_it(select->inner_refs_list);
 
215
  List<Item_outer_ref>::iterator ref_it(select->inner_refs_list.begin());
216
216
  while ((ref= ref_it++))
217
217
  {
218
218
    Item *item= ref->outer_ref;
219
219
    Item **item_ref= ref->ref;
220
220
    Item_ref *new_ref;
221
221
    /*
222
 
      TODO: this field item already might be present in the select list.
 
222
      @todo this field item already might be present in the select list.
223
223
      In this case instead of adding new field item we could use an
224
224
      existing one. The change will lead to less operations for copying fields,
225
225
      smaller temporary tables and less data passed through filesort.
618
618
 
619
619
  /* Process ON conditions for the nested joins */
620
620
  {
621
 
    List<TableList>::iterator li(*join_tab->join->join_list);
 
621
    List<TableList>::iterator li(join_tab->join->join_list->begin());
622
622
    TableList *table;
623
623
    while ((table= li++))
624
624
    {
752
752
void add_group_and_distinct_keys(Join *join, JoinTable *join_tab)
753
753
{
754
754
  List<Item_field> indexed_fields;
755
 
  List<Item_field>::iterator indexed_fields_it(indexed_fields);
 
755
  List<Item_field>::iterator indexed_fields_it(indexed_fields.begin());
756
756
  Order      *cur_group;
757
757
  Item_field *cur_item;
758
758
  key_map possible_keys(0);
766
766
  else if (join->select_distinct)
767
767
  { /* Collect all query fields referenced in the SELECT clause. */
768
768
    List<Item> &select_items= join->fields_list;
769
 
    List<Item>::iterator select_items_it(select_items);
 
769
    List<Item>::iterator select_items_it(select_items.begin());
770
770
    Item *item;
771
771
    while ((item= select_items_it++))
772
772
      item->walk(&Item::collect_item_field_processor, 0,
1352
1352
  bool in_upper_level= false;
1353
1353
  while (cond_equal)
1354
1354
  {
1355
 
    List<Item_equal>::iterator li(cond_equal->current_level);
 
1355
    List<Item_equal>::iterator li(cond_equal->current_level.begin());
1356
1356
    while ((item= li++))
1357
1357
    {
1358
1358
      if (item->contains(field))
1517
1517
        /* Merge two multiple equalities forming a new one */
1518
1518
        left_item_equal->merge(right_item_equal);
1519
1519
        /* Remove the merged multiple equality from the list */
1520
 
        List<Item_equal>::iterator li(cond_equal->current_level);
 
1520
        List<Item_equal>::iterator li(cond_equal->current_level.begin());
1521
1521
        while ((li++) != right_item_equal) {};
1522
1522
        li.remove();
1523
1523
      }
1806
1806
      Item_func::COND_AND_FUNC;
1807
1807
    List<Item> *args= ((Item_cond*) cond)->argument_list();
1808
1808
 
1809
 
    List<Item>::iterator li(*args);
 
1809
    List<Item>::iterator li(args->begin());
1810
1810
    Item *item;
1811
1811
 
1812
1812
    if (and_level)
1828
1828
          li.remove();
1829
1829
      }
1830
1830
 
1831
 
      List<Item_equal>::iterator it(cond_equal.current_level);
 
1831
      List<Item_equal>::iterator it(cond_equal.current_level.begin());
1832
1832
      while ((item_equal= it++))
1833
1833
      {
1834
1834
        item_equal->fix_length_and_dec();
1905
1905
        Item_cond_and *and_cond= new Item_cond_and(eq_list);
1906
1906
        and_cond->quick_fix_field();
1907
1907
        List<Item> *args= and_cond->argument_list();
1908
 
        List<Item_equal>::iterator it(cond_equal.current_level);
 
1908
        List<Item_equal>::iterator it(cond_equal.current_level.begin());
1909
1909
        while ((item_equal= it++))
1910
1910
        {
1911
1911
          item_equal->fix_length_and_dec();
2031
2031
  if (join_list)
2032
2032
  {
2033
2033
    TableList *table;
2034
 
    List<TableList>::iterator li(*join_list);
 
2034
    List<TableList>::iterator li(join_list->begin());
2035
2035
 
2036
2036
    while ((table= li++))
2037
2037
    {
2246
2246
      cond_equal= &((Item_cond_and *) cond)->cond_equal;
2247
2247
      cond_list->disjoin((List<Item> *) &cond_equal->current_level);
2248
2248
 
2249
 
      List<Item_equal>::iterator it(cond_equal->current_level);
 
2249
      List<Item_equal>::iterator it(cond_equal->current_level.begin());
2250
2250
      while ((item_equal= it++))
2251
2251
      {
2252
2252
        item_equal->sort(&compare_fields_by_table_order, table_join_idx);
2253
2253
      }
2254
2254
    }
2255
2255
 
2256
 
    List<Item>::iterator li(*cond_list);
 
2256
    List<Item>::iterator li(cond_list->begin());
2257
2257
    Item *item;
2258
2258
    while ((item= li++))
2259
2259
    {
2269
2269
 
2270
2270
    if (and_level)
2271
2271
    {
2272
 
      List<Item_equal>::iterator it(cond_equal->current_level);
 
2272
      List<Item_equal>::iterator it(cond_equal->current_level.begin());
2273
2273
      while ((item_equal= it++))
2274
2274
      {
2275
2275
        cond= eliminate_item_equal(cond, cond_equal->upper_levels, item_equal);
2319
2319
  if (cond->type() == Item::COND_ITEM)
2320
2320
  {
2321
2321
    List<Item> *cond_list= ((Item_cond*) cond)->argument_list();
2322
 
    List<Item>::iterator li(*cond_list);
 
2322
    List<Item>::iterator li(cond_list->begin());
2323
2323
    Item *item;
2324
2324
    while ((item= li++))
2325
2325
      update_const_equal_items(item, tab);
2377
2377
  if (cond->type() == Item::COND_ITEM)
2378
2378
  {
2379
2379
    bool and_level= ((Item_cond*) cond)->functype() == Item_func::COND_AND_FUNC;
2380
 
    List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
2380
    List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
2381
2381
    Item *item;
2382
2382
    while ((item=li++))
2383
2383
      change_cond_ref_to_const(session, save_list, and_level ? cond : item, item, field, value);
2457
2457
  if (conds->type() == Item::COND_ITEM)
2458
2458
  {
2459
2459
    Item_cond *cnd= (Item_cond*) conds;
2460
 
    List<Item>::iterator li(*(cnd->argument_list()));
 
2460
    List<Item>::iterator li(cnd->argument_list()->begin());
2461
2461
    Item *item;
2462
2462
    while ((item= li++))
2463
2463
    {
2481
2481
  if (cond->type() == Item::COND_ITEM)
2482
2482
  {
2483
2483
    bool and_level= ((Item_cond*) cond)->functype() == Item_func::COND_AND_FUNC;
2484
 
    List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
2484
    List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
2485
2485
    Item *item;
2486
2486
    list<COND_CMP> save;
2487
2487
    while ((item=li++))
2715
2715
  {
2716
2716
    bool and_level= (((Item_cond*) cond)->functype() == Item_func::COND_AND_FUNC);
2717
2717
 
2718
 
    List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
2718
    List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
2719
2719
    Item::cond_result tmp_cond_value;
2720
2720
    bool should_fix_fields= false;
2721
2721
 
2847
2847
  }
2848
2848
  else if (cond->const_item() && !cond->is_expensive())
2849
2849
  /*
2850
 
    TODO:
 
2850
    @todo
2851
2851
    Excluding all expensive functions is too restritive we should exclude only
2852
2852
    materialized IN subquery predicates because they can't yet be evaluated
2853
2853
    here (they need additional initialization that is done later on).
2919
2919
  {
2920
2920
    bool and_level= (((Item_cond*) cond)->functype()
2921
2921
                     == Item_func::COND_AND_FUNC);
2922
 
    List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
2922
    List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
2923
2923
    Item *item;
2924
2924
    while ((item=li++))
2925
2925
    {
3449
3449
    }
3450
3450
  }
3451
3451
 
3452
 
  /* TODO: Why don't we do "Late NULLs Filtering" here? */
 
3452
  /* @todo Why don't we do "Late NULLs Filtering" here? */
3453
3453
  if (cmp_buffer_with_ref(tab) ||
3454
3454
      (table->status & (STATUS_GARBAGE | STATUS_NO_PARENT | STATUS_NULL_ROW)))
3455
3455
  {
3819
3819
        {
3820
3820
          if (!join->first_record)
3821
3821
          {
3822
 
                  List<Item>::iterator it(*join->fields);
 
3822
                  List<Item>::iterator it(join->fields->begin());
3823
3823
                  Item *item;
3824
3824
            /* No matching rows for group function */
3825
3825
            join->clear();
4058
4058
      Item_cond_and *new_cond=new Item_cond_and;
4059
4059
      if (!new_cond)
4060
4060
        return (COND*) 0;
4061
 
      List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
4061
      List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
4062
4062
      Item *item;
4063
4063
      while ((item=li++))
4064
4064
      {
4088
4088
      Item_cond_or *new_cond=new Item_cond_or;
4089
4089
      if (!new_cond)
4090
4090
        return (COND*) 0;
4091
 
      List<Item>::iterator li(*((Item_cond*) cond)->argument_list());
 
4091
      List<Item>::iterator li(((Item_cond*) cond)->argument_list()->begin());
4092
4092
      Item *item;
4093
4093
      while ((item=li++))
4094
4094
      {
4440
4440
{
4441
4441
  List<Item> *fields= (List<Item> *) data;
4442
4442
  bool part_found= 0;
4443
 
  List<Item>::iterator li(*fields);
 
4443
  List<Item>::iterator li(fields->begin());
4444
4444
  Item *item;
4445
4445
 
4446
4446
  while ((item= li++))
4525
4525
    save_quick= select->quick;
4526
4526
    /*
4527
4527
      assume results are not ordered when index merge is used
4528
 
      TODO: sergeyp: Results of all index merge selects actually are ordered
 
4528
      @todo sergeyp: Results of all index merge selects actually are ordered
4529
4529
      by clustered PK values.
4530
4530
    */
4531
4531
 
5569
5569
    Item *item;
5570
5570
    Item_field *field;
5571
5571
    int cur_pos_in_select_list= 0;
5572
 
    List<Item>::iterator li(fields);
5573
 
    List<Item_field>::iterator naf_it(session->getLex()->current_select->non_agg_fields);
 
5572
    List<Item>::iterator li(fields.begin());
 
5573
    List<Item_field>::iterator naf_it(session->getLex()->current_select->non_agg_fields.begin());
5574
5574
 
5575
5575
    field= naf_it++;
5576
5576
    while (field && (item=li++))
5596
5596
            if ((*ord->item)->eq((Item*)field, 0))
5597
5597
              goto next_field;
5598
5598
          /*
5599
 
            TODO: change ER_WRONG_FIELD_WITH_GROUP to more detailed
5600
 
            ER_NON_GROUPING_FIELD_USED
 
5599
            @todo change ER_WRONG_FIELD_WITH_GROUP to more detailed ER_NON_GROUPING_FIELD_USED
5601
5600
          */
5602
5601
          my_error(ER_WRONG_FIELD_WITH_GROUP, MYF(0), field->full_name());
5603
5602
          return 1;
5626
5625
                                List<Item> &,
5627
5626
                                bool *all_order_by_fields_used)
5628
5627
{
5629
 
  List<Item>::iterator li(fields);
 
5628
  List<Item>::iterator li(fields.begin());
5630
5629
  Item *item;
5631
5630
  Order *order,*group,**prev;
5632
5631
 
5690
5689
*/
5691
5690
void count_field_types(Select_Lex *select_lex, Tmp_Table_Param *param, List<Item> &fields, bool reset_with_sum_func)
5692
5691
{
5693
 
  List<Item>::iterator li(fields);
 
5692
  List<Item>::iterator li(fields.begin());
5694
5693
  Item *field;
5695
5694
 
5696
5695
  param->field_count=param->sum_func_count=param->func_count=
5747
5746
*/
5748
5747
int test_if_item_cache_changed(List<Cached_item> &list)
5749
5748
{
5750
 
  List<Cached_item>::iterator li(list);
 
5749
  List<Cached_item>::iterator li(list.begin());
5751
5750
  int idx= -1,i;
5752
5751
  Cached_item *buff;
5753
5752
 
5796
5795
                       List<Item> &all_fields)
5797
5796
{
5798
5797
  Item *pos;
5799
 
  List<Item>::iterator li(all_fields);
 
5798
  List<Item>::iterator li(all_fields.begin());
5800
5799
  CopyField *copy= NULL;
5801
5800
  res_selected_fields.clear();
5802
5801
  res_all_fields.clear();
5803
 
  List<Item>::iterator itr(res_all_fields);
 
5802
  List<Item>::iterator itr(res_all_fields.begin());
5804
5803
  List<Item> extra_funcs;
5805
5804
  uint32_t i, border= all_fields.elements - elements;
5806
5805
 
5877
5876
             !real_pos->with_sum_func)
5878
5877
    {                                           // Save for send fields
5879
5878
      pos= real_pos;
5880
 
      /* TODO:
5881
 
        In most cases this result will be sent to the user.
 
5879
      /* 
 
5880
        @todo In most cases this result will be sent to the user.
5882
5881
        This should be changed to use copy_int or copy_real depending
5883
5882
        on how the value is to be used: In some cases this may be an
5884
5883
        argument in a group function, like: IF(ISNULL(col),0,COUNT(*))
5932
5931
  for (; ptr != end; ptr++)
5933
5932
    (*ptr->do_copy)(ptr);
5934
5933
 
5935
 
  List<Item>::iterator it(param->copy_funcs);
 
5934
  List<Item>::iterator it(param->copy_funcs.begin());
5936
5935
  Item_copy_string *item;
5937
5936
  while ((item = (Item_copy_string*) it++))
5938
5937
    item->copy();
5961
5960
                                                uint32_t elements,
5962
5961
                              List<Item> &all_fields)
5963
5962
{
5964
 
  List<Item>::iterator it(all_fields);
 
5963
  List<Item>::iterator it(all_fields.begin());
5965
5964
  Item *item_field,*item;
5966
5965
 
5967
5966
  res_selected_fields.clear();
6010
6009
      item_field;
6011
6010
  }
6012
6011
 
6013
 
  List<Item>::iterator itr(res_all_fields);
 
6012
  List<Item>::iterator itr(res_all_fields.begin());
6014
6013
  for (i= 0; i < border; i++)
6015
6014
    itr++;
6016
6015
  itr.sublist(res_selected_fields, elements);
6040
6039
                               uint32_t elements,
6041
6040
                                                 List<Item> &all_fields)
6042
6041
{
6043
 
  List<Item>::iterator it(all_fields);
 
6042
  List<Item>::iterator it(all_fields.begin());
6044
6043
  Item *item, *new_item;
6045
6044
  res_selected_fields.clear();
6046
6045
  res_all_fields.clear();
6053
6052
      new_item;
6054
6053
  }
6055
6054
 
6056
 
  List<Item>::iterator itr(res_all_fields);
 
6055
  List<Item>::iterator itr(res_all_fields.begin());
6057
6056
  for (i= 0; i < border; i++)
6058
6057
    itr++;
6059
6058
  itr.sublist(res_selected_fields, elements);
6145
6144
    /*
6146
6145
      Need to check the THD error state because Item::val_xxx() don't
6147
6146
      return error code, but can generate errors
6148
 
      TODO: change it for a real status check when Item::val_xxx()
 
6147
      @todo change it for a real status check when Item::val_xxx()
6149
6148
      are extended to return status code.
6150
6149
    */
6151
6150
    if (session->is_error())
6203
6202
  @param changed        out:  returns 1 if item contains a replaced field item
6204
6203
 
6205
6204
  @todo
6206
 
    - TODO: Some functions are not null-preserving. For those functions
 
6205
    - @todo Some functions are not null-preserving. For those functions
6207
6206
    updating of the maybe_null attribute is an overkill.
6208
6207
 
6209
6208
  @retval
6293
6292
                List<TableList> *tables, enum_query_type)
6294
6293
{
6295
6294
  /* List is reversed => we should reverse it before using */
6296
 
  List<TableList>::iterator ti(*tables);
 
6295
  List<TableList>::iterator ti(tables->begin());
6297
6296
  TableList **table= (TableList **)session->getMemRoot()->allocate(sizeof(TableList*) *
6298
6297
                                                tables->elements);
6299
6298
  if (table == 0)
6330
6329
 
6331
6330
  //Item List
6332
6331
  bool first= 1;
6333
 
  List<Item>::iterator it(item_list);
 
6332
  List<Item>::iterator it(item_list.begin());
6334
6333
  Item *item;
6335
6334
  while ((item= it++))
6336
6335
  {
6343
6342
 
6344
6343
  /*
6345
6344
    from clause
6346
 
    TODO: support USING/FORCE/IGNORE index
 
6345
    @todo support USING/FORCE/IGNORE index
6347
6346
  */
6348
6347
  if (table_list.elements)
6349
6348
  {