Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
f2ea4be2
Commit
f2ea4be2
authored
May 22, 2020
by
Julien Muchembled
2
Browse files
Options
Browse Files
Download
Plain Diff
Merge "mysql: workaround for MDEV-20693"
parents
a1418c9d
70387981
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
neo/storage/database/mysqldb.py
neo/storage/database/mysqldb.py
+10
-2
No files found.
neo/storage/database/mysqldb.py
View file @
f2ea4be2
...
...
@@ -781,11 +781,19 @@ class MySQLDatabaseManager(DatabaseManager):
if
max_tid
is
not
None
:
sql
+=
" AND tid <= %d"
%
max_tid
q
=
self
.
query
q
(
"DELETE FROM trans"
+
sql
)
if
q
(
"SELECT 1 FROM trans%s LIMIT 1"
%
sql
):
q
(
"DELETE FROM trans"
+
sql
)
else
:
logging
.
info
(
"Nothing to truncate in trans for partition %s"
,
partition
)
sql
=
" FROM obj"
+
sql
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT DISTINCT data_id%s AND data_id IS NOT NULL"
%
sql
)]
q
(
"DELETE"
+
sql
)
if
q
(
"SELECT 1%s LIMIT 1"
%
sql
):
q
(
"DELETE"
+
sql
)
else
:
logging
.
info
(
"Nothing to truncate in obj for partition %s"
,
partition
)
self
.
_pruneData
(
data_id_list
)
def
getTransaction
(
self
,
tid
,
all
=
False
):
...
...
Kirill Smelkov
@kirr
mentioned in commit
d14040ac
·
Nov 01, 2020
mentioned in commit
d14040ac
mentioned in commit d14040ac2c6455643e5790e3b8914a3892adb03b
Toggle commit list
Kirill Smelkov
@kirr
mentioned in commit
3a6a3475
·
Nov 01, 2020
mentioned in commit
3a6a3475
mentioned in commit 3a6a34754f743b6b5162d1365a7573dc176a8207
Toggle commit list
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