~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.cc

Merge with my query rewrite tree to change the query member in Session to std::string

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
     *
43
43
     * Presumably, RESET and binlog writing doesn't require synchronization
44
44
     */
45
 
    write_bin_log(session, session->query, session->query_length);
 
45
    write_bin_log(session, session->query.c_str());
46
46
    session->my_ok();
47
47
  }
48
48