| From: | Rajanikanth Jammalamadaka <rajanikanth(at)gmail(dot)com> |
|---|---|
| To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
| Cc: | pgsql-novice(at)postgresql(dot)org |
| Subject: | Resolved: Re: postgres build with xml support on Ubuntu 12.04 LTS |
| Date: | 2012-12-28 16:02:32 |
| Message-ID: | CABB-kxWJ0+dF8cqc3HZQwqJLpLjjgPZ1sM09j6JV84FAnzST1Q@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice |
On Fri, Dec 28, 2012 at 10:38 AM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Rajanikanth Jammalamadaka <rajanikanth(at)gmail(dot)com> writes:
> > I tried to build postgres with libxml and libxslt and see the following
> > errors in the config.log file.
>
> I don't see any errors there. The extract of the log that you quoted
> seems to just be configure finding out that your platform doesn't have
> setproctitle(), which is hardly surprising on Linux (it's a BSD-ism).
> In any case that would have nothing to do with libxml or libxslt.
>
> What actual problem are you having?
>
> regards, tom lane
>
Hi Tom,
Thanks for your reply. This is resolved now. I forgot to include select
while testing the xml functions. Everything works now.
test=# select xml '<foo>bar</foo>';
xml
----------------
<foo>bar</foo>
(1 row)
test=# select '<foo>bar</foo>'::xml;
xml
----------------
<foo>bar</foo>
(1 row)
Thanks,
Raj
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Mick | 2013-01-01 11:47:23 | Need help cleaning up PostgreSQL installs on Ubuntu 12.10 |
| Previous Message | Tom Lane | 2012-12-28 15:38:13 | Re: postgres build with xml support on Ubuntu 12.04 LTS |