1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
backend_sources += files(
'aggregatecmds.c',
'alter.c',
'amcmds.c',
'analyze.c',
'async.c',
'cluster.c',
'collationcmds.c',
'comment.c',
'constraint.c',
'conversioncmds.c',
'copy.c',
'copyfrom.c',
'copyfromparse.c',
'copyto.c',
'createas.c',
'dbcommands.c',
'define.c',
'discard.c',
'dropcmds.c',
'event_trigger.c',
'explain.c',
'extension.c',
'foreigncmds.c',
'functioncmds.c',
'indexcmds.c',
'lockcmds.c',
'matview.c',
'opclasscmds.c',
'operatorcmds.c',
'policy.c',
'portalcmds.c',
'prepare.c',
'proclang.c',
'publicationcmds.c',
'schemacmds.c',
'seclabel.c',
'sequence.c',
'statscmds.c',
'subscriptioncmds.c',
'tablecmds.c',
'tablespace.c',
'trigger.c',
'tsearchcmds.c',
'typecmds.c',
'user.c',
'vacuum.c',
'vacuumparallel.c',
'variable.c',
'view.c',
)
|