Skip to content

Commit 595d4ef

Browse files
feat: SessionStatement with options
Signed-off-by: Andreas Reichel <[email protected]>
1 parent 55a6c46 commit 595d4ef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/net/sf/jsqlparser/statement/SessionStatement.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@ public Set<String> getOptionKeySet() {
8484
return options.keySet();
8585
}
8686

87-
public Set<Map.Entry<String, String>> getOptions() {
87+
public Map<String, String> getOptions() {
88+
return options;
89+
}
90+
91+
public Set<Map.Entry<String, String>> getOptionEntrySet() {
8892
return options.entrySet();
8993
}
9094

0 commit comments

Comments
 (0)