1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Small fixes after merge

BitKeeper/deleted/.del-net.c~ef21d6402bb882f9:
  This file is not auto-created
BitKeeper/etc/ignore:
  Added libmysqld/sql_olap.cc myisam/myisam.log to the ignore list
Docs/manual.texi:
  Small fixes
sql/sql_lex.h:
  Fixed typo
This commit is contained in:
unknown
2002-07-23 22:08:37 +03:00
parent 10bd14dee8
commit 80db4ec734
3 changed files with 12 additions and 6 deletions

View File

@@ -481,3 +481,5 @@ mit-pthreads/pg++
mit-pthreads/pgcc
scripts/mysql_tableinfo
libmysql/net.c
libmysqld/sql_olap.cc
myisam/myisam.log

View File

@@ -28546,7 +28546,7 @@ the case of the file extensions in each specified database directory
@cindex user variables
@cindex names, variables
MySQL supports thread-specific user variables with the
MySQL supports connection-specific user variables with the
@code{@@variablename} syntax. A variable name may consist of
alphanumeric characters from the current character set and also
@samp{_}, @samp{$}, and @samp{.} . The default character set is
@@ -28600,8 +28600,11 @@ row, but the value of @code{id} for the previous accepted row.
@node System Variables, Comments, Variables, Language Structure
@subsection System Variables
@cindex variables, System
@cindex system variables
Starting from MySQL 4.0.3 we provide better access to a lot of system
variables and one can change most of them without having to take
and connection variables. One can change most of them without having to take
down the server.
There are two kind of system variables: Thread (or connection) specific
@@ -28657,7 +28660,7 @@ SHOW SESSION VARIABLES like 'sort_buffer_size';
When you @strong{retrieve} a variable value with the
@code{@@@@variable_name} syntax and you don't specify @code{GLOBAL} or
@code{SESSION} then MySQL will return the thread specific
(@code{SESSION}) value if a such exist. If not, MySQL will return the
(@code{SESSION}) value if it exists. If not, MySQL will return the
global value.
The reason for requiring @code{GLOBAL} for setting @code{GLOBAL} only
@@ -28844,7 +28847,7 @@ A few are reserved because MySQL needs them and is
@c START_OF_RESERVED_WORDS
@c Reserved word list updated Tue Jul 23 02:10:12 2002 by monty.
@c Reserved word list updated Tue Jul 23 20:41:20 2002 by monty.
@c To regenerate, use Support/update-reserved-words.pl.
@multitable @columnfractions .33 .33 .34
@@ -29019,8 +29022,9 @@ A few are reserved because MySQL needs them and is
@item @code{WITH}
@tab @code{WRITE}
@tab @code{XOR}
@tab @code{ZEROFILL}
@item @code{YEAR_MONTH}
@tab @code{ZEROFILL}
@tab
@end multitable
@c END_OF_RESERVED_WORDS

View File

@@ -175,7 +175,7 @@ typedef struct st_lex
enum enum_var_type option_type;
uint grant,grant_tot_col,which_columns, union_option;
thr_lock_type lock_option;
bool drop_primary,drop_if_exists,local_file. olap;
bool drop_primary,drop_if_exists,local_file, olap;
bool in_comment,ignore_space,verbose,simple_alter;
uint slave_thd_opt;
} LEX;