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
20552486
Commit
20552486
authored
Jan 18, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test results from merge, and fix the symlink test which had an
out-of-sync test and result.
parent
1edf7279
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+9
-0
mysql-test/r/type_float.result
mysql-test/r/type_float.result
+1
-1
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+2
-2
No files found.
mysql-test/r/symlink.result
View file @
20552486
...
...
@@ -45,6 +45,15 @@ alter table t9 rename t8, add column d int not null;
alter table t8 rename t7;
rename table t7 to t9;
drop table t1;
SHOW CREATE TABLE t9;
Table Create Table
t9 CREATE TABLE `t9` (
`a` int(11) NOT NULL auto_increment,
`b` char(16) NOT NULL,
`c` int(11) NOT NULL,
`d` int(11) NOT NULL,
PRIMARY KEY (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
...
...
mysql-test/r/type_float.result
View file @
20552486
...
...
@@ -150,7 +150,7 @@ create table t1 (d1 double, d2 double unsigned);
insert into t1 set d1 = -1.0;
update t1 set d2 = d1;
Warnings:
Warning 1264
Data truncated; out of range
for column 'd2' at row 1
Warning 1264
Out of range value adjusted
for column 'd2' at row 1
select * from t1;
d1 d2
-1 0
...
...
mysql-test/t/symlink.test
View file @
20552486
...
...
@@ -50,8 +50,8 @@ optimize table t9;
repair
table
t9
;
alter
table
t9
add
column
c
int
not
null
;
#
--replace_result $MYSQL_TEST_DIR TEST_DIR
#
show create table t9;
--
replace_result
$MYSQL_TEST_DIR
TEST_DIR
show
create
table
t9
;
# Test renames
alter
table
t9
rename
t8
,
add
column
d
int
not
null
;
...
...
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