You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by ak...@apache.org on 2023/01/27 21:08:39 UTC

[age-website] branch master updated: Column as the result of ceil() Numeric Function renaming that to more (#127)

This is an automated email from the ASF dual-hosted git repository.

ako pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/master by this push:
     new d6fce383 Column as the result of ceil() Numeric Function renaming that to more (#127)
d6fce383 is described below

commit d6fce383d0d96416bc0e6e3b178bf7d6129812b8
Author: fatima <63...@users.noreply.github.com>
AuthorDate: Fri Jan 27 21:08:34 2023 +0000

    Column as the result of ceil() Numeric Function renaming that to more (#127)
    
    meaningful name "ceil_value".
---
 docs/functions/numeric_functions.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/functions/numeric_functions.md b/docs/functions/numeric_functions.md
index 77a23f3c..6de71279 100644
--- a/docs/functions/numeric_functions.md
+++ b/docs/functions/numeric_functions.md
@@ -22,7 +22,7 @@ Query:
 SELECT *
 FROM cypher('graph_name', $$
     RETURN rand()
-$$) as (r agtype);
+$$) as (random_number agtype);
 ```
 
 
@@ -33,7 +33,7 @@ Result:
 
 <table>
   <tr>
-   <td>r
+   <td>random_number
    </td>
   </tr>
   <tr>
@@ -176,7 +176,7 @@ Query:
 SELECT *
 FROM cypher('graph_name', $$
     RETURN ceil(0.1)
-$$) as (cil agtype);
+$$) as (ceil_value agtype);
 ```
 
 
@@ -187,7 +187,7 @@ Result:
 
 <table>
   <tr>
-   <td> cil
+   <td> ceil_value
    </td>
   </tr>
   <tr>