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
42e5de1b
Commit
42e5de1b
authored
19 years ago
by
bar@deer.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
func_group.test, func_str.result, func_group.result:
after merge fixes
parent
e660117e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
302 deletions
+33
-302
mysql-test/r/func_group.result
mysql-test/r/func_group.result
+1
-0
mysql-test/r/func_str.result
mysql-test/r/func_str.result
+31
-302
mysql-test/t/func_group.test
mysql-test/t/func_group.test
+1
-0
No files found.
mysql-test/r/func_group.result
View file @
42e5de1b
...
@@ -831,6 +831,7 @@ select id, stddev_pop(value1), var_pop(value1), stddev_samp(value1), var_samp(va
...
@@ -831,6 +831,7 @@ select id, stddev_pop(value1), var_pop(value1), stddev_samp(value1), var_samp(va
id stddev_pop(value1) var_pop(value1) stddev_samp(value1) var_samp(value1)
id stddev_pop(value1) var_pop(value1) stddev_samp(value1) var_samp(value1)
1 0.816497 0.666667 1.000000 1.000000
1 0.816497 0.666667 1.000000 1.000000
2 1.118034 1.250000 1.290994 1.666667
2 1.118034 1.250000 1.290994 1.666667
DROP TABLE t1;
CREATE TABLE t1(
CREATE TABLE t1(
id int PRIMARY KEY,
id int PRIMARY KEY,
a int,
a int,
...
...
This diff is collapsed.
Click to expand it.
mysql-test/r/func_str.result
View file @
42e5de1b
This diff is collapsed.
Click to expand it.
mysql-test/t/func_group.test
View file @
42e5de1b
...
@@ -536,6 +536,7 @@ drop table t1, t2, t3;
...
@@ -536,6 +536,7 @@ drop table t1, t2, t3;
CREATE
TABLE
t1
(
id
int
(
11
),
value1
float
(
10
,
2
));
CREATE
TABLE
t1
(
id
int
(
11
),
value1
float
(
10
,
2
));
INSERT
INTO
t1
VALUES
(
1
,
0.00
),(
1
,
1.00
),
(
1
,
2.00
),
(
2
,
10.00
),
(
2
,
11.00
),
(
2
,
12.00
),
(
2
,
13.00
);
INSERT
INTO
t1
VALUES
(
1
,
0.00
),(
1
,
1.00
),
(
1
,
2.00
),
(
2
,
10.00
),
(
2
,
11.00
),
(
2
,
12.00
),
(
2
,
13.00
);
select
id
,
stddev_pop
(
value1
),
var_pop
(
value1
),
stddev_samp
(
value1
),
var_samp
(
value1
)
from
t1
group
by
id
;
select
id
,
stddev_pop
(
value1
),
var_pop
(
value1
),
stddev_samp
(
value1
),
var_samp
(
value1
)
from
t1
group
by
id
;
DROP
TABLE
t1
;
#
#
# Bug 8893: wrong result for min/max optimization with 2 indexes
# Bug 8893: wrong result for min/max optimization with 2 indexes
#
#
...
...
This diff is collapsed.
Click to expand it.
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