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
00b058ac
Commit
00b058ac
authored
Oct 01, 2015
by
Teemu Ollakka
Committed by
Nirbhay Choubey
Feb 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs codership/mysql-wsrep#202 Added schema info into wsrep messages
Added schema info to wsrep messages above debug level.
parent
7ce84cf7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
sql/sp.cc
sql/sp.cc
+5
-5
No files found.
sql/sp.cc
View file @
00b058ac
...
@@ -2301,11 +2301,11 @@ int wsrep_create_sp(THD *thd, uchar** buf, size_t* buf_len)
...
@@ -2301,11 +2301,11 @@ int wsrep_create_sp(THD *thd, uchar** buf, size_t* buf_len)
sp
->
m_chistics
,
&
(
thd
->
lex
->
definer
->
user
),
sp
->
m_chistics
,
&
(
thd
->
lex
->
definer
->
user
),
&
(
thd
->
lex
->
definer
->
host
),
&
(
thd
->
lex
->
definer
->
host
),
saved_mode
))
saved_mode
))
{
{
WSREP_WARN
(
"SP create string failed: schema: %s, query: %s"
,
WSREP_WARN
(
"SP create string failed: schema: %s, query: %s"
,
(
thd
->
db
?
thd
->
db
:
"(null)"
),
thd
->
query
());
(
thd
->
db
?
thd
->
db
:
"(null)"
),
thd
->
query
());
return
1
;
return
1
;
}
}
return
wsrep_to_buf_helper
(
thd
,
log_query
.
ptr
(),
log_query
.
length
(),
buf
,
buf_len
);
return
wsrep_to_buf_helper
(
thd
,
log_query
.
ptr
(),
log_query
.
length
(),
buf
,
buf_len
);
}
}
#endif
/* WITH_WSREP */
#endif
/* WITH_WSREP */
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