Skip to content

Commit

Permalink
HHH-7725 - Make handling multi-table bulk HQL operations more pluggable
Browse files Browse the repository at this point in the history
(cherry picked from commit df80923)
  • Loading branch information
sebersole committed Oct 31, 2012
1 parent 2729d46 commit e3239ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import java.sql.PreparedStatement;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.util.Map;

import org.jboss.logging.Logger;

Expand Down Expand Up @@ -55,7 +56,7 @@ public class TemporaryTableBulkIdStrategy implements MultiTableBulkIdStrategy {
);

@Override
public void prepare(Dialect dialect, JdbcConnectionAccess connectionAccess, Mappings mappings, Mapping mapping) {
public void prepare(Dialect dialect, JdbcConnectionAccess connectionAccess, Mappings mappings, Mapping mapping, Map settings) {
// nothing to do
}

Expand Down

0 comments on commit e3239ae

Please sign in to comment.