Results 95 comments of Aldrin M

In my own project, I use `PlanAnchor` to refer to an operator where I will split a plan for distributed processing ([PlanAnchor definition][code-plananchor]). The operator becomes a leaf of the...

> Instead of a PlanAnchor you can put the Rel in the list of relations and refer to it by ReferenceRel instead of a PlanAnchor. I think this would only...

> as long as plan_anchor integers are unique but how would you do this in the general case? I guess you could maybe make a hash that accommodates operators and...

> therefore the other plan will have to be traversed to change every occurrence of ReferenceRel{ subtree_ordinal = 0 } to ReferenceRel{ subtree_ordinal = 1 } because of the forced...

yeah, so I get what the idea is and I wonder if it should just be called something other than an anchor since it's a general identity property that you...

I created #726 so I could get a sense of what this might look like and how it affects my custom `plan_anchor`. It was helpful because now I realize `anchor`...

Hello! I just found this discussion while trying to see if there is any general `TableFunction` design, documentation, or implementation yet available (or at least in progress). I am going...

I still see this issue with poetry 1.3.1 and fish 3.6.0 on macosx using homebrew. I'll see if I can submit a follow-up PR (if there isn't already one) in...

since I haven't actually done the fix, I can share some specific things I've looked at. [completions_command.py#L231-L233](https://github.com/python-poetry/cleo/blob/main/src/cleo/commands/completions_command.py#L231-L233) seems like it _should_ be sanitizing a string correctly for substitution on [line...

my best guess is that the `\\'` is not actually being interpreted correctly and it should have an extra backslash or something, but I haven't set anything up to test...