~drizzle-trunk/drizzle/development

2008.2.3 by Brian Aker
Fixing up a, somewhat, hidden unsigned type to solve a few issues around
1
# We don't support zerofill for display, but we support the use of it for
2
# unsigned.
3
4
CREATE TABLE t1 (A INT ZEROFILL);
5
SHOW CREATE TABLE t1;
6
DROP TABLE t1;