Advisor: don't run 'MyISAM concurrent inserts' on Drizzle
[phpmyadmin.git] / tbl_structure.php
blob2bfe212ad76891d4305967b5053da867e6c3f7b1
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Displays table structure infos like fields/columns, indexes, size, rows
5 * and allows manipulation of indexes and columns/fields
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
13 require_once './libraries/mysql_charsets.lib.php';
15 $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
16 $GLOBALS['js_include'][] = 'tbl_structure.js';
17 $GLOBALS['js_include'][] = 'indexes.js';
18 /**
19 * handle multiple field commands if required
21 * submit_mult_*_x comes from IE if <input type="img" ...> is used
23 if (isset($_REQUEST['submit_mult_change_x'])) {
24 $submit_mult = 'change';
25 } elseif (isset($_REQUEST['submit_mult_drop_x'])) {
26 $submit_mult = 'drop';
27 } elseif (isset($_REQUEST['submit_mult_primary_x'])) {
28 $submit_mult = 'primary';
29 } elseif (isset($_REQUEST['submit_mult_index_x'])) {
30 $submit_mult = 'index';
31 } elseif (isset($_REQUEST['submit_mult_unique_x'])) {
32 $submit_mult = 'unique';
33 } elseif (isset($_REQUEST['submit_mult_spatial_x'])) {
34 $submit_mult = 'spatial';
35 } elseif (isset($_REQUEST['submit_mult_fulltext_x'])) {
36 $submit_mult = 'ftext';
37 } elseif (isset($_REQUEST['submit_mult_browse_x'])) {
38 $submit_mult = 'browse';
39 } elseif (isset($_REQUEST['submit_mult'])) {
40 $submit_mult = $_REQUEST['submit_mult'];
41 } elseif (isset($_REQUEST['mult_btn']) && $_REQUEST['mult_btn'] == __('Yes')) {
42 $submit_mult = 'row_delete';
43 if (isset($_REQUEST['selected'])) {
44 $_REQUEST['selected_fld'] = $_REQUEST['selected'];
48 if (! empty($submit_mult) && isset($_REQUEST['selected_fld'])) {
49 $err_url = 'tbl_structure.php?' . PMA_generate_common_url($db, $table);
50 if ($submit_mult == 'browse') {
51 // browsing the table displaying only selected fields/columns
52 $GLOBALS['active_page'] = 'sql.php';
53 $sql_query = '';
54 foreach ($_REQUEST['selected_fld'] as $idx => $sval) {
55 if ($sql_query == '') {
56 $sql_query .= 'SELECT ' . PMA_backquote($sval);
57 } else {
58 $sql_query .= ', ' . PMA_backquote($sval);
62 // what is this htmlspecialchars() for??
63 //$sql_query .= ' FROM ' . PMA_backquote(htmlspecialchars($table));
64 $sql_query .= ' FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
65 require './sql.php';
66 exit;
67 } else {
68 // handle multiple field commands
69 // handle confirmation of deleting multiple fields/columns
70 $action = 'tbl_structure.php';
71 require './libraries/mult_submits.inc.php';
72 //require_once './libraries/header.inc.php';
73 //require_once './libraries/tbl_links.inc.php';
75 if (empty($message)) {
76 $message = PMA_Message::success();
81 /**
82 * Gets the relation settings
84 $cfgRelation = PMA_getRelationsParam();
86 /**
87 * Runs common work
89 require_once './libraries/tbl_common.php';
90 $url_query .= '&amp;goto=tbl_structure.php&amp;back=tbl_structure.php';
91 $url_params['goto'] = 'tbl_structure.php';
92 $url_params['back'] = 'tbl_structure.php';
94 /**
95 * Prepares the table structure display
99 /**
100 * Gets tables informations
102 require_once './libraries/tbl_info.inc.php';
105 * Displays top menu links
107 require_once './libraries/tbl_links.inc.php';
108 require_once './libraries/Index.class.php';
110 // 2. Gets table keys and retains them
111 // @todo should be: $server->db($db)->table($table)->primary()
112 $primary = PMA_Index::getPrimary($table, $db);
114 $columns_with_unique_index = array();
115 foreach (PMA_Index::getFromTable($table, $db) as $index) {
116 if ($index->isUnique() && $index->getChoice() == 'UNIQUE') {
117 $columns = $index->getColumns();
118 foreach ($columns as $column_name => $dummy) {
119 $columns_with_unique_index[$column_name] = 1;
123 unset($index, $columns, $column_name, $dummy);
125 // 3. Get fields
126 $fields = (array) PMA_DBI_get_columns($db, $table, null, true);
128 // Get more complete field information
129 // For now, this is done just for MySQL 4.1.2+ new TIMESTAMP options
130 // but later, if the analyser returns more information, it
131 // could be executed for any MySQL version and replace
132 // the info given by SHOW FULL COLUMNS FROM.
134 // We also need this to correctly learn if a TIMESTAMP is NOT NULL, since
135 // SHOW FULL COLUMNS or INFORMATION_SCHEMA incorrectly says NULL
136 // and SHOW CREATE TABLE says NOT NULL (tested
137 // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
139 $show_create_table = PMA_DBI_fetch_value(
140 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
141 0, 1);
142 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
145 * prepare table infos
147 // action titles (image or string)
148 $titles = array();
149 $titles['Change'] = PMA_getIcon('b_edit.png', __('Change'));
150 $titles['Drop'] = PMA_getIcon('b_drop.png', __('Drop'));
151 $titles['NoDrop'] = PMA_getIcon('b_drop.png', __('Drop'));
152 $titles['Primary'] = PMA_getIcon('b_primary.png', __('Primary'));
153 $titles['Index'] = PMA_getIcon('b_index.png', __('Index'));
154 $titles['Unique'] = PMA_getIcon('b_unique.png', __('Unique'));
155 $titles['Spatial'] = PMA_getIcon('b_spatial.png', __('Spatial'));
156 $titles['IdxFulltext'] = PMA_getIcon('b_ftext.png', __('Fulltext'));
157 $titles['NoPrimary'] = PMA_getIcon('bd_primary.png', __('Primary'));
158 $titles['NoIndex'] = PMA_getIcon('bd_index.png', __('Index'));
159 $titles['NoUnique'] = PMA_getIcon('bd_unique.png', __('Unique'));
160 $titles['NoSpatial'] = PMA_getIcon('bd_spatial.png', __('Spatial'));
161 $titles['NoIdxFulltext'] = PMA_getIcon('bd_ftext.png', __('Fulltext'));
162 $titles['BrowseDistinctValues'] = PMA_getIcon('b_browse.png', __('Browse distinct values'));
164 // hidden action titles (image and string)
165 $hidden_titles = array();
166 $hidden_titles['BrowseDistinctValues'] = PMA_getIcon('b_browse.png', __('Browse distinct values'), true);
167 $hidden_titles['Primary'] = PMA_getIcon('b_primary.png', __('Add primary key'), true);
168 $hidden_titles['NoPrimary'] = PMA_getIcon('bd_primary.png', __('Add primary key'), true);
169 $hidden_titles['Index'] = PMA_getIcon('b_index.png', __('Add index'), true);
170 $hidden_titles['NoIndex'] = PMA_getIcon('bd_index.png', __('Add index'), true);
171 $hidden_titles['Unique'] = PMA_getIcon('b_unique.png', __('Add unique index'), true);
172 $hidden_titles['NoUnique'] = PMA_getIcon('bd_unique.png', __('Add unique index'), true);
173 $hidden_titles['Spatial'] = PMA_getIcon('b_spatial.png', __('Add SPATIAL index'), true);
174 $hidden_titles['NoSpatial'] = PMA_getIcon('bd_spatial.png', __('Add SPATIAL index'), true);
175 $hidden_titles['IdxFulltext'] = PMA_getIcon('b_ftext.png', __('Add FULLTEXT index'), true);
176 $hidden_titles['NoIdxFulltext'] = PMA_getIcon('bd_ftext.png', __('Add FULLTEXT index'), true);
179 * Displays the table structure ('show table' works correct since 3.23.03)
181 /* TABLE INFORMATION */
182 // table header
183 $i = 0;
185 <form method="post" action="tbl_structure.php" name="fieldsForm" id="fieldsForm" <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? ' class="ajax"' : '');?>>
186 <?php echo PMA_generate_common_hidden_inputs($db, $table);
187 echo '<input type="hidden" name="table_type" value=';
188 if ($db_is_information_schema) {
189 echo '"information_schema" />';
190 } else if ($tbl_is_view) {
191 echo '"view" />';
192 } else {
193 echo '"table" />';
194 } ?>
196 <table id="tablestructure" class="data">
197 <thead>
198 <tr>
199 <th id="th<?php echo ++$i; ?>"></th>
200 <th id="th<?php echo ++$i; ?>">#</th>
201 <th id="th<?php echo ++$i; ?>" class="column"><?php echo __('Name'); ?></th>
202 <th id="th<?php echo ++$i; ?>" class="type"><?php echo __('Type'); ?></th>
203 <th id="th<?php echo ++$i; ?>" class="collation"><?php echo __('Collation'); ?></th>
204 <th id="th<?php echo ++$i; ?>" class="attributes"><?php echo __('Attributes'); ?></th>
205 <th id="th<?php echo ++$i; ?>" class="null"><?php echo __('Null'); ?></th>
206 <th id="th<?php echo ++$i; ?>" class="default"><?php echo __('Default'); ?></th>
207 <th id="th<?php echo ++$i; ?>" class="extra"><?php echo __('Extra'); ?></th>
208 <?php if ($db_is_information_schema || $tbl_is_view) { ?>
209 <th id="th<?php echo ++$i; ?>" class="view"><?php echo __('View'); ?></th>
210 <?php } else { ?>
211 <th colspan="7" id="th<?php echo ++$i; ?>" class="action"><?php echo __('Action'); ?></th>
212 <?php } ?>
213 </tr>
214 </thead>
215 <tbody>
217 <?php
218 unset($i);
220 // table body
222 // prepare comments
223 $comments_map = array();
224 $mime_map = array();
226 if ($GLOBALS['cfg']['ShowPropertyComments']) {
227 require_once './libraries/transformations.lib.php';
229 //$cfgRelation = PMA_getRelationsParam();
231 $comments_map = PMA_getComments($db, $table);
233 if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) {
234 $mime_map = PMA_getMIME($db, $table, true);
238 $rownum = 0;
239 $aryFields = array();
240 $checked = (!empty($checkall) ? ' checked="checked"' : '');
241 $save_row = array();
242 $odd_row = true;
243 foreach ($fields as $row) {
244 $save_row[] = $row;
245 $rownum++;
246 $aryFields[] = $row['Field'];
248 $type = $row['Type'];
249 $extracted_fieldspec = PMA_extractFieldSpec($row['Type']);
251 if ('set' == $extracted_fieldspec['type'] || 'enum' == $extracted_fieldspec['type']) {
252 $type_nowrap = '';
253 } else {
254 $type_nowrap = ' nowrap="nowrap"';
256 $type = $extracted_fieldspec['print_type'];
257 if (empty($type)) {
258 $type = ' ';
260 // for the case ENUM('&#8211;','&ldquo;')
261 $type = htmlspecialchars($type);
262 // in case it is too long
263 if (strlen($type) > $GLOBALS['cfg']['LimitChars']) {
264 $type = '<abbr title="' . $type . '">' . substr($type, 0, $GLOBALS['cfg']['LimitChars']) . '</abbr>';
267 unset($field_charset);
268 if ((substr($type, 0, 4) == 'char'
269 || substr($type, 0, 7) == 'varchar'
270 || substr($type, 0, 4) == 'text'
271 || substr($type, 0, 8) == 'tinytext'
272 || substr($type, 0, 10) == 'mediumtext'
273 || substr($type, 0, 8) == 'longtext'
274 || substr($type, 0, 3) == 'set'
275 || substr($type, 0, 4) == 'enum'
276 ) && !$extracted_fieldspec['binary']) {
277 if (strpos($type, ' character set ')) {
278 $type = substr($type, 0, strpos($type, ' character set '));
280 if (!empty($row['Collation'])) {
281 $field_charset = $row['Collation'];
282 } else {
283 $field_charset = '';
285 } else {
286 $field_charset = '';
289 // Display basic mimetype [MIME]
290 if ($cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfg['BrowseMIME'] && isset($mime_map[$row['Field']]['mimetype'])) {
291 $type_mime = '<br />MIME: ' . str_replace('_', '/', $mime_map[$row['Field']]['mimetype']);
292 } else {
293 $type_mime = '';
296 $attribute = $extracted_fieldspec['attribute'];
298 // MySQL 4.1.2+ TIMESTAMP options
299 // (if on_update_current_timestamp is set, then it's TRUE)
300 if (isset($analyzed_sql[0]['create_table_fields'][$row['Field']]['on_update_current_timestamp'])) {
301 $attribute = 'on update CURRENT_TIMESTAMP';
304 // here, we have a TIMESTAMP that SHOW FULL COLUMNS reports as having the
305 // NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
306 // the latter.
307 if (!empty($analyzed_sql[0]['create_table_fields'][$row['Field']]['type']) && $analyzed_sql[0]['create_table_fields'][$row['Field']]['type'] == 'TIMESTAMP' && $analyzed_sql[0]['create_table_fields'][$row['Field']]['timestamp_not_null']) {
308 $row['Null'] = '';
312 if (! isset($row['Default'])) {
313 if ($row['Null'] == 'YES') {
314 $row['Default'] = '<i>NULL</i>';
316 } else {
317 $row['Default'] = htmlspecialchars($row['Default']);
320 $field_encoded = urlencode($row['Field']);
321 $field_name = htmlspecialchars($row['Field']);
322 $displayed_field_name = $field_name;
324 // underline commented fields and display a hover-title (CSS only)
326 if (isset($comments_map[$row['Field']])) {
327 $displayed_field_name = '<span class="commented_column" title="' . htmlspecialchars($comments_map[$row['Field']]) . '">' . $field_name . '</span>';
330 if ($primary && $primary->hasColumn($field_name)) {
331 $displayed_field_name = '<u>' . $field_name . '</u>';
333 echo "\n";
335 <tr class="<?php echo $odd_row ? 'odd': 'even'; $odd_row = !$odd_row; ?>">
336 <td align="center">
337 <input type="checkbox" name="selected_fld[]" value="<?php echo htmlspecialchars($row['Field']); ?>" id="checkbox_row_<?php echo $rownum; ?>" <?php echo $checked; ?> />
338 </td>
339 <td align="right">
340 <?php echo $rownum; ?>
341 </td>
342 <th nowrap="nowrap"><label for="checkbox_row_<?php echo $rownum; ?>"><?php echo $displayed_field_name; ?></label></th>
343 <td<?php echo $type_nowrap; ?>><bdo dir="ltr" xml:lang="en"><?php echo $type; echo $type_mime; ?></bdo></td>
344 <td><?php echo (empty($field_charset) ? '' : '<dfn title="' . PMA_getCollationDescr($field_charset) . '">' . $field_charset . '</dfn>'); ?></td>
345 <td nowrap="nowrap" class="column_attribute"><?php echo $attribute; ?></td>
346 <td><?php echo (($row['Null'] == 'YES') ? __('Yes') : __('No')); ?></td>
347 <td nowrap="nowrap"><?php
348 if (isset($row['Default'])) {
349 if ($extracted_fieldspec['type'] == 'bit') {
350 // here, $row['Default'] contains something like b'010'
351 echo PMA_convert_bit_default_value($row['Default']);
352 } else {
353 echo $row['Default'];
356 else {
357 echo '<i>' . _pgettext('None for default','None') . '</i>';
358 } ?></td>
359 <td nowrap="nowrap"><?php echo strtoupper($row['Extra']); ?></td>
360 <td align="center" class="browse">
361 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('SELECT COUNT(*) AS ' . PMA_backquote(__('Rows')) . ', ' . PMA_backquote($row['Field']) . ' FROM ' . PMA_backquote($table) . ' GROUP BY ' . PMA_backquote($row['Field']) . ' ORDER BY ' . PMA_backquote($row['Field'])); ?>">
362 <?php echo $titles['BrowseDistinctValues']; ?></a>
363 </td>
364 <?php if (! $tbl_is_view && ! $db_is_information_schema) { ?>
365 <td align="center" class="edit">
366 <a href="tbl_alter.php?<?php echo $url_query; ?>&amp;field=<?php echo $field_encoded; ?>">
367 <?php echo $titles['Change']; ?></a>
368 </td>
369 <td align="center" class="drop">
370 <a <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? ' class="drop_column_anchor"' : ''); ?> href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP ' . PMA_backquote($row['Field'])); ?>&amp;dropped_column=<?php echo urlencode($row['Field']); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('Column %s has been dropped'), htmlspecialchars($row['Field']))); ?>" >
371 <?php echo $titles['Drop']; ?></a>
372 </td>
373 <td align="center" class="primary">
374 <?php
375 if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type || ($primary && $primary->hasColumn($field_name))) {
376 echo $titles['NoPrimary'] . "\n";
377 $primary_enabled = false;
378 } else {
379 echo "\n";
381 <a class="add_primary_key_anchor" href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ($primary ? ' DROP PRIMARY KEY,' : '') . ' ADD PRIMARY KEY(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('A primary key has been added on %s'), htmlspecialchars($row['Field']))); ?>" >
382 <?php echo $titles['Primary']; ?></a>
383 <?php $primary_enabled = true;
385 echo "\n";
387 </td>
388 <td align="center" class="unique">
389 <?php
390 if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type || isset($columns_with_unique_index[$field_name])) {
391 echo $titles['NoUnique'] . "\n";
392 $unique_enabled = false;
393 } else {
394 echo "\n";
396 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD UNIQUE(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
397 <?php echo $titles['Unique']; ?></a>
398 <?php $unique_enabled = true;
400 echo "\n";
402 </td>
403 <td align="center" class="index">
404 <?php
405 if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type) {
406 echo $titles['NoIndex'] . "\n";
407 $index_enabled = false;
408 } else {
409 echo "\n";
411 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD INDEX(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
412 <?php echo $titles['Index']; ?></a>
413 <?php
414 $index_enabled = true;
416 echo "\n";
418 </td>
419 <td align="center" class="spatial">
420 <?php
421 $spatial_types = array(
422 'geometry', 'point', 'linestring', 'polygon', 'multipoint',
423 'multilinestring', 'multipolygon', 'geomtrycollection'
425 if (! in_array($type, $spatial_types) || 'MYISAM' != $tbl_type) {
426 echo $titles['NoSpatial'] . "\n";
427 $spatial_enabled = false;
428 } else {
429 echo "\n";
431 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD SPATIAL(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
432 <?php echo $titles['Spatial']; ?></a>
433 <?php
434 $spatial_enabled = true;
436 echo "\n";
438 </td>
439 <?php
440 if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA')
441 // FULLTEXT is possible on TEXT, CHAR and VARCHAR
442 && (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'char'))) {
443 echo "\n";
445 <td align="center" nowrap="nowrap" class="fulltext">
446 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD FULLTEXT(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
447 <?php echo $titles['IdxFulltext']; ?></a>
448 <?php $fulltext_enabled = true; ?>
449 </td>
450 <?php
451 } else {
452 echo "\n";
454 <td align="center" nowrap="nowrap" class="fulltext">
455 <?php echo $titles['NoIdxFulltext'] . "\n"; ?>
456 <?php $fulltext_enabled = false; ?>
457 </td>
458 <?php
459 } // end if... else...
460 echo "\n";
462 <td class="more_opts" id="more_opts<?php echo $rownum; ?>">
463 <?php echo __('More'); ?> <img class="icon ic_more" src="themes/dot.gif" alt="<?php echo __('Show more actions'); ?>" />
464 <div class="structure_actions_dropdown" id="row_<?php echo $rownum; ?>">
466 <div class="action_browse">
467 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('SELECT COUNT(*) AS ' . PMA_backquote(__('Rows')) . ', ' . PMA_backquote($row['Field']) . ' FROM ' . PMA_backquote($table) . ' GROUP BY ' . PMA_backquote($row['Field']) . ' ORDER BY ' . PMA_backquote($row['Field'])); ?>">
468 <?php echo $hidden_titles['BrowseDistinctValues']; ?>
469 </a>
470 </div>
471 <div <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? ' class="action_primary"' : ''); ?>>
472 <?php
473 if (isset($primary_enabled)) {
474 if ($primary_enabled) { ?>
475 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ($primary ? ' DROP PRIMARY KEY,' : '') . ' ADD PRIMARY KEY(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('A primary key has been added on %s'), htmlspecialchars($row['Field']))); ?>">
476 <?php echo $hidden_titles['Primary']; ?>
477 </a>
478 <?php
479 } else {
480 echo $hidden_titles['NoPrimary'];
482 } ?>
483 </div>
484 <div class="action_unique">
485 <?php
486 if (isset($unique_enabled)) {
487 if ($unique_enabled) { ?>
488 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD UNIQUE(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
489 <?php echo $hidden_titles['Unique']; ?>
490 </a>
491 <?php
492 } else {
493 echo $hidden_titles['NoUnique'];
495 } ?>
496 </div>
497 <div class="action_index">
498 <?php
499 if (isset($index_enabled)) {
500 if ($index_enabled) { ?>
501 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD INDEX(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
502 <?php echo $hidden_titles['Index']; ?>
503 </a>
504 <?php
505 } else {
506 echo $hidden_titles['NoIndex'];
508 } ?>
509 </div>
510 <?php if (!PMA_DRIZZLE) { ?>
511 <div class="action_spatial">
512 <?php
513 if (isset($spatial_enabled)) {
514 if ($spatial_enabled) { ?>
515 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD SPATIAL(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
516 <?php echo $hidden_titles['Spatial']; ?>
517 </a>
518 <?php
519 } else {
520 echo $hidden_titles['NoSpatial'];
522 } ?>
523 </div>
524 <div class="action_fulltext">
525 <?php
526 if (isset($fulltext_enabled)) {
527 if ($fulltext_enabled) { ?>
528 <a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD FULLTEXT(' . PMA_backquote($row['Field']) . ')'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(__('An index has been added on %s'), htmlspecialchars($row['Field']))); ?>">
529 <?php echo $hidden_titles['IdxFulltext']; ?>
530 </a>
531 <?php
532 } else {
533 echo $hidden_titles['NoIdxFulltext'];
535 } ?>
536 </div>
537 <?php } ?>
538 </div>
539 </td>
540 <?php
541 } // end if (! $tbl_is_view && ! $db_is_information_schema)
543 </tr>
544 <?php
545 unset($field_charset);
546 } // end foreach
548 echo '</tbody>' . "\n"
549 .'</table>' . "\n";
551 $checkall_url = 'tbl_structure.php?' . PMA_generate_common_url($db, $table);
554 <img class="selectallarrow" src="<?php echo $pmaThemeImage . 'arrow_' . $text_dir . '.png'; ?>"
555 width="38" height="22" alt="<?php echo __('With selected:'); ?>" />
556 <a href="<?php echo $checkall_url; ?>&amp;checkall=1"
557 onclick="if (markAllRows('fieldsForm')) return false;">
558 <?php echo __('Check All'); ?></a>
560 <a href="<?php echo $checkall_url; ?>"
561 onclick="if (unMarkAllRows('fieldsForm')) return false;">
562 <?php echo __('Uncheck All'); ?></a>
564 <i><?php echo __('With selected:'); ?></i>
566 <?php
567 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_browse', __('Browse'), 'b_browse.png', 'browse');
569 if (! $tbl_is_view && ! $db_is_information_schema) {
570 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_change', __('Change'), 'b_edit.png', 'change');
571 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_drop', __('Drop'), 'b_drop.png', 'drop');
572 if ('ARCHIVE' != $tbl_type) {
573 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_primary', __('Primary'), 'b_primary.png', 'primary');
574 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_unique', __('Unique'), 'b_unique.png', 'unique');
575 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_index', __('Index'), 'b_index.png', 'index');
578 if (! empty($tbl_type) && $tbl_type == 'MYISAM') {
579 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_spatial', __('Spatial'), 'b_spatial.png', 'spatial');
581 if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA')) {
582 PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_fulltext', __('Fulltext'), 'b_ftext.png', 'ftext');
586 </form>
587 <hr />
589 <?php
591 * Work on the table
594 if ($tbl_is_view) {
595 $create_view = PMA_DBI_get_definition($db, 'VIEW', $table);
596 echo PMA_linkOrButton(
597 'tbl_sql.php' . PMA_generate_common_url(
598 $url_params +
599 array(
600 'sql_query' => $create_view,
601 'show_query' => '1',
604 PMA_getIcon('b_edit.png', __('Edit view'))
609 <a href="tbl_printview.php?<?php echo $url_query; ?>"><?php
610 echo PMA_getIcon('b_print.png', __('Print view'));
611 ?></a>
613 <?php
614 if (! $tbl_is_view && ! $db_is_information_schema) {
616 // if internal relations are available, or foreign keys are supported
617 // ($tbl_type comes from libraries/tbl_info.inc.php)
618 if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_type)) {
620 <a href="tbl_relation.php?<?php echo $url_query; ?>"><?php
621 echo PMA_getIcon('b_relations.png', __('Relation view'));
622 ?></a>
623 <?php
626 if (!PMA_DRIZZLE) {
628 <a href="sql.php?<?php echo $url_query; ?>&amp;session_max_rows=all&amp;sql_query=<?php echo urlencode('SELECT * FROM ' . PMA_backquote($table) . ' PROCEDURE ANALYSE()'); ?>"><?php
629 echo PMA_getIcon('b_tblanalyse.png', __('Propose table structure'));
630 ?></a><?php
631 echo PMA_showMySQLDocu('Extending_MySQL', 'procedure_analyse') . "\n";
634 if (PMA_Tracker::isActive())
636 echo '<a href="tbl_tracking.php?' . $url_query . '">';
637 echo PMA_getIcon('eye.png', __('Track table'));
638 echo '</a>';
642 <br />
643 <form method="post" action="tbl_addfield.php" id="addColumns" name="addColumns" <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? ' class="ajax"' : '');?>
644 onsubmit="return checkFormElementInRange(this, 'num_fields', '<?php echo str_replace('\'', '\\\'', __('You have to add at least one column.')); ?>', 1)">
645 <?php
646 echo PMA_generate_common_hidden_inputs($db, $table);
647 if ($cfg['PropertiesIconic']) {
648 echo '<img class="icon ic_b_insrow" src="themes/dot.gif" alt="' . __('Add column') . '"/>';
650 echo sprintf(__('Add %s column(s)'), '<input type="text" name="num_fields" size="2" maxlength="2" value="1" onfocus="this.select()" />');
652 // I tried displaying the drop-down inside the label but with Firefox
653 // the drop-down was blinking
654 $fieldOptions = '<select name="after_field" onclick="this.form.field_where[2].checked=true" onchange="this.form.field_where[2].checked=true">';
655 foreach ($aryFields as $fieldname) {
656 $fieldOptions .= '<option value="' . htmlspecialchars($fieldname) . '">' . htmlspecialchars($fieldname) . '</option>' . "\n";
658 unset($aryFields);
659 $fieldOptions .= '</select>';
661 $choices = array(
662 'last' => __('At End of Table'),
663 'first' => __('At Beginning of Table'),
664 'after' => sprintf(__('After %s'), '')
666 PMA_display_html_radio('field_where', $choices, 'last', false);
667 echo $fieldOptions;
668 unset($fieldOptions, $choices);
670 <input type="submit" value="<?php echo __('Go'); ?>" />
671 </form>
672 <iframe class="IE_hack" scrolling="no"></iframe>
673 <hr />
674 <div id="index_div" <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? ' class="ajax"' : ''); ?> >
675 <?php
679 * If there are more than 20 rows, displays browse/select/insert/empty/drop
680 * links again
682 if (count($fields) > 20) {
683 require './libraries/tbl_links.inc.php';
684 } // end if (count($fields) > 20)
687 * Displays indexes
690 if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) {
692 * Display indexes
694 echo PMA_Index::getView($table, $db);
696 </div>
697 <form action="./tbl_indexes.php" method="post"
698 onsubmit="return checkFormElementInRange(this, 'added_fields',
699 '<?php echo str_replace('\'', '\\\'', __('Column count has to be larger than zero.')); ?>',
700 1)">
701 <fieldset>
702 <?php
703 echo PMA_generate_common_hidden_inputs($db, $table);
704 echo sprintf(__('Create an index on &nbsp;%s&nbsp;columns'),
705 '<input type="text" size="2" name="added_fields" value="1" />');
707 <input type="submit" name="create_index" value="<?php echo __('Go'); ?>" />
708 </fieldset>
709 </form>
710 <br />
711 <?php
715 * Displays Space usage and row statistics
717 // BEGIN - Calc Table Space
718 // Get valid statistics whatever is the table type
719 if ($cfg['ShowStats']) {
720 echo '<div id="tablestatistics">';
721 if (empty($showtable)) {
722 $showtable = PMA_Table::sGetStatusInfo($GLOBALS['db'], $GLOBALS['table'], null, true);
725 $nonisam = false;
726 $is_innodb = (isset($showtable['Type']) && $showtable['Type'] == 'InnoDB');
727 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
728 $nonisam = true;
731 // Gets some sizes
733 $mergetable = PMA_Table::isMerge($GLOBALS['db'], $GLOBALS['table']);
735 // this is to display for example 261.2 MiB instead of 268k KiB
736 $max_digits = 5;
737 $decimals = 1;
738 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length'], $max_digits, $decimals);
739 if ($mergetable == false) {
740 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length'], $max_digits, $decimals);
742 // InnoDB returns a huge value in Data_free, do not use it
743 if (! $is_innodb && isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
744 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free'], $max_digits, $decimals);
745 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free'], $max_digits, $decimals);
746 } else {
747 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'], $max_digits, $decimals);
749 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'], $max_digits, $decimals);
750 if ($table_info_num_rows > 0) {
751 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
754 // Displays them
755 $odd_row = false;
758 <a name="showusage"></a>
759 <?php if (! $tbl_is_view && ! $db_is_information_schema) { ?>
760 <table id="tablespaceusage" class="data">
761 <caption class="tblHeaders"><?php echo __('Space usage'); ?></caption>
762 <thead>
763 <tr>
764 <th><?php echo __('Type'); ?></th>
765 <th colspan="2"><?php echo __('Usage'); ?></th>
766 </tr>
767 </thead>
768 <tbody>
769 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
770 <th class="name"><?php echo __('Data'); ?></th>
771 <td class="value"><?php echo $data_size; ?></td>
772 <td class="unit"><?php echo $data_unit; ?></td>
773 </tr>
774 <?php
775 if (isset($index_size)) {
777 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
778 <th class="name"><?php echo __('Index'); ?></th>
779 <td class="value"><?php echo $index_size; ?></td>
780 <td class="unit"><?php echo $index_unit; ?></td>
781 </tr>
782 <?php
784 if (isset($free_size)) {
786 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?> error">
787 <th class="name"><?php echo __('Overhead'); ?></th>
788 <td class="value"><?php echo $free_size; ?></td>
789 <td class="unit"><?php echo $free_unit; ?></td>
790 </tr>
791 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
792 <th class="name"><?php echo __('Effective'); ?></th>
793 <td class="value"><?php echo $effect_size; ?></td>
794 <td class="unit"><?php echo $effect_unit; ?></td>
795 </tr>
796 <?php
798 if (isset($tot_size) && $mergetable == false) {
800 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
801 <th class="name"><?php echo __('Total'); ?></th>
802 <td class="value"><?php echo $tot_size; ?></td>
803 <td class="unit"><?php echo $tot_unit; ?></td>
804 </tr>
805 <?php
807 // Optimize link if overhead
808 if (isset($free_size) && !PMA_DRIZZLE && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA' || $tbl_type == 'BDB')) {
810 <tr class="tblFooters">
811 <td colspan="3" align="center">
812 <a href="sql.php?<?php echo $url_query; ?>&pos=0&amp;sql_query=<?php echo urlencode('OPTIMIZE TABLE ' . PMA_backquote($table)); ?>"><?php
813 echo PMA_getIcon('b_tbloptimize.png', __('Optimize table'));
814 ?></a>
815 </td>
816 </tr>
817 <?php
820 </tbody>
821 </table>
822 <?php
824 $odd_row = false;
826 <table id="tablerowstats" class="data">
827 <caption class="tblHeaders"><?php echo __('Row Statistics'); ?></caption>
828 <thead>
829 <tr>
830 <th><?php echo __('Statements'); ?></th>
831 <th><?php echo __('Value'); ?></th>
832 </tr>
833 </thead>
834 <tbody>
835 <?php
836 if (isset($showtable['Row_format'])) {
838 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
839 <th class="name"><?php echo __('Format'); ?></th>
840 <td class="value"><?php
841 if ($showtable['Row_format'] == 'Fixed') {
842 echo __('static');
843 } elseif ($showtable['Row_format'] == 'Dynamic') {
844 echo __('dynamic');
845 } else {
846 echo $showtable['Row_format'];
848 ?></td>
849 </tr>
850 <?php
852 if (! empty($showtable['Create_options'])) {
854 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
855 <th class="name"><?php echo __('Options'); ?></th>
856 <td class="value"><?php
857 if ($showtable['Create_options'] == 'partitioned') {
858 echo __('partitioned');
859 } else {
860 echo $showtable['Create_options'];
862 ?></td>
863 </tr>
864 <?php
866 if (!empty($tbl_collation)) {
868 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
869 <th class="name"><?php echo __('Collation'); ?></th>
870 <td class="value"><?php
871 echo '<dfn title="' . PMA_getCollationDescr($tbl_collation) . '">' . $tbl_collation . '</dfn>';
872 ?></td>
873 </tr>
874 <?php
876 if (!$is_innodb && isset($showtable['Rows'])) {
878 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
879 <th class="name"><?php echo __('Rows'); ?></th>
880 <td class="value"><?php echo PMA_formatNumber($showtable['Rows'], 0); ?></td>
881 </tr>
882 <?php
884 if (!$is_innodb && isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
886 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
887 <th class="name"><?php echo __('Row length'); ?> &oslash;</th>
888 <td class="value"><?php echo PMA_formatNumber($showtable['Avg_row_length'], 0); ?></td>
889 </tr>
890 <?php
892 if (!$is_innodb && isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
894 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
895 <th class="name"><?php echo __('Row size'); ?> &oslash;</th>
896 <td class="value"><?php echo $avg_size . ' ' . $avg_unit; ?></td>
897 </tr>
898 <?php
900 if (isset($showtable['Auto_increment'])) {
902 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
903 <th class="name"><?php echo __('Next autoindex'); ?></th>
904 <td class="value"><?php echo PMA_formatNumber($showtable['Auto_increment'], 0); ?></td>
905 </tr>
906 <?php
908 if (isset($showtable['Create_time'])) {
910 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
911 <th class="name"><?php echo __('Creation'); ?></th>
912 <td class="value"><?php echo PMA_localisedDate(strtotime($showtable['Create_time'])); ?></td>
913 </tr>
914 <?php
916 if (isset($showtable['Update_time'])) {
918 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
919 <th class="name"><?php echo __('Last update'); ?></th>
920 <td class="value"><?php echo PMA_localisedDate(strtotime($showtable['Update_time'])); ?></td>
921 </tr>
922 <?php
924 if (isset($showtable['Check_time'])) {
926 <tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
927 <th class="name"><?php echo __('Last check'); ?></th>
928 <td class="value"><?php echo PMA_localisedDate(strtotime($showtable['Check_time'])); ?></td>
929 </tr>
930 <?php
933 </tbody>
934 </table>
936 <!-- close tablestatistics div -->
937 </div>
939 <?php
941 // END - Calc Table Space
943 echo '<div class="clearfloat"></div>' . "\n";
946 * Displays the footer
948 require './libraries/footer.inc.php';