Redshift Order BY LIMIT being ignored from query

0

Hi all, I faced an strange scenario in a simple query on Redshift and i'm trying to understand if this is a bug or normal (i dont think so) behavior:

My query (for example only):

SELECT * FROM table WHERE id = 'UUID' ORDER BY date DESC LIMIT 1

This query, for some unknown reason are returning all records matching with WHERE clause but discarding order by and limit clauses. Even on "explain" from query editor it is not being considered.

However if change the query to something like this:

SELECT * FROM table WHERE id LIKE 'UUID' ORDER BY date DESC LIMIT 1

Basically changing the operator "=" per "LIKE" in WHERE clause my query works fine, the response returns only a specified limited records ordered correctly. Some hints: this strange behavior only happened in my tests when the parameter in WHERE clause is a string DistKey with UUID content

Mimo
已提問 1 年前檢視次數 240 次
1 個回答
0

I could not replicate this behavior on my table. Could it be something very specific to your table and your data? Maybe best to open a support ticket and see what they find.

profile pictureAWS
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南