You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/06/07 17:40:08 UTC

lucene-solr:branch_6_6: Ref Guide: remove placeholders

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_6 664443a17 -> 0238eeef2


Ref Guide: remove placeholders


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/0238eeef
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/0238eeef
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/0238eeef

Branch: refs/heads/branch_6_6
Commit: 0238eeef25223310ea53d4ee623c8a22a0a8191e
Parents: 664443a
Author: Cassandra Targett <ct...@apache.org>
Authored: Wed Jun 7 12:39:37 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Wed Jun 7 12:39:37 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/stream-evaluators.adoc | 43 ---------------------
 1 file changed, 43 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0238eeef/solr/solr-ref-guide/src/stream-evaluators.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-evaluators.adoc b/solr/solr-ref-guide/src/stream-evaluators.adoc
index 2c2a2ae..d945a6d 100644
--- a/solr/solr-ref-guide/src/stream-evaluators.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluators.adoc
@@ -20,10 +20,6 @@
 // specific language governing permissions and limitations
 // under the License.
 
-== analyze
-
-// TODO
-
 == abs
 
 The `abs` function will return the absolute value of the provided single parameter. The `abs` function will fail to execute if the value is non-numeric. If a null value is found then null will be returned as the result.
@@ -159,44 +155,6 @@ sub(fieldA,div(fieldA,fieldB)) // value of fieldA - (value of fieldA / value of
 if(gt(fieldA,fieldB),sub(fieldA,fieldB),sub(fieldB,fieldA)) // if fieldA > fieldB then fieldA - fieldB, else fieldB - field
 ----
 
-== pow
-//TODO
-
-== mod
-//TODO
-
-=== ceil
-//TODO
-
-== floor
-//TODO
-
-== sin
-//TODO
-
-== asin
-//TODO
-
-== sinh
-//TODO
-
-== cos
-//TODO
-
-== acos
-//TODO
-
-== atan
-//TODO
-
-== round
-//TODO
-
-== sqrt
-//TODO
-
-== cbrt
-
 == and
 
 The `and` function will return the logical AND of at least 2 boolean parameters. The function will fail to execute if any parameters are non-boolean or null. Returns a boolean value.
@@ -432,4 +390,3 @@ raw(45) // 45
 raw(true) // "true" (note: this returns the string "true" and not the boolean true)
 eq(raw(fieldA), fieldA) // true if the value of fieldA equals the string "fieldA"
 ----
-