~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Stewart Smith
  • Date: 2008-12-22 02:20:48 UTC
  • mto: This revision was merged to the branch mainline in revision 728.
  • Revision ID: stewart@flamingspork.com-20081222022048-8gbkwxsdudm12qwo
fix select_safe and http://bugs.mysql.com/bug.php?id=32250 (but for Drizzle)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3794
3794
    char init_command[100];
3795
3795
    sprintf(init_command,
3796
3796
            "SET SQL_SAFE_UPDATES=1,SQL_SELECT_LIMIT=%"PRIu32
3797
 
            ",SQL_MAX_JOIN_SIZE=%"PRIu32,
 
3797
            ",MAX_JOIN_SIZE=%"PRIu32,
3798
3798
            select_limit, max_join_size);
3799
3799
    drizzle_options(&drizzle, DRIZZLE_INIT_COMMAND, init_command);
3800
3800
  }