~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/collation_dictionary/collations.cc

Fixed the OSX build issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        push(tmp_cl->csname);
75
75
 
76
76
        /* COLLATION_ID */
77
 
        push((int64_t) tmp_cl->number);
 
77
        push(tmp_cl->number);
78
78
         
79
79
        /* IS_DEFAULT */
80
80
        push((bool)(tmp_cl->state & MY_CS_PRIMARY));
83
83
        push((bool)(tmp_cl->state & MY_CS_COMPILED));
84
84
 
85
85
        /* SORTLEN */
86
 
        push((int64_t) tmp_cl->strxfrm_multiply);
 
86
        push(tmp_cl->strxfrm_multiply);
87
87
 
88
88
        cl++;
89
89