~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/round.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
SELECT * FROM t1;
17
17
DROP TABLE t1;
18
18
 
19
 
CREATE TABLE t1 (uint8 int unsigned not null);
 
19
CREATE TABLE t1 (uint8 int not null);
20
20
INSERT INTO t1 VALUES ('0.1');
21
21
INSERT INTO t1 VALUES ('0.5');
22
22
INSERT INTO t1 VALUES ('127.4');
44
44
DROP TABLE t1;
45
45
 
46
46
 
47
 
CREATE TABLE t1 (uint16 int unsigned not null);
 
47
CREATE TABLE t1 (uint16 int not null);
48
48
INSERT INTO t1 VALUES ('0.1');
49
49
INSERT INTO t1 VALUES ('0.5');
50
50
INSERT INTO t1 VALUES ('32767.4');
70
70
SELECT * FROM t1;
71
71
DROP TABLE t1;
72
72
 
73
 
CREATE TABLE t1 (uint24 mediumint unsigned not null);
 
73
CREATE TABLE t1 (uint24 mediumint not null);
74
74
INSERT INTO t1 VALUES ('0.1');
75
75
INSERT INTO t1 VALUES ('0.5');
76
76
INSERT INTO t1 VALUES ('8388607.4');
96
96
SELECT * FROM t1;
97
97
DROP TABLE t1;
98
98
 
99
 
CREATE TABLE t1 (uint64 bigint unsigned not null);
 
99
CREATE TABLE t1 (uint64 bigint not null);
100
100
INSERT INTO t1 VALUES ('0.1');
101
101
INSERT INTO t1 VALUES ('0.5');
102
102
INSERT INTO t1 VALUES ('9223372036854775807.4');