Commit 0942b2d8 authored by mikael@dator3.(none)'s avatar mikael@dator3.(none)

Removed warnings

parent 81db111e
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