diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2023-08-17 15:43:34 +0100 |
---|---|---|
committer | Daniel Hanrahan <daniel.hanrahan@est.tech> | 2023-08-17 15:17:15 +0000 |
commit | 996d0c2b23a70e62853632f0b644b3fe4d212143 (patch) | |
tree | b9f1dfb76dcae12074cf5fd42a553189af6f651b /docs/release-notes.rst | |
parent | a52b1825f99318181cd356dcde1b1db46c1098ac (diff) |
Update of top-level data node fails with SQL error
The error is caused by the fetch-descendants code using
ResultSet.getLong which returns a 'long' primitive instead
of a 'Long' object. Thus a parent ID of 'NULL' becomes '0',
which causes an error during update. To preserve the NULL
value, ResultSet.getObject must be used.
Issue-ID: CPS-1841
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Ida6837a04954cd3c23f0f2faabd7d0712d8ee19d
Diffstat (limited to 'docs/release-notes.rst')
-rwxr-xr-x | docs/release-notes.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/release-notes.rst b/docs/release-notes.rst index cd70cf8be7..3f672ad626 100755 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -39,6 +39,7 @@ Release Data Bug Fixes --------- 3.3.6 + - `CPS-1841 <https://jira.onap.org/browse/CPS-1841>`_ Update of top-level data node fails with exception Features -------- |