File tree 13 files changed +16
-29
lines changed
13 files changed +16
-29
lines changed Original file line number Diff line number Diff line change 12
12
* src/backend/commands/aggregatecmds.c
13
13
*
14
14
* DESCRIPTION
15
- * The "DefineFoo" routines take the parse tree and pick out the
15
+ * The "DefineAggregate" routine takes the parse tree and picks out the
16
16
* appropriate arguments/flags, passing the results to the
17
- * corresponding "FooDefine" routines (in src/catalog) that do
18
- * the actual catalog-munging. These routines also verify permission
19
- * of the user to execute the command.
17
+ * "AggregateCreate" routine (in src/backend/ catalog), which does the
18
+ * actual catalog-munging. DefineAggregate also verifies the permission of
19
+ * the user to execute the command.
20
20
*
21
21
*-------------------------------------------------------------------------
22
22
*/
Original file line number Diff line number Diff line change 12
12
* src/backend/commands/define.c
13
13
*
14
14
* DESCRIPTION
15
- * The "DefineFoo" routines take the parse tree and pick out the
16
- * appropriate arguments/flags, passing the results to the
17
- * corresponding "FooDefine" routines (in src/catalog) that do
18
- * the actual catalog-munging. These routines also verify permission
19
- * of the user to execute the command.
20
- *
21
- * NOTES
22
- * These things must be defined and committed in the following order:
23
- * "create function":
24
- * input/output, recv/send procedures
25
- * "create type":
26
- * type
27
- * "create operator":
28
- * operators
15
+ * Support routines for dealing with DefElem nodes.
29
16
*
30
17
*
31
18
*-------------------------------------------------------------------------
Original file line number Diff line number Diff line change 15
15
* DESCRIPTION
16
16
* These routines take the parse tree and pick out the
17
17
* appropriate arguments/flags, and pass the results to the
18
- * corresponding "FooDefine " routines (in src/catalog) that do
18
+ * corresponding "FooCreate " routines (in src/backend /catalog) that do
19
19
* the actual catalog-munging. These routines also verify permission
20
20
* of the user to execute the command.
21
21
*
Original file line number Diff line number Diff line change 14
14
* DESCRIPTION
15
15
* The "DefineFoo" routines take the parse tree and pick out the
16
16
* appropriate arguments/flags, passing the results to the
17
- * corresponding "FooDefine " routines (in src/catalog) that do
17
+ * corresponding "FooCreate " routines (in src/backend /catalog) that do
18
18
* the actual catalog-munging. These routines also verify permission
19
19
* of the user to execute the command.
20
20
*
Original file line number Diff line number Diff line change 13
13
* DESCRIPTION
14
14
* The "DefineFoo" routines take the parse tree and pick out the
15
15
* appropriate arguments/flags, passing the results to the
16
- * corresponding "FooDefine " routines (in src/catalog) that do
16
+ * corresponding "FooCreate " routines (in src/backend /catalog) that do
17
17
* the actual catalog-munging. These routines also verify permission
18
18
* of the user to execute the command.
19
19
*
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ CommandIsReadOnly(PlannedStmt *pstmt)
122
122
/*
123
123
* Determine the degree to which a utility command is read only.
124
124
*
125
- * Note the definitions of the relevant flags in src/include/utility/ tcop.h.
125
+ * Note the definitions of the relevant flags in src/include/tcop/utility .h.
126
126
*/
127
127
static int
128
128
ClassifyUtilityCommandAsReadOnly (Node * parsetree )
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 2000-2024, PostgreSQL Global Development Group
8
8
*
9
- * src/include /utils/guc_internal.h
9
+ * src/backend /utils/misc /guc_internal.h
10
10
*--------------------------------------------------------------------
11
11
*/
12
12
#ifndef GUC_INTERNAL_H
Original file line number Diff line number Diff line change 9
9
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
10
10
*
11
11
* IDENTIFICATION
12
- * src/bin/pg_basebackup /astreamer_file.c
12
+ * src/fe_utils /astreamer_file.c
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
Original file line number Diff line number Diff line change 20
20
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
21
21
*
22
22
* IDENTIFICATION
23
- * src/bin/pg_basebackup /astreamer_gzip.c
23
+ * src/fe_utils /astreamer_gzip.c
24
24
*-------------------------------------------------------------------------
25
25
*/
26
26
Original file line number Diff line number Diff line change 9
9
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
10
10
*
11
11
* IDENTIFICATION
12
- * src/bin/pg_basebackup /astreamer_lz4.c
12
+ * src/fe_utils /astreamer_lz4.c
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
Original file line number Diff line number Diff line change 15
15
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
16
16
*
17
17
* IDENTIFICATION
18
- * src/bin/pg_basebackup /astreamer_tar.c
18
+ * src/fe_utils /astreamer_tar.c
19
19
*-------------------------------------------------------------------------
20
20
*/
21
21
Original file line number Diff line number Diff line change 9
9
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
10
10
*
11
11
* IDENTIFICATION
12
- * src/bin/pg_basebackup /astreamer_zstd.c
12
+ * src/fe_utils /astreamer_zstd.c
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
Original file line number Diff line number Diff line change 24
24
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
25
25
*
26
26
* IDENTIFICATION
27
- * src/bin/pg_basebackup /astreamer.h
27
+ * src/include/fe_utils /astreamer.h
28
28
*-------------------------------------------------------------------------
29
29
*/
30
30
You can’t perform that action at this time.
0 commit comments