satishbhor

Results 9 issues of satishbhor

checkQueryStatus API not always returns SnowflakeError, e.g. if context is cancelled by client then it may return *errors.errorString, Hence we should have check whether its SnowflakeError or not, otherwise it...

Steps: ``` ctx, cancel := context.WithCancel(context.Background()) sfCtx := sf.WithAsyncMode(ctx) r,e := db.QueryWithContext(sfCtx) cancel() ``` Seems like runAsync method in connection.go closing error channel twice in case error is not nil...

This issue occurs when you try to monitor async query by passing cancelable context to WithFetchResultByID e.g. ``` ctx, cancel := context.WithCancel(context.Background()) sfCtx := sf.WithFetchResultByID(ctx, qid) r,e := db.QueryWithContext(sfCtx, "")...

Along with Java serialization Pepper-Box should also support other serialization formats like Avro, Protobuf etc.

enhancement

Pepper-Box can be used as Gatling plugin.

enhancement

Currently only plain text messages are sent by console load generator, It should also support sending serialized objects.

enhancement

If bloom filter has items beyond uint32 range then ApproximatedSize returns wrong bloom filter size, typecasting it to uint64 so that it can derive correct result. This PR fixes #103

This is happing because we are type casting bloom filter size estimation to uint32 and its rounding numbers back to within uint32 range, we should prefer to typecast it to...

Current Gemini AI client uses deprecated SDK which has end of life in Aug-2025, Hence created PR to switch to new Gemini AI SDK.