~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/sql_common.h

  • Committer: Andrey Hristov
  • Date: 2008-08-05 20:32:06 UTC
  • mto: (264.1.5 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: ahristov@mysql.com-20080805203206-ufhdgu1oz8frq03p
Remove support for the old, pre-4.1, protocol

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#endif
31
31
 
32
32
extern CHARSET_INFO *default_client_charset_info;
33
 
DRIZZLE_FIELD *unpack_fields(DRIZZLE_DATA *data,MEM_ROOT *alloc,uint fields,
34
 
                           my_bool default_value, uint server_capabilities);
 
33
DRIZZLE_FIELD *unpack_fields(DRIZZLE_DATA *data, MEM_ROOT *alloc, uint fields,
 
34
                                         my_bool default_value);
35
35
void free_rows(DRIZZLE_DATA *cur);
36
36
void free_old_query(DRIZZLE *drizzle);
37
37
void end_server(DRIZZLE *drizzle);
49
49
}
50
50
#endif
51
51
 
52
 
#define protocol_41(A) ((A)->server_capabilities & CLIENT_PROTOCOL_41)
53
 
 
54
52
#endif