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
e5da9a96
Commit
e5da9a96
authored
Mar 27, 2001
by
monty@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in lock tables introduced by shared locks.
New lock test
parent
62e6906b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
1 deletion
+30
-1
Docs/manual.texi
Docs/manual.texi
+4
-0
mysql-test/r/lock.result
mysql-test/r/lock.result
+2
-0
mysql-test/t/lock.test
mysql-test/t/lock.test
+23
-0
sql/sql_base.cc
sql/sql_base.cc
+1
-1
No files found.
Docs/manual.texi
View file @
e5da9a96
...
...
@@ -17995,6 +17995,10 @@ Addresses may be 4 or 8 byte addresses:
mysql> select INET_ATON("209.207.224.40");
-> 3520061480
@end example
The generated number is always in network byte order; For example the
above number is calculated as @code{209*255^3 + 207*255^2 + 224*255 +40}.
@findex MASTER_POS_WAIT()
@item MASTER_POS_WAIT(log_name, log_pos)
Blocks until the slave reaches the specified position in the master log during
mysql-test/r/lock.result
0 → 100644
View file @
e5da9a96
dummy1 count(distinct id)
NULL 1
mysql-test/t/lock.test
0 → 100644
View file @
e5da9a96
#
# Testing of table locking
#
drop
table
if
exists
t1
,
t2
;
CREATE
TABLE
t1
(
`id`
int
(
11
)
NOT
NULL
default
'0'
,
`id2`
int
(
11
)
NOT
NULL
default
'0'
,
`id3`
int
(
11
)
NOT
NULL
default
'0'
,
`dummy1`
char
(
30
)
default
NULL
,
PRIMARY
KEY
(
`id`
,
`id2`
),
KEY
`index_id3`
(
`id3`
))
TYPE
=
MyISAM
;
insert
into
t1
(
id
,
id2
)
values
(
1
,
1
),(
1
,
2
),(
1
,
3
);
LOCK
TABLE
t1
WRITE
;
select
dummy1
,
count
(
distinct
id
)
from
t1
group
by
dummy1
;
update
t1
set
id
=-
1
where
id
=
1
;
LOCK
TABLE
t1
READ
;
--
error
1099
update
t1
set
id
=
1
where
id
=
1
;
--
error
1100
create
table
t2
SELECT
*
from
t1
;
create
temporary
table
t2
SELECT
*
from
t1
;
drop
table
if
exists
t2
;
unlock
tables
;
create
table
t2
SELECT
*
from
t1
;
LOCK
TABLE
t1
WRITE
,
t2
write
;
insert
into
t2
SELECT
*
from
t1
;
update
t1
set
id
=
1
where
id
=-
1
;
drop
table
t1
,
t2
;
sql/sql_base.cc
View file @
e5da9a96
...
...
@@ -1362,7 +1362,7 @@ int open_tables(THD *thd,TABLE_LIST *start)
result
=
-
1
;
// Fatal error
break
;
}
if
(
tables
->
lock_type
!=
TL_UNLOCK
)
if
(
tables
->
lock_type
!=
TL_UNLOCK
&&
!
thd
->
locked_tables
)
tables
->
table
->
reginfo
.
lock_type
=
tables
->
lock_type
;
tables
->
table
->
grant
=
tables
->
grant
;
}
...
...
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