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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c9b4603f
Commit
c9b4603f
authored
Nov 15, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update result file for mysql_upgrade as we have more tables that is checked in 5.1
Fix merge errors
parent
9f22fecf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
7 deletions
+48
-7
mysql-test/r/mysql_upgrade.result
mysql-test/r/mysql_upgrade.result
+46
-0
mysql-test/r/mysqldump.result
mysql-test/r/mysqldump.result
+0
-1
mysql-test/r/rpl_drop_db.result
mysql-test/r/rpl_drop_db.result
+0
-1
mysql-test/r/rpl_row_max_relay_size.result
mysql-test/r/rpl_row_max_relay_size.result
+2
-0
mysql-test/t/rpl_drop_db.test
mysql-test/t/rpl_drop_db.test
+0
-5
No files found.
mysql-test/r/mysql_upgrade.result
View file @
c9b4603f
Run mysql_upgrade once
Run mysql_upgrade once
cluster.binlog_index OK
mysql.columns_priv OK
mysql.columns_priv OK
mysql.db OK
mysql.db OK
mysql.event OK
mysql.func OK
mysql.func OK
mysql.general_log OK
mysql.help_category OK
mysql.help_category OK
mysql.help_keyword OK
mysql.help_keyword OK
mysql.help_relation OK
mysql.help_relation OK
mysql.help_topic OK
mysql.help_topic OK
mysql.host OK
mysql.host OK
mysql.plugin OK
mysql.proc OK
mysql.proc OK
mysql.procs_priv OK
mysql.procs_priv OK
mysql.slow_log OK
mysql.tables_priv OK
mysql.tables_priv OK
mysql.time_zone OK
mysql.time_zone OK
mysql.time_zone_leap_second OK
mysql.time_zone_leap_second OK
...
@@ -46,6 +51,18 @@ mysql.user OK
...
@@ -46,6 +51,18 @@ mysql.user OK
1
1
1
1
1
1
@hadEventPriv :=1
1
1
1
1
1
@hadTriggerPriv :=1
1
1
1
1
1
Run it again - should say already completed
Run it again - should say already completed
@hadGrantPriv:=1
@hadGrantPriv:=1
1
1
...
@@ -77,17 +94,34 @@ Run it again - should say already completed
...
@@ -77,17 +94,34 @@ Run it again - should say already completed
1
1
1
1
1
1
@hadEventPriv :=1
1
1
1
1
1
@hadTriggerPriv :=1
1
1
1
1
1
Force should run it regardless of wheter it's been run before
Force should run it regardless of wheter it's been run before
cluster.binlog_index OK
mysql.columns_priv OK
mysql.columns_priv OK
mysql.db OK
mysql.db OK
mysql.event OK
mysql.func OK
mysql.func OK
mysql.general_log OK
mysql.help_category OK
mysql.help_category OK
mysql.help_keyword OK
mysql.help_keyword OK
mysql.help_relation OK
mysql.help_relation OK
mysql.help_topic OK
mysql.help_topic OK
mysql.host OK
mysql.host OK
mysql.plugin OK
mysql.proc OK
mysql.proc OK
mysql.procs_priv OK
mysql.procs_priv OK
mysql.slow_log OK
mysql.tables_priv OK
mysql.tables_priv OK
mysql.time_zone OK
mysql.time_zone OK
mysql.time_zone_leap_second OK
mysql.time_zone_leap_second OK
...
@@ -125,3 +159,15 @@ mysql.user OK
...
@@ -125,3 +159,15 @@ mysql.user OK
1
1
1
1
1
1
@hadEventPriv :=1
1
1
1
1
1
@hadTriggerPriv :=1
1
1
1
1
1
mysql-test/r/mysqldump.result
View file @
c9b4603f
...
@@ -3122,7 +3122,6 @@ revoke all privileges on mysqldump_myDB.* from myDB_User@localhost;
...
@@ -3122,7 +3122,6 @@ revoke all privileges on mysqldump_myDB.* from myDB_User@localhost;
drop user myDB_User@localhost;
drop user myDB_User@localhost;
drop database mysqldump_myDB;
drop database mysqldump_myDB;
use test;
use test;
#
#
# BUG#13926: --order-by-primary fails if PKEY contains quote character
# BUG#13926: --order-by-primary fails if PKEY contains quote character
#
#
...
...
mysql-test/r/rpl_drop_db.result
View file @
c9b4603f
...
@@ -31,7 +31,6 @@ use test;
...
@@ -31,7 +31,6 @@ use test;
select * from t1;
select * from t1;
n
n
1234
1234
DROP DATABASE mysqltest1;
stop slave;
stop slave;
drop database mysqltest1;
drop database mysqltest1;
drop database mysqltest1;
drop database mysqltest1;
...
...
mysql-test/r/rpl_row_max_relay_size.result
View file @
c9b4603f
...
@@ -16,6 +16,7 @@ reset slave;
...
@@ -16,6 +16,7 @@ reset slave;
#
#
# Test 1
# Test 1
#
#
set @my_max_binlog_size= @@global.max_binlog_size;
set global max_binlog_size=8192;
set global max_binlog_size=8192;
set global max_relay_log_size=8192-1;
set global max_relay_log_size=8192-1;
select @@global.max_relay_log_size;
select @@global.max_relay_log_size;
...
@@ -268,6 +269,7 @@ File master-bin.000002
...
@@ -268,6 +269,7 @@ File master-bin.000002
Position 102
Position 102
Binlog_Do_DB <Binlog_Ignore_DB>
Binlog_Do_DB <Binlog_Ignore_DB>
Binlog_Ignore_DB
Binlog_Ignore_DB
set global max_binlog_size= @my_max_binlog_size;
#
#
# End of 4.1 tests
# End of 4.1 tests
#
#
mysql-test/t/rpl_drop_db.test
View file @
c9b4603f
...
@@ -46,11 +46,6 @@ show tables;
...
@@ -46,11 +46,6 @@ show tables;
use
test
;
use
test
;
select
*
from
t1
;
select
*
from
t1
;
system
rm
$MYSQLTEST_VARDIR
/
master
-
data
/
mysqltest1
/
f1
.
txt
;
connection
master
;
DROP
DATABASE
mysqltest1
;
sync_slave_with_master
;
#cleanup
#cleanup
connection
slave
;
connection
slave
;
stop
slave
;
stop
slave
;
...
...
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