forked from apache/age
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE
86 lines (55 loc) · 2.67 KB
/
RELEASE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
Release Notes for AGE 0.3.0 (alpha)
The following functionality is included in this release.
Standard functions
Added support for standard functions.
1) Trigonometric functions
e, sqrt, exp, log, log10, degrees, radians, pi, sin, cos, tan,
asin, acos, atan, & atan2.
2) String functions
replace, split, left, right, substring, rTrim, lTrim, trim,
toUpper, toLower, reverse, & toString.
3) Numeric functions
rand, abs, ceil, floor, round, & sign.
User defined functions
Added support for user defined functions of the following forms.
1) schema.function(args)
Aggregate functions
Currently working on openCypher aggregate function support. This is not
complete nor fully implemented but the following functions are now
available for use.
1) min, max, stDev, stDevP, percentileCont, percentileDisc & count.
2) avg & sum are supported but their output is only of type float.
EXISTS clause
Added support for the EXISTS clause.
1) EXISTS(property)
2) EXISTS(pattern)
Property constraints
The MATCH clause now supports using property constraints.
SET clause
Added support for the SET clause.
1) Support for updating a single property value.
2) Multiple SET clauses can be used in a single query.
3) Implemented in MATCH, CREATE, and REMOVE clauses.
REMOVE clause
Added support for the REMOVE clause
1) Support for removing a single property value.
2) Multiple REMOVE clauses can be used in a single query.
3) Implemented in MATCH, CREATE, and SET clauses.
Define extension’s behavior when dropped.
Added a process to occur when the extension is dropped in postgres.