Skip to content

3.8 index estimates flag #376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
javadoc upd
  • Loading branch information
rashtao committed Apr 12, 2021
commit 3115d00d3e65ee40122adc211e956d64ed5f2f99
1 change: 1 addition & 0 deletions src/main/java/com/arangodb/model/HashIndexOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public HashIndexOptions deduplicate(final Boolean deduplicate) {
* @param estimates
* This attribute controls whether index selectivity estimates are maintained for the index. Default: {@code
* true}
* @since ArangoDB 3.8
*/
public HashIndexOptions estimates(final Boolean estimates) {
this.estimates = estimates;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public PersistentIndexOptions sparse(final Boolean sparse) {
* @param estimates
* This attribute controls whether index selectivity estimates are maintained for the index. Default: {@code
* true}
* @since ArangoDB 3.8
*/
public PersistentIndexOptions estimates(final Boolean estimates) {
this.estimates = estimates;
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/arangodb/model/SkiplistIndexOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public SkiplistIndexOptions deduplicate(final Boolean deduplicate) {
* @param estimates
* This attribute controls whether index selectivity estimates are maintained for the index. Default: {@code
* true}
* @since ArangoDB 3.8
*/
public SkiplistIndexOptions estimates(final Boolean estimates) {
this.estimates = estimates;
Expand Down