diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-10-14 04:29:53 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-10-14 14:30:51 +0200 |
commit | d86fccf9c909602c37ec97577a19dc442e22206b (patch) | |
tree | a5c6725ba6cf6c91bef2b0a77a8129c0912414ae /tests/dbal/db_tools_test.php | |
parent | 4e69fe68590cca0db66cc90af12e74c58bac10be (diff) | |
download | forums-d86fccf9c909602c37ec97577a19dc442e22206b.tar forums-d86fccf9c909602c37ec97577a19dc442e22206b.tar.gz forums-d86fccf9c909602c37ec97577a19dc442e22206b.tar.bz2 forums-d86fccf9c909602c37ec97577a19dc442e22206b.tar.xz forums-d86fccf9c909602c37ec97577a19dc442e22206b.zip |
[ticket/10327] Change CREATE INDEX to ALTER TABLE table ADD INDEX for MySQL.
* CREATE INDEX is internally mapped to an ALTER INDEX statement.
* CREATE INDEX requires the INDEX permission.
* ALTER TABLE requires the (more powerful) ALTER permission.
* We require the ALTER permission anyway for operation.
* Changing CREATE INDEX to ALTER TABLE thus removes dependency on the INDEX
permission which is good because some management software does not give
out the INDEX permission by default.
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
PHPBB3-10327
Diffstat (limited to 'tests/dbal/db_tools_test.php')
-rw-r--r-- | tests/dbal/db_tools_test.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/dbal/db_tools_test.php b/tests/dbal/db_tools_test.php index 753cc08fc5..927bce4597 100644 --- a/tests/dbal/db_tools_test.php +++ b/tests/dbal/db_tools_test.php @@ -333,4 +333,22 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case ), )); } + + public function test_index_exists() + { + $db_tools = new phpbb_db_tools($this->db); + + $this->assertTrue($db_tools->sql_index_exists('prefix_table_name', 'i_simple')); + } + + public function test_create_index_against_index_exists() + { + $db_tools = new phpbb_db_tools($this->db); + + $table_name = 'prefix_table_name'; + $index_name = 'fookey'; + + $db_tools->sql_create_index($table_name, $index_name, array('c_timestamp', 'c_decimal')); + $this->assertTrue($db_tools->sql_index_exists($table_name, $index_name)); + } } |