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
4c74d96f
Commit
4c74d96f
authored
Mar 06, 2012
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a duplicate mysql-test file innodb-index.inc.
parent
645bddec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
+0
-26
mysql-test/suite/innodb/include/innodb-index.inc
mysql-test/suite/innodb/include/innodb-index.inc
+0
-26
No files found.
mysql-test/suite/innodb/include/innodb-index.inc
deleted
100644 → 0
View file @
645bddec
--
eval
create
table
t1
(
a
int
not
null
,
b
int
,
c
char
(
10
),
d
varchar
(
20
),
primary
key
(
a
))
engine
=
innodb
default
charset
=
$charset
insert
into
t1
values
(
1
,
1
,
'ab'
,
'ab'
),(
2
,
2
,
'ac'
,
'ac'
),(
3
,
2
,
'ad'
,
'ad'
),(
4
,
4
,
'afe'
,
'afe'
);
commit
;
--
error
ER_DUP_ENTRY
alter
table
t1
add
unique
index
(
b
);
insert
into
t1
values
(
8
,
9
,
'fff'
,
'fff'
);
select
*
from
t1
;
show
create
table
t1
;
alter
table
t1
add
index
(
b
);
insert
into
t1
values
(
10
,
10
,
'kkk'
,
'iii'
);
select
*
from
t1
;
select
*
from
t1
force
index
(
b
)
order
by
b
;
explain
select
*
from
t1
force
index
(
b
)
order
by
b
;
show
create
table
t1
;
alter
table
t1
add
unique
index
(
c
),
add
index
(
d
);
insert
into
t1
values
(
11
,
11
,
'aaa'
,
'mmm'
);
select
*
from
t1
;
select
*
from
t1
force
index
(
b
)
order
by
b
;
select
*
from
t1
force
index
(
c
)
order
by
c
;
select
*
from
t1
force
index
(
d
)
order
by
d
;
explain
select
*
from
t1
force
index
(
b
)
order
by
b
;
explain
select
*
from
t1
force
index
(
c
)
order
by
c
;
explain
select
*
from
t1
force
index
(
d
)
order
by
d
;
show
create
table
t1
;
check
table
t1
;
drop
table
t1
;
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