I have table "Table1" and SQL procedure "testProc" which accepts argument of type "Table1". When this procedure gets invoked like this:
select testProc(t.*) from Table1 t;
is PostgreSQL internally using pointers for passing that argument? Or is it copied in memory for each row?
Thanks!