PostgreSQL Source Code
git master
|
Go to the source code of this file.
Macros | |
#define | ScanDirectionCombine(a, b) ((a) * (b)) |
#define | ScanDirectionIsValid(direction) |
#define | ScanDirectionIsBackward(direction) ((bool) ((direction) == BackwardScanDirection)) |
#define | ScanDirectionIsNoMovement(direction) ((bool) ((direction) == NoMovementScanDirection)) |
#define | ScanDirectionIsForward(direction) ((bool) ((direction) == ForwardScanDirection)) |
Typedefs | |
typedef enum ScanDirection | ScanDirection |
Enumerations | |
enum | ScanDirection { BackwardScanDirection = -1 , NoMovementScanDirection = 0 , ForwardScanDirection = 1 } |
#define ScanDirectionIsBackward | ( | direction | ) | ((bool) ((direction) == BackwardScanDirection)) |
#define ScanDirectionIsForward | ( | direction | ) | ((bool) ((direction) == ForwardScanDirection)) |
#define ScanDirectionIsNoMovement | ( | direction | ) | ((bool) ((direction) == NoMovementScanDirection)) |
#define ScanDirectionIsValid | ( | direction | ) |
typedef enum ScanDirection ScanDirection |
enum ScanDirection |