-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IMMV with duplicate data in the pkey can't be created due to auto index creation #99
Comments
Thank you for your reporting Yes, this would be a bug of automatic index creation when the view has set-returning function in FROM clause. I'll fix this.
Even though putting the bug-fix aside, your proposal also may make sense. This can be workaround for issues like this case and also it might be possible that users can find another efficient index. |
Or adding GUC parameter for this is better, instead of adding function arguments? |
一方で、自分が提示したようなユニークキーが重複しており、複数のレコードに展開されるようなimmvを設定してしまうと、元レコードに更新があった場合に、複数レコードに対して更新がされるためにあまり効率的ではないという事象も見えています。しかも、オリジナルレコードのどのレコードが変化したら、反映すべきかという判断までおそらく現状していないと思うのですが、immvで参照されていないレコードの更新でもトリガーにより処理がされるのか、オリジナルレコードの更新に時間がかかるという事象が見えています。 |
ビューの定義上、テーブルの1つ行更新がビューの複数行の更新を要する場合には、複数行更新が発生するのは必然の結果です。 If updating one row in the table requires updating multiple rows in the view, it is inevitable that multiple rows will be updated.
WHERE句で除外されているはずのテーブル行が更新された場合にもトリガが起動してしまうことについて、でしょうか。これに対しては、不要な場合にトリガが関数が起動しないよう WHEN condition を付与することが思いつきましたが、文レベルトリガではこれは有用ではない[1]ためうまく行かなそうです。 As to it, I thought of adding a WHEN condition so that the trigger does not fire the function when it is not needed, but this is not useful for statement-level triggers [1] , so it doesn't seem to work. [1] https://www.postgresql.org/docs/current/sql-createtrigger.html
非推奨ということではないですが、上記による更新性能への影響が要件を満たさないほどに大きい場合には使用に適さないでしょう。 It's not exactly unrecommended, but if the impact of the above on update performance is so great that it doesn't meet your requirements, it's probably not suitable for use. |
In pg_ivm 1.9, IMMV creation fails due to issues with index creation, which worked in 1.5.
expect
I want the ability to suppress auto index creation when needed to create IMMV.
how to reproduce
then create immv(failed)
Added
DISTINCT
in theSELECT
then I could create the IMMV, but the execution plan is different, so it's inefficient and not what I need.The text was updated successfully, but these errors were encountered: