~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-12-03 02:08:38 UTC
  • mto: (1237.3.3 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203020838-v2pen6n0prwo92i7
Clean up index interface before moving to SE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2518
2518
uint32_t
2519
2519
ha_innobase::index_flags(
2520
2520
/*=====================*/
2521
 
        uint,
2522
 
        uint,
2523
 
        bool)
 
2521
        uint)
2524
2522
const
2525
2523
{
2526
 
        return(HA_READ_NEXT | HA_READ_PREV | HA_READ_ORDER
2527
 
               | HA_READ_RANGE | HA_KEYREAD_ONLY);
 
2524
        return (HA_READ_NEXT |
 
2525
                HA_READ_PREV |
 
2526
                HA_READ_ORDER |
 
2527
                HA_READ_RANGE |
 
2528
                HA_KEYREAD_ONLY);
2528
2529
}
2529
2530
 
2530
2531
/****************************************************************//**