Update FSM on WAL replay. This is a bit limited; the FSM is only updated
[PostgreSQL.git] / src / include / utils / datum.h
blobabd0505fddd1fd9b4f359b3e24be2ec17cf8a3b6
1 /*-------------------------------------------------------------------------
3 * datum.h
4 * POSTGRES Datum (abstract data type) manipulation routines.
6 * These routines are driven by the 'typbyval' and 'typlen' information,
7 * which must previously have been obtained by the caller for the datatype
8 * of the Datum. (We do it this way because in most situations the caller
9 * can look up the info just once and use it for many per-datum operations.)
11 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
12 * Portions Copyright (c) 1994, Regents of the University of California
14 * $PostgreSQL$
16 *-------------------------------------------------------------------------
18 #ifndef DATUM_H
19 #define DATUM_H
22 * datumGetSize - find the "real" length of a datum
24 extern Size datumGetSize(Datum value, bool typByVal, int typLen);
27 * datumCopy - make a copy of a datum.
29 * If the datatype is pass-by-reference, memory is obtained with palloc().
31 extern Datum datumCopy(Datum value, bool typByVal, int typLen);
34 * datumFree - free a datum previously allocated by datumCopy, if any.
36 * Does nothing if datatype is pass-by-value.
38 extern void datumFree(Datum value, bool typByVal, int typLen);
41 * datumIsEqual
42 * return true if two datums of the same type are equal, false otherwise.
44 * XXX : See comments in the code for restrictions!
46 extern bool datumIsEqual(Datum value1, Datum value2,
47 bool typByVal, int typLen);
49 #endif /* DATUM_H */