sans-clue
sans-clue
Is this still up for grabs?
I solved this with: ```go scr := elastic.NewScript("return doc['deposits.depositA'].value + doc['deposits.depositB'].value") avg := elastic.NewAvgAggregation().Script(scr) nested := elastic. NewNestedAggregation(). Path("deposits"). SubAggregation("nested", avg) agg := elastic. NewHistogramAggregation(). Field("counter"). Interval(50). SubAggregation("balance", nested) src,...
I'm confused, do transactions in migration files not work in these conditions? Ubuntu 20.04 Mysql 8.0.27 Node: 14.17.0 CLI: 6.2.0 ORM: 6.9.0 I tried creating a similar migration as shown...
> That's because MySQL actually does support mixing modifying the database structure inside migrations (if I recall correctly it automatically commits the transaction before modifying the table). Can you tell...