-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneopostgraph--0.1.0.sql
More file actions
190 lines (159 loc) · 4.25 KB
/
neopostgraph--0.1.0.sql
File metadata and controls
190 lines (159 loc) · 4.25 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
* PostGraph
* Copyright (C) 2026 by PostGraph
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION NeoPostGraph" to load this file. \quit
--
-- Type Initial Definitions
--
-- XXX: Create the shell type here so functions can reference it, then fill in the actual definition
-- in its dedicated section.
--
CREATE TYPE gtype;
CREATE TYPE dictionary;
CREATE TYPE vertex;
--
-- gtype datatype
--
--
-- I/O Routines
--
CREATE FUNCTION gtype_in(cstring) RETURNS gtype
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE FUNCTION gtype_out(gtype) RETURNS cstring
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE TYPE gtype (
INPUT = gtype_in,
OUTPUT = gtype_out,
LIKE = jsonb,
STORAGE = extended
);
--
-- dictionary datatype
--
--
-- I/O Routines
--
CREATE FUNCTION dictionary_in(cstring) RETURNS dictionary
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE FUNCTION dictionary_out(dictionary) RETURNS cstring
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE TYPE dictionary (
INPUT = dictionary_in,
OUTPUT = dictionary_out,
LIKE = jsonb,
STORAGE = extended
);
--
-- dictionary constructors
--
CREATE FUNCTION dictionary_build(smallint, gtype)
RETURNS dictionary
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
--
-- vertex datatype
--
--
-- I/O Routines
--
CREATE FUNCTION vertex_in(cstring) RETURNS vertex
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE FUNCTION vertex_out(vertex) RETURNS cstring
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
CREATE TYPE vertex (
INPUT = vertex_in,
OUTPUT = vertex_out,
LIKE = jsonb,
STORAGE = extended
);
--
-- Constructor Functions
--
CREATE FUNCTION vertex_build(int8, int, int, smallint, gtype)
RETURNS vertex
LANGUAGE C
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
--
-- catalog tables
--
--
-- Graph Metadata
--
CREATE TABLE np_graph (
id int NOT NULL,
name name NOT NULL,
namespace regnamespace NOT NULL,
vertex_labels regclass NOT NULL,
vertex_id_seq regclass NOT NULL
);
CREATE SEQUENCE np_graph_id_seq START WITH 1 INCREMENT BY 1 MINVALUE 1 CACHE 5;
ALTER SEQUENCE np_graph_id_seq OWNED BY np_graph.id;
ALTER TABLE ONLY np_graph ALTER COLUMN id SET DEFAULT nextval('np_graph_id_seq'::regclass);
-- Indexes for np_graph
CREATE UNIQUE INDEX np_graph_name_namespace_index ON np_graph USING btree (name, namespace);
CREATE FUNCTION create_graph(graph_name Name, namespace text DEFAULT NULL)
RETURNS void
LANGUAGE c
AS 'MODULE_PATHNAME';
CREATE FUNCTION create_vlabel(graph_name Name, label public.ltree, namespace text DEFAULT NULL)
RETURNS void
LANGUAGE c
AS 'MODULE_PATHNAME';
CREATE FUNCTION get_vlabel_ids(graph_name name, labels text[], namespace_name text DEFAULT NULL)
RETURNS SETOF int
AS 'MODULE_PATHNAME', 'get_vlabel_ids_by_path'
LANGUAGE C STABLE;
CREATE FUNCTION get_or_vlabel_ids(graph_name name, labels text[], namespace_name text DEFAULT NULL)
RETURNS SETOF int
AS 'MODULE_PATHNAME', 'get_or_vlabel_ids_by_path'
LANGUAGE C STABLE;
CREATE FUNCTION dictionary_log(int, int, dictionary)
RETURNS void
LANGUAGE c
AS 'MODULE_PATHNAME';
CREATE FUNCTION vertex_set_dictionary(vertex, int)
RETURNS vertex
LANGUAGE c
AS 'MODULE_PATHNAME';