Added Offset

This commit is contained in:
Alexander M. Turek
2004-10-26 14:03:36 +00:00
parent f9f7d5666a
commit 851d5ca325
2 changed files with 6 additions and 2 deletions

View File

@@ -1,10 +1,13 @@
---------------------- ----------------------
phpMyAdmin - Changelog phpMyAdmin - Changelog
---------------------- ----------------------
$Id$ $Id$
$Source$ $Source$
2004-10-26 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Added OFFSET.
2004-10-25 Michal Čihař <michal@cihar.com> 2004-10-25 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Fix URI detection in case REQUEST_URI contains * libraries/common.lib.php: Fix URI detection in case REQUEST_URI contains
full URI (patch #1044123). full URI (patch #1044123).

View File

@@ -351,6 +351,7 @@ $PMA_SQPdata_reserved_word = array (
//'NO', //'NO',
'NOT', 'NOT',
'NULL', 'NULL',
'OFFSET',
'ON', 'ON',
'OPEN', 'OPEN',
'OPTIMIZE', 'OPTIMIZE',
@@ -461,7 +462,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 = 265; $PMA_SQPdata_reserved_word_cnt = 266;
$PMA_SQPdata_column_type = array ( $PMA_SQPdata_column_type = array (
'BIGINT', 'BIGINT',