PostgreSQL Source Code  git master
geo_selfuncs.c File Reference
#include "postgres.h"
#include "utils/fmgrprotos.h"
Include dependency graph for geo_selfuncs.c:

Go to the source code of this file.

Functions

Datum areasel (PG_FUNCTION_ARGS)
 
Datum areajoinsel (PG_FUNCTION_ARGS)
 
Datum positionsel (PG_FUNCTION_ARGS)
 
Datum positionjoinsel (PG_FUNCTION_ARGS)
 
Datum contsel (PG_FUNCTION_ARGS)
 
Datum contjoinsel (PG_FUNCTION_ARGS)
 

Function Documentation

◆ areajoinsel()

Datum areajoinsel ( PG_FUNCTION_ARGS  )

Definition at line 54 of file geo_selfuncs.c.

55 {
56  PG_RETURN_FLOAT8(0.005);
57 }
#define PG_RETURN_FLOAT8(x)
Definition: fmgr.h:367

References PG_RETURN_FLOAT8.

◆ areasel()

Datum areasel ( PG_FUNCTION_ARGS  )

Definition at line 48 of file geo_selfuncs.c.

49 {
50  PG_RETURN_FLOAT8(0.005);
51 }

References PG_RETURN_FLOAT8.

◆ contjoinsel()

Datum contjoinsel ( PG_FUNCTION_ARGS  )

Definition at line 92 of file geo_selfuncs.c.

93 {
94  PG_RETURN_FLOAT8(0.001);
95 }

References PG_RETURN_FLOAT8.

◆ contsel()

Datum contsel ( PG_FUNCTION_ARGS  )

Definition at line 86 of file geo_selfuncs.c.

87 {
88  PG_RETURN_FLOAT8(0.001);
89 }

References PG_RETURN_FLOAT8.

◆ positionjoinsel()

Datum positionjoinsel ( PG_FUNCTION_ARGS  )

Definition at line 73 of file geo_selfuncs.c.

74 {
75  PG_RETURN_FLOAT8(0.1);
76 }

References PG_RETURN_FLOAT8.

◆ positionsel()

Datum positionsel ( PG_FUNCTION_ARGS  )

Definition at line 67 of file geo_selfuncs.c.

68 {
69  PG_RETURN_FLOAT8(0.1);
70 }

References PG_RETURN_FLOAT8.