martinmacko47

Results 14 comments of martinmacko47

There is already a PR #8 for it. @qimingweng please merge it and release

[Documentation](https://github.com/Intellicode/eslint-plugin-react-native/blob/master/docs/rules/no-inline-styles.md) says: > This rule detects inline style objects when they contain literal values. If inline styles only contain **variable values**, the style is **considered acceptable** because it's sometimes necessary...

I worked around it using `-1 * this.props.margin` instead of `-this.props.margin`. I'll create a PR when I'll get to it. Assuming I'll be able to fix it.

@dougwilson I agree with the tweak. I created a draft PR #2480 with the implementation. I added `Query.started()` and `Query.ended()` methods to determine if the query is pending, already started...

@maximelkin > Also have you any thoughts about pausing queue execution while we cancel current executing query? Potentially cancel is long and we do not want kill next query from...

@dougwilson Hi, can you pls check my PR https://github.com/mysqljs/mysql/pull/2480?

@dougwilson Hello. Is there anything I can do to have the PR checked?

I will add tests later, after the general approach in this implementation is decided acceptable.

This bug was originaly mentioned in https://github.com/knex/knex/issues/2211#issuecomment-812007040, where @elhigu commented: > Actually also in postgresql it is configurable behaviour if transaction should fail when one of the queries sent to...

> Is it possible to make mysql to rollback transaction implicitly in that case too? We could use `KILL CONNECTION ?` instead of `KILL QUERY ?` in `cancelQuery` method for...