diff options
author | unknown <serg@serg.mysql.com> | 2001-10-01 14:37:15 +0200 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-10-01 14:37:15 +0200 |
commit | 6ee4a0d2086013ed97df99c01bdb05ba6959eb38 (patch) | |
tree | ee3b9a7441fb7e196d9d06e491cb65043172c9dc | |
parent | 00009583034f1021c6a0c277dede59f7ac4455ec (diff) | |
download | mariadb-git-6ee4a0d2086013ed97df99c01bdb05ba6959eb38.tar.gz |
three column types (added to parser - but not to the manual - long time ago) documented
-rw-r--r-- | Docs/manual.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index e9b9e885ff7..cf2f18eb80e 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -28179,6 +28179,13 @@ column that only can take 2 values: A @code{CHAR(0)}, that is not defined as @code{NOT NULL}, will only occupy one bit and can only take 2 values: @code{NULL} or @code{""}. @xref{CHAR}. +@tindex BOOL +@tindex BIT +@item BIT +@itemx BOOL +@itemx CHAR +These three are synonyms for @code{CHAR(1)}. + @tindex CHARACTER VARYING @tindex CHAR VARYING @tindex VARCHAR |