Iaroslav Zeigerman

Results 78 comments of Iaroslav Zeigerman

Hey @harnitbakshi , this reproducible example is amazing. Also, great job identifying the root cause of the issue. I've refactored the implementation to get rid of recursive calls in that...

> Documentation for python models says - specifying depends_on takes precedence over SQLmesh resolving the dependencies. Yeah, I think this documentation is out of date. I think there's a bit...

After additional deliberation it turned out that I was wrong about my initial conclusion. @ananis25, your initial implementation should work with one caveat: the `columns_to_types` will not be available when...

I suspect that this happens because of the column name overlap with the default `valid_from` and `valid_to` column names configured as part of the SCD2 model kind. These columns are...

I believe this happens because the transaction isolation in your postgres instance is set to READ COMMITTED or below. So I think the following happens: 1. DELETE from the first...

I see now, @simon-pactum. I think we could lock the table before doing the insert with ``` LOCK TABLE IN EXCLUSIVE ```

Can you please share the error or any other output that SQLMesh produces. Logs would help too. Thanks