~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.h

  • Committer: Brian Aker
  • Date: 2010-07-30 20:31:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1679.
  • Revision ID: brian@gaz-20100730203119-89g2ye4zwnvcacxg
First pass in encapsulating row

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
82
82
  {
83
83
  }
84
84
 
85
 
  void init()
86
 
  {
87
 
    table= NULL;
88
 
    cursor= NULL;
89
 
    forms= 0;
90
 
    read_record= 0;
91
 
    session= 0;
92
 
    select= 0;
93
 
    cache_records= 0;
94
 
    ref_length= 0;
95
 
    struct_length= 0;
96
 
    reclength= 0;
97
 
    rec_cache_size= 0;
98
 
    error_offset= 0;
99
 
    index= 0;
100
 
    ref_pos= 0;
101
 
    record= 0;
102
 
    rec_buf= 0;
103
 
    cache= 0;
104
 
    cache_pos= 0;
105
 
    cache_end= 0;
106
 
    read_positions= 0;
107
 
    io_cache= 0;
108
 
    print_error= 0;
109
 
    ignore_not_found_rows= 0;
110
 
    do_insideout_scan= 0;
111
 
  }
112
 
 
113
85
  virtual ~ReadRecord()
114
86
  { }
115
87
 
181
153
    This is the most basic access method of a table using rnd_init,
182
154
    rnd_next and rnd_end. No indexes are used.
183
155
*/
184
 
  int init_read_record(Session *session,
185
 
                       Table *reg_form,
186
 
                       optimizer::SqlSelect *select,
187
 
                       int use_record_cache,
188
 
                       bool print_errors) __attribute__ ((warn_unused_result));
 
156
  void init_read_record(Session *session, 
 
157
                        Table *reg_form,
 
158
                        optimizer::SqlSelect *select,
 
159
                        int use_record_cache, 
 
160
                        bool print_errors);
189
161
 
190
162
  void end_read_record();
191
163
 
205
177
                      occurs (except for end-of-records error)
206
178
  @param idx          index to scan
207
179
                    */
208
 
  int init_read_record_idx(Session *session,
209
 
                           Table *table,
210
 
                           bool print_error,
211
 
                           uint32_t idx) __attribute__ ((warn_unused_result));
 
180
  void init_read_record_idx(Session *session, 
 
181
                            Table *table,
 
182
                            bool print_error, 
 
183
                            uint32_t idx);
212
184
 
213
185
  void init_reard_record_sequential();
214
186