Maciej Bielecki

Results 7 issues of Maciej Bielecki

This is useful for monorepos. This is accomplished by making Git commands operate on relative pathspecs where we can. In case of migrations, absolute pathspecs (`:/` prefix) had to be...

When a node (A) occurs multiple times as a dependency of another node (B), B will fire many times for each firing of A, and some of the firings will...

Hello! I believe I found a case where Loom skips some possible executions of a program. Here's a test case I prepared: ```rust use loom::sync::atomic::{AtomicUsize, Ordering::*}; use std::hash::Hash; use std::sync::Arc;...

I'd like to anonymize SQL queries for logging purposes. This is commonly done by replacing literals with some placeholder, like `?`. Re-parsing the generated query just to do that seems...

It's helpful to be able to see the exact SQL queries the application executes. Current options are: a. Wrap every Opaleye function that issues queries (`runInsert`, `runQuery` etc.) and use...

The `boundedInt` generator returns the same value (`2147483647`, `0x7fffffff`) for seeds lower than `-84` or higher than `104`. The following program demonstrates the issue: ``` module Example where import Prelude...