]> granicus.if.org Git - postgresql/blobdiff - src/include/access/sdir.h
Update copyright to 2004.
[postgresql] / src / include / access / sdir.h
index 4f317f5eb03dfabfe5560e426ea63b0b1e463c9e..69ea5105d637c76bc98fc239d6629831bd1d735a 100644 (file)
@@ -4,9 +4,10 @@
  *       POSTGRES scan direction definitions.
  *
  *
- * Copyright (c) 1994, Regents of the University of California
+ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: sdir.h,v 1.6 1999/05/25 16:13:34 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/access/sdir.h,v 1.16 2004/08/29 04:13:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -30,28 +31,28 @@ typedef enum ScanDirection
  *             True iff scan direction is valid.
  */
 #define ScanDirectionIsValid(direction) \
-       ((bool) (BackwardScanDirection <= direction && \
-                        direction <= ForwardScanDirection))
+       ((bool) (BackwardScanDirection <= (direction) && \
+                        (direction) <= ForwardScanDirection))
 
 /*
  * ScanDirectionIsBackward
  *             True iff scan direction is backward.
  */
 #define ScanDirectionIsBackward(direction) \
-       ((bool) (direction == BackwardScanDirection))
+       ((bool) ((direction) == BackwardScanDirection))
 
 /*
  * ScanDirectionIsNoMovement
  *             True iff scan direction indicates no movement.
  */
 #define ScanDirectionIsNoMovement(direction) \
-       ((bool) (direction == NoMovementScanDirection))
+       ((bool) ((direction) == NoMovementScanDirection))
 
 /*
  * ScanDirectionIsForward
  *             True iff scan direction is forward.
  */
 #define ScanDirectionIsForward(direction) \
-       ((bool) (direction == ForwardScanDirection))
+       ((bool) ((direction) == ForwardScanDirection))
 
-#endif  /* SDIR_H */
+#endif   /* SDIR_H */