Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b94e41a1
Commit
b94e41a1
authored
Oct 26, 2008
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fix: Update warning number due to repositioning in the error list.
parent
be7629e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
mysql-test/r/partition_windows.result
mysql-test/r/partition_windows.result
+6
-6
mysql-test/r/windows.result
mysql-test/r/windows.result
+2
-2
No files found.
mysql-test/r/partition_windows.result
View file @
b94e41a1
...
@@ -15,16 +15,16 @@ DATA DIRECTORY = 'E:/mysqltest/p2Data'
...
@@ -15,16 +15,16 @@ DATA DIRECTORY = 'E:/mysqltest/p2Data'
INDEX DIRECTORY = 'F:/mysqltest/p2Index'
INDEX DIRECTORY = 'F:/mysqltest/p2Index'
);
);
Warnings:
Warnings:
Warning 161
6
<DATA DIRECTORY> option ignored
Warning 161
8
<DATA DIRECTORY> option ignored
Warning 161
6
<INDEX DIRECTORY> option ignored
Warning 161
8
<INDEX DIRECTORY> option ignored
Warning 161
6
<DATA DIRECTORY> option ignored
Warning 161
8
<DATA DIRECTORY> option ignored
Warning 161
6
<INDEX DIRECTORY> option ignored
Warning 161
8
<INDEX DIRECTORY> option ignored
INSERT INTO t1 VALUES (NULL, "first", 1);
INSERT INTO t1 VALUES (NULL, "first", 1);
INSERT INTO t1 VALUES (NULL, "second", 2);
INSERT INTO t1 VALUES (NULL, "second", 2);
INSERT INTO t1 VALUES (NULL, "third", 3);
INSERT INTO t1 VALUES (NULL, "third", 3);
ALTER TABLE t1 ADD PARTITION (PARTITION p3 DATA DIRECTORY = 'G:/mysqltest/p3Data' INDEX DIRECTORY = 'H:/mysqltest/p3Index');
ALTER TABLE t1 ADD PARTITION (PARTITION p3 DATA DIRECTORY = 'G:/mysqltest/p3Data' INDEX DIRECTORY = 'H:/mysqltest/p3Index');
Warnings:
Warnings:
Warning 161
6
<DATA DIRECTORY> option ignored
Warning 161
8
<DATA DIRECTORY> option ignored
Warning 161
6
<INDEX DIRECTORY> option ignored
Warning 161
8
<INDEX DIRECTORY> option ignored
INSERT INTO t1 VALUES (NULL, "last", 4);
INSERT INTO t1 VALUES (NULL, "last", 4);
DROP TABLE t1;
DROP TABLE t1;
mysql-test/r/windows.result
View file @
b94e41a1
...
@@ -9,8 +9,8 @@ drop table nu;
...
@@ -9,8 +9,8 @@ drop table nu;
drop table if exists t1;
drop table if exists t1;
CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
Warnings:
Warnings:
Warning 161
6
<DATA DIRECTORY> option ignored
Warning 161
8
<DATA DIRECTORY> option ignored
Warning 161
6
<INDEX DIRECTORY> option ignored
Warning 161
8
<INDEX DIRECTORY> option ignored
drop table t1;
drop table t1;
CREATE TABLE t1 (a int, b int);
CREATE TABLE t1 (a int, b int);
INSERT INTO t1 VALUES (1,1);
INSERT INTO t1 VALUES (1,1);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment