~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.cc

  • Committer: Monty Taylor
  • Date: 2008-09-23 06:09:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923060948-pec1d5wxetf84tte
Cleaned up stuff out of global.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
*/
56
56
static handlerton *innodb_hton_ptr;
57
57
 
58
 
C_MODE_START
 
58
#ifdef __cplusplus
 
59
extern "C" {
 
60
#endif
 
61
 
59
62
static int64_t index_cond_func_innodb(void *arg);
60
 
C_MODE_END
61
63
 
 
64
#ifdef __cplusplus
 
65
}
 
66
#endif
62
67
 
63
68
 
64
69
#define INSIDE_HA_INNOBASE_CC
8027
8032
 * Index Condition Pushdown interface implementation
8028
8033
 */
8029
8034
 
8030
 
C_MODE_START
 
8035
#ifdef __cplusplus
 
8036
extern "C" {
 
8037
#endif
8031
8038
 
8032
8039
/* Index condition check function to be called from within Innobase */
8033
8040
 
8042
8049
  return h->pushed_idx_cond->val_int();
8043
8050
}
8044
8051
 
8045
 
C_MODE_END
 
8052
#ifdef __cplusplus
 
8053
}
 
8054
#endif
 
8055
 
8046
8056
 
8047
8057
 
8048
8058
Item *ha_innobase::idx_cond_push(uint keyno_arg, Item* idx_cond_arg)