Skip to content

Commit db15dc0

Browse files
committed
Fix for \do and ceil()/float.
1 parent e9c977d commit db15dc0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/backend/optimizer/util/plancat.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.30 1999/05/25 16:09:59 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.31 1999/07/07 16:09:33 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515
#include <stdio.h>
16+
#include <math.h>
1617
#include "postgres.h"
1718

1819
#include "access/heapam.h"

src/backend/utils/cache/syscache.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.27 1999/05/29 01:45:20 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.28 1999/07/07 16:09:33 momjian Exp $
1111
*
1212
* NOTES
1313
* These routines allow the parser/planner/executor to perform
@@ -436,7 +436,7 @@ InitCatalogCache()
436436
/*
437437
* SearchSysCacheTupleCopy
438438
*
439-
* THis is like SearchSysCacheTuple, except it returns a copy of the tuple
439+
* This is like SearchSysCacheTuple, except it returns a copy of the tuple
440440
* that the user is required to pfree().
441441
*/
442442
HeapTuple

0 commit comments

Comments
 (0)