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
c03deada
Commit
c03deada
authored
Dec 21, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 64 bit Windows build
parent
61e0b38f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
cmake/os/WindowsCache.cmake
cmake/os/WindowsCache.cmake
+1
-0
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+1
-1
storage/xtradb/include/srv0srv.h
storage/xtradb/include/srv0srv.h
+1
-1
storage/xtradb/srv/srv0srv.c
storage/xtradb/srv/srv0srv.c
+1
-1
No files found.
cmake/os/WindowsCache.cmake
View file @
c03deada
...
...
@@ -20,6 +20,7 @@
# different results.
IF
(
MSVC
)
SET
(
BFD_H_EXISTS 0 CACHE INTERNAL
""
)
SET
(
HAVE_ACCESS 1 CACHE INTERNAL
""
)
SET
(
HAVE_AIO_H CACHE INTERNAL
""
)
SET
(
HAVE_AIO_READ CACHE INTERNAL
""
)
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
c03deada
...
...
@@ -12374,7 +12374,7 @@ static MYSQL_SYSVAR_ULONG(concurrency_tickets, srv_n_free_tickets_to_enter,
#else
#define TMP_STR "No effect for this build."
#endif
static
MYSQL_SYSVAR_LONG
(
kill_idle_transaction
,
srv_kill_idle_transaction
,
static
MYSQL_SYSVAR_
U
LONG
(
kill_idle_transaction
,
srv_kill_idle_transaction
,
PLUGIN_VAR_RQCMDARG
,
TMP_STR
,
NULL
,
NULL
,
0
,
0
,
LONG_MAX
,
0
);
...
...
storage/xtradb/include/srv0srv.h
View file @
c03deada
...
...
@@ -299,7 +299,7 @@ extern ibool srv_print_latch_waits;
extern
ulint
srv_activity_count
;
extern
ulint
srv_fatal_semaphore_wait_threshold
;
extern
ulint
srv_dml_needed_delay
;
extern
lint
srv_kill_idle_transaction
;
extern
ulong
srv_kill_idle_transaction
;
extern
mutex_t
*
kernel_mutex_temp
;
/* mutex protecting the server, trx structs,
query threads, and lock table: we allocate
...
...
storage/xtradb/srv/srv0srv.c
View file @
c03deada
...
...
@@ -104,7 +104,7 @@ UNIV_INTERN ulint srv_activity_count = 0;
UNIV_INTERN
ulint
srv_fatal_semaphore_wait_threshold
=
600
;
/**/
UNIV_INTERN
lint
srv_kill_idle_transaction
=
0
;
UNIV_INTERN
ulong
srv_kill_idle_transaction
=
0
;
/* How much data manipulation language (DML) statements need to be delayed,
in microseconds, in order to reduce the lagging of the purge thread. */
...
...
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