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
505a6018
Commit
505a6018
authored
Dec 15, 2011
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix XtraDB build on windows (avoid #ifdef inside macro invocation).
parent
14da1a03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+6
-4
No files found.
storage/xtradb/handler/ha_innodb.cc
View file @
505a6018
...
@@ -12369,14 +12369,16 @@ static MYSQL_SYSVAR_ULONG(concurrency_tickets, srv_n_free_tickets_to_enter,
...
@@ -12369,14 +12369,16 @@ static MYSQL_SYSVAR_ULONG(concurrency_tickets, srv_n_free_tickets_to_enter,
"Number of times a thread is allowed to enter InnoDB within the same SQL query after it has once got the ticket"
,
"Number of times a thread is allowed to enter InnoDB within the same SQL query after it has once got the ticket"
,
NULL
,
NULL
,
500L
,
1L
,
~
0L
,
0
);
NULL
,
NULL
,
500L
,
1L
,
~
0L
,
0
);
static
MYSQL_SYSVAR_LONG
(
kill_idle_transaction
,
srv_kill_idle_transaction
,
PLUGIN_VAR_RQCMDARG
,
#ifdef EXTENDED_FOR_KILLIDLE
#ifdef EXTENDED_FOR_KILLIDLE
"If non-zero value, the idle session with transaction which is idle over the value in seconds is killed by InnoDB."
,
#define TMP_STR "If non-zero value, the idle session with transaction which is idle over the value in seconds is killed by InnoDB."
#else
#else
"No effect for this build."
,
#define TMP_STR "No effect for this build."
#endif
#endif
static
MYSQL_SYSVAR_LONG
(
kill_idle_transaction
,
srv_kill_idle_transaction
,
PLUGIN_VAR_RQCMDARG
,
TMP_STR
,
NULL
,
NULL
,
0
,
0
,
LONG_MAX
,
0
);
NULL
,
NULL
,
0
,
0
,
LONG_MAX
,
0
);
#undef TMP_STR
static
MYSQL_SYSVAR_LONG
(
file_io_threads
,
innobase_file_io_threads
,
static
MYSQL_SYSVAR_LONG
(
file_io_threads
,
innobase_file_io_threads
,
PLUGIN_VAR_RQCMDARG
|
PLUGIN_VAR_READONLY
|
PLUGIN_VAR_NOSYSVAR
,
PLUGIN_VAR_RQCMDARG
|
PLUGIN_VAR_READONLY
|
PLUGIN_VAR_NOSYSVAR
,
...
...
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