~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to storage/tokudb/mysql-test/tokudb/r/type_decimal.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
799
799
DROP TABLE t1;
800
800
SELECT 1 % .123456789123456789123456789123456789123456789123456789123456789123456789123456789 AS '%';
801
801
%
802
 
0.012345687012345687012345687012345687012345687012345687012345687012345687000000000
 
802
0.012345687012345687012345687012
803
803
SELECT MOD(1, .123456789123456789123456789123456789123456789123456789123456789123456789123456789) AS 'MOD()';
804
804
MOD()
805
 
0.012345687012345687012345687012345687012345687012345687012345687012345687000000000
 
805
0.012345687012345687012345687012
806
806
create table t1 (f1 decimal(6,6),f2 decimal(6,6) zerofill);
807
807
insert into t1 values (-0.123456,0.123456);
808
808
select group_concat(f1),group_concat(f2) from t1;