@@ -135,6 +135,14 @@ MATCH () RETURN 1;
135135 1
136136(3 rows)
137137
138+ MATCH (a) RETURN a;
139+ a
140+ --------------------------------------------------------------
141+ {"id": 281474976710657, "label": "", "properties": {}}
142+ {"id": 1125899906842625, "label": "test", "properties": {}}
143+ {"id": 1688849860263937, "label": "test2", "properties": {}}
144+ (3 rows)
145+
138146CREATE ()-[]->();
139147WARNING: relcache reference leak: relation "_ag_label_vertex" not closed
140148WARNING: relcache reference leak: relation "_ag_label_vertex" not closed
@@ -156,14 +164,14 @@ EXPLAIN MATCH ()-[]->() RETURN 1;
156164EXPLAIN ANALYZE MATCH ()-[]->() RETURN 1;
157165 QUERY PLAN
158166-----------------------------------------------------------------------------------------------------------------------------------------------
159- Nested Loop (cost=12.50..50471.30 rows=2520000 width=32) (actual time=0.060 ..0.237 rows=1 loops=1)
167+ Nested Loop (cost=12.50..50471.30 rows=2520000 width=32) (actual time=0.046 ..0.207 rows=1 loops=1)
160168 -> Append (cost=0.00..58.80 rows=2520 width=8) (actual time=0.005..0.013 rows=5 loops=1)
161169 -> Seq Scan on _ag_label_vertex _age_default_alias_0_1 (cost=0.00..2.20 rows=120 width=8) (actual time=0.005..0.006 rows=3 loops=1)
162170 -> Seq Scan on test _age_default_alias_0_2 (cost=0.00..22.00 rows=1200 width=8) (actual time=0.001..0.002 rows=1 loops=1)
163171 -> Seq Scan on test2 _age_default_alias_0_3 (cost=0.00..22.00 rows=1200 width=8) (actual time=0.002..0.002 rows=1 loops=1)
164- -> Function Scan on edge_search _age_default_alias_1 (cost=12.50..22.50 rows=1000 width=0) (actual time=0.043 ..0.043 rows=0 loops=5)
165- Planning Time: 0.095 ms
166- Execution Time: 0.262 ms
172+ -> Function Scan on edge_search _age_default_alias_1 (cost=12.50..22.50 rows=1000 width=0) (actual time=0.037 ..0.037 rows=0 loops=5)
173+ Planning Time: 0.093 ms
174+ Execution Time: 0.231 ms
167175(8 rows)
168176
169177MATCH ()-[]->() RETURN 1;
@@ -185,13 +193,13 @@ SELECT * FROM cypher_create._ag_label_vertex;
185193SELECT * FROM cypher_create._adj__adj__ag_label_vertex;
186194 id | start_id | end_id | properties
187195---------------+----------+--------+------------
188- (0, 41914048 ) | (1, 2) | (1, 3) |
196+ (0, 25304768 ) | (1, 2) | (1, 3) |
189197(1 row)
190198
191199SELECT * FROM cypher_create._adj__ag_label_vertex;
192200 id | start_id | end_id | properties
193201---------------+----------+--------+------------
194- (0, 41914048 ) | (1, 2) | (1, 3) |
202+ (0, 25304768 ) | (1, 2) | (1, 3) |
195203(1 row)
196204
197205MATCH () RETURN 1;
0 commit comments