Kane

Results 13 comments of Kane

The fact that there are no "lazy" methods taking `byte[]` is not the worst here, apparently. Let's take a quick look into `String cryptoGenericHash(String in, Key key)`: ```java public String...

@tunetheweb Well, I think detecting the construct `GIN (...)` as a function here may lead to further bugs in more complex index definition cases. So I think it would be...

In the long run, I'd personally prefer to implement proper handling of these constructs rather than as a function, but for the time being, I'd be OK with just ignoring...

@PLBMR Will the fix for this also address this example? ```sql SELECT table_a.my_column, temp_table ->> 'value' AS computed FROM table_a, some_function(table_a.my_column) AS temp_table; ``` ...comes up as: ``` $ sqlfluff...

I am not an expert on sherlock and the docs are not helpful for cases like this. Also it looks like `yarn sherlock` only creates child processes within the existing...

+1 for this feature. In our case, we want to provide a standard wrapper for internal projects for request payload validation using Express, which would look something like this: ```typescript...

@samchon Thanx for the hint, that works for me for the moment.

Jumping on this train: would it be possible to provide an OpenSSL version (or API-compatible alternative) directly with the Docker image?

Just came across this as well. Due to the limitation on the GraphQL spec side for "values" of an enum, but no such restriction on the PostgreSQL side, there needs...

@yrashk That may work if you just have a handful of values that are affected. In my case, I have potentially hundreds, which is why I would vote for functions...