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
47e17218
Commit
47e17218
authored
Mar 01, 2007
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ha_innodb.cc: Remove the unused innobase_repl_ variables.
parent
1a72a3da
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
47 deletions
+0
-47
handler/ha_innodb.cc
handler/ha_innodb.cc
+0
-47
No files found.
handler/ha_innodb.cc
View file @
47e17218
...
@@ -56,53 +56,6 @@ bool innodb_inited= 0;
...
@@ -56,53 +56,6 @@ bool innodb_inited= 0;
*/
*/
static
handlerton
*
legacy_innodb_hton
;
static
handlerton
*
legacy_innodb_hton
;
/*-----------------------------------------------------------------*/
/* These variables are used to implement (semi-)synchronous MySQL binlog
replication for InnoDB tables. */
pthread_cond_t
innobase_repl_cond
;
/* Posix cond variable;
this variable is signaled
when enough binlog has been
sent to slave, so that a
waiting trx can return the
'ok' message to the client
for a commit */
pthread_mutex_t
innobase_repl_cond_mutex
;
/* Posix cond variable mutex
that also protects the next
innobase_repl_... variables */
uint
innobase_repl_state
;
/* 1 if synchronous replication
is switched on and is working
ok; else 0 */
uint
innobase_repl_file_name_inited
=
0
;
/* This is set to 1 when
innobase_repl_file_name
contains meaningful data */
char
*
innobase_repl_file_name
;
/* The binlog name up to which
we have sent some binlog to
the slave */
my_off_t
innobase_repl_pos
;
/* The position in that file
up to which we have sent the
binlog to the slave */
uint
innobase_repl_n_wait_threads
=
0
;
/* This tells how many
transactions currently are
waiting for the binlog to be
sent to the client */
uint
innobase_repl_wait_file_name_inited
=
0
;
/* This is set to 1
when we know the 'smallest'
wait position */
char
*
innobase_repl_wait_file_name
;
/* NULL, or the 'smallest'
innobase_repl_file_name that
a transaction is waiting for */
my_off_t
innobase_repl_wait_pos
;
/* The smallest position in
that file that a trx is
waiting for: the trx can
proceed and send an 'ok' to
the client when MySQL has sent
the binlog up to this position
to the slave */
/*-----------------------------------------------------------------*/
/* Store MySQL definition of 'byte': in Linux it is char while InnoDB
/* Store MySQL definition of 'byte': in Linux it is char while InnoDB
uses unsigned char; the header univ.i which we include next defines
uses unsigned char; the header univ.i which we include next defines
'byte' as a macro which expands to 'unsigned char' */
'byte' as a macro which expands to 'unsigned char' */
...
...
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