~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_utility.h

  • Committer: Mats Kindahl
  • Date: 2008-08-25 19:04:45 UTC
  • mfrom: (371 trunk)
  • mto: (489.1.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 372.
  • Revision ID: mats@mysql.com-20080825190445-xsby29pqsfrapuxd
Merging lp:~mkindahl/stdize-code with lp:drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
          index++;
100
100
          break;
101
101
        }
102
 
        case DRIZZLE_TYPE_SET:
103
102
        case DRIZZLE_TYPE_ENUM:
104
103
        {
105
104
          uint16_t x= field_metadata[index++] << 8U; // real_type
222
221
    @retval 1  if the table definition is not compatible with @c table
223
222
    @retval 0  if the table definition is compatible with @c table
224
223
  */
225
 
  int compatible_with(Relay_log_info const *rli, TABLE *table) const;
 
224
  int compatible_with(Relay_log_info const *rli, Table *table) const;
226
225
 
227
226
private:
228
227
  uint32_t m_size;           // Number of elements in the types array
237
236
   Extend the normal table list with a few new fields needed by the
238
237
   slave thread, but nowhere else.
239
238
 */
240
 
struct RPL_TABLE_LIST
241
 
  : public TABLE_LIST
 
239
struct RPL_TableList
 
240
  : public TableList
242
241
{
243
242
  bool m_tabledef_valid;
244
243
  table_def m_tabledef;