Skip to content

Commit 532800e

Browse files
committed
merge changes
1 parent d9cbfbb commit 532800e

4 files changed

Lines changed: 685 additions & 815 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ MODULE_big = postgraph
1919

2020
OBJS = src/backend/postgraph.o \
2121
src/backend/access/vertex_heap/vertex_heapam_handler.o \
22+
src/backend/access/vertex_heap/vertex_hash_search.o \
2223
src/backend/catalog/ag_catalog.o \
2324
src/backend/catalog/ag_graph.o \
2425
src/backend/catalog/ag_label.o \

regress/sql/vertex_am.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
LOAD 'postgraph';
2020

2121

22-
2322
CREATE TABLE vertex_am_tst (id postgraph.graphid not null, props postgraph.gtype not null) USING vertex_adjlist;
2423

24+
2525
INSERT INTO vertex_am_tst (id, props)
2626
VALUES ('1'::postgraph.graphid, postgraph.gtype_build_map('id', 1));
2727

@@ -41,4 +41,8 @@ UPDATE vertex_am_tst SET id = '2'::postgraph.graphid;
4141
INSERT INTO vertex_am_tst (id, props)
4242
VALUES ('4'::postgraph.graphid, postgraph.gtype_build_map('id', 1));
4343

44+
45+
INSERT INTO vertex_am_tst (id, props)
46+
VALUES ('5'::postgraph.graphid, NULL);
47+
4448
SELECT * FROM vertex_am_tst;

0 commit comments

Comments
 (0)