You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jg...@apache.org on 2022/06/10 22:42:31 UTC

[incubator-age] branch master updated: fix regression tests to fix issues on mac with trigonometric functions (#224)

This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-age.git


The following commit(s) were added to refs/heads/master by this push:
     new 165ff8d  fix regression tests to fix issues on mac with trigonometric functions (#224)
165ff8d is described below

commit 165ff8d6c373275ee205981e97f7cbcdece7eda9
Author: Shoaib <mu...@gmail.com>
AuthorDate: Sat Jun 11 00:42:27 2022 +0200

    fix regression tests to fix issues on mac with trigonometric functions (#224)
---
 regress/expected/expr.out | 64 +++++++++++++++++++++++------------------------
 regress/sql/expr.sql      | 16 ++++++------
 2 files changed, 40 insertions(+), 40 deletions(-)

diff --git a/regress/expected/expr.out b/regress/expected/expr.out
index 0bcdf6a..06ebb3d 100644
--- a/regress/expected/expr.out
+++ b/regress/expected/expr.out
@@ -3634,60 +3634,60 @@ ERROR:  replace() unsupported argument type 23
 --
 -- sin, cos, tan, cot
 --
-SELECT * FROM cypher('expr', $$
+SELECT sin = results FROM cypher('expr', $$
     RETURN sin(3.1415)
 $$) AS (results agtype), sin(3.1415);
-       results        |         sin          
-----------------------+----------------------
- 9.26535896604903e-05 | 9.26535896604903e-05
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM cypher('expr', $$
+SELECT cos = results FROM cypher('expr', $$
     RETURN cos(3.1415)
 $$) AS (results agtype), cos(3.1415);
-      results       |        cos         
---------------------+--------------------
- -0.999999995707656 | -0.999999995707656
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM cypher('expr', $$
+SELECT tan = results FROM cypher('expr', $$
     RETURN tan(3.1415)
 $$) AS (results agtype), tan(3.1415);
-        results        |          tan          
------------------------+-----------------------
- -9.26535900581913e-05 | -9.26535900581913e-05
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM cypher('expr', $$
+SELECT cot = results FROM cypher('expr', $$
     RETURN cot(3.1415)
 $$) AS (results agtype), cot(3.1415);
-      results      |        cot        
--------------------+-------------------
- -10792.8899395258 | -10792.8899395258
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM sin(3.1415), age_sin(3.1415);
-         sin          |       age_sin        
-----------------------+----------------------
- 9.26535896604903e-05 | 9.26535896604903e-05
+SELECT sin = age_sin FROM sin(3.1415), age_sin(3.1415);
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM cos(3.1415), age_cos(3.1415);
-        cos         |      age_cos       
---------------------+--------------------
- -0.999999995707656 | -0.999999995707656
+SELECT cos = age_cos FROM cos(3.1415), age_cos(3.1415);
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM tan(3.1415), age_tan(3.1415);
-          tan          |        age_tan        
------------------------+-----------------------
- -9.26535900581913e-05 | -9.26535900581913e-05
+SELECT tan = age_tan FROM tan(3.1415), age_tan(3.1415);
+ ?column? 
+----------
+ t
 (1 row)
 
-SELECT * FROM cot(3.1415), age_cot(3.1415);
-        cot        |      age_cot      
--------------------+-------------------
- -10792.8899395258 | -10792.8899395258
+SELECT cot = age_cot FROM cot(3.1415), age_cot(3.1415);
+ ?column? 
+----------
+ t
 (1 row)
 
 -- should return null
diff --git a/regress/sql/expr.sql b/regress/sql/expr.sql
index b653575..8a9fa45 100644
--- a/regress/sql/expr.sql
+++ b/regress/sql/expr.sql
@@ -1557,22 +1557,22 @@ SELECT * FROM age_replace('Hello', 1, 'E');
 --
 -- sin, cos, tan, cot
 --
-SELECT * FROM cypher('expr', $$
+SELECT sin = results FROM cypher('expr', $$
     RETURN sin(3.1415)
 $$) AS (results agtype), sin(3.1415);
-SELECT * FROM cypher('expr', $$
+SELECT cos = results FROM cypher('expr', $$
     RETURN cos(3.1415)
 $$) AS (results agtype), cos(3.1415);
-SELECT * FROM cypher('expr', $$
+SELECT tan = results FROM cypher('expr', $$
     RETURN tan(3.1415)
 $$) AS (results agtype), tan(3.1415);
-SELECT * FROM cypher('expr', $$
+SELECT cot = results FROM cypher('expr', $$
     RETURN cot(3.1415)
 $$) AS (results agtype), cot(3.1415);
-SELECT * FROM sin(3.1415), age_sin(3.1415);
-SELECT * FROM cos(3.1415), age_cos(3.1415);
-SELECT * FROM tan(3.1415), age_tan(3.1415);
-SELECT * FROM cot(3.1415), age_cot(3.1415);
+SELECT sin = age_sin FROM sin(3.1415), age_sin(3.1415);
+SELECT cos = age_cos FROM cos(3.1415), age_cos(3.1415);
+SELECT tan = age_tan FROM tan(3.1415), age_tan(3.1415);
+SELECT cot = age_cot FROM cot(3.1415), age_cot(3.1415);
 -- should return null
 SELECT * FROM cypher('expr', $$
     RETURN sin(null)