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
bad14403
Commit
bad14403
authored
Jun 18, 2021
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up of innodb_gis.update_root test 10x by adding BEGIN/COMMIT
parent
93f5d406
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
mysql-test/suite/innodb_gis/r/update_root.result
mysql-test/suite/innodb_gis/r/update_root.result
+4
-0
mysql-test/suite/innodb_gis/t/update_root.test
mysql-test/suite/innodb_gis/t/update_root.test
+4
-0
No files found.
mysql-test/suite/innodb_gis/r/update_root.result
View file @
bad14403
...
...
@@ -7,10 +7,14 @@ insert into t1 values (i, Point(i, i));
set i = i + 1;
end while;
end|
BEGIN;
CALL insert_t1(70000);
COMMIT;
BEGIN;
CALL insert_t1(90);
CALL insert_t1(90);
CALL insert_t1(83);
COMMIT;
insert into t1 values (0, Point(0.9, 0.9));
check table t1;
Table Op Msg_type Msg_text
...
...
mysql-test/suite/innodb_gis/t/update_root.test
View file @
bad14403
...
...
@@ -26,11 +26,15 @@ end|
delimiter
;
|
# Test level 3 rtree.
BEGIN
;
CALL
insert_t1
(
70000
);
COMMIT
;
BEGIN
;
CALL
insert_t1
(
90
);
CALL
insert_t1
(
90
);
CALL
insert_t1
(
83
);
COMMIT
;
insert
into
t1
values
(
0
,
Point
(
0.9
,
0.9
));
...
...
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