]> granicus.if.org Git - postgresql/commitdiff
Here is the Mismatched input/output patch for tintervals as reported over
authorMarc G. Fournier <scrappy@hub.org>
Sun, 20 Apr 1997 21:49:17 +0000 (21:49 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sun, 20 Apr 1997 21:49:17 +0000 (21:49 +0000)
the last week on Hackers...(A coulpe of clippings of the final
verdict are included below + the diff).

From: Wayde Nie <niew@phoenix.cis.mcmaster.ca>

src/backend/utils/adt/date.c

index 36d3d28a76ab5ef723a5ebb2ecccb7c2c0104053..451fc752f7a98d1091ce91d18c193e22531e651c 100644 (file)
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.8 1997/04/04 08:53:08 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.9 1997/04/20 21:49:17 scrappy Exp $
  *
  * NOTES
  *   This code is actually (almost) unused.
@@ -216,19 +216,19 @@ char *tintervalout(TimeInterval interval)
     char       *i_str, *p;
     
     i_str = (char      *) palloc( T_INTERVAL_LEN );  /* ['...' '...'] */
-    (void) strcpy(i_str,"['");
+    (void) strcpy(i_str,"[\"");
     if (interval->status == T_INTERVAL_INVAL)
        (void) strcat(i_str,INVALID_INTERVAL_STR);
     else {
        p = nabstimeout(interval->data[0]);
        (void) strcat(i_str,p);
        pfree(p);
-       (void) strcat(i_str,"' '");
+       (void) strcat(i_str,"\" \"");
        p = nabstimeout(interval->data[1]);
        (void) strcat(i_str,p);
        pfree(p);
     }
-    (void) strcat(i_str,"']\0");
+    (void) strcat(i_str,"\"]\0");
     return(i_str);
 }