# Below is the schema that TestMySQL.java depends on.

drop table if exists test;

CREATE TABLE test
(
  a TINYINT null,
  b SMALLINT null,
  c MEDIUMINT null,
  d INT null,
  e INTEGER null,
  f BIGINT null,
  g REAL null,
  h DOUBLE null,
  i FLOAT null,
  j DECIMAL(8,1) null,
  k NUMERIC(8,1) null,
  l CHAR(255) null,
  m VARCHAR(255) null,
  n DATE null,
  o TIME null,
  p TIMESTAMP null,
  q DATETIME null,
  r TINYBLOB null,
  s BLOB null,
  t MEDIUMBLOB null,
  u LONGBLOB null,
  v TINYTEXT null,
  w TEXT null,
  x MEDIUMTEXT null
);
