From: | Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> |
---|---|
To: | Yasir Malik <ymalik(at)cs(dot)stevens-tech(dot)edu> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Addition and subtraction on BIT type |
Date: | 2003-11-17 05:40:45 |
Message-ID: | 20031116213918.P81284@megazone.bigpanda.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Sun, 16 Nov 2003, Yasir Malik wrote:
> I think I am almost at a solution to my last question. I can do
> select int4(a) from test;
> to convert to an integer. So now addition and
> subtraction can be done between bit types. But how do I convert back to
> BIT type? If I do
> select bit(int4(b'1001'));
>
> I get the following message:
> ERROR: parser: parse error at or near "int4" at character 12
>
> Can anyone tell me why the bit function is not working? It's under the
> pg_catalog schema.
It's also the name of a type that takes a precision in parentheses, so
you'd have to say "bit"(...) with the quotes. As a note, I think
that's going to effectively return you a bit(32), so
sszabo=# select "bit"(int4(b'1001'));
bit
----------------------------------
00000000000000000000000000001001
From | Date | Subject | |
---|---|---|---|
Next Message | Randolf Richardson, DevNet SysOp 29 | 2003-11-17 05:47:28 | Re: SOLVED: Emulating 'connect by prior' using stored proc |
Previous Message | Randolf Richardson, DevNet SysOp 29 | 2003-11-17 05:31:07 | Re: Expressional Indexes |