Commit 3c64d250 authored by unknown's avatar unknown

manual.texi BIT/BOOL are synonyms from TINYINT(1), not CHAR(1)


Docs/manual.texi:
  BIT/BOOL are synonyms from TINYINT(1), not CHAR(1)
parent 02695336
...@@ -28438,6 +28438,12 @@ will be unsigned! @xref{Cast Functions}. ...@@ -28438,6 +28438,12 @@ will be unsigned! @xref{Cast Functions}.
A very small integer. The signed range is @code{-128} to @code{127}. The A very small integer. The signed range is @code{-128} to @code{127}. The
unsigned range is @code{0} to @code{255}. unsigned range is @code{0} to @code{255}.
@tindex BOOL
@tindex BIT
@item BIT
@itemx BOOL
These are synonyms for @code{TINYINT(1)}.
@tindex SMALLINT @tindex SMALLINT
@item SMALLINT[(M)] [UNSIGNED] [ZEROFILL] @item SMALLINT[(M)] [UNSIGNED] [ZEROFILL]
...@@ -28669,12 +28675,8 @@ column that only can take 2 values: A @code{CHAR(0)}, that is not defined ...@@ -28669,12 +28675,8 @@ column that only can take 2 values: A @code{CHAR(0)}, that is not defined
as @code{NOT NULL}, will occupy only one bit and can take only 2 values: as @code{NOT NULL}, will occupy only one bit and can take only 2 values:
@code{NULL} or @code{""}. @xref{CHAR, , @code{CHAR}}. @code{NULL} or @code{""}. @xref{CHAR, , @code{CHAR}}.
@tindex BOOL @item CHAR
@tindex BIT This is a synonym for @code{CHAR(1)}.
@item BIT
@itemx BOOL
@itemx CHAR
These three are synonyms for @code{CHAR(1)}.
@tindex CHARACTER VARYING @tindex CHARACTER VARYING
@tindex CHAR VARYING @tindex CHAR VARYING
...@@ -54026,7 +54028,7 @@ ODBC or ANSI SQL92 syntax. ...@@ -54026,7 +54028,7 @@ ODBC or ANSI SQL92 syntax.
Fixed syntax of @code{ALTER TABLE tbl_name ALTER COLUMN col_name SET DEFAULT Fixed syntax of @code{ALTER TABLE tbl_name ALTER COLUMN col_name SET DEFAULT
NULL}. NULL}.
@item @item
Added @code{CHAR} and @code{BIT} as synonyms for @code{CHAR(1)}. Added @code{CHAR} (with no length specifier) as a synonym for @code{CHAR(1)}.
@item @item
Fixed core dump when updating as a user who has only @strong{select} privilege. Fixed core dump when updating as a user who has only @strong{select} privilege.
@item @item
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment