suche 36x36
Latest versionsfixlist
11.1.0.7 FixList
10.5.0.9 FixList
10.1.0.6 FixList
9.8.0.5 FixList
9.7.0.11 FixList
9.5.0.10 FixList
9.1.0.12 FixList
Have problems? - contact us.
Register for free anmeldung-x26
Contact form kontakt-x26

DB2 - Problem description

Problem IT21897 Status: Closed

WRONG RESULT IS POSSIBLE WHEN CODEUNITS 32 IS USED IN A ROW DATATYPE
ASSIGNMENT AND CAST IS USED

product:
DB2 FOR LUW / DB2FORLUW / A50 - DB2
Problem description:
In this example we should return 'ab'  because row has 
varchar(2 CODEUNITS32) - 2 characters, 
but we return 'abc' : 
 
create type rtype as row ( A varchar(2 CODEUNITS32) )@ 
 
create or replace function func001_row() 
 specific func001_row 
 returns varchar(2 CODEUNITS32) 
 language sql 
 no external action 
 begin 
   declare r rtype; -- 
   set r = ( cast('abc' as char(3)) );-- 
   return r.A; -- 
 end@ 
 
values func001_row()@
Problem Summary:
**************************************************************** 
* USERS AFFECTED:                                              * 
* All                                                          * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* See Error Description. Apply the fix or workaround           * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* See Error Description. Apply the fix or workaround           * 
****************************************************************
Local Fix:
avoid cast: 
 
create or replace function func001() 
  specific func001 
  returns varchar(2 codeunits32) 
  language sql 
  no external action 
  begin 
    declare r rtype; -- 
    set r.A = 'abc';-- 
    return r.A; -- 
  end@ 
 
values func001()@ 
 
or avoid row data type: 
create or replace function func001() 
specific func001 
returns VARCHAR(2 CODEUNITS32) 
language sql 
no external action 
begin 
  return cast('abc' as char(3)) ;-- 
end@ 
 
values func001()@
Solution
See Error Description. Apply the fix or workaround
Workaround
not known / see Local fix
Timestamps
Date  - problem reported    :
Date  - problem closed      :
Date  - last modified       :
08.08.2017
27.09.2017
12.10.2017
Problem solved at the following versions (IBM BugInfos)
Problem solved according to the fixlist(s) of the following version(s)