Skip to content

Commit 37fbb93

Browse files
committed
removed enterprise edition checks
1 parent aa7c1f8 commit 37fbb93

25 files changed

+59
-69
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ commands:
4949
parameters:
5050
docker-img:
5151
type: 'string'
52-
default: 'docker.io/arangodb/arangodb:latest'
52+
default: 'docker.io/arangodb/enterprise:latest'
5353
topology:
5454
type: 'string'
5555
default: 'single'
@@ -131,7 +131,7 @@ jobs:
131131
parameters:
132132
docker-img:
133133
type: 'string'
134-
default: 'docker.io/arangodb/arangodb:latest'
134+
default: 'docker.io/arangodb/enterprise:latest'
135135
topology:
136136
type: 'string'
137137
default: 'single'
@@ -199,7 +199,7 @@ jobs:
199199
parameters:
200200
docker-img:
201201
type: 'string'
202-
default: 'docker.io/arangodb/arangodb:latest'
202+
default: 'docker.io/arangodb/enterprise:latest'
203203
topology:
204204
type: 'string'
205205
default: 'single'
@@ -454,7 +454,7 @@ workflows:
454454
matrix:
455455
parameters:
456456
docker-img:
457-
- 'docker.io/arangodb/arangodb:3.12'
457+
- 'docker.io/arangodb/enterprise:3.12'
458458
topology:
459459
- 'single'
460460
args:
@@ -464,7 +464,7 @@ workflows:
464464
matrix:
465465
parameters:
466466
docker-img:
467-
- 'docker.io/arangodb/arangodb:3.12'
467+
- 'docker.io/arangodb/enterprise:3.12'
468468
topology:
469469
- 'cluster'
470470
args:

core/src/main/java/com/arangodb/entity/CollectionPropertiesEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class CollectionPropertiesEntity extends CollectionEntity {
3838
private Collection<String> shardKeys;
3939
private String shardingStrategy; // cluster option
4040
private String smartGraphAttribute;
41-
private String smartJoinAttribute; // enterprise option
41+
private String smartJoinAttribute;
4242
private Integer writeConcern;
4343
private Long count;
4444

core/src/main/java/com/arangodb/entity/EdgeDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public Options getOptions() {
7171

7272
/**
7373
* @param satellites collection names that will be used to create SatelliteCollections
74-
* for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only). Each array element
74+
* for a Hybrid (Disjoint) SmartGraph. Each array element
7575
* must be a valid collection name. The collection type cannot be modified later.
7676
* @return this
7777
* @since ArangoDB 3.9.0

core/src/main/java/com/arangodb/entity/GraphEntity.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ public String getRev() {
8686
}
8787

8888
/**
89-
* @return The replication factor used for every new collection in the graph. Can also be satellite for a SmartGraph
90-
* (Enterprise Edition only).
89+
* @return The replication factor used for every new collection in the graph. Can also be satellite for a SmartGraph.
9190
*/
9291
public ReplicationFactor getReplicationFactor() {
9392
return replicationFactor;
@@ -104,28 +103,28 @@ public Integer getWriteConcern() {
104103
}
105104

106105
/**
107-
* @return Whether the graph is a SmartGraph (Enterprise Edition only).
106+
* @return Whether the graph is a SmartGraph.
108107
*/
109108
public Boolean getIsSmart() {
110109
return isSmart;
111110
}
112111

113112
/**
114-
* @return Whether the graph is a Disjoint SmartGraph (Enterprise Edition only).
113+
* @return Whether the graph is a Disjoint SmartGraph.
115114
*/
116115
public Boolean getIsDisjoint() {
117116
return isDisjoint;
118117
}
119118

120119
/**
121-
* @return Name of the sharding attribute in the SmartGraph case (Enterprise Edition only).
120+
* @return Name of the sharding attribute in the SmartGraph case.
122121
*/
123122
public String getSmartGraphAttribute() {
124123
return smartGraphAttribute;
125124
}
126125

127126
/**
128-
* @return Flag if the graph is a SatelliteGraph (Enterprise Edition only) or not.
127+
* @return Flag if the graph is a SatelliteGraph or not.
129128
*/
130129
public Boolean getIsSatellite() {
131130
return isSatellite;

core/src/main/java/com/arangodb/entity/InvertedIndexField.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public Boolean getCache() {
111111
* @param cache Enable this option to always cache the field normalization values in memory for this specific field.
112112
* This can improve the performance of scoring and ranking queries. Otherwise, these values are
113113
* memory-mapped and it is up to the operating system to load them from disk into memory and to evict
114-
* them from memory. (Enterprise Edition only)
114+
* them from memory.
115115
* @return this
116116
* @since ArangoDB 3.10.2
117117
*/
@@ -142,7 +142,7 @@ public Collection<InvertedIndexField> getNested() {
142142
* @param nested Index the specified sub-objects that are stored in an array. Other than with the fields property,
143143
* the values get indexed in a way that lets you query for co-occurring values. For example, you can
144144
* search the sub-objects and all the conditions need to be met by a single sub-object instead of
145-
* across all of them. This property is available in the Enterprise Edition only.
145+
* across all of them.
146146
* @return this
147147
*/
148148
public InvertedIndexField nested(InvertedIndexField... nested) {

core/src/main/java/com/arangodb/entity/InvertedIndexPrimarySort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public Boolean getCache() {
5252
* @param cache If you enable this option, then the primary sort columns are always cached in memory. This can
5353
* improve the performance of queries that utilize the primary sort order. Otherwise, these values are
5454
* memory-mapped and it is up to the operating system to load them from disk into memory and to evict
55-
* them from memory (Enterprise Edition only).
55+
* them from memory.
5656
* @return this
5757
* @since ArangoDB 3.10.2
5858
*/

core/src/main/java/com/arangodb/entity/arangosearch/AnalyzerFeature.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public enum AnalyzerFeature {
4242
position,
4343

4444
/**
45-
* enable search highlighting capabilities (Enterprise Edition only). If present, then the `position` and `frequency` features are also required.
45+
* enable search highlighting capabilities. If present, then the `position` and `frequency` features are also required.
4646
* @since ArangoDB 3.10
4747
*/
4848
offset

core/src/main/java/com/arangodb/entity/arangosearch/ArangoSearchPropertiesEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public Collection<StoredValue> getStoredValues() {
124124

125125
/**
126126
* @return An array of strings defining optimized sort expressions.
127-
* @since ArangoDB 3.11, Enterprise Edition only
127+
* @since ArangoDB 3.11
128128
*/
129129
public Collection<String> getOptimizeTopK() {
130130
return optimizeTopK;

core/src/main/java/com/arangodb/entity/arangosearch/CollectionLink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public CollectionLink inBackground(final Boolean inBackground) {
143143
* and it is up to the operating system to load them from disk into memory and to evict them from
144144
* memory.
145145
* @return link
146-
* @since ArangoDB 3.9.5, Enterprise Edition only
146+
* @since ArangoDB 3.9.5
147147
*/
148148
public CollectionLink cache(final Boolean cache) {
149149
this.cache = cache;

core/src/main/java/com/arangodb/entity/arangosearch/FieldLink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public FieldLink inBackground(final Boolean inBackground) {
120120
* and it is up to the operating system to load them from disk into memory and to evict them from
121121
* memory.
122122
* @return link
123-
* @since ArangoDB 3.9.5, Enterprise Edition only
123+
* @since ArangoDB 3.9.5
124124
*/
125125
public FieldLink cache(final Boolean cache) {
126126
this.cache = cache;

0 commit comments

Comments
 (0)