Field('point', 'geometry()')
);def REPLACE(self, first, (second, third)):
    return 'REPLACE(%s,%s,%s)' % (self.expand(first,'string'),
               self.expand(second,'string'),
               self.expand(third,'string'))
def ST_ASGEOJSON(self, first, second):
        """
        http://postgis.org/docs/ST_AsGeoJSON.html
        """
        return 'ST_AsGeoJSON(%s,%s,%s,%s)' %(second['version'],
            self.expand(first), second['precision'], second['options'])