You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plugin API is missing the clientUpdateByPrimaryKeyMethodGenerated method of the dynamic SQL runtime, and the callPlugins method of the UpdateByPrimaryKeyMethodGenerator class calls the clientUpdateByPrimaryKeyWithBLOBsMethodGenerated method.
The text was updated successfully, but these errors were encountered:
There are two plugin methods "clientUpdateByPrimaryKeyWithoutBLOBsMethodGenerated" and "clientUpdateByPrimaryKeyWithBLOBsMethodGenerated". My thinking about it was that the dynamic SQL runtime does not make a distinction between "with BLOBs" and "without BLOBs", so the "with BLOBs" plugin method was accurate in all cases - the "without BLOBs" method would be inaccurate if the class actually had BLOB fields.
OK, understood.
Is it possible to add a clientUpdateByPrimaryKeyMethodGenerated method and call it in the UpdateByPrimaryKeyMethodGenerator class callPlugins method.
For compatibility clientUpdateByPrimaryKeyMethodGenerated calls clientUpdateByPrimaryKeyWithBLOBsMethodGenerated method by default.
The plugin API is missing the clientUpdateByPrimaryKeyMethodGenerated method of the dynamic SQL runtime, and the callPlugins method of the UpdateByPrimaryKeyMethodGenerator class calls the clientUpdateByPrimaryKeyWithBLOBsMethodGenerated method.
The text was updated successfully, but these errors were encountered: