File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 ** {
99 expr_type : {"returns" : exp .DataType .Type .FLOAT }
1010 for expr_type in {
11+ exp .Acos ,
12+ exp .Asin ,
13+ exp .Atan ,
14+ exp .Atan2 ,
1115 exp .Cos ,
1216 exp .Cot ,
1317 exp .Sin ,
Original file line number Diff line number Diff line change @@ -5500,6 +5500,46 @@ FLOAT;
55005500COT(tbl .float_col );
55015501FLOAT;
55025502
5503+ # dialect: tsql
5504+ ATN2(tbl .int_col , tbl .int_col );
5505+ FLOAT;
5506+
5507+ # dialect: tsql
5508+ ATN2(tbl .int_col , tbl .float_col );
5509+ FLOAT;
5510+
5511+ # dialect: tsql
5512+ ATN2(tbl .float_col , tbl .int_col );
5513+ FLOAT;
5514+
5515+ # dialect: tsql
5516+ ATN2(tbl .float_col , tbl .float_col );
5517+ FLOAT;
5518+
5519+ # dialect: tsql
5520+ ASIN(tbl .int_col );
5521+ FLOAT;
5522+
5523+ # dialect: tsql
5524+ ASIN(tbl .float_col );
5525+ FLOAT;
5526+
5527+ # dialect: tsql
5528+ ACOS(tbl .int_col );
5529+ FLOAT;
5530+
5531+ # dialect: tsql
5532+ ACOS(tbl .float_col );
5533+ FLOAT;
5534+
5535+ # dialect: tsql
5536+ ATAN(tbl .int_col );
5537+ FLOAT;
5538+
5539+ # dialect: tsql
5540+ ATAN(tbl .float_col );
5541+ FLOAT;
5542+
55035543-- ------------------------------------
55045544-- MySQL
55055545-- ------------------------------------
You can’t perform that action at this time.
0 commit comments