MyBS -> PBMS

This commit is contained in:
Marc Delisle
2008-10-19 10:51:12 +00:00
parent e946798332
commit e0c306483b
2 changed files with 6 additions and 6 deletions

View File

@@ -92,9 +92,9 @@ class PMA_StorageEngine
continue; continue;
} }
// currently (MySQL 5.1.26) there is no way we can be informed // currently (MySQL 5.1.26) there is no way we can be informed
// that MyBS does not support normal table creation so // that PBMS does not support normal table creation so
// we use an exception here // we use an exception here
if ('MyBS' == $details['Engine']) { if ('PBMS' == $details['Engine']) {
continue; continue;
} }
$output .= ' <option value="' . htmlspecialchars($key). '"' $output .= ' <option value="' . htmlspecialchars($key). '"'

View File

@@ -48,12 +48,12 @@ function checkBLOBStreamingPlugins()
$allPluginsExist = TRUE; $allPluginsExist = TRUE;
$PMA_Config->set('PBXT_NAME', 'pbxt'); $PMA_Config->set('PBXT_NAME', 'pbxt');
$PMA_Config->set('PBMS_NAME', 'mybs'); $PMA_Config->set('PBMS_NAME', 'pbms');
$plugins[$PMA_Config->get('PBXT_NAME')]['Library'] = 'libpbxt.so'; $plugins[$PMA_Config->get('PBXT_NAME')]['Library'] = 'libpbxt.so';
$plugins[$PMA_Config->get('PBXT_NAME')]['Exists'] = FALSE; $plugins[$PMA_Config->get('PBXT_NAME')]['Exists'] = FALSE;
$plugins[$PMA_Config->get('PBMS_NAME')]['Library'] = 'libmybs.so'; $plugins[$PMA_Config->get('PBMS_NAME')]['Library'] = 'libpbms.so';
$plugins[$PMA_Config->get('PBMS_NAME')]['Exists'] = FALSE; $plugins[$PMA_Config->get('PBMS_NAME')]['Exists'] = FALSE;
// retrieve state of BS plugins // retrieve state of BS plugins
@@ -163,7 +163,7 @@ function checkBLOBStreamingPlugins()
Remove_in INT COMMENT 'The number of seconds before the reference/BLOB is removed perminently', Remove_in INT COMMENT 'The number of seconds before the reference/BLOB is removed perminently',
Temp_log_id INT COMMENT 'Temporary log number of the referencing deletion entry', Temp_log_id INT COMMENT 'Temporary log number of the referencing deletion entry',
Temp_log_offset BIGINT COMMENT 'Temporary log offset of the referencing deletion entry' Temp_log_offset BIGINT COMMENT 'Temporary log offset of the referencing deletion entry'
) ENGINE=MyBS; ) ENGINE=PBMS;
EOD; EOD;
// specify table structure for BS repository table // specify table structure for BS repository table
@@ -182,7 +182,7 @@ EOD;
Content_type CHAR(128) COMMENT 'The content type of the BLOB - returned by HTTP GET calls', Content_type CHAR(128) COMMENT 'The content type of the BLOB - returned by HTTP GET calls',
Blob_data LONGBLOB COMMENT 'The data of this BLOB' Blob_data LONGBLOB COMMENT 'The data of this BLOB'
// load PMA configuration // load PMA configuration
) ENGINE=MyBS; ) ENGINE=PBMS;
EOD; EOD;
// specify table structure for BS custom content type table // specify table structure for BS custom content type table