diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php
index c43a3623fa68cd9b6eb4cb0dffd05fb80ea5609c..bfd32625dab4540c28cb2c27bd00c5739b95c024 100644
--- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php
+++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php
@@ -133,7 +133,8 @@ class Preprocessor implements PreprocessorInterface
                 $value
             );
         } else {
-            $table = $this->resource->getTableName('catalog_product_index_eav_decimal');
+            $tableSuffix = $attribute->getBackendType() === 'decimal' ? '_decimal' : '';
+            $table = $this->resource->getTableName("catalog_product_index_eav{$tableSuffix}");
             $select = $this->connection->select();
 
             $currentStoreId = $this->scopeResolver->getScope()->getId();