diff options
author | Bruce Momjian | 2002-08-29 23:03:58 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-08-29 23:03:58 +0000 |
commit | 32784cddf1da985b736d91402ad3eb22136751cc (patch) | |
tree | 41b9fcb5d30a89137ad0f811af0fb4599e8efb80 /contrib/cube/cubedata.h | |
parent | 6d27cfdd894af3a428fd9a540dbac576978319f5 (diff) |
The changes I have made are described in CHANGES. This was based on
diffs to 7.3-devel and may not be applicable to 7.2. I have included a
change covered by a previous bugfix patch I submitted (the problem with
-.1 not being accepted by cube_in). It does not include a fix for the
potential buffer overrun issue I reported for cube_yyerror in
cubeparse.y.
Bruno Wolff III
Diffstat (limited to 'contrib/cube/cubedata.h')
-rw-r--r-- | contrib/cube/cubedata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cube/cubedata.h b/contrib/cube/cubedata.h index a1c5e8efcdf..5fef512c9e9 100644 --- a/contrib/cube/cubedata.h +++ b/contrib/cube/cubedata.h @@ -2,5 +2,5 @@ typedef struct NDBOX { unsigned int size; /* required to be a Postgres varlena type */ unsigned int dim; - float x[1]; + double x[1]; } NDBOX; |