diff options
author | Sinisa@sinisa.nasamreza.org <> | 2002-07-20 15:40:02 +0300 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2002-07-20 15:40:02 +0300 |
commit | 151e3e43474789e074a19a9f1146bad1def8efe5 (patch) | |
tree | 6c3be9c7dec9c000a45234f93db9b733ed83a5d1 | |
parent | 2e8fb546dcff4426d0c6bc5a7fed5d1ccdc2e2d6 (diff) | |
download | mariadb-git-151e3e43474789e074a19a9f1146bad1def8efe5.tar.gz |
Some small changes
-rw-r--r-- | Docs/manual.texi | 26 | ||||
-rw-r--r-- | sql/sql_olap.cc | 2 |
2 files changed, 14 insertions, 14 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 96a1d70ffef..dee73518cd9 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -49698,7 +49698,7 @@ Fixed a bug that made the pager option in the mysql client non-functional. @item Added OLAP functionality. -Arjen , please add the following text somewhere appropriate in the +@c Arjen , please add the following text somewhere appropriate in the text above: ------------------------------------------------------------------------- @@ -49792,20 +49792,20 @@ sales group by product, country, year with cube; | Computer | ALL | 2000 | 4200 | | TV | ALL | 1999 | 250 | | TV | ALL | 2000 | 350 | -| Calculator | India | ALL | 75 | -| Calculator | United States | ALL | 200 | -| Computer | India | ALL | 2400 | -| Computer | United States | ALL | 4500 | -| TV | India | ALL | 300 | -| TV | United States | ALL | 300 | +| Calculator | India | 0 | 75 | +| Calculator | United States | 0 | 200 | +| Computer | India | 0 | 2400 | +| Computer | United States | 0 | 4500 | +| TV | India | 0 | 300 | +| TV | United States | 0 | 300 | | ALL | ALL | 1999 | 3000 | | ALL | ALL | 2000 | 4775 | -| ALL | India | ALL | 2775 | -| ALL | United States | ALL | 5000 | -| Calculator | ALL | ALL | 275 | -| Computer | ALL | ALL | 6900 | -| TV | ALL | ALL | 600 | -| ALL | ALL | ALL | 7775 | +| ALL | India | 0 | 2775 | +| ALL | United States | 0 | 5000 | +| Calculator | ALL | 0 | 275 | +| Computer | ALL | 0 | 6900 | +| TV | ALL | 0 | 600 | +| ALL | ALL | 0 | 7775 | +------------+---------------+------+-------------+ 35 rows in set (0.00 sec) diff --git a/sql/sql_olap.cc b/sql/sql_olap.cc index a18fbd24efd..d05e891db63 100644 --- a/sql/sql_olap.cc +++ b/sql/sql_olap.cc @@ -15,7 +15,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* OLAP implementation by Sinisa Milivojevic <sinisa@mysql.com*/ +/* OLAP implementation by Sinisa Milivojevic <sinisa@mysql.com> */ #ifdef __GNUC__ #pragma implementation // gcc: Class implementation |