pg_query 2.0.3 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/README.md +12 -0
- data/Rakefile +5 -19
- data/ext/pg_query/extconf.rb +3 -1
- data/ext/pg_query/include/c.h +12 -0
- data/ext/pg_query/include/executor/executor.h +6 -0
- data/ext/pg_query/include/nodes/execnodes.h +9 -6
- data/ext/pg_query/include/nodes/pathnodes.h +1 -1
- data/ext/pg_query/include/optimizer/paths.h +8 -0
- data/ext/pg_query/include/pg_config.h +6 -6
- data/ext/pg_query/include/pg_config_manual.h +7 -0
- data/ext/pg_query/include/pg_query.h +2 -2
- data/ext/pg_query/include/pg_query_outfuncs_defs.c +1 -0
- data/ext/pg_query/include/pg_query_readfuncs_defs.c +1 -0
- data/ext/pg_query/include/protobuf-c.h +7 -3
- data/ext/pg_query/include/protobuf-c/protobuf-c.h +7 -3
- data/ext/pg_query/include/protobuf/pg_query.pb-c.h +472 -467
- data/ext/pg_query/include/utils/array.h +1 -0
- data/ext/pg_query/include/utils/lsyscache.h +1 -0
- data/ext/pg_query/include/utils/probes.h +57 -57
- data/ext/pg_query/pg_query.pb-c.c +502 -487
- data/ext/pg_query/pg_query_deparse.c +6 -0
- data/ext/pg_query/pg_query_fingerprint.c +104 -32
- data/ext/pg_query/pg_query_normalize.c +112 -60
- data/ext/pg_query/protobuf-c.c +34 -27
- data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +36 -0
- data/ext/pg_query/src_common_hashfn.c +420 -0
- data/lib/pg_query.rb +0 -1
- data/lib/pg_query/filter_columns.rb +1 -1
- data/lib/pg_query/fingerprint.rb +1 -3
- data/lib/pg_query/parse.rb +60 -5
- data/lib/pg_query/pg_query_pb.rb +1385 -1383
- data/lib/pg_query/version.rb +1 -1
- metadata +7 -7
- data/lib/pg_query/json_field_names.rb +0 -1402
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ede23ff0f5d9af4599a7732fe624b3e2fba355ebb54bb6b88df3ef3932d7692a
|
4
|
+
data.tar.gz: d11105ea7323b8908dde6b328908190858d150f12a13a109d943ae3bf8af475b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37b3301df52b4743098ded9bbb69b05f4a360f7e1335386833ac619f4e5423f7b3c42a6506b3519c59ed3d0bb62e6e59ef04c8515fc9a3eb5daa95c53ab228e7
|
7
|
+
data.tar.gz: cd94026574593d6e78ac41e88c3378a6c46ea6d0869f8ddd9a200c367a969ff67695a780b0609518eafcff7a8dfaff015ce6408662eff7616cb866b46b52593a
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,36 @@
|
|
5
5
|
* ...
|
6
6
|
|
7
7
|
|
8
|
+
## 2.1.0 2021-07-04
|
9
|
+
|
10
|
+
* Update to libpg_query 13-2.0.6
|
11
|
+
- Update to Postgres 13.3 patch release
|
12
|
+
- Normalize: Don't touch "GROUP BY 1" and "ORDER BY 1" expressions, keep original text
|
13
|
+
- Fingerprint: Cache list item hashes to fingerprint complex queries faster
|
14
|
+
- Deparser: Emit the RangeVar catalogname if present
|
15
|
+
- Fix crash in pg_scan function when encountering backslash escapes
|
16
|
+
* Support extracting functions from a parsed query ([#147](https://github.com/pganalyze/pg_query/pull/147))
|
17
|
+
- Adds new `functions`, `ddl_functions` and `call_functions` methods
|
18
|
+
- Note that functions are identified by their name only, not their full type definition,
|
19
|
+
since raw query parsetrees don't contain sufficient data to identify the types of
|
20
|
+
arguments when functions are called
|
21
|
+
* Relax google-protobuf dependency ([#213](https://github.com/pganalyze/pg_query/pull/213))
|
22
|
+
* Update google-protobuf to 3.17.1 ([#212](https://github.com/pganalyze/pg_query/pull/212))
|
23
|
+
- google-protobuf 3.15.x has a bug that causes a seg fault in Ruby under
|
24
|
+
certain conditions (https://github.com/protocolbuffers/protobuf/pull/8639). Use
|
25
|
+
google-protobuf 3.17.1 instead.
|
26
|
+
* Use Protobuf definition for determining JSON field names
|
27
|
+
- Note you may see a breaking change if you were using `PgQuery::ParseResult.encode_json`
|
28
|
+
to map the protobuf result to JSON, since this now respects the intended JSON names
|
29
|
+
from the Proto3 definition (instead of the differently formatted Protobuf field names)
|
30
|
+
* Rakefile: Fix "rake clean" by using CLEAN.include instead of CLEAN.<<
|
31
|
+
* Find tables inside COALESCE/MIN/MAX functions, UPDATE FROM list
|
32
|
+
* Extconf: Add library include path using $INCFLAGS, list it first
|
33
|
+
- This ensures any system installed libpg_query gets considered after
|
34
|
+
the bundled libpg_query, avoiding errors where the wrong header files
|
35
|
+
are used.
|
36
|
+
|
37
|
+
|
8
38
|
## 2.0.3 2021-04-05
|
9
39
|
|
10
40
|
* Update to libpg_query 13-2.0.4
|
data/README.md
CHANGED
@@ -133,6 +133,18 @@ PgQuery.fingerprint("SELECT ?")
|
|
133
133
|
=> "50fde20626009aba"
|
134
134
|
```
|
135
135
|
|
136
|
+
### Scanning a query into tokens
|
137
|
+
|
138
|
+
```ruby
|
139
|
+
PgQuery.scan('SELECT 1 --comment')
|
140
|
+
|
141
|
+
=> [<PgQuery::ScanResult: version: 130002, tokens: [
|
142
|
+
<PgQuery::ScanToken: start: 0, end: 6, token: :SELECT, keyword_kind: :RESERVED_KEYWORD>,
|
143
|
+
<PgQuery::ScanToken: start: 7, end: 8, token: :ICONST, keyword_kind: :NO_KEYWORD>,
|
144
|
+
<PgQuery::ScanToken: start: 9, end: 18, token: :SQL_COMMENT, keyword_kind: :NO_KEYWORD>]>,
|
145
|
+
[]]
|
146
|
+
```
|
147
|
+
|
136
148
|
## Differences from Upstream PostgreSQL
|
137
149
|
|
138
150
|
This gem is based on [libpg_query](https://github.com/pganalyze/libpg_query),
|
data/Rakefile
CHANGED
@@ -5,8 +5,8 @@ require 'rspec/core/rake_task'
|
|
5
5
|
require 'rubocop/rake_task'
|
6
6
|
require 'open-uri'
|
7
7
|
|
8
|
-
LIB_PG_QUERY_TAG = '13-2.0.
|
9
|
-
LIB_PG_QUERY_SHA256SUM = '
|
8
|
+
LIB_PG_QUERY_TAG = '13-2.0.6'.freeze
|
9
|
+
LIB_PG_QUERY_SHA256SUM = '61f384ac949bd7404efe6bcc37a8a6fca79030e59c02659f108ee1db45e93414'.freeze
|
10
10
|
|
11
11
|
Rake::ExtensionTask.new 'pg_query' do |ext|
|
12
12
|
ext.lib_dir = 'lib/pg_query'
|
@@ -21,9 +21,9 @@ task default: %i[spec lint]
|
|
21
21
|
task test: :spec
|
22
22
|
task lint: :rubocop
|
23
23
|
|
24
|
-
CLEAN
|
25
|
-
CLEAN
|
26
|
-
CLEAN
|
24
|
+
CLEAN.include 'tmp/**/*'
|
25
|
+
CLEAN.include 'ext/pg_query/*.o'
|
26
|
+
CLEAN.include 'lib/pg_query/pg_query.bundle'
|
27
27
|
|
28
28
|
task :update_source do
|
29
29
|
workdir = File.join(__dir__, 'tmp')
|
@@ -86,18 +86,4 @@ task :update_source do
|
|
86
86
|
system("cp -a #{libdir}/testdata/* #{testfilesdir}")
|
87
87
|
# Copy back the custom ext files
|
88
88
|
system("cp -a #{extbakdir}/pg_query_ruby.{c,sym} #{extbakdir}/extconf.rb #{extdir}")
|
89
|
-
|
90
|
-
# Generate JSON field name helper (workaround until https://github.com/protocolbuffers/protobuf/pull/8356 is merged)
|
91
|
-
str = "module PgQuery\n INTERNAL_PROTO_FIELD_NAME_TO_JSON_NAME = {\n"
|
92
|
-
cur_type = nil
|
93
|
-
File.read(File.join(libdir, 'protobuf/pg_query.proto')).each_line do |line|
|
94
|
-
if line[/^message (\w+)/]
|
95
|
-
cur_type = $1
|
96
|
-
next
|
97
|
-
end
|
98
|
-
next unless line[/(repeated )?\w+ (\w+) = \d+( \[json_name="(\w+)"\])?;/]
|
99
|
-
str += format(" [%s, :%s] => '%s',\n", cur_type, $2, $4 || $2)
|
100
|
-
end
|
101
|
-
str += " }\nend\n"
|
102
|
-
File.write(File.join(__dir__, 'lib/pg_query/json_field_names.rb'), str)
|
103
89
|
end
|
data/ext/pg_query/extconf.rb
CHANGED
@@ -7,7 +7,9 @@ require 'pathname'
|
|
7
7
|
|
8
8
|
$objs = Dir.glob(File.join(__dir__, '*.c')).map { |f| Pathname.new(f).sub_ext('.o').to_s }
|
9
9
|
|
10
|
-
$CFLAGS << " -
|
10
|
+
$CFLAGS << " -O3 -Wall -fno-strict-aliasing -fwrapv -fstack-protector -Wno-unused-function -Wno-unused-variable -g"
|
11
|
+
|
12
|
+
$INCFLAGS = "-I#{File.join(__dir__, 'include')} " + $INCFLAGS
|
11
13
|
|
12
14
|
SYMFILE = File.join(__dir__, 'pg_query_ruby.sym')
|
13
15
|
if RUBY_PLATFORM =~ /darwin/
|
data/ext/pg_query/include/c.h
CHANGED
@@ -110,6 +110,18 @@
|
|
110
110
|
#define pg_attribute_unused()
|
111
111
|
#endif
|
112
112
|
|
113
|
+
/*
|
114
|
+
* Place this macro before functions that should be allowed to make misaligned
|
115
|
+
* accesses. Think twice before using it on non-x86-specific code!
|
116
|
+
* Testing can be done with "-fsanitize=alignment -fsanitize-trap=alignment"
|
117
|
+
* on clang, or "-fsanitize=alignment -fno-sanitize-recover=alignment" on gcc.
|
118
|
+
*/
|
119
|
+
#if __clang_major__ >= 7 || __GNUC__ >= 8
|
120
|
+
#define pg_attribute_no_sanitize_alignment() __attribute__((no_sanitize("alignment")))
|
121
|
+
#else
|
122
|
+
#define pg_attribute_no_sanitize_alignment()
|
123
|
+
#endif
|
124
|
+
|
113
125
|
/*
|
114
126
|
* Append PG_USED_FOR_ASSERTS_ONLY to definitions of variables that are only
|
115
127
|
* used in assert-enabled builds, to avoid compiler warnings about unused
|
@@ -271,6 +271,12 @@ extern ProjectionInfo *ExecBuildProjectionInfo(List *targetList,
|
|
271
271
|
TupleTableSlot *slot,
|
272
272
|
PlanState *parent,
|
273
273
|
TupleDesc inputDesc);
|
274
|
+
extern ProjectionInfo *ExecBuildProjectionInfoExt(List *targetList,
|
275
|
+
ExprContext *econtext,
|
276
|
+
TupleTableSlot *slot,
|
277
|
+
bool assignJunkEntries,
|
278
|
+
PlanState *parent,
|
279
|
+
TupleDesc inputDesc);
|
274
280
|
extern ExprState *ExecPrepareExpr(Expr *node, EState *estate);
|
275
281
|
extern ExprState *ExecPrepareQual(List *qual, EState *estate);
|
276
282
|
extern ExprState *ExecPrepareCheck(List *qual, EState *estate);
|
@@ -395,12 +395,15 @@ typedef struct OnConflictSetState
|
|
395
395
|
* relation, and perhaps also fire triggers. ResultRelInfo holds all the
|
396
396
|
* information needed about a result relation, including indexes.
|
397
397
|
*
|
398
|
-
* Normally, a ResultRelInfo refers to a table that is in the query's
|
399
|
-
*
|
400
|
-
*
|
401
|
-
*
|
402
|
-
*
|
403
|
-
*
|
398
|
+
* Normally, a ResultRelInfo refers to a table that is in the query's range
|
399
|
+
* table; then ri_RangeTableIndex is the RT index and ri_RelationDesc is
|
400
|
+
* just a copy of the relevant es_relations[] entry. However, in some
|
401
|
+
* situations we create ResultRelInfos for relations that are not in the
|
402
|
+
* range table, namely for targets of tuple routing in a partitioned table,
|
403
|
+
* and when firing triggers in tables other than the target tables (See
|
404
|
+
* ExecGetTriggerResultRel). In these situations, ri_RangeTableIndex is 0
|
405
|
+
* and ri_RelationDesc is a separately-opened relcache pointer that needs to
|
406
|
+
* be separately closed.
|
404
407
|
*/
|
405
408
|
typedef struct ResultRelInfo
|
406
409
|
{
|
@@ -912,7 +912,7 @@ typedef struct StatisticExtInfo
|
|
912
912
|
|
913
913
|
Oid statOid; /* OID of the statistics row */
|
914
914
|
RelOptInfo *rel; /* back-link to statistic's table */
|
915
|
-
char kind; /*
|
915
|
+
char kind; /* statistics kind of this entry */
|
916
916
|
Bitmapset *keys; /* attnums of the columns covered */
|
917
917
|
} StatisticExtInfo;
|
918
918
|
|
@@ -135,6 +135,14 @@ extern EquivalenceClass *get_eclass_for_sort_expr(PlannerInfo *root,
|
|
135
135
|
Index sortref,
|
136
136
|
Relids rel,
|
137
137
|
bool create_it);
|
138
|
+
extern EquivalenceMember *find_ec_member_matching_expr(EquivalenceClass *ec,
|
139
|
+
Expr *expr,
|
140
|
+
Relids relids);
|
141
|
+
extern EquivalenceMember *find_computable_ec_member(PlannerInfo *root,
|
142
|
+
EquivalenceClass *ec,
|
143
|
+
List *exprs,
|
144
|
+
Relids relids,
|
145
|
+
bool require_parallel_safe);
|
138
146
|
extern Expr *find_em_expr_for_rel(EquivalenceClass *ec, RelOptInfo *rel);
|
139
147
|
extern Expr *find_em_expr_usable_for_sorting_rel(PlannerInfo *root,
|
140
148
|
EquivalenceClass *ec,
|
@@ -757,7 +757,7 @@
|
|
757
757
|
#define PACKAGE_NAME "PostgreSQL"
|
758
758
|
|
759
759
|
/* Define to the full name and version of this package. */
|
760
|
-
#define PACKAGE_STRING "PostgreSQL 13.
|
760
|
+
#define PACKAGE_STRING "PostgreSQL 13.3"
|
761
761
|
|
762
762
|
/* Define to the one symbol short name of this package. */
|
763
763
|
#define PACKAGE_TARNAME "postgresql"
|
@@ -766,7 +766,7 @@
|
|
766
766
|
#define PACKAGE_URL "https://www.postgresql.org/"
|
767
767
|
|
768
768
|
/* Define to the version of this package. */
|
769
|
-
#define PACKAGE_VERSION "13.
|
769
|
+
#define PACKAGE_VERSION "13.3"
|
770
770
|
|
771
771
|
/* Define to the name of a signed 128-bit integer type. */
|
772
772
|
#define PG_INT128_TYPE __int128
|
@@ -785,7 +785,7 @@
|
|
785
785
|
#define PG_MAJORVERSION_NUM 13
|
786
786
|
|
787
787
|
/* PostgreSQL minor version number */
|
788
|
-
#define PG_MINORVERSION_NUM
|
788
|
+
#define PG_MINORVERSION_NUM 3
|
789
789
|
|
790
790
|
/* Define to best printf format archetype, usually gnu_printf if available. */
|
791
791
|
#define PG_PRINTF_ATTRIBUTE printf
|
@@ -794,13 +794,13 @@
|
|
794
794
|
#define PG_USE_STDBOOL 1
|
795
795
|
|
796
796
|
/* PostgreSQL version as a string */
|
797
|
-
#define PG_VERSION "13.
|
797
|
+
#define PG_VERSION "13.3"
|
798
798
|
|
799
799
|
/* PostgreSQL version as a number */
|
800
|
-
#define PG_VERSION_NUM
|
800
|
+
#define PG_VERSION_NUM 130003
|
801
801
|
|
802
802
|
/* A string containing the version number, platform, and C compiler */
|
803
|
-
#define PG_VERSION_STR "PostgreSQL 13.
|
803
|
+
#define PG_VERSION_STR "PostgreSQL 13.3 on x86_64-apple-darwin19.6.0, compiled by Apple clang version 12.0.0 (clang-1200.0.32.29), 64-bit"
|
804
804
|
|
805
805
|
/* Define to 1 to allow profiling output to be saved separately for each
|
806
806
|
process. */
|
@@ -135,6 +135,13 @@
|
|
135
135
|
#define EXEC_BACKEND
|
136
136
|
#endif
|
137
137
|
|
138
|
+
/*
|
139
|
+
* Define this if your operating system supports link()
|
140
|
+
*/
|
141
|
+
#if !defined(WIN32) && !defined(__CYGWIN__)
|
142
|
+
#define HAVE_WORKING_LINK 1
|
143
|
+
#endif
|
144
|
+
|
138
145
|
/*
|
139
146
|
* USE_POSIX_FADVISE controls whether Postgres will attempt to use the
|
140
147
|
* posix_fadvise() kernel call. Usually the automatic configure tests are
|
@@ -106,9 +106,9 @@ void pg_query_free_fingerprint_result(PgQueryFingerprintResult result);
|
|
106
106
|
void pg_query_exit(void);
|
107
107
|
|
108
108
|
// Postgres version information
|
109
|
-
#define PG_VERSION "13.
|
109
|
+
#define PG_VERSION "13.3"
|
110
110
|
#define PG_MAJORVERSION "13"
|
111
|
-
#define PG_VERSION_NUM
|
111
|
+
#define PG_VERSION_NUM 130003
|
112
112
|
|
113
113
|
// Deprecated APIs below
|
114
114
|
|
@@ -2270,6 +2270,7 @@ _outTableLikeClause(OUT_TYPE(TableLikeClause, TableLikeClause) out, const TableL
|
|
2270
2270
|
{
|
2271
2271
|
WRITE_SPECIFIC_NODE_PTR_FIELD(RangeVar, range_var, relation, relation, relation);
|
2272
2272
|
WRITE_UINT_FIELD(options, options, options);
|
2273
|
+
WRITE_UINT_FIELD(relation_oid, relationOid, relationOid);
|
2273
2274
|
}
|
2274
2275
|
|
2275
2276
|
static void
|
@@ -2674,6 +2674,7 @@ _readTableLikeClause(OUT_TYPE(TableLikeClause, TableLikeClause) msg)
|
|
2674
2674
|
TableLikeClause *node = makeNode(TableLikeClause);
|
2675
2675
|
READ_SPECIFIC_NODE_PTR_FIELD(RangeVar, range_var, relation, relation, relation);
|
2676
2676
|
READ_UINT_FIELD(options, options, options);
|
2677
|
+
READ_UINT_FIELD(relation_oid, relationOid, relationOid);
|
2677
2678
|
return node;
|
2678
2679
|
}
|
2679
2680
|
|
@@ -238,7 +238,11 @@ PROTOBUF_C__BEGIN_DECLS
|
|
238
238
|
#define PROTOBUF_C__ENUM_DESCRIPTOR_MAGIC 0x114315af
|
239
239
|
|
240
240
|
/* Empty string used for initializers */
|
241
|
+
#if defined(_WIN32) && defined(PROTOBUF_C_USE_SHARED_LIB)
|
242
|
+
static const char protobuf_c_empty_string[] = "";
|
243
|
+
#else
|
241
244
|
extern const char protobuf_c_empty_string[];
|
245
|
+
#endif
|
242
246
|
|
243
247
|
/**
|
244
248
|
* \defgroup api Public API
|
@@ -790,13 +794,13 @@ protobuf_c_version_number(void);
|
|
790
794
|
* The version of the protobuf-c headers, represented as a string using the same
|
791
795
|
* format as protobuf_c_version().
|
792
796
|
*/
|
793
|
-
#define PROTOBUF_C_VERSION "1.
|
797
|
+
#define PROTOBUF_C_VERSION "1.4.0"
|
794
798
|
|
795
799
|
/**
|
796
800
|
* The version of the protobuf-c headers, represented as an integer using the
|
797
801
|
* same format as protobuf_c_version_number().
|
798
802
|
*/
|
799
|
-
#define PROTOBUF_C_VERSION_NUMBER
|
803
|
+
#define PROTOBUF_C_VERSION_NUMBER 1004000
|
800
804
|
|
801
805
|
/**
|
802
806
|
* The minimum protoc-c version which works with the current version of the
|
@@ -1103,4 +1107,4 @@ protobuf_c_service_invoke_internal(
|
|
1103
1107
|
|
1104
1108
|
PROTOBUF_C__END_DECLS
|
1105
1109
|
|
1106
|
-
#endif /* PROTOBUF_C_H */
|
1110
|
+
#endif /* PROTOBUF_C_H */
|
@@ -238,7 +238,11 @@ PROTOBUF_C__BEGIN_DECLS
|
|
238
238
|
#define PROTOBUF_C__ENUM_DESCRIPTOR_MAGIC 0x114315af
|
239
239
|
|
240
240
|
/* Empty string used for initializers */
|
241
|
+
#if defined(_WIN32) && defined(PROTOBUF_C_USE_SHARED_LIB)
|
242
|
+
static const char protobuf_c_empty_string[] = "";
|
243
|
+
#else
|
241
244
|
extern const char protobuf_c_empty_string[];
|
245
|
+
#endif
|
242
246
|
|
243
247
|
/**
|
244
248
|
* \defgroup api Public API
|
@@ -790,13 +794,13 @@ protobuf_c_version_number(void);
|
|
790
794
|
* The version of the protobuf-c headers, represented as a string using the same
|
791
795
|
* format as protobuf_c_version().
|
792
796
|
*/
|
793
|
-
#define PROTOBUF_C_VERSION "1.
|
797
|
+
#define PROTOBUF_C_VERSION "1.4.0"
|
794
798
|
|
795
799
|
/**
|
796
800
|
* The version of the protobuf-c headers, represented as an integer using the
|
797
801
|
* same format as protobuf_c_version_number().
|
798
802
|
*/
|
799
|
-
#define PROTOBUF_C_VERSION_NUMBER
|
803
|
+
#define PROTOBUF_C_VERSION_NUMBER 1004000
|
800
804
|
|
801
805
|
/**
|
802
806
|
* The minimum protoc-c version which works with the current version of the
|
@@ -1103,4 +1107,4 @@ protobuf_c_service_invoke_internal(
|
|
1103
1107
|
|
1104
1108
|
PROTOBUF_C__END_DECLS
|
1105
1109
|
|
1106
|
-
#endif /* PROTOBUF_C_H */
|
1110
|
+
#endif /* PROTOBUF_C_H */
|
@@ -10,243 +10,243 @@ PROTOBUF_C__BEGIN_DECLS
|
|
10
10
|
|
11
11
|
#if PROTOBUF_C_VERSION_NUMBER < 1003000
|
12
12
|
# error This file was generated by a newer version of protoc-c which is incompatible with your libprotobuf-c headers. Please update your headers.
|
13
|
-
#elif
|
13
|
+
#elif 1004000 < PROTOBUF_C_MIN_COMPILER_VERSION
|
14
14
|
# error This file was generated by an older version of protoc-c which is incompatible with your libprotobuf-c headers. Please regenerate this file with a newer version of protoc-c.
|
15
15
|
#endif
|
16
16
|
|
17
17
|
|
18
|
-
typedef struct
|
19
|
-
typedef struct
|
20
|
-
typedef struct
|
21
|
-
typedef struct
|
22
|
-
typedef struct
|
23
|
-
typedef struct
|
24
|
-
typedef struct
|
25
|
-
typedef struct
|
26
|
-
typedef struct
|
27
|
-
typedef struct
|
28
|
-
typedef struct
|
29
|
-
typedef struct
|
30
|
-
typedef struct
|
31
|
-
typedef struct
|
32
|
-
typedef struct
|
33
|
-
typedef struct
|
34
|
-
typedef struct
|
35
|
-
typedef struct
|
36
|
-
typedef struct
|
37
|
-
typedef struct
|
38
|
-
typedef struct
|
39
|
-
typedef struct
|
40
|
-
typedef struct
|
41
|
-
typedef struct
|
42
|
-
typedef struct
|
43
|
-
typedef struct
|
44
|
-
typedef struct
|
45
|
-
typedef struct
|
46
|
-
typedef struct
|
47
|
-
typedef struct
|
48
|
-
typedef struct
|
49
|
-
typedef struct
|
50
|
-
typedef struct
|
51
|
-
typedef struct
|
52
|
-
typedef struct
|
53
|
-
typedef struct
|
54
|
-
typedef struct
|
55
|
-
typedef struct
|
56
|
-
typedef struct
|
57
|
-
typedef struct
|
58
|
-
typedef struct
|
59
|
-
typedef struct
|
60
|
-
typedef struct
|
61
|
-
typedef struct
|
62
|
-
typedef struct
|
63
|
-
typedef struct
|
64
|
-
typedef struct
|
65
|
-
typedef struct
|
66
|
-
typedef struct
|
67
|
-
typedef struct
|
68
|
-
typedef struct
|
69
|
-
typedef struct
|
70
|
-
typedef struct
|
71
|
-
typedef struct
|
72
|
-
typedef struct
|
73
|
-
typedef struct
|
74
|
-
typedef struct
|
75
|
-
typedef struct
|
76
|
-
typedef struct
|
77
|
-
typedef struct
|
78
|
-
typedef struct
|
79
|
-
typedef struct
|
80
|
-
typedef struct
|
81
|
-
typedef struct
|
82
|
-
typedef struct
|
83
|
-
typedef struct
|
84
|
-
typedef struct
|
85
|
-
typedef struct
|
86
|
-
typedef struct
|
87
|
-
typedef struct
|
88
|
-
typedef struct
|
89
|
-
typedef struct
|
90
|
-
typedef struct
|
91
|
-
typedef struct
|
92
|
-
typedef struct
|
93
|
-
typedef struct
|
94
|
-
typedef struct
|
95
|
-
typedef struct
|
96
|
-
typedef struct
|
97
|
-
typedef struct
|
98
|
-
typedef struct
|
99
|
-
typedef struct
|
100
|
-
typedef struct
|
101
|
-
typedef struct
|
102
|
-
typedef struct
|
103
|
-
typedef struct
|
104
|
-
typedef struct
|
105
|
-
typedef struct
|
106
|
-
typedef struct
|
107
|
-
typedef struct
|
108
|
-
typedef struct
|
109
|
-
typedef struct
|
110
|
-
typedef struct
|
111
|
-
typedef struct
|
112
|
-
typedef struct
|
113
|
-
typedef struct
|
114
|
-
typedef struct
|
115
|
-
typedef struct
|
116
|
-
typedef struct
|
117
|
-
typedef struct
|
118
|
-
typedef struct
|
119
|
-
typedef struct
|
120
|
-
typedef struct
|
121
|
-
typedef struct
|
122
|
-
typedef struct
|
123
|
-
typedef struct
|
124
|
-
typedef struct
|
125
|
-
typedef struct
|
126
|
-
typedef struct
|
127
|
-
typedef struct
|
128
|
-
typedef struct
|
129
|
-
typedef struct
|
130
|
-
typedef struct
|
131
|
-
typedef struct
|
132
|
-
typedef struct
|
133
|
-
typedef struct
|
134
|
-
typedef struct
|
135
|
-
typedef struct
|
136
|
-
typedef struct
|
137
|
-
typedef struct
|
138
|
-
typedef struct
|
139
|
-
typedef struct
|
140
|
-
typedef struct
|
141
|
-
typedef struct
|
142
|
-
typedef struct
|
143
|
-
typedef struct
|
144
|
-
typedef struct
|
145
|
-
typedef struct
|
146
|
-
typedef struct
|
147
|
-
typedef struct
|
148
|
-
typedef struct
|
149
|
-
typedef struct
|
150
|
-
typedef struct
|
151
|
-
typedef struct
|
152
|
-
typedef struct
|
153
|
-
typedef struct
|
154
|
-
typedef struct
|
155
|
-
typedef struct
|
156
|
-
typedef struct
|
157
|
-
typedef struct
|
158
|
-
typedef struct
|
159
|
-
typedef struct
|
160
|
-
typedef struct
|
161
|
-
typedef struct
|
162
|
-
typedef struct
|
163
|
-
typedef struct
|
164
|
-
typedef struct
|
165
|
-
typedef struct
|
166
|
-
typedef struct
|
167
|
-
typedef struct
|
168
|
-
typedef struct
|
169
|
-
typedef struct
|
170
|
-
typedef struct
|
171
|
-
typedef struct
|
172
|
-
typedef struct
|
173
|
-
typedef struct
|
174
|
-
typedef struct
|
175
|
-
typedef struct
|
176
|
-
typedef struct
|
177
|
-
typedef struct
|
178
|
-
typedef struct
|
179
|
-
typedef struct
|
180
|
-
typedef struct
|
181
|
-
typedef struct
|
182
|
-
typedef struct
|
183
|
-
typedef struct
|
184
|
-
typedef struct
|
185
|
-
typedef struct
|
186
|
-
typedef struct
|
187
|
-
typedef struct
|
188
|
-
typedef struct
|
189
|
-
typedef struct
|
190
|
-
typedef struct
|
191
|
-
typedef struct
|
192
|
-
typedef struct
|
193
|
-
typedef struct
|
194
|
-
typedef struct
|
195
|
-
typedef struct
|
196
|
-
typedef struct
|
197
|
-
typedef struct
|
198
|
-
typedef struct
|
199
|
-
typedef struct
|
200
|
-
typedef struct
|
201
|
-
typedef struct
|
202
|
-
typedef struct
|
203
|
-
typedef struct
|
204
|
-
typedef struct
|
205
|
-
typedef struct
|
206
|
-
typedef struct
|
207
|
-
typedef struct
|
208
|
-
typedef struct
|
209
|
-
typedef struct
|
210
|
-
typedef struct
|
211
|
-
typedef struct
|
212
|
-
typedef struct
|
213
|
-
typedef struct
|
214
|
-
typedef struct
|
215
|
-
typedef struct
|
216
|
-
typedef struct
|
217
|
-
typedef struct
|
218
|
-
typedef struct
|
219
|
-
typedef struct
|
220
|
-
typedef struct
|
221
|
-
typedef struct
|
222
|
-
typedef struct
|
223
|
-
typedef struct
|
224
|
-
typedef struct
|
225
|
-
typedef struct
|
226
|
-
typedef struct
|
227
|
-
typedef struct
|
228
|
-
typedef struct
|
229
|
-
typedef struct
|
230
|
-
typedef struct
|
231
|
-
typedef struct
|
232
|
-
typedef struct
|
233
|
-
typedef struct
|
234
|
-
typedef struct
|
235
|
-
typedef struct
|
236
|
-
typedef struct
|
237
|
-
typedef struct
|
238
|
-
typedef struct
|
239
|
-
typedef struct
|
240
|
-
typedef struct
|
241
|
-
typedef struct
|
242
|
-
typedef struct
|
243
|
-
typedef struct
|
244
|
-
typedef struct
|
245
|
-
typedef struct
|
246
|
-
typedef struct
|
247
|
-
typedef struct
|
248
|
-
typedef struct
|
249
|
-
typedef struct
|
18
|
+
typedef struct PgQuery__ParseResult PgQuery__ParseResult;
|
19
|
+
typedef struct PgQuery__ScanResult PgQuery__ScanResult;
|
20
|
+
typedef struct PgQuery__Node PgQuery__Node;
|
21
|
+
typedef struct PgQuery__Integer PgQuery__Integer;
|
22
|
+
typedef struct PgQuery__Float PgQuery__Float;
|
23
|
+
typedef struct PgQuery__String PgQuery__String;
|
24
|
+
typedef struct PgQuery__BitString PgQuery__BitString;
|
25
|
+
typedef struct PgQuery__Null PgQuery__Null;
|
26
|
+
typedef struct PgQuery__List PgQuery__List;
|
27
|
+
typedef struct PgQuery__OidList PgQuery__OidList;
|
28
|
+
typedef struct PgQuery__IntList PgQuery__IntList;
|
29
|
+
typedef struct PgQuery__Alias PgQuery__Alias;
|
30
|
+
typedef struct PgQuery__RangeVar PgQuery__RangeVar;
|
31
|
+
typedef struct PgQuery__TableFunc PgQuery__TableFunc;
|
32
|
+
typedef struct PgQuery__Expr PgQuery__Expr;
|
33
|
+
typedef struct PgQuery__Var PgQuery__Var;
|
34
|
+
typedef struct PgQuery__Param PgQuery__Param;
|
35
|
+
typedef struct PgQuery__Aggref PgQuery__Aggref;
|
36
|
+
typedef struct PgQuery__GroupingFunc PgQuery__GroupingFunc;
|
37
|
+
typedef struct PgQuery__WindowFunc PgQuery__WindowFunc;
|
38
|
+
typedef struct PgQuery__SubscriptingRef PgQuery__SubscriptingRef;
|
39
|
+
typedef struct PgQuery__FuncExpr PgQuery__FuncExpr;
|
40
|
+
typedef struct PgQuery__NamedArgExpr PgQuery__NamedArgExpr;
|
41
|
+
typedef struct PgQuery__OpExpr PgQuery__OpExpr;
|
42
|
+
typedef struct PgQuery__DistinctExpr PgQuery__DistinctExpr;
|
43
|
+
typedef struct PgQuery__NullIfExpr PgQuery__NullIfExpr;
|
44
|
+
typedef struct PgQuery__ScalarArrayOpExpr PgQuery__ScalarArrayOpExpr;
|
45
|
+
typedef struct PgQuery__BoolExpr PgQuery__BoolExpr;
|
46
|
+
typedef struct PgQuery__SubLink PgQuery__SubLink;
|
47
|
+
typedef struct PgQuery__SubPlan PgQuery__SubPlan;
|
48
|
+
typedef struct PgQuery__AlternativeSubPlan PgQuery__AlternativeSubPlan;
|
49
|
+
typedef struct PgQuery__FieldSelect PgQuery__FieldSelect;
|
50
|
+
typedef struct PgQuery__FieldStore PgQuery__FieldStore;
|
51
|
+
typedef struct PgQuery__RelabelType PgQuery__RelabelType;
|
52
|
+
typedef struct PgQuery__CoerceViaIO PgQuery__CoerceViaIO;
|
53
|
+
typedef struct PgQuery__ArrayCoerceExpr PgQuery__ArrayCoerceExpr;
|
54
|
+
typedef struct PgQuery__ConvertRowtypeExpr PgQuery__ConvertRowtypeExpr;
|
55
|
+
typedef struct PgQuery__CollateExpr PgQuery__CollateExpr;
|
56
|
+
typedef struct PgQuery__CaseExpr PgQuery__CaseExpr;
|
57
|
+
typedef struct PgQuery__CaseWhen PgQuery__CaseWhen;
|
58
|
+
typedef struct PgQuery__CaseTestExpr PgQuery__CaseTestExpr;
|
59
|
+
typedef struct PgQuery__ArrayExpr PgQuery__ArrayExpr;
|
60
|
+
typedef struct PgQuery__RowExpr PgQuery__RowExpr;
|
61
|
+
typedef struct PgQuery__RowCompareExpr PgQuery__RowCompareExpr;
|
62
|
+
typedef struct PgQuery__CoalesceExpr PgQuery__CoalesceExpr;
|
63
|
+
typedef struct PgQuery__MinMaxExpr PgQuery__MinMaxExpr;
|
64
|
+
typedef struct PgQuery__SQLValueFunction PgQuery__SQLValueFunction;
|
65
|
+
typedef struct PgQuery__XmlExpr PgQuery__XmlExpr;
|
66
|
+
typedef struct PgQuery__NullTest PgQuery__NullTest;
|
67
|
+
typedef struct PgQuery__BooleanTest PgQuery__BooleanTest;
|
68
|
+
typedef struct PgQuery__CoerceToDomain PgQuery__CoerceToDomain;
|
69
|
+
typedef struct PgQuery__CoerceToDomainValue PgQuery__CoerceToDomainValue;
|
70
|
+
typedef struct PgQuery__SetToDefault PgQuery__SetToDefault;
|
71
|
+
typedef struct PgQuery__CurrentOfExpr PgQuery__CurrentOfExpr;
|
72
|
+
typedef struct PgQuery__NextValueExpr PgQuery__NextValueExpr;
|
73
|
+
typedef struct PgQuery__InferenceElem PgQuery__InferenceElem;
|
74
|
+
typedef struct PgQuery__TargetEntry PgQuery__TargetEntry;
|
75
|
+
typedef struct PgQuery__RangeTblRef PgQuery__RangeTblRef;
|
76
|
+
typedef struct PgQuery__JoinExpr PgQuery__JoinExpr;
|
77
|
+
typedef struct PgQuery__FromExpr PgQuery__FromExpr;
|
78
|
+
typedef struct PgQuery__OnConflictExpr PgQuery__OnConflictExpr;
|
79
|
+
typedef struct PgQuery__IntoClause PgQuery__IntoClause;
|
80
|
+
typedef struct PgQuery__RawStmt PgQuery__RawStmt;
|
81
|
+
typedef struct PgQuery__Query PgQuery__Query;
|
82
|
+
typedef struct PgQuery__InsertStmt PgQuery__InsertStmt;
|
83
|
+
typedef struct PgQuery__DeleteStmt PgQuery__DeleteStmt;
|
84
|
+
typedef struct PgQuery__UpdateStmt PgQuery__UpdateStmt;
|
85
|
+
typedef struct PgQuery__SelectStmt PgQuery__SelectStmt;
|
86
|
+
typedef struct PgQuery__AlterTableStmt PgQuery__AlterTableStmt;
|
87
|
+
typedef struct PgQuery__AlterTableCmd PgQuery__AlterTableCmd;
|
88
|
+
typedef struct PgQuery__AlterDomainStmt PgQuery__AlterDomainStmt;
|
89
|
+
typedef struct PgQuery__SetOperationStmt PgQuery__SetOperationStmt;
|
90
|
+
typedef struct PgQuery__GrantStmt PgQuery__GrantStmt;
|
91
|
+
typedef struct PgQuery__GrantRoleStmt PgQuery__GrantRoleStmt;
|
92
|
+
typedef struct PgQuery__AlterDefaultPrivilegesStmt PgQuery__AlterDefaultPrivilegesStmt;
|
93
|
+
typedef struct PgQuery__ClosePortalStmt PgQuery__ClosePortalStmt;
|
94
|
+
typedef struct PgQuery__ClusterStmt PgQuery__ClusterStmt;
|
95
|
+
typedef struct PgQuery__CopyStmt PgQuery__CopyStmt;
|
96
|
+
typedef struct PgQuery__CreateStmt PgQuery__CreateStmt;
|
97
|
+
typedef struct PgQuery__DefineStmt PgQuery__DefineStmt;
|
98
|
+
typedef struct PgQuery__DropStmt PgQuery__DropStmt;
|
99
|
+
typedef struct PgQuery__TruncateStmt PgQuery__TruncateStmt;
|
100
|
+
typedef struct PgQuery__CommentStmt PgQuery__CommentStmt;
|
101
|
+
typedef struct PgQuery__FetchStmt PgQuery__FetchStmt;
|
102
|
+
typedef struct PgQuery__IndexStmt PgQuery__IndexStmt;
|
103
|
+
typedef struct PgQuery__CreateFunctionStmt PgQuery__CreateFunctionStmt;
|
104
|
+
typedef struct PgQuery__AlterFunctionStmt PgQuery__AlterFunctionStmt;
|
105
|
+
typedef struct PgQuery__DoStmt PgQuery__DoStmt;
|
106
|
+
typedef struct PgQuery__RenameStmt PgQuery__RenameStmt;
|
107
|
+
typedef struct PgQuery__RuleStmt PgQuery__RuleStmt;
|
108
|
+
typedef struct PgQuery__NotifyStmt PgQuery__NotifyStmt;
|
109
|
+
typedef struct PgQuery__ListenStmt PgQuery__ListenStmt;
|
110
|
+
typedef struct PgQuery__UnlistenStmt PgQuery__UnlistenStmt;
|
111
|
+
typedef struct PgQuery__TransactionStmt PgQuery__TransactionStmt;
|
112
|
+
typedef struct PgQuery__ViewStmt PgQuery__ViewStmt;
|
113
|
+
typedef struct PgQuery__LoadStmt PgQuery__LoadStmt;
|
114
|
+
typedef struct PgQuery__CreateDomainStmt PgQuery__CreateDomainStmt;
|
115
|
+
typedef struct PgQuery__CreatedbStmt PgQuery__CreatedbStmt;
|
116
|
+
typedef struct PgQuery__DropdbStmt PgQuery__DropdbStmt;
|
117
|
+
typedef struct PgQuery__VacuumStmt PgQuery__VacuumStmt;
|
118
|
+
typedef struct PgQuery__ExplainStmt PgQuery__ExplainStmt;
|
119
|
+
typedef struct PgQuery__CreateTableAsStmt PgQuery__CreateTableAsStmt;
|
120
|
+
typedef struct PgQuery__CreateSeqStmt PgQuery__CreateSeqStmt;
|
121
|
+
typedef struct PgQuery__AlterSeqStmt PgQuery__AlterSeqStmt;
|
122
|
+
typedef struct PgQuery__VariableSetStmt PgQuery__VariableSetStmt;
|
123
|
+
typedef struct PgQuery__VariableShowStmt PgQuery__VariableShowStmt;
|
124
|
+
typedef struct PgQuery__DiscardStmt PgQuery__DiscardStmt;
|
125
|
+
typedef struct PgQuery__CreateTrigStmt PgQuery__CreateTrigStmt;
|
126
|
+
typedef struct PgQuery__CreatePLangStmt PgQuery__CreatePLangStmt;
|
127
|
+
typedef struct PgQuery__CreateRoleStmt PgQuery__CreateRoleStmt;
|
128
|
+
typedef struct PgQuery__AlterRoleStmt PgQuery__AlterRoleStmt;
|
129
|
+
typedef struct PgQuery__DropRoleStmt PgQuery__DropRoleStmt;
|
130
|
+
typedef struct PgQuery__LockStmt PgQuery__LockStmt;
|
131
|
+
typedef struct PgQuery__ConstraintsSetStmt PgQuery__ConstraintsSetStmt;
|
132
|
+
typedef struct PgQuery__ReindexStmt PgQuery__ReindexStmt;
|
133
|
+
typedef struct PgQuery__CheckPointStmt PgQuery__CheckPointStmt;
|
134
|
+
typedef struct PgQuery__CreateSchemaStmt PgQuery__CreateSchemaStmt;
|
135
|
+
typedef struct PgQuery__AlterDatabaseStmt PgQuery__AlterDatabaseStmt;
|
136
|
+
typedef struct PgQuery__AlterDatabaseSetStmt PgQuery__AlterDatabaseSetStmt;
|
137
|
+
typedef struct PgQuery__AlterRoleSetStmt PgQuery__AlterRoleSetStmt;
|
138
|
+
typedef struct PgQuery__CreateConversionStmt PgQuery__CreateConversionStmt;
|
139
|
+
typedef struct PgQuery__CreateCastStmt PgQuery__CreateCastStmt;
|
140
|
+
typedef struct PgQuery__CreateOpClassStmt PgQuery__CreateOpClassStmt;
|
141
|
+
typedef struct PgQuery__CreateOpFamilyStmt PgQuery__CreateOpFamilyStmt;
|
142
|
+
typedef struct PgQuery__AlterOpFamilyStmt PgQuery__AlterOpFamilyStmt;
|
143
|
+
typedef struct PgQuery__PrepareStmt PgQuery__PrepareStmt;
|
144
|
+
typedef struct PgQuery__ExecuteStmt PgQuery__ExecuteStmt;
|
145
|
+
typedef struct PgQuery__DeallocateStmt PgQuery__DeallocateStmt;
|
146
|
+
typedef struct PgQuery__DeclareCursorStmt PgQuery__DeclareCursorStmt;
|
147
|
+
typedef struct PgQuery__CreateTableSpaceStmt PgQuery__CreateTableSpaceStmt;
|
148
|
+
typedef struct PgQuery__DropTableSpaceStmt PgQuery__DropTableSpaceStmt;
|
149
|
+
typedef struct PgQuery__AlterObjectDependsStmt PgQuery__AlterObjectDependsStmt;
|
150
|
+
typedef struct PgQuery__AlterObjectSchemaStmt PgQuery__AlterObjectSchemaStmt;
|
151
|
+
typedef struct PgQuery__AlterOwnerStmt PgQuery__AlterOwnerStmt;
|
152
|
+
typedef struct PgQuery__AlterOperatorStmt PgQuery__AlterOperatorStmt;
|
153
|
+
typedef struct PgQuery__AlterTypeStmt PgQuery__AlterTypeStmt;
|
154
|
+
typedef struct PgQuery__DropOwnedStmt PgQuery__DropOwnedStmt;
|
155
|
+
typedef struct PgQuery__ReassignOwnedStmt PgQuery__ReassignOwnedStmt;
|
156
|
+
typedef struct PgQuery__CompositeTypeStmt PgQuery__CompositeTypeStmt;
|
157
|
+
typedef struct PgQuery__CreateEnumStmt PgQuery__CreateEnumStmt;
|
158
|
+
typedef struct PgQuery__CreateRangeStmt PgQuery__CreateRangeStmt;
|
159
|
+
typedef struct PgQuery__AlterEnumStmt PgQuery__AlterEnumStmt;
|
160
|
+
typedef struct PgQuery__AlterTSDictionaryStmt PgQuery__AlterTSDictionaryStmt;
|
161
|
+
typedef struct PgQuery__AlterTSConfigurationStmt PgQuery__AlterTSConfigurationStmt;
|
162
|
+
typedef struct PgQuery__CreateFdwStmt PgQuery__CreateFdwStmt;
|
163
|
+
typedef struct PgQuery__AlterFdwStmt PgQuery__AlterFdwStmt;
|
164
|
+
typedef struct PgQuery__CreateForeignServerStmt PgQuery__CreateForeignServerStmt;
|
165
|
+
typedef struct PgQuery__AlterForeignServerStmt PgQuery__AlterForeignServerStmt;
|
166
|
+
typedef struct PgQuery__CreateUserMappingStmt PgQuery__CreateUserMappingStmt;
|
167
|
+
typedef struct PgQuery__AlterUserMappingStmt PgQuery__AlterUserMappingStmt;
|
168
|
+
typedef struct PgQuery__DropUserMappingStmt PgQuery__DropUserMappingStmt;
|
169
|
+
typedef struct PgQuery__AlterTableSpaceOptionsStmt PgQuery__AlterTableSpaceOptionsStmt;
|
170
|
+
typedef struct PgQuery__AlterTableMoveAllStmt PgQuery__AlterTableMoveAllStmt;
|
171
|
+
typedef struct PgQuery__SecLabelStmt PgQuery__SecLabelStmt;
|
172
|
+
typedef struct PgQuery__CreateForeignTableStmt PgQuery__CreateForeignTableStmt;
|
173
|
+
typedef struct PgQuery__ImportForeignSchemaStmt PgQuery__ImportForeignSchemaStmt;
|
174
|
+
typedef struct PgQuery__CreateExtensionStmt PgQuery__CreateExtensionStmt;
|
175
|
+
typedef struct PgQuery__AlterExtensionStmt PgQuery__AlterExtensionStmt;
|
176
|
+
typedef struct PgQuery__AlterExtensionContentsStmt PgQuery__AlterExtensionContentsStmt;
|
177
|
+
typedef struct PgQuery__CreateEventTrigStmt PgQuery__CreateEventTrigStmt;
|
178
|
+
typedef struct PgQuery__AlterEventTrigStmt PgQuery__AlterEventTrigStmt;
|
179
|
+
typedef struct PgQuery__RefreshMatViewStmt PgQuery__RefreshMatViewStmt;
|
180
|
+
typedef struct PgQuery__ReplicaIdentityStmt PgQuery__ReplicaIdentityStmt;
|
181
|
+
typedef struct PgQuery__AlterSystemStmt PgQuery__AlterSystemStmt;
|
182
|
+
typedef struct PgQuery__CreatePolicyStmt PgQuery__CreatePolicyStmt;
|
183
|
+
typedef struct PgQuery__AlterPolicyStmt PgQuery__AlterPolicyStmt;
|
184
|
+
typedef struct PgQuery__CreateTransformStmt PgQuery__CreateTransformStmt;
|
185
|
+
typedef struct PgQuery__CreateAmStmt PgQuery__CreateAmStmt;
|
186
|
+
typedef struct PgQuery__CreatePublicationStmt PgQuery__CreatePublicationStmt;
|
187
|
+
typedef struct PgQuery__AlterPublicationStmt PgQuery__AlterPublicationStmt;
|
188
|
+
typedef struct PgQuery__CreateSubscriptionStmt PgQuery__CreateSubscriptionStmt;
|
189
|
+
typedef struct PgQuery__AlterSubscriptionStmt PgQuery__AlterSubscriptionStmt;
|
190
|
+
typedef struct PgQuery__DropSubscriptionStmt PgQuery__DropSubscriptionStmt;
|
191
|
+
typedef struct PgQuery__CreateStatsStmt PgQuery__CreateStatsStmt;
|
192
|
+
typedef struct PgQuery__AlterCollationStmt PgQuery__AlterCollationStmt;
|
193
|
+
typedef struct PgQuery__CallStmt PgQuery__CallStmt;
|
194
|
+
typedef struct PgQuery__AlterStatsStmt PgQuery__AlterStatsStmt;
|
195
|
+
typedef struct PgQuery__AExpr PgQuery__AExpr;
|
196
|
+
typedef struct PgQuery__ColumnRef PgQuery__ColumnRef;
|
197
|
+
typedef struct PgQuery__ParamRef PgQuery__ParamRef;
|
198
|
+
typedef struct PgQuery__AConst PgQuery__AConst;
|
199
|
+
typedef struct PgQuery__FuncCall PgQuery__FuncCall;
|
200
|
+
typedef struct PgQuery__AStar PgQuery__AStar;
|
201
|
+
typedef struct PgQuery__AIndices PgQuery__AIndices;
|
202
|
+
typedef struct PgQuery__AIndirection PgQuery__AIndirection;
|
203
|
+
typedef struct PgQuery__AArrayExpr PgQuery__AArrayExpr;
|
204
|
+
typedef struct PgQuery__ResTarget PgQuery__ResTarget;
|
205
|
+
typedef struct PgQuery__MultiAssignRef PgQuery__MultiAssignRef;
|
206
|
+
typedef struct PgQuery__TypeCast PgQuery__TypeCast;
|
207
|
+
typedef struct PgQuery__CollateClause PgQuery__CollateClause;
|
208
|
+
typedef struct PgQuery__SortBy PgQuery__SortBy;
|
209
|
+
typedef struct PgQuery__WindowDef PgQuery__WindowDef;
|
210
|
+
typedef struct PgQuery__RangeSubselect PgQuery__RangeSubselect;
|
211
|
+
typedef struct PgQuery__RangeFunction PgQuery__RangeFunction;
|
212
|
+
typedef struct PgQuery__RangeTableSample PgQuery__RangeTableSample;
|
213
|
+
typedef struct PgQuery__RangeTableFunc PgQuery__RangeTableFunc;
|
214
|
+
typedef struct PgQuery__RangeTableFuncCol PgQuery__RangeTableFuncCol;
|
215
|
+
typedef struct PgQuery__TypeName PgQuery__TypeName;
|
216
|
+
typedef struct PgQuery__ColumnDef PgQuery__ColumnDef;
|
217
|
+
typedef struct PgQuery__IndexElem PgQuery__IndexElem;
|
218
|
+
typedef struct PgQuery__Constraint PgQuery__Constraint;
|
219
|
+
typedef struct PgQuery__DefElem PgQuery__DefElem;
|
220
|
+
typedef struct PgQuery__RangeTblEntry PgQuery__RangeTblEntry;
|
221
|
+
typedef struct PgQuery__RangeTblFunction PgQuery__RangeTblFunction;
|
222
|
+
typedef struct PgQuery__TableSampleClause PgQuery__TableSampleClause;
|
223
|
+
typedef struct PgQuery__WithCheckOption PgQuery__WithCheckOption;
|
224
|
+
typedef struct PgQuery__SortGroupClause PgQuery__SortGroupClause;
|
225
|
+
typedef struct PgQuery__GroupingSet PgQuery__GroupingSet;
|
226
|
+
typedef struct PgQuery__WindowClause PgQuery__WindowClause;
|
227
|
+
typedef struct PgQuery__ObjectWithArgs PgQuery__ObjectWithArgs;
|
228
|
+
typedef struct PgQuery__AccessPriv PgQuery__AccessPriv;
|
229
|
+
typedef struct PgQuery__CreateOpClassItem PgQuery__CreateOpClassItem;
|
230
|
+
typedef struct PgQuery__TableLikeClause PgQuery__TableLikeClause;
|
231
|
+
typedef struct PgQuery__FunctionParameter PgQuery__FunctionParameter;
|
232
|
+
typedef struct PgQuery__LockingClause PgQuery__LockingClause;
|
233
|
+
typedef struct PgQuery__RowMarkClause PgQuery__RowMarkClause;
|
234
|
+
typedef struct PgQuery__XmlSerialize PgQuery__XmlSerialize;
|
235
|
+
typedef struct PgQuery__WithClause PgQuery__WithClause;
|
236
|
+
typedef struct PgQuery__InferClause PgQuery__InferClause;
|
237
|
+
typedef struct PgQuery__OnConflictClause PgQuery__OnConflictClause;
|
238
|
+
typedef struct PgQuery__CommonTableExpr PgQuery__CommonTableExpr;
|
239
|
+
typedef struct PgQuery__RoleSpec PgQuery__RoleSpec;
|
240
|
+
typedef struct PgQuery__TriggerTransition PgQuery__TriggerTransition;
|
241
|
+
typedef struct PgQuery__PartitionElem PgQuery__PartitionElem;
|
242
|
+
typedef struct PgQuery__PartitionSpec PgQuery__PartitionSpec;
|
243
|
+
typedef struct PgQuery__PartitionBoundSpec PgQuery__PartitionBoundSpec;
|
244
|
+
typedef struct PgQuery__PartitionRangeDatum PgQuery__PartitionRangeDatum;
|
245
|
+
typedef struct PgQuery__PartitionCmd PgQuery__PartitionCmd;
|
246
|
+
typedef struct PgQuery__VacuumRelation PgQuery__VacuumRelation;
|
247
|
+
typedef struct PgQuery__InlineCodeBlock PgQuery__InlineCodeBlock;
|
248
|
+
typedef struct PgQuery__CallContext PgQuery__CallContext;
|
249
|
+
typedef struct PgQuery__ScanToken PgQuery__ScanToken;
|
250
250
|
|
251
251
|
|
252
252
|
/* --- enums --- */
|
@@ -929,6 +929,10 @@ typedef enum _PgQuery__Token {
|
|
929
929
|
* "["
|
930
930
|
*/
|
931
931
|
PG_QUERY__TOKEN__ASCII_91 = 91,
|
932
|
+
/*
|
933
|
+
* "\"
|
934
|
+
*/
|
935
|
+
PG_QUERY__TOKEN__ASCII_92 = 92,
|
932
936
|
/*
|
933
937
|
* "]"
|
934
938
|
*/
|
@@ -1419,7 +1423,7 @@ typedef enum _PgQuery__Token {
|
|
1419
1423
|
|
1420
1424
|
/* --- messages --- */
|
1421
1425
|
|
1422
|
-
struct
|
1426
|
+
struct PgQuery__ParseResult
|
1423
1427
|
{
|
1424
1428
|
ProtobufCMessage base;
|
1425
1429
|
int32_t version;
|
@@ -1431,7 +1435,7 @@ struct _PgQuery__ParseResult
|
|
1431
1435
|
, 0, 0,NULL }
|
1432
1436
|
|
1433
1437
|
|
1434
|
-
struct
|
1438
|
+
struct PgQuery__ScanResult
|
1435
1439
|
{
|
1436
1440
|
ProtobufCMessage base;
|
1437
1441
|
int32_t version;
|
@@ -1673,10 +1677,10 @@ typedef enum {
|
|
1673
1677
|
PG_QUERY__NODE__NODE_LIST = 226,
|
1674
1678
|
PG_QUERY__NODE__NODE_INT_LIST = 227,
|
1675
1679
|
PG_QUERY__NODE__NODE_OID_LIST = 228
|
1676
|
-
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(
|
1680
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__NODE__NODE__CASE)
|
1677
1681
|
} PgQuery__Node__NodeCase;
|
1678
1682
|
|
1679
|
-
struct
|
1683
|
+
struct PgQuery__Node
|
1680
1684
|
{
|
1681
1685
|
ProtobufCMessage base;
|
1682
1686
|
PgQuery__Node__NodeCase node_case;
|
@@ -1916,7 +1920,7 @@ struct _PgQuery__Node
|
|
1916
1920
|
, PG_QUERY__NODE__NODE__NOT_SET, {0} }
|
1917
1921
|
|
1918
1922
|
|
1919
|
-
struct
|
1923
|
+
struct PgQuery__Integer
|
1920
1924
|
{
|
1921
1925
|
ProtobufCMessage base;
|
1922
1926
|
/*
|
@@ -1929,7 +1933,7 @@ struct _PgQuery__Integer
|
|
1929
1933
|
, 0 }
|
1930
1934
|
|
1931
1935
|
|
1932
|
-
struct
|
1936
|
+
struct PgQuery__Float
|
1933
1937
|
{
|
1934
1938
|
ProtobufCMessage base;
|
1935
1939
|
/*
|
@@ -1942,7 +1946,7 @@ struct _PgQuery__Float
|
|
1942
1946
|
, (char *)protobuf_c_empty_string }
|
1943
1947
|
|
1944
1948
|
|
1945
|
-
struct
|
1949
|
+
struct PgQuery__String
|
1946
1950
|
{
|
1947
1951
|
ProtobufCMessage base;
|
1948
1952
|
/*
|
@@ -1955,7 +1959,7 @@ struct _PgQuery__String
|
|
1955
1959
|
, (char *)protobuf_c_empty_string }
|
1956
1960
|
|
1957
1961
|
|
1958
|
-
struct
|
1962
|
+
struct PgQuery__BitString
|
1959
1963
|
{
|
1960
1964
|
ProtobufCMessage base;
|
1961
1965
|
/*
|
@@ -1968,7 +1972,7 @@ struct _PgQuery__BitString
|
|
1968
1972
|
, (char *)protobuf_c_empty_string }
|
1969
1973
|
|
1970
1974
|
|
1971
|
-
struct
|
1975
|
+
struct PgQuery__Null
|
1972
1976
|
{
|
1973
1977
|
ProtobufCMessage base;
|
1974
1978
|
};
|
@@ -1977,7 +1981,7 @@ struct _PgQuery__Null
|
|
1977
1981
|
}
|
1978
1982
|
|
1979
1983
|
|
1980
|
-
struct
|
1984
|
+
struct PgQuery__List
|
1981
1985
|
{
|
1982
1986
|
ProtobufCMessage base;
|
1983
1987
|
size_t n_items;
|
@@ -1988,7 +1992,7 @@ struct _PgQuery__List
|
|
1988
1992
|
, 0,NULL }
|
1989
1993
|
|
1990
1994
|
|
1991
|
-
struct
|
1995
|
+
struct PgQuery__OidList
|
1992
1996
|
{
|
1993
1997
|
ProtobufCMessage base;
|
1994
1998
|
size_t n_items;
|
@@ -1999,7 +2003,7 @@ struct _PgQuery__OidList
|
|
1999
2003
|
, 0,NULL }
|
2000
2004
|
|
2001
2005
|
|
2002
|
-
struct
|
2006
|
+
struct PgQuery__IntList
|
2003
2007
|
{
|
2004
2008
|
ProtobufCMessage base;
|
2005
2009
|
size_t n_items;
|
@@ -2010,7 +2014,7 @@ struct _PgQuery__IntList
|
|
2010
2014
|
, 0,NULL }
|
2011
2015
|
|
2012
2016
|
|
2013
|
-
struct
|
2017
|
+
struct PgQuery__Alias
|
2014
2018
|
{
|
2015
2019
|
ProtobufCMessage base;
|
2016
2020
|
char *aliasname;
|
@@ -2022,7 +2026,7 @@ struct _PgQuery__Alias
|
|
2022
2026
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
2023
2027
|
|
2024
2028
|
|
2025
|
-
struct
|
2029
|
+
struct PgQuery__RangeVar
|
2026
2030
|
{
|
2027
2031
|
ProtobufCMessage base;
|
2028
2032
|
char *catalogname;
|
@@ -2038,7 +2042,7 @@ struct _PgQuery__RangeVar
|
|
2038
2042
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, 0 }
|
2039
2043
|
|
2040
2044
|
|
2041
|
-
struct
|
2045
|
+
struct PgQuery__TableFunc
|
2042
2046
|
{
|
2043
2047
|
ProtobufCMessage base;
|
2044
2048
|
size_t n_ns_uris;
|
@@ -2069,7 +2073,7 @@ struct _PgQuery__TableFunc
|
|
2069
2073
|
, 0,NULL, 0,NULL, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
|
2070
2074
|
|
2071
2075
|
|
2072
|
-
struct
|
2076
|
+
struct PgQuery__Expr
|
2073
2077
|
{
|
2074
2078
|
ProtobufCMessage base;
|
2075
2079
|
};
|
@@ -2078,7 +2082,7 @@ struct _PgQuery__Expr
|
|
2078
2082
|
}
|
2079
2083
|
|
2080
2084
|
|
2081
|
-
struct
|
2085
|
+
struct PgQuery__Var
|
2082
2086
|
{
|
2083
2087
|
ProtobufCMessage base;
|
2084
2088
|
PgQuery__Node *xpr;
|
@@ -2097,7 +2101,7 @@ struct _PgQuery__Var
|
|
2097
2101
|
, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
|
2098
2102
|
|
2099
2103
|
|
2100
|
-
struct
|
2104
|
+
struct PgQuery__Param
|
2101
2105
|
{
|
2102
2106
|
ProtobufCMessage base;
|
2103
2107
|
PgQuery__Node *xpr;
|
@@ -2113,7 +2117,7 @@ struct _PgQuery__Param
|
|
2113
2117
|
, NULL, PG_QUERY__PARAM_KIND__PARAM_KIND_UNDEFINED, 0, 0, 0, 0, 0 }
|
2114
2118
|
|
2115
2119
|
|
2116
|
-
struct
|
2120
|
+
struct PgQuery__Aggref
|
2117
2121
|
{
|
2118
2122
|
ProtobufCMessage base;
|
2119
2123
|
PgQuery__Node *xpr;
|
@@ -2145,7 +2149,7 @@ struct _PgQuery__Aggref
|
|
2145
2149
|
, NULL, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, NULL, 0, 0, (char *)protobuf_c_empty_string, 0, PG_QUERY__AGG_SPLIT__AGG_SPLIT_UNDEFINED, 0 }
|
2146
2150
|
|
2147
2151
|
|
2148
|
-
struct
|
2152
|
+
struct PgQuery__GroupingFunc
|
2149
2153
|
{
|
2150
2154
|
ProtobufCMessage base;
|
2151
2155
|
PgQuery__Node *xpr;
|
@@ -2163,7 +2167,7 @@ struct _PgQuery__GroupingFunc
|
|
2163
2167
|
, NULL, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
|
2164
2168
|
|
2165
2169
|
|
2166
|
-
struct
|
2170
|
+
struct PgQuery__WindowFunc
|
2167
2171
|
{
|
2168
2172
|
ProtobufCMessage base;
|
2169
2173
|
PgQuery__Node *xpr;
|
@@ -2184,7 +2188,7 @@ struct _PgQuery__WindowFunc
|
|
2184
2188
|
, NULL, 0, 0, 0, 0, 0,NULL, NULL, 0, 0, 0, 0 }
|
2185
2189
|
|
2186
2190
|
|
2187
|
-
struct
|
2191
|
+
struct PgQuery__SubscriptingRef
|
2188
2192
|
{
|
2189
2193
|
ProtobufCMessage base;
|
2190
2194
|
PgQuery__Node *xpr;
|
@@ -2204,7 +2208,7 @@ struct _PgQuery__SubscriptingRef
|
|
2204
2208
|
, NULL, 0, 0, 0, 0, 0,NULL, 0,NULL, NULL, NULL }
|
2205
2209
|
|
2206
2210
|
|
2207
|
-
struct
|
2211
|
+
struct PgQuery__FuncExpr
|
2208
2212
|
{
|
2209
2213
|
ProtobufCMessage base;
|
2210
2214
|
PgQuery__Node *xpr;
|
@@ -2224,7 +2228,7 @@ struct _PgQuery__FuncExpr
|
|
2224
2228
|
, NULL, 0, 0, 0, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0, 0, 0,NULL, 0 }
|
2225
2229
|
|
2226
2230
|
|
2227
|
-
struct
|
2231
|
+
struct PgQuery__NamedArgExpr
|
2228
2232
|
{
|
2229
2233
|
ProtobufCMessage base;
|
2230
2234
|
PgQuery__Node *xpr;
|
@@ -2238,7 +2242,7 @@ struct _PgQuery__NamedArgExpr
|
|
2238
2242
|
, NULL, NULL, (char *)protobuf_c_empty_string, 0, 0 }
|
2239
2243
|
|
2240
2244
|
|
2241
|
-
struct
|
2245
|
+
struct PgQuery__OpExpr
|
2242
2246
|
{
|
2243
2247
|
ProtobufCMessage base;
|
2244
2248
|
PgQuery__Node *xpr;
|
@@ -2257,7 +2261,7 @@ struct _PgQuery__OpExpr
|
|
2257
2261
|
, NULL, 0, 0, 0, 0, 0, 0, 0,NULL, 0 }
|
2258
2262
|
|
2259
2263
|
|
2260
|
-
struct
|
2264
|
+
struct PgQuery__DistinctExpr
|
2261
2265
|
{
|
2262
2266
|
ProtobufCMessage base;
|
2263
2267
|
PgQuery__Node *xpr;
|
@@ -2276,7 +2280,7 @@ struct _PgQuery__DistinctExpr
|
|
2276
2280
|
, NULL, 0, 0, 0, 0, 0, 0, 0,NULL, 0 }
|
2277
2281
|
|
2278
2282
|
|
2279
|
-
struct
|
2283
|
+
struct PgQuery__NullIfExpr
|
2280
2284
|
{
|
2281
2285
|
ProtobufCMessage base;
|
2282
2286
|
PgQuery__Node *xpr;
|
@@ -2295,7 +2299,7 @@ struct _PgQuery__NullIfExpr
|
|
2295
2299
|
, NULL, 0, 0, 0, 0, 0, 0, 0,NULL, 0 }
|
2296
2300
|
|
2297
2301
|
|
2298
|
-
struct
|
2302
|
+
struct PgQuery__ScalarArrayOpExpr
|
2299
2303
|
{
|
2300
2304
|
ProtobufCMessage base;
|
2301
2305
|
PgQuery__Node *xpr;
|
@@ -2312,7 +2316,7 @@ struct _PgQuery__ScalarArrayOpExpr
|
|
2312
2316
|
, NULL, 0, 0, 0, 0, 0,NULL, 0 }
|
2313
2317
|
|
2314
2318
|
|
2315
|
-
struct
|
2319
|
+
struct PgQuery__BoolExpr
|
2316
2320
|
{
|
2317
2321
|
ProtobufCMessage base;
|
2318
2322
|
PgQuery__Node *xpr;
|
@@ -2326,7 +2330,7 @@ struct _PgQuery__BoolExpr
|
|
2326
2330
|
, NULL, PG_QUERY__BOOL_EXPR_TYPE__BOOL_EXPR_TYPE_UNDEFINED, 0,NULL, 0 }
|
2327
2331
|
|
2328
2332
|
|
2329
|
-
struct
|
2333
|
+
struct PgQuery__SubLink
|
2330
2334
|
{
|
2331
2335
|
ProtobufCMessage base;
|
2332
2336
|
PgQuery__Node *xpr;
|
@@ -2343,7 +2347,7 @@ struct _PgQuery__SubLink
|
|
2343
2347
|
, NULL, PG_QUERY__SUB_LINK_TYPE__SUB_LINK_TYPE_UNDEFINED, 0, NULL, 0,NULL, NULL, 0 }
|
2344
2348
|
|
2345
2349
|
|
2346
|
-
struct
|
2350
|
+
struct PgQuery__SubPlan
|
2347
2351
|
{
|
2348
2352
|
ProtobufCMessage base;
|
2349
2353
|
PgQuery__Node *xpr;
|
@@ -2373,7 +2377,7 @@ struct _PgQuery__SubPlan
|
|
2373
2377
|
, NULL, PG_QUERY__SUB_LINK_TYPE__SUB_LINK_TYPE_UNDEFINED, NULL, 0,NULL, 0, (char *)protobuf_c_empty_string, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
|
2374
2378
|
|
2375
2379
|
|
2376
|
-
struct
|
2380
|
+
struct PgQuery__AlternativeSubPlan
|
2377
2381
|
{
|
2378
2382
|
ProtobufCMessage base;
|
2379
2383
|
PgQuery__Node *xpr;
|
@@ -2385,7 +2389,7 @@ struct _PgQuery__AlternativeSubPlan
|
|
2385
2389
|
, NULL, 0,NULL }
|
2386
2390
|
|
2387
2391
|
|
2388
|
-
struct
|
2392
|
+
struct PgQuery__FieldSelect
|
2389
2393
|
{
|
2390
2394
|
ProtobufCMessage base;
|
2391
2395
|
PgQuery__Node *xpr;
|
@@ -2400,7 +2404,7 @@ struct _PgQuery__FieldSelect
|
|
2400
2404
|
, NULL, NULL, 0, 0, 0, 0 }
|
2401
2405
|
|
2402
2406
|
|
2403
|
-
struct
|
2407
|
+
struct PgQuery__FieldStore
|
2404
2408
|
{
|
2405
2409
|
ProtobufCMessage base;
|
2406
2410
|
PgQuery__Node *xpr;
|
@@ -2416,7 +2420,7 @@ struct _PgQuery__FieldStore
|
|
2416
2420
|
, NULL, NULL, 0,NULL, 0,NULL, 0 }
|
2417
2421
|
|
2418
2422
|
|
2419
|
-
struct
|
2423
|
+
struct PgQuery__RelabelType
|
2420
2424
|
{
|
2421
2425
|
ProtobufCMessage base;
|
2422
2426
|
PgQuery__Node *xpr;
|
@@ -2432,7 +2436,7 @@ struct _PgQuery__RelabelType
|
|
2432
2436
|
, NULL, NULL, 0, 0, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0 }
|
2433
2437
|
|
2434
2438
|
|
2435
|
-
struct
|
2439
|
+
struct PgQuery__CoerceViaIO
|
2436
2440
|
{
|
2437
2441
|
ProtobufCMessage base;
|
2438
2442
|
PgQuery__Node *xpr;
|
@@ -2447,7 +2451,7 @@ struct _PgQuery__CoerceViaIO
|
|
2447
2451
|
, NULL, NULL, 0, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0 }
|
2448
2452
|
|
2449
2453
|
|
2450
|
-
struct
|
2454
|
+
struct PgQuery__ArrayCoerceExpr
|
2451
2455
|
{
|
2452
2456
|
ProtobufCMessage base;
|
2453
2457
|
PgQuery__Node *xpr;
|
@@ -2464,7 +2468,7 @@ struct _PgQuery__ArrayCoerceExpr
|
|
2464
2468
|
, NULL, NULL, NULL, 0, 0, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0 }
|
2465
2469
|
|
2466
2470
|
|
2467
|
-
struct
|
2471
|
+
struct PgQuery__ConvertRowtypeExpr
|
2468
2472
|
{
|
2469
2473
|
ProtobufCMessage base;
|
2470
2474
|
PgQuery__Node *xpr;
|
@@ -2478,7 +2482,7 @@ struct _PgQuery__ConvertRowtypeExpr
|
|
2478
2482
|
, NULL, NULL, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0 }
|
2479
2483
|
|
2480
2484
|
|
2481
|
-
struct
|
2485
|
+
struct PgQuery__CollateExpr
|
2482
2486
|
{
|
2483
2487
|
ProtobufCMessage base;
|
2484
2488
|
PgQuery__Node *xpr;
|
@@ -2491,7 +2495,7 @@ struct _PgQuery__CollateExpr
|
|
2491
2495
|
, NULL, NULL, 0, 0 }
|
2492
2496
|
|
2493
2497
|
|
2494
|
-
struct
|
2498
|
+
struct PgQuery__CaseExpr
|
2495
2499
|
{
|
2496
2500
|
ProtobufCMessage base;
|
2497
2501
|
PgQuery__Node *xpr;
|
@@ -2508,7 +2512,7 @@ struct _PgQuery__CaseExpr
|
|
2508
2512
|
, NULL, 0, 0, NULL, 0,NULL, NULL, 0 }
|
2509
2513
|
|
2510
2514
|
|
2511
|
-
struct
|
2515
|
+
struct PgQuery__CaseWhen
|
2512
2516
|
{
|
2513
2517
|
ProtobufCMessage base;
|
2514
2518
|
PgQuery__Node *xpr;
|
@@ -2521,7 +2525,7 @@ struct _PgQuery__CaseWhen
|
|
2521
2525
|
, NULL, NULL, NULL, 0 }
|
2522
2526
|
|
2523
2527
|
|
2524
|
-
struct
|
2528
|
+
struct PgQuery__CaseTestExpr
|
2525
2529
|
{
|
2526
2530
|
ProtobufCMessage base;
|
2527
2531
|
PgQuery__Node *xpr;
|
@@ -2534,7 +2538,7 @@ struct _PgQuery__CaseTestExpr
|
|
2534
2538
|
, NULL, 0, 0, 0 }
|
2535
2539
|
|
2536
2540
|
|
2537
|
-
struct
|
2541
|
+
struct PgQuery__ArrayExpr
|
2538
2542
|
{
|
2539
2543
|
ProtobufCMessage base;
|
2540
2544
|
PgQuery__Node *xpr;
|
@@ -2551,7 +2555,7 @@ struct _PgQuery__ArrayExpr
|
|
2551
2555
|
, NULL, 0, 0, 0, 0,NULL, 0, 0 }
|
2552
2556
|
|
2553
2557
|
|
2554
|
-
struct
|
2558
|
+
struct PgQuery__RowExpr
|
2555
2559
|
{
|
2556
2560
|
ProtobufCMessage base;
|
2557
2561
|
PgQuery__Node *xpr;
|
@@ -2568,7 +2572,7 @@ struct _PgQuery__RowExpr
|
|
2568
2572
|
, NULL, 0,NULL, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0,NULL, 0 }
|
2569
2573
|
|
2570
2574
|
|
2571
|
-
struct
|
2575
|
+
struct PgQuery__RowCompareExpr
|
2572
2576
|
{
|
2573
2577
|
ProtobufCMessage base;
|
2574
2578
|
PgQuery__Node *xpr;
|
@@ -2589,7 +2593,7 @@ struct _PgQuery__RowCompareExpr
|
|
2589
2593
|
, NULL, PG_QUERY__ROW_COMPARE_TYPE__ROW_COMPARE_TYPE_UNDEFINED, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL }
|
2590
2594
|
|
2591
2595
|
|
2592
|
-
struct
|
2596
|
+
struct PgQuery__CoalesceExpr
|
2593
2597
|
{
|
2594
2598
|
ProtobufCMessage base;
|
2595
2599
|
PgQuery__Node *xpr;
|
@@ -2604,7 +2608,7 @@ struct _PgQuery__CoalesceExpr
|
|
2604
2608
|
, NULL, 0, 0, 0,NULL, 0 }
|
2605
2609
|
|
2606
2610
|
|
2607
|
-
struct
|
2611
|
+
struct PgQuery__MinMaxExpr
|
2608
2612
|
{
|
2609
2613
|
ProtobufCMessage base;
|
2610
2614
|
PgQuery__Node *xpr;
|
@@ -2621,7 +2625,7 @@ struct _PgQuery__MinMaxExpr
|
|
2621
2625
|
, NULL, 0, 0, 0, PG_QUERY__MIN_MAX_OP__MIN_MAX_OP_UNDEFINED, 0,NULL, 0 }
|
2622
2626
|
|
2623
2627
|
|
2624
|
-
struct
|
2628
|
+
struct PgQuery__SQLValueFunction
|
2625
2629
|
{
|
2626
2630
|
ProtobufCMessage base;
|
2627
2631
|
PgQuery__Node *xpr;
|
@@ -2635,7 +2639,7 @@ struct _PgQuery__SQLValueFunction
|
|
2635
2639
|
, NULL, PG_QUERY__SQLVALUE_FUNCTION_OP__SQLVALUE_FUNCTION_OP_UNDEFINED, 0, 0, 0 }
|
2636
2640
|
|
2637
2641
|
|
2638
|
-
struct
|
2642
|
+
struct PgQuery__XmlExpr
|
2639
2643
|
{
|
2640
2644
|
ProtobufCMessage base;
|
2641
2645
|
PgQuery__Node *xpr;
|
@@ -2657,7 +2661,7 @@ struct _PgQuery__XmlExpr
|
|
2657
2661
|
, NULL, PG_QUERY__XML_EXPR_OP__XML_EXPR_OP_UNDEFINED, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0,NULL, PG_QUERY__XML_OPTION_TYPE__XML_OPTION_TYPE_UNDEFINED, 0, 0, 0 }
|
2658
2662
|
|
2659
2663
|
|
2660
|
-
struct
|
2664
|
+
struct PgQuery__NullTest
|
2661
2665
|
{
|
2662
2666
|
ProtobufCMessage base;
|
2663
2667
|
PgQuery__Node *xpr;
|
@@ -2671,7 +2675,7 @@ struct _PgQuery__NullTest
|
|
2671
2675
|
, NULL, NULL, PG_QUERY__NULL_TEST_TYPE__NULL_TEST_TYPE_UNDEFINED, 0, 0 }
|
2672
2676
|
|
2673
2677
|
|
2674
|
-
struct
|
2678
|
+
struct PgQuery__BooleanTest
|
2675
2679
|
{
|
2676
2680
|
ProtobufCMessage base;
|
2677
2681
|
PgQuery__Node *xpr;
|
@@ -2684,7 +2688,7 @@ struct _PgQuery__BooleanTest
|
|
2684
2688
|
, NULL, NULL, PG_QUERY__BOOL_TEST_TYPE__BOOL_TEST_TYPE_UNDEFINED, 0 }
|
2685
2689
|
|
2686
2690
|
|
2687
|
-
struct
|
2691
|
+
struct PgQuery__CoerceToDomain
|
2688
2692
|
{
|
2689
2693
|
ProtobufCMessage base;
|
2690
2694
|
PgQuery__Node *xpr;
|
@@ -2700,7 +2704,7 @@ struct _PgQuery__CoerceToDomain
|
|
2700
2704
|
, NULL, NULL, 0, 0, 0, PG_QUERY__COERCION_FORM__COERCION_FORM_UNDEFINED, 0 }
|
2701
2705
|
|
2702
2706
|
|
2703
|
-
struct
|
2707
|
+
struct PgQuery__CoerceToDomainValue
|
2704
2708
|
{
|
2705
2709
|
ProtobufCMessage base;
|
2706
2710
|
PgQuery__Node *xpr;
|
@@ -2714,7 +2718,7 @@ struct _PgQuery__CoerceToDomainValue
|
|
2714
2718
|
, NULL, 0, 0, 0, 0 }
|
2715
2719
|
|
2716
2720
|
|
2717
|
-
struct
|
2721
|
+
struct PgQuery__SetToDefault
|
2718
2722
|
{
|
2719
2723
|
ProtobufCMessage base;
|
2720
2724
|
PgQuery__Node *xpr;
|
@@ -2728,7 +2732,7 @@ struct _PgQuery__SetToDefault
|
|
2728
2732
|
, NULL, 0, 0, 0, 0 }
|
2729
2733
|
|
2730
2734
|
|
2731
|
-
struct
|
2735
|
+
struct PgQuery__CurrentOfExpr
|
2732
2736
|
{
|
2733
2737
|
ProtobufCMessage base;
|
2734
2738
|
PgQuery__Node *xpr;
|
@@ -2741,7 +2745,7 @@ struct _PgQuery__CurrentOfExpr
|
|
2741
2745
|
, NULL, 0, (char *)protobuf_c_empty_string, 0 }
|
2742
2746
|
|
2743
2747
|
|
2744
|
-
struct
|
2748
|
+
struct PgQuery__NextValueExpr
|
2745
2749
|
{
|
2746
2750
|
ProtobufCMessage base;
|
2747
2751
|
PgQuery__Node *xpr;
|
@@ -2753,7 +2757,7 @@ struct _PgQuery__NextValueExpr
|
|
2753
2757
|
, NULL, 0, 0 }
|
2754
2758
|
|
2755
2759
|
|
2756
|
-
struct
|
2760
|
+
struct PgQuery__InferenceElem
|
2757
2761
|
{
|
2758
2762
|
ProtobufCMessage base;
|
2759
2763
|
PgQuery__Node *xpr;
|
@@ -2766,7 +2770,7 @@ struct _PgQuery__InferenceElem
|
|
2766
2770
|
, NULL, NULL, 0, 0 }
|
2767
2771
|
|
2768
2772
|
|
2769
|
-
struct
|
2773
|
+
struct PgQuery__TargetEntry
|
2770
2774
|
{
|
2771
2775
|
ProtobufCMessage base;
|
2772
2776
|
PgQuery__Node *xpr;
|
@@ -2783,7 +2787,7 @@ struct _PgQuery__TargetEntry
|
|
2783
2787
|
, NULL, NULL, 0, (char *)protobuf_c_empty_string, 0, 0, 0, 0 }
|
2784
2788
|
|
2785
2789
|
|
2786
|
-
struct
|
2790
|
+
struct PgQuery__RangeTblRef
|
2787
2791
|
{
|
2788
2792
|
ProtobufCMessage base;
|
2789
2793
|
int32_t rtindex;
|
@@ -2793,7 +2797,7 @@ struct _PgQuery__RangeTblRef
|
|
2793
2797
|
, 0 }
|
2794
2798
|
|
2795
2799
|
|
2796
|
-
struct
|
2800
|
+
struct PgQuery__JoinExpr
|
2797
2801
|
{
|
2798
2802
|
ProtobufCMessage base;
|
2799
2803
|
PgQuery__JoinType jointype;
|
@@ -2811,7 +2815,7 @@ struct _PgQuery__JoinExpr
|
|
2811
2815
|
, PG_QUERY__JOIN_TYPE__JOIN_TYPE_UNDEFINED, 0, NULL, NULL, 0,NULL, NULL, NULL, 0 }
|
2812
2816
|
|
2813
2817
|
|
2814
|
-
struct
|
2818
|
+
struct PgQuery__FromExpr
|
2815
2819
|
{
|
2816
2820
|
ProtobufCMessage base;
|
2817
2821
|
size_t n_fromlist;
|
@@ -2823,7 +2827,7 @@ struct _PgQuery__FromExpr
|
|
2823
2827
|
, 0,NULL, NULL }
|
2824
2828
|
|
2825
2829
|
|
2826
|
-
struct
|
2830
|
+
struct PgQuery__OnConflictExpr
|
2827
2831
|
{
|
2828
2832
|
ProtobufCMessage base;
|
2829
2833
|
PgQuery__OnConflictAction action;
|
@@ -2843,7 +2847,7 @@ struct _PgQuery__OnConflictExpr
|
|
2843
2847
|
, PG_QUERY__ON_CONFLICT_ACTION__ON_CONFLICT_ACTION_UNDEFINED, 0,NULL, NULL, 0, 0,NULL, NULL, 0, 0,NULL }
|
2844
2848
|
|
2845
2849
|
|
2846
|
-
struct
|
2850
|
+
struct PgQuery__IntoClause
|
2847
2851
|
{
|
2848
2852
|
ProtobufCMessage base;
|
2849
2853
|
PgQuery__RangeVar *rel;
|
@@ -2862,7 +2866,7 @@ struct _PgQuery__IntoClause
|
|
2862
2866
|
, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0,NULL, PG_QUERY__ON_COMMIT_ACTION__ON_COMMIT_ACTION_UNDEFINED, (char *)protobuf_c_empty_string, NULL, 0 }
|
2863
2867
|
|
2864
2868
|
|
2865
|
-
struct
|
2869
|
+
struct PgQuery__RawStmt
|
2866
2870
|
{
|
2867
2871
|
ProtobufCMessage base;
|
2868
2872
|
PgQuery__Node *stmt;
|
@@ -2874,7 +2878,7 @@ struct _PgQuery__RawStmt
|
|
2874
2878
|
, NULL, 0, 0 }
|
2875
2879
|
|
2876
2880
|
|
2877
|
-
struct
|
2881
|
+
struct PgQuery__Query
|
2878
2882
|
{
|
2879
2883
|
ProtobufCMessage base;
|
2880
2884
|
PgQuery__CmdType command_type;
|
@@ -2931,7 +2935,7 @@ struct _PgQuery__Query
|
|
2931
2935
|
, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, NULL, 0,NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, 0,NULL, 0,NULL, 0, 0 }
|
2932
2936
|
|
2933
2937
|
|
2934
|
-
struct
|
2938
|
+
struct PgQuery__InsertStmt
|
2935
2939
|
{
|
2936
2940
|
ProtobufCMessage base;
|
2937
2941
|
PgQuery__RangeVar *relation;
|
@@ -2949,7 +2953,7 @@ struct _PgQuery__InsertStmt
|
|
2949
2953
|
, NULL, 0,NULL, NULL, NULL, 0,NULL, NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED }
|
2950
2954
|
|
2951
2955
|
|
2952
|
-
struct
|
2956
|
+
struct PgQuery__DeleteStmt
|
2953
2957
|
{
|
2954
2958
|
ProtobufCMessage base;
|
2955
2959
|
PgQuery__RangeVar *relation;
|
@@ -2965,7 +2969,7 @@ struct _PgQuery__DeleteStmt
|
|
2965
2969
|
, NULL, 0,NULL, NULL, 0,NULL, NULL }
|
2966
2970
|
|
2967
2971
|
|
2968
|
-
struct
|
2972
|
+
struct PgQuery__UpdateStmt
|
2969
2973
|
{
|
2970
2974
|
ProtobufCMessage base;
|
2971
2975
|
PgQuery__RangeVar *relation;
|
@@ -2983,7 +2987,7 @@ struct _PgQuery__UpdateStmt
|
|
2983
2987
|
, NULL, 0,NULL, NULL, 0,NULL, 0,NULL, NULL }
|
2984
2988
|
|
2985
2989
|
|
2986
|
-
struct
|
2990
|
+
struct PgQuery__SelectStmt
|
2987
2991
|
{
|
2988
2992
|
ProtobufCMessage base;
|
2989
2993
|
size_t n_distinct_clause;
|
@@ -3019,7 +3023,7 @@ struct _PgQuery__SelectStmt
|
|
3019
3023
|
, 0,NULL, NULL, 0,NULL, 0,NULL, NULL, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, PG_QUERY__SET_OPERATION__SET_OPERATION_UNDEFINED, 0, NULL, NULL }
|
3020
3024
|
|
3021
3025
|
|
3022
|
-
struct
|
3026
|
+
struct PgQuery__AlterTableStmt
|
3023
3027
|
{
|
3024
3028
|
ProtobufCMessage base;
|
3025
3029
|
PgQuery__RangeVar *relation;
|
@@ -3033,7 +3037,7 @@ struct _PgQuery__AlterTableStmt
|
|
3033
3037
|
, NULL, 0,NULL, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, 0 }
|
3034
3038
|
|
3035
3039
|
|
3036
|
-
struct
|
3040
|
+
struct PgQuery__AlterTableCmd
|
3037
3041
|
{
|
3038
3042
|
ProtobufCMessage base;
|
3039
3043
|
PgQuery__AlterTableType subtype;
|
@@ -3049,7 +3053,7 @@ struct _PgQuery__AlterTableCmd
|
|
3049
3053
|
, PG_QUERY__ALTER_TABLE_TYPE__ALTER_TABLE_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, NULL, NULL, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED, 0 }
|
3050
3054
|
|
3051
3055
|
|
3052
|
-
struct
|
3056
|
+
struct PgQuery__AlterDomainStmt
|
3053
3057
|
{
|
3054
3058
|
ProtobufCMessage base;
|
3055
3059
|
char *subtype;
|
@@ -3065,7 +3069,7 @@ struct _PgQuery__AlterDomainStmt
|
|
3065
3069
|
, (char *)protobuf_c_empty_string, 0,NULL, (char *)protobuf_c_empty_string, NULL, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED, 0 }
|
3066
3070
|
|
3067
3071
|
|
3068
|
-
struct
|
3072
|
+
struct PgQuery__SetOperationStmt
|
3069
3073
|
{
|
3070
3074
|
ProtobufCMessage base;
|
3071
3075
|
PgQuery__SetOperation op;
|
@@ -3086,7 +3090,7 @@ struct _PgQuery__SetOperationStmt
|
|
3086
3090
|
, PG_QUERY__SET_OPERATION__SET_OPERATION_UNDEFINED, 0, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL }
|
3087
3091
|
|
3088
3092
|
|
3089
|
-
struct
|
3093
|
+
struct PgQuery__GrantStmt
|
3090
3094
|
{
|
3091
3095
|
ProtobufCMessage base;
|
3092
3096
|
protobuf_c_boolean is_grant;
|
@@ -3106,7 +3110,7 @@ struct _PgQuery__GrantStmt
|
|
3106
3110
|
, 0, PG_QUERY__GRANT_TARGET_TYPE__GRANT_TARGET_TYPE_UNDEFINED, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, 0,NULL, 0,NULL, 0,NULL, 0, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED }
|
3107
3111
|
|
3108
3112
|
|
3109
|
-
struct
|
3113
|
+
struct PgQuery__GrantRoleStmt
|
3110
3114
|
{
|
3111
3115
|
ProtobufCMessage base;
|
3112
3116
|
size_t n_granted_roles;
|
@@ -3123,7 +3127,7 @@ struct _PgQuery__GrantRoleStmt
|
|
3123
3127
|
, 0,NULL, 0,NULL, 0, 0, NULL, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED }
|
3124
3128
|
|
3125
3129
|
|
3126
|
-
struct
|
3130
|
+
struct PgQuery__AlterDefaultPrivilegesStmt
|
3127
3131
|
{
|
3128
3132
|
ProtobufCMessage base;
|
3129
3133
|
size_t n_options;
|
@@ -3135,7 +3139,7 @@ struct _PgQuery__AlterDefaultPrivilegesStmt
|
|
3135
3139
|
, 0,NULL, NULL }
|
3136
3140
|
|
3137
3141
|
|
3138
|
-
struct
|
3142
|
+
struct PgQuery__ClosePortalStmt
|
3139
3143
|
{
|
3140
3144
|
ProtobufCMessage base;
|
3141
3145
|
char *portalname;
|
@@ -3145,7 +3149,7 @@ struct _PgQuery__ClosePortalStmt
|
|
3145
3149
|
, (char *)protobuf_c_empty_string }
|
3146
3150
|
|
3147
3151
|
|
3148
|
-
struct
|
3152
|
+
struct PgQuery__ClusterStmt
|
3149
3153
|
{
|
3150
3154
|
ProtobufCMessage base;
|
3151
3155
|
PgQuery__RangeVar *relation;
|
@@ -3157,7 +3161,7 @@ struct _PgQuery__ClusterStmt
|
|
3157
3161
|
, NULL, (char *)protobuf_c_empty_string, 0 }
|
3158
3162
|
|
3159
3163
|
|
3160
|
-
struct
|
3164
|
+
struct PgQuery__CopyStmt
|
3161
3165
|
{
|
3162
3166
|
ProtobufCMessage base;
|
3163
3167
|
PgQuery__RangeVar *relation;
|
@@ -3176,7 +3180,7 @@ struct _PgQuery__CopyStmt
|
|
3176
3180
|
, NULL, NULL, 0,NULL, 0, 0, (char *)protobuf_c_empty_string, 0,NULL, NULL }
|
3177
3181
|
|
3178
3182
|
|
3179
|
-
struct
|
3183
|
+
struct PgQuery__CreateStmt
|
3180
3184
|
{
|
3181
3185
|
ProtobufCMessage base;
|
3182
3186
|
PgQuery__RangeVar *relation;
|
@@ -3201,7 +3205,7 @@ struct _PgQuery__CreateStmt
|
|
3201
3205
|
, NULL, 0,NULL, 0,NULL, NULL, NULL, NULL, 0,NULL, 0,NULL, PG_QUERY__ON_COMMIT_ACTION__ON_COMMIT_ACTION_UNDEFINED, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0 }
|
3202
3206
|
|
3203
3207
|
|
3204
|
-
struct
|
3208
|
+
struct PgQuery__DefineStmt
|
3205
3209
|
{
|
3206
3210
|
ProtobufCMessage base;
|
3207
3211
|
PgQuery__ObjectType kind;
|
@@ -3220,7 +3224,7 @@ struct _PgQuery__DefineStmt
|
|
3220
3224
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, 0, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
|
3221
3225
|
|
3222
3226
|
|
3223
|
-
struct
|
3227
|
+
struct PgQuery__DropStmt
|
3224
3228
|
{
|
3225
3229
|
ProtobufCMessage base;
|
3226
3230
|
size_t n_objects;
|
@@ -3235,7 +3239,7 @@ struct _PgQuery__DropStmt
|
|
3235
3239
|
, 0,NULL, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED, 0, 0 }
|
3236
3240
|
|
3237
3241
|
|
3238
|
-
struct
|
3242
|
+
struct PgQuery__TruncateStmt
|
3239
3243
|
{
|
3240
3244
|
ProtobufCMessage base;
|
3241
3245
|
size_t n_relations;
|
@@ -3248,7 +3252,7 @@ struct _PgQuery__TruncateStmt
|
|
3248
3252
|
, 0,NULL, 0, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED }
|
3249
3253
|
|
3250
3254
|
|
3251
|
-
struct
|
3255
|
+
struct PgQuery__CommentStmt
|
3252
3256
|
{
|
3253
3257
|
ProtobufCMessage base;
|
3254
3258
|
PgQuery__ObjectType objtype;
|
@@ -3260,7 +3264,7 @@ struct _PgQuery__CommentStmt
|
|
3260
3264
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, (char *)protobuf_c_empty_string }
|
3261
3265
|
|
3262
3266
|
|
3263
|
-
struct
|
3267
|
+
struct PgQuery__FetchStmt
|
3264
3268
|
{
|
3265
3269
|
ProtobufCMessage base;
|
3266
3270
|
PgQuery__FetchDirection direction;
|
@@ -3273,7 +3277,7 @@ struct _PgQuery__FetchStmt
|
|
3273
3277
|
, PG_QUERY__FETCH_DIRECTION__FETCH_DIRECTION_UNDEFINED, 0, (char *)protobuf_c_empty_string, 0 }
|
3274
3278
|
|
3275
3279
|
|
3276
|
-
struct
|
3280
|
+
struct PgQuery__IndexStmt
|
3277
3281
|
{
|
3278
3282
|
ProtobufCMessage base;
|
3279
3283
|
char *idxname;
|
@@ -3309,7 +3313,7 @@ struct _PgQuery__IndexStmt
|
|
3309
3313
|
, (char *)protobuf_c_empty_string, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
|
3310
3314
|
|
3311
3315
|
|
3312
|
-
struct
|
3316
|
+
struct PgQuery__CreateFunctionStmt
|
3313
3317
|
{
|
3314
3318
|
ProtobufCMessage base;
|
3315
3319
|
protobuf_c_boolean is_procedure;
|
@@ -3327,7 +3331,7 @@ struct _PgQuery__CreateFunctionStmt
|
|
3327
3331
|
, 0, 0, 0,NULL, 0,NULL, NULL, 0,NULL }
|
3328
3332
|
|
3329
3333
|
|
3330
|
-
struct
|
3334
|
+
struct PgQuery__AlterFunctionStmt
|
3331
3335
|
{
|
3332
3336
|
ProtobufCMessage base;
|
3333
3337
|
PgQuery__ObjectType objtype;
|
@@ -3340,7 +3344,7 @@ struct _PgQuery__AlterFunctionStmt
|
|
3340
3344
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, 0,NULL }
|
3341
3345
|
|
3342
3346
|
|
3343
|
-
struct
|
3347
|
+
struct PgQuery__DoStmt
|
3344
3348
|
{
|
3345
3349
|
ProtobufCMessage base;
|
3346
3350
|
size_t n_args;
|
@@ -3351,7 +3355,7 @@ struct _PgQuery__DoStmt
|
|
3351
3355
|
, 0,NULL }
|
3352
3356
|
|
3353
3357
|
|
3354
|
-
struct
|
3358
|
+
struct PgQuery__RenameStmt
|
3355
3359
|
{
|
3356
3360
|
ProtobufCMessage base;
|
3357
3361
|
PgQuery__ObjectType rename_type;
|
@@ -3368,7 +3372,7 @@ struct _PgQuery__RenameStmt
|
|
3368
3372
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED, 0 }
|
3369
3373
|
|
3370
3374
|
|
3371
|
-
struct
|
3375
|
+
struct PgQuery__RuleStmt
|
3372
3376
|
{
|
3373
3377
|
ProtobufCMessage base;
|
3374
3378
|
PgQuery__RangeVar *relation;
|
@@ -3385,7 +3389,7 @@ struct _PgQuery__RuleStmt
|
|
3385
3389
|
, NULL, (char *)protobuf_c_empty_string, NULL, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, 0, 0,NULL, 0 }
|
3386
3390
|
|
3387
3391
|
|
3388
|
-
struct
|
3392
|
+
struct PgQuery__NotifyStmt
|
3389
3393
|
{
|
3390
3394
|
ProtobufCMessage base;
|
3391
3395
|
char *conditionname;
|
@@ -3396,7 +3400,7 @@ struct _PgQuery__NotifyStmt
|
|
3396
3400
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string }
|
3397
3401
|
|
3398
3402
|
|
3399
|
-
struct
|
3403
|
+
struct PgQuery__ListenStmt
|
3400
3404
|
{
|
3401
3405
|
ProtobufCMessage base;
|
3402
3406
|
char *conditionname;
|
@@ -3406,7 +3410,7 @@ struct _PgQuery__ListenStmt
|
|
3406
3410
|
, (char *)protobuf_c_empty_string }
|
3407
3411
|
|
3408
3412
|
|
3409
|
-
struct
|
3413
|
+
struct PgQuery__UnlistenStmt
|
3410
3414
|
{
|
3411
3415
|
ProtobufCMessage base;
|
3412
3416
|
char *conditionname;
|
@@ -3416,7 +3420,7 @@ struct _PgQuery__UnlistenStmt
|
|
3416
3420
|
, (char *)protobuf_c_empty_string }
|
3417
3421
|
|
3418
3422
|
|
3419
|
-
struct
|
3423
|
+
struct PgQuery__TransactionStmt
|
3420
3424
|
{
|
3421
3425
|
ProtobufCMessage base;
|
3422
3426
|
PgQuery__TransactionStmtKind kind;
|
@@ -3431,7 +3435,7 @@ struct _PgQuery__TransactionStmt
|
|
3431
3435
|
, PG_QUERY__TRANSACTION_STMT_KIND__TRANSACTION_STMT_KIND_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0 }
|
3432
3436
|
|
3433
3437
|
|
3434
|
-
struct
|
3438
|
+
struct PgQuery__ViewStmt
|
3435
3439
|
{
|
3436
3440
|
ProtobufCMessage base;
|
3437
3441
|
PgQuery__RangeVar *view;
|
@@ -3448,7 +3452,7 @@ struct _PgQuery__ViewStmt
|
|
3448
3452
|
, NULL, 0,NULL, NULL, 0, 0,NULL, PG_QUERY__VIEW_CHECK_OPTION__VIEW_CHECK_OPTION_UNDEFINED }
|
3449
3453
|
|
3450
3454
|
|
3451
|
-
struct
|
3455
|
+
struct PgQuery__LoadStmt
|
3452
3456
|
{
|
3453
3457
|
ProtobufCMessage base;
|
3454
3458
|
char *filename;
|
@@ -3458,7 +3462,7 @@ struct _PgQuery__LoadStmt
|
|
3458
3462
|
, (char *)protobuf_c_empty_string }
|
3459
3463
|
|
3460
3464
|
|
3461
|
-
struct
|
3465
|
+
struct PgQuery__CreateDomainStmt
|
3462
3466
|
{
|
3463
3467
|
ProtobufCMessage base;
|
3464
3468
|
size_t n_domainname;
|
@@ -3473,7 +3477,7 @@ struct _PgQuery__CreateDomainStmt
|
|
3473
3477
|
, 0,NULL, NULL, NULL, 0,NULL }
|
3474
3478
|
|
3475
3479
|
|
3476
|
-
struct
|
3480
|
+
struct PgQuery__CreatedbStmt
|
3477
3481
|
{
|
3478
3482
|
ProtobufCMessage base;
|
3479
3483
|
char *dbname;
|
@@ -3485,7 +3489,7 @@ struct _PgQuery__CreatedbStmt
|
|
3485
3489
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
3486
3490
|
|
3487
3491
|
|
3488
|
-
struct
|
3492
|
+
struct PgQuery__DropdbStmt
|
3489
3493
|
{
|
3490
3494
|
ProtobufCMessage base;
|
3491
3495
|
char *dbname;
|
@@ -3498,7 +3502,7 @@ struct _PgQuery__DropdbStmt
|
|
3498
3502
|
, (char *)protobuf_c_empty_string, 0, 0,NULL }
|
3499
3503
|
|
3500
3504
|
|
3501
|
-
struct
|
3505
|
+
struct PgQuery__VacuumStmt
|
3502
3506
|
{
|
3503
3507
|
ProtobufCMessage base;
|
3504
3508
|
size_t n_options;
|
@@ -3512,7 +3516,7 @@ struct _PgQuery__VacuumStmt
|
|
3512
3516
|
, 0,NULL, 0,NULL, 0 }
|
3513
3517
|
|
3514
3518
|
|
3515
|
-
struct
|
3519
|
+
struct PgQuery__ExplainStmt
|
3516
3520
|
{
|
3517
3521
|
ProtobufCMessage base;
|
3518
3522
|
PgQuery__Node *query;
|
@@ -3524,7 +3528,7 @@ struct _PgQuery__ExplainStmt
|
|
3524
3528
|
, NULL, 0,NULL }
|
3525
3529
|
|
3526
3530
|
|
3527
|
-
struct
|
3531
|
+
struct PgQuery__CreateTableAsStmt
|
3528
3532
|
{
|
3529
3533
|
ProtobufCMessage base;
|
3530
3534
|
PgQuery__Node *query;
|
@@ -3538,7 +3542,7 @@ struct _PgQuery__CreateTableAsStmt
|
|
3538
3542
|
, NULL, NULL, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, 0, 0 }
|
3539
3543
|
|
3540
3544
|
|
3541
|
-
struct
|
3545
|
+
struct PgQuery__CreateSeqStmt
|
3542
3546
|
{
|
3543
3547
|
ProtobufCMessage base;
|
3544
3548
|
PgQuery__RangeVar *sequence;
|
@@ -3553,7 +3557,7 @@ struct _PgQuery__CreateSeqStmt
|
|
3553
3557
|
, NULL, 0,NULL, 0, 0, 0 }
|
3554
3558
|
|
3555
3559
|
|
3556
|
-
struct
|
3560
|
+
struct PgQuery__AlterSeqStmt
|
3557
3561
|
{
|
3558
3562
|
ProtobufCMessage base;
|
3559
3563
|
PgQuery__RangeVar *sequence;
|
@@ -3567,7 +3571,7 @@ struct _PgQuery__AlterSeqStmt
|
|
3567
3571
|
, NULL, 0,NULL, 0, 0 }
|
3568
3572
|
|
3569
3573
|
|
3570
|
-
struct
|
3574
|
+
struct PgQuery__VariableSetStmt
|
3571
3575
|
{
|
3572
3576
|
ProtobufCMessage base;
|
3573
3577
|
PgQuery__VariableSetKind kind;
|
@@ -3581,7 +3585,7 @@ struct _PgQuery__VariableSetStmt
|
|
3581
3585
|
, PG_QUERY__VARIABLE_SET_KIND__VARIABLE_SET_KIND_UNDEFINED, (char *)protobuf_c_empty_string, 0,NULL, 0 }
|
3582
3586
|
|
3583
3587
|
|
3584
|
-
struct
|
3588
|
+
struct PgQuery__VariableShowStmt
|
3585
3589
|
{
|
3586
3590
|
ProtobufCMessage base;
|
3587
3591
|
char *name;
|
@@ -3591,7 +3595,7 @@ struct _PgQuery__VariableShowStmt
|
|
3591
3595
|
, (char *)protobuf_c_empty_string }
|
3592
3596
|
|
3593
3597
|
|
3594
|
-
struct
|
3598
|
+
struct PgQuery__DiscardStmt
|
3595
3599
|
{
|
3596
3600
|
ProtobufCMessage base;
|
3597
3601
|
PgQuery__DiscardMode target;
|
@@ -3601,7 +3605,7 @@ struct _PgQuery__DiscardStmt
|
|
3601
3605
|
, PG_QUERY__DISCARD_MODE__DISCARD_MODE_UNDEFINED }
|
3602
3606
|
|
3603
3607
|
|
3604
|
-
struct
|
3608
|
+
struct PgQuery__CreateTrigStmt
|
3605
3609
|
{
|
3606
3610
|
ProtobufCMessage base;
|
3607
3611
|
char *trigname;
|
@@ -3628,7 +3632,7 @@ struct _PgQuery__CreateTrigStmt
|
|
3628
3632
|
, (char *)protobuf_c_empty_string, NULL, 0,NULL, 0,NULL, 0, 0, 0, 0,NULL, NULL, 0, 0,NULL, 0, 0, NULL }
|
3629
3633
|
|
3630
3634
|
|
3631
|
-
struct
|
3635
|
+
struct PgQuery__CreatePLangStmt
|
3632
3636
|
{
|
3633
3637
|
ProtobufCMessage base;
|
3634
3638
|
protobuf_c_boolean replace;
|
@@ -3646,7 +3650,7 @@ struct _PgQuery__CreatePLangStmt
|
|
3646
3650
|
, 0, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0,NULL, 0 }
|
3647
3651
|
|
3648
3652
|
|
3649
|
-
struct
|
3653
|
+
struct PgQuery__CreateRoleStmt
|
3650
3654
|
{
|
3651
3655
|
ProtobufCMessage base;
|
3652
3656
|
PgQuery__RoleStmtType stmt_type;
|
@@ -3659,7 +3663,7 @@ struct _PgQuery__CreateRoleStmt
|
|
3659
3663
|
, PG_QUERY__ROLE_STMT_TYPE__ROLE_STMT_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0,NULL }
|
3660
3664
|
|
3661
3665
|
|
3662
|
-
struct
|
3666
|
+
struct PgQuery__AlterRoleStmt
|
3663
3667
|
{
|
3664
3668
|
ProtobufCMessage base;
|
3665
3669
|
PgQuery__RoleSpec *role;
|
@@ -3672,7 +3676,7 @@ struct _PgQuery__AlterRoleStmt
|
|
3672
3676
|
, NULL, 0,NULL, 0 }
|
3673
3677
|
|
3674
3678
|
|
3675
|
-
struct
|
3679
|
+
struct PgQuery__DropRoleStmt
|
3676
3680
|
{
|
3677
3681
|
ProtobufCMessage base;
|
3678
3682
|
size_t n_roles;
|
@@ -3684,7 +3688,7 @@ struct _PgQuery__DropRoleStmt
|
|
3684
3688
|
, 0,NULL, 0 }
|
3685
3689
|
|
3686
3690
|
|
3687
|
-
struct
|
3691
|
+
struct PgQuery__LockStmt
|
3688
3692
|
{
|
3689
3693
|
ProtobufCMessage base;
|
3690
3694
|
size_t n_relations;
|
@@ -3697,7 +3701,7 @@ struct _PgQuery__LockStmt
|
|
3697
3701
|
, 0,NULL, 0, 0 }
|
3698
3702
|
|
3699
3703
|
|
3700
|
-
struct
|
3704
|
+
struct PgQuery__ConstraintsSetStmt
|
3701
3705
|
{
|
3702
3706
|
ProtobufCMessage base;
|
3703
3707
|
size_t n_constraints;
|
@@ -3709,7 +3713,7 @@ struct _PgQuery__ConstraintsSetStmt
|
|
3709
3713
|
, 0,NULL, 0 }
|
3710
3714
|
|
3711
3715
|
|
3712
|
-
struct
|
3716
|
+
struct PgQuery__ReindexStmt
|
3713
3717
|
{
|
3714
3718
|
ProtobufCMessage base;
|
3715
3719
|
PgQuery__ReindexObjectType kind;
|
@@ -3723,7 +3727,7 @@ struct _PgQuery__ReindexStmt
|
|
3723
3727
|
, PG_QUERY__REINDEX_OBJECT_TYPE__REINDEX_OBJECT_TYPE_UNDEFINED, NULL, (char *)protobuf_c_empty_string, 0, 0 }
|
3724
3728
|
|
3725
3729
|
|
3726
|
-
struct
|
3730
|
+
struct PgQuery__CheckPointStmt
|
3727
3731
|
{
|
3728
3732
|
ProtobufCMessage base;
|
3729
3733
|
};
|
@@ -3732,7 +3736,7 @@ struct _PgQuery__CheckPointStmt
|
|
3732
3736
|
}
|
3733
3737
|
|
3734
3738
|
|
3735
|
-
struct
|
3739
|
+
struct PgQuery__CreateSchemaStmt
|
3736
3740
|
{
|
3737
3741
|
ProtobufCMessage base;
|
3738
3742
|
char *schemaname;
|
@@ -3746,7 +3750,7 @@ struct _PgQuery__CreateSchemaStmt
|
|
3746
3750
|
, (char *)protobuf_c_empty_string, NULL, 0,NULL, 0 }
|
3747
3751
|
|
3748
3752
|
|
3749
|
-
struct
|
3753
|
+
struct PgQuery__AlterDatabaseStmt
|
3750
3754
|
{
|
3751
3755
|
ProtobufCMessage base;
|
3752
3756
|
char *dbname;
|
@@ -3758,7 +3762,7 @@ struct _PgQuery__AlterDatabaseStmt
|
|
3758
3762
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
3759
3763
|
|
3760
3764
|
|
3761
|
-
struct
|
3765
|
+
struct PgQuery__AlterDatabaseSetStmt
|
3762
3766
|
{
|
3763
3767
|
ProtobufCMessage base;
|
3764
3768
|
char *dbname;
|
@@ -3769,7 +3773,7 @@ struct _PgQuery__AlterDatabaseSetStmt
|
|
3769
3773
|
, (char *)protobuf_c_empty_string, NULL }
|
3770
3774
|
|
3771
3775
|
|
3772
|
-
struct
|
3776
|
+
struct PgQuery__AlterRoleSetStmt
|
3773
3777
|
{
|
3774
3778
|
ProtobufCMessage base;
|
3775
3779
|
PgQuery__RoleSpec *role;
|
@@ -3781,7 +3785,7 @@ struct _PgQuery__AlterRoleSetStmt
|
|
3781
3785
|
, NULL, (char *)protobuf_c_empty_string, NULL }
|
3782
3786
|
|
3783
3787
|
|
3784
|
-
struct
|
3788
|
+
struct PgQuery__CreateConversionStmt
|
3785
3789
|
{
|
3786
3790
|
ProtobufCMessage base;
|
3787
3791
|
size_t n_conversion_name;
|
@@ -3797,7 +3801,7 @@ struct _PgQuery__CreateConversionStmt
|
|
3797
3801
|
, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0 }
|
3798
3802
|
|
3799
3803
|
|
3800
|
-
struct
|
3804
|
+
struct PgQuery__CreateCastStmt
|
3801
3805
|
{
|
3802
3806
|
ProtobufCMessage base;
|
3803
3807
|
PgQuery__TypeName *sourcetype;
|
@@ -3811,7 +3815,7 @@ struct _PgQuery__CreateCastStmt
|
|
3811
3815
|
, NULL, NULL, NULL, PG_QUERY__COERCION_CONTEXT__COERCION_CONTEXT_UNDEFINED, 0 }
|
3812
3816
|
|
3813
3817
|
|
3814
|
-
struct
|
3818
|
+
struct PgQuery__CreateOpClassStmt
|
3815
3819
|
{
|
3816
3820
|
ProtobufCMessage base;
|
3817
3821
|
size_t n_opclassname;
|
@@ -3829,7 +3833,7 @@ struct _PgQuery__CreateOpClassStmt
|
|
3829
3833
|
, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, NULL, 0,NULL, 0 }
|
3830
3834
|
|
3831
3835
|
|
3832
|
-
struct
|
3836
|
+
struct PgQuery__CreateOpFamilyStmt
|
3833
3837
|
{
|
3834
3838
|
ProtobufCMessage base;
|
3835
3839
|
size_t n_opfamilyname;
|
@@ -3841,7 +3845,7 @@ struct _PgQuery__CreateOpFamilyStmt
|
|
3841
3845
|
, 0,NULL, (char *)protobuf_c_empty_string }
|
3842
3846
|
|
3843
3847
|
|
3844
|
-
struct
|
3848
|
+
struct PgQuery__AlterOpFamilyStmt
|
3845
3849
|
{
|
3846
3850
|
ProtobufCMessage base;
|
3847
3851
|
size_t n_opfamilyname;
|
@@ -3856,7 +3860,7 @@ struct _PgQuery__AlterOpFamilyStmt
|
|
3856
3860
|
, 0,NULL, (char *)protobuf_c_empty_string, 0, 0,NULL }
|
3857
3861
|
|
3858
3862
|
|
3859
|
-
struct
|
3863
|
+
struct PgQuery__PrepareStmt
|
3860
3864
|
{
|
3861
3865
|
ProtobufCMessage base;
|
3862
3866
|
char *name;
|
@@ -3869,7 +3873,7 @@ struct _PgQuery__PrepareStmt
|
|
3869
3873
|
, (char *)protobuf_c_empty_string, 0,NULL, NULL }
|
3870
3874
|
|
3871
3875
|
|
3872
|
-
struct
|
3876
|
+
struct PgQuery__ExecuteStmt
|
3873
3877
|
{
|
3874
3878
|
ProtobufCMessage base;
|
3875
3879
|
char *name;
|
@@ -3881,7 +3885,7 @@ struct _PgQuery__ExecuteStmt
|
|
3881
3885
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
3882
3886
|
|
3883
3887
|
|
3884
|
-
struct
|
3888
|
+
struct PgQuery__DeallocateStmt
|
3885
3889
|
{
|
3886
3890
|
ProtobufCMessage base;
|
3887
3891
|
char *name;
|
@@ -3891,7 +3895,7 @@ struct _PgQuery__DeallocateStmt
|
|
3891
3895
|
, (char *)protobuf_c_empty_string }
|
3892
3896
|
|
3893
3897
|
|
3894
|
-
struct
|
3898
|
+
struct PgQuery__DeclareCursorStmt
|
3895
3899
|
{
|
3896
3900
|
ProtobufCMessage base;
|
3897
3901
|
char *portalname;
|
@@ -3903,7 +3907,7 @@ struct _PgQuery__DeclareCursorStmt
|
|
3903
3907
|
, (char *)protobuf_c_empty_string, 0, NULL }
|
3904
3908
|
|
3905
3909
|
|
3906
|
-
struct
|
3910
|
+
struct PgQuery__CreateTableSpaceStmt
|
3907
3911
|
{
|
3908
3912
|
ProtobufCMessage base;
|
3909
3913
|
char *tablespacename;
|
@@ -3917,7 +3921,7 @@ struct _PgQuery__CreateTableSpaceStmt
|
|
3917
3921
|
, (char *)protobuf_c_empty_string, NULL, (char *)protobuf_c_empty_string, 0,NULL }
|
3918
3922
|
|
3919
3923
|
|
3920
|
-
struct
|
3924
|
+
struct PgQuery__DropTableSpaceStmt
|
3921
3925
|
{
|
3922
3926
|
ProtobufCMessage base;
|
3923
3927
|
char *tablespacename;
|
@@ -3928,7 +3932,7 @@ struct _PgQuery__DropTableSpaceStmt
|
|
3928
3932
|
, (char *)protobuf_c_empty_string, 0 }
|
3929
3933
|
|
3930
3934
|
|
3931
|
-
struct
|
3935
|
+
struct PgQuery__AlterObjectDependsStmt
|
3932
3936
|
{
|
3933
3937
|
ProtobufCMessage base;
|
3934
3938
|
PgQuery__ObjectType object_type;
|
@@ -3942,7 +3946,7 @@ struct _PgQuery__AlterObjectDependsStmt
|
|
3942
3946
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, NULL, NULL, 0 }
|
3943
3947
|
|
3944
3948
|
|
3945
|
-
struct
|
3949
|
+
struct PgQuery__AlterObjectSchemaStmt
|
3946
3950
|
{
|
3947
3951
|
ProtobufCMessage base;
|
3948
3952
|
PgQuery__ObjectType object_type;
|
@@ -3956,7 +3960,7 @@ struct _PgQuery__AlterObjectSchemaStmt
|
|
3956
3960
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, NULL, (char *)protobuf_c_empty_string, 0 }
|
3957
3961
|
|
3958
3962
|
|
3959
|
-
struct
|
3963
|
+
struct PgQuery__AlterOwnerStmt
|
3960
3964
|
{
|
3961
3965
|
ProtobufCMessage base;
|
3962
3966
|
PgQuery__ObjectType object_type;
|
@@ -3969,7 +3973,7 @@ struct _PgQuery__AlterOwnerStmt
|
|
3969
3973
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, NULL, NULL }
|
3970
3974
|
|
3971
3975
|
|
3972
|
-
struct
|
3976
|
+
struct PgQuery__AlterOperatorStmt
|
3973
3977
|
{
|
3974
3978
|
ProtobufCMessage base;
|
3975
3979
|
PgQuery__ObjectWithArgs *opername;
|
@@ -3981,7 +3985,7 @@ struct _PgQuery__AlterOperatorStmt
|
|
3981
3985
|
, NULL, 0,NULL }
|
3982
3986
|
|
3983
3987
|
|
3984
|
-
struct
|
3988
|
+
struct PgQuery__AlterTypeStmt
|
3985
3989
|
{
|
3986
3990
|
ProtobufCMessage base;
|
3987
3991
|
size_t n_type_name;
|
@@ -3994,7 +3998,7 @@ struct _PgQuery__AlterTypeStmt
|
|
3994
3998
|
, 0,NULL, 0,NULL }
|
3995
3999
|
|
3996
4000
|
|
3997
|
-
struct
|
4001
|
+
struct PgQuery__DropOwnedStmt
|
3998
4002
|
{
|
3999
4003
|
ProtobufCMessage base;
|
4000
4004
|
size_t n_roles;
|
@@ -4006,7 +4010,7 @@ struct _PgQuery__DropOwnedStmt
|
|
4006
4010
|
, 0,NULL, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED }
|
4007
4011
|
|
4008
4012
|
|
4009
|
-
struct
|
4013
|
+
struct PgQuery__ReassignOwnedStmt
|
4010
4014
|
{
|
4011
4015
|
ProtobufCMessage base;
|
4012
4016
|
size_t n_roles;
|
@@ -4018,7 +4022,7 @@ struct _PgQuery__ReassignOwnedStmt
|
|
4018
4022
|
, 0,NULL, NULL }
|
4019
4023
|
|
4020
4024
|
|
4021
|
-
struct
|
4025
|
+
struct PgQuery__CompositeTypeStmt
|
4022
4026
|
{
|
4023
4027
|
ProtobufCMessage base;
|
4024
4028
|
PgQuery__RangeVar *typevar;
|
@@ -4030,7 +4034,7 @@ struct _PgQuery__CompositeTypeStmt
|
|
4030
4034
|
, NULL, 0,NULL }
|
4031
4035
|
|
4032
4036
|
|
4033
|
-
struct
|
4037
|
+
struct PgQuery__CreateEnumStmt
|
4034
4038
|
{
|
4035
4039
|
ProtobufCMessage base;
|
4036
4040
|
size_t n_type_name;
|
@@ -4043,7 +4047,7 @@ struct _PgQuery__CreateEnumStmt
|
|
4043
4047
|
, 0,NULL, 0,NULL }
|
4044
4048
|
|
4045
4049
|
|
4046
|
-
struct
|
4050
|
+
struct PgQuery__CreateRangeStmt
|
4047
4051
|
{
|
4048
4052
|
ProtobufCMessage base;
|
4049
4053
|
size_t n_type_name;
|
@@ -4056,7 +4060,7 @@ struct _PgQuery__CreateRangeStmt
|
|
4056
4060
|
, 0,NULL, 0,NULL }
|
4057
4061
|
|
4058
4062
|
|
4059
|
-
struct
|
4063
|
+
struct PgQuery__AlterEnumStmt
|
4060
4064
|
{
|
4061
4065
|
ProtobufCMessage base;
|
4062
4066
|
size_t n_type_name;
|
@@ -4072,7 +4076,7 @@ struct _PgQuery__AlterEnumStmt
|
|
4072
4076
|
, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0 }
|
4073
4077
|
|
4074
4078
|
|
4075
|
-
struct
|
4079
|
+
struct PgQuery__AlterTSDictionaryStmt
|
4076
4080
|
{
|
4077
4081
|
ProtobufCMessage base;
|
4078
4082
|
size_t n_dictname;
|
@@ -4085,7 +4089,7 @@ struct _PgQuery__AlterTSDictionaryStmt
|
|
4085
4089
|
, 0,NULL, 0,NULL }
|
4086
4090
|
|
4087
4091
|
|
4088
|
-
struct
|
4092
|
+
struct PgQuery__AlterTSConfigurationStmt
|
4089
4093
|
{
|
4090
4094
|
ProtobufCMessage base;
|
4091
4095
|
PgQuery__AlterTSConfigType kind;
|
@@ -4104,7 +4108,7 @@ struct _PgQuery__AlterTSConfigurationStmt
|
|
4104
4108
|
, PG_QUERY__ALTER_TSCONFIG_TYPE__ALTER_TSCONFIG_TYPE_UNDEFINED, 0,NULL, 0,NULL, 0,NULL, 0, 0, 0 }
|
4105
4109
|
|
4106
4110
|
|
4107
|
-
struct
|
4111
|
+
struct PgQuery__CreateFdwStmt
|
4108
4112
|
{
|
4109
4113
|
ProtobufCMessage base;
|
4110
4114
|
char *fdwname;
|
@@ -4118,7 +4122,7 @@ struct _PgQuery__CreateFdwStmt
|
|
4118
4122
|
, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL }
|
4119
4123
|
|
4120
4124
|
|
4121
|
-
struct
|
4125
|
+
struct PgQuery__AlterFdwStmt
|
4122
4126
|
{
|
4123
4127
|
ProtobufCMessage base;
|
4124
4128
|
char *fdwname;
|
@@ -4132,7 +4136,7 @@ struct _PgQuery__AlterFdwStmt
|
|
4132
4136
|
, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL }
|
4133
4137
|
|
4134
4138
|
|
4135
|
-
struct
|
4139
|
+
struct PgQuery__CreateForeignServerStmt
|
4136
4140
|
{
|
4137
4141
|
ProtobufCMessage base;
|
4138
4142
|
char *servername;
|
@@ -4148,7 +4152,7 @@ struct _PgQuery__CreateForeignServerStmt
|
|
4148
4152
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0,NULL }
|
4149
4153
|
|
4150
4154
|
|
4151
|
-
struct
|
4155
|
+
struct PgQuery__AlterForeignServerStmt
|
4152
4156
|
{
|
4153
4157
|
ProtobufCMessage base;
|
4154
4158
|
char *servername;
|
@@ -4162,7 +4166,7 @@ struct _PgQuery__AlterForeignServerStmt
|
|
4162
4166
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0 }
|
4163
4167
|
|
4164
4168
|
|
4165
|
-
struct
|
4169
|
+
struct PgQuery__CreateUserMappingStmt
|
4166
4170
|
{
|
4167
4171
|
ProtobufCMessage base;
|
4168
4172
|
PgQuery__RoleSpec *user;
|
@@ -4176,7 +4180,7 @@ struct _PgQuery__CreateUserMappingStmt
|
|
4176
4180
|
, NULL, (char *)protobuf_c_empty_string, 0, 0,NULL }
|
4177
4181
|
|
4178
4182
|
|
4179
|
-
struct
|
4183
|
+
struct PgQuery__AlterUserMappingStmt
|
4180
4184
|
{
|
4181
4185
|
ProtobufCMessage base;
|
4182
4186
|
PgQuery__RoleSpec *user;
|
@@ -4189,7 +4193,7 @@ struct _PgQuery__AlterUserMappingStmt
|
|
4189
4193
|
, NULL, (char *)protobuf_c_empty_string, 0,NULL }
|
4190
4194
|
|
4191
4195
|
|
4192
|
-
struct
|
4196
|
+
struct PgQuery__DropUserMappingStmt
|
4193
4197
|
{
|
4194
4198
|
ProtobufCMessage base;
|
4195
4199
|
PgQuery__RoleSpec *user;
|
@@ -4201,7 +4205,7 @@ struct _PgQuery__DropUserMappingStmt
|
|
4201
4205
|
, NULL, (char *)protobuf_c_empty_string, 0 }
|
4202
4206
|
|
4203
4207
|
|
4204
|
-
struct
|
4208
|
+
struct PgQuery__AlterTableSpaceOptionsStmt
|
4205
4209
|
{
|
4206
4210
|
ProtobufCMessage base;
|
4207
4211
|
char *tablespacename;
|
@@ -4214,7 +4218,7 @@ struct _PgQuery__AlterTableSpaceOptionsStmt
|
|
4214
4218
|
, (char *)protobuf_c_empty_string, 0,NULL, 0 }
|
4215
4219
|
|
4216
4220
|
|
4217
|
-
struct
|
4221
|
+
struct PgQuery__AlterTableMoveAllStmt
|
4218
4222
|
{
|
4219
4223
|
ProtobufCMessage base;
|
4220
4224
|
char *orig_tablespacename;
|
@@ -4229,7 +4233,7 @@ struct _PgQuery__AlterTableMoveAllStmt
|
|
4229
4233
|
, (char *)protobuf_c_empty_string, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, 0 }
|
4230
4234
|
|
4231
4235
|
|
4232
|
-
struct
|
4236
|
+
struct PgQuery__SecLabelStmt
|
4233
4237
|
{
|
4234
4238
|
ProtobufCMessage base;
|
4235
4239
|
PgQuery__ObjectType objtype;
|
@@ -4242,7 +4246,7 @@ struct _PgQuery__SecLabelStmt
|
|
4242
4246
|
, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string }
|
4243
4247
|
|
4244
4248
|
|
4245
|
-
struct
|
4249
|
+
struct PgQuery__CreateForeignTableStmt
|
4246
4250
|
{
|
4247
4251
|
ProtobufCMessage base;
|
4248
4252
|
PgQuery__CreateStmt *base_stmt;
|
@@ -4255,7 +4259,7 @@ struct _PgQuery__CreateForeignTableStmt
|
|
4255
4259
|
, NULL, (char *)protobuf_c_empty_string, 0,NULL }
|
4256
4260
|
|
4257
4261
|
|
4258
|
-
struct
|
4262
|
+
struct PgQuery__ImportForeignSchemaStmt
|
4259
4263
|
{
|
4260
4264
|
ProtobufCMessage base;
|
4261
4265
|
char *server_name;
|
@@ -4272,7 +4276,7 @@ struct _PgQuery__ImportForeignSchemaStmt
|
|
4272
4276
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, PG_QUERY__IMPORT_FOREIGN_SCHEMA_TYPE__IMPORT_FOREIGN_SCHEMA_TYPE_UNDEFINED, 0,NULL, 0,NULL }
|
4273
4277
|
|
4274
4278
|
|
4275
|
-
struct
|
4279
|
+
struct PgQuery__CreateExtensionStmt
|
4276
4280
|
{
|
4277
4281
|
ProtobufCMessage base;
|
4278
4282
|
char *extname;
|
@@ -4285,7 +4289,7 @@ struct _PgQuery__CreateExtensionStmt
|
|
4285
4289
|
, (char *)protobuf_c_empty_string, 0, 0,NULL }
|
4286
4290
|
|
4287
4291
|
|
4288
|
-
struct
|
4292
|
+
struct PgQuery__AlterExtensionStmt
|
4289
4293
|
{
|
4290
4294
|
ProtobufCMessage base;
|
4291
4295
|
char *extname;
|
@@ -4297,7 +4301,7 @@ struct _PgQuery__AlterExtensionStmt
|
|
4297
4301
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
4298
4302
|
|
4299
4303
|
|
4300
|
-
struct
|
4304
|
+
struct PgQuery__AlterExtensionContentsStmt
|
4301
4305
|
{
|
4302
4306
|
ProtobufCMessage base;
|
4303
4307
|
char *extname;
|
@@ -4310,7 +4314,7 @@ struct _PgQuery__AlterExtensionContentsStmt
|
|
4310
4314
|
, (char *)protobuf_c_empty_string, 0, PG_QUERY__OBJECT_TYPE__OBJECT_TYPE_UNDEFINED, NULL }
|
4311
4315
|
|
4312
4316
|
|
4313
|
-
struct
|
4317
|
+
struct PgQuery__CreateEventTrigStmt
|
4314
4318
|
{
|
4315
4319
|
ProtobufCMessage base;
|
4316
4320
|
char *trigname;
|
@@ -4325,7 +4329,7 @@ struct _PgQuery__CreateEventTrigStmt
|
|
4325
4329
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL }
|
4326
4330
|
|
4327
4331
|
|
4328
|
-
struct
|
4332
|
+
struct PgQuery__AlterEventTrigStmt
|
4329
4333
|
{
|
4330
4334
|
ProtobufCMessage base;
|
4331
4335
|
char *trigname;
|
@@ -4336,7 +4340,7 @@ struct _PgQuery__AlterEventTrigStmt
|
|
4336
4340
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string }
|
4337
4341
|
|
4338
4342
|
|
4339
|
-
struct
|
4343
|
+
struct PgQuery__RefreshMatViewStmt
|
4340
4344
|
{
|
4341
4345
|
ProtobufCMessage base;
|
4342
4346
|
protobuf_c_boolean concurrent;
|
@@ -4348,7 +4352,7 @@ struct _PgQuery__RefreshMatViewStmt
|
|
4348
4352
|
, 0, 0, NULL }
|
4349
4353
|
|
4350
4354
|
|
4351
|
-
struct
|
4355
|
+
struct PgQuery__ReplicaIdentityStmt
|
4352
4356
|
{
|
4353
4357
|
ProtobufCMessage base;
|
4354
4358
|
char *identity_type;
|
@@ -4359,7 +4363,7 @@ struct _PgQuery__ReplicaIdentityStmt
|
|
4359
4363
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string }
|
4360
4364
|
|
4361
4365
|
|
4362
|
-
struct
|
4366
|
+
struct PgQuery__AlterSystemStmt
|
4363
4367
|
{
|
4364
4368
|
ProtobufCMessage base;
|
4365
4369
|
PgQuery__VariableSetStmt *setstmt;
|
@@ -4369,7 +4373,7 @@ struct _PgQuery__AlterSystemStmt
|
|
4369
4373
|
, NULL }
|
4370
4374
|
|
4371
4375
|
|
4372
|
-
struct
|
4376
|
+
struct PgQuery__CreatePolicyStmt
|
4373
4377
|
{
|
4374
4378
|
ProtobufCMessage base;
|
4375
4379
|
char *policy_name;
|
@@ -4386,7 +4390,7 @@ struct _PgQuery__CreatePolicyStmt
|
|
4386
4390
|
, (char *)protobuf_c_empty_string, NULL, (char *)protobuf_c_empty_string, 0, 0,NULL, NULL, NULL }
|
4387
4391
|
|
4388
4392
|
|
4389
|
-
struct
|
4393
|
+
struct PgQuery__AlterPolicyStmt
|
4390
4394
|
{
|
4391
4395
|
ProtobufCMessage base;
|
4392
4396
|
char *policy_name;
|
@@ -4401,7 +4405,7 @@ struct _PgQuery__AlterPolicyStmt
|
|
4401
4405
|
, (char *)protobuf_c_empty_string, NULL, 0,NULL, NULL, NULL }
|
4402
4406
|
|
4403
4407
|
|
4404
|
-
struct
|
4408
|
+
struct PgQuery__CreateTransformStmt
|
4405
4409
|
{
|
4406
4410
|
ProtobufCMessage base;
|
4407
4411
|
protobuf_c_boolean replace;
|
@@ -4415,7 +4419,7 @@ struct _PgQuery__CreateTransformStmt
|
|
4415
4419
|
, 0, NULL, (char *)protobuf_c_empty_string, NULL, NULL }
|
4416
4420
|
|
4417
4421
|
|
4418
|
-
struct
|
4422
|
+
struct PgQuery__CreateAmStmt
|
4419
4423
|
{
|
4420
4424
|
ProtobufCMessage base;
|
4421
4425
|
char *amname;
|
@@ -4428,7 +4432,7 @@ struct _PgQuery__CreateAmStmt
|
|
4428
4432
|
, (char *)protobuf_c_empty_string, 0,NULL, (char *)protobuf_c_empty_string }
|
4429
4433
|
|
4430
4434
|
|
4431
|
-
struct
|
4435
|
+
struct PgQuery__CreatePublicationStmt
|
4432
4436
|
{
|
4433
4437
|
ProtobufCMessage base;
|
4434
4438
|
char *pubname;
|
@@ -4443,7 +4447,7 @@ struct _PgQuery__CreatePublicationStmt
|
|
4443
4447
|
, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0 }
|
4444
4448
|
|
4445
4449
|
|
4446
|
-
struct
|
4450
|
+
struct PgQuery__AlterPublicationStmt
|
4447
4451
|
{
|
4448
4452
|
ProtobufCMessage base;
|
4449
4453
|
char *pubname;
|
@@ -4459,7 +4463,7 @@ struct _PgQuery__AlterPublicationStmt
|
|
4459
4463
|
, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, PG_QUERY__DEF_ELEM_ACTION__DEF_ELEM_ACTION_UNDEFINED }
|
4460
4464
|
|
4461
4465
|
|
4462
|
-
struct
|
4466
|
+
struct PgQuery__CreateSubscriptionStmt
|
4463
4467
|
{
|
4464
4468
|
ProtobufCMessage base;
|
4465
4469
|
char *subname;
|
@@ -4474,7 +4478,7 @@ struct _PgQuery__CreateSubscriptionStmt
|
|
4474
4478
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL }
|
4475
4479
|
|
4476
4480
|
|
4477
|
-
struct
|
4481
|
+
struct PgQuery__AlterSubscriptionStmt
|
4478
4482
|
{
|
4479
4483
|
ProtobufCMessage base;
|
4480
4484
|
PgQuery__AlterSubscriptionType kind;
|
@@ -4490,7 +4494,7 @@ struct _PgQuery__AlterSubscriptionStmt
|
|
4490
4494
|
, PG_QUERY__ALTER_SUBSCRIPTION_TYPE__ALTER_SUBSCRIPTION_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL }
|
4491
4495
|
|
4492
4496
|
|
4493
|
-
struct
|
4497
|
+
struct PgQuery__DropSubscriptionStmt
|
4494
4498
|
{
|
4495
4499
|
ProtobufCMessage base;
|
4496
4500
|
char *subname;
|
@@ -4502,7 +4506,7 @@ struct _PgQuery__DropSubscriptionStmt
|
|
4502
4506
|
, (char *)protobuf_c_empty_string, 0, PG_QUERY__DROP_BEHAVIOR__DROP_BEHAVIOR_UNDEFINED }
|
4503
4507
|
|
4504
4508
|
|
4505
|
-
struct
|
4509
|
+
struct PgQuery__CreateStatsStmt
|
4506
4510
|
{
|
4507
4511
|
ProtobufCMessage base;
|
4508
4512
|
size_t n_defnames;
|
@@ -4521,7 +4525,7 @@ struct _PgQuery__CreateStatsStmt
|
|
4521
4525
|
, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, 0 }
|
4522
4526
|
|
4523
4527
|
|
4524
|
-
struct
|
4528
|
+
struct PgQuery__AlterCollationStmt
|
4525
4529
|
{
|
4526
4530
|
ProtobufCMessage base;
|
4527
4531
|
size_t n_collname;
|
@@ -4532,7 +4536,7 @@ struct _PgQuery__AlterCollationStmt
|
|
4532
4536
|
, 0,NULL }
|
4533
4537
|
|
4534
4538
|
|
4535
|
-
struct
|
4539
|
+
struct PgQuery__CallStmt
|
4536
4540
|
{
|
4537
4541
|
ProtobufCMessage base;
|
4538
4542
|
PgQuery__FuncCall *funccall;
|
@@ -4543,7 +4547,7 @@ struct _PgQuery__CallStmt
|
|
4543
4547
|
, NULL, NULL }
|
4544
4548
|
|
4545
4549
|
|
4546
|
-
struct
|
4550
|
+
struct PgQuery__AlterStatsStmt
|
4547
4551
|
{
|
4548
4552
|
ProtobufCMessage base;
|
4549
4553
|
size_t n_defnames;
|
@@ -4556,7 +4560,7 @@ struct _PgQuery__AlterStatsStmt
|
|
4556
4560
|
, 0,NULL, 0, 0 }
|
4557
4561
|
|
4558
4562
|
|
4559
|
-
struct
|
4563
|
+
struct PgQuery__AExpr
|
4560
4564
|
{
|
4561
4565
|
ProtobufCMessage base;
|
4562
4566
|
PgQuery__AExprKind kind;
|
@@ -4571,7 +4575,7 @@ struct _PgQuery__AExpr
|
|
4571
4575
|
, PG_QUERY__A__EXPR__KIND__A_EXPR_KIND_UNDEFINED, 0,NULL, NULL, NULL, 0 }
|
4572
4576
|
|
4573
4577
|
|
4574
|
-
struct
|
4578
|
+
struct PgQuery__ColumnRef
|
4575
4579
|
{
|
4576
4580
|
ProtobufCMessage base;
|
4577
4581
|
size_t n_fields;
|
@@ -4583,7 +4587,7 @@ struct _PgQuery__ColumnRef
|
|
4583
4587
|
, 0,NULL, 0 }
|
4584
4588
|
|
4585
4589
|
|
4586
|
-
struct
|
4590
|
+
struct PgQuery__ParamRef
|
4587
4591
|
{
|
4588
4592
|
ProtobufCMessage base;
|
4589
4593
|
int32_t number;
|
@@ -4594,7 +4598,7 @@ struct _PgQuery__ParamRef
|
|
4594
4598
|
, 0, 0 }
|
4595
4599
|
|
4596
4600
|
|
4597
|
-
struct
|
4601
|
+
struct PgQuery__AConst
|
4598
4602
|
{
|
4599
4603
|
ProtobufCMessage base;
|
4600
4604
|
PgQuery__Node *val;
|
@@ -4605,7 +4609,7 @@ struct _PgQuery__AConst
|
|
4605
4609
|
, NULL, 0 }
|
4606
4610
|
|
4607
4611
|
|
4608
|
-
struct
|
4612
|
+
struct PgQuery__FuncCall
|
4609
4613
|
{
|
4610
4614
|
ProtobufCMessage base;
|
4611
4615
|
size_t n_funcname;
|
@@ -4627,7 +4631,7 @@ struct _PgQuery__FuncCall
|
|
4627
4631
|
, 0,NULL, 0,NULL, 0,NULL, NULL, 0, 0, 0, 0, NULL, 0 }
|
4628
4632
|
|
4629
4633
|
|
4630
|
-
struct
|
4634
|
+
struct PgQuery__AStar
|
4631
4635
|
{
|
4632
4636
|
ProtobufCMessage base;
|
4633
4637
|
};
|
@@ -4636,7 +4640,7 @@ struct _PgQuery__AStar
|
|
4636
4640
|
}
|
4637
4641
|
|
4638
4642
|
|
4639
|
-
struct
|
4643
|
+
struct PgQuery__AIndices
|
4640
4644
|
{
|
4641
4645
|
ProtobufCMessage base;
|
4642
4646
|
protobuf_c_boolean is_slice;
|
@@ -4648,7 +4652,7 @@ struct _PgQuery__AIndices
|
|
4648
4652
|
, 0, NULL, NULL }
|
4649
4653
|
|
4650
4654
|
|
4651
|
-
struct
|
4655
|
+
struct PgQuery__AIndirection
|
4652
4656
|
{
|
4653
4657
|
ProtobufCMessage base;
|
4654
4658
|
PgQuery__Node *arg;
|
@@ -4660,7 +4664,7 @@ struct _PgQuery__AIndirection
|
|
4660
4664
|
, NULL, 0,NULL }
|
4661
4665
|
|
4662
4666
|
|
4663
|
-
struct
|
4667
|
+
struct PgQuery__AArrayExpr
|
4664
4668
|
{
|
4665
4669
|
ProtobufCMessage base;
|
4666
4670
|
size_t n_elements;
|
@@ -4672,7 +4676,7 @@ struct _PgQuery__AArrayExpr
|
|
4672
4676
|
, 0,NULL, 0 }
|
4673
4677
|
|
4674
4678
|
|
4675
|
-
struct
|
4679
|
+
struct PgQuery__ResTarget
|
4676
4680
|
{
|
4677
4681
|
ProtobufCMessage base;
|
4678
4682
|
char *name;
|
@@ -4686,7 +4690,7 @@ struct _PgQuery__ResTarget
|
|
4686
4690
|
, (char *)protobuf_c_empty_string, 0,NULL, NULL, 0 }
|
4687
4691
|
|
4688
4692
|
|
4689
|
-
struct
|
4693
|
+
struct PgQuery__MultiAssignRef
|
4690
4694
|
{
|
4691
4695
|
ProtobufCMessage base;
|
4692
4696
|
PgQuery__Node *source;
|
@@ -4698,7 +4702,7 @@ struct _PgQuery__MultiAssignRef
|
|
4698
4702
|
, NULL, 0, 0 }
|
4699
4703
|
|
4700
4704
|
|
4701
|
-
struct
|
4705
|
+
struct PgQuery__TypeCast
|
4702
4706
|
{
|
4703
4707
|
ProtobufCMessage base;
|
4704
4708
|
PgQuery__Node *arg;
|
@@ -4710,7 +4714,7 @@ struct _PgQuery__TypeCast
|
|
4710
4714
|
, NULL, NULL, 0 }
|
4711
4715
|
|
4712
4716
|
|
4713
|
-
struct
|
4717
|
+
struct PgQuery__CollateClause
|
4714
4718
|
{
|
4715
4719
|
ProtobufCMessage base;
|
4716
4720
|
PgQuery__Node *arg;
|
@@ -4723,7 +4727,7 @@ struct _PgQuery__CollateClause
|
|
4723
4727
|
, NULL, 0,NULL, 0 }
|
4724
4728
|
|
4725
4729
|
|
4726
|
-
struct
|
4730
|
+
struct PgQuery__SortBy
|
4727
4731
|
{
|
4728
4732
|
ProtobufCMessage base;
|
4729
4733
|
PgQuery__Node *node;
|
@@ -4738,7 +4742,7 @@ struct _PgQuery__SortBy
|
|
4738
4742
|
, NULL, PG_QUERY__SORT_BY_DIR__SORT_BY_DIR_UNDEFINED, PG_QUERY__SORT_BY_NULLS__SORT_BY_NULLS_UNDEFINED, 0,NULL, 0 }
|
4739
4743
|
|
4740
4744
|
|
4741
|
-
struct
|
4745
|
+
struct PgQuery__WindowDef
|
4742
4746
|
{
|
4743
4747
|
ProtobufCMessage base;
|
4744
4748
|
char *name;
|
@@ -4757,7 +4761,7 @@ struct _PgQuery__WindowDef
|
|
4757
4761
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0 }
|
4758
4762
|
|
4759
4763
|
|
4760
|
-
struct
|
4764
|
+
struct PgQuery__RangeSubselect
|
4761
4765
|
{
|
4762
4766
|
ProtobufCMessage base;
|
4763
4767
|
protobuf_c_boolean lateral;
|
@@ -4769,7 +4773,7 @@ struct _PgQuery__RangeSubselect
|
|
4769
4773
|
, 0, NULL, NULL }
|
4770
4774
|
|
4771
4775
|
|
4772
|
-
struct
|
4776
|
+
struct PgQuery__RangeFunction
|
4773
4777
|
{
|
4774
4778
|
ProtobufCMessage base;
|
4775
4779
|
protobuf_c_boolean lateral;
|
@@ -4786,7 +4790,7 @@ struct _PgQuery__RangeFunction
|
|
4786
4790
|
, 0, 0, 0, 0,NULL, NULL, 0,NULL }
|
4787
4791
|
|
4788
4792
|
|
4789
|
-
struct
|
4793
|
+
struct PgQuery__RangeTableSample
|
4790
4794
|
{
|
4791
4795
|
ProtobufCMessage base;
|
4792
4796
|
PgQuery__Node *relation;
|
@@ -4802,7 +4806,7 @@ struct _PgQuery__RangeTableSample
|
|
4802
4806
|
, NULL, 0,NULL, 0,NULL, NULL, 0 }
|
4803
4807
|
|
4804
4808
|
|
4805
|
-
struct
|
4809
|
+
struct PgQuery__RangeTableFunc
|
4806
4810
|
{
|
4807
4811
|
ProtobufCMessage base;
|
4808
4812
|
protobuf_c_boolean lateral;
|
@@ -4820,7 +4824,7 @@ struct _PgQuery__RangeTableFunc
|
|
4820
4824
|
, 0, NULL, NULL, 0,NULL, 0,NULL, NULL, 0 }
|
4821
4825
|
|
4822
4826
|
|
4823
|
-
struct
|
4827
|
+
struct PgQuery__RangeTableFuncCol
|
4824
4828
|
{
|
4825
4829
|
ProtobufCMessage base;
|
4826
4830
|
char *colname;
|
@@ -4836,7 +4840,7 @@ struct _PgQuery__RangeTableFuncCol
|
|
4836
4840
|
, (char *)protobuf_c_empty_string, NULL, 0, 0, NULL, NULL, 0 }
|
4837
4841
|
|
4838
4842
|
|
4839
|
-
struct
|
4843
|
+
struct PgQuery__TypeName
|
4840
4844
|
{
|
4841
4845
|
ProtobufCMessage base;
|
4842
4846
|
size_t n_names;
|
@@ -4856,7 +4860,7 @@ struct _PgQuery__TypeName
|
|
4856
4860
|
, 0,NULL, 0, 0, 0, 0,NULL, 0, 0,NULL, 0 }
|
4857
4861
|
|
4858
4862
|
|
4859
|
-
struct
|
4863
|
+
struct PgQuery__ColumnDef
|
4860
4864
|
{
|
4861
4865
|
ProtobufCMessage base;
|
4862
4866
|
char *colname;
|
@@ -4884,7 +4888,7 @@ struct _PgQuery__ColumnDef
|
|
4884
4888
|
, (char *)protobuf_c_empty_string, NULL, 0, 0, 0, 0, (char *)protobuf_c_empty_string, NULL, NULL, (char *)protobuf_c_empty_string, NULL, (char *)protobuf_c_empty_string, NULL, 0, 0,NULL, 0,NULL, 0 }
|
4885
4889
|
|
4886
4890
|
|
4887
|
-
struct
|
4891
|
+
struct PgQuery__IndexElem
|
4888
4892
|
{
|
4889
4893
|
ProtobufCMessage base;
|
4890
4894
|
char *name;
|
@@ -4904,7 +4908,7 @@ struct _PgQuery__IndexElem
|
|
4904
4908
|
, (char *)protobuf_c_empty_string, NULL, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0,NULL, PG_QUERY__SORT_BY_DIR__SORT_BY_DIR_UNDEFINED, PG_QUERY__SORT_BY_NULLS__SORT_BY_NULLS_UNDEFINED }
|
4905
4909
|
|
4906
4910
|
|
4907
|
-
struct
|
4911
|
+
struct PgQuery__Constraint
|
4908
4912
|
{
|
4909
4913
|
ProtobufCMessage base;
|
4910
4914
|
PgQuery__ConstrType contype;
|
@@ -4948,7 +4952,7 @@ struct _PgQuery__Constraint
|
|
4948
4952
|
, PG_QUERY__CONSTR_TYPE__CONSTR_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, 0, 0, 0, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0, 0, 0 }
|
4949
4953
|
|
4950
4954
|
|
4951
|
-
struct
|
4955
|
+
struct PgQuery__DefElem
|
4952
4956
|
{
|
4953
4957
|
ProtobufCMessage base;
|
4954
4958
|
char *defnamespace;
|
@@ -4962,7 +4966,7 @@ struct _PgQuery__DefElem
|
|
4962
4966
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, NULL, PG_QUERY__DEF_ELEM_ACTION__DEF_ELEM_ACTION_UNDEFINED, 0 }
|
4963
4967
|
|
4964
4968
|
|
4965
|
-
struct
|
4969
|
+
struct PgQuery__RangeTblEntry
|
4966
4970
|
{
|
4967
4971
|
ProtobufCMessage base;
|
4968
4972
|
PgQuery__RTEKind rtekind;
|
@@ -5020,7 +5024,7 @@ struct _PgQuery__RangeTblEntry
|
|
5020
5024
|
, PG_QUERY__RTEKIND__RTEKIND_UNDEFINED, 0, (char *)protobuf_c_empty_string, 0, NULL, NULL, 0, PG_QUERY__JOIN_TYPE__JOIN_TYPE_UNDEFINED, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, NULL, NULL, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL }
|
5021
5025
|
|
5022
5026
|
|
5023
|
-
struct
|
5027
|
+
struct PgQuery__RangeTblFunction
|
5024
5028
|
{
|
5025
5029
|
ProtobufCMessage base;
|
5026
5030
|
PgQuery__Node *funcexpr;
|
@@ -5041,7 +5045,7 @@ struct _PgQuery__RangeTblFunction
|
|
5041
5045
|
, NULL, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL }
|
5042
5046
|
|
5043
5047
|
|
5044
|
-
struct
|
5048
|
+
struct PgQuery__TableSampleClause
|
5045
5049
|
{
|
5046
5050
|
ProtobufCMessage base;
|
5047
5051
|
uint32_t tsmhandler;
|
@@ -5054,7 +5058,7 @@ struct _PgQuery__TableSampleClause
|
|
5054
5058
|
, 0, 0,NULL, NULL }
|
5055
5059
|
|
5056
5060
|
|
5057
|
-
struct
|
5061
|
+
struct PgQuery__WithCheckOption
|
5058
5062
|
{
|
5059
5063
|
ProtobufCMessage base;
|
5060
5064
|
PgQuery__WCOKind kind;
|
@@ -5068,7 +5072,7 @@ struct _PgQuery__WithCheckOption
|
|
5068
5072
|
, PG_QUERY__WCOKIND__WCOKIND_UNDEFINED, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, NULL, 0 }
|
5069
5073
|
|
5070
5074
|
|
5071
|
-
struct
|
5075
|
+
struct PgQuery__SortGroupClause
|
5072
5076
|
{
|
5073
5077
|
ProtobufCMessage base;
|
5074
5078
|
uint32_t tle_sort_group_ref;
|
@@ -5082,7 +5086,7 @@ struct _PgQuery__SortGroupClause
|
|
5082
5086
|
, 0, 0, 0, 0, 0 }
|
5083
5087
|
|
5084
5088
|
|
5085
|
-
struct
|
5089
|
+
struct PgQuery__GroupingSet
|
5086
5090
|
{
|
5087
5091
|
ProtobufCMessage base;
|
5088
5092
|
PgQuery__GroupingSetKind kind;
|
@@ -5095,7 +5099,7 @@ struct _PgQuery__GroupingSet
|
|
5095
5099
|
, PG_QUERY__GROUPING_SET_KIND__GROUPING_SET_KIND_UNDEFINED, 0,NULL, 0 }
|
5096
5100
|
|
5097
5101
|
|
5098
|
-
struct
|
5102
|
+
struct PgQuery__WindowClause
|
5099
5103
|
{
|
5100
5104
|
ProtobufCMessage base;
|
5101
5105
|
char *name;
|
@@ -5120,7 +5124,7 @@ struct _PgQuery__WindowClause
|
|
5120
5124
|
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0 }
|
5121
5125
|
|
5122
5126
|
|
5123
|
-
struct
|
5127
|
+
struct PgQuery__ObjectWithArgs
|
5124
5128
|
{
|
5125
5129
|
ProtobufCMessage base;
|
5126
5130
|
size_t n_objname;
|
@@ -5134,7 +5138,7 @@ struct _PgQuery__ObjectWithArgs
|
|
5134
5138
|
, 0,NULL, 0,NULL, 0 }
|
5135
5139
|
|
5136
5140
|
|
5137
|
-
struct
|
5141
|
+
struct PgQuery__AccessPriv
|
5138
5142
|
{
|
5139
5143
|
ProtobufCMessage base;
|
5140
5144
|
char *priv_name;
|
@@ -5146,7 +5150,7 @@ struct _PgQuery__AccessPriv
|
|
5146
5150
|
, (char *)protobuf_c_empty_string, 0,NULL }
|
5147
5151
|
|
5148
5152
|
|
5149
|
-
struct
|
5153
|
+
struct PgQuery__CreateOpClassItem
|
5150
5154
|
{
|
5151
5155
|
ProtobufCMessage base;
|
5152
5156
|
int32_t itemtype;
|
@@ -5163,18 +5167,19 @@ struct _PgQuery__CreateOpClassItem
|
|
5163
5167
|
, 0, NULL, 0, 0,NULL, 0,NULL, NULL }
|
5164
5168
|
|
5165
5169
|
|
5166
|
-
struct
|
5170
|
+
struct PgQuery__TableLikeClause
|
5167
5171
|
{
|
5168
5172
|
ProtobufCMessage base;
|
5169
5173
|
PgQuery__RangeVar *relation;
|
5170
5174
|
uint32_t options;
|
5175
|
+
uint32_t relation_oid;
|
5171
5176
|
};
|
5172
5177
|
#define PG_QUERY__TABLE_LIKE_CLAUSE__INIT \
|
5173
5178
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__table_like_clause__descriptor) \
|
5174
|
-
, NULL, 0 }
|
5179
|
+
, NULL, 0, 0 }
|
5175
5180
|
|
5176
5181
|
|
5177
|
-
struct
|
5182
|
+
struct PgQuery__FunctionParameter
|
5178
5183
|
{
|
5179
5184
|
ProtobufCMessage base;
|
5180
5185
|
char *name;
|
@@ -5187,7 +5192,7 @@ struct _PgQuery__FunctionParameter
|
|
5187
5192
|
, (char *)protobuf_c_empty_string, NULL, PG_QUERY__FUNCTION_PARAMETER_MODE__FUNCTION_PARAMETER_MODE_UNDEFINED, NULL }
|
5188
5193
|
|
5189
5194
|
|
5190
|
-
struct
|
5195
|
+
struct PgQuery__LockingClause
|
5191
5196
|
{
|
5192
5197
|
ProtobufCMessage base;
|
5193
5198
|
size_t n_locked_rels;
|
@@ -5200,7 +5205,7 @@ struct _PgQuery__LockingClause
|
|
5200
5205
|
, 0,NULL, PG_QUERY__LOCK_CLAUSE_STRENGTH__LOCK_CLAUSE_STRENGTH_UNDEFINED, PG_QUERY__LOCK_WAIT_POLICY__LOCK_WAIT_POLICY_UNDEFINED }
|
5201
5206
|
|
5202
5207
|
|
5203
|
-
struct
|
5208
|
+
struct PgQuery__RowMarkClause
|
5204
5209
|
{
|
5205
5210
|
ProtobufCMessage base;
|
5206
5211
|
uint32_t rti;
|
@@ -5213,7 +5218,7 @@ struct _PgQuery__RowMarkClause
|
|
5213
5218
|
, 0, PG_QUERY__LOCK_CLAUSE_STRENGTH__LOCK_CLAUSE_STRENGTH_UNDEFINED, PG_QUERY__LOCK_WAIT_POLICY__LOCK_WAIT_POLICY_UNDEFINED, 0 }
|
5214
5219
|
|
5215
5220
|
|
5216
|
-
struct
|
5221
|
+
struct PgQuery__XmlSerialize
|
5217
5222
|
{
|
5218
5223
|
ProtobufCMessage base;
|
5219
5224
|
PgQuery__XmlOptionType xmloption;
|
@@ -5226,7 +5231,7 @@ struct _PgQuery__XmlSerialize
|
|
5226
5231
|
, PG_QUERY__XML_OPTION_TYPE__XML_OPTION_TYPE_UNDEFINED, NULL, NULL, 0 }
|
5227
5232
|
|
5228
5233
|
|
5229
|
-
struct
|
5234
|
+
struct PgQuery__WithClause
|
5230
5235
|
{
|
5231
5236
|
ProtobufCMessage base;
|
5232
5237
|
size_t n_ctes;
|
@@ -5239,7 +5244,7 @@ struct _PgQuery__WithClause
|
|
5239
5244
|
, 0,NULL, 0, 0 }
|
5240
5245
|
|
5241
5246
|
|
5242
|
-
struct
|
5247
|
+
struct PgQuery__InferClause
|
5243
5248
|
{
|
5244
5249
|
ProtobufCMessage base;
|
5245
5250
|
size_t n_index_elems;
|
@@ -5253,7 +5258,7 @@ struct _PgQuery__InferClause
|
|
5253
5258
|
, 0,NULL, NULL, (char *)protobuf_c_empty_string, 0 }
|
5254
5259
|
|
5255
5260
|
|
5256
|
-
struct
|
5261
|
+
struct PgQuery__OnConflictClause
|
5257
5262
|
{
|
5258
5263
|
ProtobufCMessage base;
|
5259
5264
|
PgQuery__OnConflictAction action;
|
@@ -5268,7 +5273,7 @@ struct _PgQuery__OnConflictClause
|
|
5268
5273
|
, PG_QUERY__ON_CONFLICT_ACTION__ON_CONFLICT_ACTION_UNDEFINED, NULL, 0,NULL, NULL, 0 }
|
5269
5274
|
|
5270
5275
|
|
5271
|
-
struct
|
5276
|
+
struct PgQuery__CommonTableExpr
|
5272
5277
|
{
|
5273
5278
|
ProtobufCMessage base;
|
5274
5279
|
char *ctename;
|
@@ -5293,7 +5298,7 @@ struct _PgQuery__CommonTableExpr
|
|
5293
5298
|
, (char *)protobuf_c_empty_string, 0,NULL, PG_QUERY__CTEMATERIALIZE__CTEMATERIALIZE_UNDEFINED, NULL, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL }
|
5294
5299
|
|
5295
5300
|
|
5296
|
-
struct
|
5301
|
+
struct PgQuery__RoleSpec
|
5297
5302
|
{
|
5298
5303
|
ProtobufCMessage base;
|
5299
5304
|
PgQuery__RoleSpecType roletype;
|
@@ -5305,7 +5310,7 @@ struct _PgQuery__RoleSpec
|
|
5305
5310
|
, PG_QUERY__ROLE_SPEC_TYPE__ROLE_SPEC_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0 }
|
5306
5311
|
|
5307
5312
|
|
5308
|
-
struct
|
5313
|
+
struct PgQuery__TriggerTransition
|
5309
5314
|
{
|
5310
5315
|
ProtobufCMessage base;
|
5311
5316
|
char *name;
|
@@ -5317,7 +5322,7 @@ struct _PgQuery__TriggerTransition
|
|
5317
5322
|
, (char *)protobuf_c_empty_string, 0, 0 }
|
5318
5323
|
|
5319
5324
|
|
5320
|
-
struct
|
5325
|
+
struct PgQuery__PartitionElem
|
5321
5326
|
{
|
5322
5327
|
ProtobufCMessage base;
|
5323
5328
|
char *name;
|
@@ -5333,7 +5338,7 @@ struct _PgQuery__PartitionElem
|
|
5333
5338
|
, (char *)protobuf_c_empty_string, NULL, 0,NULL, 0,NULL, 0 }
|
5334
5339
|
|
5335
5340
|
|
5336
|
-
struct
|
5341
|
+
struct PgQuery__PartitionSpec
|
5337
5342
|
{
|
5338
5343
|
ProtobufCMessage base;
|
5339
5344
|
char *strategy;
|
@@ -5346,7 +5351,7 @@ struct _PgQuery__PartitionSpec
|
|
5346
5351
|
, (char *)protobuf_c_empty_string, 0,NULL, 0 }
|
5347
5352
|
|
5348
5353
|
|
5349
|
-
struct
|
5354
|
+
struct PgQuery__PartitionBoundSpec
|
5350
5355
|
{
|
5351
5356
|
ProtobufCMessage base;
|
5352
5357
|
char *strategy;
|
@@ -5366,7 +5371,7 @@ struct _PgQuery__PartitionBoundSpec
|
|
5366
5371
|
, (char *)protobuf_c_empty_string, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0 }
|
5367
5372
|
|
5368
5373
|
|
5369
|
-
struct
|
5374
|
+
struct PgQuery__PartitionRangeDatum
|
5370
5375
|
{
|
5371
5376
|
ProtobufCMessage base;
|
5372
5377
|
PgQuery__PartitionRangeDatumKind kind;
|
@@ -5378,7 +5383,7 @@ struct _PgQuery__PartitionRangeDatum
|
|
5378
5383
|
, PG_QUERY__PARTITION_RANGE_DATUM_KIND__PARTITION_RANGE_DATUM_KIND_UNDEFINED, NULL, 0 }
|
5379
5384
|
|
5380
5385
|
|
5381
|
-
struct
|
5386
|
+
struct PgQuery__PartitionCmd
|
5382
5387
|
{
|
5383
5388
|
ProtobufCMessage base;
|
5384
5389
|
PgQuery__RangeVar *name;
|
@@ -5389,7 +5394,7 @@ struct _PgQuery__PartitionCmd
|
|
5389
5394
|
, NULL, NULL }
|
5390
5395
|
|
5391
5396
|
|
5392
|
-
struct
|
5397
|
+
struct PgQuery__VacuumRelation
|
5393
5398
|
{
|
5394
5399
|
ProtobufCMessage base;
|
5395
5400
|
PgQuery__RangeVar *relation;
|
@@ -5402,7 +5407,7 @@ struct _PgQuery__VacuumRelation
|
|
5402
5407
|
, NULL, 0, 0,NULL }
|
5403
5408
|
|
5404
5409
|
|
5405
|
-
struct
|
5410
|
+
struct PgQuery__InlineCodeBlock
|
5406
5411
|
{
|
5407
5412
|
ProtobufCMessage base;
|
5408
5413
|
char *source_text;
|
@@ -5415,7 +5420,7 @@ struct _PgQuery__InlineCodeBlock
|
|
5415
5420
|
, (char *)protobuf_c_empty_string, 0, 0, 0 }
|
5416
5421
|
|
5417
5422
|
|
5418
|
-
struct
|
5423
|
+
struct PgQuery__CallContext
|
5419
5424
|
{
|
5420
5425
|
ProtobufCMessage base;
|
5421
5426
|
protobuf_c_boolean atomic;
|
@@ -5425,7 +5430,7 @@ struct _PgQuery__CallContext
|
|
5425
5430
|
, 0 }
|
5426
5431
|
|
5427
5432
|
|
5428
|
-
struct
|
5433
|
+
struct PgQuery__ScanToken
|
5429
5434
|
{
|
5430
5435
|
ProtobufCMessage base;
|
5431
5436
|
int32_t start;
|