sraoss / pgsql-ivm

IVM (Incremental View Maintenance) development for PostgreSQL
Other
127 stars 12 forks source link

Allow to maintain IMMVs containing user defined types #73

Closed yugo-n closed 4 years ago

yugo-n commented 4 years ago

IMMVs containing user defined types could not be maintained and an error was raised because such columns were compared using pg_calatog.= during tuple matching. To fix this, use the column type's default equality operator instead of forcing to use the built-in operator.

(Github issue #66)

thoshiai commented 4 years ago

I think that It sounds good.

yugo-n commented 4 years ago

If you could add this case to regression test, I think that it is more better

OK. I'll try it.

yugo-n commented 4 years ago

@thoshiai I added the regression test.

thoshiai commented 4 years ago

@yugo-n Thank you for adding test!

thoshiai commented 4 years ago

Sorry my mistake