Re: patches for items from TODO list

Поиск
Список
Период
Сортировка
От Sergey Ten
Тема Re: patches for items from TODO list
Дата
Msg-id 200505182021.j4IKLJXW026519@sourcelabs.sourcelabs.com
обсуждение исходный текст
Ответ на Re: patches for items from TODO list  (Markus Bertheau <twanger@bluetwanger.de>)
Ответы Re: patches for items from TODO list  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
Markus,

Thank you for your reply.
We considered embedding of an XML schema first followed by data. We decided
to stick to our current data format to make sure stateless XML parsers can
process it as well. Would it be better to add an option to the COPY command,
to allow embedding an XML schema, so more advanced XML parsers can take
advantage of it?

Thanks,
Jason, Sergey

> -----Original Message-----
> From: Markus Bertheau [mailto:twanger@bluetwanger.de]
> Sent: Tuesday, May 17, 2005 6:00 PM
> To: Sergey Ten
> Cc: 'Bruce Momjian'; 'Christopher Kings-Lynne'; pgsql-
> hackers@postgresql.org; jason@sourcelabs.com
> Subject: Re: [HACKERS] patches for items from TODO list
>
> Dnia 13-05-2005, pią o godzinie 16:01 -0700, Sergey Ten napisał(a):
>
> > <?xml version='1.0'?>
> > <table>
> >     <row>
> >         <col name='col1' null='n'>Jackson, Sam</col>
> >         <col name='col2' null='n'>\h</col>
> >     </row>
> >     <row>
> >         <col name='col1' null='n'>It is "perfect".</col>
> >         <col name='col2' null='n'>	</col>
> >     </row>
> >     <row>
> >         <col name='col1' null='n'></col>
> >         <col name='col2' null='y'></col>
> >     </row>
> > </table>
>
> Why didn't you do something to the effect of
>
> <?xml version='1.0'?>
> <table>
>     <cols>
>         <col name='col1'/>
>         <col name='col2'/>
>     </cols>
>     <row>
>         <col null='n'>Jackson, Sam</col>
>         <col null='n'>\h</col>
>     </row>
>     <row>
>         <col null='n'>It is "perfect".</col>
>         <col null='n'>	</col>
>     </row>
>     <row>
>         <col null='n'></col>
>         <col null='y'></col>
>     </row>
> </table>
>
> This avoids repeating the column names in every row, which don't change
> over the rows anyway. By reducing redundant information it also makes
> structurally invalid XML less likely (whether that is relevant depends
> on what people do with the XML data).
>
> Also you could encode the XML output as UTF-8, which would make the
> files more readable for humans if the text data is not ASCII.
>
> Markus
>
> --
> Markus Bertheau <twanger@bluetwanger.de>



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pg_dump and using schema problem
Следующее
От: "Sergey Ten"
Дата:
Сообщение: Re: patches for items from TODO list