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
f0e04c1e
Commit
f0e04c1e
authored
May 25, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
my_b_write() needs to be replaced with my_b_append() for a SEQ_READ_APPEND
parent
3005ed88
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
sql/parse_file.cc
sql/parse_file.cc
+20
-20
No files found.
sql/parse_file.cc
View file @
f0e04c1e
...
...
@@ -50,27 +50,27 @@ write_escaped_string(IO_CACHE *file, LEX_STRING *val_s)
*/
switch
(
*
ptr
)
{
case
'\\'
:
// escape character
if
(
my_b_
write
(
file
,
"
\\\\
"
,
2
))
if
(
my_b_
append
(
file
,
"
\\\\
"
,
2
))
return
TRUE
;
break
;
case
'\n'
:
// parameter value delimiter
if
(
my_b_
write
(
file
,
"
\\
n"
,
2
))
if
(
my_b_
append
(
file
,
"
\\
n"
,
2
))
return
TRUE
;
break
;
case
'\0'
:
// problem for some string processing utilites
if
(
my_b_
write
(
file
,
"
\\
0"
,
2
))
if
(
my_b_
append
(
file
,
"
\\
0"
,
2
))
return
TRUE
;
break
;
case
26
:
// problem for windows utilites (Ctrl-Z)
if
(
my_b_
write
(
file
,
"
\\
z"
,
2
))
if
(
my_b_
append
(
file
,
"
\\
z"
,
2
))
return
TRUE
;
break
;
case
'\''
:
// list of string delimiter
if
(
my_b_
write
(
file
,
"
\\\'
"
,
2
))
if
(
my_b_
append
(
file
,
"
\\\'
"
,
2
))
return
TRUE
;
break
;
default:
if
(
my_b_
write
(
file
,
ptr
,
1
))
if
(
my_b_
append
(
file
,
ptr
,
1
))
return
TRUE
;
}
}
...
...
@@ -106,7 +106,7 @@ write_parameter(IO_CACHE *file, gptr base, File_option *parameter,
case
FILE_OPTIONS_STRING
:
{
LEX_STRING
*
val_s
=
(
LEX_STRING
*
)(
base
+
parameter
->
offset
);
if
(
my_b_
write
(
file
,
val_s
->
str
,
val_s
->
length
))
if
(
my_b_
append
(
file
,
val_s
->
str
,
val_s
->
length
))
DBUG_RETURN
(
TRUE
);
break
;
}
...
...
@@ -119,7 +119,7 @@ write_parameter(IO_CACHE *file, gptr base, File_option *parameter,
case
FILE_OPTIONS_ULONGLONG
:
{
num
.
set
(
*
((
ulonglong
*
)(
base
+
parameter
->
offset
)),
&
my_charset_bin
);
if
(
my_b_
write
(
file
,
num
.
ptr
(),
num
.
length
()))
if
(
my_b_
append
(
file
,
num
.
ptr
(),
num
.
length
()))
DBUG_RETURN
(
TRUE
);
break
;
}
...
...
@@ -128,7 +128,7 @@ write_parameter(IO_CACHE *file, gptr base, File_option *parameter,
ulonglong
*
val_i
=
(
ulonglong
*
)(
base
+
parameter
->
offset
);
*
old_version
=
(
*
val_i
)
++
;
num
.
set
(
*
val_i
,
&
my_charset_bin
);
if
(
my_b_
write
(
file
,
num
.
ptr
(),
num
.
length
()))
if
(
my_b_
append
(
file
,
num
.
ptr
(),
num
.
length
()))
DBUG_RETURN
(
TRUE
);
break
;
}
...
...
@@ -141,7 +141,7 @@ write_parameter(IO_CACHE *file, gptr base, File_option *parameter,
get_date
(
val_s
->
str
,
GETDATE_DATE_TIME
|
GETDATE_GMT
|
GETDATE_FIXEDLENGTH
,
tm
);
val_s
->
length
=
PARSE_FILE_TIMESTAMPLENGTH
;
if
(
my_b_
write
(
file
,
val_s
->
str
,
PARSE_FILE_TIMESTAMPLENGTH
))
if
(
my_b_
append
(
file
,
val_s
->
str
,
PARSE_FILE_TIMESTAMPLENGTH
))
DBUG_RETURN
(
TRUE
);
break
;
}
...
...
@@ -155,10 +155,10 @@ write_parameter(IO_CACHE *file, gptr base, File_option *parameter,
{
num
.
set
((
ulonglong
)
str
->
length
,
&
my_charset_bin
);
// ',' after string to detect list continuation
if
((
!
first
&&
my_b_
write
(
file
,
" "
,
1
))
||
my_b_
write
(
file
,
"
\'
"
,
1
)
||
my_b_
write
(
file
,
str
->
str
,
str
->
length
)
||
my_b_
write
(
file
,
"
\'
"
,
1
))
if
((
!
first
&&
my_b_
append
(
file
,
" "
,
1
))
||
my_b_
append
(
file
,
"
\'
"
,
1
)
||
my_b_
append
(
file
,
str
->
str
,
str
->
length
)
||
my_b_
append
(
file
,
"
\'
"
,
1
))
{
DBUG_RETURN
(
TRUE
);
}
...
...
@@ -222,18 +222,18 @@ sql_create_definition_file(const LEX_STRING *dir, const LEX_STRING *file_name,
goto
err_w_file
;
// write header (file signature)
if
(
my_b_
write
(
&
file
,
"TYPE="
,
5
)
||
my_b_
write
(
&
file
,
type
->
str
,
type
->
length
)
||
my_b_
write
(
&
file
,
"
\n
"
,
1
))
if
(
my_b_
append
(
&
file
,
"TYPE="
,
5
)
||
my_b_
append
(
&
file
,
type
->
str
,
type
->
length
)
||
my_b_
append
(
&
file
,
"
\n
"
,
1
))
goto
err_w_file
;
// write parameters to temporary file
for
(
File_option
*
param
=
parameters
;
param
->
name
.
str
;
param
++
)
{
if
(
my_b_
write
(
&
file
,
param
->
name
.
str
,
param
->
name
.
length
)
||
my_b_
write
(
&
file
,
"="
,
1
)
||
if
(
my_b_
append
(
&
file
,
param
->
name
.
str
,
param
->
name
.
length
)
||
my_b_
append
(
&
file
,
"="
,
1
)
||
write_parameter
(
&
file
,
base
,
param
,
&
old_version
)
||
my_b_
write
(
&
file
,
"
\n
"
,
1
))
my_b_
append
(
&
file
,
"
\n
"
,
1
))
goto
err_w_cache
;
}
...
...
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