File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 4848 - name : Trigger build of lingodb binaries
4949 id : trigger-build
5050 run : |
51- gh api repos/${{ env.LINGODB_REPOSITORY }}/actions/workflows/release-for-webinterface.yml/dispatches -F ref="main " -F inputs[ref]="${{ steps.get-lingodb-commit.outputs.lingodb_commit }}"
51+ gh api repos/${{ env.LINGODB_REPOSITORY }}/actions/workflows/release-for-webinterface.yml/dispatches -F ref="fix-build-webinterface " -F inputs[ref]="${{ steps.get-lingodb-commit.outputs.lingodb_commit }}"
5252
5353 - name : Wait for a few seconds
5454 run : sleep 5
Original file line number Diff line number Diff line change 2929 )
3030
3131memory_limit = (int ) (3.3 * 1024 * 1024 * 1024 )
32- resource .setrlimit (resource .RLIMIT_AS , (memory_limit , memory_limit ))
32+ resource .setrlimit (resource .RLIMIT_RSS , (memory_limit , memory_limit ))
3333
3434
3535def table_to_json (raw_table ):
Original file line number Diff line number Diff line change @@ -112,6 +112,16 @@ const Operator = ({data}) => {
112112 < div > < b > Aggregates:</ b > { data . aggregates . map ( ( agg ) => < div > < Expression data = { agg . computed } /> : < Expression
113113 data = { agg . aggregation } /> </ div > ) } </ div >
114114 </ OperatorContainer >
115+ } else if ( data . operator === "groupjoin" ) {
116+ return < OperatorContainer heading = { `\u25b7\u0393\u2003 GroupJoin` } >
117+ < div > < b > Keys:</ b > { data . keys . map ( ( key ) => < div > < Expression data = { key . left } /> < Expression data = { key . right } />
118+ </ div > ) } </ div >
119+ < div > < b > Mapped:</ b > { data . mapped . map ( ( m ) => < div > < Expression data = { m . computed } /> : < Expression
120+ data = { m . expression } /> </ div > ) } </ div >
121+ < div > < b > Aggregates:</ b > { data . aggregates . map ( ( agg ) => < div > < Expression data = { agg . computed } /> : < Expression
122+ data = { agg . aggregation } /> </ div > ) } </ div >
123+ < div > < b > Behavior: </ b > { data . behavior } </ div >
124+ </ OperatorContainer >
115125 } else if ( data . operator === "materialize" ) {
116126 return < OperatorContainer heading = { `\u03c0\u2003 Materialize` } >
117127 < div > < b > Output:</ b > { data . output . map ( ( output ) => < div > { output . name } : < Expression data = { output . column } />
Original file line number Diff line number Diff line change 1- a228f6c54739209c219900df0f884750e6946da0
1+ 4e25390c5ad48636b5c4f6d581542f6037c9b832
You can’t perform that action at this time.
0 commit comments