X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FEntity%2FQuery%2FSql%2FTables.php;fp=web%2Fcore%2Flib%2FDrupal%2FCore%2FEntity%2FQuery%2FSql%2FTables.php;h=a9ff4b136dcc6aac9f4e0db3b6944b12e889a865;hp=0c54dc45884f494c8e1c101b5021dddfa7951e87;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/web/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php b/web/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php index 0c54dc458..a9ff4b136 100644 --- a/web/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php +++ b/web/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php @@ -94,9 +94,11 @@ class Tables implements TablesInterface { $specifier = $specifiers[$key]; if (isset($field_storage_definitions[$specifier])) { $field_storage = $field_storage_definitions[$specifier]; + $column = $field_storage->getMainPropertyName(); } else { $field_storage = FALSE; + $column = NULL; } // If there is revision support, only the current revisions are being @@ -121,8 +123,6 @@ class Tables implements TablesInterface { // Check whether this field is stored in a dedicated table. if ($field_storage && $table_mapping->requiresDedicatedTableStorage($field_storage)) { $delta = NULL; - // Find the field column. - $column = $field_storage->getMainPropertyName(); if ($key < $count) { $next = $specifiers[$key + 1]; @@ -176,10 +176,6 @@ class Tables implements TablesInterface { } $table = $this->ensureFieldTable($index_prefix, $field_storage, $type, $langcode, $base_table, $entity_id_field, $field_id_field, $delta); $sql_column = $table_mapping->getFieldColumnName($field_storage, $column); - $property_definitions = $field_storage->getPropertyDefinitions(); - if (isset($property_definitions[$column])) { - $this->caseSensitiveFields[$field] = $property_definitions[$column]->getSetting('case_sensitive'); - } } // The field is stored in a shared table. else { @@ -239,18 +235,17 @@ class Tables implements TablesInterface { } $table = $this->ensureEntityTable($index_prefix, $sql_column, $type, $langcode, $base_table, $entity_id_field, $entity_tables); + } - // If there is a field storage (some specifiers are not), check for case - // sensitivity. - if ($field_storage) { - $column = $field_storage->getMainPropertyName(); - $base_field_property_definitions = $field_storage->getPropertyDefinitions(); - if (isset($base_field_property_definitions[$column])) { - $this->caseSensitiveFields[$field] = $base_field_property_definitions[$column]->getSetting('case_sensitive'); - } + // If there is a field storage (some specifiers are not) and a field + // column, check for case sensitivity. + if ($field_storage && $column) { + $property_definitions = $field_storage->getPropertyDefinitions(); + if (isset($property_definitions[$column])) { + $this->caseSensitiveFields[$field] = $property_definitions[$column]->getSetting('case_sensitive'); } - } + // If there are more specifiers to come, it's a relationship. if ($field_storage && $key < $count) { // Computed fields have prepared their property definition already, do @@ -414,8 +409,10 @@ class Tables implements TablesInterface { * @param string $table * The table name. * - * @return array|bool - * The table field mapping for the given table or FALSE if not available. + * @return array|false + * An associative array of table field mapping for the given table, keyed by + * columns name and values are just incrementing integers. If the table + * mapping is not available, FALSE is returned. */ protected function getTableMapping($table, $entity_type_id) { $storage = $this->entityManager->getStorage($entity_type_id);