#include "postgres.h"#include "utils/geo_decls.h"
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) |
| Datum areajoinsel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 54 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.005);
}
| Datum areasel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 48 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.005);
}
| Datum contjoinsel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 92 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.001);
}
| Datum contsel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 86 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.001);
}
| Datum positionjoinsel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 73 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.1);
}
| Datum positionsel | ( | PG_FUNCTION_ARGS | ) |
Definition at line 67 of file geo_selfuncs.c.
References PG_RETURN_FLOAT8.
{
PG_RETURN_FLOAT8(0.1);
}
1.7.1