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
4d894264
Commit
4d894264
authored
Dec 26, 2006
by
tsmith/tim@siva.hindu.god
Browse files
Options
Browse Files
Download
Plain Diff
Merge siva.hindu.god:/usr/home/tim/m/bk/50
into siva.hindu.god:/usr/home/tim/m/bk/51
parents
1176caa5
828121bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
16 deletions
+18
-16
BitKeeper/etc/collapsed
BitKeeper/etc/collapsed
+2
-0
mysql-test/r/func_group.result
mysql-test/r/func_group.result
+12
-12
mysql-test/t/func_group.test
mysql-test/t/func_group.test
+4
-4
No files found.
BitKeeper/etc/collapsed
View file @
4d894264
...
...
@@ -15,6 +15,8 @@
45214442pBGT9KuZEGixBH71jTzbOA
45214a07hVsIGwvwa-WrO-jpeaSwVw
452a92d0-31-8wSzSfZi165fcGcXPA
452c6c6dAjuNghfc1ObZ_UQ5SCl85g
4538a7b0EbDHHkWPbIwxO6ZIDdg6Dg
454a7ef8gdvE_ddMlJyghvOAkKPNOQ
454bb488ijVLOUK_GFjcoISE0GxPUA
454bb9a8AwlGRC_wWLS2sNMoRBMRGw
...
...
mysql-test/r/func_group.result
View file @
4d894264
...
...
@@ -1207,15 +1207,15 @@ i count(*) std(e1/e2)
1 4 0.000000000000000000000000000000
2 4 0.000000000000000000000000000000
3 4 0.000000000000000000000000000000
select
std(s1/s2
) from bug22555;
std(s1/s2
)
0.2132576358664934
05751853629226
select
round(std(s1/s2), 17
) from bug22555;
round(std(s1/s2), 17
)
0.2132576358664934
1
select std(o1/o2) from bug22555;
std(o1/o2)
0.21325763586649
select
std(e1/e2
) from bug22555;
std(e1/e2
)
0.2132576358664934
05751853629226
select
round(std(e1/e2), 17
) from bug22555;
round(std(e1/e2), 17
)
0.2132576358664934
1
set div_precision_increment=20;
select i, count(*), std(s1/s2) from bug22555 group by i order by i;
i count(*) std(s1/s2)
...
...
@@ -1232,15 +1232,15 @@ i count(*) std(e1/e2)
1 4 0.000000000000000000000000000000
2 4 0.000000000000000000000000000000
3 4 0.000000000000000000000000000000
select
std(s1/s2
) from bug22555;
std(s1/s2
)
0.2132576358664934
05751853629226
select
round(std(s1/s2), 17
) from bug22555;
round(std(s1/s2), 17
)
0.2132576358664934
1
select std(o1/o2) from bug22555;
std(o1/o2)
0.21325763586649
select
std(e1/e2
) from bug22555;
std(e1/e2
)
0.2132576358664934
05751853629226
select
round(std(e1/e2), 17
) from bug22555;
round(std(e1/e2), 17
)
0.2132576358664934
1
set @@div_precision_increment=@saved_div_precision_increment;
drop table bug22555;
create table bug22555 (s smallint, o double, e decimal);
...
...
mysql-test/t/func_group.test
View file @
4d894264
...
...
@@ -764,16 +764,16 @@ set div_precision_increment=19;
select
i
,
count
(
*
),
std
(
s1
/
s2
)
from
bug22555
group
by
i
order
by
i
;
select
i
,
count
(
*
),
std
(
o1
/
o2
)
from
bug22555
group
by
i
order
by
i
;
select
i
,
count
(
*
),
std
(
e1
/
e2
)
from
bug22555
group
by
i
order
by
i
;
select
std
(
s1
/
s2
)
from
bug22555
;
select
round
(
std
(
s1
/
s2
),
17
)
from
bug22555
;
select
std
(
o1
/
o2
)
from
bug22555
;
select
std
(
e1
/
e2
)
from
bug22555
;
select
round
(
std
(
e1
/
e2
),
17
)
from
bug22555
;
set
div_precision_increment
=
20
;
select
i
,
count
(
*
),
std
(
s1
/
s2
)
from
bug22555
group
by
i
order
by
i
;
select
i
,
count
(
*
),
std
(
o1
/
o2
)
from
bug22555
group
by
i
order
by
i
;
select
i
,
count
(
*
),
std
(
e1
/
e2
)
from
bug22555
group
by
i
order
by
i
;
select
std
(
s1
/
s2
)
from
bug22555
;
select
round
(
std
(
s1
/
s2
),
17
)
from
bug22555
;
select
std
(
o1
/
o2
)
from
bug22555
;
select
std
(
e1
/
e2
)
from
bug22555
;
select
round
(
std
(
e1
/
e2
),
17
)
from
bug22555
;
set
@@
div_precision_increment
=@
saved_div_precision_increment
;
drop
table
bug22555
;
...
...
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