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
9cbe0621
Commit
9cbe0621
authored
Dec 14, 2006
by
tsmith/tim@siva.hindu.god
Browse files
Options
Browse Files
Download
Plain Diff
Merge siva.hindu.god:/usr/home/tim/m/bk/41
into siva.hindu.god:/usr/home/tim/m/bk/50
parents
b8542e9c
8e5be1ad
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
23 deletions
+11
-23
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+2
-21
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+1
-0
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+5
-1
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+3
-1
No files found.
mysql-test/r/myisam.result
View file @
9cbe0621
...
...
@@ -922,27 +922,7 @@ SET @@myisam_repair_threads=1;
SHOW VARIABLES LIKE 'myisam_repair%';
Variable_name Value
myisam_repair_threads 1
show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
)
ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
)
ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
create table t1 (a int) engine=myisam select 42 a;
select * from t1;
a
9
select * from t1;
a
99
select * from t1;
a
42
drop table t1;
End of 4.1 tests
set storage_engine=MyISAM;
drop table if exists t1,t2,t3;
--- Testing varchar ---
...
...
@@ -1629,3 +1609,4 @@ create table t3 (c1 int) engine=myisam pack_keys=default;
create table t4 (c1 int) engine=myisam pack_keys=2;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1
drop table t1, t2, t3;
End of 5.0 tests
mysql-test/r/symlink.result
View file @
9cbe0621
...
...
@@ -132,3 +132,4 @@ select * from t1;
a
42
drop table t1;
End of 4.1 tests
mysql-test/t/myisam.test
View file @
9cbe0621
...
...
@@ -846,6 +846,10 @@ DROP TABLE t1;
#
SET
@@
myisam_repair_threads
=
1
;
SHOW
VARIABLES
LIKE
'myisam_repair%'
;
--
echo
End
of
4.1
tests
# Test varchar
#
...
...
@@ -970,4 +974,4 @@ create table t3 (c1 int) engine=myisam pack_keys=default;
create
table
t4
(
c1
int
)
engine
=
myisam
pack_keys
=
2
;
drop
table
t1
,
t2
,
t3
;
# End of 4.1
tests
--
echo
End
of
5.0
tests
mysql-test/t/symlink.test
View file @
9cbe0621
...
...
@@ -176,4 +176,6 @@ connection default;
select
*
from
t1
;
drop
table
t1
;
# End of 4.1 tests
--
echo
End
of
4.1
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