Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15448849
D10598.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
D10598.diff
View Options
diff --git a/src/applications/config/schema/PhabricatorConfigSchemaSpec.php b/src/applications/config/schema/PhabricatorConfigSchemaSpec.php
--- a/src/applications/config/schema/PhabricatorConfigSchemaSpec.php
+++ b/src/applications/config/schema/PhabricatorConfigSchemaSpec.php
@@ -230,6 +230,10 @@
$data_type = substr($data_type, 0, -1);
}
+ // NOTE: MySQL allows fragments like "VARCHAR(32) CHARACTER SET binary",
+ // but just interprets that to mean "VARBINARY(32)". The fragment is
+ // totally disallowed in a MODIFY statement vs a CREATE TABLE statement.
+
switch ($data_type) {
case 'id':
case 'epoch':
@@ -248,39 +252,25 @@
break;
case 'phid':
case 'policy';
- $column_type = 'varchar(64)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'varbinary(64)';
break;
case 'bytes64':
- $column_type = 'char(64)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(64)';
break;
case 'bytes40':
- $column_type = 'char(40)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(40)';
break;
case 'bytes32':
- $column_type = 'char(32)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(32)';
break;
case 'bytes20':
- $column_type = 'char(20)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(20)';
break;
case 'bytes12':
- $column_type = 'char(12)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(12)';
break;
case 'bytes4':
- $column_type = 'char(4)';
- $charset = 'binary';
- $collation = 'binary';
+ $column_type = 'binary(4)';
break;
case 'bytes':
$column_type = 'longblob';
diff --git a/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementAdjustWorkflow.php b/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementAdjustWorkflow.php
--- a/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementAdjustWorkflow.php
+++ b/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementAdjustWorkflow.php
@@ -127,38 +127,93 @@
$api = $this->getAPI();
$conn = $api->getConn(null);
+ $failed = array();
+
$bar = id(new PhutilConsoleProgressBar())
->setTotal(count($adjustments));
foreach ($adjustments as $adjust) {
- switch ($adjust['kind']) {
- case 'database':
- queryfx(
- $conn,
- 'ALTER DATABASE %T CHARACTER SET = %s COLLATE = %s',
- $adjust['database'],
- $adjust['charset'],
- $adjust['collation']);
- break;
- case 'table':
- queryfx(
- $conn,
- 'ALTER TABLE %T.%T COLLATE = %s',
- $adjust['database'],
- $adjust['table'],
- $adjust['collation']);
- break;
- default:
- throw new Exception(
- pht('Unknown schema adjustment kind "%s"!', $adjust['kind']));
+ try {
+ switch ($adjust['kind']) {
+ case 'database':
+ queryfx(
+ $conn,
+ 'ALTER DATABASE %T CHARACTER SET = %s COLLATE = %s',
+ $adjust['database'],
+ $adjust['charset'],
+ $adjust['collation']);
+ break;
+ case 'table':
+ queryfx(
+ $conn,
+ 'ALTER TABLE %T.%T COLLATE = %s',
+ $adjust['database'],
+ $adjust['table'],
+ $adjust['collation']);
+ break;
+ case 'column':
+ $parts = array();
+ if ($adjust['charset']) {
+ $parts[] = qsprintf(
+ $conn,
+ 'CHARACTER SET %Q COLLATE %Q',
+ $adjust['charset'],
+ $adjust['collation']);
+ }
+
+ queryfx(
+ $conn,
+ 'ALTER TABLE %T.%T MODIFY %T %Q %Q %Q',
+ $adjust['database'],
+ $adjust['table'],
+ $adjust['name'],
+ $adjust['type'],
+ implode(' ', $parts),
+ $adjust['nullable'] ? 'NULL' : 'NOT NULL');
+
+ break;
+ default:
+ throw new Exception(
+ pht('Unknown schema adjustment kind "%s"!', $adjust['kind']));
+ }
+ } catch (AphrontQueryException $ex) {
+ $failed[] = array($adjust, $ex);
}
-
$bar->update(1);
}
$bar->done();
+ if (!$failed) {
+ $console->writeOut(
+ "%s\n",
+ pht('Completed fixing all schema issues.'));
+ return;
+ }
+
+ $table = id(new PhutilConsoleTable())
+ ->addColumn('target', array('title' => pht('Target')))
+ ->addColumn('error', array('title' => pht('Error')));
+
+ foreach ($failed as $failure) {
+ list($adjust, $ex) = $failure;
+
+ $pieces = array_select_keys($adjust, array('database', 'table', 'naeme'));
+ $pieces = array_filter($pieces);
+ $target = implode('.', $pieces);
+
+ $table->addRow(
+ array(
+ 'target' => $target,
+ 'error' => $ex->getMessage(),
+ ));
+ }
+
+ $console->writeOut("\n");
+ $table->draw();
$console->writeOut(
- "%s\n",
- pht('Completed fixing all schema issues.'));
+ "\n%s\n",
+ pht('Failed to make some schema adjustments, detailed above.'));
+
+ return 1;
}
private function findAdjustments() {
@@ -166,6 +221,7 @@
$issue_charset = PhabricatorConfigStorageSchema::ISSUE_CHARSET;
$issue_collation = PhabricatorConfigStorageSchema::ISSUE_COLLATION;
+ $issue_columntype = PhabricatorConfigStorageSchema::ISSUE_COLUMNTYPE;
$adjustments = array();
foreach ($comp->getDatabases() as $database_name => $database) {
@@ -217,6 +273,54 @@
'collation' => $expect_table->getCollation(),
);
}
+
+ foreach ($table->getColumns() as $column_name => $column) {
+ $expect_column = $expect_table->getColumn($column_name);
+ $actual_column = $actual_table->getColumn($column_name);
+
+ if (!$expect_column || !$actual_column) {
+ continue;
+ }
+
+ $issues = array();
+ if ($column->hasIssue($issue_collation)) {
+ $issues[] = $issue_collation;
+ }
+ if ($column->hasIssue($issue_charset)) {
+ $issues[] = $issue_charset;
+ }
+ if ($column->hasIssue($issue_columntype)) {
+ $issues[] = $issue_columntype;
+ }
+
+ if ($issues) {
+ if ($expect_column->getCharacterSet() === null) {
+ // For non-text columns, we won't be specifying a collation or
+ // character set.
+ $charset = null;
+ $collation = null;
+ } else {
+ $charset = $expect_column->getCharacterSet();
+ $collation = $expect_column->getCollation();
+ }
+
+
+ $adjustments[] = array(
+ 'kind' => 'column',
+ 'database' => $database_name,
+ 'table' => $table_name,
+ 'name' => $column_name,
+ 'issues' => $issues,
+ 'collation' => $collation,
+ 'charset' => $charset,
+ 'type' => $expect_column->getColumnType(),
+
+ // NOTE: We don't adjust column nullability because it is
+ // dangerous, so always use the current nullability.
+ 'nullable' => $actual_column->getNullable(),
+ );
+ }
+ }
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 29, 7:11 AM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7597310
Default Alt Text
D10598.diff (7 KB)
Attached To
Mode
D10598: Allow `bin/storage adjust` to correct column types and collations
Attached
Detach File
Event Timeline
Log In to Comment