This is not a bug but a code-design proposal
I am building a scraper extension on top of pg_net and identified that you can do some really nifty things when you inherit from net._http_response and install triggers to re-route the response to other dedicated scraper buffer tables.
This is made possible with your very flexible design where the net._http_response has on primary key and is intentionally kept quite raw. I like this a lot.
To support my work (and others building on top of pg_net), I am proposing either to remove the not null constraint on the created column altogether or replace it with a check constraint that is not inheritable.
I would like to know how you feel about this.
This is not a bug but a code-design proposal
I am building a scraper extension on top of
pg_netand identified that you can do some really nifty things when you inherit fromnet._http_responseand install triggers to re-route the response to other dedicated scraper buffer tables.This is made possible with your very flexible design where the
net._http_responsehas on primary key and is intentionally kept quite raw. I like this a lot.To support my work (and others building on top of
pg_net), I am proposing either to remove the not null constraint on thecreatedcolumn altogether or replace it with a check constraint that is not inheritable.I would like to know how you feel about this.