From b94e41a1a20696a938bcc117638bd910e430d779 Mon Sep 17 00:00:00 2001 From: Davi Arnaut Date: Sun, 26 Oct 2008 15:05:24 -0200 Subject: [PATCH] Post-merge fix: Update warning number due to repositioning in the error list. --- mysql-test/r/partition_windows.result | 12 ++++++------ mysql-test/r/windows.result | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mysql-test/r/partition_windows.result b/mysql-test/r/partition_windows.result index 87e3a3e970d..756690925f8 100644 --- a/mysql-test/r/partition_windows.result +++ b/mysql-test/r/partition_windows.result @@ -15,16 +15,16 @@ DATA DIRECTORY = 'E:/mysqltest/p2Data' INDEX DIRECTORY = 'F:/mysqltest/p2Index' ); Warnings: -Warning 1616 option ignored -Warning 1616 option ignored -Warning 1616 option ignored -Warning 1616 option ignored +Warning 1618 option ignored +Warning 1618 option ignored +Warning 1618 option ignored +Warning 1618 option ignored INSERT INTO t1 VALUES (NULL, "first", 1); INSERT INTO t1 VALUES (NULL, "second", 2); INSERT INTO t1 VALUES (NULL, "third", 3); ALTER TABLE t1 ADD PARTITION (PARTITION p3 DATA DIRECTORY = 'G:/mysqltest/p3Data' INDEX DIRECTORY = 'H:/mysqltest/p3Index'); Warnings: -Warning 1616 option ignored -Warning 1616 option ignored +Warning 1618 option ignored +Warning 1618 option ignored INSERT INTO t1 VALUES (NULL, "last", 4); DROP TABLE t1; diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result index 7ade7b851cc..d056bde4dca 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -9,8 +9,8 @@ drop table nu; drop table if exists t1; CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM; Warnings: -Warning 1616 option ignored -Warning 1616 option ignored +Warning 1618 option ignored +Warning 1618 option ignored drop table t1; CREATE TABLE t1 (a int, b int); INSERT INTO t1 VALUES (1,1);