Jay Chia
Jay Chia
> @jaychia is PR still relevant after merging in your other one? No, this is just used by @colin-ho for reference. Closing.
The team really appreciates the kind words! Definitely open to adding new types of joins. Some of the more stateful ones are interesting because they're quite difficult to implement in...
Yeah the delta-rs SDK is very dumb about regions -- we have to provide it with exactly the right region otherwise it will freak out. Reading the code, we take...
Yes, when we first built this integration the Unity Catalog only vended S3 credentials 😛 I think unity has made some progress since then, but we actually do need to...
I see the implicit struggle here as being: inconsistent naming across our Python and SQL functionality. Perhaps to address that, we can establish a set of rules we'd like to...
Thanks! @andrewgazelka you wanna take a look?
Two APIs come to mind for me: ```python col("a").list.apply(daft.element().str.lower()) col("a").list.apply(lambda el: el.str.lower()) ``` Also maybe we want to use a different name than `apply`, since that's already how we do...
Also make sure to check the behavior if we do `.show()` and ensure that that doesn't materialize a ton of children to just show a small set of rows
Hi @MisterKloudy ! Would the following be possible instead? ```python df = daft.from_pydict({"id": [1, 2], "a": [[1, 2, 2, 3, 3, 3], [1, 3, 5, 5]]}) df = df.explode("a") df...
Valid concerns! I actually talked briefly with the team. We should probably just add a .count_values like you said and return a Map type column The Map would have keys...