Returns TRUE if the two objects has the same edge and the same interior.

1 geo.equals

<geo.equals>
    <geom1> *
        <geom1 /> *
    </geom1>
    <geom2> *
        <geom2 /> *
    </geom2>
</geo.equals>
Example
Copy
<select>
    <columns>
       <geo.equals>
            <geom1>geometry_col_1</geom1>
            <geom2>geometry_col_2</geom2>
       </geo.equals>
    </columns>
    <from table='buildings' alias='a' >
    </from>
    <where>
        a.name = 'MACBA'
    </where>
</select>