Felix Zedén Yverås
Felix Zedén Yverås
> After all, keeping lines short where possible is the whole point of the rule. If someone doesn't want to keep lines short, they can simply disable the rule. I...
I think i meant it more like "if the line could have been wrapped *after the url*", meaning that you would only raise an error if the url is followed...
While this issue mainly focuses on sql-in-sql, I want to note that dollar quoted strings can also be used e.g. for comments: ```sql comment on schema "public" is $$ Here...
In my case, I would like the user to be able to create entities and see the entity `id` field. However, I do not want users to be able to...
@HaecheonLee #148 makes some big changes to input management - would you mind re-validating this issue?
My current workaround is to target `information_schema` but that does come with risks, such as accidentally creating tables where they're not supposed to be.
@theory in mysql `CREATE DATABASE` is synonymous with `CREATE SCHEMA`. Is there a reason for not supporting this/projects that make use of multiple schemas? What is the motivation behind requiring...
I would also add that the [documentation](https://sqitch.org/docs/manual/sqitch-target/) indicates that it should be possible to exclude the schema from the uri: > * `uri` > > The database connection URI for...
I'm thinking that moving to an in-memory queue would allow for http requests during postgrest `GET` requests as well? During `GET` requests, postgrest uses a read-only transaction, during which `INSERT`s...
+1 for this and a bit of extra emphasis on changing the exit code from zero to non-zero on error. Not all environments have a failOnStdErr option.