Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Perl-8.4.1, Perl-Aprium, Perl-8.4.3, Perl-8.4.4
-
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 inserting "NULL values" into table isn't correct.
Repro Steps:
perl null.pl pl_db
Actual Result:
[perl@NC-XQA-DEV09 DBI_CUBRID_TEST]$ csql -udba pl_db
CUBRID SQL Interpreter
Type `;help' for help messages.
csql> select * from tbl;
=== <Result of SELECT Command in Line 1> ===
id name age
================================================
1 'zhangsan ' 30
1 'Joe ' 0
2 rows selected.
Current transaction has been committed.
1 command(s) successfully processed.
csql>
Expect Result:
[perl@NC-XQA-DEV09 DBI_CUBRID_TEST]$ csql -udba pl_db
CUBRID SQL Interpreter
Type `;help' for help messages.
csql> select * from tbl;
=== <Result of SELECT Command in Line 1> ===
id name age
================================================
1 'zhangsan ' 30
1 'Joe ' NULL
2 rows selected.
Current transaction has been committed.
1 command(s) successfully processed.
csql>
Add the support of binding NULL value.
Fix in trunk. Revision: 1359