Update create_replicate_table.t, filters.t, and float_precision.t. Remove unused before.sql.

This commit is contained in:
Daniel Nichter
2011-10-13 10:40:39 -06:00
parent f7c85d547d
commit d27ede758d
7 changed files with 203 additions and 193 deletions

View File

@@ -0,0 +1,7 @@
DROP DATABASE IF EXISTS float_precision;
CREATE DATABASE float_precision;
USE float_precision;
CREATE TABLE t (
a float not null primary key,
b double
);