-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariable_edge.h
64 lines (53 loc) · 1.96 KB
/
variable_edge.h
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
/*
* Copyright (C) 2023 PostGraphDB
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/*
* Declarations for gtype data type support.
*/
#ifndef POSTGRAPH_VARIABLE_EDGE_H
#define POSTGRAPH_VARIABLE_EDGE_H
#include "access/htup_details.h"
#include "fmgr.h"
#include "lib/stringinfo.h"
#include "nodes/pg_list.h"
#include "utils/array.h"
#include "utils/numeric.h"
#include "utils/syscache.h"
#include "catalog/ag_namespace.h"
#include "catalog/pg_type.h"
#include "utils/graphid.h"
/* Convenience macros */
#define DATUM_GET_VARIABLE_EDGE(d) ((vertex *)PG_DETOAST_DATUM(d))
#define VARIABLE_EDGE_GET_DATUM(p) PointerGetDatum(p)
#define AG_GET_ARG_VARIABLE_EDGE(x) DATUM_GET_VARIABLE_EDGE(PG_GETARG_DATUM(x))
#define AG_RETURN_VARIABLE_EDGE(x) PG_RETURN_POINTER(x)
typedef uint32 prentry;
/*
* An vertex, within an gtype Datum.
*
* An array has one child for each element, stored in array order.
*/
typedef struct
{
int32 vl_len_; // varlena header (do not touch directly!)
prentry children[FLEXIBLE_ARRAY_MEMBER];
} VariableEdge;
#define VARIABLEEDGEOID \
(GetSysCacheOid2(TYPENAMENSP, Anum_pg_type_oid, CStringGetDatum("variable_edge"), ObjectIdGetDatum(postgraph_namespace_id())))
#define VARIABLEEDGEARRAYOID \
(GetSysCacheOid2(TYPENAMENSP, Anum_pg_type_oid, CStringGetDatum("_variable_edge"), ObjectIdGetDatum(postgraph_namespace_id())))
#endif