<div dir="ltr">I have spread my large set of pointcloud files over several tables, split into logical tiles. Now I would like to have 1 view where all these tables are unioned together, so I don't have to bother to find out which table I have to use for every new query.<div>For this I do:</div><div><br></div><div><div>CREATE OR REPLACE VIEW vw_pointcloud AS </div><div>   SELECT id, pa</div><div>   FROM pointcloud_1</div><div>   UNION</div><div>   SELECT id, pa</div><div>   FROM pointcloud_2;</div></div><div><br></div><div>Postgres is hitting back though with:</div><div><div>  ERROR:  could not identify an equality operator for type pcpatch</div><div>  LINE 1: SELECT id, pa</div></div><div><br></div><div>I remember I have seen this issue before on a mailinglist, but can't find it anymore. Is it solvable with casting back and forth to other types for instance?</div><div><br></div><div>Tom</div></div>