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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
14b7f7ac
Commit
14b7f7ac
authored
Mar 11, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-3.23
into sinisa.nasamreza.org:/mnt/work/mysql
parents
124f2a14
dc71b8d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
scripts/safe_mysqld.sh
scripts/safe_mysqld.sh
+2
-2
sql/net_serv.cc
sql/net_serv.cc
+1
-1
strings/ctype-tis620.c
strings/ctype-tis620.c
+15
-15
No files found.
scripts/safe_mysqld.sh
View file @
14b7f7ac
...
...
@@ -34,8 +34,8 @@ parse_arguments() {
--datadir
=
*
)
DATADIR
=
`
echo
"
$arg
"
|
sed
-e
"s;--[^=]*=;;"
`
;;
--pid-file
=
*
)
pid_file
=
`
echo
"
$arg
"
|
sed
-e
"s;--[^=]*=;;"
`
;;
--user
=
*
)
if
[
$SET_USER
==
0
]
then
if
test
$SET_USER
-eq
0
then
user
=
`
echo
"
$arg
"
|
sed
-e
"s;--[^=]*=;;"
`
;
SET_USER
=
1
fi
;;
...
...
sql/net_serv.cc
View file @
14b7f7ac
...
...
@@ -181,7 +181,7 @@ static my_bool net_realloc(NET *net, ulong length)
void
net_clear
(
NET
*
net
)
{
#ifndef EXTRA_DEBUG
int
count
;
/
/ One may get 'unused' warning
int
count
;
/
* One may get 'unused' warning */
bool
is_blocking
=
vio_is_blocking
(
net
->
vio
);
if
(
is_blocking
)
vio_blocking
(
net
->
vio
,
FALSE
);
...
...
strings/ctype-tis620.c
View file @
14b7f7ac
...
...
@@ -444,8 +444,8 @@ static uchar* thai2sortable(const uchar * tstr,uint len)
const
uchar
*
p
=
tstr
;
uchar
*
outBuf
;
/
/ uchar *pRight1, *pRight2, *pRight3, *pRight4;
/
/ uchar *pLeft1, *pLeft2, *pLeft3, *pLeft4;
/
* uchar *pRight1, *pRight2, *pRight3, *pRight4; */
/
* uchar *pLeft1, *pLeft2, *pLeft3, *pLeft4; */
uchar
*
pRight1
,
*
pRight2
,
*
pRight3
;
uchar
*
pLeft1
,
*
pLeft2
,
*
pLeft3
;
uint
bufSize
;
...
...
@@ -480,11 +480,11 @@ static uchar* thai2sortable(const uchar * tstr,uint len)
*
pRight1
++
=
t_ctype
[
p
[
1
]][
0
];
*
pRight2
++
=
t_ctype
[
p
[
1
]][
1
];
*
pRight3
++
=
t_ctype
[
p
[
1
]][
2
];
/
/ *pRight4++ = t_ctype[p[1]][3];
/
* *pRight4++ = t_ctype[p[1]][3]; */
*
pRight1
++
=
t_ctype
[
*
p
][
0
];
*
pRight2
++
=
t_ctype
[
*
p
][
1
];
*
pRight3
++
=
t_ctype
[
*
p
][
2
];
/
/ *pRight4++ = t_ctype[*p][3];
/
* *pRight4++ = t_ctype[*p][3]; */
len
--
;
p
+=
2
;
}
else
{
...
...
@@ -501,17 +501,17 @@ static uchar* thai2sortable(const uchar * tstr,uint len)
}
*
pRight1
++
=
L2_BLANK
;
*
pRight2
++
=
L3_BLANK
;
/
/ *pRight3++ = L4_BLANK;
/
* *pRight3++ = L4_BLANK; */
*
pRight3
++
=
'\0'
;
/
/ *pRight4++ = '\0';
/
* *pRight4++ = '\0'; */
memcpy
(
pRight1
,
pLeft2
,
pRight2
-
pLeft2
);
pRight1
+=
pRight2
-
pLeft2
;
memcpy
(
pRight1
,
pLeft3
,
pRight3
-
pLeft3
);
/
/ pRight1 += pRight3 - pLeft3;
/
/ memcpy(pRight1, pLeft4, pRight4 - pLeft4);
/
* pRight1 += pRight3 - pLeft3; */
/
* memcpy(pRight1, pLeft4, pRight4 - pLeft4); */
free
(
pLeft2
);
free
(
pLeft3
);
/
/ free(pLeft4);
/
* free(pLeft4); */
return
(
outBuf
);
}
...
...
@@ -603,22 +603,22 @@ my_bool my_like_range_tis620(const char *ptr, uint ptr_length, pchar escape,
{
if
(
*
ptr
==
escape
&&
ptr
+
1
!=
end
)
{
ptr
++
;
/
/ Skipp escape
ptr
++
;
/
* Skipp escape */
*
min_str
++=
*
max_str
++
=
*
ptr
;
continue
;
}
if
(
*
ptr
==
wild_one
)
/
/ '_' in SQL
if
(
*
ptr
==
wild_one
)
/
* '_' in SQL */
{
*
min_str
++=
'\0'
;
/
/ This should be min char
*
min_str
++=
'\0'
;
/
* This should be min char */
*
max_str
++=
max_sort_chr
;
continue
;
}
if
(
*
ptr
==
wild_many
)
/
/ '%' in SQL
if
(
*
ptr
==
wild_many
)
/
* '%' in SQL */
{
*
min_length
=
(
uint
)
(
min_str
-
min_org
);
*
max_length
=
res_length
;
do
{
*
min_str
++
=
' '
;
/
/ Because if key compression
*
min_str
++
=
' '
;
/
* Because if key compression */
*
max_str
++
=
max_sort_chr
;
}
while
(
min_str
!=
min_end
);
return
0
;
...
...
@@ -628,7 +628,7 @@ my_bool my_like_range_tis620(const char *ptr, uint ptr_length, pchar escape,
*
min_length
=
*
max_length
=
(
uint
)
(
min_str
-
min_org
);
while
(
min_str
!=
min_end
)
*
min_str
++
=
*
max_str
++
=
' '
;
/
/ Because if key compression
*
min_str
++
=
*
max_str
++
=
' '
;
/
* Because if key compression */
return
0
;
}
...
...
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