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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
8fdffd1b
Commit
8fdffd1b
authored
Sep 06, 2006
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix merge problems; work around disparate "ls" behaviors.
parent
21c915a0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
19 deletions
+11
-19
mysql-test/r/ctype_recoding.result
mysql-test/r/ctype_recoding.result
+1
-1
mysql-test/t/heap_btree.test
mysql-test/t/heap_btree.test
+0
-12
mysql-test/t/partition.test
mysql-test/t/partition.test
+10
-6
No files found.
mysql-test/r/ctype_recoding.result
View file @
8fdffd1b
...
...
@@ -253,7 +253,7 @@ create table t1(a char character set cp1251 default _koi8r 0xFF);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` char(1)
character set cp1251 default
''
`a` char(1)
CHARACTER SET cp1251 DEFAULT
''
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
create table t1(a char character set latin1 default _cp1251 0xFF);
...
...
mysql-test/t/heap_btree.test
View file @
8fdffd1b
...
...
@@ -204,16 +204,4 @@ CREATE TABLE t1 (a INT, UNIQUE USING BTREE(a)) ENGINE=MEMORY;
INSERT
INTO
t1
VALUES
(
NULL
),(
NULL
);
DROP
TABLE
t1
;
select
a
from
t1
where
a
>
2
;
delete
from
t1
where
a
<
4
;
select
a
from
t1
order
by
a
;
insert
into
t1
values
(
2
),
(
2
),
(
2
),
(
1
),
(
1
),
(
3
),
(
3
),
(
3
),
(
3
);
select
a
from
t1
where
a
>
4
;
delete
from
t1
where
a
>
4
;
select
a
from
t1
order
by
a
;
select
a
from
t1
where
a
>
3
;
delete
from
t1
where
a
>=
2
;
select
a
from
t1
order
by
a
;
drop
table
t1
;
--
echo
End
of
5.0
tests
mysql-test/t/partition.test
View file @
8fdffd1b
...
...
@@ -1340,11 +1340,13 @@ subpartition by hash (a)
(
SUBPARTITION
subpart00
,
SUBPARTITION
subpart01
));
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
*
||
true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
t
mpdata
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
t
est
/
t1
#
* || true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpinx
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpdata
/
t1
#* || true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpinx
/
t1
#* || true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
eval
ALTER
TABLE
t1
REORGANIZE
PARTITION
p0
INTO
...
...
@@ -1354,11 +1356,13 @@ eval ALTER TABLE t1 REORGANIZE PARTITION p0 INTO
(
SUBPARTITION
subpart20
,
SUBPARTITION
subpart21
));
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.*
||
true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
#* || true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpdata
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpdata
/
t1
#
* || true
--
replace_result
$MYSQLTEST_VARDIR
"hello"
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpinx
/
t1
*
||
true
--
exec
ls
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpinx
/
t1
#
* || true
drop
table
t1
;
--
exec
rmdir
$MYSQLTEST_VARDIR
/
master
-
data
/
tmpdata
||
true
...
...
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