forked from twitter-forks/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug#11766191:INVALID MEMORY READ IN DO_DIV_MOD WITH DOUBLY ASSIGNED V…
…ARIABLES Bug#12608543: CRASHES WITH DECIMALS AND STATEMENT NEEDS TO BE REPREPARED ERRORS Backporting these two fixes to 5.1 Added unittest to test my_decimal construtor and assignment operators --BZR-- revision-id: [email protected] property-audit-revid: [email protected] property-branch-nick: mysql-5.1 property-file-info: ld7:file_id65:sp1f-my_decimal.h-20050208224937-z6shzy3pf5uyso4mvtc2f6pckjzfeg5f7:message57:Added constructor and assignment operators for my_decimal4:path16:sql/my_decimal.hed7:file_id48:my_decimalt.cc-20130516065738-r9c9oj5dcynw3ffh-37:message71:Added test to check constructor and assignment operators for my_decimal4:path35:unittest/my_decimal/my_decimal-t.ccee testament3-sha1: 5333c477949783fed17a1b237ab98198e7c230c1
- Loading branch information
Chaithra Gopalareddy
committed
May 22, 2013
1 parent
a6a527c
commit 8021bf4
Showing
9 changed files
with
137 additions
and
17 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. | ||
# | ||
# 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; version 2 of the License. | ||
# | ||
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
|
||
AM_CPPFLAGS = @ZLIB_INCLUDES@ -I$(top_builddir)/include | ||
AM_CPPFLAGS += -I$(top_srcdir)/include -I$(top_srcdir)/unittest/mytap | ||
AM_CPPFLAGS += -I$(top_srcdir)/sql | ||
|
||
LDADD = $(top_builddir)/unittest/mytap/libmytap.a \ | ||
$(top_builddir)/mysys/libmysys.a \ | ||
$(top_builddir)/strings/libmystrings.a \ | ||
$(top_builddir)/dbug/libdbug.a \ | ||
$(top_builddir)/mysys/libmysys.a \ | ||
$(top_builddir)/strings/libmystrings.a | ||
|
||
my_decimal_t_SOURCES = my_decimal-t.cc | ||
|
||
noinst_PROGRAMS = my_decimal-t | ||
|
||
# Don't update the files from bitkeeper | ||
%::SCCS/s.% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. | ||
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; version 2 of the License. | ||
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ | ||
|
||
#include "my_config.h" | ||
#include "config.h" | ||
#include <tap.h> | ||
#include <my_global.h> | ||
#include <my_sys.h> | ||
#include <m_string.h> | ||
#include <sql_string.h> | ||
#include <my_decimal.h> | ||
|
||
|
||
|
||
/* | ||
Test my_decimal constuctor and assignement operators | ||
*/ | ||
static int | ||
test_copy_and_compare() | ||
{ | ||
my_decimal d1,d2; | ||
|
||
ulonglong val= 42; | ||
|
||
ok(ulonglong2decimal(val,&d1) == 0, "Pass"); | ||
d2= d1; | ||
my_decimal d3(d1); | ||
|
||
ok(my_decimal_cmp(&d1, &d2) == 0, "Pass"); | ||
ok(my_decimal_cmp(&d2, &d3) == 0, "Pass"); | ||
ok(my_decimal_cmp(&d3, &d1) == 0,"Pass"); | ||
|
||
ulonglong val1, val2, val3; | ||
ok(decimal2ulonglong(&d1, &val1) == 0, "Pass"); | ||
ok(decimal2ulonglong(&d2, &val2) == 0,"Pass"); | ||
ok(decimal2ulonglong(&d3, &val3) == 0,"Pass"); | ||
|
||
ok(val == val1,"Pass"); | ||
ok(val == val2,"Pass"); | ||
ok(val == val3,"Pass"); | ||
|
||
// The CTOR/operator=() generated by the compiler would fail here: | ||
val= 45; | ||
ok(ulonglong2decimal(val, &d1) == 0,"Pass"); | ||
ok(my_decimal_cmp(&d1, &d2) == 1,"Pass"); | ||
ok(my_decimal_cmp(&d1, &d3) == 1,"Pass"); | ||
|
||
return 0; | ||
|
||
} | ||
|
||
int main() | ||
{ | ||
plan(13); | ||
diag("Testing my_decimal constructor and assignment operators"); | ||
|
||
test_copy_and_compare(); | ||
|
||
return exit_status(); | ||
} |