Jerome Froelich

Results 10 issues of Jerome Froelich

Hi! I was wondering what your thoughts were on supporting type constraints so that one could require that a type T must implement a certain interface. For example ([playground](https://play.folang.org/p/QGVXlJCIgIa)): ```...

enhancement

YAML requires that strings which contain characters that conflict with YAML syntax elements must be quoted in order to be parsed properly. For example, YAML does not allow unquoted strings...

At the present moment, there is no way to remove tags from a scope, one can only add new tags to a scope or update currently existing tags. However, in...

Hi folks! I was curious if there were any intentions to support [wildcard](https://lucene.apache.org/core/7_2_0/core/org/apache/lucene/search/WildcardQuery.html) or [regular expression queries](https://lucene.apache.org/core/7_2_0/core/org/apache/lucene/search/RegexpQuery.html) like in Lucene and if so how this would be implemented? My understanding...

As noted in #94 wrapping errors with `fmt.Errorf`, i.e. ``` if err != nil { return fmt.Errorf("context about error: %v" err) } ``` loses the type information of the error...

Our object pool implementation, much like the pool in go's `sync` package, works with interfaces. This means that pooling objects that are not pointer types will require an extra allocation...

Hi, I've noticed that queries with `COUNT(*) OVER()` aggregations return an error: `mismatch rowid 1 != 2`. An example of such a query is: ```sql WITH Produce AS (SELECT 'kale'...

This commit updates the `DATE_DIFF` function to fix results when the input times differ by a duration of time that is not evenly divisible by 24 hours, but does not...

The `DATETIME_DIFF` function returns incorrect results for queries where the difference between the input timestamps is greater than a multiple of 24 hours but does not cross a day boundary....

Hi! I was wondering if you thought it would be worthwhile for `errcheck` to check for unchecked errors returned from iterators? For example, in the following code snippet, the error...