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
6266493f
Commit
6266493f
authored
Sep 20, 2017
by
Jimmy Yang
Committed by
Marko Mäkelä
Feb 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #25729649 LOCK0LOCK.CC:NNN:ADD_POSITION != __NULL
Reviewed-by:
Sunny Bains
<
sunny.bains@oracle.com
>
parent
4c731a2d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
96 additions
and
2 deletions
+96
-2
mysql-test/suite/innodb/r/high_prio_trx_predicate.result
mysql-test/suite/innodb/r/high_prio_trx_predicate.result
+30
-0
mysql-test/suite/innodb/t/high_prio_trx_predicate.test
mysql-test/suite/innodb/t/high_prio_trx_predicate.test
+61
-0
storage/innobase/lock/lock0lock.cc
storage/innobase/lock/lock0lock.cc
+5
-2
No files found.
mysql-test/suite/innodb/r/high_prio_trx_predicate.result
0 → 100644
View file @
6266493f
CREATE TABLE tab(c1 int NOT NULL PRIMARY KEY,c2 POINT NOT NULL);
CREATE SPATIAL INDEX idx1 on tab(c2);
INSERT INTO tab(c1,c2) VALUES(1,ST_GeomFromText('POINT(10 10)'));
# On connection 1
set transaction isolation level serializable ;
START TRANSACTION;
SELECT ST_AsText(c2) FROM tab WHERE MBRWithin(c2, ST_GeomFromText('POLYGON((5 5, 15 5, 15 15, 5 15, 5 5))'));
ST_AsText(c2)
POINT(10 10)
# On connection 2
start transaction;
INSERT INTO tab(c1,c2) VALUES(7, ST_GeomFromText('POINT(11 11)'));;
# On connection 3
include/start_transaction_high_prio.inc
START TRANSACTION /* HIGH PRIORITY */;
INSERT INTO tab(c1,c2) VALUES(8, ST_GeomFromText('POINT(10 10)'));
COMMIT;
# On connection 1
COMMIT;
ERROR HY000: Got error 149 during COMMIT
include/assert.inc ['There is a 8 in tab']
SELECT c1 FROM tab;
c1
1
8
DROP TABLE tab;
mysql-test/suite/innodb/t/high_prio_trx_predicate.test
0 → 100644
View file @
6266493f
# Scenario:
# T1=({R(B)})
# T2=({W(B)})
# T3=({W(B), C}, HIGH_PRIORITY).
#
# Outcome: T1 must abort, T2 must commit.
--
source
include
/
count_sessions
.
inc
CREATE
TABLE
tab
(
c1
int
NOT
NULL
PRIMARY
KEY
,
c2
POINT
NOT
NULL
);
CREATE
SPATIAL
INDEX
idx1
on
tab
(
c2
);
INSERT
INTO
tab
(
c1
,
c2
)
VALUES
(
1
,
ST_GeomFromText
(
'POINT(10 10)'
));
--
connect
(
con1
,
localhost
,
root
,,
test
)
--
connect
(
con2
,
localhost
,
root
,,
test
)
--
connect
(
con3
,
localhost
,
root
,,
test
)
--
echo
--
echo
# On connection 1
--
connection
con1
set
transaction
isolation
level
serializable
;
START
TRANSACTION
;
SELECT
ST_AsText
(
c2
)
FROM
tab
WHERE
MBRWithin
(
c2
,
ST_GeomFromText
(
'POLYGON((5 5, 15 5, 15 15, 5 15, 5 5))'
));
--
echo
--
echo
# On connection 2
--
connection
con2
start
transaction
;
--
send
INSERT
INTO
tab
(
c1
,
c2
)
VALUES
(
7
,
ST_GeomFromText
(
'POINT(11 11)'
));
--
echo
--
echo
# On connection 3
--
connection
con3
--
source
include
/
start_transaction_high_prio
.
inc
INSERT
INTO
tab
(
c1
,
c2
)
VALUES
(
8
,
ST_GeomFromText
(
'POINT(10 10)'
));
COMMIT
;
--
disconnect
con3
--
echo
--
echo
# On connection 1
--
connection
con1
--
error
ER_ERROR_DURING_COMMIT
COMMIT
;
--
disconnect
con1
--
connection
default
--
let
$assert_text
=
'There is a 8 in tab'
--
let
$assert_cond
=
[
SELECT
COUNT
(
*
)
AS
count
FROM
tab
WHERE
tab
.
c1
=
8
,
count
,
1
]
=
1
--
source
include
/
assert
.
inc
--
connection
con2
--
reap
;
--
disconnect
con2
--
connection
default
SELECT
c1
FROM
tab
;
DROP
TABLE
tab
;
--
source
include
/
wait_until_count_sessions
.
inc
storage/innobase/lock/lock0lock.cc
View file @
6266493f
/*****************************************************************************
Copyright (c) 1996, 201
6
, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 1996, 201
7
, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2014, 2017, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under
...
...
@@ -2728,7 +2728,10 @@ RecLock::lock_add_priority(
lock_t
*
grant_position
=
NULL
;
lock_t
*
add_position
=
NULL
;
HASH_SEARCH
(
hash
,
lock_sys
->
rec_hash
,
m_rec_id
.
fold
(),
lock_t
*
,
/* Different lock (such as predicate lock) are on different hash */
hash_table_t
*
lock_hash
=
lock_hash_get
(
m_mode
);
HASH_SEARCH
(
hash
,
lock_hash
,
m_rec_id
.
fold
(),
lock_t
*
,
lock_head
,
ut_ad
(
lock_head
->
is_record_lock
()),
true
);
ut_ad
(
lock_head
);
...
...
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