<div dir="ltr">Until today the usual way I create Geometry columns was to specify it as Geometry(point), Geometry(polygon) etc... and Geometry maybe for generic geometry type. I have never tried to create the data type as point. <div>
<br></div><div>Now if u look spatial functions supported by postgis. You will see they use arguments as geometry, geography, raster... etc. But not point or polygon. Thus ur spatial postgis methods will fail with point type. You can still declare a geometry column with specific point type as Geometry(point,<srid>) as I stated above. </div>
<div><br></div><div>So why is point, polygon type there? That might be some legacy stuff which might be deprecated. I hope somebody enlighten us about this? As this is something I noticed right now regarding ur thread.</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On 2 January 2014 23:04, Peter Len <span dir="ltr"><<a href="mailto:peteralen@earthlink.net" target="_blank">peteralen@earthlink.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks Baris.... here are the two table definitions:<br>
<br>
-- Using default PostgreSQL geometric types<br>
create table gis.cities (<br>
   id serial primary key,<br>
   name varchar(50),<br>
   state varchar(2),<br>
   geom point<br>
);<br>
<br>
-- Using PostGIS geometry types<br>
create table gis.table_pt (<br>
   id serial primary key,<br>
   name varchar(50),<br>
   state varchar(2),<br>
   geom geometry(Point)<br>
);<br>
<br>
<br>
The select query below only worked when run against the PostGIS geometry<br>
type:<br>
<br>
SELECT id, name FROM gis.table_pt WHERE ST_DWithin(<br>
  geom,<br>
  ST_GeomFromText('POINT(0 0)', 26910),<br>
  1000<br>
);<br>
<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://postgis.17.x6.nabble.com/PostgreSQL-geometric-data-types-vs-GEOMETRY-data-type-tp5005378p5005381.html" target="_blank">http://postgis.17.x6.nabble.com/PostgreSQL-geometric-data-types-vs-GEOMETRY-data-type-tp5005378p5005381.html</a><br>

Sent from the PostGIS - User mailing list archive at Nabble.com.<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr">Barış<div><a href="http://www.linkedin.com/in/barisergun" target="_blank">www.linkedin.com/in/barisergun</a><br></div></div>
</div>