-
Notifications
You must be signed in to change notification settings - Fork 12
feat: add Map Step Output Aggregation #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 09-16-handle-arrays-in-start-tasks
Are you sure you want to change the base?
feat: add Map Step Output Aggregation #217
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Note Other AI code review bot(s) detectedCodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review. ✨ Finishing touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Command | Status | Duration | Result |
---|---|---|---|
nx affected -t lint typecheck test --parallel -... |
❌ Failed | 6m 6s | View ↗ |
☁️ Nx Cloud last updated this comment at 2025-10-05 19:28:30
UTC
1cc39ef
to
93cd2af
Compare
93cd2af
to
a61429b
Compare
pkgs/core/supabase/migrations/20250917115352_pgflow_temp_handle_map_output_aggregation.sql
Show resolved
Hide resolved
a61429b
to
b01eb63
Compare
5a0ef17
to
9ab5b0e
Compare
d02a76c
to
a3647dc
Compare
a3647dc
to
290913f
Compare
e6b99ed
to
b77f743
Compare
b77f743
to
2b1f97e
Compare
fcb8222
to
7422f2a
Compare
🔍 Preview Deployment: Website✅ Deployment successful! 🔗 Preview URL: https://pr-217.pgflow.pages.dev 📝 Details:
_Last updated: _ |
🔍 Preview Deployment: Playground✅ Deployment successful! 🔗 Preview URL: https://pr-217--pgflow-demo.netlify.app 📝 Details:
_Last updated: _ |
7422f2a
to
c1c4c34
Compare
781e413
to
53ca34b
Compare
Reflects ongoing work on map step output aggregation, related migration, testing, and documentation efforts, along with current implementation status and pending tasks for map step support in the project.
c1c4c34
to
8ec0268
Compare
53ca34b
to
99d14b5
Compare
This PR implements output aggregation for map steps, completing the critical functionality needed for map steps to pass their results to dependent steps.
What this adds:
Context:
Map steps spawn N tasks to process array elements in parallel. This PR ensures their outputs are properly combined back into an array for consumption by downstream steps, completing the map
step infrastructure in the SQL core layer.