~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/strict.test

  • Committer: Monty Taylor
  • Date: 2009-02-17 10:00:38 UTC
  • mto: This revision was merged to the branch mainline in revision 888.
  • Revision ID: mordred@inaugust.com-20090217100038-ywlg7whtxdl9od5u
Update tests based on how Toru's latest patch changes create table statements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
# Test INSERT with INT
6
6
 
 
7
--disable_warnings
 
8
DROP TABLE IF EXISTS t1;
 
9
--enable_warnings
7
10
CREATE TABLE t1 (col1 INT);
8
11
INSERT INTO t1 VALUES(-2147483648),(0),(2147483647),('-2147483648'),('2147483647'),(-2147483648.0),(2147483647.0);
9
12
--error ER_WARN_DATA_OUT_OF_RANGE