gh | filikos

Results 4 comments of gh | filikos

Hey @l3pp4rd , I'm looking forward to contributing to this repository, with a focus on improving user experience and reducing friction. Working with the framework should not distract from the...

@oliveroneill I opened a PR for this simplification, please let me know if that works.

@JessieAMorris Any updates on this PR? https://github.com/DATA-DOG/go-sqlmock/pull/320 seems to be a duplication?

Is your query escaped correctly? Current: ```go q := "SELECT \\* FROM `arg_configs` WHERE arg_key = \\? ORDER BY `arg_configs`.`id` LIMIT \\?" ``` Want: ```go q:= `SELECT \* FROM "arg_configs"...