|
14 | 14 | #ifndef VALID_H
|
15 | 15 | #define VALID_H
|
16 | 16 |
|
| 17 | +#include "access/htup.h" |
| 18 | +#include "access/htup_details.h" |
| 19 | +#include "access/skey.h" |
| 20 | +#include "access/tupdesc.h" |
| 21 | + |
17 | 22 | /*
|
18 | 23 | * HeapKeyTest
|
19 | 24 | *
|
20 | 25 | * Test a heap tuple to see if it satisfies a scan key.
|
21 | 26 | */
|
22 |
| -#define HeapKeyTest(tuple, \ |
23 |
| - tupdesc, \ |
24 |
| - nkeys, \ |
25 |
| - keys, \ |
26 |
| - result) \ |
27 |
| -do \ |
28 |
| -{ \ |
29 |
| - /* Use underscores to protect the variables passed in as parameters */ \ |
30 |
| - int __cur_nkeys = (nkeys); \ |
31 |
| - ScanKey __cur_keys = (keys); \ |
32 |
| - \ |
33 |
| - (result) = true; /* may change */ \ |
34 |
| - for (; __cur_nkeys--; __cur_keys++) \ |
35 |
| - { \ |
36 |
| - Datum __atp; \ |
37 |
| - bool __isnull; \ |
38 |
| - Datum __test; \ |
39 |
| - \ |
40 |
| - if (__cur_keys->sk_flags & SK_ISNULL) \ |
41 |
| - { \ |
42 |
| - (result) = false; \ |
43 |
| - break; \ |
44 |
| - } \ |
45 |
| - \ |
46 |
| - __atp = heap_getattr((tuple), \ |
47 |
| - __cur_keys->sk_attno, \ |
48 |
| - (tupdesc), \ |
49 |
| - &__isnull); \ |
50 |
| - \ |
51 |
| - if (__isnull) \ |
52 |
| - { \ |
53 |
| - (result) = false; \ |
54 |
| - break; \ |
55 |
| - } \ |
56 |
| - \ |
57 |
| - __test = FunctionCall2Coll(&__cur_keys->sk_func, \ |
58 |
| - __cur_keys->sk_collation, \ |
59 |
| - __atp, __cur_keys->sk_argument); \ |
60 |
| - \ |
61 |
| - if (!DatumGetBool(__test)) \ |
62 |
| - { \ |
63 |
| - (result) = false; \ |
64 |
| - break; \ |
65 |
| - } \ |
66 |
| - } \ |
67 |
| -} while (0) |
| 27 | +static inline bool |
| 28 | +HeapKeyTest(HeapTuple tuple, TupleDesc tupdesc, int nkeys, ScanKey keys) |
| 29 | +{ |
| 30 | + int cur_nkeys = nkeys; |
| 31 | + ScanKey cur_key = keys; |
| 32 | + |
| 33 | + for (; cur_nkeys--; cur_key++) |
| 34 | + { |
| 35 | + Datum atp; |
| 36 | + bool isnull; |
| 37 | + Datum test; |
| 38 | + |
| 39 | + if (cur_key->sk_flags & SK_ISNULL) |
| 40 | + return false; |
| 41 | + |
| 42 | + atp = heap_getattr(tuple, cur_key->sk_attno, tupdesc, &isnull); |
| 43 | + |
| 44 | + if (isnull) |
| 45 | + return false; |
| 46 | + |
| 47 | + test = FunctionCall2Coll(&cur_key->sk_func, |
| 48 | + cur_key->sk_collation, |
| 49 | + atp, cur_key->sk_argument); |
| 50 | + |
| 51 | + if (!DatumGetBool(test)) |
| 52 | + return false; |
| 53 | + } |
| 54 | + |
| 55 | + return true; |
| 56 | +} |
68 | 57 |
|
69 | 58 | #endif /* VALID_H */
|
0 commit comments