Commit 84999eb5 authored by jcole@abel.spaceapes.com's avatar jcole@abel.spaceapes.com
Browse files

Reversed SQL_ANSI_MODE per Monty's request.

parent fef4e752
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,3 +7,4 @@ sasha@work.mysql.com
serg@serg.mysql.com
tim@threads.polyesthetic.msg
tim@work.mysql.com
jcole@abel.spaceapes.com
+0 −9
Original line number Diff line number Diff line
@@ -22080,11 +22080,6 @@ or
mysql> UPDATE mysql.user SET password=PASSWORD("newpass") where user="bob' and host="%.loc.gov";
@end example
@item SQL_ANSI_MODE = 0 | 1
@cindex ANSI mode, SQL_ANSI_MODE
If set to @code{1}, the connection will be in ANSI mode, as described in
@ref{ANSI mode}.
@item SQL_AUTO_IS_NULL = 0 | 1
If set to @code{1} (default) then one can find the last inserted row
for a table with an auto_increment row with the following construct:
@@ -42110,10 +42105,6 @@ not yet 100 % confident in this code.
@node News-3.23.35, News-3.23.34a, News-3.23.x, News-3.23.x
@appendixsubsec Changes in release 3.23.35
@itemize @bullet
@item
Added SQL_ANSI_MODE.  You can now switch to ANSI mode for only your 
connection by running @code{SET SQL_ANSI_MODE=1}, and you can turn
ANSI mode off with @code{SET SQL_ANSI_MODE=0}.
@end itemize
@node News-3.23.34a, News-3.23.34, News-3.23.35, News-3.23.x
+2 −4
Original line number Diff line number Diff line
@@ -472,9 +472,7 @@ int main(int argc,char **argv)
  int error;

  MY_INIT(argv[0]);
  start_value=4934807L;  best_t1=5181754L;  best_t2=1469522L;  best_type=0;
  /* mode=4999  add=7  type: 0 */

 start_value=5315771L; best_t1=6916833L;  best_t2=3813748L;  best_type=3; /* mode=5839  add=5  type: 0 */
 if (get_options(argc,(char **) argv))
    exit(1);

+0 −1
Original line number Diff line number Diff line
@@ -270,7 +270,6 @@ static SYMBOL symbols[] = {
  { "SLAVE",            SYM(SLAVE),0,0},
  { "SMALLINT",		SYM(SMALLINT),0,0},
  { "SONAME",		SYM(UDF_SONAME_SYM),0,0},
  { "SQL_ANSI_MODE",    SYM(SQL_ANSI_MODE),0,0},
  { "SQL_AUTO_IS_NULL", SYM(SQL_AUTO_IS_NULL),0,0},
  { "SQL_BIG_RESULT",	SYM(SQL_BIG_RESULT),0,0},
  { "SQL_BIG_SELECTS",	SYM(SQL_BIG_SELECTS),0,0},
+0 −2
Original line number Diff line number Diff line
@@ -539,8 +539,6 @@ extern struct show_var_st init_vars[];
extern struct show_var_st status_vars[];
extern enum db_type default_table_type;

extern uchar global_state_map[256];

#ifndef __WIN__
extern pthread_t signal_thread;
#endif
Loading