Don't log warnings for valid SQL

The warnings are about what the parser expects, not something the end user
should know.
This commit is contained in:
Markus Mäkelä
2018-04-10 21:39:17 +03:00
parent d28cf6b948
commit e327282e82
2 changed files with 2 additions and 2 deletions

View File

@ -562,7 +562,7 @@ private:
if (m_pI != m_pEnd)
{
MXS_WARNING("Non-space data found after semi-colon: '%.*s'.",
MXS_INFO("Non-space data found after semi-colon: '%.*s'.",
(int)(m_pEnd - m_pI), m_pI);
}