sdpopov-keyvariable

Results 5 issues of sdpopov-keyvariable

Now (1.11.0) `PreparedQuery.execute()` returns `[PostgresRow]`. But sometimes old and rows are required. It's good to return `PostgresQueryResult` (as `PostgresDatabase.query()`) with metadata instead of just rows for prepared queries. And it's...

enhancement

### Describe the bug Substitution of parameters ($1, $2, ...) to prepared queries fails. E.g. for `Int` value 10 it fails with error message «server: invalid byte sequence for encoding...

bug

In translucent views bloom effect is presented only over the rendered pixels. E.g. scene contains only one bright small sphere and the sphere is rendered in upper half of the...

Migrate from BlueSocket and BlueSSLService to definitely preferred Apple's open source [swift-nio](https://github.com/apple/swift-nio). Currently BlueSocket and BlueSSLService block modern versions of [swift-argument-parser](https://github.com/apple/swift-argument-parser). They depend on 'swift-argument-parser' 0.4.1..

Let's take array of optional integers: ``` let values = [ 1, nil, 2 ] ``` Then encode it: ``` var container = encoder.unkeyedContainer() try values.forEach { try container.encode($0) }...