Michal Tomlein

Results 11 comments of Michal Tomlein

I can confirm this works as @MapaX says. To use OCMock in an Xcode project, create e.g. an `OCMockWrapper` folder with a `Package.swift` file that references a specific OCMock commit...

Yes, that might be possible with a custom module map. Let me try that and update the pull request.

It does work with a `module.modulemap` file with the following contents: ``` module TPCircularBuffer { header "TPCircularBuffer.h" header "TPCircularBuffer+AudioBufferList.h" export * } ``` However, only if I [move all the...

I agree, it’s not great. In practical terms, all of the options work fine for me. I found [the offending part of Swift Package Manager source code](https://github.com/apple/swift-package-manager/blob/f28c338b83aad6e86bdf6ef50722e24f84eaf286/Sources/PackageLoading/PackageBuilder.swift#L409) (both warnings emitted...

We ran into this when deploying a Vapor 3 application behind an AWS Application Load Balancer. What made it worse is that neither the ALB nor Vapor allow opting out...

Thanks, Cory. I see the issue was added then removed from the 2.0.0 milestone. Is it simply a matter of priorities, or has your thinking changed on whether this is...

Btw, is there an alternative approach to get row data (keys and a `SQLExpression` for each value) that might work? My current workaround is pinning to the previous version of...

I have a `SQLUpsert` struct similar to SQLKit’s `SQLInsert`. I use `SQLQueryEncoder` to fill its `columns` and `values` properties.

I just noticed there’s `SQLConflictResolutionStrategy`, which might work for me (but doesn’t remove the need for `SQLQueryEncoder`). Can you elaborate on why this is not expected usage for SQLKit? I...

Thank you for taking the time to share this insight! This is very helpful. I’m not looking to gain any performance benefit by using SQLKit directly. My upsert is part...