-
Bug
-
Resolution: Done
-
Major
-
1.4.2.Final
-
None
-
False
-
False
-
Undefined
-
In 1.4.1 , during an update statement the CLOB fields were passing through , but after upgrading to 1.4.2 I am seeing only null for the CLOB fields. The columns in the table are defined as NCLOB and that in 1.4.1 the values of those columns are coming in as strings.
In 1.4.1
UPDATE Table1
SET INV_DESC = 'Test',
WHERE ID = 123;
"after”:\{“myTopic.Value":{"ID”:123,"INV_DESC":{"string":"Test"},
In 1.4.2
UPDATE Table1
SET INV_DESC = 'Test2',
WHERE ID = 123;
"after”:{“myTopic.Value":{"ID”:123,"INV_DESC”:null,
- relates to
-
DBZ-2948 Add support for RAW, LONG, LONG RAW, BLOB, and CLOB data types
- Closed