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
6b5c9851
Commit
6b5c9851
authored
May 21, 2003
by
vva@eagle.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-3.23
into eagle.mysql.r18.ru:/home/vva/work/LOADDATA/mysql-3.23
parents
cf99d899
4ae8af4a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
sql/log_event.cc
sql/log_event.cc
+5
-1
No files found.
sql/log_event.cc
View file @
6b5c9851
...
...
@@ -697,15 +697,19 @@ void Load_log_event::print(FILE* file, bool short_form, char* last_db)
pretty_print_char
(
file
,
sql_ex
.
escaped
);
}
bool
line_lexem_added
=
false
;
if
(
!
(
sql_ex
.
empty_flags
&
LINE_TERM_EMPTY
))
{
fprintf
(
file
,
" LINES TERMINATED BY "
);
pretty_print_char
(
file
,
sql_ex
.
line_term
);
line_lexem_added
=
true
;
}
if
(
!
(
sql_ex
.
empty_flags
&
LINE_START_EMPTY
))
{
fprintf
(
file
,
" LINES STARTING BY "
);
if
(
!
line_lexem_added
)
fprintf
(
file
,
" LINES"
);
fprintf
(
file
,
" STARTING BY "
);
pretty_print_char
(
file
,
sql_ex
.
line_start
);
}
...
...
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