1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

1. miscadmin.h needs to include sys/types.h for a definition of pid_t

2. Regression tests fail for types int2 and int4 (which can easily be
fixed by adding entries to resultmap) aswell as float8 and geometry,
where floating point numbers appear to be rounded a little differently
than in your expected results (besides that I also need the positive
zeros file). I'm including a patch for the first 2, but I don't know
whether the latter two are actually a bug in postgres or a bug in the
OS or even allowed difference. I'm including my results for reference.

Rolf Grossmann
This commit is contained in:
Bruce Momjian
2000-02-23 15:46:15 +00:00
parent 020be62dea
commit c969e2662f
3 changed files with 11 additions and 4 deletions

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: miscadmin.h,v 1.53 2000/02/22 09:55:20 inoue Exp $
* $Id: miscadmin.h,v 1.54 2000/02/23 15:46:14 momjian Exp $
*
* NOTES
* some of the information in this file will be moved to
@ -23,6 +23,8 @@
#ifndef MISCADMIN_H
#define MISCADMIN_H
#include <sys/types.h> /* For pid_t */
#include "postgres.h"
#include "utils/trace.h"