]> granicus.if.org Git - postgresql/commitdiff
More cleanups by "Kurt J. Lidl" <lidl@va.pubnix.com>
authorMarc G. Fournier <scrappy@hub.org>
Tue, 30 Jul 1996 07:47:58 +0000 (07:47 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 30 Jul 1996 07:47:58 +0000 (07:47 +0000)
src/backend/access/sdir.h
src/backend/executor/execMain.c
src/backend/executor/execdefs.h
src/backend/executor/nodeMaterial.c
src/backend/executor/nodeSort.c
src/backend/storage/buffer/buf_table.c
src/backend/storage/lmgr/lock.c
src/backend/utils/builtins.h
src/bin/psql/rlstubs.c

index 030007d39c9058bf4437e9a2d0973dcbd3f788e8..a06ce8f70fcfbe4f42eb8a69c2560d6a0e448a4a 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: sdir.h,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $
+ * $Id: sdir.h,v 1.2 1996/07/30 07:44:57 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -27,7 +27,7 @@ typedef enum ScanDirection {
 
 /*
  * ScanDirectionIsValid --
- *     True iff scan direciton is valid.
+ *     True iff scan direction is valid.
  */
 #define ScanDirectionIsValid(direction) \
     ((bool) (BackwardScanDirection <= direction && \
@@ -35,21 +35,21 @@ typedef enum ScanDirection {
 
 /*
  * ScanDirectionIsBackward --
- *     True iff scan direciton is backward.
+ *     True iff scan direction is backward.
  */
 #define ScanDirectionIsBackward(direction) \
     ((bool) (direction == BackwardScanDirection))
 
 /*
  * ScanDirectionIsNoMovement --
- *     True iff scan direciton indicates no movement.
+ *     True iff scan direction indicates no movement.
  */
 #define ScanDirectionIsNoMovement(direction) \
     ((bool) (direction == NoMovementScanDirection))
 
 /*
  * ScanDirectionIsForward --
- *     True iff scan direciton is forward.
+ *     True iff scan direction is forward.
  */
 #define ScanDirectionIsForward(direction) \
     ((bool) (direction == ForwardScanDirection))
index 07aac34accb00a935d313de5fd22cd9bbddffbbd..e0885ec4cccba76daf2d7ff62b1e06709e61db08 100644 (file)
@@ -26,7 +26,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.1.1.1 1996/07/09 06:21:25 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.2 1996/07/30 07:45:27 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -49,7 +49,7 @@ static TupleDesc InitPlan(CmdType operation, Query *parseTree,
 static void EndPlan(Plan *plan, EState *estate);
 static TupleTableSlot *ExecutePlan(EState *estate, Plan *plan,
                                   Query *parseTree, CmdType operation,
-                                  int numberTuples, int direction,
+                                  int numberTuples, ScanDirection direction,
                                   void (*printfunc)());
 static void ExecRetrieve(TupleTableSlot *slot, void (*printfunc)(),
                         Relation intoRelationDesc);
@@ -153,7 +153,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
                           parseTree,
                           operation,
                           ALL_TUPLES,
-                          EXEC_FRWD,
+                          ForwardScanDirection,
                           destination);
       break;
     case EXEC_FOR:
@@ -162,7 +162,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
                              parseTree,
                              operation,
                              count,
-                             EXEC_FRWD,
+                             ForwardScanDirection,
                              destination);
        break;
        
@@ -176,7 +176,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
                              parseTree,
                              operation,
                              count,
-                             EXEC_BKWD,
+                             BackwardScanDirection,
                              destination);
        break;
        
@@ -191,7 +191,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
                             parseTree,
                             operation,
                             ONE_TUPLE,
-                            EXEC_FRWD,
+                            ForwardScanDirection,
                             destination);
        break;
     default:
@@ -600,7 +600,7 @@ ExecutePlan(EState *estate,
            Query *parseTree,
            CmdType operation,
            int numberTuples,
-           int direction,
+           ScanDirection direction,
            void (*printfunc)())
 {
     Relation           intoRelationDesc;
index 5aec485c95c9ea9807868700c6b3290c90dcc61f..b0101bdbe403e512f9f19ac9b21bada4a718aab8 100644 (file)
@@ -6,20 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: execdefs.h,v 1.1.1.1 1996/07/09 06:21:25 scrappy Exp $
+ * $Id: execdefs.h,v 1.2 1996/07/30 07:45:29 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef EXECDEFS_H
 #define EXECDEFS_H
 
-/* ----------------
- *     executor scan direction definitions
- * ----------------
- */
-#define EXEC_FRWD              1               /* Scan forward */
-#define EXEC_BKWD              -1              /* Scan backward */
-
 /* ----------------
  *     ExecutePlan() tuplecount definitions
  * ----------------
index 88fc93d2d4ebd22c6ebf0763305c6088c1cfe437..2cd7c18ff1824cd10554f3461dadd4fc6befab75 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.1.1.1 1996/07/09 06:21:26 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.2 1996/07/30 07:45:31 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -79,7 +79,7 @@ ExecMaterial(Material *node)
         *  while creating the temporary relation.
         * ----------------
         */
-       estate->es_direction = EXEC_FRWD;
+       estate->es_direction = ForwardScanDirection;
        
        /* ----------------
         *   if we couldn't create the temp or current relations then
index 9a7f4f9456fdcac87449cdf3439c26d8d4447a53..798bd43a1709342b3201add952aeae4acc08f8be 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.1.1.1 1996/07/09 06:21:27 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.2 1996/07/30 07:45:35 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -138,7 +138,7 @@ ExecSort(Sort *node)
         *  while creating the temporary relation.
         * ----------------
         */
-       estate->es_direction = EXEC_FRWD;
+       estate->es_direction = ForwardScanDirection;
        
        /* ----------------
         *   if we couldn't create the temp or current relations then
index 502ded954edbde71c3790d687ed76e107dd7ac12..01f85612cbc381ae33af4e842c2e7407ca567a7b 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.1.1.1 1996/07/09 06:21:53 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.2 1996/07/30 07:47:23 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -34,8 +34,6 @@
 
 static HTAB *SharedBufHash;
 
-extern HTAB *ShmemInitHash();
-
 typedef struct lookup { 
     BufferTag  key; 
     Buffer     id; 
index 8df898a0068981b2db016c0c4b54f23511f1ddf8..9e618f0dbe10f715980693b6a0ed7f5566c14cbc 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.1.1.1 1996/07/09 06:21:56 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.2 1996/07/30 07:47:33 scrappy Exp $
  *
  * NOTES
  *    Outside modules can create a lock table and acquire/release
@@ -102,12 +102,6 @@ static MASK        BITS_ON[MAX_LOCKTYPES];
  */
 static bool LockingIsDisabled;
 
-/* ------------------
- * from storage/ipc/shmem.c
- * ------------------
- */
-extern HTAB *ShmemInitHash();
-
 /* -------------------
  * map from tableId to the lock table structure
  * -------------------
index 2379c59adb8f8e813a7013dbc178f91200e93d75..e1c764c8e888ed3e099881f7de30acee3ddcde4a 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: builtins.h,v 1.1.1.1 1996/07/09 06:22:01 scrappy Exp $
+ * $Id: builtins.h,v 1.2 1996/07/30 07:47:42 scrappy Exp $
  *
  * NOTES
  *    This should normally only be included by fmgr.h.
@@ -228,7 +228,7 @@ extern POLYGON      *rt_poly_inter();
  in executor/executor.h*/
 
 
-extern int32 pqtest();
+extern int32 pqtest(struct varlena *vlena);
 
 /* arrayfuncs.c */
 #include "utils/array.h"
index 2640d3ce094e747ebb67daa22464b9df400c8b39..b753fab430b2dbae534cc118933422521f58c0db 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.1.1.1 1996/07/09 06:22:15 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.2 1996/07/30 07:47:58 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -18,7 +18,7 @@ readline(char *prompt)
 {
     static char buf[500];
 
-    printf("%s");
+    printf("%s", prompt);
     return fgets(buf, 500, stdin);
 }