Parser support for SHOW STORAGE ENGINES

This commit is contained in:
Alexander M. Turek
2004-09-05 13:04:56 +00:00
parent e884e46871
commit 1277067ec5
2 changed files with 6 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-09-05 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Parser support for SHOW STORAGE ENGINES.
2004-09-05 Michal Čihař <michal@cihar.com> 2004-09-05 Michal Čihař <michal@cihar.com>
* Documentation.html: Add information about theme versions and names. * Documentation.html: Add information about theme versions and names.

View File

@@ -257,6 +257,7 @@ $PMA_SQPdata_reserved_word = array (
'ENCLOSED', 'ENCLOSED',
'END', 'END',
'ENGINE', 'ENGINE',
'ENGINES',
'ESCAPE', 'ESCAPE',
'ESCAPED', 'ESCAPED',
'EVENTS', 'EVENTS',
@@ -425,6 +426,7 @@ $PMA_SQPdata_reserved_word = array (
'STARTING', 'STARTING',
'STATUS', 'STATUS',
'STOP', 'STOP',
'STORAGE',
'STRAIGHT_JOIN', 'STRAIGHT_JOIN',
'STRING', 'STRING',
'STRIPED', 'STRIPED',
@@ -457,7 +459,7 @@ $PMA_SQPdata_reserved_word = array (
'YEAR_MONTH' 'YEAR_MONTH'
); );
//$PMA_SQPdata_reserved_word_cnt = count($PMA_SQPdata_reserved_word); //$PMA_SQPdata_reserved_word_cnt = count($PMA_SQPdata_reserved_word);
$PMA_SQPdata_reserved_word_cnt = 261; $PMA_SQPdata_reserved_word_cnt = 263;
$PMA_SQPdata_column_type = array ( $PMA_SQPdata_column_type = array (
'BIGINT', 'BIGINT',