Re: psql -af > out, is possible to also have raise notice, raise info part.

2023-07-11 Thread jian he
On Wed, Jul 12, 2023 at 12:06 PM David G. Johnston wrote: > > On Tue, Jul 11, 2023 at 8:52 PM jian he wrote: >> >> hi. >> >> test.sql content: >> -- >> do $$ >> begin >> raise info 'information messa

Re: psql -af > out, is possible to also have raise notice, raise info part.

2023-07-11 Thread David G. Johnston
On Tue, Jul 11, 2023 at 8:52 PM jian he wrote: > hi. > > test.sql content: > > -- > do $$ > begin > raise info 'information message %', now() ; > raise debug 'debug message %', now(); > raise not

psql -af > out, is possible to also have raise notice, raise info part.

2023-07-11 Thread jian he
hi. test.sql content: -- do $$ begin raise info 'information message %', now() ; raise debug 'debug message %', now(); raise notice 'notice message %', now(); end $$; -