Update test

This commit is contained in:
Alexey Milovidov 2021-12-19 08:57:48 +03:00
parent d6ece47b7f
commit f6dc07b475
2 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
42.42 6.513 42.419169
42.42 3.4875 42.417263671875
1 0.8427007929497149 0.15729920705028513
42.42 115.60113124678627 1.6029995567009473e50
42.42 115.601131 1.603
0 0 1 0
3.14159265 0 -1 -0
1 1.5707963267948966 0 0.7853981633974483
@ -14,7 +14,7 @@
42.42 6.513 42.419169
42.42 3.4875 42.417263671875
1 0.8427007929497149 0.15729920705028513
42.42 115.60113124678627 1.6029995567009473e50
42.42 115.601131 1.603
0 0 1 0
3.14159265358979328 0 -1 -0
1 1.5707963267948966 0 0.7853981633974483
@ -24,7 +24,7 @@
42.42 6.513 42.419169
42.42 3.4875 42.417263671875
1 0.8427007929497149 0.15729920705028513
42.42 115.60113124678627 1.6029995567009473e50
42.42 115.601131 1.603
0 0 1 0
3.14159265358979 0 -1 -0
1 1.5707963267948966 0 0.7853981633974483

View File

@ -5,7 +5,7 @@ SELECT toDecimal32('42.42', 4) AS x, toDecimal32(log10(x), 4) AS y, round(exp10(
SELECT toDecimal32('42.42', 4) AS x, toDecimal32(sqrt(x), 3) AS y, y * y;
SELECT toDecimal32('42.42', 4) AS x, toDecimal32(cbrt(x), 4) AS y, toDecimal64(y, 4) * y * y;
SELECT toDecimal32('1.0', 5) AS x, erf(x), erfc(x);
SELECT toDecimal32('42.42', 4) AS x, lgamma(x), tgamma(x);
SELECT toDecimal32('42.42', 4) AS x, round(lgamma(x), 6), round(tgamma(x) / 1e50, 6);
SELECT toDecimal32('0.0', 2) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);
SELECT toDecimal32(pi(), 8) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);
@ -19,7 +19,7 @@ SELECT toDecimal64('42.42', 4) AS x, toDecimal32(log10(x), 4) AS y, round(exp10(
SELECT toDecimal64('42.42', 4) AS x, toDecimal32(sqrt(x), 3) AS y, y * y;
SELECT toDecimal64('42.42', 4) AS x, toDecimal32(cbrt(x), 4) AS y, toDecimal64(y, 4) * y * y;
SELECT toDecimal64('1.0', 5) AS x, erf(x), erfc(x);
SELECT toDecimal64('42.42', 4) AS x, lgamma(x), tgamma(x);
SELECT toDecimal64('42.42', 4) AS x, round(lgamma(x), 6), round(tgamma(x) / 1e50, 6);
SELECT toDecimal64('0.0', 2) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);
SELECT toDecimal64(pi(), 17) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);
@ -33,7 +33,7 @@ SELECT toDecimal128('42.42', 4) AS x, toDecimal32(log10(x), 4) AS y, round(exp10
SELECT toDecimal128('42.42', 4) AS x, toDecimal32(sqrt(x), 3) AS y, y * y;
SELECT toDecimal128('42.42', 4) AS x, toDecimal32(cbrt(x), 4) AS y, toDecimal64(y, 4) * y * y;
SELECT toDecimal128('1.0', 5) AS x, erf(x), erfc(x);
SELECT toDecimal128('42.42', 4) AS x, lgamma(x), tgamma(x);
SELECT toDecimal128('42.42', 4) AS x, round(lgamma(x), 6), round(tgamma(x) / 1e50, 6);
SELECT toDecimal128('0.0', 2) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);
SELECT toDecimal128(pi(), 14) AS x, round(sin(x), 8), round(cos(x), 8), round(tan(x), 8);