~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/strict.test

  • Committer: Brian Aker
  • Date: 2009-02-18 01:52:47 UTC
  • mfrom: (873.2.35 devel)
  • Revision ID: brian@tangent.org-20090218015247-1hjai6kkwuife5zs
Merge Monty

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