slight mistake in documentation - Mailing list pgsql-docs

From Ralf Miller
Subject slight mistake in documentation
Date
Msg-id 3AB8E69C.E2783619@topnet.de
Whole thread Raw
Responses Re: slight mistake in documentation
Re: slight mistake in documentation
List pgsql-docs
Hello,

i shortly like to give You a hint about a little mistake in

PostgreSQL 7.1 Documentation
Chapter 3. Data Types
3.8. Bit String Types

Bit strings are strings of 1's and 0's. They can be used to store or
visualize bit masks. There are two SQL bit types: BIT(x) and BIT
VARYING(x); the x specifies the maximum
length. BIT type data is automatically padded with 0's on the right to
the maximum length, BIT VARYING is of variable length. BIT without
length is equivalent to BIT(1), BIT
VARYING means unlimited length. Input data that is longer than the
allowed length will be truncated. Refer to Section 1.1.2.2 for
information about the syntax of bit string
constants. Bit-logical operators and string manipulation functions are
available; see Chapter 4.

Some examples:

CREATE TABLE test (a BIT(3), b BIT VARYING(5));
INSERT INTO test VALUES (B'101', B'00');        ### try: ..VALUES
(B'101', 'B00') instead of: ..VALUES (B'101', B'00')
SELECT SUBSTRING(b FROM 1 FOR 2) FROM test;



Thats it for the moment and
Thanks For That Great Database

Ralf

--
**************************************************************************

Wir würden uns freuen, Sie in der Zeit vom 22.03. - 28.03. auf der CeBIT
2001 in Hannover begrüßen zu dürfen. Halle 25 Stand 36A.

**************************************************************************

Dipl.-Ing.(FH) Ralf Miller        topnet-AG
ralf.miller@topnet.de            Willstaetterstrasse 13
Telefon 0211 53087-244            40549 Düsseldorf
Fax    0211 53087-199            http://www.topnet.de
Attachment

pgsql-docs by date:

Previous
From: Joshua Drake
Date:
Subject: PostgreSQL: The Elephant Never Forgets
Next
From: Peter Eisentraut
Date:
Subject: Re: slight mistake in documentation