bug #2784400 [parser] INVOKER not understood by parser

This commit is contained in:
Marc Delisle
2009-05-06 16:54:30 +00:00
parent b5046cd0d3
commit 2bbd7f1a3b
2 changed files with 3 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- patch #2773818 [export] Invalid "Content-Encoding" header, - patch #2773818 [export] Invalid "Content-Encoding" header,
thanks to abignale - abignale thanks to abignale - abignale
- bug #2787162 [interface] Table with name 'log_views' is incorrectly displayed as a view - bug #2787162 [interface] Table with name 'log_views' is incorrectly displayed as a view
- bug #2784400 [parser] INVOKER not understood by parser
3.1.4.0 (2009-04-25) 3.1.4.0 (2009-04-25)
+ patch #1808339 [doc] Apache SSLOptions and StdEnvVars FAQ, + patch #1808339 [doc] Apache SSLOptions and StdEnvVars FAQ,

View File

@@ -515,6 +515,7 @@ $PMA_SQPdata_reserved_word = array (
'INSERT_METHOD', 'INSERT_METHOD',
'INTERVAL', 'INTERVAL',
'INTO', 'INTO',
'INVOKER',
'IS', 'IS',
'ISOLATION', 'ISOLATION',
'JOIN', 'JOIN',
@@ -693,7 +694,7 @@ $PMA_SQPdata_reserved_word = array (
* *
* @global integer MySQL reserved words count * @global integer MySQL reserved words count
*/ */
$PMA_SQPdata_reserved_word_cnt = 288; $PMA_SQPdata_reserved_word_cnt = 289;
/** /**
* The previous array must be sorted so that the binary search work. * The previous array must be sorted so that the binary search work.
* Sometimes a word is not added in the correct order, so * Sometimes a word is not added in the correct order, so