Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fc7f7a21
Commit
fc7f7a21
authored
Jul 23, 2002
by
monty@mashka.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes after merge
parent
4233d3a3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
6 deletions
+12
-6
.bzrignore
.bzrignore
+2
-0
Docs/manual.texi
Docs/manual.texi
+9
-5
sql/sql_lex.h
sql/sql_lex.h
+1
-1
No files found.
.bzrignore
View file @
fc7f7a21
...
...
@@ -481,3 +481,5 @@ mit-pthreads/pg++
mit-pthreads/pgcc
scripts/mysql_tableinfo
libmysql/net.c
libmysqld/sql_olap.cc
myisam/myisam.log
Docs/manual.texi
View file @
fc7f7a21
...
...
@@ -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 o
ne can change most of them without having to take
and connection variables. O
ne 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
sql/sql_lex.h
View file @
fc7f7a21
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment