Commit e0c0cdc3 authored by unknown's avatar unknown

Removed warnings

parent 2a2b1ea8
drop table if exists t1; drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
create table t1 (a char(5) character set koi8r) create table t1 (a char(5) character set koi8r)
partition by list (ascii(a) mod 3) partition by list (ascii(a) mod 3)
subpartition by hash(ascii(a)) subpartition by hash(ascii(a))
......
-- source include/have_partition.inc -- source include/have_partition.inc
--disable warnings --disable_warnings
drop table if exists t1; drop table if exists t1;
--enable warnings --enable_warnings
create table t1 (a char(5) character set koi8r) create table t1 (a char(5) character set koi8r)
partition by list (ascii(a) mod 3) partition by list (ascii(a) mod 3)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment