File tree Expand file tree Collapse file tree
src/backend/access/vertex_heap Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ EXTENSION = postgraph
8989DATA = postgraph--0.1.0.sql
9090
9191REGRESS = new_cypher \
92+ vertex_am \
9293 graphid \
9394 gtype \
9495 expr \
Original file line number Diff line number Diff line change 1+
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (C) 2024 PostGraphDB
3+ *
4+ * This program is free software: you can redistribute it and/or modify
5+ * it under the terms of the GNU Affero General Public License as
6+ * published by the Free Software Foundation, either version 3 of the
7+ * License, or (at your option) any later version.
8+ *
9+ * This program is distributed in the hope that it will be useful,
10+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+ * GNU Affero General Public License for more details.
13+ *
14+ * You should have received a copy of the GNU Affero General Public License
15+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
16+ */
17+ -- Regression tests don't preload extensions, gotta load it first
18+
19+ LOAD ' postgraph' ;
20+
21+
22+
23+ CREATE TABLE tst (id postgraph .graphid not null , props postgraph .gtype not null ) USING vertex;
You can’t perform that action at this time.
0 commit comments