Re: Make text output more generic

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au>
Cc: "Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Make text output more generic
Date: 2002-04-11 14:45:21
Message-ID: 992.1018536321@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

"Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au> writes:
> static TextOutputState *begin_text_output(CommandDest dest, char *title);
> static void do_text_output(TextOutputState *tstate, char *aline);
> static void do_text_output_multiline(TextOutputState *tstate, char *text);
> static void end_text_output(TextOutputState *tstate);

> I should really move these off somewhere else and make them a bit more
> global and generic.

What's insufficiently generic about them for you?

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Mario Weilguni 2002-04-11 14:53:13 Deadlock situation using foreign keys (reproduceable)
Previous Message Tom Lane 2002-04-11 14:33:34 Re: command.c breakup