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
200865eb
Commit
200865eb
authored
Apr 14, 2009
by
Tatiana A. Nurnberg
Browse files
Options
Browse Files
Download
Plain Diff
auto-merge
parents
5d277dc9
5156c2d2
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
62 additions
and
3 deletions
+62
-3
mysql-test/r/repair.result
mysql-test/r/repair.result
+1
-1
mysql-test/r/varbinary.result
mysql-test/r/varbinary.result
+1
-1
mysql-test/suite/ibmdb2i/include/have_i61.inc
mysql-test/suite/ibmdb2i/include/have_i61.inc
+20
-0
mysql-test/suite/ibmdb2i/include/have_ibmdb2i.inc
mysql-test/suite/ibmdb2i/include/have_ibmdb2i.inc
+6
-0
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44020.result
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44020.result
+11
-0
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44025.result
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44025.result
+4
-0
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44020.test
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44020.test
+9
-0
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44025.test
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44025.test
+9
-0
sql/share/errmsg.txt
sql/share/errmsg.txt
+1
-1
No files found.
mysql-test/r/repair.result
View file @
200865eb
...
...
@@ -126,7 +126,7 @@ id
# Run CHECK TABLE, it should indicate table need a REPAIR TABLE
CHECK TABLE t1 FOR UPGRADE;
Table Op Msg_type Msg_text
test.t1 check error Table upgrade required. Please do "REPAIR TABLE `t1`" to fix it!
test.t1 check error Table upgrade required. Please do "REPAIR TABLE `t1`"
or dump/reload
to fix it!
# REPAIR old table USE_FRM should fail
REPAIR TABLE t1 USE_FRM;
Table Op Msg_type Msg_text
...
...
mysql-test/r/varbinary.result
View file @
200865eb
...
...
@@ -38,7 +38,7 @@ length(a) length(b)
255 3
CHECK TABLE t1 FOR UPGRADE;
Table Op Msg_type Msg_text
test.t1 check error Table upgrade required. Please do "REPAIR TABLE `t1`" to fix it!
test.t1 check error Table upgrade required. Please do "REPAIR TABLE `t1`"
or dump/reload
to fix it!
REPAIR TABLE t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
...
...
mysql-test/suite/ibmdb2i/include/have_i61.inc
0 → 100644
View file @
200865eb
# 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`
;
drop
table
uname_vr
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
version
;
--
enable_query_log
if
(
!
$ok
)
{
skip
"Need IBM i 6.1 or later"
;
}
mysql-test/suite/ibmdb2i/include/have_ibmdb2i.inc
0 → 100644
View file @
200865eb
if
(
!
`SELECT count(*) FROM information_schema.engines WHERE
(support = 'YES' OR support = 'DEFAULT') AND
engine = 'ibmdb2i'`
)
{
skip
Need
ibmdb2i
engine
;
}
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44020.result
0 → 100644
View file @
200865eb
create schema `A12345_@$#`;
create table `A12345_@$#`.t1 (i int) engine=ibmdb2i;
show create table `A12345_@$#`.t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL
) ENGINE=IBMDB2I DEFAULT CHARSET=latin1
select * from `A12345_@$#`.t1;
i
drop table `A12345_@$#`.t1;
drop schema `A12345_@$#`;
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44025.result
0 → 100644
View file @
200865eb
create table t1 (c char(10) collate utf8_swedish_ci, index(c)) engine=ibmdb2i;
drop table t1;
create table t1 (c char(10) collate ucs2_swedish_ci, index(c)) engine=ibmdb2i;
drop table t1;
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44020.test
0 → 100644
View file @
200865eb
source
suite
/
ibmdb2i
/
include
/
have_ibmdb2i
.
inc
;
source
include
/
have_case_sensitive_file_system
.
inc
;
create
schema
`A12345_@$#`
;
create
table
`A12345_@$#`
.
t1
(
i
int
)
engine
=
ibmdb2i
;
show
create
table
`A12345_@$#`
.
t1
;
select
*
from
`A12345_@$#`
.
t1
;
drop
table
`A12345_@$#`
.
t1
;
drop
schema
`A12345_@$#`
;
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_44025.test
0 → 100644
View file @
200865eb
source
suite
/
ibmdb2i
/
include
/
have_ibmdb2i
.
inc
;
source
suite
/
ibmdb2i
/
include
/
have_i61
.
inc
;
create
table
t1
(
c
char
(
10
)
collate
utf8_swedish_ci
,
index
(
c
))
engine
=
ibmdb2i
;
drop
table
t1
;
create
table
t1
(
c
char
(
10
)
collate
ucs2_swedish_ci
,
index
(
c
))
engine
=
ibmdb2i
;
drop
table
t1
;
sql/share/errmsg.txt
View file @
200865eb
...
...
@@ -5614,7 +5614,7 @@ ER_SP_WRONG_NAME 42000
eng "Incorrect routine name '%-.192s'"
ger "Ungltiger Routinenname '%-.192s'"
ER_TABLE_NEEDS_UPGRADE
eng "Table upgrade required. Please do \"REPAIR TABLE `%-.32s`\" to fix it!"
eng "Table upgrade required. Please do \"REPAIR TABLE `%-.32s`\"
or dump/reload
to fix it!"
ger "Tabellenaktualisierung erforderlich. Bitte zum Reparieren \"REPAIR TABLE `%-.32s`\" eingeben!"
ER_SP_NO_AGGREGATE 42000
eng "AGGREGATE is not supported for stored functions"
...
...
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