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
eab0dc68
Commit
eab0dc68
authored
Jan 22, 2020
by
Varun Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-21542: main.order_by_pack_big fails sporadically with wrong result
Made the test order_by_pack_big stable
parent
588eac58
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
207 additions
and
207 deletions
+207
-207
mysql-test/main/order_by_pack_big.result
mysql-test/main/order_by_pack_big.result
+205
-205
mysql-test/main/order_by_pack_big.test
mysql-test/main/order_by_pack_big.test
+2
-2
No files found.
mysql-test/main/order_by_pack_big.result
View file @
eab0dc68
This diff is collapsed.
Click to expand it.
mysql-test/main/order_by_pack_big.test
View file @
eab0dc68
...
...
@@ -7,7 +7,7 @@ set @save_rand_seed2= @@RAND_SEED2;
set
@@
RAND_SEED1
=
810763568
,
@@
RAND_SEED2
=
600681772
;
create
table
t1
(
a
int
);
insert
into
t1
select
seq
from
seq_1_to_10000
order
by
rand
();
insert
into
t1
select
seq
from
seq_1_to_10000
order
by
rand
()
,
seq
;
delimiter
|
;
--
echo
#
...
...
@@ -100,7 +100,7 @@ select id, generate_random_string(a), generate_random_string(b) from t2;
let
$query
=
select
id
DIV
100
as
x
,
MD5
(
group_concat
(
substring
(
names
,
1
,
3
),
substring
(
address
,
1
,
3
)
order
by
substring
(
names
,
1
,
3
),
substring
(
address
,
1
,
3
)
))
order
by
id
))
FROM
t3
GROUP
BY
x
;
...
...
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