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
10457700
Commit
10457700
authored
May 16, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql
into mysql.sashanet.com:/home/sasha/src/bk/mysql
parents
228a4a85
37d58578
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
mysql-test/r/rpl000001.result
mysql-test/r/rpl000001.result
+6
-0
mysql-test/t/rpl000001.test
mysql-test/t/rpl000001.test
+8
-0
No files found.
mysql-test/r/rpl000001.result
View file @
10457700
...
...
@@ -7,5 +7,11 @@ sum(length(word))
0
count(*)
10
select_priv user
N blafasel2
select_priv user
Y blafasel2
n
3456
select_priv user
Y blafasel2
mysql-test/t/rpl000001.test
View file @
10457700
...
...
@@ -71,10 +71,18 @@ connection master1;
drop
table
t1
;
create
table
t1
(
n
int
);
insert
into
t1
values
(
3456
);
use
mysql
;
insert
into
user
(
Host
,
User
,
Password
)
VALUES
(
"10.10.10.%"
,
"blafasel2"
,
"blafasel2"
);
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
update
user
set
Select_priv
=
"Y"
where
User
=
"blafasel2"
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
use
test
;
save_master_pos
;
connection
slave
;
sync_with_master
;
select
n
from
t1
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
connection
master1
;
drop
table
t1
;
save_master_pos
;
...
...
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