Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Cannot Reproduce
-
5.5.1
-
None
Description
Artifacts: https://cspkg.s3.amazonaws.com/index.html?prefix=develop-1.5/cron/1233/centos7/
Columnstore:
CREATE TABLE t1 (x INT, y MEDIUMINT)ENGINE=Columnstore; |
INSERT INTO t1 VALUES (20, 1),(39, 2),(48, 3),(57, 4),(66, 5),(75, 6),(84, 7); |
SELECT CORR(y, x) FROM t1; |
+--------------------+ |
| CORR(y, x) |
|
+--------------------+ |
| 0.9907002406503416 |
|
+--------------------+ |
Innodb:
DROP TABLE IF EXISTS t1; |
CREATE TABLE t1 (x INT, y MEDIUMINT); |
INSERT INTO t1 VALUES (20, 1),(39, 2),(48, 3),(57, 4),(66, 5),(75, 6),(84, 7); |
SELECT CORR(y, x) FROM t1; |
+--------------------+ |
| CORR(y, x) |
|
+--------------------+ |
| 0.9907002406503415 |
|
+--------------------+ |
The results match with Innodb for builds under develop branch-
https://cspkg.s3.amazonaws.com/index.html?prefix=develop/cron/1232
Attachments
Issue Links
- relates to
-
MCOL-4431 regr_r2() and corr() outputs differ from the example DBMS
- Closed