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
4ea73773
Commit
4ea73773
authored
Mar 14, 2008
by
istruewing@stella.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes
parent
857dd49a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
9 deletions
+12
-9
mysql-test/r/partition_not_windows.result
mysql-test/r/partition_not_windows.result
+3
-0
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+4
-4
mysql-test/suite/rpl_ndb/t/rpl_ndb_transaction.test
mysql-test/suite/rpl_ndb/t/rpl_ndb_transaction.test
+2
-2
mysql-test/t/partition_symlink.test
mysql-test/t/partition_symlink.test
+2
-2
mysql-test/t/type_set.test
mysql-test/t/type_set.test
+1
-1
No files found.
mysql-test/r/partition_not_windows.result
View file @
4ea73773
...
...
@@ -23,6 +23,9 @@ partition p01 values less than (1000)
data directory='/not/existing'
index directory='/not/existing'
);
Warnings:
Warning 0 DATA DIRECTORY option ignored
Warning 0 INDEX DIRECTORY option ignored
show create table t2;
Table Create Table
t2 CREATE TABLE `t2` (
...
...
mysql-test/r/symlink.result
View file @
4ea73773
...
...
@@ -140,16 +140,16 @@ DROP TABLE t1;
End of 5.0 tests
CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data/mysql';
ERROR HY000: Incorrect arguments to INDEX DIRECORY
ERROR HY000: Incorrect arguments to INDEX DIREC
T
ORY
CREATE TABLE t1(a INT)
DATA DIRECTORY='TEST_DIR/master-data/test';
ERROR HY000: Incorrect arguments to DATA DIRECORY
ERROR HY000: Incorrect arguments to DATA DIREC
T
ORY
CREATE TABLE t1(a INT)
DATA DIRECTORY='TEST_DIR/master-data/';
ERROR HY000: Incorrect arguments to DATA DIRECORY
ERROR HY000: Incorrect arguments to DATA DIREC
T
ORY
CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data';
ERROR HY000: Incorrect arguments to INDEX DIRECORY
ERROR HY000: Incorrect arguments to INDEX DIREC
T
ORY
CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data_var';
ERROR HY000: Can't create/write to file 'TEST_DIR/master-data_var/t1.MYI' (Errcode: 2)
...
...
mysql-test/suite/rpl_ndb/t/rpl_ndb_transaction.test
View file @
4ea73773
...
...
@@ -52,13 +52,13 @@ ROLLBACK;
BEGIN
;
INSERT
INTO
tmyisam
VALUES
(
5
);
INSERT
INTO
tmyisam
VALUES
(
6
);
--
warning
1196
#
--warning 1196
ROLLBACK
;
BEGIN
;
INSERT
INTO
tndb
VALUES
(
7
);
INSERT
INTO
tmyisam
VALUES
(
7
);
--
warning
1196
#
--warning 1196
ROLLBACK
;
SELECT
*
FROM
tndb
ORDER
BY
a
;
...
...
mysql-test/t/partition_symlink.test
View file @
4ea73773
...
...
@@ -134,8 +134,8 @@ eval create table t2 (i int )
partition
by
range
(
i
)
(
partition
p01
values
less
than
(
1000
)
data
directory
=
"
$MYSQLTEST_VARDIR
/
master-data/test
/"
index
directory
=
"
$MYSQLTEST_VARDIR
/
master-data/test
/"
data
directory
=
"
$MYSQLTEST_VARDIR
/
tmp
/"
index
directory
=
"
$MYSQLTEST_VARDIR
/
tmp
/"
);
enable_query_log
;
...
...
mysql-test/t/type_set.test
View file @
4ea73773
...
...
@@ -75,4 +75,4 @@ INSERT INTO t1 VALUES(9223372036854775808);
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
--
#
echo End of 5.0 tests
--
echo
End
of
5.0
tests
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