PostgreSQL Source Code: src/include/access/valid.h Source File (original) (raw)

Go to the documentation of this file.

1

2

3

4

5

6

7

8

9

10

11

12

13

14#ifndef VALID_H

15#define VALID_H

16

21

22

23

24

25

26

27static inline bool

29{

30 int cur_nkeys = nkeys;

32

33 for (; cur_nkeys--; cur_key++)

34 {

36 bool isnull;

38

40 return false;

41

43

44 if (isnull)

45 return false;

46

50

52 return false;

53 }

54

55 return true;

56}

57

58#endif

Datum FunctionCall2Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2)

static Datum heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)

static bool DatumGetBool(Datum X)

static bool HeapKeyTest(HeapTuple tuple, TupleDesc tupdesc, int nkeys, ScanKey keys)