This commit is contained in:
Alexander M. Turek
2005-01-23 20:57:36 +00:00
parent 3907976338
commit f696e57cba
2 changed files with 16 additions and 8 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-01-23 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Added some keywords.
2005-01-22 Marc Delisle <lem9@users.sourceforge.net> 2005-01-22 Marc Delisle <lem9@users.sourceforge.net>
* libraries/bookmark.lib.php: bug #1103289: num_rows and MYSQL_USE_RESULT, * libraries/bookmark.lib.php: bug #1103289: num_rows and MYSQL_USE_RESULT,
and fix a typo "boommark" and fix a typo "boommark"
@@ -12,12 +15,7 @@ $Source$
* lang/serbian: Updated, thanks to Mihailo Stefanovic (mikis). * lang/serbian: Updated, thanks to Mihailo Stefanovic (mikis).
2005-01-20 Michael Keck <mkkeck@users.sourceforge.net> 2005-01-20 Michael Keck <mkkeck@users.sourceforge.net>
* themes/.../theme_right.css.php: new class for disabled (not available) * libraries/tooltip.js: new JS library for tooltips (hints)
text / values / messages
* libraries/tooltip.js: removed wrong typos (sorry)
2005-01-20 Michael Keck <mkkeck@users.sourceforge.net>
* new js-library: tooltip.js for tooltips (hints)
* libraries/common.lib.php: img tag modified for mouseover / mouseout * libraries/common.lib.php: img tag modified for mouseover / mouseout
(show/hide tooltip) (show/hide tooltip)
* header.inc.php: needed div-container for tooltips * header.inc.php: needed div-container for tooltips
@@ -26,6 +24,9 @@ $Source$
* querywindow.php / tbl_query_box.php: resizing the querywindow if it * querywindow.php / tbl_query_box.php: resizing the querywindow if it
to small to small
* themes/.../layout.inc.php: increased QueryWindowHeight / QueryWindowWidth * themes/.../layout.inc.php: increased QueryWindowHeight / QueryWindowWidth
* themes/.../theme_right.css.php: new class for disabled (not available)
text / values / messages
* libraries/tooltip.js: removed wrong typos (sorry)
2005-01-20 Alexander M. Turek <me@derrabus.de> 2005-01-20 Alexander M. Turek <me@derrabus.de>
* server_engines.php, server_links.inc.php: Use Michael's new icon for * server_engines.php, server_links.inc.php: Use Michael's new icon for

View File

@@ -181,16 +181,21 @@ $PMA_SQPdata_column_attrib = array (
'INNOBASE', 'INNOBASE',
'INNODB', 'INNODB',
'ISAM', 'ISAM',
'MERGE',
'MRG_ISAM',
'MRG_MYISAM', 'MRG_MYISAM',
'MYISAM', 'MYISAM',
'NATIONAL', 'NATIONAL',
'NDB',
'NDBCLUSTER',
'PRECISION', 'PRECISION',
'UNDEFINED',
'UNSIGNED', 'UNSIGNED',
'VARYING', 'VARYING',
'ZEROFILL' 'ZEROFILL'
); );
//$PMA_SQPdata_column_attrib_cnt = count($PMA_SQPdata_column_attrib); //$PMA_SQPdata_column_attrib_cnt = count($PMA_SQPdata_column_attrib);
$PMA_SQPdata_column_attrib_cnt = 15; $PMA_SQPdata_column_attrib_cnt = 20;
$PMA_SQPdata_reserved_word = array ( $PMA_SQPdata_reserved_word = array (
'ACTION', 'ACTION',
@@ -198,6 +203,7 @@ $PMA_SQPdata_reserved_word = array (
'AFTER', 'AFTER',
'AGAINST', 'AGAINST',
'AGGREGATE', 'AGGREGATE',
'ALGORITHM',
'ALL', 'ALL',
'ALTER', 'ALTER',
'ANALYSE', 'ANALYSE',
@@ -400,6 +406,7 @@ $PMA_SQPdata_reserved_word = array (
'ROWS', 'ROWS',
'SECOND', 'SECOND',
'SELECT', 'SELECT',
'SEPARATOR',
'SERIALIZABLE', 'SERIALIZABLE',
'SESSION', 'SESSION',
'SHARE', 'SHARE',
@@ -465,7 +472,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 = 268; $PMA_SQPdata_reserved_word_cnt = 270;
$PMA_SQPdata_column_type = array ( $PMA_SQPdata_column_type = array (
'BIGINT', 'BIGINT',