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
253d528b
Commit
253d528b
authored
Aug 08, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error code in some tests because of merge
parent
4cdca348
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/t/errors.test
mysql-test/t/errors.test
+1
-1
mysql-test/t/type_bit.test
mysql-test/t/type_bit.test
+1
-1
mysql-test/t/type_bit_innodb.test
mysql-test/t/type_bit_innodb.test
+1
-1
No files found.
mysql-test/t/errors.test
View file @
253d528b
...
@@ -35,7 +35,7 @@ drop table t1;
...
@@ -35,7 +35,7 @@ drop table t1;
#
#
# Bug #6080: Error message for a field with a display width that is too long
# Bug #6080: Error message for a field with a display width that is too long
#
#
--
error
143
8
--
error
143
9
create
table
t1
(
a
int
(
256
));
create
table
t1
(
a
int
(
256
));
set
sql_mode
=
'traditional'
;
set
sql_mode
=
'traditional'
;
--
error
1074
--
error
1074
...
...
mysql-test/t/type_bit.test
View file @
253d528b
...
@@ -19,7 +19,7 @@ select 0 + b'1000000000000001';
...
@@ -19,7 +19,7 @@ select 0 + b'1000000000000001';
drop
table
if
exists
t1
;
drop
table
if
exists
t1
;
--
enable_warnings
--
enable_warnings
--
error
1
074
--
error
1
439
create
table
t1
(
a
bit
(
65
));
create
table
t1
(
a
bit
(
65
));
create
table
t1
(
a
bit
(
0
));
create
table
t1
(
a
bit
(
0
));
...
...
mysql-test/t/type_bit_innodb.test
View file @
253d528b
...
@@ -20,7 +20,7 @@ select 0 + b'1000000000000001';
...
@@ -20,7 +20,7 @@ select 0 + b'1000000000000001';
drop
table
if
exists
t1
;
drop
table
if
exists
t1
;
--
enable_warnings
--
enable_warnings
--
error
143
8
--
error
143
9
create
table
t1
(
a
bit
(
65
))
engine
=
innodb
;
create
table
t1
(
a
bit
(
65
))
engine
=
innodb
;
create
table
t1
(
a
bit
(
0
))
engine
=
innodb
;
create
table
t1
(
a
bit
(
0
))
engine
=
innodb
;
...
...
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