--
You received this message because you are subscribed to a topic in the Google Groups "pgTAP Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/pgtap-users/kNBkTC-ApmA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to pgtap-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pgtap-users/a0a7007c-7ca2-4e45-9835-71022603ff5bn%40googlegroups.com.
select set_eq (
$$ select t_id, t_customer_id,
t_tenant_name, t_notif_id, t_notif_type, t_ts_created,
t_status, t_last_note
from frp_pkg_notif.get_all_tenant_notifs(array['open','wip'],'2021-11-01','2021-11-30');
$$,
$$VALUES
( 1::bigint, 2::bigint,
'frp_tenant2'::varchar, 101::bigint, 'ingest'::varchar, '2021-11-04
04:04:04'::timestamptz, 'open'::varchar,
'My first 101 note'::varchar )
$$,
'TEST-01A:
frp_pkg_notif.get_all_tenant_notifs Check 1st notif for Tenant2'
);
set_eq
----------------------------------------------------------------------------------
ok
4
- TEST-01A: frp_pkg_notif.get_all_tenant_notifs Check 1st notif for Tenant2
(1 row)
also, posted on it here: https://tinky2jed.wordpress.com/technical-stuff/postgresql/pgtap-set_eq-on-function-returning-table-error-column-has-pseudo-type-record/