]> granicus.if.org Git - postgresql/blobdiff - src/include/access/iqual.h
Update copyright to 2004.
[postgresql] / src / include / access / iqual.h
index 492c24732f0ac09ae89748fff31d5608ca4ee3c9..a9cd48bb92a32212e5763de7427dc326d6112fec 100644 (file)
@@ -1,30 +1,31 @@
 /*-------------------------------------------------------------------------
  *
- * iqual.h--
- *    Index scan key qualification definitions.
+ * iqual.h
+ *       Index scan key qualification 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: iqual.h,v 1.4 1996/11/05 10:37:03 scrappy Exp $
+ * $PostgreSQL: pgsql/src/include/access/iqual.h,v 1.22 2004/08/29 04:13:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
-#ifndef        IQUAL_H
+#ifndef IQUAL_H
 #define IQUAL_H
 
-#include <access/skey.h>
-#include <access/itup.h>
+#include "access/itup.h"
+#include "access/skey.h"
 
 
 /* ----------------
- *     index tuple qualification support
+ *             index tuple qualification support
  * ----------------
  */
 
-extern int NIndexTupleProcessed;
+extern int     NIndexTupleProcessed;
 
 extern bool index_keytest(IndexTuple tuple, TupleDesc tupdesc,
                          int scanKeySize, ScanKey key);
 
-#endif /* IQUAL_H */
+#endif   /* IQUAL_H */