Skip to content
Snippets Groups Projects
Commit 954c0870 authored by Damian Lee's avatar Damian Lee Committed by Tim Plunkett
Browse files

Fixed CachePluginBase. wrong cache table name and instanceof condition

parent 54b5ede1
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
namespace Drupal\views\Plugin\views\cache; namespace Drupal\views\Plugin\views\cache;
use Drupal\views\Plugin\views\Plugin; use Drupal\views\Plugin\views\Plugin;
use Drupal\Core\Database\Query\Select;
/** /**
* @defgroup views_cache_plugins Views cache plugins * @defgroup views_cache_plugins Views cache plugins
...@@ -29,7 +30,7 @@ abstract class CachePluginBase extends Plugin { ...@@ -29,7 +30,7 @@ abstract class CachePluginBase extends Plugin {
/** /**
* What table to store data in. * What table to store data in.
*/ */
var $table = 'cache_views_data'; var $table = 'views_data';
/** /**
* Stores the cache id used for the results cache, once get_results_key() got * Stores the cache id used for the results cache, once get_results_key() got
...@@ -277,7 +278,7 @@ function get_results_key() { ...@@ -277,7 +278,7 @@ function get_results_key() {
foreach (array('query', 'count_query') as $index) { foreach (array('query', 'count_query') as $index) {
// If the default query back-end is used generate SQL query strings from // If the default query back-end is used generate SQL query strings from
// the query objects. // the query objects.
if ($build_info[$index] instanceof Drupal\Core\Database\Query\Select) { if ($build_info[$index] instanceof Select) {
$query = clone $build_info[$index]; $query = clone $build_info[$index];
$query->preExecute(); $query->preExecute();
$build_info[$index] = (string)$query; $build_info[$index] = (string)$query;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment