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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6bebd251
Commit
6bebd251
authored
Aug 28, 2002
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem with show variables on 64 bit sparc.
parent
631f395f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/set_var.cc
sql/set_var.cc
+2
-2
No files found.
sql/set_var.cc
View file @
6bebd251
...
...
@@ -454,7 +454,7 @@ struct show_var_st init_vars[]= {
{
"log"
,
(
char
*
)
&
opt_log
,
SHOW_BOOL
},
{
"log_update"
,
(
char
*
)
&
opt_update_log
,
SHOW_BOOL
},
{
"log_bin"
,
(
char
*
)
&
opt_bin_log
,
SHOW_BOOL
},
{
"log_slave_updates"
,
(
char
*
)
&
opt_log_slave_updates
,
SHOW_BOOL
},
{
"log_slave_updates"
,
(
char
*
)
&
opt_log_slave_updates
,
SHOW_
MY_
BOOL
},
{
"log_slow_queries"
,
(
char
*
)
&
opt_slow_log
,
SHOW_BOOL
},
{
sys_log_warnings
.
name
,
(
char
*
)
&
sys_log_warnings
,
SHOW_SYS
},
{
sys_long_query_time
.
name
,
(
char
*
)
&
sys_long_query_time
,
SHOW_SYS
},
...
...
@@ -481,7 +481,7 @@ struct show_var_st init_vars[]= {
{
"myisam_recover_options"
,
(
char
*
)
&
myisam_recover_options_str
,
SHOW_CHAR_PTR
},
{
sys_myisam_sort_buffer_size
.
name
,
(
char
*
)
&
sys_myisam_sort_buffer_size
,
SHOW_SYS
},
#ifdef __NT__
{
"named_pipe"
,
(
char
*
)
&
opt_enable_named_pipe
,
SHOW_BOOL
},
{
"named_pipe"
,
(
char
*
)
&
opt_enable_named_pipe
,
SHOW_
MY_
BOOL
},
#endif
{
sys_net_buffer_length
.
name
,(
char
*
)
&
sys_net_buffer_length
,
SHOW_SYS
},
{
sys_net_read_timeout
.
name
,
(
char
*
)
&
sys_net_read_timeout
,
SHOW_SYS
},
...
...
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