r0man

Results 138 comments of r0man

It might be that a function in the from clause is not yet supported. I am AWFK at the moment. PR welcome! On Tue, Jun 26, 2018, 16:03 Avinash Sultanpur...

@schnipseljagd No, unfortunately CREATE INDEX is still missing at the moment.

If this can be done with `offset`, I don't think we need to change this. I use this library mostly with PostgreSQL and the unwritten plan is to support features...

Hi Artem, you can try this: ``` (require '[sqlingvo.compiler :refer [defarity compile-whitespace-args]]) (defarity compile-whitespace-args "group-concat") (select [:student-name '(group-concat DISTINCT :test-score ORDER BY :test-score DESC SEPARATOR " ")] (from :student) (group-by...

I think something like this for dispatching http://stackoverflow.com/questions/9440253/defmethod-catch-all

@stevebuik I recently built another query language for graphql. you may find this useful. it should support your use case. https://github.com/r0man/grafeo

Looking at the activerecord implementation (the connection adapters) I think it's a wise idea to split this functionality into different compilers for each database vendor. The various "quote_*" methods handle...

I can understand that you want to keep it clean. On the other hand I can see me copying this fn to all of my ClojureQL projects. And I hate...

@gigasquid Thanks, everything good! :)

Hi @bbatsov and @vemv, I added support for parsing stacktraces that have been printed by: - Aviso https://github.com/AvisoNovate/pretty - The parser is implemented through a Instaparse grammar. - Clojure -...