filhodanuvem / gitql

💊 A git query language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

field not equal string

jcubic opened this issue · comments

How to select first committer that is not me?

I've try this:

select committer from commits where committer <> 'Jakub Jankiewicz' order by date desc limit 1'

but got error:

Expected T_LITERAL and found T_GREATER

and this:

select committer from commits where committer != 'Jakub Jankiewicz' order by date desc limit 1

return:

+------------------+
|    committer     |
+------------------+
| Jakub Jankiewicz |
+------------------+

That is an interesting one, I think that it could be done together with #59

This one should be easier than #59
I'll take it up