diff options
author | unknown <monty@hundin.mysql.fi> | 2002-05-02 18:04:21 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-05-02 18:04:21 +0300 |
commit | 23bf3689667890dd8da518b6478f10090a5adaf4 (patch) | |
tree | e3f51e58cf724cef14bef4aa47370a62fd4d6bdf /isam | |
parent | c3703e5568c76669c8277e98206a00e6f652b5fd (diff) | |
download | mariadb-git-23bf3689667890dd8da518b6478f10090a5adaf4.tar.gz |
Fixed problems with DECIMAL() type on overflow.
Docs/manual.texi:
Changlog
configure.in:
Change to version 3.23.51
Fix for OSF1
include/mysqld_error.h:
Added copyright message
isam/pack_isam.c:
Added copyright message
mysql-test/r/type_decimal.result:
New test results
mysql-test/t/type_decimal.test:
New test results
strings/Makefile.am:
Added mising file
Diffstat (limited to 'isam')
-rw-r--r-- | isam/pack_isam.c | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/isam/pack_isam.c b/isam/pack_isam.c index 3d8512847ae..e7b5170d398 100644 --- a/isam/pack_isam.c +++ b/isam/pack_isam.c @@ -1,17 +1,20 @@ -/* Copyright (C) 1979-1999 TcX AB & Monty Program KB & Detron HB - - This software is distributed with NO WARRANTY OF ANY KIND. No author or - distributor accepts any responsibility for the consequences of using it, or - for whether it serves any particular purpose or works at all, unless he or - she says so in writing. Refer to the Free Public License (the "License") - for full details. - Every copy of this file must include a copy of the License, normally in a - plain ASCII text file named PUBLIC. The License grants you the right to - copy, modify and redistribute this file, but only under certain conditions - described in the License. Among other things, the License requires that - the copyright notice and this notice be preserved on all copies. */ - -/* Pack isam file*/ +/* Copyright (C) 1979-2002 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +/* Pack isam file */ #ifndef USE_MY_FUNC #define USE_MY_FUNC /* We nead at least my_malloc */ |