-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trending tags showing duplicates: group only by name #4266
Conversation
Hey @jywarren, Locally, running the query with the
Running only with
|
Generated by 🚫 Danger |
Hi @milaaraujo can you please see #4263. Thanks |
@SidharthBansal, I will review the other PR later, if it is working we can merge it and I close this one. |
But @jywarren, can you explain why we are using |
Yes, and thanks for being very thorough. It looks like @ValentinaTironi has implemented something different here -- a What's so weird about the bug that was resolved by the addition of Unfortunately this was to fix a recurring error which people had been experiencing in local copies (although not in the production site or Travis tests) -- notes in #3120 and it looks like it was related to a change in default config for MySQL -- 5.7 in particular -- see my comment here about Maybe we don't have to worry about this anymore if we're now on |
I also don't know what However this query doesn't look right to me, I think it is selecting and grouping more columns that are really necessary... I think we just need:
or maybe:
I'm using |
Hmm. So i totally agree that we are including too much, but had added that in to get
to be added to this line:
Let's do that as soon as this is merged. So if you could add the comments, i'll merge, and we can do the next steps. Thanks!!! |
Both solutions I suggested before are working. Using this one I think we won't have problems with MySQL because I'm not using
What the query really looks like:
Response:
|
|
So, we are going to change of mysql version? |
I think we just need to test if this solution works with MySQL, because some people still use MySQL for development... Right, @jywarren? I'm using |
Oh, I see. Which do you use? I thought that all use mysql :/ |
Yes that sounds right Camila. Perhaps open a second PR with your latest
code but changing the MySQL version to 5.7 and see if it passes tests?
Thanks!
…On Tue, Dec 11, 2018, 11:55 PM Valentina Tironi ***@***.*** wrote:
Oh, I see. Which do you use? I thought that all use mysql :/
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#4266 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABfJwBQDFF0ORill5xWoa8UbKFKul_Cks5u4IwzgaJpZM4ZM31T>
.
|
Great! Please, let me know everything |
Yeah, I think that's it: open a second PR with your latest code but changing the MySQL version to 5.7 and see if it passes tests! @jywarren, this one is ready to merge. |
Fantastic, thanks all! |
Can I push a commit in my actual pr with new mysql version? |
Yes I think that's the one. Did you see my comment above? Try opening a PR
with that one line changed! Thanks, Valentina!
…On Wed, Dec 12, 2018, 12:06 AM Valentina Tironi ***@***.*** wrote:
Can I push a commit with new mysql version?
Another question: How I can change the version of database? I see a lot of
database files and I'm confused now. Maybe this one
docker-compose-testing.yml?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#4266 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABfJwEQGwhDyULPaDARutRGh5WqjWTYks5u4I6qgaJpZM4ZM31T>
.
|
I think it's just doing what Jeff explained in one of his last comments (#4266 (comment)):
|
OK, I'll do that 👍 |
I'm gonna close my PR #4263 |
* group by name only * removing group by * adding link
Fixes #3188