summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik <henrik.hoiness@online.no>2018-08-07 12:34:32 +0200
committerHenrik <henrik.hoiness@online.no>2018-08-07 12:34:32 +0200
commitc332574e0b74f208da85c14dc41bdaa8f915c6a6 (patch)
tree6645e974cbb9b34c3f3f6ef540b3e93d9dd23fc1
parentdfca30f3691a3a637fb5ee34000126c597f5f6aa (diff)
Added urls for the Select Reference
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/Select.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/Select.java b/container-search/src/main/java/com/yahoo/search/query/Select.java
index e35eeb57278..3ffc6bddb24 100644
--- a/container-search/src/main/java/com/yahoo/search/query/Select.java
+++ b/container-search/src/main/java/com/yahoo/search/query/Select.java
@@ -67,7 +67,7 @@ public class Select implements Cloneable {
}
- /** Set the where-clause for the query. Must be a JSON-string, with the format described in the Select Reference doc. */
+ /** Set the where-clause for the query. Must be a JSON-string, with the format described in the Select Reference doc - https://docs.vespa.ai/documentation/reference/select-reference.html. */
public void setWhere(String where) {
this.where = where;
model.setType(SELECT);
@@ -83,7 +83,7 @@ public class Select implements Cloneable {
}
- /** Set the grouping-string for the query. Must be a JSON-string, with the format described in the Select Reference doc. */
+ /** Set the grouping-string for the query. Must be a JSON-string, with the format described in the Select Reference doc - https://docs.vespa.ai/documentation/reference/select-reference.html. */
public void setGrouping(String grouping){
this.grouping = grouping;
SelectParser parser = (SelectParser) ParserFactory.newInstance(Query.Type.SELECT, new ParserEnvironment());