We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67140c commit d21b8ebCopy full SHA for d21b8eb
src/test/java/examples/joins/UserDynamicSQLSupport.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2021 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@ public static final class User extends AliasableSqlTable<User> {
32
public final SqlColumn<Integer> parentId = column("parent_id", JDBCType.INTEGER);
33
34
public User() {
35
- super("User", User::new);
+ super(() -> "User", User::new);
36
}
37
38
0 commit comments