Marshall Cottrell
Marshall Cottrell
@feelepxyz I agree with your suggestions on the claims we (GitLab) should use to populate the OIDs. I think I am primarily hung up on the naming of things. For...
@danielmewes is there any technical limitation to creating multiple "expiration hooks" on a table? If not, I think there are definitely supporting use-cases that would warrant it. For example, consider...
> ... there's the question for example if creating an expiration hook should automatically create the corresponding index ... @danielmewes good point. I'm tempted to say `expirationCreate` should take a...
Here's a quick and dirty client-side implementation I've been using in case anyone else finds it useful: ``` js r.fmt = function (template, params) { var parts = template.split(/(\{\w+\})/g).map(function (part)...
@srh perhaps we should reopen #5336? I think `r.expr(['f', 'o', 'o']).coerceTo('string')` is still a pretty valid and common use-case, but implementing it as `.coerceTo('string')` is not very discoverable. I'd also...
Yea, I like `unsplit` too, but I think the string separator argument should be second and optional. I would have said the separator argument should default to `,` but since...
@srh yep, sounds good. That's how I wish `.split()` behaved, but by default it splits on all whitespace. It would seem reasonable that `.split().unsplit() == `, but unfortunately that will...
I don't think this would inherently solve #3600. Even though @neumino recently introduced streaming support, the `cursor` object itself still doesn't implement the `Stream` interface. I do like the idea...
It would probably be better if we could avoid porting `rethinkdbdash` to the browser. I'd imagine it would be much simpler if the browser sent the plain-text query to a...
@NoNameProvided @19majkel94 we could consider exposing a slightly different `ErrorMiddlewareInterface`: ```ts class ErrorHandlerMiddleware { // returns `T` or `undefined`, which would be equivalent // to calling `next()` with or without...