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
f1fb5aa2
Commit
f1fb5aa2
authored
May 29, 2009
by
Alexey Kopytov
Browse files
Options
Browse Files
Download
Plain Diff
Automerge
parents
b0eb222a
90939fc5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
4 deletions
+29
-4
client/mysql.cc
client/mysql.cc
+2
-2
mysql-test/r/mysql.result
mysql-test/r/mysql.result
+1
-0
mysql-test/t/mysql.test
mysql-test/t/mysql.test
+8
-0
storage/ibmdb2i/db2i_conversion.cc
storage/ibmdb2i/db2i_conversion.cc
+2
-2
storage/ibmdb2i/db2i_misc.h
storage/ibmdb2i/db2i_misc.h
+16
-0
No files found.
client/mysql.cc
View file @
f1fb5aa2
...
...
@@ -1979,7 +1979,7 @@ static COMMANDS *find_command(char *name,char cmd_char)
*/
if
(
strstr
(
name
,
"
\\
g"
)
||
(
strstr
(
name
,
delimiter
)
&&
!
(
strlen
(
name
)
>=
9
&&
!
my_strnncoll
(
charset_info
,
!
my_strnncoll
(
&
my_charset_latin1
,
(
uchar
*
)
name
,
9
,
(
const
uchar
*
)
"delimiter"
,
9
))))
...
...
@@ -2000,7 +2000,7 @@ static COMMANDS *find_command(char *name,char cmd_char)
{
if
(
commands
[
i
].
func
&&
((
name
&&
!
my_strnncoll
(
charset_info
,(
uchar
*
)
name
,
len
,
!
my_strnncoll
(
&
my_charset_latin1
,
(
uchar
*
)
name
,
len
,
(
uchar
*
)
commands
[
i
].
name
,
len
)
&&
!
commands
[
i
].
name
[
len
]
&&
(
!
end
||
(
end
&&
commands
[
i
].
takes_params
)))
||
...
...
mysql-test/r/mysql.result
View file @
f1fb5aa2
...
...
@@ -198,6 +198,7 @@ COUNT (*)
1
COUNT (*)
1
ERROR 2005 (HY000) at line 1: Unknown MySQL server host 'invalid_hostname' (errno)
End of 5.0 tests
WARNING: --server-arg option not supported in this configuration.
Warning (Code 1286): Unknown table engine 'nonexistent'
...
...
mysql-test/t/mysql.test
View file @
f1fb5aa2
...
...
@@ -349,6 +349,14 @@ remove_file $MYSQLTEST_VARDIR/tmp/bug31060.sql;
--
exec
$MYSQL
--
ignore
-
spaces
-
e
"SELECT COUNT (*)"
--
exec
$MYSQL
-
b
-
i
-
e
"SELECT COUNT (*)"
#
# Bug#37268 'binary' character set makes CLI-internal commands case sensitive
#
--
replace_regex
/
\
([
0
-
9
]
*
\
)
/
(
errno
)
/
--
error
1
--
exec
$MYSQL
--
default
-
character
-
set
=
binary
test
-
e
"CONNECT test invalid_hostname"
2
>&
1
--
exec
$MYSQL
--
default
-
character
-
set
=
binary
test
-
e
"DELIMITER //"
2
>&
1
--
echo
End
of
5.0
tests
#
...
...
storage/ibmdb2i/db2i_conversion.cc
View file @
f1fb5aa2
...
...
@@ -1085,7 +1085,7 @@ int32 ha_ibmdb2i::convertMySQLtoDB2(Field* field, const DB2Field& db2Field, char
if
(
bytesToStore
)
memcpy
(
db2Buf
,
dataToStore
,
bytesToStore
);
if
(
bytesToPad
)
wmemset
((
wchar_t
*
)
(
db2Buf
+
bytesToStore
),
0x0020
,
bytesToPad
/
2
);
memset16
(
(
db2Buf
+
bytesToStore
),
0x0020
,
bytesToPad
/
2
);
}
else
{
...
...
@@ -1108,7 +1108,7 @@ int32 ha_ibmdb2i::convertMySQLtoDB2(Field* field, const DB2Field& db2Field, char
bytesToStore
=
db2BytesToStore
;
}
if
(
db2BytesToStore
<
maxDb2BytesToStore
)
// If need to pad
wmemset
((
wchar_t
*
)
(
db2Buf
+
db2BytesToStore
),
0x0020
,
(
maxDb2BytesToStore
-
db2BytesToStore
)
/
2
);
memset16
(
(
db2Buf
+
db2BytesToStore
),
0x0020
,
(
maxDb2BytesToStore
-
db2BytesToStore
)
/
2
);
}
if
(
db2FieldType
==
QMY_VARGRAPHIC
)
...
...
storage/ibmdb2i/db2i_misc.h
View file @
f1fb5aa2
...
...
@@ -109,5 +109,21 @@ bool isOrdinaryIdentifier(const char* s)
}
return
true
;
}
/**
Fill memory with a 16-bit word.
@param p Pointer to space to fill.
@param v Value to fill
@param l Length of space (in 16-bit words)
*/
void
memset16
(
void
*
p
,
uint16
v
,
size_t
l
)
{
uint16
*
p2
=
(
uint16
*
)
p
;
while
(
l
--
)
{
*
(
p2
++
)
=
v
;
}
}
#endif
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