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.
SessionStatement
1 parent 55a6c46 commit 595d4efCopy full SHA for 595d4ef
src/main/java/net/sf/jsqlparser/statement/SessionStatement.java
@@ -84,7 +84,11 @@ public Set<String> getOptionKeySet() {
84
return options.keySet();
85
}
86
87
- public Set<Map.Entry<String, String>> getOptions() {
+ public Map<String, String> getOptions() {
88
+ return options;
89
+ }
90
+
91
+ public Set<Map.Entry<String, String>> getOptionEntrySet() {
92
return options.entrySet();
93
94
0 commit comments