~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/index_parts.cc

  • Committer: Brian Aker
  • Date: 2010-02-18 17:24:08 UTC
  • mto: (1273.19.13 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218172408-l224655n3lf4h6nd
Revert OSX fix, requiring more cast.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
  push(getTableProto().field(index_part.fieldnr()).name());
105
105
 
106
106
  /* COLUMN_NUMBER */
107
 
  push(index_part.fieldnr());
 
107
  push(static_cast<int64_t>(index_part.fieldnr()));
108
108
 
109
109
  /* COMPARE_LENGTH */
110
 
  push(index_part.compare_length());
 
110
  push(static_cast<int64_t>(index_part.compare_length()));
111
111
 
112
112
  /* IS_ORDER_REVERSE */
113
113
  push(index_part.in_reverse_order());