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
58bf6b6d
Commit
58bf6b6d
authored
Mar 09, 2010
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Plain Diff
merge 45482
parents
41fef138
27326d2c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
31 deletions
+29
-31
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+1
-1
mysql-test/r/csv.result
mysql-test/r/csv.result
+21
-22
mysql-test/t/csv.test
mysql-test/t/csv.test
+7
-8
No files found.
mysql-test/lib/mtr_cases.pm
View file @
58bf6b6d
...
...
@@ -648,7 +648,7 @@ sub optimize_cases {
# Check that engine selected by
# --default-storage-engine=<engine> is supported
# =======================================================
my
%
builtin_engines
=
('
myisam
'
=>
1
,
'
memory
'
=>
1
);
my
%
builtin_engines
=
('
myisam
'
=>
1
,
'
memory
'
=>
1
,
'
csv
'
=>
1
);
foreach
my
$opt
(
@
{
$tinfo
->
{
master_opt
}}
)
{
my
$default_engine
=
...
...
mysql-test/r/csv.result
View file @
58bf6b6d
...
...
@@ -5138,7 +5138,7 @@ insert t1 values (1),(2),(3),(4),(5);
truncate table t1;
affected rows: 0
drop table t1;
create table t1 (v varchar(32) not null);
create table t1 (v varchar(32) not null)
engine=csv
;
insert into t1 values ('def'),('abc'),('hij'),('3r4f');
select * from t1;
v
...
...
@@ -5146,14 +5146,14 @@ def
abc
hij
3r4f
alter table t1 change v v2 varchar(32);
alter table t1 change v v2 varchar(32)
not null
;
select * from t1;
v2
def
abc
hij
3r4f
alter table t1 change v2 v varchar(64);
alter table t1 change v2 v varchar(64)
not null
;
select * from t1;
v
def
...
...
@@ -5163,35 +5163,34 @@ hij
update t1 set v = 'lmn' where v = 'hij';
select * from t1;
v
lmn
def
abc
lmn
3r4f
alter table t1 add i int
auto_increment not null primary key
first;
alter table t1 add i int
not null
first;
select * from t1;
i v
1 def
2 abc
3 lmn
4
3r4f
update t1 set i=
5 where i=3
;
0 lmn
0 def
0 abc
0
3r4f
update t1 set i=
3 where v = 'abc'
;
select * from t1;
i v
1 def
2 abc
5 lmn
4
3r4f
alter table t1 change i i bigint;
3 abc
0 lmn
0 def
0
3r4f
alter table t1 change i i bigint
not null
;
select * from t1;
i v
1 def
2 abc
5 lmn
4 3r4f
alter table t1 add unique key (i, v);
select * from t1 where i between 2 and 4 and v in ('def','3r4f','lmn');
3 abc
0 lmn
0 def
0 3r4f
select * from t1 where i between 2 and 4 and v in ('def','3r4f','abc');
i v
4 3r4f
3 abc
drop table t1;
create table bug15205 (val int(11) not null) engine=csv;
create table bug15205_2 (val int(11) not null) engine=csv;
...
...
mysql-test/t/csv.test
View file @
58bf6b6d
...
...
@@ -1553,26 +1553,25 @@ drop table t1;
# whole alter table code is being tested all around the test suite already.
#
create table t1 (v varchar(32) not null);
create table t1 (v varchar(32) not null)
engine=csv
;
insert into t1 values ('def'),('abc'),('hij'),('3r4f');
select * from t1;
# Fast alter, no copy performed
alter table t1 change v v2 varchar(32);
alter table t1 change v v2 varchar(32)
not null
;
select * from t1;
# Fast alter, no copy performed
alter table t1 change v2 v varchar(64);
alter table t1 change v2 v varchar(64)
not null
;
select * from t1;
update t1 set v = 'lmn' where v = 'hij';
select * from t1;
# Regular alter table
alter table t1 add i int
auto_increment not null primary key
first;
alter table t1 add i int
not null
first;
select * from t1;
update t1 set i=
5 where i=3
;
update t1 set i=
3 where v = 'abc'
;
select * from t1;
alter table t1 change i i bigint;
alter table t1 change i i bigint
not null
;
select * from t1;
alter table t1 add unique key (i, v);
select * from t1 where i between 2 and 4 and v in ('def','3r4f','lmn');
select * from t1 where i between 2 and 4 and v in ('def','3r4f','abc');
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