~mordred/drizzle/merge-pandora-build

« back to all changes in this revision

Viewing changes to tests/suite/mysql_compatibility/r/zerofill.result

  • Committer: Brian Aker
  • Date: 2010-12-20 19:24:24 UTC
  • mfrom: (2008.2.5 integer-refactor)
  • Revision ID: brian@tangent.org-20101220192424-iyccxsagvuw43kaz
A rather large and tasty cleanup of issues around ints, and one additional
fix for alter table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (A INT ZEROFILL);
 
2
SHOW CREATE TABLE t1;
 
3
Table   Create Table
 
4
t1      CREATE TABLE `t1` (
 
5
  `A` BIGINT UNSIGNED DEFAULT NULL
 
6
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
7
DROP TABLE t1;