Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] Fix for Bug#210936 - Self mappings: attribute mapping not correctly populating parent record

All,

Please review the fix for the following bug and provide any feedback you may have:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=210936


Bug summary:

Self mappings as attributes are not populating properly:
-- expected:
<plsql-call id="1">
   <arguments>
      <argument jdbc-type="NUMERIC_TYPE">
         <name>X</name>
      </argument>
   </arguments>
</plsql-call id="1">

-- actual:
<plsql-call id="1">
   <arguments>
      <argument>
         <name>X</name> jdbc-type="NUMERIC_TYPE"
      </argument>
   </arguments>
</plsql-call id="1">
--

Oracle
David McCann | Principal Software Engineer | TopLink Product
Oracle Corporation Canada
45 O'Connor Street, Suite 400
Ottawa, Ontario K1P 1A4
Canada
613.288.4636
613.238.2818 (fax)


Back to the top