There was an error while loading. Please reload this page.
1 parent c8ef0c1 commit 443b422Copy full SHA for 443b422
1 file changed
src/main/java/net/sf/jsqlparser/statement/lock/LockStatement.java
@@ -24,6 +24,12 @@
24
*/
25
public class LockStatement implements Statement {
26
27
+ private final List<Target> targets = new ArrayList<>();
28
+ private boolean useTableKeyword = true;
29
+ private LockMode lockMode;
30
+ private boolean noWait;
31
+ private Long waitSeconds;
32
+
33
public enum Scope {
34
DEFAULT, ONLY, INCLUDING_DESCENDANTS
35
}
@@ -59,12 +65,6 @@ public String toString() {
59
65
60
66
61
67
62
- private final List<Target> targets = new ArrayList<>();
63
- private boolean useTableKeyword = true;
64
- private LockMode lockMode;
- private boolean noWait;
- private Long waitSeconds;
-
68
public LockStatement() {}
69
70
/**
0 commit comments