diff options
author | Jeff Davis <jdavis@postgresql.org> | 2024-07-31 16:15:26 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2024-07-31 16:37:53 -0700 |
commit | f683d3a4ca6dc441a86ed90070f126c20ea46b45 (patch) | |
tree | 1b1b6267d6b2a53cee59fff7508bfcbbf0640ca2 /src/include/commands/matview.h | |
parent | f5f30c22ed69fb37b896c4d4546b2ab823c3fd61 (diff) | |
download | postgresql-f683d3a4ca6dc441a86ed90070f126c20ea46b45.tar.gz postgresql-f683d3a4ca6dc441a86ed90070f126c20ea46b45.zip |
Remove unused ParamListInfo argument from ExecRefreshMatView.
Author: Yugo Nagata
Discussion: https://postgr.es/m/20240726122630.70e889f63a4d7e26f8549de8@sraoss.co.jp
Diffstat (limited to 'src/include/commands/matview.h')
-rw-r--r-- | src/include/commands/matview.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/commands/matview.h b/src/include/commands/matview.h index a226b2e68fb..7916df30393 100644 --- a/src/include/commands/matview.h +++ b/src/include/commands/matview.h @@ -24,10 +24,9 @@ extern void SetMatViewPopulatedState(Relation relation, bool newstate); extern ObjectAddress ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString, - ParamListInfo params, QueryCompletion *qc); + QueryCompletion *qc); extern ObjectAddress RefreshMatViewByOid(Oid matviewOid, bool skipData, bool concurrent, - const char *queryString, ParamListInfo params, - QueryCompletion *qc); + const char *queryString, QueryCompletion *qc); extern DestReceiver *CreateTransientRelDestReceiver(Oid transientoid); |