File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
* Copyright (c) 2008-2009, PostgreSQL Global Development Group
7
7
*
8
8
* IDENTIFICATION
9
- * $PostgreSQL: pgsql/contrib/auto_explain/auto_explain.c,v 1.3 2009/01/02 01:16:02 tgl Exp $
9
+ * $PostgreSQL: pgsql/contrib/auto_explain/auto_explain.c,v 1.4 2009/01/05 13:35:38 tgl Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -94,6 +94,8 @@ _PG_init(void)
94
94
NULL ,
95
95
NULL );
96
96
97
+ EmitWarningsOnPlaceholders ("auto_explain" );
98
+
97
99
/* Install hooks. */
98
100
prev_ExecutorStart = ExecutorStart_hook ;
99
101
ExecutorStart_hook = explain_ExecutorStart ;
Original file line number Diff line number Diff line change 14
14
* Copyright (c) 2008-2009, PostgreSQL Global Development Group
15
15
*
16
16
* IDENTIFICATION
17
- * $PostgreSQL: pgsql/contrib/pg_stat_statements/pg_stat_statements.c,v 1.1 2009/01/04 22:19:59 tgl Exp $
17
+ * $PostgreSQL: pgsql/contrib/pg_stat_statements/pg_stat_statements.c,v 1.2 2009/01/05 13:35:38 tgl Exp $
18
18
*
19
19
*-------------------------------------------------------------------------
20
20
*/
@@ -222,6 +222,8 @@ _PG_init(void)
222
222
NULL ,
223
223
NULL );
224
224
225
+ EmitWarningsOnPlaceholders ("pg_stat_statements" );
226
+
225
227
/*
226
228
* Request additional shared resources. (These are no-ops if we're not in
227
229
* the postmaster process.) We'll allocate or attach to the shared
You can’t perform that action at this time.
0 commit comments