Skip to content

Commit dc6dcc9

Browse files
committed
Advance to Apache AGE version 1.5.0
Updated the following files to advance the Apache AGE version to 1.5.0 modified: Makefile modified: README.md modified: RELEASE modified: age.control Corrected whitespace issues in - modified: sql/age_agtype.sql modified: sql/agtype_coercions.sql modified: sql/agtype_comparison.sql modified: sql/agtype_gin.sql modified: sql/agtype_operators.sql modified: sql/agtype_string.sql
1 parent 7cdd0ef commit dc6dcc9

10 files changed

+72
-52
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
MODULE_big = age
1919

20-
age_sql = age--1.4.0.sql
20+
age_sql = age--1.5.0.sql
2121

2222
OBJS = src/backend/age.o \
2323
src/backend/catalog/ag_catalog.o \
@@ -75,10 +75,10 @@ OBJS = src/backend/age.o \
7575

7676
EXTENSION = age
7777

78-
#SQLS = $(sort ($(wildcard sql/*.sql)))
78+
CLEANUP := $(shell rm age--?\.?\.?\.sql)
7979
SQLS := $(shell cat sql/sql_files)
80-
SQLS := $(addprefix sql/,$(SQLS))
81-
SQLS := $(addsuffix .sql,$(SQLS))
80+
SQLS := $(addprefix sql/,$(SQLS))
81+
SQLS := $(addsuffix .sql,$(SQLS))
8282

8383
DATA_built = $(age_sql)
8484

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</a>
3131
&nbsp;
3232
<a href="https://github.com/apache/age/releases">
33-
<img src="https://img.shields.io/badge/Release-v1.4.0-FFA500?labelColor=gray&style=flat&link=https://github.com/apache/age/releases"/>
33+
<img src="https://img.shields.io/badge/Release-v1.5.0-FFA500?labelColor=gray&style=flat&link=https://github.com/apache/age/releases"/>
3434
</a>
3535
&nbsp;
3636
<a href="https://www.postgresql.org/docs/16/index.html">

RELEASE

+55-35
Original file line numberDiff line numberDiff line change
@@ -15,42 +15,62 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
Release Notes for Apache AGE release 1.4.0 for PostgreSQL version 15
18+
Release Notes for Apache AGE release 1.5.0 for PostgreSQL version 16
1919

20-
Apache AGE 1.4.0 - Release Notes
20+
Apache AGE 1.5.0 - Release Notes
2121

2222
NOTE: This is an initial release of Apache AGE for PostgreSQL version
23-
15. There are no upgrade scripts to this release.
23+
16. There are no upgrade scripts to this release.
2424

