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
872ec20e
Commit
872ec20e
authored
May 14, 2009
by
Narayanan V
Browse files
Options
Browse Files
Download
Plain Diff
merging with mysql-5.1-bugteam
parents
d37aa505
78283436
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
0 deletions
+32
-0
mysql-test/suite/ibmdb2i/include/have_i54.inc
mysql-test/suite/ibmdb2i/include/have_i54.inc
+20
-0
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44232.result
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44232.result
+4
-0
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44232.test
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44232.test
+8
-0
No files found.
mysql-test/suite/ibmdb2i/include/have_i54.inc
0 → 100755
View file @
872ec20e
# Check for IBM i 6.1 or later
--
disable_query_log
system
uname
-
rv
>
$MYSQLTEST_VARDIR
/
tmp
/
version
;
--
disable_warnings
drop
table
if
exists
uname_vr
;
--
enable_warnings
create
temporary
table
uname_vr
(
r
int
,
v
int
);
--
disable_warnings
eval
LOAD
DATA
INFILE
"
$MYSQLTEST_VARDIR
/tmp/version"
into
table
uname_vr
fields
terminated
by
' '
;
--
enable_warnings
let
$ok
=
`select count(*) from uname_vr where v = 5 and r = 4`
;
drop
table
uname_vr
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
version
;
--
enable_query_log
if
(
!
$ok
)
{
skip
"Need IBM i 5.4 or later"
;
}
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44232.result
0 → 100755
View file @
872ec20e
create table t1 (c char(1) character set armscii8) engine=ibmdb2i;
ERROR HY000: Can't create table 'test.t1' (errno: 2504)
create table t1 (c char(1) character set eucjpms ) engine=ibmdb2i;
ERROR HY000: Can't create table 'test.t1' (errno: 2504)
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44232.test
0 → 100755
View file @
872ec20e
--
source
suite
/
ibmdb2i
/
include
/
have_ibmdb2i
.
inc
--
source
suite
/
ibmdb2i
/
include
/
have_i54
.
inc
--
error
1005
create
table
t1
(
c
char
(
1
)
character
set
armscii8
)
engine
=
ibmdb2i
;
--
error
1005
create
table
t1
(
c
char
(
1
)
character
set
eucjpms
)
engine
=
ibmdb2i
;
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