Skip to content

Commit

Permalink
m-m-m/util#166: most obvious bug in oracle Java compiler with type in…
Browse files Browse the repository at this point in the history
…ference (2nd time)
  • Loading branch information
hohwille committed Feb 10, 2021
1 parent d5d1eb1 commit 7dff02e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,15 @@ protected void onAlias(String alias, Clause clause) {
}
}

@SuppressWarnings("unchecked")
@Override
public void onInto(Into<?, ?> into) {

write(" INTO ");
write(into.getEntityName());
if (into instanceof InsertInto) {
InsertInto<?> insertInto = (InsertInto<?>) into;
InsertValues<?> values = insertInto.values(PropertyAssignment.EMPTY_ARRAY);
InsertValues<?> values = insertInto.values((PropertyAssignment[]) PropertyAssignment.EMPTY_ARRAY);
String s = "(";
int i = 0;
for (PropertyAssignment<?> assignment : values.getAssignments()) {
Expand Down

0 comments on commit 7dff02e

Please sign in to comment.