~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/ctype_utf32.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:
342
342
#
343
343
# This bug also helped to find another problem that
344
344
# INSERT of a UCS2 string containing a negative number
345
 
# into a unsigned int column didn't produce warnings.
 
345
# into a int column didn't produce warnings.
346
346
# This test covers both problems.
347
347
#
348
348
#SET collation_connection='ucs2_swedish_ci';
351
351
#INSERT INTO t1 VALUES ('-1');
352
352
#SELECT * FROM t1;
353
353
#DROP TABLE t1;
354
 
#CREATE TABLE t1 (Field1 int(10) unsigned default '0');
 
354
#CREATE TABLE t1 (Field1 int(10) default '0');
355
355
## this should generate a "Data truncated" warning
356
356
#INSERT INTO t1 VALUES ('-1');
357
357
#DROP TABLE t1;