PostGIS
3.4.0dev-r@@SVN_REVISION@@
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
c
d
f
g
i
l
m
p
q
w
Variables
a
b
c
d
f
g
h
i
l
n
o
p
r
s
t
u
v
x
y
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Properties
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
w
y
Typedefs
_
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
y
Enumerations
Enumerator
a
c
d
e
f
g
i
j
l
m
p
r
s
t
u
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
◆
pgis_asflatgeobuf_finalfn()
Datum pgis_asflatgeobuf_finalfn
(
PG_FUNCTION_ARGS
)
Definition at line
83
of file
lwgeom_out_flatgeobuf.c
.
84
{
85
uint8_t *buf;
86
flatgeobuf_agg_ctx
*ctx;
87
if
(!AggCheckCallContext(fcinfo, NULL))
88
elog(ERROR,
"pgis_asflatgeobuf_finalfn called in non-aggregate context"
);
89
90
if
(PG_ARGISNULL(0))
91
PG_RETURN_NULL();
92
93
ctx = (
flatgeobuf_agg_ctx
*) PG_GETARG_POINTER(0);
94
buf =
flatgeobuf_agg_finalfn
(ctx);
95
PG_RETURN_BYTEA_P(buf);
96
}
flatgeobuf_agg_finalfn
uint8_t * flatgeobuf_agg_finalfn(struct flatgeobuf_agg_ctx *ctx)
Finalize aggregation.
Definition:
flatgeobuf.c:558
flatgeobuf_agg_ctx
Definition:
flatgeobuf.h:47
References
flatgeobuf_agg_finalfn()
.
Here is the call graph for this function:
postgis
lwgeom_out_flatgeobuf.c
Generated by
1.9.1