Commit db15dc05 authored by Bruce Momjian's avatar Bruce Momjian

Fix for \do and ceil()/float.

parent e9c977da
...@@ -8,11 +8,12 @@ ...@@ -8,11 +8,12 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.30 1999/05/25 16:09:59 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.31 1999/07/07 16:09:33 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include <stdio.h> #include <stdio.h>
#include <math.h>
#include "postgres.h" #include "postgres.h"
#include "access/heapam.h" #include "access/heapam.h"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.27 1999/05/29 01:45:20 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.28 1999/07/07 16:09:33 momjian Exp $
* *
* NOTES * NOTES
* These routines allow the parser/planner/executor to perform * These routines allow the parser/planner/executor to perform
...@@ -436,7 +436,7 @@ InitCatalogCache() ...@@ -436,7 +436,7 @@ InitCatalogCache()
/* /*
* SearchSysCacheTupleCopy * SearchSysCacheTupleCopy
* *
* THis is like SearchSysCacheTuple, except it returns a copy of the tuple * This is like SearchSysCacheTuple, except it returns a copy of the tuple
* that the user is required to pfree(). * that the user is required to pfree().
*/ */
HeapTuple HeapTuple
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment