Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Perl-8.4.1
-
Component/s: Perl
-
Labels:None
Description
Test Build:CUBRID 2008 R4.0 (8.4.0.2019) (64bit release build for linux_gnu)
OS: Linux 64
Description: Result of "SELECT 4 + '5.2'" will be round
Repro Steps:
perl simple_execute_01.pl
Actual result
not ok 3 - value3 ok # Failed test 'value3 ok' # at simple_execute_01.pl line 46. row_ref3 is 9 # Looks like you failed 1 test of 3.
Expect result
csql> SELECT 4 + '5.2';
=== <Result of SELECT Command in Line 3> ===
4+'5.2'
==========================
9.199999999999999e+00
1 rows selected.
Result of "SELECT 4 + '5.2'" will be 9.2 in our driver.