Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cb1ff1e

Browse files
committed
Remove some unnecessary quote marks from catalog DATA lines.
This has no functional impact whatsoever. However, it causes these unnecessary quote marks to disappear from the generated postgres.bki file, making it easier to verify that the upcoming bootstrap data conversion patch doesn't change the generated file.
1 parent 3cabe38 commit cb1ff1e

10 files changed

+34
-34
lines changed

src/include/catalog/pg_aggregate.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ DATA(insert ( 3527 n 0 enum_smaller - enum_smaller - - - - - f f r
216216
DATA(insert ( 3565 n 0 network_smaller - network_smaller - - - - - f f r r 1203 869 0 0 0 _null_ _null_ ));
217217

218218
/* count */
219-
DATA(insert ( 2147 n 0 int8inc_any - int8pl - - int8inc_any int8dec_any - f f r r 0 20 0 20 0 "0" "0" ));
220-
DATA(insert ( 2803 n 0 int8inc - int8pl - - int8inc int8dec - f f r r 0 20 0 20 0 "0" "0" ));
219+
DATA(insert ( 2147 n 0 int8inc_any - int8pl - - int8inc_any int8dec_any - f f r r 0 20 0 20 0 0 0 ));
220+
DATA(insert ( 2803 n 0 int8inc - int8pl - - int8inc int8dec - f f r r 0 20 0 20 0 0 0 ));
221221

222222
/* var_pop */
223223
DATA(insert ( 2718 n 0 int8_accum numeric_var_pop numeric_combine numeric_serialize numeric_deserialize int8_accum int8_accum_inv numeric_var_pop f f r r 0 2281 128 2281 128 _null_ _null_ ));
@@ -268,7 +268,7 @@ DATA(insert ( 2158 n 0 float8_accum float8_stddev_samp float8_combine -
268268
DATA(insert ( 2159 n 0 numeric_accum numeric_stddev_samp numeric_combine numeric_serialize numeric_deserialize numeric_accum numeric_accum_inv numeric_stddev_samp f f r r 0 2281 128 2281 128 _null_ _null_ ));
269269

270270
/* SQL2003 binary regression aggregates */
271-
DATA(insert ( 2818 n 0 int8inc_float8_float8 - int8pl - - - - - f f r r 0 20 0 0 0 "0" _null_ ));
271+
DATA(insert ( 2818 n 0 int8inc_float8_float8 - int8pl - - - - - f f r r 0 20 0 0 0 0 _null_ ));
272272
DATA(insert ( 2819 n 0 float8_regr_accum float8_regr_sxx float8_regr_combine - - - - - f f r r 0 1022 0 0 0 "{0,0,0,0,0,0}" _null_ ));
273273
DATA(insert ( 2820 n 0 float8_regr_accum float8_regr_syy float8_regr_combine - - - - - f f r r 0 1022 0 0 0 "{0,0,0,0,0,0}" _null_ ));
274274
DATA(insert ( 2821 n 0 float8_regr_accum float8_regr_sxy float8_regr_combine - - - - - f f r r 0 1022 0 0 0 "{0,0,0,0,0,0}" _null_ ));

src/include/catalog/pg_authid.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -100,21 +100,21 @@ typedef FormData_pg_authid *Form_pg_authid;
100100
*/
101101
DATA(insert OID = 10 ( "POSTGRES" t t t t t t t -1 _null_ _null_));
102102
#define BOOTSTRAP_SUPERUSERID 10
103-
DATA(insert OID = 3373 ( "pg_monitor" f t f f f f f -1 _null_ _null_));
103+
DATA(insert OID = 3373 ( pg_monitor f t f f f f f -1 _null_ _null_));
104104
#define DEFAULT_ROLE_MONITOR 3373
105-
DATA(insert OID = 3374 ( "pg_read_all_settings" f t f f f f f -1 _null_ _null_));
105+
DATA(insert OID = 3374 ( pg_read_all_settings f t f f f f f -1 _null_ _null_));
106106
#define DEFAULT_ROLE_READ_ALL_SETTINGS 3374
107-
DATA(insert OID = 3375 ( "pg_read_all_stats" f t f f f f f -1 _null_ _null_));
107+
DATA(insert OID = 3375 ( pg_read_all_stats f t f f f f f -1 _null_ _null_));
108108
#define DEFAULT_ROLE_READ_ALL_STATS 3375
109-
DATA(insert OID = 3377 ( "pg_stat_scan_tables" f t f f f f f -1 _null_ _null_));
109+
DATA(insert OID = 3377 ( pg_stat_scan_tables f t f f f f f -1 _null_ _null_));
110110
#define DEFAULT_ROLE_STAT_SCAN_TABLES 3377
111-
DATA(insert OID = 4569 ( "pg_read_server_files" f t f f f f f -1 _null_ _null_));
111+
DATA(insert OID = 4569 ( pg_read_server_files f t f f f f f -1 _null_ _null_));
112112
#define DEFAULT_ROLE_READ_SERVER_FILES 4569
113-
DATA(insert OID = 4570 ( "pg_write_server_files" f t f f f f f -1 _null_ _null_));
113+
DATA(insert OID = 4570 ( pg_write_server_files f t f f f f f -1 _null_ _null_));
114114
#define DEFAULT_ROLE_WRITE_SERVER_FILES 4570
115-
DATA(insert OID = 4571 ( "pg_execute_server_program" f t f f f f f -1 _null_ _null_));
115+
DATA(insert OID = 4571 ( pg_execute_server_program f t f f f f f -1 _null_ _null_));
116116
#define DEFAULT_ROLE_EXECUTE_SERVER_PROGRAM 4571
117-
DATA(insert OID = 4200 ( "pg_signal_backend" f t f f f f f -1 _null_ _null_));
117+
DATA(insert OID = 4200 ( pg_signal_backend f t f f f f f -1 _null_ _null_));
118118
#define DEFAULT_ROLE_SIGNAL_BACKENDID 4200
119119

120120
#endif /* PG_AUTHID_H */

src/include/catalog/pg_collation.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ typedef FormData_pg_collation *Form_pg_collation;
7373
DATA(insert OID = 100 ( default PGNSP PGUID d -1 "" "" _null_ ));
7474
DESCR("database's default collation");
7575
#define DEFAULT_COLLATION_OID 100
76-
DATA(insert OID = 950 ( C PGNSP PGUID c -1 "C" "C" _null_ ));
76+
DATA(insert OID = 950 ( C PGNSP PGUID c -1 C C _null_ ));
7777
DESCR("standard C collation");
7878
#define C_COLLATION_OID 950
79-
DATA(insert OID = 951 ( POSIX PGNSP PGUID c -1 "POSIX" "POSIX" _null_ ));
79+
DATA(insert OID = 951 ( POSIX PGNSP PGUID c -1 POSIX POSIX _null_ ));
8080
DESCR("standard POSIX collation");
8181
#define POSIX_COLLATION_OID 951
8282

src/include/catalog/pg_language.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ typedef FormData_pg_language *Form_pg_language;
6969
* ----------------
7070
*/
7171

72-
DATA(insert OID = 12 ( "internal" PGUID f f 0 0 2246 _null_ ));
72+
DATA(insert OID = 12 ( internal PGUID f f 0 0 2246 _null_ ));
7373
DESCR("built-in functions");
7474
#define INTERNALlanguageId 12
75-
DATA(insert OID = 13 ( "c" PGUID f f 0 0 2247 _null_ ));
75+
DATA(insert OID = 13 ( c PGUID f f 0 0 2247 _null_ ));
7676
DESCR("dynamically-loaded C functions");
7777
#define ClanguageId 13
78-
DATA(insert OID = 14 ( "sql" PGUID f t 0 0 2248 _null_ ));
78+
DATA(insert OID = 14 ( sql PGUID f t 0 0 2248 _null_ ));
7979
DESCR("SQL-language functions");
8080
#define SQLlanguageId 14
8181

src/include/catalog/pg_namespace.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ typedef FormData_pg_namespace *Form_pg_namespace;
6666
* ---------------
6767
*/
6868

69-
DATA(insert OID = 11 ( "pg_catalog" PGUID _null_ ));
69+
DATA(insert OID = 11 ( pg_catalog PGUID _null_ ));
7070
DESCR("system catalog schema");
7171
#define PG_CATALOG_NAMESPACE 11
72-
DATA(insert OID = 99 ( "pg_toast" PGUID _null_ ));
72+
DATA(insert OID = 99 ( pg_toast PGUID _null_ ));
7373
DESCR("reserved schema for TOAST tables");
7474
#define PG_TOAST_NAMESPACE 99
75-
DATA(insert OID = 2200 ( "public" PGUID _null_ ));
75+
DATA(insert OID = 2200 ( public PGUID _null_ ));
7676
DESCR("standard public schema");
7777
#define PG_PUBLIC_NAMESPACE 2200
7878

src/include/catalog/pg_pltemplate.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ typedef FormData_pg_pltemplate *Form_pg_pltemplate;
7171
* ----------------
7272
*/
7373

74-
DATA(insert ( "plpgsql" t t "plpgsql_call_handler" "plpgsql_inline_handler" "plpgsql_validator" "$libdir/plpgsql" _null_ ));
75-
DATA(insert ( "pltcl" t t "pltcl_call_handler" _null_ _null_ "$libdir/pltcl" _null_ ));
76-
DATA(insert ( "pltclu" f f "pltclu_call_handler" _null_ _null_ "$libdir/pltcl" _null_ ));
77-
DATA(insert ( "plperl" t t "plperl_call_handler" "plperl_inline_handler" "plperl_validator" "$libdir/plperl" _null_ ));
78-
DATA(insert ( "plperlu" f f "plperlu_call_handler" "plperlu_inline_handler" "plperlu_validator" "$libdir/plperl" _null_ ));
79-
DATA(insert ( "plpythonu" f f "plpython_call_handler" "plpython_inline_handler" "plpython_validator" "$libdir/plpython2" _null_ ));
80-
DATA(insert ( "plpython2u" f f "plpython2_call_handler" "plpython2_inline_handler" "plpython2_validator" "$libdir/plpython2" _null_ ));
81-
DATA(insert ( "plpython3u" f f "plpython3_call_handler" "plpython3_inline_handler" "plpython3_validator" "$libdir/plpython3" _null_ ));
74+
DATA(insert ( plpgsql t t plpgsql_call_handler plpgsql_inline_handler plpgsql_validator "$libdir/plpgsql" _null_ ));
75+
DATA(insert ( pltcl t t pltcl_call_handler _null_ _null_ "$libdir/pltcl" _null_ ));
76+
DATA(insert ( pltclu f f pltclu_call_handler _null_ _null_ "$libdir/pltcl" _null_ ));
77+
DATA(insert ( plperl t t plperl_call_handler plperl_inline_handler plperl_validator "$libdir/plperl" _null_ ));
78+
DATA(insert ( plperlu f f plperlu_call_handler plperlu_inline_handler plperlu_validator "$libdir/plperl" _null_ ));
79+
DATA(insert ( plpythonu f f plpython_call_handler plpython_inline_handler plpython_validator "$libdir/plpython2" _null_ ));
80+
DATA(insert ( plpython2u f f plpython2_call_handler plpython2_inline_handler plpython2_validator "$libdir/plpython2" _null_ ));
81+
DATA(insert ( plpython3u f f plpython3_call_handler plpython3_inline_handler plpython3_validator "$libdir/plpython3" _null_ ));
8282

8383
#endif /* PG_PLTEMPLATE_H */

src/include/catalog/pg_ts_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ typedef FormData_pg_ts_config *Form_pg_ts_config;
5454
* initial contents of pg_ts_config
5555
* ----------------
5656
*/
57-
DATA(insert OID = 3748 ( "simple" PGNSP PGUID 3722 ));
57+
DATA(insert OID = 3748 ( simple PGNSP PGUID 3722 ));
5858
DESCR("simple configuration");
5959

6060
#endif /* PG_TS_CONFIG_H */

src/include/catalog/pg_ts_dict.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ typedef FormData_pg_ts_dict *Form_pg_ts_dict;
6060
* ----------------
6161
*/
6262

63-
DATA(insert OID = 3765 ( "simple" PGNSP PGUID 3727 _null_));
63+
DATA(insert OID = 3765 ( simple PGNSP PGUID 3727 _null_));
6464
DESCR("simple dictionary: just lower case and check for stopword");
6565

6666
#endif /* PG_TS_DICT_H */

src/include/catalog/pg_ts_parser.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ typedef FormData_pg_ts_parser *Form_pg_ts_parser;
6161
* ----------------
6262
*/
6363

64-
DATA(insert OID = 3722 ( "default" PGNSP prsd_start prsd_nexttoken prsd_end prsd_headline prsd_lextype ));
64+
DATA(insert OID = 3722 ( default PGNSP prsd_start prsd_nexttoken prsd_end prsd_headline prsd_lextype ));
6565
DESCR("default word parser");
6666

6767
#endif /* PG_TS_PARSER_H */

src/include/catalog/pg_ts_template.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ typedef FormData_pg_ts_template *Form_pg_ts_template;
5555
* ----------------
5656
*/
5757

58-
DATA(insert OID = 3727 ( "simple" PGNSP dsimple_init dsimple_lexize ));
58+
DATA(insert OID = 3727 ( simple PGNSP dsimple_init dsimple_lexize ));
5959
DESCR("simple dictionary: just lower case and check for stopword");
60-
DATA(insert OID = 3730 ( "synonym" PGNSP dsynonym_init dsynonym_lexize ));
60+
DATA(insert OID = 3730 ( synonym PGNSP dsynonym_init dsynonym_lexize ));
6161
DESCR("synonym dictionary: replace word by its synonym");
62-
DATA(insert OID = 3733 ( "ispell" PGNSP dispell_init dispell_lexize ));
62+
DATA(insert OID = 3733 ( ispell PGNSP dispell_init dispell_lexize ));
6363
DESCR("ispell dictionary");
64-
DATA(insert OID = 3742 ( "thesaurus" PGNSP thesaurus_init thesaurus_lexize ));
64+
DATA(insert OID = 3742 ( thesaurus PGNSP thesaurus_init thesaurus_lexize ));
6565
DESCR("thesaurus dictionary: phrase by phrase substitution");
6666

6767
#endif /* PG_TS_TEMPLATE_H */

0 commit comments

Comments
 (0)