question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Results missing on search query

See original GitHub issue

System information:

  • Operating system: windows 11
  • DBeaver version: 22.03

Connection specification:

  • Database name: laravel_performance mysql 5.7.33
  • Driver name: ** I don´t know**

Describe the problem you’re observing:

Table Structure

CREATE TABLE `performance_data` (
  `marca` varchar(100) DEFAULT NULL,
  `marca_slug` varchar(100) DEFAULT NULL,
  `modelo` varchar(100) DEFAULT NULL,
  `modelo_slug` varchar(100) DEFAULT NULL,
  `year` varchar(100) DEFAULT NULL,
  `year_slug` varchar(100) DEFAULT NULL,
  `motor_tipo` varchar(100) DEFAULT NULL,
  `motor_tipo_slug` varchar(100) DEFAULT NULL,
  `motor` varchar(100) DEFAULT NULL,
  `motor_slug` varchar(100) DEFAULT NULL,
  `stage` varchar(100) DEFAULT NULL,
  `stage_slug` varchar(100) DEFAULT NULL,
  `stage_price` varchar(100) DEFAULT NULL,
  `stage_price_slug` varchar(100) DEFAULT NULL,
  `original_potencia` varchar(100) DEFAULT NULL,
  `original_potencia_slug` varchar(100) DEFAULT NULL,
  `modificado_potencia` varchar(100) DEFAULT NULL,
  `modificado_potencia_slug` varchar(100) DEFAULT NULL,
  `diferencia_potencia` varchar(100) DEFAULT NULL,
  `diferencia_potencia_slug` varchar(100) DEFAULT NULL,
  `original_par` varchar(100) DEFAULT NULL,
  `original_par_slug` varchar(100) DEFAULT NULL,
  `modificado_par` varchar(100) DEFAULT NULL,
  `modificado_par_slug` varchar(100) DEFAULT NULL,
  `diferencia_par` varchar(100) DEFAULT NULL,
  `diferencia_par_slug` varchar(100) DEFAULT NULL,
  `ahorro` varchar(100) DEFAULT NULL,
  `ahorro_slug` varchar(100) DEFAULT NULL,
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16420 DEFAULT CHARSET=latin1;

You try to search for duplicates and with this query they do not appear. But using another program if they appear.

select
	marca_slug,
	modelo_slug,
	year_slug,
	motor_tipo_slug,
	motor_slug,
	stage_slug,
	original_potencia_slug,
	count(*)
from
	performance_data
group by
	marca_slug,
	modelo_slug,
	year_slug,
	motor_tipo_slug,
	motor_slug,
	stage_slug,
	original_potencia_slug
having
	count(*) > 1

Even when searching directly for the values, 1 result still appears, but with other programs several result.

SELECT * FROM performance_data WHERE marca_slug='bmw' 
AND modelo_slug='serie-1' 
AND year_slug='2015-2019' 
AND motor_tipo_slug='gasolina' 
AND motor_slug='120i-20t' 
AND stage_slug='stage1' 
AND original_potencia_slug='184-cv';

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
dancodedevcommented, Apr 28, 2022

Yes, for me you can close it now. Thank you.

I hope someone knows how to repair the MariaDb drive

0reactions
ShadelessFoxcommented, Apr 27, 2022

So I assume that this issue can be closed now?

Read more comments on GitHub >

github_iconTop Results From Across the Web

The number of search results is missing. How can I fix this?
Never thought I would say that. Another solution is to open a new incognito window where you are not logged in, for those...
Read more >
Search results missing in SharePoint Online - Microsoft Learn
This article describes how to resolve an issue where search results are missing in SharePoint Online.
Read more >
Queries are missing from the Query page or from a search ...
Queries are missing from the Query page or from a search screen. The list on the Query page can change based on the...
Read more >
3 Guidelines for Search Engine "No Results" Pages
Ideally, your search engine should understand even poorly worded queries and return a good set of results (learn more about improving search ...
Read more >
Why does Google sometimes not tell me that part of my search ...
Google's PageRank algorithm is largely responsible for ranking the search results. Here's a simple explanation of how the algorithm works: You enter a ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found