Before this commit the user would need to setup a local postgres
database manually in order to run the tests.
Now we are setting it up using docker-test which makes it easier.
We still require manual setup of sqlserver and mysql databases,
we'll fix these soon so that running the tests become trivial.
Now the 3 functions that allow you to write plain SQL queries
also work if you omit the `SELECT ...` part of the query.
If you do this the code will check and notice that the first
token of the query is a "FROM" token and then automatically
build the SELECT part of the query based on the tags of the struct.
Everything is cached, so the impact on performance should be negligible.
The affected functions are:
- Query()
- QueryOne()
- QueryChunks()
This commit adds the concept of dialects so we can support
different ways of escaping names, creating placeholders, etc.
Currently we are only using it on the Insert route and we only
support postgres and sqlite3, in the future we should add
more tests so we can start supporting more drivers.