MyBS -> PBMS
This commit is contained in:
@@ -92,9 +92,9 @@ class PMA_StorageEngine
|
||||
continue;
|
||||
}
|
||||
// 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
|
||||
if ('MyBS' == $details['Engine']) {
|
||||
if ('PBMS' == $details['Engine']) {
|
||||
continue;
|
||||
}
|
||||
$output .= ' <option value="' . htmlspecialchars($key). '"'
|
||||
|
@@ -48,12 +48,12 @@ function checkBLOBStreamingPlugins()
|
||||
$allPluginsExist = TRUE;
|
||||
|
||||
$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')]['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;
|
||||
|
||||
// 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',
|
||||
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'
|
||||
) ENGINE=MyBS;
|
||||
) ENGINE=PBMS;
|
||||
EOD;
|
||||
|
||||
// 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',
|
||||
Blob_data LONGBLOB COMMENT 'The data of this BLOB'
|
||||
// load PMA configuration
|
||||
) ENGINE=MyBS;
|
||||
) ENGINE=PBMS;
|
||||
EOD;
|
||||
|
||||
// specify table structure for BS custom content type table
|
||||
|
Reference in New Issue
Block a user