Skip to content

Commit 6dbd744

Browse files
committed
Add the initial logic for scans/SELECT
Add the logic for heaps to scan tables. This will need to be massively rewritten, but I need this here to work on the integration with the rest of the project
1 parent c6d48e5 commit 6dbd744

File tree

2 files changed

+1037
-45
lines changed

2 files changed

+1037
-45
lines changed

regress/sql/vertex_am.sql

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,11 @@ LOAD 'postgraph';
2020

2121

2222

23-
CREATE TABLE tst (id postgraph.graphid not null, props postgraph.gtype not null) USING vertex;
23+
CREATE TABLE vertex_am_tst (id postgraph.graphid not null, props postgraph.gtype not null) USING vertex;
24+
25+
INSERT INTO vertex_am_tst (id, props)
26+
VALUES ('1'::postgraph.graphid, postgraph.gtype_build_map('id', 1));
27+
28+
29+
SELECT * FROM vertex_am_tst;
30+

0 commit comments

Comments
 (0)