25-
Added license in Python driver README.md (#956)
26-
Added the toStringList() function (#1128)
27-
Added toBooleanList() (#1165)
28-
Added toFloatList() function (#1016)
29-
Added toIntegerList() function (#1025)
30-
Added regression tests for MATCH clause using labels only (#1019)
31-
Added REGTYPEOID to toString function (#1036)
32-
Added Dockerfile.dev & move docker-related files to "docker/" (#943)
33-
Fixed complex MERGE causes crash (#897) (#961)
34-
Fixed docker build files (#1104)
35-
Fixed case sensitivity on label usage of reserved keyword (#1040)
36-
Fixed issue 1000: Indexes created on WHERE (#1133)
37-
Fixed issue 1002: Invalid reuse of variables in MATCH clause (#1003)
38-
Fixed issue 1033: access operator on vle edge lists (#1037)
39-
Fixed issue 1043: ERROR: container must be an array or object (#1046)
40-
Fixed issue 1124: Segmentation fault when using specific tables (#1125)
41-
Fixed issue 395: ERROR: container is not an agtype array (#1039)
42-
Fixed issue 870: regarding orderability and added regression tests (#994)
43-
Fixed issue 876: column reference "_age_default_alias_0" is ambiguous (#931)
44-
Fixed issue 975: Invalid reuse of variables in CREATE clause (#977)
45-
Fixed issue 989: Impossible to create array with > 100 items (#1001)
46-
Fixed memory leak issues with age_load (#1142)
47-
Fixed memory leaks in MERGE (merge_edge & merge_vertex) (#958)
48-
Fixed MERGE crashes due to incorrect label type (#957)
49-
Fixed MERGE variable reuse (#997)
50-
Fixed misspellings in many AGE files (#985)
51-
Fixed warning messages in DockerHub builds. (#1075)
52-
Modified test_agtypes to view useful testing message (#992)
53-
Optimised Antlr4ResultHandler initialization (#1169)
54-
Updated CIs to pull correct image based on branch (#1105)
55-
Updated files, format, and version information (#1063)
56-
Updated README.
25+
Add additional index support and performance enhancements (#1232)
26+
Add an additional way to find a previous variable ref (#1450)
27+
Add auto apply labeler workflow for PRs (#1161)
28+
Add checks for array functions to recognize and decode VPC (#1064)
29+
Add concat || operator to agtype (#1198)
30+
Add exist(?, ?|, ?&) operators for agtype (#1218)
31+
Add missing dependency in cypher_expr.c (#1256)
32+
Add path extraction(#>, #>>)operators to agtype (#1224)
33+
Add support for chained expressions in CASE (#1431)
34+
Clean up agtype_to_int8, agtype_to_int4, & agtype_to_int2 (#1354)
35+
Clean up #included files in parser directory (#1465)
36+
Converted SQL main file into multiple files. (#1401)
37+
docs: Add to Docker setup (#1204)
38+
Extend access(->, ->>), addition and subtraction operators (#1258)
39+
Extend agtype containment operators (@>, <@) (#1285)
40+
Extend EXPLAIN and add config param to switch transformation of property filter (#1262)
41+
Fix ambiguous conditions (#1373)
42+
Fix DockerHub warning messages for latest (#1380)
43+
Fix issue #1045 - error using path var in WHERE (#1295)
44+
Fix Issue #1159 - Server terminates for SET plus-equal (#1160)
45+
Fix issue #1219 - MERGE not seeing previous clause var (#1441)
46+
Fix issue #1302 - crash on NULL input to UNWIND (#1304)
47+
Fix issue #1303: Server crashes on executing SELECT * FROM agtype(null); (#1317)
48+
Fix Issue #1305 - drop_label NULL cases (#1306)
49+
Fix Issue #1329 - agtype_to_int4 crash (#1339)
50+
Fix issue #1347 - unknow type of agtype container 0 (#1349)
51+
Fix issue #1389 - Server crash on using null operand for access operators (#1390)
52+
Fix issue #1393 - previous clause variables not seen with EXISTS (#1426)
53+
Fix issue #1398 - SET followed by DELETE does not delete (#1412)
54+
Fix issue #1399 EXISTS doesn't handle non-existent labels (#1400)
55+
Fix Issue #945 - incorrect count(*) return values (#1288)
56+
Fix typo in agtype_raw.h header guard (#1368)
57+
Implement chained expression order of operations (#1402)
58+
Implemented age_tail function (#1283)
59+
Implemented the toBooleanList() function (#1014)
60+
Implement EXISTS subquery for CASE (#1345)
61+
Master to PostgreSQL version 16 (#1451)
62+
Minor fix in `agtype_volatile_wrapper` function (#1172)
63+
Modify COUNT() to output agtype (#1311)
64+
Optimize performance of detach delete (#1271)
65+
py_driver : optimised Antlr4ResultHandler to improve time (#1107)
66+
Refactor Regression Tests for CASE statement (#1268)
67+
Refactor the IN operator to use '= ANY()' syntax (#1236)
68+
Removed unnecessary assignment (#1185)
69+
Remove redundant job from CIs (#1473)
70+
Remove unnecessary #include in src/backend/utils
71+
Updated age.control.
72+
Updated files, format, and version information.
73+
Updated Makefile.
74+
Updated RELEASE.
75+
Update README.md file for PostgreSQL version 16 support (#1463)
76+
Update the Python Driver (#1246)

age.control

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
default_version = '1.4.0'
18+
default_version = '1.5.0'
1919
comment = 'AGE database extension'
2020
module_pathname = '$libdir/age'
2121

sql/age_agtype.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
--
19+
20+
--
2121
-- agtype type and its support functions
2222
--
2323

sql/agtype_coercions.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
--
19+
20+
--
2121
-- agtype - type coercions
2222
--
2323
-- agtype -> text (explicit)

sql/agtype_comparison.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
--
19+
20+
--
2121
-- agtype - comparison operators (=, <>, <, >, <=, >=)
2222
--
2323

sql/agtype_gin.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
19+
2020
--
2121
-- agtype GIN support
2222
--

sql/agtype_operators.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
--
19+
20+
--
2121
-- Contains operators @> <@
2222
--
2323
CREATE FUNCTION ag_catalog.agtype_contains(agtype, agtype)

sql/agtype_string.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
--
19+
20+
--
2121
-- agtype - string matching (`STARTS WITH`, `ENDS WITH`, `CONTAINS`, & =~)
2222
--
2323

0 commit comments

Comments
 (0)