Details
Description
Description: The sql statement "evaluate length('abc') into var_len;" does not work in wellshell.
Test Version: 8.4.0.1008
Test Step:
cubrid> status
cubrid>
Current user : dba
Current database : demodb
Server version : 8.4.0.1008
Client version : 8.4.0
cubrid> evaluate length('abc') into var_len;
Command executed. (0.00 sec)
cubrid>
cubrid> select var_len;
Error -494: Semantic: var_len is not defined. select var_len
cubrid>
---------------------------------------------------------------------------
The expected result likes below:
csql> evaluate length('abc') into var_len;
=== <Result of EVALUATE Command in Line 1> ===
Result
=============
3
Current transaction has been committed.
1 command(s) successfully processed.
csql> select var_len;
=== <Result of SELECT Command in Line 1> ===
var_len
=============
3
1 rows selected.
Current transaction has been committed.
1 command(s) successfully processed.
csql>
Activity
| Field | Original Value | New Value |
|---|---|---|
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Won't Fix [ 2 ] |
This is a feature request. Webshell only executes simple SQL commands and has no memory for evaluating statements and retaining the results.