Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1586#discussion_r191958300
--- Diff: core/sql/generator/GenPreCode.cpp ---
@@ -4520,7 +4520,9 @@ RelExpr * GenericUpdate::preCodeGen(Generator *
generator,
{
oltOptInfo().setOltOpt(FALSE);
generator->oltOptInfo()->setOltOpt(FALSE);
- generator->setAqrEnabled(FALSE);
+ //enabling AQR to take care of the lock conflict error 8558 that
+ // should be retried.
+ // generator->setAqrEnabled(FALSE);
--- End diff --
How would AQR work for an INSERT/SELECT of one table into another where a
LOB column is being copied?
---