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 withoutTableColumnMetaDataAccess() and includeSynonymsForTableColumnMetaData() methods in SimpleJdbcInsert incorrectly declare a SimpleJdbcInsertOperations return type, which breaks method chaining when the instance is declared to be of type SimpleJdbcInsert.
They should benefit from covariant return types and declare SimpleJdbcInsert like the rest of the builder/configuration methods in SimpleJdbcInsert.
The text was updated successfully, but these errors were encountered:
The
withoutTableColumnMetaDataAccess()
andincludeSynonymsForTableColumnMetaData()
methods inSimpleJdbcInsert
incorrectly declare aSimpleJdbcInsertOperations
return type, which breaks method chaining when the instance is declared to be of typeSimpleJdbcInsert
.They should benefit from covariant return types and declare
SimpleJdbcInsert
like the rest of the builder/configuration methods inSimpleJdbcInsert
.The text was updated successfully, but these errors were encountered: