efmarshall / h2database

Automatically exported from code.google.com/p/h2database
0 stars 0 forks source link

datatypes documentation (Web, PDF) wrong #551

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hello,

I noticed problems on the Data Type Web page:

http://www.h2database.com/html/datatypes.html (and the reference PDF)

Geometry: specifies "ARRAY" instead of "GEOMETRY" as an example.

Double: FLOAT4 is listed as a Double, but from DB metadata it looks
like it is a real (which makes sense from the name). Here is a DDL
and the resultung JDBC Meta Data dump: (note ColR5):

CREATE TABLE TAB5 (
    ColF1 DOUBLE,
    ColF2 DOUBLE PRECISION,
    ColF3 FLOAT,
    ColF4 FLOAT8,
    ColR5 FLOAT4,
    ColR6 REAL
);

TABLE TAB5 -- 
  COLF1 DOUBLE (17)
  COLF2 DOUBLE (17)
  COLF3 DOUBLE (17)
  COLF4 DOUBLE (17)
  COLR5 REAL (7)
  COLR6 REAL (7)

Original issue reported on code.google.com by bernd.eckenfels on 22 Feb 2014 at 11:36

GoogleCodeExporter commented 9 years ago
Fixed in the trunk

Original comment by thomas.t...@gmail.com on 24 Feb 2014 at 10:53

GoogleCodeExporter commented 9 years ago
Fixed in version 1.3.176

Original comment by thomas.t...@gmail.com on 5 Apr 2014 at 6:34