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
92c06038
Commit
92c06038
authored
Feb 23, 2007
by
msvensson@pilot.blaudden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert "system cp" to portable mysqltest commands
parent
e50b39a6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
mysql-test/t/type_varchar.test
mysql-test/t/type_varchar.test
+3
-2
No files found.
mysql-test/t/type_varchar.test
View file @
92c06038
...
...
@@ -3,7 +3,7 @@ drop table if exists t1, t2;
--
enable_warnings
create
table
t1
(
v
varchar
(
30
),
c
char
(
3
),
e
enum
(
'abc'
,
'def'
,
'ghi'
),
t
text
);
system
cp
$MYSQL_TEST_DIR
/
std_data
/
vchar
.
frm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
;
copy_file
$MYSQL_TEST_DIR
/
std_data
/
vchar
.
frm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
vchar
.
frm
;
truncate
table
vchar
;
show
create
table
t1
;
show
create
table
vchar
;
...
...
@@ -162,7 +162,8 @@ create table t3 (
en
varchar
(
255
)
character
set
utf8
,
cz
varchar
(
255
)
character
set
utf8
);
system
cp
$MYSQL_TEST_DIR
/
std_data
/
14897.
frm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t3
.
frm
;
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t3
.
frm
;
copy_file
$MYSQL_TEST_DIR
/
std_data
/
14897.
frm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t3
.
frm
;
truncate
table
t3
;
insert
into
t3
(
id
,
en
,
cz
)
values
(
1
,
'en string 1'
,
'cz string 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