~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

Rename of handler to Cursor.  You would not believe how long I have wanted
to do that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
/**
316
316
  An entry point to single-unit select (a select without UNION).
317
317
 
318
 
  @param session                  thread handler
 
318
  @param session                  thread Cursor
319
319
  @param rref_pointer_array   a reference to ref_pointer_array of
320
320
                              the top-level select_lex for this query
321
321
  @param tables               list of all tables used in this query.
2227
2227
    can get more freedom in performing join operations.
2228
2228
    Althogh we don't use this property now, it probably makes sense to use
2229
2229
    it in the future.
2230
 
  @param session                      Thread handler
 
2230
  @param session                      Thread Cursor
2231
2231
  @param cond                condition to build the multiple equalities for
2232
2232
  @param inherited           path to all inherited multiple equality items
2233
2233
  @param join_list           list of join tables to which the condition
5201
5201
 
5202
5202
  SYNOPSIS
5203
5203
   create_sort_index()
5204
 
     session            Thread handler
 
5204
     session            Thread Cursor
5205
5205
     tab                Table to sort (in join structure)
5206
5206
     order              How table should be sorted
5207
5207
     filesort_limit     Max number of rows that needs to be sorted
5326
5326
 
5327
5327
int remove_dup_with_compare(Session *session, Table *table, Field **first_field, uint32_t offset, Item *having)
5328
5328
{
5329
 
  handler *file=table->file;
 
5329
  Cursor *file=table->file;
5330
5330
  char *org_record,*new_record;
5331
5331
  unsigned char *record;
5332
5332
  int error;
5421
5421
{
5422
5422
  unsigned char *key_buffer, *key_pos, *record=table->record[0];
5423
5423
  int error;
5424
 
  handler *file= table->file;
 
5424
  Cursor *file= table->file;
5425
5425
  uint32_t extra_length= ALIGN_SIZE(key_length)-key_length;
5426
5426
  uint32_t *field_lengths,*field_length;
5427
5427
  HASH hash;
5802
5802
/**
5803
5803
  Intitialize the GROUP BY list.
5804
5804
 
5805
 
  @param session                        Thread handler
 
5805
  @param session                        Thread Cursor
5806
5806
  @param ref_pointer_array      We store references to all fields that was
5807
5807
                               not in 'fields' here.
5808
5808
  @param fields         All fields in the select part. Any item in
6372
6372
/**
6373
6373
  Call ::setup for all sum functions.
6374
6374
 
6375
 
  @param session           thread handler
 
6375
  @param session           thread Cursor
6376
6376
  @param func_ptr      sum function list
6377
6377
 
6378
6378
  @retval
7088
7088
 
7089
7089
/**
7090
7090
  Print joins from the FROM clause.
7091
 
  @param session     thread handler
 
7091
  @param session     thread Cursor
7092
7092
  @param str     string where table should be printed
7093
7093
  @param tables  list of tables in join
7094
7094
  @query_type    type of the query is being generated