MobilityDB  1.0
Functions
tbool_boolops.h File Reference

Temporal Boolean operators (and, or, not). More...

#include <postgres.h>
#include <fmgr.h>
#include <catalog/pg_type.h>
#include "temporal.h"
Include dependency graph for tbool_boolops.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Datum datum_and (Datum l, Datum r)
 Returns the Boolean and of the two values. More...
 
Datum datum_or (Datum l, Datum r)
 Returns the Boolean or of the two values. More...
 
Datum tand_bool_tbool (PG_FUNCTION_ARGS)
 Returns the temporal boolean and of the value and the temporal value. More...
 
Datum tand_tbool_bool (PG_FUNCTION_ARGS)
 Returns the temporal boolean and of the temporal value and the value. More...
 
Datum tand_tbool_tbool (PG_FUNCTION_ARGS)
 Returns the temporal boolean and of the temporal values. More...
 
Datum tor_bool_tbool (PG_FUNCTION_ARGS)
 Returns the temporal boolean or of the value and the temporal value. More...
 
Datum tor_tbool_bool (PG_FUNCTION_ARGS)
 Returns the temporal boolean or of the temporal value and the value. More...
 
Datum tor_tbool_tbool (PG_FUNCTION_ARGS)
 Returns the temporal boolean or of the temporal values. More...
 
Datum tnot_tbool (PG_FUNCTION_ARGS)
 Returns the temporal boolean not of the temporal value. More...
 
Temporalboolop_tbool_tbool (const Temporal *temp1, const Temporal *temp2, datum_func2 func)
 
Temporaltnot_tbool_internal (const Temporal *temp)
 Returns the temporal boolean not of the temporal value (dispatch function) More...
 

Detailed Description

Temporal Boolean operators (and, or, not).