DeleteTruncateTest test is failed due to reason that MemSQL returns results unsorted. MySQL returns results sorted by primary key.

$pid_to_delete = $this->connection->query("SELECT * FROM {test_task} WHERE task = 'sleep'")->fetchField();

SELECT * FROM {test_task} WHERE task = 'sleep' returns 5, 2 in MemSQL and 2, 5 in MySQL, so
$pid_to_delete == 5 in MemSQL.
$pid_to_delete == 2 in MySQL.

CommentFileSizeAuthor
#2 drupal-select_order-3112810-2.patch878 bytessinn

Comments

sinn created an issue. See original summary.

sinn’s picture

Status: Active » Needs review
StatusFileSize
new878 bytes

Patch against drupal/core 8.9.x to pass test.

sinn’s picture

Issue summary: View changes
sinn’s picture

Version: » 8.x-1.0-alpha1
sinn’s picture

Status: Needs review » Fixed

Drupal core has been updated

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.