Øyvind Evju

Results 3 comments of Øyvind Evju

I had the same issue with http://dl.biocommons.org/uta/uta_20201027.pgd.gz. A quick workaround is to ignore all lines starting with REFRESH MATERIALIZED VIEW: `gzip -cdq uta_${UTA_VERSION}.pgd.gz | grep -v "^REFRESH MATERIALIZED VIEW" |...

I feel that the proposed solution by @andremmori is quite hackish. I don't know SQLModel well enough (yet) to feel confident about setting `table=False` when initializing it, when I in...

ah, shit, sorry. That was meant to be a `ClassVar`: ``` from typing import ClassVar from pydantic import BaseModel class Base(BaseModel): a: ClassVar[int] class Sub1(Base): a = 1 ``` This...