bug #3035300 [parser] Fixed wrong definition of keywords.

This commit is contained in:
Michal Čihař
2010-08-30 17:23:50 +02:00
parent ca18fad776
commit 061b87f11f
2 changed files with 3 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- patch #3050492 [PDF scratchboard] Cannot drag table box to the edge after - patch #3050492 [PDF scratchboard] Cannot drag table box to the edge after
a page size increase, thanks to Martin Schönberger - mad05 a page size increase, thanks to Martin Schönberger - mad05
- bug #3054458 [core] Fixed displaying number of rows. - bug #3054458 [core] Fixed displaying number of rows.
- bug #3035300 [parser] Fixed wrong definition of keywords.
3.3.6.0 (2010-08-28) 3.3.6.0 (2010-08-28)
- bug #3033063 [core] Navi gets wrong db name - bug #3033063 [core] Navi gets wrong db name

View File

@@ -211,7 +211,6 @@ $PMA_SQPdata_function_name = array (
'MOD', 'MOD',
'MONTH', 'MONTH',
'MONTHNAME', 'MONTHNAME',
'NOW',
'MPOINTFROMTEXT', // MPointFromText() 'MPOINTFROMTEXT', // MPointFromText()
'MPOINTFROMWKB', // MPointFromWKB() 'MPOINTFROMWKB', // MPointFromWKB()
'MPOLYFROMTEXT', // MPolyFromText() 'MPOLYFROMTEXT', // MPolyFromText()
@@ -339,7 +338,7 @@ $PMA_SQPdata_function_name = array (
* *
* @global integer MySQL attributes count * @global integer MySQL attributes count
*/ */
$PMA_SQPdata_function_name_cnt = 299; $PMA_SQPdata_function_name_cnt = 298;
/* /*
* DEBUG * DEBUG
@@ -1047,9 +1046,9 @@ $PMA_SQPdata_forbidden_word = array (
'RAID_TYPE', 'RAID_TYPE',
'RANGE', // 5.1 'RANGE', // 5.1
'READ', 'READ',
'READS',
'READ_ONLY', // 5.1 'READ_ONLY', // 5.1
'READ_WRITE', // 5.1 'READ_WRITE', // 5.1
'READS',
'REAL', 'REAL',
'RECOVER', 'RECOVER',
'REDUNDANT', 'REDUNDANT',