~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
  TABLE **table;
218
218
  uint table_count,lock_count;
219
219
  THR_LOCK_DATA **locks;
220
 
} MYSQL_LOCK;
 
220
} DRIZZLE_LOCK;
221
221
 
222
222
 
223
223
class LEX_COLUMN : public Sql_alloc
439
439
 
440
440
void mark_transaction_to_rollback(THD *thd, bool all);
441
441
 
442
 
#ifdef MYSQL_SERVER
 
442
#ifdef DRIZZLE_SERVER
443
443
 
444
444
#define INIT_ARENA_DBUG_INFO is_backup_arena= 0
445
445
 
714
714
    the 'LOCK_TABLES' chapter of the MySQL manual.
715
715
    See also lock_tables() for details.
716
716
  */
717
 
  MYSQL_LOCK *lock;
 
717
  DRIZZLE_LOCK *lock;
718
718
  /*
719
719
    Tables that were locked with explicit or implicit LOCK TABLES.
720
720
    (Implicit LOCK TABLES happens when we are prelocking tables for
721
721
     execution of statement which uses stored routines. See description
722
722
     THD::prelocked_mode for more info.)
723
723
  */
724
 
  MYSQL_LOCK *locked_tables;
 
724
  DRIZZLE_LOCK *locked_tables;
725
725
 
726
726
  /*
727
727
    CREATE-SELECT keeps an extra lock for the table being
728
728
    created. This field is used to keep the extra lock available for
729
729
    lower level routines, which would otherwise miss that lock.
730
730
   */
731
 
  MYSQL_LOCK *extra_lock;
 
731
  DRIZZLE_LOCK *extra_lock;
732
732
 
733
733
  ulong version;
734
734
  uint current_tablenr;
1111
1111
 
1112
1112
  /* Place to store various things */
1113
1113
  void *thd_marker;
1114
 
#ifndef MYSQL_CLIENT
 
1114
#ifndef DRIZZLE_CLIENT
1115
1115
  int binlog_setup_trx_data();
1116
1116
 
1117
1117
  /*
1161
1161
  void clear_binlog_table_maps() {
1162
1162
    binlog_table_maps= 0;
1163
1163
  }
1164
 
#endif /* MYSQL_CLIENT */
 
1164
#endif /* DRIZZLE_CLIENT */
1165
1165
 
1166
1166
public:
1167
1167
 
1581
1581
#endif
1582
1582
  void awake(THD::killed_state state_to_set);
1583
1583
 
1584
 
#ifndef MYSQL_CLIENT
 
1584
#ifndef DRIZZLE_CLIENT
1585
1585
  enum enum_binlog_query_type {
1586
1586
    /*
1587
1587
      The query can be logged row-based or statement-based
1597
1597
      The query represents a change to a table in the "mysql"
1598
1598
      database and is currently mapped to ROW_QUERY_TYPE.
1599
1599
    */
1600
 
    MYSQL_QUERY_TYPE,
 
1600
    DRIZZLE_QUERY_TYPE,
1601
1601
    QUERY_TYPE_COUNT
1602
1602
  };
1603
1603
  
2153
2153
  Alter_info *alter_info;
2154
2154
  Field **field;
2155
2155
  /* lock data for tmp table */
2156
 
  MYSQL_LOCK *m_lock;
 
2156
  DRIZZLE_LOCK *m_lock;
2157
2157
  /* m_lock or thd->extra_lock */
2158
 
  MYSQL_LOCK **m_plock;
 
2158
  DRIZZLE_LOCK **m_plock;
2159
2159
public:
2160
2160
  select_create (TABLE_LIST *table_arg,
2161
2161
                 HA_CREATE_INFO *create_info_par,
2567
2567
void add_diff_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var,
2568
2568
                        STATUS_VAR *dec_var);
2569
2569
 
2570
 
#endif /* MYSQL_SERVER */
 
2570
#endif /* DRIZZLE_SERVER */