There is no Postgis type for representing a circle with 100% accuracy, ie, with a centre point and a radius, as there is with SQL Server's circular arcs. As pointed out in the comments, you can approximate a circle with the 2nd form of ST_Buffer, ie, ST_Buffer(point, distance, num_seg_quarter_circle)
. As you increase the 3rd parameter, you get closer to an actual circle, at the cost of greater calculation times and storage space.
The return type of buffering a point will be a Polygon, as can be seen from running, something like:
SELECT ST_GeometryType(ST_Buffer(ST_MakePoint(0,0),100));
My personal view is that while allowing for an arc type may improve the precision of calculations involving circles, it also complicates things, as you are no longer dealing with geometric objects composed entirely of points, linestrings and polygons (the latter two, being also composed of points).
You can always run tests increasing the 3rd parameter of ST_Buffer, until you get a result that is acceptable, but given other inaccuracies inherent in spatial, such as the earth being approximated by a geoid, I would think that issues caused by approximating a geofence like this would be rare. If you run,
SELECT ST_Area(ST_Buffer(ST_MakePoint(0, 0), 1, num_segments));
for different values of num_seg_quarter_circle and compare to PI, you can get an idea how close you are to a true circle.