sraoss / pg_ivm

IVM (Incremental View Maintenance) implementation as a PostgreSQL extension
Other
854 stars 24 forks source link

Fix to allow generate_sereis in FROM clause #50

Closed yugo-n closed 1 year ago

yugo-n commented 1 year ago

Previously, it caused an error due to an ambiguous reference at the maintenance time because generate_series is used internally. This is fixed by using an alias name for the internal genearet_series.

thoshiai commented 1 year ago

Thanks! It looks so good.

yugo-n commented 1 year ago

Thanks! Merged.