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

« back to all changes in this revision

Viewing changes to mysql-test/r/type_newdecimal.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:
703
703
777777777777777777.777777777777777777700000000000
704
704
select .7777777777777777777777777777777777777 - 0.1;
705
705
.7777777777777777777777777777777777777 - 0.1
706
 
0.6777777777777777777777777777777777777
 
706
0.677777777777777777777777777778
707
707
select .343434343434343434 + .343434343434343434;
708
708
.343434343434343434 + .343434343434343434
709
709
0.686868686868686868
1840
1840
Note    1265    Data truncated for column 'c1' at row 4
1841
1841
DESC t2;
1842
1842
Field   Type    Null    Key     Default Extra
1843
 
c1      decimal(32,30)  YES             NULL    
 
1843
c1      decimal(33,30)  YES             NULL    
1844
1844
DROP TABLE t1,t2;
1845
1845
CREATE TABLE t1 (a DECIMAL(30,30));
1846
1846
INSERT INTO t1 VALUES (0.1),(0.2),(0.3);
1851
1851
Note    1265    Data truncated for column 'c1' at row 3
1852
1852
DESC t2;
1853
1853
Field   Type    Null    Key     Default Extra
1854
 
c1      decimal(34,0)   YES             NULL    
 
1854
c1      decimal(33,30)  YES             NULL    
1855
1855
DROP TABLE t1,t2;
1856
1856
CREATE TABLE t1 (a DECIMAL(30,30));
1857
1857
INSERT INTO t1 VALUES (0.1),(0.2),(0.3);