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
8ad377aa
Commit
8ad377aa
authored
Jun 15, 2012
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge
parents
1d74ae6b
4a23bb90
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
14 deletions
+24
-14
client/mysqldump.c
client/mysqldump.c
+1
-1
mysql-test/r/rpl_mysqldump_slave.result
mysql-test/r/rpl_mysqldump_slave.result
+1
-1
mysql-test/suite/sphinx/sphinx.result
mysql-test/suite/sphinx/sphinx.result
+5
-2
mysql-test/suite/sphinx/sphinx.test
mysql-test/suite/sphinx/sphinx.test
+3
-1
sql/sql_table.cc
sql/sql_table.cc
+3
-0
storage/maria/ma_close.c
storage/maria/ma_close.c
+2
-1
storage/maria/ma_delete_table.c
storage/maria/ma_delete_table.c
+4
-8
storage/maria/ma_info.c
storage/maria/ma_info.c
+1
-0
storage/maria/ma_open.c
storage/maria/ma_open.c
+4
-0
No files found.
client/mysqldump.c
View file @
8ad377aa
...
...
@@ -4773,7 +4773,7 @@ static int do_show_slave_status(MYSQL *mysql_con)
if
(
row
[
1
])
fprintf
(
md_result_file
,
"MASTER_HOST='%s', "
,
row
[
1
]);
if
(
row
[
3
])
fprintf
(
md_result_file
,
"MASTER_PORT=
'%s'
, "
,
row
[
3
]);
fprintf
(
md_result_file
,
"MASTER_PORT=
%s
, "
,
row
[
3
]);
}
fprintf
(
md_result_file
,
"MASTER_LOG_FILE='%s', MASTER_LOG_POS=%s;
\n
"
,
row
[
9
],
row
[
21
]);
...
...
mysql-test/r/rpl_mysqldump_slave.result
View file @
8ad377aa
...
...
@@ -9,6 +9,6 @@ STOP SLAVE;
CHANGE MASTER TO MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=BINLOG_START;
START SLAVE;
STOP SLAVE;
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=
'MASTER_MYPORT'
, MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=BINLOG_START;
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=
MASTER_MYPORT
, MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=BINLOG_START;
START SLAVE;
include/rpl_end.inc
mysql-test/suite/sphinx/sphinx.result
View file @
8ad377aa
...
...
@@ -46,14 +46,17 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE ts ref q q 257 const 3 Using where with pushed condition
SET optimizer_switch=@save_optimizer_switch;
drop table ts;
show status like "sphinx_%";
show status like "sphinx_
error
%";
Variable_name Value
sphinx_error_commits 0
sphinx_error_group_commits 0
sphinx_error_snapshot_file
sphinx_error_snapshot_position 0
sphinx_time 0
show status like "sphinx_total%";
Variable_name Value
sphinx_total 2
sphinx_total_found 2
show status like "sphinx_word%";
Variable_name Value
sphinx_word_count 0
sphinx_words
mysql-test/suite/sphinx/sphinx.test
View file @
8ad377aa
...
...
@@ -26,4 +26,6 @@ explain select * from ts where q=';groupby=attr:gid';
SET
optimizer_switch
=@
save_optimizer_switch
;
drop
table
ts
;
show
status
like
"sphinx_%"
;
show
status
like
"sphinx_error%"
;
show
status
like
"sphinx_total%"
;
show
status
like
"sphinx_word%"
;
sql/sql_table.cc
View file @
8ad377aa
...
...
@@ -7360,7 +7360,10 @@ copy_data_between_tables(THD *thd, TABLE *from,TABLE *to,
thd_progress_next_stage
(
thd
);
if
(
error
>
0
)
{
/* We are going to drop the temporary table */
to
->
file
->
extra
(
HA_EXTRA_PREPARE_FOR_DROP
);
}
if
(
errpos
>=
3
&&
to
->
file
->
ha_end_bulk_insert
()
&&
error
<=
0
)
{
to
->
file
->
print_error
(
my_errno
,
MYF
(
0
));
...
...
storage/maria/ma_close.c
View file @
8ad377aa
...
...
@@ -193,9 +193,10 @@ int maria_close(register MARIA_HA *info)
else
share_can_be_freed
=
TRUE
;
if
(
share
->
state_history
)
if
(
share
->
state_history
&&
share
->
state_history
->
trid
)
{
MARIA_STATE_HISTORY_CLOSED
*
history
;
DBUG_PRINT
(
"info"
,
(
"Storing state history"
));
/*
Here we ignore the unlikely case that we don't have memory to
store the state. In the worst case what happens is that any transaction
...
...
storage/maria/ma_delete_table.c
View file @
8ad377aa
...
...
@@ -38,14 +38,8 @@ int maria_delete_table(const char *name)
/** @todo LOCK take X-lock on table */
/*
We need to know if this table is transactional.
When built with RAID support, we also need to determine if this table
makes use of the raid feature. If yes, we need to remove all raid
chunks. This is done with my_raid_delete(). Unfortunately it is
necessary to open the table just to check this. We use
'open_for_repair' to be able to open even a crashed table. If even
this open fails, we assume no raid configuration for this table
and try to remove the normal data file only. This may however
leave the raid chunks behind.
Unfortunately it is necessary to open the table just to check this. We use
'open_for_repair' to be able to open even a crashed table.
*/
if
(
!
(
info
=
maria_open
(
name
,
O_RDONLY
,
HA_OPEN_FOR_REPAIR
)))
{
...
...
@@ -56,6 +50,8 @@ int maria_delete_table(const char *name)
sync_dir
=
(
info
->
s
->
now_transactional
&&
!
info
->
s
->
temporary
&&
!
maria_in_recovery
)
?
MY_SYNC_DIR
:
0
;
/* Remove history for table */
_ma_reset_state
(
info
);
maria_close
(
info
);
}
...
...
storage/maria/ma_info.c
View file @
8ad377aa
...
...
@@ -42,6 +42,7 @@ int maria_status(MARIA_HA *info, register MARIA_INFO *x, uint flag)
MY_STAT
state
;
MARIA_SHARE
*
share
=
info
->
s
;
DBUG_ENTER
(
"maria_status"
);
DBUG_PRINT
(
"info"
,
(
"records: %lld"
,
info
->
state
->
records
));
x
->
recpos
=
info
->
cur_row
.
lastpos
;
if
(
flag
==
HA_STATUS_POS
)
...
...
storage/maria/ma_open.c
View file @
8ad377aa
...
...
@@ -866,6 +866,9 @@ MARIA_HA *maria_open(const char *name, int mode, uint open_flags)
_ma_remove_not_visible_states
(
history
->
state_history
,
0
,
0
);
history
->
state_history
=
0
;
(
void
)
my_hash_delete
(
&
maria_stored_state
,
(
uchar
*
)
history
);
DBUG_PRINT
(
"info"
,
(
"Reading state history. trid: %lu records: %lld"
,
(
ulong
)
share
->
state_history
->
trid
,
share
->
state_history
->
state
.
records
));
}
else
{
...
...
@@ -988,6 +991,7 @@ MARIA_HA *maria_open(const char *name, int mode, uint open_flags)
mysql_mutex_unlock
(
&
THR_LOCK_maria
);
m_info
->
open_flags
=
open_flags
;
DBUG_PRINT
(
"exit"
,
(
"table: %p name: %s"
,
m_info
,
name
));
DBUG_RETURN
(
m_info
);
err:
...
...
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