10000 Make AqlQueryOptions#Options serializable · machak/arangodb-java-driver@e665bbb · GitHub
[go: up one dir, main page]

Skip to content

Commit e665bbb

Browse files
author
mpv1989
committed
Make AqlQueryOptions#Options serializable
1 parent 9d65913 commit e665bbb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/com/arangodb/model/AqlQueryOptions.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,10 @@ private Options getOptions() {
397397
return options;
398398
}
399399

400-
private static class Options {
400+
private static class Options implements Serializable {
401+
402+
private static final long serialVersionUID = 1L;
403+
401404
private Boolean failOnWarning;
402405
private Boolean profile;
403406
private Long maxTransactionSize;

0 commit comments

Comments
 (0)
0