This is an automated email from the ASF dual-hosted git repository. shoaib88 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/age.git
commit f93811276f773d1e1322c4acf263b3b8279ce4e2 Author: Shoaib <[email protected]> AuthorDate: Wed Oct 25 12:51:33 2023 +0200 Converted SQL mail into multiple files. --- Makefile | 3 ++- sql/sql_files | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 391041d4..bf222fb9 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,8 @@ OBJS = src/backend/age.o \ EXTENSION = age -SQLS = $(wildcard sql/*.sql) +#SQLS = $(sort ($(wildcard sql/*.sql))) +SQLS = $(shell cat sql/sql_files) DATA_built = $(age_sql) diff --git a/sql/sql_files b/sql/sql_files new file mode 100644 index 00000000..ea165a55 --- /dev/null +++ b/sql/sql_files @@ -0,0 +1,16 @@ +01_age_main.sql +02_age_agtype.sql +11_agtype_comparison.sql +12_agtype_access.sql +13_agtype_operators.sql +14_agtype_exists.sql +15_agtype_gin.sql +16_agtype_graphid.sql +17_agtype_coercions.sql +18_agtype_string.sql +20_age_query.sql +41_age_scalar.sql +42_age_string.sql +43_age_trig.sql +44_age_aggregate.sql +45_agtype_typecast.sql
