diff --git a/configure b/configure index 78a31f4c182..fd3021bce7a 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for PostgreSQL 15.8. +# Generated by GNU Autoconf 2.69 for PostgreSQL 15.10. # # Report bugs to . # @@ -582,8 +582,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='PostgreSQL' PACKAGE_TARNAME='postgresql' -PACKAGE_VERSION='15.8' -PACKAGE_STRING='PostgreSQL 15.8' +PACKAGE_VERSION='15.10' +PACKAGE_STRING='PostgreSQL 15.10' PACKAGE_BUGREPORT='pgsql-bugs@lists.postgresql.org' PACKAGE_URL='https://www.postgresql.org/' @@ -1452,7 +1452,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures PostgreSQL 15.8 to adapt to many kinds of systems. +\`configure' configures PostgreSQL 15.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1517,7 +1517,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of PostgreSQL 15.8:";; + short | recursive ) echo "Configuration of PostgreSQL 15.10:";; esac cat <<\_ACEOF @@ -1691,7 +1691,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -PostgreSQL configure 15.8 +PostgreSQL configure 15.10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2444,7 +2444,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by PostgreSQL $as_me 15.8, which was +It was created by PostgreSQL $as_me 15.10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -20775,7 +20775,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by PostgreSQL $as_me 15.8, which was +This file was extended by PostgreSQL $as_me 15.10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20846,7 +20846,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -PostgreSQL config.status 15.8 +PostgreSQL config.status 15.10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index d22ffe8bcf4..f1355db63e8 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Read the Autoconf manual for details. dnl m4_pattern_forbid(^PGAC_)dnl to catch undefined macros -AC_INIT([PostgreSQL], [15.8], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/]) +AC_INIT([PostgreSQL], [15.10], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/]) m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required. Untested combinations of 'autoconf' and PostgreSQL versions are not diff --git a/contrib/bloom/blscan.c b/contrib/bloom/blscan.c index 4c923488bd9..0703ad8525b 100644 --- a/contrib/bloom/blscan.c +++ b/contrib/bloom/blscan.c @@ -121,6 +121,7 @@ blgetbitmap(IndexScanDesc scan, TIDBitmap *tbm) */ bas = GetAccessStrategy(BAS_BULKREAD); npages = RelationGetNumberOfBlocks(scan->indexRelation); + pgstat_count_index_scan(scan->indexRelation); for (blkno = BLOOM_HEAD_BLKNO; blkno < npages; blkno++) { diff --git a/contrib/pageinspect/expected/page.out b/contrib/pageinspect/expected/page.out index 80ddb45a60a..3fd3869c82a 100644 --- a/contrib/pageinspect/expected/page.out +++ b/contrib/pageinspect/expected/page.out @@ -239,3 +239,13 @@ SELECT page_checksum(decode(repeat('00', :block_size), 'hex'), 1); (1 row) +-- tests for sequences +create sequence test_sequence start 72057594037927937; +select tuple_data_split('test_sequence'::regclass, t_data, t_infomask, t_infomask2, t_bits) + from heap_page_items(get_raw_page('test_sequence', 0)); + tuple_data_split +------------------------------------------------------- + {"\\x0100000000000001","\\x0000000000000000","\\x00"} +(1 row) + +drop sequence test_sequence; diff --git a/contrib/pageinspect/heapfuncs.c b/contrib/pageinspect/heapfuncs.c index 3dd1a9bc2ab..c41b67bb369 100644 --- a/contrib/pageinspect/heapfuncs.c +++ b/contrib/pageinspect/heapfuncs.c @@ -320,7 +320,11 @@ tuple_data_split_internal(Oid relid, char *tupdata, raw_attrs = initArrayResult(BYTEAOID, CurrentMemoryContext, false); nattrs = tupdesc->natts; - if (rel->rd_rel->relam != HEAP_TABLE_AM_OID) + /* + * Sequences always use heap AM, but they don't show that in the catalogs. + */ + if (rel->rd_rel->relkind != RELKIND_SEQUENCE && + rel->rd_rel->relam != HEAP_TABLE_AM_OID) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("only heap AM is supported"))); diff --git a/contrib/pageinspect/sql/page.sql b/contrib/pageinspect/sql/page.sql index 5bff568d3b5..346e4ee142c 100644 --- a/contrib/pageinspect/sql/page.sql +++ b/contrib/pageinspect/sql/page.sql @@ -98,3 +98,9 @@ SHOW block_size \gset SELECT fsm_page_contents(decode(repeat('00', :block_size), 'hex')); SELECT page_header(decode(repeat('00', :block_size), 'hex')); SELECT page_checksum(decode(repeat('00', :block_size), 'hex'), 1); + +-- tests for sequences +create sequence test_sequence start 72057594037927937; +select tuple_data_split('test_sequence'::regclass, t_data, t_infomask, t_infomask2, t_bits) + from heap_page_items(get_raw_page('test_sequence', 0)); +drop sequence test_sequence; diff --git a/contrib/pg_trgm/expected/pg_trgm.out b/contrib/pg_trgm/expected/pg_trgm.out index 20141ce7f3d..8b5dcf90d18 100644 --- a/contrib/pg_trgm/expected/pg_trgm.out +++ b/contrib/pg_trgm/expected/pg_trgm.out @@ -2372,6 +2372,9 @@ ERROR: value 2025 out of bounds for option "siglen" DETAIL: Valid values are between "1" and "2024". create index trgm_idx on test_trgm using gist (t gist_trgm_ops(siglen=2024)); set enable_seqscan=off; +-- check index compatibility handling when opclass option is specified +alter table test_trgm alter column t type varchar(768); +alter table test_trgm alter column t type text; select t,similarity(t,'qwertyu0988') as sml from test_trgm where t % 'qwertyu0988' order by sml desc, t; t | sml -------------+---------- diff --git a/contrib/pg_trgm/sql/pg_trgm.sql b/contrib/pg_trgm/sql/pg_trgm.sql index 6a9da24d5a7..340c9891899 100644 --- a/contrib/pg_trgm/sql/pg_trgm.sql +++ b/contrib/pg_trgm/sql/pg_trgm.sql @@ -52,6 +52,10 @@ create index trgm_idx on test_trgm using gist (t gist_trgm_ops(siglen=2025)); create index trgm_idx on test_trgm using gist (t gist_trgm_ops(siglen=2024)); set enable_seqscan=off; +-- check index compatibility handling when opclass option is specified +alter table test_trgm alter column t type varchar(768); +alter table test_trgm alter column t type text; + select t,similarity(t,'qwertyu0988') as sml from test_trgm where t % 'qwertyu0988' order by sml desc, t; select t,similarity(t,'gwertyu0988') as sml from test_trgm where t % 'gwertyu0988' order by sml desc, t; select t,similarity(t,'gwertyu1988') as sml from test_trgm where t % 'gwertyu1988' order by sml desc, t; diff --git a/contrib/pgstattuple/expected/pgstattuple.out b/contrib/pgstattuple/expected/pgstattuple.out index 283856e109e..9176dc98b6a 100644 --- a/contrib/pgstattuple/expected/pgstattuple.out +++ b/contrib/pgstattuple/expected/pgstattuple.out @@ -273,6 +273,31 @@ select pgstathashindex('test_partition_hash_idx'); (4,8,0,1,0,0,0,100) (1 row) +-- these should work for sequences +create sequence test_sequence; +select count(*) from pgstattuple('test_sequence'); + count +------- + 1 +(1 row) + +select pg_relpages('test_sequence'); + pg_relpages +------------- + 1 +(1 row) + +-- these should fail for sequences +select pgstatindex('test_sequence'); +ERROR: relation "test_sequence" is not a btree index +select pgstatginindex('test_sequence'); +ERROR: relation "test_sequence" is not a GIN index +select pgstathashindex('test_sequence'); +ERROR: relation "test_sequence" is not a hash index +select pgstattuple_approx('test_sequence'); +ERROR: relation "test_sequence" is of wrong relation kind +DETAIL: This operation is not supported for sequences. +drop sequence test_sequence; drop table test_partitioned; drop view test_view; drop foreign table test_foreign_table; diff --git a/contrib/pgstattuple/pgstattuple.c b/contrib/pgstattuple/pgstattuple.c index 81356802afc..6e953b6626f 100644 --- a/contrib/pgstattuple/pgstattuple.c +++ b/contrib/pgstattuple/pgstattuple.c @@ -323,7 +323,11 @@ pgstat_heap(Relation rel, FunctionCallInfo fcinfo) pgstattuple_type stat = {0}; SnapshotData SnapshotDirty; - if (rel->rd_rel->relam != HEAP_TABLE_AM_OID) + /* + * Sequences always use heap AM, but they don't show that in the catalogs. + */ + if (rel->rd_rel->relkind != RELKIND_SEQUENCE && + rel->rd_rel->relam != HEAP_TABLE_AM_OID) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("only heap AM is supported"))); diff --git a/contrib/pgstattuple/sql/pgstattuple.sql b/contrib/pgstattuple/sql/pgstattuple.sql index b08c31c21b7..7e72c567a06 100644 --- a/contrib/pgstattuple/sql/pgstattuple.sql +++ b/contrib/pgstattuple/sql/pgstattuple.sql @@ -119,6 +119,18 @@ create index test_partition_hash_idx on test_partition using hash (a); select pgstatindex('test_partition_idx'); select pgstathashindex('test_partition_hash_idx'); +-- these should work for sequences +create sequence test_sequence; +select count(*) from pgstattuple('test_sequence'); +select pg_relpages('test_sequence'); + +-- these should fail for sequences +select pgstatindex('test_sequence'); +select pgstatginindex('test_sequence'); +select pgstathashindex('test_sequence'); +select pgstattuple_approx('test_sequence'); + +drop sequence test_sequence; drop table test_partitioned; drop view test_view; drop foreign table test_foreign_table; diff --git a/contrib/postgres_fdw/option.c b/contrib/postgres_fdw/option.c index 2e0e8ee8b57..fa2044b2c5d 100644 --- a/contrib/postgres_fdw/option.c +++ b/contrib/postgres_fdw/option.c @@ -490,7 +490,7 @@ process_pgfdw_appname(const char *appname) appendStringInfoString(&buf, application_name); break; case 'c': - appendStringInfo(&buf, "%lx.%x", (long) (MyStartTime), MyProcPid); + appendStringInfo(&buf, "%" INT64_MODIFIER "x.%x", MyStartTime, MyProcPid); break; case 'C': appendStringInfoString(&buf, cluster_name); diff --git a/contrib/test_decoding/expected/twophase.out b/contrib/test_decoding/expected/twophase.out index e89dc74a5e4..22d128d431f 100644 --- a/contrib/test_decoding/expected/twophase.out +++ b/contrib/test_decoding/expected/twophase.out @@ -205,10 +205,33 @@ SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'inc COMMIT (3 rows) +-- Test that accessing a TOAST table is permitted during the decoding of a +-- prepared transaction. +-- Create a table with a column that uses a TOASTed default value. +-- (temporarily hide query, to avoid the long CREATE TABLE stmt) +\set ECHO none +BEGIN; +INSERT INTO test_tab VALUES('test'); +PREPARE TRANSACTION 'test_toast_table_access'; +SELECT count(*) FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1', 'stream-changes', '1'); + count +------- + 3 +(1 row) + +COMMIT PREPARED 'test_toast_table_access'; +-- consume commit prepared +SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1', 'stream-changes', '1'); + data +------------------------------------------- + COMMIT PREPARED 'test_toast_table_access' +(1 row) + -- Test 8: -- cleanup and make sure results are also empty DROP TABLE test_prepared1; DROP TABLE test_prepared2; +DROP TABLE test_tab; -- show results. There should be nothing to show SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1'); data diff --git a/contrib/test_decoding/sql/twophase.sql b/contrib/test_decoding/sql/twophase.sql index aff5114eb10..0ff6ede1f38 100644 --- a/contrib/test_decoding/sql/twophase.sql +++ b/contrib/test_decoding/sql/twophase.sql @@ -104,10 +104,32 @@ COMMIT PREPARED 'test_prepared_nodecode'; -- should be decoded now SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1'); +-- Test that accessing a TOAST table is permitted during the decoding of a +-- prepared transaction. + +-- Create a table with a column that uses a TOASTed default value. +-- (temporarily hide query, to avoid the long CREATE TABLE stmt) +\set ECHO none +SELECT 'CREATE TABLE test_tab (a text DEFAULT ''' || string_agg('toast value', '') || ''');' FROM generate_series(1, 4000) +\gexec +\set ECHO all + +BEGIN; +INSERT INTO test_tab VALUES('test'); +PREPARE TRANSACTION 'test_toast_table_access'; + +SELECT count(*) FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1', 'stream-changes', '1'); + +COMMIT PREPARED 'test_toast_table_access'; + +-- consume commit prepared +SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1', 'stream-changes', '1'); + -- Test 8: -- cleanup and make sure results are also empty DROP TABLE test_prepared1; DROP TABLE test_prepared2; +DROP TABLE test_tab; -- show results. There should be nothing to show SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', '0', 'skip-empty-xacts', '1'); diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c index b999b1f7066..212cb74aa22 100644 --- a/contrib/xml2/xpath.c +++ b/contrib/xml2/xpath.c @@ -386,7 +386,7 @@ pgxml_xpath(text *document, xmlChar *xpath, xpath_workspace *workspace) workspace->ctxt->node = xmlDocGetRootElement(workspace->doctree); /* compile the path */ - comppath = xmlXPathCompile(xpath); + comppath = xmlXPathCtxtCompile(workspace->ctxt, xpath); if (comppath == NULL) xml_ereport(xmlerrcxt, ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION, "XPath Syntax Error"); @@ -650,7 +650,7 @@ xpath_table(PG_FUNCTION_ARGS) ctxt->node = xmlDocGetRootElement(doctree); /* compile the path */ - comppath = xmlXPathCompile(xpaths[j]); + comppath = xmlXPathCtxtCompile(ctxt, xpaths[j]); if (comppath == NULL) xml_ereport(xmlerrcxt, ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION, diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index f681e94ea71..277a2398a27 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5114,8 +5114,9 @@ ANY num_sync ( . @@ -5130,7 +5131,9 @@ ANY num_sync ( ). - The default is on. + The default is on. The + setting must also be + enabled to have the query planner consider index-only-scans. @@ -9394,9 +9397,9 @@ SET XML OPTION { DOCUMENT | CONTENT }; - This variable specifies relation kind to which access is restricted. - It contains a comma-separated list of relation kind. Currently, the - supported relation kinds are view and + Set relation kinds for which access to non-system relations is prohibited. + The value takes the form of a comma-separated list of relation kinds. + Currently, the supported relation kinds are view and foreign-table. diff --git a/doc/src/sgml/event-trigger.sgml b/doc/src/sgml/event-trigger.sgml index 3b6a5361b34..ff369bed19f 100644 --- a/doc/src/sgml/event-trigger.sgml +++ b/doc/src/sgml/event-trigger.sgml @@ -80,6 +80,11 @@ control statements are available to rewrite a table, like CLUSTER and VACUUM, the table_rewrite event is not triggered by them. + To find the OID of the table that was rewritten, use the function + pg_event_trigger_table_rewrite_oid() (see + ). To discover the reason(s) + for the rewrite, use the function + pg_event_trigger_table_rewrite_reason(). diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 48e5809ce5a..40849d9788e 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -23030,6 +23030,10 @@ SELECT has_function_privilege('joeuser', 'myfunc(int, text)', 'execute'); the role (that is, the right to do SET ROLE), while USAGE denotes whether the privileges of the role are immediately available without doing SET ROLE. + WITH ADMIN OPTION or WITH GRANT + OPTION can be added to either of these privilege types to + test whether the ADMIN privilege is held (all + four spellings test the same thing). This function does not allow the special case of setting user to public, because the PUBLIC pseudo-role can never be a member of real roles. @@ -28353,8 +28357,12 @@ CREATE EVENT TRIGGER test_event_trigger_for_drops integer - Returns a code explaining the reason(s) for rewriting. The exact - meaning of the codes is release dependent. + Returns a code explaining the reason(s) for rewriting. The value is + a bitmap built from the following values: 1 + (the table has changed its persistence), 2 + (default value of a column has changed), 4 + (a column has a new data type) and 8 + (the table access method has changed). diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml index 9d549ded8d9..ca3b2d99303 100644 --- a/doc/src/sgml/install-windows.sgml +++ b/doc/src/sgml/install-windows.sgml @@ -190,14 +190,12 @@ $ENV{MSBFLAGS}="/m"; - ActiveState Perl + Strawberry Perl - ActiveState Perl is required to run the build generation scripts. MinGW + Strawberry Perl is required to run the build generation scripts. MinGW or Cygwin Perl will not work. It must also be present in the PATH. Binaries can be downloaded from - - (Note: version 5.8.3 or later is required, - the free Standard Distribution is sufficient). + . @@ -211,10 +209,11 @@ $ENV{MSBFLAGS}="/m"; - ActiveState TCL + Magicsplat Tcl - Required for building PL/Tcl (Note: version - 8.4 is required, the free Standard Distribution is sufficient). + Required for building PL/Tcl. + Binaries can be downloaded from + . diff --git a/doc/src/sgml/limits.sgml b/doc/src/sgml/limits.sgml index c549447013f..f26f4466719 100644 --- a/doc/src/sgml/limits.sgml +++ b/doc/src/sgml/limits.sgml @@ -135,4 +135,15 @@ created tuples are internally marked as null in the tuple's null bitmap, the null bitmap also occupies space. + + + Each table can store a theoretical maximum of 2^32 out-of-line values; see + for a detailed discussion of out-of-line + storage. This limit arises from the use of a 32-bit OID to identify each + such value. The practical limit is significantly less than the theoretical + limit, because as the OID space fills up, finding an OID that is still free + can become expensive, in turn slowing down INSERT/UPDATE statements. + Typically, this is only an issue for tables containing many terabytes + of data; partitioning is a possible workaround. + diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 84e65002ff3..bad1f445e42 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1770,7 +1770,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser ProcArrayGroupUpdate Waiting for the group leader to clear the transaction ID at - end of a parallel operation. + transaction end. ProcSignalBarrier @@ -1837,7 +1837,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser XactGroupUpdate Waiting for the group leader to update transaction status at - end of a parallel operation. + transaction end. diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 25b1077ad73..8007261d022 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -1093,6 +1093,19 @@ $$ LANGUAGE plperl; be permitted to use this language. + + + Trusted PL/Perl relies on the Perl Opcode module to + preserve security. + Perl + documents + that the module is not effective for the trusted PL/Perl use case. If + your security needs are incompatible with the uncertainty in that warning, + consider executing REVOKE USAGE ON LANGUAGE plperl FROM + PUBLIC. + + + Here is an example of a function that will not work because file system operations are not allowed for security reasons: diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 936de410a93..9de0e10a26e 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1271,7 +1271,7 @@ $$ LANGUAGE plpgsql; On failure, this function might produce an error message such as ERROR: query returned no rows -DETAIL: parameters: $1 = 'nosuchuser' +DETAIL: parameters: username = 'nosuchuser' CONTEXT: PL/pgSQL function get_userid(text) line 6 at SQL statement diff --git a/doc/src/sgml/postgres.sgml b/doc/src/sgml/postgres.sgml index 73439c049e9..7667bf37cb7 100644 --- a/doc/src/sgml/postgres.sgml +++ b/doc/src/sgml/postgres.sgml @@ -9,6 +9,7 @@ %filelist; + The frontend should also be prepared to handle an ErrorMessage - response to SSLRequest from the server. This would only occur if - the server predates the addition of SSL support - to PostgreSQL. (Such servers are now very ancient, - and likely do not exist in the wild anymore.) + response to SSLRequest from the server. The frontend should not display + this error message to the user/application, since the server has not been + authenticated + (CVE-2024-10977). In this case the connection must be closed, but the frontend might choose to open a fresh connection and proceed without requesting SSL. @@ -1604,12 +1604,13 @@ SELCT 1/0; The frontend should also be prepared to handle an ErrorMessage - response to GSSENCRequest from the server. This would only occur if - the server predates the addition of GSSAPI encryption - support to PostgreSQL. In this case the - connection must be closed, but the frontend might choose to open a fresh - connection and proceed without requesting GSSAPI - encryption. + response to GSSENCRequest from the server. The frontend should not display + this error message to the user/application, since the server has not been + authenticated + (CVE-2024-10977). + In this case the connection must be closed, but the frontend might choose + to open a fresh connection and proceed without requesting + GSSAPI encryption. diff --git a/doc/src/sgml/ref/alter_domain.sgml b/doc/src/sgml/ref/alter_domain.sgml index 2db53725139..f8cecefee54 100644 --- a/doc/src/sgml/ref/alter_domain.sgml +++ b/doc/src/sgml/ref/alter_domain.sgml @@ -41,6 +41,11 @@ ALTER DOMAIN name RENAME TO new_name ALTER DOMAIN name SET SCHEMA new_schema + +where domain_constraint is: + +[ CONSTRAINT constraint_name ] +{ NOT NULL | CHECK (expression) } @@ -79,8 +84,7 @@ ALTER DOMAIN name ADD domain_constraint [ NOT VALID ] - This form adds a new constraint to a domain using the same syntax as - CREATE DOMAIN. + This form adds a new constraint to a domain. When a new constraint is added to a domain, all columns using that domain will be checked against the newly added constraint. These checks can be suppressed by adding the new constraint using the diff --git a/doc/src/sgml/ref/alter_index.sgml b/doc/src/sgml/ref/alter_index.sgml index e26efec064b..1d42d05d858 100644 --- a/doc/src/sgml/ref/alter_index.sgml +++ b/doc/src/sgml/ref/alter_index.sgml @@ -87,10 +87,11 @@ ALTER INDEX ALL IN TABLESPACE name - ATTACH PARTITION + ATTACH PARTITION index_name - Causes the named index to become attached to the altered index. + Causes the named index (possibly schema-qualified) to become attached + to the altered index. The named index must be on a partition of the table containing the index being altered, and have an equivalent definition. An attached index cannot be dropped by itself, and will automatically be dropped diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index eee1f4bc771..2907afd790d 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -980,20 +980,18 @@ WITH ( MODULUS numeric_literal, REM A partition using FOR VALUES uses same syntax for partition_bound_spec as - CREATE TABLE. The partition bound specification + CREATE TABLE. + The partition bound specification must correspond to the partitioning strategy and partition key of the target table. The table to be attached must have all the same columns as the target table and no more; moreover, the column types must also match. Also, it must have all the NOT NULL and - CHECK constraints of the target table. Currently + CHECK constraints of the target table, not marked + NO INHERIT. Currently FOREIGN KEY constraints are not considered. UNIQUE and PRIMARY KEY constraints from the parent table will be created in the partition, if they don't already exist. - If any of the CHECK constraints of the table being - attached are marked NO INHERIT, the command will fail; - such constraints must be recreated without the - NO INHERIT clause. diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 8af49908c5a..31c3762cbee 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -895,8 +895,8 @@ WITH ( MODULUS numeric_literal, REM This clause creates the column as an identity column. It will have an implicit sequence attached to it - and the column in new rows will automatically have values from the - sequence assigned to it. + and in newly-inserted rows the column will automatically have values + from the sequence assigned to it. Such a column is implicitly NOT NULL. @@ -926,9 +926,16 @@ WITH ( MODULUS numeric_literal, REM - The optional sequence_options clause can be - used to override the options of the sequence. - See for details. + The optional sequence_options clause can + be used to override the parameters of the sequence. The available + options include those shown for , + plus SEQUENCE NAME name, + LOGGED, and UNLOGGED, which + allow selection of the name and persistence level of the + sequence. Without SEQUENCE NAME, the system + chooses an unused name for the sequence. + Without LOGGED or UNLOGGED, + the sequence will have the same persistence level as the table. diff --git a/doc/src/sgml/ref/drop_extension.sgml b/doc/src/sgml/ref/drop_extension.sgml index 484e5d9b11a..4266c6d1ceb 100644 --- a/doc/src/sgml/ref/drop_extension.sgml +++ b/doc/src/sgml/ref/drop_extension.sgml @@ -82,7 +82,7 @@ DROP EXTENSION [ IF EXISTS ] name [ This option prevents the specified extensions from being dropped if other objects, besides these extensions, their members, and their - explicitly dependent routines, depend on them.  This is the default. + explicitly dependent routines, depend on them. This is the default. diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml index 5459b295259..f0e6047e0b1 100644 --- a/doc/src/sgml/ref/set.sgml +++ b/doc/src/sgml/ref/set.sgml @@ -200,7 +200,7 @@ SELECT setseed(value); - 'PST8PDT' + 'America/Los_Angeles' The time zone for Berkeley, California. @@ -298,7 +298,7 @@ SET datestyle TO postgres, dmy; Set the time zone for Berkeley, California: -SET TIME ZONE 'PST8PDT'; +SET TIME ZONE 'America/Los_Angeles'; diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index ec50efa20a3..aa380c20de6 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -521,11 +521,11 @@ make check NO_LOCALE=1 Most of the date and time results are dependent on the time zone environment. The reference files are generated for time zone - PST8PDT (Berkeley, California), and there will be + America/Los_Angeles, and there will be apparent failures if the tests are not run with that time zone setting. The regression test driver sets environment variable - PGTZ to PST8PDT, which normally - ensures proper results. + PGTZ to America/Los_Angeles, + which normally ensures proper results. diff --git a/doc/src/sgml/release-15.sgml b/doc/src/sgml/release-15.sgml index d05b44a3cf8..7630b660d73 100644 --- a/doc/src/sgml/release-15.sgml +++ b/doc/src/sgml/release-15.sgml @@ -1,6 +1,1644 @@ + + Release 15.10 + + + Release date: + 2024-11-21 + + + + This release contains a few fixes from 15.9. + For information about new features in major release 15, see + . + + + + Migration to Version 15.10 + + + A dump/restore is not required for those running 15.X. + + + + However, if you are upgrading from a version earlier than 15.9, + see . + + + + + Changes + + + + + + + Repair ABI break for extensions that work with + struct ResultRelInfo (Tom Lane) + § + + + + Last week's minor releases unintentionally broke binary + compatibility with timescaledb and + several other extensions. Restore the affected structure to its + previous size, so that such extensions need not be rebuilt. + + + + + + + Restore functionality of ALTER {ROLE|DATABASE} SET + role (Tom Lane, Noah Misch) + § + + + + The fix for CVE-2024-10978 accidentally caused settings + for role to not be applied if they come from + non-interactive sources, including previous ALTER + {ROLE|DATABASE} commands and + the PGOPTIONS environment variable. + + + + + + + Fix cases where a logical replication + slot's restart_lsn could go backwards + (Masahiko Sawada) + § + + + + Previously, restarting logical replication could sometimes cause the + slot's restart point to be recomputed as an older value than had + previously been advertised + in pg_replication_slots. This is bad, + since for example WAL files might have been removed on the basis of + the later restart_lsn value, in which + case replication would fail to restart. + + + + + + + Avoid deleting still-needed WAL files + during pg_rewind + (Polina Bungina, Alexander Kukushkin) + § + + + + Previously, in unlucky cases, it was possible + for pg_rewind to remove important WAL + files from the rewound demoted primary. In particular this happens + if those files have been marked for archival (i.e., + their .ready files were created) but not yet + archived. Then the newly promoted node no longer has such files + because of them having been recycled, but likely they are needed + for recovery in the demoted node. + If pg_rewind removes them, recovery is + not possible anymore. + + + + + + + Fix race conditions associated with dropping shared statistics + entries (Kyotaro Horiguchi, Michael Paquier) + § + + + + These bugs could lead to loss of statistics data, assertion + failures, or can only drop stats once errors. + + + + + + + Count index scans in contrib/bloom indexes in + the statistics views, such as the + pg_stat_user_indexes.idx_scan + counter (Masahiro Ikeda) + § + + + + + + + Fix crash when checking to see if an index's opclass options have + changed (Alexander Korotkov) + § + + + + Some forms of ALTER TABLE would fail if the + table has an index with non-default operator class options. + + + + + + + Avoid assertion failure caused by disconnected NFA sub-graphs in + regular expression parsing (Tom Lane) + § + + + + This bug does not appear to have any visible consequences in + non-assert builds. + + + + + + + + + + Release 15.9 + + + Release date: + 2024-11-14 + + + + This release contains a variety of fixes from 15.8. + For information about new features in major release 15, see + . + + + + Migration to Version 15.9 + + + A dump/restore is not required for those running 15.X. + + + + However, if you have ever detached a partition from a partitioned + table that has a foreign-key reference to another partitioned table, + and not dropped the former partition, then you may have catalog and/or + data corruption to repair, as detailed in the fifth changelog entry + below. + + + + Also, if you are upgrading from a version earlier than 15.7, + see . + + + + + Changes + + + + + + + Ensure cached plans are marked as dependent on the calling role when + RLS applies to a non-top-level table reference (Nathan Bossart) + § + + + + If a CTE, subquery, sublink, security invoker view, or coercion + projection in a query references a table with row-level security + policies, we neglected to mark the resulting plan as potentially + dependent on which role is executing it. This could lead to later + query executions in the same session using the wrong plan, and then + returning or hiding rows that should have been hidden or returned + instead. + + + + The PostgreSQL Project thanks + Wolfgang Walther for reporting this problem. + (CVE-2024-10976) + + + + + + + Make libpq discard error messages + received during SSL or GSS protocol negotiation (Jacob Champion) + § + + + + An error message received before encryption negotiation is completed + might have been injected by a man-in-the-middle, rather than being + real server output. Reporting it opens the door to various security + hazards; for example, the message might spoof a query result that a + careless user could mistake for correct output. The best answer + seems to be to discard such data and rely only + on libpq's own report of the connection + failure. + + + + The PostgreSQL Project thanks + Jacob Champion for reporting this problem. + (CVE-2024-10977) + + + + + + + Fix unintended interactions between SET SESSION + AUTHORIZATION and SET ROLE (Tom Lane) + § + § + + + + The SQL standard mandates that SET SESSION + AUTHORIZATION have a side-effect of doing SET + ROLE NONE. Our implementation of that was flawed, + creating more interaction between the two settings than intended. + Notably, rolling back a transaction that had done SET + SESSION AUTHORIZATION would revert ROLE + to NONE even if that had not been the previous + state, so that the effective user ID might now be different from + what it had been before the transaction. Transiently + setting session_authorization in a + function SET clause had a similar effect. + A related bug was that if a parallel worker + inspected current_setting('role'), it + saw none even when it should see something else. + + + + The PostgreSQL Project thanks + Tom Lane for reporting this problem. + (CVE-2024-10978) + + + + + + + Prevent trusted PL/Perl code from changing environment variables + (Andrew Dunstan, Noah Misch) + § + § + § + + + + The ability to manipulate process environment variables such + as PATH gives an attacker opportunities to + execute arbitrary code. Therefore, trusted PLs must + not offer the ability to do that. To fix plperl, + replace %ENV with a tied hash that rejects any + modification attempt with a warning. + Untrusted plperlu retains the ability to change + the environment. + + + + The PostgreSQL Project thanks + Coby Abrams for reporting this problem. + (CVE-2024-10979) + + + + + + + Fix updates of catalog state for foreign-key constraints when + attaching or detaching table partitions (Jehan-Guillaume de + Rorthais, Tender Wang, Álvaro Herrera) + § + § + + + + If the referenced table is partitioned, then different catalog + entries are needed for a referencing table that is stand-alone + versus one that is a partition. ATTACH/DETACH + PARTITION commands failed to perform this conversion + correctly. In particular, after DETACH the now + stand-alone table would be missing foreign-key enforcement triggers, + which could result in the table later containing rows that fail the + foreign-key constraint. A subsequent re-ATTACH + could fail with surprising errors, too. + + + + The way to fix this is to do ALTER TABLE DROP + CONSTRAINT on the now stand-alone table for each faulty + constraint, and then re-add the constraint. If re-adding the + constraint fails, then some erroneous data has crept in. You will + need to manually re-establish consistency between the referencing + and referenced tables, then re-add the constraint. + + + + This query can be used to identify broken constraints and construct + the commands needed to recreate them: + +SELECT conrelid::pg_catalog.regclass AS "constrained table", + conname AS constraint, + confrelid::pg_catalog.regclass AS "references", + pg_catalog.format('ALTER TABLE %s DROP CONSTRAINT %I;', + conrelid::pg_catalog.regclass, conname) AS "drop", + pg_catalog.format('ALTER TABLE %s ADD CONSTRAINT %I %s;', + conrelid::pg_catalog.regclass, conname, + pg_catalog.pg_get_constraintdef(oid)) AS "add" +FROM pg_catalog.pg_constraint c +WHERE contype = 'f' AND conparentid = 0 AND + (SELECT count(*) FROM pg_catalog.pg_constraint c2 + WHERE c2.conparentid = c.oid) <> + (SELECT count(*) FROM pg_catalog.pg_inherits i + WHERE (i.inhparent = c.conrelid OR i.inhparent = c.confrelid) AND + EXISTS (SELECT 1 FROM pg_catalog.pg_partitioned_table + WHERE partrelid = i.inhparent)); + + Since it is possible that one or more of the ADD + CONSTRAINT steps will fail, you should save the query's + output in a file and then attempt to perform each step. + + + + + + + Avoid possible crashes and could not open relation + errors in queries on a partitioned table occurring concurrently with + a DETACH CONCURRENTLY and immediate drop of a + partition (Álvaro Herrera, Kuntal Gosh) + § + § + + + + + + + Disallow ALTER TABLE ATTACH PARTITION if the + table to be attached has a foreign key referencing the partitioned + table (Álvaro Herrera) + § + § + + + + This arrangement is not supported, and other ways of creating it + already fail. + + + + + + + Don't use partitionwise joins or grouping if the query's collation + for the key column doesn't match the partition key's collation (Jian + He, Webbo Han) + § + § + + + + Such plans could produce incorrect results. + + + + + + + Fix possible could not find pathkey item to sort + error when the output of a UNION ALL member query + needs to be sorted, and the sort column is an expression (Andrei + Lepikhov, Tom Lane) + § + + + + + + + Allow cancellation of the second stage of index build for large hash + indexes (Pavel Borisov) + § + + + + + + + Fix assertion failure or confusing error message for COPY + (query) TO ..., when + the query is rewritten by a DO + INSTEAD NOTIFY rule (Tender Wang, Tom Lane) + § + + + + + + + Fix detection of skewed data during parallel hash join (Thomas + Munro) + § + + + + After repartitioning the inner side of a hash join because one + partition has accumulated too many tuples, we check to see if all + the partition's tuples went into the same child partition, which + suggests that they all have the same hash value and further + repartitioning cannot improve matters. This check malfunctioned in + some cases, allowing repeated futile repartitioning which would + eventually end in a resource-exhaustion error. + + + + + + + Fix race condition in committing a serializable transaction (Heikki + Linnakangas) + § + + + + Mis-processing of a recently committed transaction could lead to an + assertion failure or a could not access status of + transaction error. + + + + + + + Fix race condition in COMMIT PREPARED + that resulted in orphaned 2PC files (wuchengwen) + § + + + + A concurrent PREPARE TRANSACTION could + cause COMMIT PREPARED to not remove the on-disk + two-phase state file for the completed transaction. There was no + immediate ill effect, but a subsequent crash-and-recovery could fail + with could not access status of transaction, + requiring manual removal of the orphaned file to restore service. + + + + + + + Avoid invalid memory accesses after skipping an invalid toast index + during VACUUM FULL (Tender Wang) + § + + + + A list tracking yet-to-be-rebuilt indexes was not properly updated + in this code path, risking assertion failures or crashes later on. + + + + + + + Fix ways in which an in place catalog update could be + lost (Noah Misch) + § + § + § + § + § + § + § + + + + Normal row updates write a new version of the row to preserve + rollback-ability of the transaction. However, certain system + catalog updates are intentionally non-transactional and are done + with an in-place update of the row. These patches fix race + conditions that could cause the effects of an in-place update to be + lost. As an example, it was possible to forget having set + pg_class.relhasindex + to true, preventing updates of the new index and thus causing index + corruption. + + + + + + + Reset catalog caches at end of recovery (Noah Misch) + § + + + + This prevents scenarios wherein an in-place catalog update could be + lost due to using stale data from a catalog cache. + + + + + + + Avoid using parallel query while holding off interrupts + (Francesco Degrassi, Noah Misch, Tom Lane) + § + § + + + + This situation cannot arise normally, but it can be reached with + test scenarios such as using a SQL-language function as B-tree + support (which would be far too slow for production usage). If it + did occur it would result in an indefinite wait. + + + + + + + Report the active query ID for statistics purposes at the start of + processing of Bind and Execute protocol messages (Sami Imseih) + § + + + + This allows more of the work done in extended query protocol to be + attributed to the correct query. + + + + + + + Guard against stack overflow in libxml2 + with too-deeply-nested XML input (Tom Lane, with hat tip to Nick + Wellnhofer) + § + + + + Use xmlXPathCtxtCompile() rather + than xmlXPathCompile(), because the latter + fails to protect itself against recursion-to-stack-overflow + in libxml2 releases before 2.13.4. + + + + + + + Do not ignore a concurrent REINDEX CONCURRENTLY + that is working on an index with predicates or expressions (Michail + Nikolaev) + § + + + + Normally, REINDEX CONCURRENTLY does not need to + wait for other REINDEX CONCURRENTLY operations on + other tables. However, this optimization is not applied if the + other REINDEX CONCURRENTLY is processing an index + with predicates or expressions, on the chance that such expressions + contain user-defined code that accesses other tables. Careless + coding created a race condition such that that rule was not applied + uniformly, possibly allowing inconsistent behavior. + + + + + + + Fix failed to find plan for subquery/CTE errors + in EXPLAIN (Richard Guo, Tom Lane) + § + § + + + + This case arose while trying to print references to fields of a + RECORD-type output of a subquery when the subquery has been + optimized out of the plan altogether (which is possible at least in + the case that it has a constant-false WHERE + condition). Nothing remains in the plan to identify the original + field names, so fall back to + printing fN for + the N'th record column. (That's actually + the right thing anyway, if the record output arose from + a ROW() constructor.) + + + + + + + Disallow a USING clause when altering the type of + a generated column (Peter Eisentraut) + § + + + + A generated column already has an expression specifying the column + contents, so including USING doesn't make sense. + + + + + + + Ignore not-yet-defined Portals in + the pg_cursors view (Tom Lane) + § + + + + It is possible for user-defined code that inspects this view to be + called while a new cursor is being set up, and if that happens a + null pointer dereference would ensue. Avoid the problem by defining + the view to exclude incompletely-set-up cursors. + + + + + + + Prevent mis-encoding of trailing junk after numeric + literal error messages (Karina Litskevich) + § + + + + We do not allow identifiers to appear immediately following numeric + literals (there must be some whitespace between). If a multibyte + character immediately followed a numeric literal, the syntax error + message about it included only the first byte of that character, + causing bad-encoding problems both in the report to the client and + in the postmaster log file. + + + + + + + Avoid unexpected table_index_fetch_tuple call during logical + decoding error while decoding a transaction involving + insertion of a column default value (Takeshi Ideriha, Hou Zhijie) + § + § + + + + + + + Reduce memory consumption of logical decoding (Masahiko Sawada) + § + + + + Use a smaller default block size to store tuple data received during + logical replication. This reduces memory wastage, which has been + reported to be severe while processing long-running transactions, + even leading to out-of-memory failures. + + + + + + + Re-disable sending of stateless (TLSv1.2) session tickets + (Daniel Gustafsson) + § + + + + A previous change to prevent sending of stateful (TLSv1.3) session + tickets accidentally re-enabled sending of stateless ones. Thus, + while we intended to prevent clients from thinking that TLS session + resumption is supported, some still did. + + + + + + + Avoid wrong tuple length failure when dropping a + database with many ACL (permission) entries (Ayush Tiwari) + § + § + + + + + + + Allow adjusting the session_authorization + and role settings in parallel workers (Tom Lane) + § + + + + Our code intends to allow modifiable server settings to be set by + function SET clauses, but not otherwise within a + parallel worker. SET clauses failed for these + two settings, though. + + + + + + + Fix behavior of stable functions called from + a CALL statement's argument list, when + the CALL is within a + PL/pgSQL EXCEPTION block (Tom Lane) + § + + + + As with a similar fix in our previous quarterly releases, this case + allowed such functions to be passed the wrong snapshot, causing them + to see stale values of rows modified since the start of the outer + transaction. + + + + + + + Fix cache lookup failed for function errors in edge + cases in PL/pgSQL's CALL (Tom Lane) + § + + + + + + + Fix thread safety of our fallback (non-OpenSSL) MD5 implementation + on big-endian hardware (Heikki Linnakangas) + § + + + + Thread safety is not currently a concern in the server, but it is + for libpq. + + + + + + + Parse libpq's keepalives + connection option in the same way as other integer-valued options + (Yuto Sasaki) + § + + + + The coding used here rejected trailing whitespace in the option + value, unlike other cases. This turns out to be problematic + in ecpg's usage, for example. + + + + + + + Avoid use of pnstrdup() + in ecpglib (Jacob Champion) + § + + + + That function will call exit() on + out-of-memory, which is undesirable in a library. The calling code + already handles allocation failures properly. + + + + + + + In ecpglib, fix out-of-bounds read when + parsing incorrect datetime input (Bruce Momjian, Pavel Nekrasov) + § + + + + It was possible to try to read the location just before the start of + a constant array. Real-world consequences seem minimal, though. + + + + + + + Fix pg_dump's handling of identity + sequences that have persistence different from their owning table's + persistence (Tom Lane) + § + + + + Since v15, it's been possible to set an identity sequence to be + LOGGED when its owning table is UNLOGGED or vice versa. + However, pg_dump's method for recreating + that situation failed in binary-upgrade mode, + causing pg_upgrade to fail when such + sequences are present. Fix by introducing a new option + for ADD/ALTER COLUMN GENERATED AS IDENTITY to + allow the sequence's persistence to be set correctly at creation. + Note that this means a dump from a database containing such a + sequence will only load into a server of this minor version or + newer. + + + + + + + Include the source timeline history + in pg_rewind's debug output + (Heikki Linnakangas) + § + + + + This was the intention to begin with, but a coding error caused the + source history to always print as empty. + + + + + + + Fix misbehavior with junction points on Windows, particularly + in pg_rewind (Alexandra Wang) + § + § + § + § + + + + This entailed back-patching previous fixes by Thomas Munro, Peter + Eisentraut, Alexander Lakhin, and Juan José Santamaría Flecha. + Those changes were originally not back-patched out of caution, but + they have been in use in later branches for long enough to deem + them safe. + + + + + + + Avoid trying to reindex temporary tables and indexes + in vacuumdb and in + parallel reindexdb (VaibhaveS, Michael + Paquier, Fujii Masao, Nathan Bossart) + § + § + § + + + + Reindexing other sessions' temporary tables cannot work, but the + check to skip them was missing in some code paths, leading to + unwanted failures. + + + + + + + Allow inspection of sequence relations in relevant functions + of contrib/pageinspect + and contrib/pgstattuple (Nathan Bossart, Ayush + Vatsa) + § + § + + + + This had been allowed in the past, but it got broken during the + introduction of non-default access methods for tables. + + + + + + + Fix incorrect LLVM-generated code on ARM64 platforms (Thomas + Munro, Anthonin Bonnefoy) + § + + + + When using JIT compilation on ARM platforms, the generated code + could not support relocation distances exceeding 32 bits, allowing + unlucky placement of generated code to cause server crashes on + large-memory systems. + + + + + + + Fix a few places that assumed that process start time (represented + as a time_t) will fit into a long value + (Max Johnson, Nathan Bossart) + § + + + + On platforms where long is 32 bits (notably Windows), + this coding would fail after Y2038. Most of the failures appear + only cosmetic, but notably pg_ctl start would + hang. + + + + + + + Fix building with Strawberry Perl on Windows (Andrew Dunstan) + § + + + + + + + Prevent missing declaration for inet_pton compiler + warning or error when building with MinGW (Thomas Munro, Andrew + Dunstan) + § + + + + + + + Update time zone data files to tzdata + release 2024b (Tom Lane) + § + § + + + + This tzdata release changes the old + System-V-compatibility zone names to duplicate the corresponding + geographic zones; for example PST8PDT is now an + alias for America/Los_Angeles. The main visible + consequence is that for timestamps before the introduction of + standardized time zones, the zone is considered to represent local + mean solar time for the named location. For example, + in PST8PDT, timestamptz input such + as 1801-01-01 00:00 would previously have been + rendered as 1801-01-01 00:00:00-08, but now it is + rendered as 1801-01-01 00:00:00-07:52:58. + + + + Also, historical corrections for Mexico, Mongolia, and Portugal. + Notably, Asia/Choibalsan is now an alias + for Asia/Ulaanbaatar rather than being a separate + zone, mainly because the differences between those zones were found to + be based on untrustworthy data. + + + + + + + + Release 15.8 @@ -47,6 +1685,7 @@ Branch: REL_12_STABLE [79c7a7e29] 2024-08-05 06:05:17 -0700 Prevent unauthorized code execution during pg_dump (Masahiko Sawada) + § @@ -84,6 +1723,7 @@ Branch: REL_14_STABLE [45ce054c0] 2024-07-19 12:07:53 -0400 Prevent infinite loop in VACUUM (Melanie Plageman) + § @@ -109,6 +1749,7 @@ Branch: REL_12_STABLE [08b6a9ecf] 2024-07-24 12:38:18 +0200 Fix failure after attaching a table as a partition, if the table had previously had inheritance children (Álvaro Herrera) + § @@ -134,6 +1775,8 @@ Branch: REL_12_STABLE [067cb6c5d] 2024-07-12 13:44:19 +0200 Fix ALTER TABLE DETACH PARTITION for cases involving inconsistent index-based constraints (Álvaro Herrera, Tender Wang) + § + § @@ -161,6 +1804,8 @@ Branch: REL_14_STABLE [5dcaefc6a] 2024-06-11 11:38:45 +0200 Fix partition pruning setup during ALTER TABLE DETACH PARTITION CONCURRENTLY (Álvaro Herrera) + § + § @@ -186,6 +1831,7 @@ Branch: REL_14_STABLE [2b415e95a] 2024-07-13 08:09:37 -0700 Correctly update a partitioned table's pg_class.reltuples field to zero after its last child partition is dropped (Noah Misch) + § @@ -215,6 +1861,8 @@ Branch: REL_12_STABLE [4208f44c9] 2024-06-06 15:16:56 -0400 Fix handling of polymorphic output arguments for procedures (Tom Lane) + § + § @@ -239,6 +1887,7 @@ Branch: REL_12_STABLE [0be81dd71] 2024-06-07 13:27:26 -0400 Fix behavior of stable functions called from a CALL statement's argument list (Tom Lane) + § @@ -263,6 +1912,7 @@ Branch: REL_12_STABLE [4f9628158] 2024-07-19 11:52:32 -0500 Detect integer overflow in money calculations (Joseph Koshakow) + § @@ -287,6 +1937,7 @@ Branch: REL_12_STABLE [8badee787] 2024-07-08 17:58:42 +0100 Fix over-aggressive clamping of the scale argument in round(numeric) and trunc(numeric) (Dean Rasheed) + § @@ -308,6 +1959,7 @@ Branch: REL_15_STABLE [0a80e88d9] 2024-07-28 22:24:15 +1200 Fix result for pg_size_pretty() when applied to the smallest possible bigint value (Joseph Koshakow) + § @@ -325,6 +1977,7 @@ Branch: REL_12_STABLE [2812059d3] 2024-05-13 15:54:23 -0500 Prevent pg_sequence_last_value() from failing on unlogged sequences on standby servers and on temporary sequences of other sessions (Nathan Bossart) + § @@ -345,6 +1998,7 @@ Branch: REL_12_STABLE [5e63a6f43] 2024-06-13 20:34:43 -0400 Fix parsing of ignored operators in websearch_to_tsquery() (Tom Lane) + § @@ -372,6 +2026,7 @@ Branch: REL_12_STABLE [878e8c6be] 2024-07-23 21:59:02 -0500 Detect another integer overflow case while computing new array dimensions (Joseph Koshakow) + § @@ -395,6 +2050,7 @@ Branch: REL_12_STABLE [11f3815d6] 2024-06-27 19:21:13 -0700 Detect another case of a new catalog cache entry becoming stale while detoasting its fields (Noah Misch) + § @@ -421,6 +2077,7 @@ Branch: REL_12_STABLE [feca6c688] 2024-07-20 13:40:15 -0400 Correctly check updatability of view columns targeted by INSERT ... DEFAULT (Tom Lane) + § @@ -446,6 +2103,7 @@ Branch: REL_12_STABLE [236b225ed] 2024-07-14 13:49:46 -0400 Avoid reporting an unhelpful internal error for incorrect recursive queries (Tom Lane) + § @@ -467,6 +2125,7 @@ Branch: REL_15_STABLE [24561b498] 2024-06-27 19:21:10 -0700 Lock owned sequences during ALTER TABLE SET LOGGED|UNLOGGED (Noah Misch) + § @@ -490,6 +2149,7 @@ Branch: REL_12_STABLE [b0037bbef] 2024-06-20 14:21:36 -0400 Don't throw an error if a queued AFTER trigger no longer exists (Tom Lane) + § @@ -516,6 +2176,7 @@ Branch: REL_12_STABLE [0a39343ae] 2024-06-14 16:20:35 -0400 Fix failure to remove pg_init_privs entries for column-level privileges when their table is dropped (Tom Lane) + § @@ -540,6 +2201,7 @@ Branch: REL_12_STABLE [9256bf6eb] 2024-06-11 17:57:46 -0400 Fix selection of an arbiter index for ON CONFLICT when the desired index has expressions or predicates (Tom Lane) + § @@ -563,6 +2225,7 @@ Branch: REL_12_STABLE [b8efd756d] 2024-06-07 14:50:09 -0400 Refuse to modify a temporary table of another session with ALTER TABLE (Tom Lane) + § @@ -584,6 +2247,7 @@ Branch: REL_14_STABLE [1015162c3] 2024-05-22 17:54:17 -0400 Fix handling of extended statistics on expressions in CREATE TABLE LIKE STATISTICS (Tom Lane) + § @@ -611,6 +2275,7 @@ Branch: REL_12_STABLE [686c995fc] 2024-05-18 14:31:35 -0400 Fix failure to recalculate sub-queries generated from MIN() or MAX() aggregates (Tom Lane) + § @@ -635,6 +2300,7 @@ Branch: REL_12_STABLE [dccda847b] 2024-06-27 14:44:04 -0400 Avoid crashing when a JIT-inlined backend function throws an error (Tom Lane) + § @@ -663,6 +2329,7 @@ Branch: REL_12_STABLE [a134baea7] 2024-07-10 20:15:52 -0400 Cope with behavioral changes in libxml2 version 2.13.x (Erik Wienhold, Tom Lane) + § @@ -689,6 +2356,7 @@ Branch: REL_12_STABLE [5dea6628b] 2024-06-27 21:09:15 +0300 Fix handling of subtransactions of prepared transactions when starting a hot standby server (Heikki Linnakangas) + § @@ -716,6 +2384,7 @@ Branch: REL_12_STABLE [1b3707587] 2024-07-11 22:48:08 +0900 Prevent incorrect initialization of logical replication slots (Masahiko Sawada) + § @@ -735,6 +2404,7 @@ Branch: REL_15_STABLE [bfc44da24] 2024-06-06 08:48:21 +0900 Avoid can only drop stats once error during replication slot creation and drop (Floris Van Nee) + § @@ -747,6 +2417,7 @@ Branch: REL_15_STABLE [76fda6140] 2024-06-27 10:43:52 +0530 --> Fix resource leakage in logical replication WAL sender (Hou Zhijie) + § @@ -769,6 +2440,7 @@ Branch: REL_12_STABLE [8565fb6fb] 2024-07-01 12:21:07 -0400 Avoid memory leakage after servicing a notify or sinval interrupt (Tom Lane) + § @@ -791,6 +2463,7 @@ Branch: REL_15_STABLE [eb144dfca] 2024-06-27 09:44:55 +0900 Prevent leakage of reference counts for the shared memory block used for statistics (Anthonin Bonnefoy) + § @@ -813,6 +2486,7 @@ Branch: REL_14_STABLE [4c8e00ae9] 2024-06-26 23:06:12 +0300 Prevent deadlocks and assertion failures during truncation of the multixact SLRU log (Heikki Linnakangas) + § @@ -835,6 +2509,7 @@ Branch: REL_12_STABLE [ba9fcac72] 2024-07-13 15:45:28 +1200 Avoid possibly missing end-of-input events on Windows sockets (Thomas Munro) + § @@ -857,6 +2532,7 @@ Branch: REL_13_STABLE [377c25d32] 2024-05-09 12:45:51 +0900 Fix buffer overread in JSON parse error reports for incomplete byte sequences (Jacob Champion) + § @@ -893,6 +2569,9 @@ Branch: REL_12_STABLE [e6dd0b863] 2024-07-26 19:10:37 +0200 Disable creation of stateful TLS session tickets by OpenSSL (Daniel Gustafsson) + § + § + § @@ -914,6 +2593,7 @@ Branch: REL_12_STABLE [ec210914c] 2024-06-13 13:37:51 -0400 When replanning a PL/pgSQL simple expression, check it's still simple (Tom Lane) + § @@ -941,6 +2621,7 @@ Branch: REL9_2_STABLE [1c4173116] 2024-06-26 07:32:15 -0400 Fix incompatibility between PL/Perl and Perl 5.40 (Andrew Dunstan) + § @@ -957,6 +2638,7 @@ Branch: REL_12_STABLE [157b1e6b4] 2024-05-09 13:16:21 -0400 Fix recursive RECORD-returning PL/Python functions (Tom Lane) + § @@ -981,6 +2663,7 @@ Branch: REL_12_STABLE [4488142a4] 2024-05-07 18:15:00 -0400 Don't corrupt PL/Python's TD dictionary during a recursive trigger call (Tom Lane) + § @@ -1005,6 +2688,7 @@ Branch: REL_12_STABLE [30487423c] 2024-06-04 18:02:13 -0400 Fix PL/Tcl's reporting of invalid list syntax in the result of a function returning tuple (Erik Wienhold, Tom Lane) + § @@ -1027,6 +2711,7 @@ Branch: REL_12_STABLE [407048999] 2024-07-28 09:26:48 +0200 Avoid non-thread-safe usage of strerror() in libpq (Peter Eisentraut) + § @@ -1045,6 +2730,7 @@ Branch: REL_15_STABLE [e6fc3b70d] 2024-05-15 22:48:51 +0200 Avoid memory leak within pg_dump during a binary upgrade (Daniel Gustafsson) + § @@ -1061,6 +2747,7 @@ Branch: REL_12_STABLE [a3c00ab15] 2024-05-07 18:23:20 -0400 Ensure that pg_restore reports dependent TOC entries correctly (Tom Lane) + § @@ -1082,6 +2769,7 @@ Branch: REL_15_STABLE [f39f3e0fb] 2024-07-19 13:15:05 +0900 Avoid cursor can only scan forward error in contrib/postgres_fdw (Etsuro Fujita) + § @@ -1103,6 +2791,7 @@ Branch: REL_13_STABLE [2b461efc5] 2024-06-07 17:45:08 +0900 In contrib/postgres_fdw, do not send FETCH FIRST WITH TIES clauses to the remote server (Japin Li) + § @@ -1127,6 +2816,7 @@ Branch: REL_12_STABLE [274a8195d] 2024-07-06 10:30:03 +1200 Avoid clashing with system-provided <regex.h> headers (Thomas Munro) + § @@ -1145,6 +2835,7 @@ Branch: REL_14_STABLE [dae9f16aa] 2024-06-19 10:21:52 +1200 Fix otherwise-harmless assertion failure in Memoize cost estimation (David Rowley) + § @@ -1161,6 +2852,7 @@ Branch: REL_12_STABLE [3e3e2ebea] 2024-06-17 14:30:59 -0400 Fix otherwise-harmless assertion failures in REINDEX CONCURRENTLY applied to an SP-GiST index (Tom Lane) + § @@ -1222,6 +2914,7 @@ Branch: REL_14_STABLE [c3425383b] 2024-05-06 09:00:19 -0500 Restrict visibility of pg_stats_ext and pg_stats_ext_exprs entries to the table owner (Nathan Bossart) + § @@ -1308,6 +3001,7 @@ Branch: REL_12_STABLE [82c87af7a] 2024-03-14 14:57:16 -0400 Fix INSERT from multiple VALUES rows into a target column that is a domain over an array or composite type (Tom Lane) + § @@ -1328,6 +3022,7 @@ Branch: REL_15_STABLE [90ad85db6] 2024-02-21 17:18:52 +0100 Require SELECT privilege on the target table for MERGE with a DO NOTHING clause (Álvaro Herrera) + § @@ -1349,6 +3044,7 @@ Branch: REL_15_STABLE [b5c645d2a] 2024-03-07 09:53:31 +0000 Fix handling of self-modified tuples in MERGE (Dean Rasheed) + § @@ -1376,6 +3072,7 @@ Branch: REL_12_STABLE [3ffcd24c2] 2024-02-20 12:51:38 +1300 Fix incorrect pruning of NULL partition when a table is partitioned on a boolean column and the query has a boolean IS NOT clause (David Rowley) + § @@ -1399,6 +3096,7 @@ Branch: REL_12_STABLE [a8b740868] 2024-03-26 15:28:16 -0400 Make ALTER FOREIGN TABLE SET SCHEMA move any owned sequences into the new schema (Tom Lane) + § @@ -1419,6 +3117,7 @@ Branch: REL_15_STABLE [d17a3a4c6] 2024-02-09 08:15:27 +0100 Make ALTER TABLE ... ADD COLUMN create identity/serial sequences with the same persistence as their owning tables (Peter Eisentraut) + § @@ -1443,6 +3142,8 @@ Branch: REL_14_STABLE [617a23927] 2024-04-28 14:34:21 -0400 Improve ALTER TABLE ... ALTER COLUMN TYPE's error message when there is a dependent function or publication (Tom Lane) + § + § @@ -1456,6 +3157,7 @@ Branch: REL_15_STABLE [276b7888f] 2024-04-21 21:22:11 +0200 In CREATE DATABASE, recognize strategy keywords case-insensitively for consistency with other options (Tomas Vondra) + § @@ -1472,6 +3174,7 @@ Branch: REL_12_STABLE [f3e4581ac] 2024-03-18 14:04:28 +0200 Fix EXPLAIN's counting of heap pages accessed by a bitmap heap scan (Melanie Plageman) + § @@ -1491,6 +3194,7 @@ Branch: REL_15_STABLE [89ee14a2f] 2024-03-17 10:20:20 +0000 Fix EXPLAIN's output for subplans in MERGE (Dean Rasheed) + § @@ -1512,6 +3216,7 @@ Branch: REL_12_STABLE [f5d9212e5] 2024-04-02 14:59:04 -0400 Avoid deadlock during removal of orphaned temporary tables (Mikhail Zhilin) + § @@ -1537,6 +3242,7 @@ Branch: REL_12_STABLE [f222349c4] 2024-04-29 10:25:00 -0700 Avoid race condition while examining per-relation frozen-XID values (Noah Misch) + § @@ -1555,6 +3261,7 @@ Branch: REL_15_STABLE [faba2f8f3] 2024-05-01 12:34:01 +0900 --> Fix buffer usage reporting for parallel vacuuming (Anthonin Bonnefoy) + § @@ -1575,6 +3282,7 @@ Branch: REL_12_STABLE [56d30fb10] 2024-04-30 15:22:56 -0400 Disallow converting a table to a view within an outer SQL command that is using that table (Tom Lane) + § @@ -1595,6 +3303,7 @@ Branch: REL_12_STABLE [f502849d4] 2024-04-16 11:22:39 -0400 Ensure that join conditions generated from equivalence classes are applied at the correct plan level (Tom Lane) + § @@ -1617,6 +3326,7 @@ Branch: REL_15_STABLE [7e5d20bbd] 2024-05-01 16:35:37 +1200 Prevent potentially-incorrect optimization of some window functions (David Rowley) + § @@ -1641,6 +3351,7 @@ Branch: REL_12_STABLE [25675c474] 2024-03-27 13:39:03 -0400 Avoid unnecessary use of moving-aggregate mode with a non-moving window frame (Vallimaharajan G) + § @@ -1665,6 +3376,7 @@ Branch: REL_12_STABLE [cf807eba5] 2024-02-23 15:21:53 -0500 Avoid use of already-freed data while planning partition-wise joins under GEQO (Tom Lane) + § @@ -1683,6 +3395,7 @@ Branch: REL_14_STABLE [72b8507db] 2024-03-11 18:21:48 +1300 Avoid freeing still-in-use data in Memoize (Tender Wang, Andrei Lepikhov) + § @@ -1706,6 +3419,7 @@ Branch: REL_12_STABLE [94246405d] 2024-03-05 16:19:26 +1300 Fix incorrectly-reported statistics kind codes in requested statistics kind X is not yet built error messages (David Rowley) + § @@ -1728,6 +3442,8 @@ Branch: REL_12_STABLE [466376c9f] 2024-03-06 14:41:13 -0500 Be more careful with RECORD-returning functions in FROM (Tom Lane) + § + § @@ -1754,6 +3470,7 @@ Branch: REL_12_STABLE [dc1503d5b] 2024-03-12 18:16:10 -0400 Fix confusion about the return rowtype of SQL-language procedures (Tom Lane) + § @@ -1776,6 +3493,7 @@ Branch: REL_12_STABLE [98bfb7558] 2024-03-11 02:53:07 +0200 Add protective stack depth checks to some recursive functions (Egor Chindyaskin) + § @@ -1790,6 +3508,7 @@ Branch: REL_14_STABLE [fe3b1b575] 2024-02-28 14:00:30 -0500 Fix mis-rounding and overflow hazards in date_bin() (Moaaz Assali) + § @@ -1815,6 +3534,7 @@ Branch: REL_12_STABLE [cb0ccefa0] 2024-04-28 13:42:13 -0400 Detect integer overflow when adding or subtracting an interval to/from a timestamp (Joseph Koshakow) + § @@ -1836,6 +3556,7 @@ Branch: REL_12_STABLE [f38903d1e] 2024-02-09 12:29:41 -0500 Avoid race condition in pg_get_expr() (Tom Lane) + § @@ -1858,6 +3579,7 @@ Branch: REL_12_STABLE [d44060cfc] 2024-02-09 12:55:43 +0200 Fix detection of old transaction IDs in XID status functions (Karina Litskevich) + § @@ -1879,6 +3601,7 @@ Branch: REL_14_STABLE [08059fc04] 2024-04-13 08:35:32 -0700 Ensure that a table's freespace map won't return a page that's past the end of the table (Ronan Dunklau) + § @@ -1901,6 +3624,7 @@ Branch: REL_12_STABLE [0341d4b10] 2024-04-11 19:05:07 +0900 Fix file descriptor leakage when an error is thrown while waiting in WaitEventSetWait (Etsuro Fujita) + § @@ -1915,6 +3639,7 @@ Branch: REL_14_STABLE [e10ca95ff] 2024-04-04 17:25:04 +0900 Avoid corrupting exception stack if an FDW implements async append but doesn't configure any wait conditions for the Append plan node to wait for (Alexander Pyhalov) + § @@ -1931,6 +3656,7 @@ Branch: REL_12_STABLE [c0b4dad38] 2024-02-25 16:15:07 -0500 Throw an error if an index is accessed while it is being reindexed (Tom Lane) + § @@ -1954,6 +3680,7 @@ Branch: REL_12_STABLE [e3f9dcabd] 2024-05-01 13:23:25 +1200 Ensure that index-only scans on name columns return a fully-padded value (David Rowley) + § @@ -1974,6 +3701,7 @@ Branch: REL_15_STABLE [28a8cc457] 2024-04-25 10:33:04 +0530 Fix race condition in deciding whether a table sync operation is needed in logical replication (Vignesh C) + § @@ -1996,6 +3724,7 @@ Branch: REL_12_STABLE [95cc48ca0] 2024-02-13 21:25:59 +0200 --> Fix crash with DSM allocations larger than 4GB (Heikki Linnakangas) + § @@ -2012,6 +3741,7 @@ Branch: REL_12_STABLE [df27d76d3] 2024-03-12 10:18:54 +0200 Disconnect if a new server session's client socket cannot be put into non-blocking mode (Heikki Linnakangas) + § @@ -2035,6 +3765,7 @@ Branch: REL_12_STABLE [c42e5fdcf] 2024-03-07 19:37:51 -0500 Fix inadequate error reporting with OpenSSL 3.0.0 and later (Heikki Linnakangas, Tom Lane) + § @@ -2063,6 +3794,8 @@ Branch: REL_12_STABLE [95e960e81] 2024-02-09 11:11:39 -0500 Avoid concurrent calls to bindtextdomain() in libpq and ecpglib (Tom Lane) + § + § @@ -2096,6 +3829,9 @@ Branch: REL_12_STABLE [cd26f08e4] 2024-04-19 01:07:52 -0400 Fix crash in ecpg's preprocessor if the program tries to redefine a macro that was defined on the preprocessor command line (Tom Lane) + § + § + § @@ -2113,6 +3849,7 @@ Branch: REL_12_STABLE [360d007e3] 2024-04-04 15:31:53 -0400 In ecpg, avoid issuing false unsupported feature will be passed to server warnings (Tom Lane) + § @@ -2130,6 +3867,7 @@ Branch: REL_12_STABLE [771240f97] 2024-02-19 11:38:54 +0900 Ensure that the string result of ecpg's intoasc() function is correctly zero-terminated (Oleg Tselebrovskiy) + § @@ -2143,6 +3881,7 @@ Branch: REL_15_STABLE [4f1d33d70] 2024-04-08 17:00:07 -0400 In psql, avoid leaking a query result after the query is cancelled (Tom Lane) + § @@ -2169,6 +3908,7 @@ Branch: REL_12_STABLE [82c2192d9] 2024-03-22 01:01:30 +0100 present, will be dumped regardless of the setting of (Daniel Gustafsson, Álvaro Herrera) + § @@ -2184,6 +3924,7 @@ Branch: REL_15_STABLE [29f005238] 2024-02-13 13:47:12 +0100 in pg_basebackup, pg_checksums, and pg_rewind (Daniel Gustafsson) + § @@ -2206,6 +3947,7 @@ Branch: REL_12_STABLE [5e9d8bed0] 2024-04-10 15:45:59 -0400 Fix PL/pgSQL's parsing of single-line comments (---style comments) following expressions (Erik Wienhold, Tom Lane) + § @@ -2236,6 +3978,8 @@ Branch: REL_12_STABLE [50f8611d0] 2024-03-23 23:03:14 +0200 In contrib/amcheck, don't report false match failures due to short- versus long-header values (Andrey Borodin, Michael Zhilin) + § + § @@ -2258,6 +4002,7 @@ Branch: REL_14_STABLE [ad23af83d] 2024-04-14 18:18:07 +0200 --> Fix bugs in BRIN output functions (Tomas Vondra) + § @@ -2280,6 +4025,7 @@ Branch: REL_12_STABLE [9301e0f41] 2024-03-11 12:29:24 +1300 In contrib/postgres_fdw, avoid emitting requests to sort by a constant (David Rowley) + § @@ -2306,6 +4052,7 @@ Branch: REL_12_STABLE [ce1c30ece] 2024-04-21 13:46:20 -0400 Make contrib/postgres_fdw set the remote session's time zone to GMT not UTC (Tom Lane) + § @@ -2330,6 +4077,7 @@ Branch: REL_12_STABLE [4b0e5d601] 2024-04-16 12:26:21 +0900 In contrib/xml2, avoid use of library functions that have been deprecated in recent versions of libxml2 (Dmitry Koval) + § @@ -2345,6 +4093,7 @@ Branch: REL_12_STABLE [01b55203a] 2024-04-10 12:15:59 +1200 --> Fix incompatibility with LLVM 18 (Thomas Munro, Dmitry Dolgov) + § @@ -2362,6 +4111,7 @@ Branch: REL_12_STABLE [7124e7d52] 2024-03-26 11:44:49 -0400 Allow make check to work with the musl C library (Thomas Munro, Bruce Momjian, Tom Lane) + § @@ -2427,6 +4177,8 @@ Branch: REL_12_STABLE [add8bc9b8] 2024-02-05 11:04:23 +0200 Tighten security restrictions within REFRESH MATERIALIZED VIEW CONCURRENTLY (Heikki Linnakangas) + § + § @@ -2466,6 +4218,7 @@ Branch: REL_12_STABLE [c922b2410] 2023-12-11 12:02:01 +0100 Fix memory leak when performing JIT inlining (Andres Freund, Daniel Gustafsson) + § @@ -2486,6 +4239,7 @@ Branch: REL_12_STABLE [810382285] 2024-01-18 11:12:48 +0900 When dequeueing from an LWLock, avoid needing to search the list of waiting processes (Andres Freund) + § @@ -2505,6 +4259,7 @@ Branch: REL_12_STABLE [2e822a1d6] 2024-02-01 12:34:21 -0500 --> Avoid generating incorrect partitioned-join plans (Richard Guo) + § @@ -2528,6 +4283,7 @@ Branch: REL_12_STABLE [69c12c417] 2024-01-11 15:28:13 -0500 Fix incorrect wrapping of subquery output expressions in PlaceHolderVars (Tom Lane) + § @@ -2547,6 +4303,7 @@ Branch: REL_15_STABLE [c3f52fd5d] 2024-01-10 13:36:34 -0500 --> Fix misprocessing of window function run conditions (Richard Guo) + § @@ -2565,6 +4322,7 @@ Branch: REL_15_STABLE [c0bfdaf2b] 2023-11-09 11:28:25 +0000 Skip inappropriate actions when MERGE causes a cross-partition update (Dean Rasheed) + § @@ -2589,6 +4347,7 @@ Branch: REL_15_STABLE [7e8c6d7af] 2023-12-21 12:51:55 +0000 Cope with BEFORE ROW DELETE triggers in cross-partition MERGE updates (Dean Rasheed) + § @@ -2609,6 +4368,7 @@ Branch: REL_14_STABLE [c7edaeec5] 2024-01-14 12:38:41 -0500 Prevent access to a no-longer-pinned buffer in BEFORE ROW UPDATE triggers (Alexander Lakhin, Tom Lane) + § @@ -2640,6 +4400,8 @@ Branch: REL_12_STABLE [a5e2853c3] 2024-01-08 19:58:51 +0200 Avoid requesting an oversize shared-memory area in parallel hash join (Thomas Munro, Andrei Lepikhov, Alexander Korotkov) + § + § @@ -2664,6 +4426,7 @@ Branch: REL_12_STABLE [b8a606e21] 2023-11-28 11:59:53 +0200 and heap_delete() when a tuple to be updated by a foreign-key enforcement trigger fails the extra visibility crosscheck (Alexander Lakhin) + § @@ -2683,6 +4446,7 @@ Branch: REL_14_STABLE [59fc39c0d] 2023-11-08 14:06:42 +0900 Fix overly tight assertion about false_positive_rate parameter of BRIN bloom operator classes (Alexander Lakhin) + § @@ -2703,6 +4467,7 @@ Branch: REL_12_STABLE [2f7242837] 2024-01-24 14:20:14 +0900 Fix possible failure during ALTER TABLE ADD COLUMN on a complex inheritance tree (Tender Wang) + § @@ -2726,6 +4491,7 @@ Branch: REL_12_STABLE [056109782] 2024-01-31 13:16:50 +0900 Fix problems with duplicate token names in ALTER TEXT SEARCH CONFIGURATION ... MAPPING commands (Tender Wang, Michael Paquier) + § @@ -2742,6 +4508,7 @@ Branch: REL_12_STABLE [4f8d3c5b5] 2023-11-19 21:04:47 +0100 Properly lock the associated table during DROP STATISTICS (Tomas Vondra) + § @@ -2764,6 +4531,7 @@ Branch: REL_12_STABLE [abd1b1325] 2023-11-16 10:05:14 -0500 Fix function volatility checking for GENERATED and DEFAULT expressions (Tom Lane) + § @@ -2796,6 +4564,8 @@ Branch: REL_12_STABLE [d29a4fbac] 2024-01-13 13:54:11 -0500 Detect that a new catalog cache entry became stale while detoasting its fields (Tom Lane) + § + § @@ -2823,6 +4593,7 @@ Branch: REL_12_STABLE [b17a02be2] 2023-11-09 09:57:52 +0000 Fix edge-case integer overflow detection bug on some platforms (Dean Rasheed) + § @@ -2846,6 +4617,7 @@ Branch: REL_12_STABLE [c3bdb25fb] 2024-01-26 13:39:37 -0500 Detect Julian-date overflow when adding or subtracting an interval to/from a timestamp (Tom Lane) + § @@ -2867,6 +4639,7 @@ Branch: REL_12_STABLE [f499d2b20] 2023-11-18 14:50:00 +0000 Add more checks for overflow in interval_mul() and interval_div() (Dean Rasheed) + § @@ -2885,6 +4658,7 @@ Branch: REL_15_STABLE [171d21f50] 2024-02-01 17:13:11 +0900 Ensure cached statistics are discarded after a change to stats_fetch_consistency (Shinya Kato) + § @@ -2908,6 +4682,7 @@ Branch: REL_12_STABLE [ea61b1cf6] 2023-12-26 17:57:48 -0500 validity of unapplied values for settings with backend or superuser-backend context (Tom Lane) + § @@ -2929,6 +4704,7 @@ Branch: REL_12_STABLE [5d40b3c4f] 2023-12-01 16:27:18 +0100 Match collation too when matching an existing index to a new partitioned index (Peter Eisentraut) + § @@ -2954,6 +4730,8 @@ Branch: REL_14_STABLE [b685b41cf] 2024-01-18 15:04:39 +0900 Avoid failure if a child index is dropped concurrently with REINDEX INDEX on a partitioned index (Fei Changhong) + § + § @@ -2970,6 +4748,7 @@ Branch: REL_12_STABLE [e6511fe64] 2024-01-29 13:46:48 +0200 Fix insufficient locking when cleaning up an incomplete split of a GIN index's internal page (Fei Changhong, Heikki Linnakangas) + § @@ -2992,6 +4771,7 @@ Branch: REL_12_STABLE [5a6937ec9] 2023-11-13 11:45:13 -0500 Avoid premature release of buffer pin in GIN index insertion (Tom Lane) + § @@ -3013,6 +4793,7 @@ Branch: REL_12_STABLE [1771ec9a8] 2023-12-21 12:43:36 -0500 --> Avoid failure with partitioned SP-GiST indexes (Tom Lane) + § @@ -3033,6 +4814,7 @@ Branch: REL_12_STABLE [ba66f2533] 2023-12-15 13:55:05 -0500 --> Fix ownership change reporting for large objects (Tom Lane) + § @@ -3052,6 +4834,7 @@ Branch: REL_15_STABLE [8dd70828b] 2023-12-14 09:59:52 +0100 Fix reporting of I/O timing data in EXPLAIN (BUFFERS) (Michael Paquier) + § @@ -3073,6 +4856,8 @@ Branch: REL_15_STABLE [8fa4a1ac6] 2024-02-01 13:44:23 -0800 --> Ensure durability of CREATE DATABASE (Noah Misch) + § + § @@ -3096,6 +4881,7 @@ Branch: REL_15_STABLE [8b34cff33] 2024-01-29 09:04:55 +0900 Add more LOG messages when starting and ending recovery from a backup (Andres Freund) + § @@ -3117,6 +4903,7 @@ Branch: REL_12_STABLE [4d45ecc92] 2023-12-12 17:05:36 +0100 Prevent standby servers from incorrectly processing dead index tuples during subtransactions (Fei Changhong) + § @@ -3141,6 +4928,7 @@ Branch: REL_15_STABLE [b9f687f5a] 2023-12-08 16:11:12 +1300 Fix integer overflow hazard in checking whether a record will fit into the WAL decoding buffer (Thomas Munro) + § @@ -3164,6 +4952,7 @@ Branch: REL_12_STABLE [e81e617f3] 2023-12-11 07:45:45 +0530 Fix deadlock between a logical replication apply worker, its tablesync worker, and a session process trying to alter the subscription (Shlok Kyal) + § @@ -3184,6 +4973,7 @@ Branch: REL_15_STABLE [a77fb8c68] 2023-11-27 09:14:17 +0530 Ensure that column default values are correctly transmitted by the pgoutput logical replication plugin (Nikhil Benesch) + § @@ -3207,6 +4997,7 @@ Branch: REL_15_STABLE [57aae65ae] 2023-11-22 11:14:35 +0530 Fix failure of logical replication's initial sync for a table with no columns (Vignesh C) + § @@ -3224,6 +5015,7 @@ Branch: REL_14_STABLE [6b77048e5] 2024-01-29 10:34:03 +0530 Prevent examining system catalogs with the wrong snapshot during logical decoding (Fei Changhong) + § @@ -3249,6 +5041,7 @@ Branch: REL_12_STABLE [c20f2aab6] 2024-01-03 17:40:38 -0500 Return the correct status code when a new client disconnects without responding to the server's password challenge (Liu Lang, Tom Lane) + § @@ -3273,6 +5066,7 @@ Branch: REL_12_STABLE [0bd682246] 2023-11-28 12:34:03 -0500 Fix incompatibility with OpenSSL 3.2 (Tristan Partin, Bo Andreson) + § @@ -3296,6 +5090,7 @@ Branch: REL_12_STABLE [271d24f31] 2023-12-11 11:51:56 -0500 Be more wary about OpenSSL not setting errno on error (Tom Lane) + § @@ -3317,6 +5112,7 @@ Branch: REL_14_STABLE [555276f85] 2023-11-23 13:31:57 +0200 Fix file descriptor leakage when a foreign data wrapper's ForeignAsyncRequest function fails (Heikki Linnakangas) + § @@ -3334,6 +5130,7 @@ Branch: REL_12_STABLE [4493bfb70] 2024-02-02 15:34:29 -0500 Report ENOMEM errors from file-related system calls as ERRCODE_OUT_OF_MEMORY, not ERRCODE_INTERNAL_ERROR (Alexander Kuzmenkov) + § @@ -3349,6 +5146,7 @@ Branch: REL_14_STABLE [b7e8f27d1] 2024-01-18 16:10:57 -0500 In PL/pgSQL, support SQL commands that are CREATE FUNCTION/CREATE PROCEDURE with SQL-standard bodies (Tom Lane) + § @@ -3372,6 +5170,8 @@ Branch: REL_14_STABLE [7a7c8c98a] 2024-01-16 12:27:52 +0100 Fix libpq's handling of errors in pipelines (Álvaro Herrera) + § + § @@ -3395,6 +5195,7 @@ Branch: REL_14_STABLE [99fa98766] 2023-11-08 16:44:08 +0100 PQsendFlushRequest() function flush the client output buffer under the same rules as other PQsend functions (Jelte Fennema-Nio) + § @@ -3418,6 +5219,7 @@ Branch: REL_12_STABLE [0217a7444] 2023-11-27 09:40:57 +0900 Avoid race condition when libpq initializes OpenSSL support concurrently in two different threads (Willi Mann, Michael Paquier) + § @@ -3433,6 +5235,7 @@ Branch: REL_12_STABLE [18fad508b] 2023-11-23 13:30:19 -0500 --> Fix timing-dependent failure in GSSAPI data transmission (Tom Lane) + § @@ -3463,6 +5266,8 @@ Branch: REL_12_STABLE [e43790342] 2023-11-14 00:31:39 -0500 In pg_dump, don't dump RLS policies or security labels for extension member objects (Tom Lane, Jacob Champion) + § + § @@ -3489,6 +5294,7 @@ Branch: REL_12_STABLE [69d7edb06] 2023-12-29 10:57:11 -0500 In pg_dump, don't dump an extended statistics object if its underlying table isn't being dumped (Rian McGuire, Tom Lane) + § @@ -3508,6 +5314,7 @@ Branch: REL_14_STABLE [85ecff891] 2024-01-22 17:48:30 +0100 Make it an error for a pgbench script to end with an open pipeline (Anthonin Bonnefoy) + § @@ -3535,6 +5342,7 @@ Branch: REL_12_STABLE [1c7443521] 2024-01-07 15:19:50 -0500 an element equal to INT_MAX is inserted into a gist__int_ops index (Alexander Lakhin, Tom Lane) + § @@ -3553,6 +5361,7 @@ Branch: REL_12_STABLE [f610d4f11] 2023-12-19 18:19:21 +0900 when contrib/pageinspect's hash_bitmap_info() function is applied to a partitioned hash index (Alexander Lakhin, Michael Paquier) + § @@ -3571,6 +5380,7 @@ Branch: REL_12_STABLE [bd2d3c928] 2023-12-19 15:20:55 +0900 when contrib/pgstattuple's pgstathashindex() function is applied to a partitioned hash index (Alexander Lakhin) + § @@ -3594,6 +5404,8 @@ Branch: REL_12_STABLE [e50a52b2b] 2024-01-12 14:00:02 +0900 On Windows, suppress autorun options when launching subprocesses in pg_ctl and pg_regress (Kyotaro Horiguchi) + § + § @@ -3615,6 +5427,7 @@ Branch: REL_15_STABLE [3726c1cb0] 2024-01-29 12:09:08 -0600 Move is_valid_ascii() from mb/pg_wchar.h to utils/ascii.h (Jubilee Young) + § @@ -3638,6 +5451,7 @@ Branch: REL_12_STABLE [b2fd1dab9] 2024-01-29 12:06:08 -0500 Fix compilation failures with libxml2 version 2.12.0 and later (Tom Lane) + § @@ -3653,6 +5467,7 @@ Branch: REL_13_STABLE [7d5a74033] 2023-12-06 14:11:47 +0900 Fix compilation failure of WAL_DEBUG code on Windows (Bharath Rupireddy) + § @@ -3671,6 +5486,7 @@ Branch: REL_16_STABLE [c72049dbc] 2023-12-26 17:03:24 -0500 Suppress compiler warnings from Python's header files (Peter Eisentraut, Tom Lane) + § @@ -3693,6 +5509,7 @@ Branch: REL_12_STABLE [d060cb658] 2024-01-25 13:47:35 +1300 --> Avoid deprecation warning when compiling with LLVM 18 (Thomas Munro) + § @@ -3711,7 +5528,8 @@ Branch: REL_12_STABLE [b59ae79b7] 2024-02-01 15:57:53 -0500 release 2024a for DST law changes in Greenland, Kazakhstan, and Palestine, plus corrections for the Antarctic stations Casey and Vostok. Also historical corrections for Vietnam, Toronto, and - Miquelon. + Miquelon. (Tom Lane) + § @@ -3776,6 +5594,7 @@ Branch: REL_11_STABLE [8c6633f4d] 2023-11-06 10:38:00 -0500 Fix handling of unknown-type arguments in DISTINCT "any" aggregate functions (Tom Lane) + § @@ -3806,6 +5625,7 @@ Branch: REL_11_STABLE [c48008f59] 2023-11-06 10:56:43 -0500 Detect integer overflow while computing new array dimensions (Tom Lane) + § @@ -3846,6 +5666,8 @@ Branch: REL_11_STABLE [a27be40c1] 2023-11-06 06:14:18 -0800 Prevent the pg_signal_backend role from signalling background workers and autovacuum processes (Noah Misch, Jelte Fennema-Nio) + § + § @@ -3887,6 +5709,7 @@ Branch: REL_12_STABLE [26917ebea] 2023-09-26 15:41:44 +0300 Fix misbehavior during recursive page split in GiST index build (Heikki Linnakangas) + § @@ -3911,6 +5734,7 @@ Branch: REL_13_STABLE [6fd1dbdb2] 2023-10-14 16:33:54 -0700 Prevent de-duplication of btree index entries for interval columns (Noah Misch) + § @@ -3938,6 +5762,7 @@ Branch: REL_14_STABLE [d1740e169] 2023-10-27 18:46:49 +0200 Process date values more sanely in BRIN datetime_minmax_multi_ops indexes (Tomas Vondra) + § @@ -3966,6 +5791,8 @@ Branch: REL_14_STABLE [90c4da6d4] 2023-10-27 18:46:46 +0200 values more sanely in BRIN datetime_minmax_multi_ops indexes (Tomas Vondra) + § + § @@ -3994,6 +5821,7 @@ Branch: REL_14_STABLE [0fa73c5cd] 2023-10-27 18:46:56 +0200 Avoid calculation overflows in BRIN interval_minmax_multi_ops indexes with extreme interval values (Tomas Vondra) + § @@ -4024,6 +5852,8 @@ Branch: REL_11_STABLE [07f261b31] 2023-10-12 19:53:50 +1300 Fix partition step generation and runtime partition pruning for hash-partitioned tables with multiple partition keys (David Rowley) + § + § @@ -4042,6 +5872,7 @@ Branch: REL_15_STABLE [3c1a1af91] 2023-09-30 10:55:24 +0100 Fix inconsistent rechecking of concurrently-updated rows during MERGE (Dean Rasheed) + § @@ -4075,6 +5906,7 @@ Branch: REL_16_STABLE [2bf99b48d] 2023-10-26 17:29:32 +0900 inherited UPDATE/DELETE/MERGE even when the parent table is excluded by constraints (Amit Langote, Tom Lane) + § @@ -4102,6 +5934,7 @@ Branch: REL_11_STABLE [7c07305e6] 2023-09-28 16:29:22 -0700 Fix edge case in btree mark/restore processing of ScalarArrayOpExpr clauses (Peter Geoghegan) + § @@ -4124,6 +5957,7 @@ Branch: REL_14_STABLE [e4b95b9b0] 2023-10-05 20:32:14 +1300 Fix intra-query memory leak in Memoize execution (Orlov Aleksej, David Rowley) + § @@ -4141,6 +5975,7 @@ Branch: REL_11_STABLE [7ab6971c6] 2023-10-28 14:04:43 -0400 Fix intra-query memory leak when a set-returning function repeatedly returns zero rows (Tom Lane) + § @@ -4158,6 +5993,7 @@ Branch: REL_11_STABLE [db00be6d7] 2023-09-18 14:27:47 -0400 Don't crash if cursor_to_xmlschema() is applied to a non-data-returning Portal (Boyu Yang) + § @@ -4174,6 +6010,7 @@ Branch: REL_12_STABLE [efcb601d2] 2023-10-31 16:44:27 +1300 Throw the intended error if pgrowlocks() is applied to a partitioned table (David Rowley) + § @@ -4196,6 +6033,7 @@ Branch: REL_11_STABLE [bae063db4] 2023-10-30 14:46:09 -0700 Handle invalid indexes more cleanly in assorted SQL functions (Noah Misch) + § @@ -4224,6 +6062,7 @@ Branch: REL_15_STABLE [ad8753a3a] 2023-08-21 13:33:08 +0900 Fix pg_stat_reset_single_table_counters() to do the right thing for a shared catalog (Masahiro Ikeda) + § @@ -4245,6 +6084,7 @@ Branch: REL_11_STABLE [0fb91ed2b] 2023-09-25 11:50:28 -0400 Avoid premature memory allocation failure with long inputs to to_tsvector() (Tom Lane) + § @@ -4262,6 +6102,7 @@ Branch: REL_11_STABLE [7a310cae0] 2023-10-01 13:17:25 -0400 Fix over-allocation of the constructed tsvector in tsvectorrecv() (Denis Erokhin) + § @@ -4289,6 +6130,7 @@ Branch: REL_11_STABLE [358cd2b25] 2023-09-04 14:55:58 +0900 Fix incorrect coding in gtsvector_picksplit() (Alexander Lakhin) + § @@ -4308,6 +6150,7 @@ Branch: REL_13_STABLE [817669ea2] 2023-10-18 20:43:17 -0400 --> Improve checks for corrupt PGLZ compressed data (Flavien Guedez) + § @@ -4322,6 +6165,7 @@ Branch: REL_14_STABLE [a715c0212] 2023-10-01 12:09:26 -0400 In COPY FROM, fail cleanly when an unsupported encoding conversion is needed (Tom Lane) + § @@ -4346,6 +6190,7 @@ Branch: REL_11_STABLE [6e1cca511] 2023-11-02 11:47:33 -0400 !! no live bug Avoid crash in EXPLAIN if a parameter marked to be displayed by EXPLAIN has a NULL boot-time value (Xing Guo, Aleksander Alekseev, Tom Lane) + § @@ -4368,6 +6213,7 @@ Branch: REL_11_STABLE [a295684b8] 2023-10-16 14:06:12 -0400 Ensure we have a snapshot while dropping ON COMMIT DROP temp tables (Tom Lane) + § @@ -4396,6 +6242,7 @@ Branch: REL_11_STABLE [bc322c73c] 2023-10-17 16:11:18 -0500 Avoid improper response to shutdown signals in child processes just forked by system() (Nathan Bossart) + § @@ -4420,6 +6267,7 @@ Branch: REL_12_STABLE [43c979086] 2023-10-16 17:25:43 +1300 Cope with torn reads of pg_control in frontend programs (Thomas Munro) + § @@ -4444,6 +6292,7 @@ Branch: REL_11_STABLE [f1634c968] 2023-10-16 10:52:40 +1300 Avoid torn reads of pg_control in relevant SQL functions (Thomas Munro) + § @@ -4466,6 +6315,7 @@ Branch: REL_12_STABLE [9b3900cdb] 2023-10-03 15:37:24 +0900 Avoid integer overflow when computing size of backend activity string array (Jakub Wartak) + § @@ -4491,6 +6341,7 @@ Branch: REL_13_STABLE [ed9247cd7] 2023-09-30 17:07:41 +0300 Fix briefly showing inconsistent progress statistics for ANALYZE on inherited tables (Heikki Linnakangas) + § @@ -4510,6 +6361,7 @@ Branch: REL_14_STABLE [594001864] 2023-10-02 12:50:32 +0300 Fix the background writer to report any WAL writes it makes to the statistics counters (Nazir Bilal Yavuz) + § @@ -4524,6 +6376,7 @@ Branch: REL_15_STABLE [802fcb9ed] 2023-09-26 09:30:39 +0900 Fix confusion about forced-flush behavior in pgstat_report_wal() (Ryoga Yoshida, Michael Paquier) + § @@ -4546,6 +6399,7 @@ Branch: REL_11_STABLE [fdc7cf73b] 2023-09-25 14:41:57 -0400 Track the dependencies of cached CALL statements, and re-plan them when needed (Tom Lane) + § @@ -4567,6 +6421,7 @@ Branch: REL_15_STABLE [9dc85806d] 2023-09-22 11:18:25 +0200 Avoid a possible pfree-a-NULL-pointer crash after an error in OpenSSL connection setup (Sergey Shinderuk) + § @@ -4585,6 +6440,7 @@ Branch: REL_11_STABLE [a374f6c61] 2023-09-15 17:01:26 -0400 Track nesting depth correctly when inspecting RECORD-type Vars from outer query levels (Richard Guo) + § @@ -4604,6 +6460,7 @@ Branch: REL_14_STABLE [6341cb0b0] 2023-09-14 11:27:43 +1200 Track hash function and negator function dependencies of ScalarArrayOpExpr plan nodes (David Rowley) + § @@ -4627,6 +6484,7 @@ Branch: REL_11_STABLE [6ae57f190] 2023-09-13 14:52:34 +1200 Fix error-handling bug in RECORD type cache management (Thomas Munro) + § @@ -4647,6 +6505,7 @@ Branch: REL_11_STABLE [feb4e218e] 2023-09-12 09:36:56 +0530 Fix assertion failure when logical decoding is retried in the same session after an error (Hou Zhijie) + § @@ -4663,6 +6522,7 @@ Branch: REL_12_STABLE [22b2e6e9d] 2023-10-03 10:25:19 +0900 Treat out-of-memory failures as fatal while reading WAL (Michael Paquier) + § @@ -4692,6 +6552,8 @@ Branch: REL_12_STABLE [bde2f1847] 2023-09-26 10:59:49 +1300 Fix possible recovery failure due to trying to allocate memory based on a bogus WAL record length field (Thomas Munro, Michael Paquier) + § + § @@ -4706,6 +6568,7 @@ Branch: REL_15_STABLE [5a9325fdd] 2023-09-04 08:04:43 +0900 Fix race condition in database dropping that could lead to the autovacuum launcher getting stuck (Andres Freund, Will Mortensen, Jacob Speidel) + § @@ -4727,6 +6590,7 @@ Branch: REL_13_STABLE [420c8dc7e] 2023-08-30 08:03:54 +0900 Fix datatype size confusion in logical tape management (Ranier Vilela) + § @@ -4748,6 +6612,7 @@ Branch: REL_13_STABLE [a01e479e8] 2023-08-29 09:12:17 +0300 Avoid unintended close of syslogger process's stdin (Heikki Linnakangas) + § @@ -4766,6 +6631,7 @@ Branch: REL_11_STABLE [9c59f3862] 2023-08-24 12:02:40 -0400 Avoid doing plan cache revalidation of utility statements that do not receive interesting processing during parse analysis (Tom Lane) + § @@ -4790,6 +6656,7 @@ Branch: REL_11_STABLE [b915bf495] 2023-08-24 16:14:26 -0400 Keep by-reference attmissingval values in a long-lived context while they are being used (Andrew Dunstan) + § @@ -4819,6 +6686,8 @@ Branch: REL_11_STABLE [ae1269295] 2023-08-10 10:27:24 -0700 Recalculate the effective value of search_path after ALTER ROLE (Jeff Davis) + § + § @@ -4839,6 +6708,7 @@ Branch: REL_14_STABLE [fb9a16a1a] 2023-10-22 10:05:59 +1300 Fix could not duplicate handle error occurring on Windows when min_dynamic_shared_memory is set above zero (Thomas Munro) + § @@ -4856,6 +6726,7 @@ Branch: REL_11_STABLE [04f0baa85] 2023-10-10 11:03:20 -0700 Fix order of operations in GenericXLogFinish (Jeff Davis) + § @@ -4880,6 +6751,7 @@ Branch: REL_11_STABLE [ddded779a] 2023-09-19 08:31:31 +0900 Remove incorrect assertion in PL/Python exception handling (Alexander Lakhin) + § @@ -4898,6 +6770,8 @@ Branch: REL_15_STABLE [3a788447d] 2023-09-05 11:36:55 +0200 Fix assertion failure in pg_dump when it's asked to dump the pg_catalog schema (Peter Eisentraut) + § + § @@ -4916,6 +6790,7 @@ Branch: REL_11_STABLE [4f16152d9] 2023-10-02 13:27:51 -0400 Fix pg_restore so that selective restores will include both table-level and column-level ACLs for selected tables (Euler Taveira, Tom Lane) + § @@ -4943,6 +6818,8 @@ Branch: REL_12_STABLE [d3246a2ad] 2023-11-03 12:07:40 -0400 Add logic to pg_upgrade to check for use of abstime, reltime, and tinterval data types (Álvaro Herrera) + § + § @@ -4967,6 +6844,7 @@ Branch: REL_11_STABLE [dbd1a06c9] 2023-09-07 14:12:36 +0900 Avoid generating invalid temporary slot names in pg_basebackup (Jelte Fennema) + § @@ -4988,6 +6866,7 @@ Branch: REL_12_STABLE [73cda80a3] 2023-10-14 15:54:50 -0700 Avoid false too many client connections errors in pgbench on Windows (Noah Misch) + § @@ -5005,6 +6884,7 @@ Branch: REL_11_STABLE [e04509f32] 2023-10-30 14:46:09 -0700 In contrib/amcheck, do not report interrupted page deletion as corruption (Noah Misch) + § @@ -5035,6 +6915,7 @@ Branch: REL_11_STABLE [c804ffb56] 2023-10-29 11:14:32 +0000 on interval columns, when an indexscan using the < or <= operator is performed (Dean Rasheed) + § @@ -5071,6 +6952,9 @@ Branch: REL_12_STABLE [9ad986276] 2023-10-24 11:23:21 +1300 --> Add support for LLVM 16 and 17 (Thomas Munro, Dmitry Dolgov) + § + § + § @@ -5096,6 +6980,8 @@ Branch: REL_11_STABLE [0e0de20c8] 2023-09-26 21:06:21 -0400 Suppress assorted build-time warnings on recent macOS (Tom Lane) + § + § @@ -5124,6 +7010,7 @@ Branch: REL_13_STABLE [a64b8b035] 2023-09-27 14:41:26 +0900 fall back to using python if --with-python was not given and make variable PYTHON was not set (Japin Li) + § @@ -5141,6 +7028,7 @@ Branch: REL_11_STABLE [64fc5e005] 2023-10-28 11:55:30 -0400 Remove PHOT (Phoenix Islands Time) from the default timezone abbreviations list (Tom Lane) + § @@ -5209,6 +7097,7 @@ Branch: REL_11_STABLE [919ebb023] 2023-08-07 06:06:01 -0700 Disallow substituting a schema or owner name into an extension script if the name contains a quote, backslash, or dollar sign (Noah Misch) + § @@ -5234,6 +7123,7 @@ Branch: REL_15_STABLE [cb2ae5741] 2023-08-07 09:24:27 +0100 Fix MERGE to enforce row security policies properly (Dean Rasheed) + § @@ -5281,6 +7171,8 @@ Branch: REL_11_STABLE [b511d7323] 2023-05-18 23:35:16 +0200 Fix confusion between empty (no rows) ranges and all-NULL ranges in BRIN indexes, as well as incorrect merging of all-NULL summaries (Tomas Vondra) + § + § @@ -5310,6 +7202,7 @@ Branch: REL_11_STABLE [1c38e7ae1] 2023-07-13 13:03:37 -0700 Avoid leaving a corrupted database behind when DROP DATABASE is interrupted (Andres Freund) + § @@ -5339,6 +7232,7 @@ Branch: REL_11_STABLE [c75c33de5] 2023-06-30 13:55:07 +0900 Ensure that partitioned indexes are correctly marked as valid or not at creation (Michael Paquier) + § @@ -5363,6 +7257,7 @@ Branch: REL_11_STABLE [e90e9275f] 2023-06-28 15:57:55 +0900 Ignore invalid child indexes when matching partitioned indexes to child indexes during ALTER TABLE ATTACH PARTITION (Michael Paquier) + § @@ -5385,6 +7280,7 @@ Branch: REL_11_STABLE [ed2b58c15] 2023-07-14 10:13:22 +0900 Fix possible failure when marking a partitioned index valid after all of its partitions have been attached (Michael Paquier) + § @@ -5409,6 +7305,7 @@ Branch: REL_11_STABLE [914e72e6e] 2023-07-10 09:40:24 +0900 Fix ALTER EXTENSION SET SCHEMA to complain if the extension contains any objects outside the extension's schema (Michael Paquier, Heikki Linnakangas) + § @@ -5426,6 +7323,7 @@ Branch: REL_15_STABLE [93401ec02] 2023-06-30 07:49:07 +0900 --> Fix tracking of tables' access method dependencies (Michael Paquier) + § @@ -5452,6 +7350,7 @@ Branch: REL_11_STABLE [f6345f03f] 2023-06-19 13:03:17 +1200 Don't use partial unique indexes for uniqueness proofs in the planner (David Rowley) + § @@ -5472,6 +7371,7 @@ Branch: REL_14_STABLE [bf315354e] 2023-08-07 22:15:50 +1200 Don't Memoize lateral joins with volatile join conditions (Richard Guo) + § @@ -5496,6 +7396,7 @@ Branch: REL_11_STABLE [db01f2696] 2023-07-28 15:45:09 +0900 Avoid producing incorrect plans for foreign joins with pseudoconstant join clauses (Etsuro Fujita) + § @@ -5520,6 +7421,7 @@ Branch: REL_11_STABLE [13192a324] 2023-06-13 15:58:37 -0400 Correctly handle sub-SELECTs in RLS policy expressions and security-barrier views when expanding rule actions (Tom Lane) + § @@ -5552,6 +7454,9 @@ Branch: REL_11_STABLE [0048c3b51] 2023-07-04 09:27:00 +1200 Fix race conditions in conflict detection for SERIALIZABLE isolation mode (Thomas Munro) + § + § + § @@ -5572,6 +7477,7 @@ Branch: REL_14_STABLE [f8320cc72] 2023-05-19 14:26:34 -0400 Fix misbehavior of EvalPlanQual checks with inherited or partitioned target tables (Tom Lane) + § @@ -5594,6 +7500,7 @@ Branch: REL_12_STABLE [9529b1eb1] 2023-06-20 17:47:36 -0400 Fix hash join with an inner-side hash key that contains Params coming from an outer nested loop (Tom Lane) + § @@ -5616,6 +7523,7 @@ Branch: REL_11_STABLE [7f11b7a9c] 2023-06-29 10:19:10 -0400 Fix intermittent failures when trying to update a field of a composite column (Tom Lane) + § @@ -5642,6 +7550,8 @@ Branch: REL_13_STABLE [984c23f6f] 2023-07-02 22:23:20 +0200 Prevent query-lifespan memory leaks in some UPDATE queries with triggers (Tomas Vondra) + § + § @@ -5657,6 +7567,7 @@ Branch: REL_13_STABLE [3ce761d5c] 2023-07-02 20:05:35 +0200 Prevent query-lifespan memory leaks when an Incremental Sort plan node is rescanned (James Coleman, Laurenz Albe, Tom Lane) + § @@ -5671,6 +7582,7 @@ Branch: REL_13_STABLE [6f23b5f74] 2023-06-12 10:54:28 -0400 Accept fractional seconds in the input to jsonpath's datetime() method (Tom Lane) + § @@ -5687,6 +7599,7 @@ Branch: REL_11_STABLE [c7f33a197] 2023-06-24 17:18:08 -0400 Prevent stack-overflow crashes with very complex text search patterns (Tom Lane) + § @@ -5705,6 +7618,7 @@ Branch: REL_11_STABLE [1d031ad54] 2023-07-27 12:07:48 -0400 Allow tokens up to 10240 bytes long in pg_hba.conf and pg_ident.conf (Tom Lane) + § @@ -5722,6 +7636,7 @@ Branch: REL_15_STABLE [a5f312c58] 2023-07-06 13:05:25 +0300 Ensure that all existing placeholders are checked for matches when an extension declares its GUC prefix to be reserved (Karina Litskevich, Ekaterina Sokolova) + § @@ -5742,6 +7657,7 @@ Branch: REL_11_STABLE [2316ff1ae] 2023-07-05 13:14:33 +0300 --> Fix mishandling of C++ out-of-memory conditions (Heikki Linnakangas) + § @@ -5764,6 +7680,7 @@ Branch: REL_13_STABLE [291c02540] 2023-07-20 14:23:46 -0400 Fix rare null-pointer crash in plancache.c (Tom Lane) + § @@ -5777,6 +7694,7 @@ Branch: REL_15_STABLE [66f8a1397] 2023-07-05 14:49:53 +0900 Avoid leaking a stats entry for a subscription when it is dropped (Masahiko Sawada) + § @@ -5794,6 +7712,7 @@ Branch: REL_11_STABLE [1605623ec] 2023-07-04 16:13:12 +1200 Avoid losing track of possibly-useful shared memory segments when a page free results in coalescing ranges of free space (Dongming Liu) + § @@ -5822,6 +7741,8 @@ Branch: REL_11_STABLE [a72b503ca] 2023-05-25 15:32:45 -0700 Allow VACUUM to continue after detecting certain types of b-tree index corruption (Peter Geoghegan) + § + § @@ -5850,6 +7771,7 @@ Branch: REL_11_STABLE [1386f0987] 2023-07-13 13:03:37 -0700 in pg_database.datfrozenxid or pg_database.datminmxid (Andres Freund) + § @@ -5880,6 +7802,8 @@ Branch: REL_11_STABLE [6c7bffc09] 2023-07-18 14:04:54 +0900 Avoid double replay of prepared transactions during crash recovery (suyu.cmj, Michael Paquier) + § + § @@ -5906,6 +7830,7 @@ Branch: REL_11_STABLE [6377f705c] 2023-07-04 18:08:40 +0300 Ensure that a newly created, but still empty table is fsync'ed at the next checkpoint (Heikki Linnakangas) + § @@ -5929,6 +7854,7 @@ Branch: REL_11_STABLE [988719b88] 2023-07-06 17:29:16 +0300 Ensure that creation of the init fork of an unlogged index is WAL-logged (Heikki Linnakangas) + § @@ -5949,6 +7875,7 @@ Branch: REL_15_STABLE [f50200c01] 2023-07-03 11:22:10 +1200 --> Silence bogus missing contrecord errors (Thomas Munro) + § @@ -5971,6 +7898,7 @@ Branch: REL_12_STABLE [668990980] 2023-08-02 01:44:31 +1200 Fix overly strict assertion in jsonpath code (David Rowley) + § @@ -5994,6 +7922,7 @@ Branch: REL_11_STABLE [a8be2356c] 2023-06-21 11:07:11 -0400 Avoid assertion failure when processing an empty statement via the extended query protocol in an already-aborted transaction (Tom Lane) + § @@ -6007,6 +7936,7 @@ Branch: REL_15_STABLE [ccd21e1cf] 2023-05-10 11:24:40 +0900 Avoid assertion failure when the stats_fetch_consistency setting is changed intra-transaction (Kyotaro Horiguchi) + § @@ -6024,6 +7954,7 @@ Branch: REL_11_STABLE [8084bf9a4] 2023-05-16 10:53:42 -0400 Fix contrib/fuzzystrmatch's Soundex difference() function to handle empty input sanely (Alexander Lakhin, Tom Lane) + § @@ -6045,6 +7976,7 @@ Branch: REL_11_STABLE [bbfc26d86] 2023-06-12 09:14:20 +0900 Tighten whitespace checks in contrib/hstore input (Evan Jones) + § @@ -6068,6 +8000,7 @@ Branch: REL_11_STABLE [ab40b0395] 2023-06-15 13:45:44 +0900 with contrib/intarray's gist__int_ops index opclass (Ankit Kumar Pandey, Alexander Lakhin) + § @@ -6092,6 +8025,7 @@ Branch: REL_11_STABLE [9f70f6d4c] 2023-07-13 13:08:40 -0400 Avoid useless double decompression of GiST index entries in contrib/intarray (Konstantin Knizhnik, Matthias van de Meent, Tom Lane) + § @@ -6106,6 +8040,7 @@ Branch: REL_14_STABLE [e72580232] 2023-05-19 12:38:18 +0900 Fix contrib/pageinspect's gist_page_items() function to work when there are included index columns (Alexander Lakhin, Michael Paquier) + § @@ -6126,6 +8061,7 @@ Branch: REL_15_STABLE [bc478a0a8] 2023-05-12 16:11:14 -0400 In psql, ignore the PSQL_WATCH_PAGER environment variable when stdin/stdout are not a terminal (Tom Lane) + § @@ -6145,6 +8081,7 @@ Branch: REL_14_STABLE [d6f549d7a] 2023-06-04 13:05:54 -0400 Fix pg_dump to correctly handle new-style SQL-language functions whose bodies require parse-time dependencies on unique indexes (Tom Lane) + § @@ -6166,6 +8103,7 @@ Branch: REL_15_STABLE [751ba1a7c] 2023-06-04 11:22:05 -0400 Improve pg_dump's display of details about dependency-loop problems (Tom Lane) + § @@ -6178,6 +8116,7 @@ Branch: REL_15_STABLE [34f511965] 2023-05-25 12:36:18 +0200 Avoid crash in pgbench with an empty pipeline and prepared mode (Álvaro Herrera) + § @@ -6196,6 +8135,7 @@ Branch: REL_11_STABLE [db9813819] 2023-07-14 11:16:13 +0900 Ensure that pg_index.indisreplident is kept up-to-date in relation cache entries (Shruthi Gowda) + § @@ -6215,6 +8155,7 @@ Branch: REL_15_STABLE [af26f28b9] 2023-06-14 11:11:18 +0900 Fix make_etags script to work with non-Exuberant ctags (Masahiko Sawada) + § @@ -6275,6 +8216,8 @@ Branch: REL_11_STABLE [766e06140] 2023-05-08 11:24:47 -0400 Prevent CREATE SCHEMA from defeating changes in search_path (Alexander Lakhin) + § + § @@ -6307,6 +8250,7 @@ Branch: REL_11_STABLE [473626cf0] 2023-05-08 10:12:45 -0400 Enforce row-level security policies correctly after inlining a set-returning function (Stephen Frost, Tom Lane) + § @@ -6335,6 +8279,7 @@ Branch: REL_15_STABLE [fa5dd460c] 2023-02-22 10:14:56 +0900 Fix potential corruption of the template (source) database after CREATE DATABASE with the STRATEGY WAL_LOG option (Nathan Bossart, Ryo Matsumura) + § @@ -6354,6 +8299,7 @@ Branch: REL_15_STABLE [560bb56c6] 2023-03-22 09:26:23 -0700 Fix memory leakage and unnecessary disk reads during CREATE DATABASE with the STRATEGY WAL_LOG option (Andres Freund) + § @@ -6370,6 +8316,7 @@ Branch: REL_11_STABLE [a9212716b] 2023-04-28 19:29:44 +0900 Avoid crash when the new schema name is omitted in CREATE SCHEMA (Michael Paquier) + § @@ -6393,6 +8340,8 @@ Branch: REL_15_STABLE [3908d6ae1] 2023-03-15 11:59:18 -0400 Fix various planner failures with MERGE commands (Tom Lane) + § + § @@ -6413,6 +8362,8 @@ Branch: REL_15_STABLE [018af1cc1] 2023-02-22 09:41:28 +0000 Fix the row count reported by MERGE for some corner cases (Dean Rasheed) + § + § @@ -6438,6 +8389,8 @@ Branch: REL_15_STABLE [5d8ec1b9f] 2023-02-15 20:37:44 +0100 Fix MERGE problems with concurrent updates (Dean Rasheed, Álvaro Herrera) + § + § @@ -6457,6 +8410,7 @@ Branch: REL_15_STABLE [f200b9695] 2023-05-07 11:01:15 -0400 Add support for decompiling MERGE commands (Álvaro Herrera) + § @@ -6475,6 +8429,7 @@ Branch: REL_15_STABLE [f61e60102] 2023-03-04 13:32:35 -0500 Fix enabling/disabling of foreign-key triggers in partitioned tables (Tom Lane) + § @@ -6499,6 +8454,7 @@ Branch: REL_11_STABLE [78838bc3d] 2023-03-27 15:04:02 -0400 Disallow altering composite types that are stored in indexes (Tom Lane) + § @@ -6522,6 +8478,7 @@ Branch: REL_12_STABLE [e8d74aac5] 2023-03-31 11:18:49 -0400 --> Disallow system columns as elements of foreign keys (Tom Lane) + § @@ -6544,6 +8501,7 @@ Branch: REL_11_STABLE [6e2674d77] 2023-03-10 13:52:28 -0500 Ensure that COPY TO from an RLS-enabled parent table does not copy any rows from child tables (Antonin Houska) + § @@ -6568,6 +8526,7 @@ Branch: REL_11_STABLE [4624aad61] 2023-05-04 11:48:23 -0400 Avoid possible crash when array_position() or array_positions() is passed an empty array (Tom Lane) + § @@ -6584,6 +8543,7 @@ Branch: REL_11_STABLE [8e33fb9ef] 2023-03-14 19:17:31 -0400 Fix possible out-of-bounds fetch in to_char() (Tom Lane) + § @@ -6604,6 +8564,7 @@ Branch: REL_11_STABLE [b1a9d8ef2] 2023-03-01 11:30:17 -0500 Avoid buffer overread in translate() function (Daniil Anisimov) + § @@ -6622,6 +8583,7 @@ Branch: REL_15_STABLE [8b87e9291] 2023-03-17 12:07:47 -0700 Adjust text-search-related character classification logic to correctly detect whether the prevailing locale is C (Jeff Davis) + § @@ -6638,6 +8600,7 @@ Branch: REL_15_STABLE [0ef65d0f5] 2023-02-12 12:50:55 -0500 Avoid possible crash on empty input for type interval (Tom Lane) + § @@ -6650,6 +8613,7 @@ Branch: REL_15_STABLE [ded5ede27] 2023-02-20 16:55:59 -0500 Re-allow exponential notation in ISO-8601 interval fields (Tom Lane) + § @@ -6672,6 +8636,7 @@ Branch: REL_11_STABLE [234941a3b] 2023-03-13 15:19:00 -0400 Fix error cursor setting for parse errors in JSON string literals (Tom Lane) + § @@ -6695,6 +8660,7 @@ Branch: REL_12_STABLE [3c92f7e9d] 2023-03-07 21:36:52 -0800 Fix data corruption due to vacuum_defer_cleanup_age being larger than the current 64-bit xid (Andres Freund) + § @@ -6720,6 +8686,7 @@ Branch: REL_11_STABLE [0736b1131] 2023-03-13 12:40:28 -0400 Fix parser's failure to detect some cases of improperly-nested aggregates (Tom Lane) + § @@ -6741,6 +8708,7 @@ Branch: REL_11_STABLE [07554c99d] 2023-03-31 12:15:39 +1300 Fix data structure corruption during parsing of serial SEQUENCE NAME options (David Rowley) + § @@ -6762,6 +8730,7 @@ Branch: REL_11_STABLE [60c8aeaf6] 2023-04-12 10:46:30 -0400 Correctly update plan nodes' parallel-safety markings when moving initplans from one node to another (Tom Lane) + § @@ -6780,6 +8749,7 @@ Branch: REL_14_STABLE [7c509f7e5] 2023-03-14 11:10:45 -0400 Avoid failure with PlaceHolderVars in extended-statistics code (Tom Lane) + § @@ -6798,6 +8768,7 @@ Branch: REL_15_STABLE [371e3daaa] 2023-03-17 15:51:00 +1300 Fix incorrect tests for whether a qual clause applied to a subquery can be transformed into a window aggregate run condition within the subquery (David Rowley) + § @@ -6819,6 +8790,7 @@ Branch: REL_11_STABLE [8d2a8581b] 2023-02-13 17:07:04 +1300 Disable the inverse-transition optimization for window aggregates when the call contains sub-SELECTs (David Rowley) + § @@ -6840,6 +8812,7 @@ Branch: REL_11_STABLE [ae320fc21] 2023-03-26 13:41:06 -0400 Fix oversights in execution of nested ARRAY[] constructs (Alexander Lakhin, Tom Lane) + § @@ -6863,6 +8836,7 @@ Branch: REL_12_STABLE [048caf8d7] 2023-04-15 12:01:39 -0400 Prevent crash when updating a field within an array-of-domain-over-composite-type column (Dmitry Dolgov) + § @@ -6879,6 +8853,7 @@ Branch: REL_11_STABLE [1c19e2863] 2023-04-14 16:23:11 +1200 Fix partition pruning logic for partitioning on boolean columns (David Rowley) + § @@ -6903,6 +8878,7 @@ Branch: REL_11_STABLE [ef16d2724] 2023-03-21 14:43:07 +1300 Fix race condition in per-batch cleanup during parallel hash join (Thomas Munro, Melanie Plageman) + § @@ -6924,6 +8900,7 @@ Branch: REL_12_STABLE [23b75dd03] 2023-03-06 18:31:16 -0500 Recalculate GENERATED columns after an EvalPlanQual check (Tom Lane) + § @@ -6944,6 +8921,7 @@ Branch: REL_14_STABLE [f654f343c] 2023-03-20 13:30:55 +1300 --> Fix memory leak in Memoize plan execution (David Rowley) + § @@ -6957,6 +8935,7 @@ Branch: REL_14_STABLE [4cc56f8ed] 2023-04-25 09:42:36 +0900 Fix buffer refcount leak when using batched inserts for a foreign table included in a partitioned tree (Alexander Pyhalov) + § @@ -6971,6 +8950,7 @@ Branch: REL_14_STABLE [2bef57ee8] 2023-03-15 14:05:27 +1300 Restore support for sub-millisecond vacuum_cost_delay settings (Thomas Munro) + § @@ -6988,6 +8968,7 @@ Branch: REL_11_STABLE [0151d2c5f] 2023-04-25 13:54:10 +0200 Don't balance vacuum cost delay when a table has a per-relation vacuum_cost_delay setting of zero (Masahiko Sawada) + § @@ -7011,6 +8992,7 @@ Branch: REL_11_STABLE [721626cb5] 2023-03-07 18:21:37 -0500 Fix corner-case crashes when columns have been added to the end of a view (Tom Lane) + § @@ -7027,6 +9009,7 @@ Branch: REL_11_STABLE [ffec64ba8] 2023-02-25 14:44:14 -0500 Repair rare failure of MULTIEXPR_SUBLINK subplans in partitioned updates (Andres Freund, Tom Lane) + § @@ -7054,6 +9037,7 @@ Branch: REL_11_STABLE [e68b133c3] 2023-02-23 10:58:43 +0000 multi-row INSERT ... VALUES query on a view that has a DO ALSO INSERT ... SELECT rule (Dean Rasheed) + § @@ -7076,6 +9060,7 @@ Branch: REL_11_STABLE [79f194cc0] 2023-02-25 14:48:08 +0000 Support references to OLD and NEW within subqueries in rule actions (Dean Rasheed, Tom Lane) + § @@ -7101,6 +9086,7 @@ Branch: REL_11_STABLE [df931e9ab] 2023-02-17 16:40:34 -0500 containing INSERT/UPDATE/DELETE within WITH, take care to print the correct alias for the target table (Tom Lane) + § @@ -7122,6 +9108,8 @@ Branch: REL_11_STABLE [d1c0f81e7] 2023-03-09 17:26:06 +1300 Fix glitches in SERIALIZABLE READ ONLY optimization (Thomas Munro) + § + § @@ -7146,6 +9134,7 @@ Branch: REL_11_STABLE [44dbc960f] 2023-02-23 15:40:28 -0500 Avoid leaking cache callback slots in the pgoutput logical decoding plugin (Shi Yu) + § @@ -7166,6 +9155,7 @@ Branch: REL_13_STABLE [02191136c] 2023-04-23 14:00:16 +0300 Avoid unnecessary calls to custom validators for index operator class options (Alexander Korotkov) + § @@ -7183,6 +9173,7 @@ Branch: REL_14_STABLE [f3daa3116] 2023-02-19 01:48:22 +0100 Avoid useless work while scanning a multi-column BRIN index with multiple scan keys (Tomas Vondra) + § @@ -7202,6 +9193,7 @@ Branch: REL_14_STABLE [6a78a42fe] 2023-03-20 10:16:54 +0100 Fix netmask handling in BRIN inet_minmax_multi_ops opclass (Tomas Vondra) + § @@ -7223,6 +9215,7 @@ Branch: REL_11_STABLE [b5c6776c1] 2023-03-29 11:31:30 -0400 Fix dereference of dangling pointer during buffering build of a GiST index (Alexander Lakhin) + § @@ -7250,6 +9243,8 @@ Branch: REL_11_STABLE [4cdaea7a2] 2023-03-21 08:39:00 +0530 Ignore dropped columns and generated columns during logical replication of an update or delete action (Onder Kalaci, Shi Yu) + § + § @@ -7269,6 +9264,7 @@ Branch: REL_13_STABLE [cedcc4191] 2023-05-05 21:26:02 +0900 Correct the name of the wait event for SLRU buffer I/O for commit timestamps (Alexander Lakhin) + § @@ -7290,6 +9286,7 @@ Branch: REL_14_STABLE [aeb6f4b3b] 2023-04-26 07:30:47 +0900 Re-activate reporting of wait event SLRUFlushSync (Thomas Munro) + § @@ -7309,6 +9306,7 @@ Branch: REL_13_STABLE [be40dd63e] 2023-04-27 14:32:55 -0700 Avoid possible underflow when calculating how many WAL segments to keep (Kyotaro Horiguchi) + § @@ -7326,6 +9324,7 @@ Branch: REL_15_STABLE [ecb01e6eb] 2023-02-10 16:27:05 -0500 Disable startup progress reporting overhead in standby mode (Bharath Rupireddy) + § @@ -7347,6 +9346,7 @@ Branch: REL_11_STABLE [88d606f7c] 2023-02-15 10:12:40 +0900 Support RSA-PSS certificates with SCRAM-SHA-256 channel binding (Jacob Champion, Heikki Linnakangas) + § @@ -7379,6 +9379,9 @@ Branch: REL_11_STABLE [b23f2a729] 2023-03-17 14:48:08 +1300 --> Avoid race condition with process ID tracking on Windows (Thomas Munro) + § + § + § @@ -7398,6 +9401,7 @@ Branch: REL_15_STABLE [63a03aea6] 2023-04-21 10:02:25 +1200 Fix list_copy_head() to work correctly on an empty List (David Rowley) + § @@ -7420,6 +9424,7 @@ Branch: REL_11_STABLE [83a54d966] 2023-02-22 13:29:39 +0000 Add missing cases to SPI_result_code_string() (Dean Rasheed) + § @@ -7436,6 +9441,7 @@ Branch: REL_11_STABLE [21bd818d0] 2023-02-21 18:47:47 -0500 Fix erroneous Valgrind markings in AllocSetRealloc() (Karina Litskevich) + § @@ -7455,6 +9461,7 @@ Branch: REL_15_STABLE [d8c3b65db] 2023-02-22 10:54:57 +0000 Fix assertion failure for MERGE into a partitioned table with row-level security enabled (Dean Rasheed) + § @@ -7471,6 +9478,7 @@ Branch: REL_11_STABLE [8de91ebf2] 2023-02-22 15:35:19 +0100 Avoid assertion failure when decoding a transactional logical replication message (Tomas Vondra) + § @@ -7487,6 +9495,7 @@ Branch: REL_11_STABLE [106a1bf82] 2023-04-21 08:21:18 -0700 Avoid locale sensitivity when processing regular expression escapes (Jeff Davis) + § @@ -7509,6 +9518,7 @@ Branch: REL_11_STABLE [c796d7296] 2023-04-17 14:22:06 -0400 Avoid trying to write an empty WAL record in log_newpage_range() when the last few pages in the specified range are empty (Matthias van de Meent) + § @@ -7530,6 +9540,7 @@ Branch: REL_12_STABLE [ee71cad9a] 2023-04-24 14:19:46 -0400 Fix session-lifespan memory leakage in plpgsql DO blocks that use cast expressions (Ajit Awekar, Tom Lane) + § @@ -7546,6 +9557,7 @@ Branch: REL_11_STABLE [ea96fbe77] 2023-04-29 13:06:44 -0400 Tighten array dimensionality checks when converting Perl list structures to multi-dimensional SQL arrays (Tom Lane) + § @@ -7575,6 +9587,8 @@ Branch: REL_11_STABLE [b7c6af375] 2023-04-28 12:24:29 -0400 Tighten array dimensionality checks when converting Python list structures to multi-dimensional SQL arrays (Tom Lane) + § + § @@ -7600,6 +9614,7 @@ Branch: REL_11_STABLE [0af386b0f] 2023-05-04 16:26:11 -0700 Fix unwinding of exception stack in plpython (Xing Guo) + § @@ -7623,6 +9638,7 @@ Branch: REL_12_STABLE [2bc36a56c] 2023-03-13 16:36:34 +0900 in libpq's PQconnectPoll() (Michael Paquier) + § @@ -7648,6 +9664,7 @@ Branch: REL_11_STABLE [dbd25dd0b] 2023-04-18 12:00:31 +0900 Fix possible data corruption in ecpg programs built with the option (Kyotaro Horiguchi) + § @@ -7672,6 +9689,7 @@ Branch: REL_11_STABLE [012ffb365] 2023-03-17 13:31:40 -0400 Fix pg_dump so that partitioned tables that are hash-partitioned on an enum-type column can be restored successfully (Tom Lane) + § @@ -7706,6 +9724,8 @@ Branch: REL_14_STABLE [bbf18fe19] 2023-03-15 12:56:10 +0900 Correctly detect non-seekable files on Windows (Juan José Santamaría Flecha, Michael Paquier, Daniel Watzinger) + § + § @@ -7726,6 +9746,7 @@ Branch: REL_14_STABLE [663e50e83] 2023-02-21 10:56:37 +0100 In pgbench's prepared mode, prepare all the commands in a pipeline before starting the pipeline (Álvaro Herrera) + § @@ -7747,6 +9768,8 @@ Branch: REL_14_STABLE [e3363cda9] 2023-03-28 16:21:29 -0400 In contrib/amcheck's heap checking code, deal correctly with tuples having zero xmin or xmax (Robert Haas) + § + § @@ -7760,6 +9783,7 @@ Branch: REL_14_STABLE [b3a83055c] 2023-03-11 14:17:51 -0800 In contrib/amcheck, deal sanely with xids that appear to be before epoch zero (Andres Freund) + § @@ -7780,6 +9804,7 @@ Branch: REL_15_STABLE [fa83e9e23] 2023-04-12 11:51:09 -0400 In contrib/basebackup_to_shell, properly detect failure to open a pipe (Robert Haas) + § @@ -7797,6 +9822,7 @@ Branch: REL_11_STABLE [c3c1097dc] 2023-04-27 11:55:06 -0400 In contrib/hstore_plpython, avoid crashing if the Python value to be transformed isn't a mapping (Dmitry Dolgov, Tom Lane) + § @@ -7817,6 +9843,7 @@ Branch: REL_13_STABLE [48c6825d0] 2023-04-23 14:00:16 +0300 Require the siglen option of a GiST index on an ltree column, if specified, to be a multiple of 4 (Alexander Korotkov) + § @@ -7837,6 +9864,7 @@ Branch: REL_14_STABLE [5ad63eee1] 2023-03-02 14:03:21 +0900 In contrib/pageinspect, add defenses against incorrect input for the gist_page_items() function (Dmitry Koval) + § @@ -7853,6 +9881,7 @@ Branch: REL_11_STABLE [b18327489] 2023-03-11 12:15:41 -0500 Fix misbehavior in contrib/pg_trgm with an unsatisfiable regular expression (Tom Lane) + § @@ -7875,6 +9904,7 @@ Branch: REL_15_STABLE [5bace41ab] 2023-02-21 20:02:09 +0900 in contrib/postgres_fdw's application_name parameter (Kyotaro Horiguchi, Michael Paquier) + § @@ -7892,6 +9922,7 @@ Branch: REL_15_STABLE [da32a99df] 2023-02-20 11:29:31 -0800 In contrib/pg_walinspect, limit memory usage of pg_get_wal_records_info() (Bharath Rupireddy) + § @@ -7909,6 +9940,7 @@ Branch: REL_11_STABLE [c976ccc9e] 2023-04-20 18:12:32 -0400 Use the option when stripping static libraries with GNU-compatible strip (Tom Lane) + § @@ -7933,6 +9965,7 @@ Branch: REL_11_STABLE [36a646d99] 2023-02-08 17:15:27 -0500 Stop recommending auto-download of DTD files for building the documentation, and indeed disable it (Aleksander Alekseev, Peter Eisentraut, Tom Lane) + § @@ -7962,6 +9995,7 @@ Branch: REL_11_STABLE [b189f71e5] 2023-05-05 07:12:26 +0200 When running TAP tests in PGXS builds, use a saner location for the temporary portlock directory (Peter Eisentraut) + § @@ -7984,7 +10018,8 @@ Branch: REL_11_STABLE [7228f2f81] 2023-04-18 14:46:39 -0400 Update time zone data files to tzdata release 2023c for DST law changes in Egypt, Greenland, Morocco, and - Palestine. + Palestine. (Tom Lane) + § @@ -8045,6 +10080,7 @@ Branch: REL_12_STABLE [3f7342671] 2023-02-06 11:20:31 +0900 libpq can leak memory contents after GSSAPI transport encryption initiation fails (Jacob Champion) + § @@ -8078,6 +10114,8 @@ Branch: REL_13_STABLE [787db4be9] 2023-01-15 14:06:46 -0500 Fix calculation of which GENERATED columns need to be updated in child tables during an UPDATE on a partitioned table or inheritance tree (Amit Langote, Tom Lane) + § + § @@ -8096,6 +10134,7 @@ Branch: REL_15_STABLE [4785af9e6] 2023-01-30 10:07:32 +0000 Fix possible failure of MERGE to compute GENERATED columns (Dean Rasheed) + § @@ -8118,6 +10157,7 @@ Branch: REL_15_STABLE [38255f2d0] 2023-01-10 14:16:27 +0000 Fix MERGE's check for unreachable WHEN clauses (Dean Rasheed) + § @@ -8135,6 +10175,7 @@ Branch: REL_15_STABLE [04d61bfe6] 2022-11-25 13:29:51 +0000 --> Fix MERGE's rule-detection test (Dean Rasheed) + § @@ -8152,6 +10193,7 @@ Branch: REL_15_STABLE [3d45edcef] 2022-11-17 18:56:11 +0100 In MERGE, don't count a DO NOTHING action as a processed tuple (Álvaro Herrera) + § @@ -8169,6 +10211,7 @@ Branch: REL_14_STABLE [ea5ae4cae] 2022-12-16 13:07:42 -0500 Allow a WITH RECURSIVE ... CYCLE CTE to access its output column (Tom Lane) + § @@ -8190,6 +10233,8 @@ Branch: REL_14_STABLE [d43a97ef4] 2022-12-08 16:15:03 +0900 Fix handling of pending inserts when doing a bulk insertion to a foreign table (Etsuro Fujita) + § + § @@ -8213,6 +10258,7 @@ Branch: REL_11_STABLE [6c122edde] 2023-01-21 13:10:30 -0500 Allow REPLICA IDENTITY to be set on an index that's not (yet) valid (Tom Lane) + § @@ -8240,6 +10286,7 @@ Branch: REL_11_STABLE [30f9b03a0] 2022-12-03 12:20:02 +0000 Fix handling of DEFAULT markers in rules that perform an INSERT from a multi-row VALUES list (Dean Rasheed) + § @@ -8261,6 +10308,7 @@ Branch: REL_12_STABLE [9e24e4781] 2023-01-12 18:19:19 +0300 Reject uses of undefined variables in jsonpath existence checks (Alexander Korotkov, David G. Johnston) + § @@ -8280,6 +10328,7 @@ Branch: REL_14_STABLE [a18328bb3] 2022-12-12 16:17:49 -0500 Fix jsonb subscripting to cope with toasted subscript values (Tom Lane, David G. Johnston) + § @@ -8304,6 +10353,7 @@ Branch: REL_11_STABLE [d95dcc9ab] 2023-01-26 14:55:37 +1300 --> Fix edge-case data corruption in parallel hash joins (Dmitry Astapov) + § @@ -8328,6 +10378,7 @@ Branch: REL_11_STABLE [0c2f34af7] 2023-01-19 13:13:34 +0900 Honor non-default settings of checkpoint_completion_target (Bharath Rupireddy) + § @@ -8351,6 +10402,7 @@ Branch: REL_11_STABLE [0a269527f] 2023-01-19 12:23:20 -0500 Log the correct ending timestamp in recovery_target_xid mode (Tom Lane) + § @@ -8373,6 +10425,7 @@ Branch: REL_13_STABLE [cf74b6ead] 2023-01-16 09:54:15 +0100 Improve error reporting for some buffered file read failures (Peter Eisentraut) + § @@ -8392,6 +10445,7 @@ Branch: REL_15_STABLE [db9127c58] 2023-01-15 17:32:09 -0500 Remove arbitrary limit on number of elements in int2vector and oidvector (Tom Lane) + § @@ -8417,6 +10471,7 @@ Branch: REL_11_STABLE [f48aa5df4] 2022-12-13 14:23:59 -0500 In extended query protocol, avoid an immediate commit after ANALYZE if we're running a pipeline (Tom Lane) + § @@ -8440,6 +10495,7 @@ Branch: REL_11_STABLE [8f70de7e0] 2023-01-21 06:08:05 -0800 Reject cancel request packets having the wrong length (Andrey Borodin) + § @@ -8462,6 +10518,7 @@ Branch: REL_15_STABLE [04788ee4c] 2022-12-10 19:27:53 +1300 Fix planner preprocessing oversights for window function run-condition expressions (Richard Guo, David Rowley) + § @@ -8479,6 +10536,7 @@ Branch: REL_15_STABLE [2a535620c] 2022-12-07 00:10:21 +1300 Fix possible dangling-pointer access during execution of window function run-condition expressions (David Rowley) + § @@ -8501,6 +10559,7 @@ Branch: REL_11_STABLE [8cd700cc5] 2022-12-22 10:35:03 -0500 --> Add recursion and looping defenses in subquery pullup (Tom Lane) + § @@ -8525,6 +10584,8 @@ Branch: REL_14_STABLE [ce093aa18] 2022-12-04 13:48:12 -0500 Fix planner issues when combining Memoize nodes with partitionwise joins or parameterized nestloops (Richard Guo) + § + § @@ -8546,6 +10607,7 @@ Branch: REL_11_STABLE [2df073313] 2022-12-04 13:17:18 -0500 Fix partitionwise-join code to tolerate failure to produce a plan for each partition (Tom Lane) + § @@ -8567,6 +10629,7 @@ Branch: REL_11_STABLE [b96a096db] 2022-11-22 14:40:46 -0500 Limit the amount of cleanup work done by get_actual_variable_range (Simon Riggs) + § @@ -8589,6 +10652,7 @@ Branch: REL_15_STABLE [c6a60471a] 2022-12-02 18:07:47 -0800 Prevent the statistics machinery from getting confused when a relation's relkind changes (Andres Freund) + § @@ -8607,6 +10671,7 @@ Branch: REL_14_STABLE [de0ff6088] 2022-12-01 11:38:15 -0500 Fix under-parenthesized display of AT TIME ZONE constructs (Tom Lane) + § @@ -8626,6 +10691,7 @@ Branch: REL_14_STABLE [7715a3c24] 2022-11-29 11:46:33 -0500 Prevent clobbering of cached parsetrees for utility statements in SQL functions (Tom Lane, Daniel Gustafsson) + § @@ -8648,6 +10714,7 @@ Branch: REL_11_STABLE [c0eed8891] 2022-11-21 17:07:07 -0500 Ensure that execution of full-text-search queries can be cancelled while they are performing phrase matches (Tom Lane) + § @@ -8663,6 +10730,7 @@ Branch: REL_12_STABLE [f98c4fb1d] 2022-12-01 11:49:43 -0800 Fix memory leak in hashing strings with nondeterministic collations (Jeff Davis) + § @@ -8676,6 +10744,7 @@ Branch: REL_14_STABLE [fd270b728] 2023-01-24 09:02:05 +0530 Fix deadlock between DROP DATABASE and logical replication worker process (Hou Zhijie) + § @@ -8700,6 +10769,7 @@ Branch: REL_11_STABLE [243373159] 2023-01-23 18:27:58 -0800 Clean up the libpq connection object after a failed replication connection attempt (Andres Freund) + § @@ -8724,6 +10794,7 @@ Branch: REL_11_STABLE [a6c9e1db2] 2022-11-29 15:43:17 -0500 In hot-standby servers, reduce processing effort for tracking XIDs known to be active on the primary (Simon Riggs, Michail Nikolaev) + § @@ -8745,6 +10816,7 @@ Branch: REL_13_STABLE [36eeb37cd] 2022-11-22 10:56:07 +0100 Ignore invalidated logical-replication slots while determining oldest catalog xmin (Sirisha Chamarthi) + § @@ -8766,6 +10838,7 @@ Branch: REL_14_STABLE [b2cc5b810] 2023-01-07 11:52:41 +0530 In logical decoding, notify the remote node when a transaction is detected to have crashed (Hou Zhijie) + § @@ -8789,6 +10862,7 @@ Branch: REL_11_STABLE [9b788aafd] 2022-11-25 08:56:54 +0530 --> Fix uninitialized-memory usage in logical decoding (Masahiko Sawada) + § @@ -8807,6 +10881,7 @@ Branch: REL_15_STABLE [6f25e4877] 2023-01-12 13:41:22 +0900 Acquire spinlock while updating shared state during logical decoding context creation (Masahiko Sawada) + § @@ -8826,6 +10901,7 @@ Branch: REL_15_STABLE [ebf87c019] 2022-12-02 11:14:42 +0530 Fix pgoutput replication plug-in to not send columns not listed in a table's replication column list (Hou Zhijie) + § @@ -8850,6 +10926,7 @@ Branch: REL_11_STABLE [1703033f8] 2022-11-14 09:52:06 +0530 Avoid rare failed to acquire cleanup lock panic during WAL replay of hash-index page split operations (Robert Haas) + § @@ -8866,6 +10943,7 @@ Branch: REL_11_STABLE [5eaf3e375] 2022-11-11 12:46:52 -0800 Advance a heap page's LSN when setting its all-visible bit during WAL replay (Jeff Davis) + § @@ -8887,6 +10965,7 @@ Branch: REL_14_STABLE [86bfbeab4] 2023-02-03 11:09:15 +0000 Fix int64_div_fast_to_numeric() to work for a wider range of inputs (Dean Rasheed) + § @@ -8909,6 +10988,7 @@ Branch: REL_11_STABLE [1b40710a8] 2023-01-13 10:54:20 +1300 Fix latent buffer-overrun problem in WaitEventSet logic (Thomas Munro) + § @@ -8935,6 +11015,7 @@ Branch: REL_11_STABLE [140c80372] 2022-11-19 12:36:52 -0800 Avoid nominally-undefined behavior when accessing shared memory in 32-bit builds (Andres Freund) + § @@ -8954,6 +11035,7 @@ Branch: REL_14_STABLE [883dc0214] 2022-12-30 20:47:58 +0100 --> Fix assertion failure in BRIN minmax-multi opclasses (Tomas Vondra) + § @@ -8974,6 +11056,7 @@ Branch: REL_12_STABLE [bb8d48cb9] 2022-11-29 10:52:44 -0500 Remove faulty assertion in useless-RESULT-RTE optimization logic (Tom Lane) + § @@ -8990,6 +11073,7 @@ Branch: REL_11_STABLE [df6fea51f] 2022-12-23 10:04:37 +0900 Fix copy-and-paste errors in cache-lookup-failure messages for ACL checks (Justin Pryzby) + § @@ -9007,6 +11091,7 @@ Branch: REL_15_STABLE [8b5ba2f3f] 2022-12-12 10:33:02 -0500 Fix possible corruption of very large tablespace map files in pg_basebackup (Antonin Houska) + § @@ -9019,6 +11104,7 @@ Branch: REL_15_STABLE [488e89bf7] 2023-01-19 19:32:47 -0500 Avoid harmless warning from pg_dump in mode (Tom Lane) + § @@ -9041,6 +11127,7 @@ Branch: REL_14_STABLE [303b26c1b] 2022-12-02 14:24:44 -0500 Fix psql's \sf and \ef commands to handle SQL-language functions that have SQL-standard function bodies (Tom Lane) + § @@ -9063,6 +11150,7 @@ Branch: REL_11_STABLE [c54b88870] 2023-01-06 11:09:56 +0000 Fix tab completion of ALTER FUNCTION/PROCEDURE/ROUTINE ... SET SCHEMA (Dean Rasheed) + § @@ -9076,6 +11164,7 @@ Branch: REL_15_STABLE [b8988cf1d] 2022-11-21 15:37:10 -0500 Update contrib/pageinspect to mark its disk-accessing functions as PARALLEL RESTRICTED (Tom Lane) + § @@ -9098,6 +11187,7 @@ Branch: REL_11_STABLE [0ff4056b8] 2022-12-21 17:51:50 -0500 Fix contrib/seg to not crash or print garbage if an input number has more than 127 digits (Tom Lane) + § @@ -9111,6 +11201,7 @@ Branch: REL_12_STABLE [cf0f465c0] 2022-11-10 10:23:49 -0500 --> Fix build on Microsoft Visual Studio 2013 (Tom Lane) + § @@ -9134,6 +11225,7 @@ Branch: REL_11_STABLE [ae7c51213] 2022-11-25 15:37:34 -0500 Fix compile failure in building PL/Perl with MSVC when using Strawberry Perl (Andrew Dunstan) + § @@ -9150,6 +11242,7 @@ Branch: REL_11_STABLE [724dd5649] 2022-11-27 09:18:46 -0500 Fix mismatch of PL/Perl built with MSVC versus a Perl library built with gcc (Andrew Dunstan) + § @@ -9170,6 +11263,7 @@ Branch: REL_11_STABLE [99f8bc335] 2023-01-02 15:51:05 -0800 --> Suppress compiler warnings from Perl's header files (Andres Freund) + § @@ -9192,6 +11286,7 @@ Branch: REL_11_STABLE [b69e9dfab] 2023-01-20 11:58:12 -0500 Fix pg_waldump to build on compilers that don't discard unused static-inline functions (Tom Lane) + § @@ -9209,7 +11304,8 @@ Branch: REL_11_STABLE [7ddc428ef] 2023-01-31 17:37:34 -0500 Update time zone data files to tzdata release 2022g for DST law changes in Greenland and Mexico, plus historical corrections for northern Canada, Colombia, and - Singapore. + Singapore. (Tom Lane) + § @@ -9264,6 +11360,7 @@ Branch: REL_15_STABLE [5fe0ab420] 2022-11-07 11:36:45 -0500 Fix failure to remove non-first segments of large tables (Tom Lane) + § @@ -9307,6 +11404,7 @@ Branch: REL_10_STABLE [23e2a06ac] 2022-10-11 18:24:15 -0400 Fix handling of DEFAULT tokens that appear in a multi-row VALUES clause of an INSERT on an updatable view (Tom Lane) + § @@ -9329,6 +11427,7 @@ Branch: REL_10_STABLE [ecf4ce689] 2022-10-17 12:14:39 -0400 Disallow rules named _RETURN that are not ON SELECT (Tom Lane) + § @@ -9348,6 +11447,7 @@ Branch: REL_14_STABLE [8122160ff] 2022-10-16 19:18:08 -0400 Avoid failure in EXPLAIN VERBOSE for a query using SEARCH BREADTH FIRST with constant initial values (Tom Lane) + § @@ -9360,6 +11460,7 @@ Branch: REL_15_STABLE [16d11d684] 2022-10-15 19:24:26 +0200 Prevent use of MERGE on a partitioned table with foreign-table partitions (Álvaro Herrera) + § @@ -9387,6 +11488,8 @@ Branch: REL_12_STABLE [669803af0] 2022-10-07 19:37:48 +0200 Fix construction of per-partition foreign key constraints while doing ALTER TABLE ATTACH PARTITION (Jehan-Guillaume de Rorthais, Álvaro Herrera) + § + § @@ -9404,6 +11507,7 @@ Branch: REL_15_STABLE [1f1865e90] 2022-11-01 14:34:44 -0400 Fix planner failure with extended statistics on partitioned or inherited tables (Richard Guo, Justin Pryzby) + § @@ -9426,6 +11530,7 @@ Branch: REL_10_STABLE [b02fc7df1] 2022-10-26 09:41:31 +0900 Fix mis-ordering of WAL operations in fast insert path for GIN indexes (Matthias van de Meent, Zhang Mingli) + § @@ -9455,6 +11560,8 @@ Branch: REL_11_STABLE [216af69ae] 2022-10-21 09:22:20 +0530 Fix bugs in logical decoding when replay starts from a point between the beginning of a transaction and the beginning of its subtransaction (Masahiko Sawada, Kuroda Hayato) + § + § @@ -9485,6 +11592,8 @@ Branch: REL_10_STABLE [6b50433e8] 2022-08-23 08:39:31 +0530 Accept interrupts in more places during logical decoding (Amit Kapila, Masahiko Sawada) + § + § @@ -9503,6 +11612,7 @@ Branch: REL_13_STABLE [4d3f7e75c] 2022-11-02 12:29:39 -0400 Prevent attempts to replicate into a foreign-table partition in replication workers (Shi Yu, Tom Lane) + § @@ -9527,6 +11637,7 @@ Branch: REL_10_STABLE [5f3cec77b] 2022-11-03 12:01:57 -0400 Avoid crash after function syntax error in replication workers (Maxim Orlov, Anton Melnikov, Masahiko Sawada, Tom Lane) + § @@ -9546,6 +11657,7 @@ Branch: REL_15_STABLE [5d2a47a29] 2022-10-19 14:07:01 +0900 Avoid double call of the shutdown callback of an archiver module (Nathan Bossart, Bharath Rupireddy) + § @@ -9561,6 +11673,7 @@ Branch: REL_12_STABLE [99b6b705d] 2022-10-17 11:35:23 -0400 Add plan-time check for attempted access to a table that has no table access method (Tom Lane) + § @@ -9584,6 +11697,7 @@ Branch: REL_10_STABLE [ab35b9dd7] 2022-10-11 18:54:31 -0400 Prevent postmaster crash when shared-memory state is corrupted (Tom Lane) + § @@ -9603,6 +11717,7 @@ Branch: REL_14_STABLE [b8af4166f] 2022-10-14 19:06:26 +0200 In libpq, handle single-row mode correctly when pipelining (Denis Laxalde) + § @@ -9620,6 +11735,7 @@ Branch: REL_15_STABLE [4a6de748d] 2022-10-22 09:41:38 +0200 Fix psql's exit status when a command-line query is canceled (Peter Eisentraut) + § @@ -9643,6 +11759,7 @@ Branch: REL_10_STABLE [ba58266eb] 2022-10-21 09:11:47 -0400 Allow cross-platform tablespace relocation in pg_basebackup (Robert Haas) + § @@ -9661,6 +11778,7 @@ Branch: REL_15_STABLE [0eede9625] 2022-11-02 11:30:04 -0400 Fix pg_dump's failure to dump comments attached to some CHECK constraints (Tom Lane) + § @@ -9674,6 +11792,7 @@ Branch: REL_15_STABLE [2c6d43650] 2022-11-04 10:39:52 -0400 Fix CREATE DATABASE to allow its oid parameter to exceed 231 (Tom Lane) + § @@ -9697,6 +11816,7 @@ Branch: REL_10_STABLE [56083ff30] 2022-11-01 12:48:01 -0400 In pg_stat_statements, fix access to already-freed memory (zhaoqigui) + § @@ -9721,6 +11841,7 @@ Branch: REL_11_STABLE [da3a6825e] 2022-10-19 22:49:25 +1300 --> Fix incompatibilities with LLVM 15 (Thomas Munro, Andres Freund) + § @@ -9738,6 +11859,7 @@ Branch: REL_10_STABLE [19cefebe7] 2022-11-02 17:37:26 -0400 Allow use of __sync_lock_test_and_set() for spinlocks on any machine (Tom Lane) + § @@ -9765,6 +11887,7 @@ Branch: REL9_2_STABLE [fec443414] 2022-10-16 15:27:04 -0400 Rename symbol REF to REF_P to avoid compile failure on recent macOS (Tom Lane) + § @@ -9780,6 +11903,7 @@ Branch: REL_12_STABLE [d33ac1ec2] 2022-10-16 11:47:44 -0400 Avoid using sprintf, to avoid compile-time deprecation warnings (Tom Lane) + § @@ -9798,7 +11922,8 @@ Branch: REL_10_STABLE [b3326a753] 2022-11-01 17:09:21 -0400 Update time zone data files to tzdata release 2022f for DST law changes in Chile, Fiji, Iran, Jordan, Mexico, Palestine, and Syria, plus historical corrections for Chile, - Crimea, Iran, and Mexico. + Crimea, Iran, and Mexico. (Tom Lane) + § @@ -9944,6 +12069,7 @@ Author: Noah Misch Remove PUBLIC creation permission on the public schema (Noah Misch) + § @@ -9974,6 +12100,7 @@ Author: Noah Misch Change the owner of the public schema to be the new pg_database_owner role (Noah Misch) + § @@ -10000,6 +12127,7 @@ Author: Stephen Frost Remove long-deprecated exclusive backup mode (David Steele, Nathan Bossart) + § @@ -10024,6 +12152,7 @@ Author: Peter Geoghegan Increase hash_mem_multiplier default to 2.0 (Peter Geoghegan) + § @@ -10043,6 +12172,7 @@ Author: Andres Freund Remove server-side language plpython2u and generic Python language plpythonu (Andres Freund) + § @@ -10063,6 +12193,7 @@ Author: Tom Lane Generate an error if array_to_tsvector() is passed an empty-string array element (Jean-Christophe Arnu) + § @@ -10083,6 +12214,7 @@ Author: Peter Eisentraut Generate an error when chr() is supplied with a negative argument (Peter Eisentraut) + § @@ -10096,6 +12228,7 @@ Author: Tom Lane Prevent CREATE OR REPLACE VIEW from changing the collation of an output column (Tom Lane) + § @@ -10110,6 +12243,7 @@ Author: Peter Eisentraut linkend="sql-syntax-identifiers">Unicode identifiers, e.g., U&"" (Peter Eisentraut) + § @@ -10127,6 +12261,7 @@ Author: Peter Eisentraut Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut) + § @@ -10147,6 +12282,7 @@ Author: Peter Eisentraut numeric literal processing to match the SQL/JSON-standard (Peter Eisentraut) + § @@ -10166,6 +12302,7 @@ Author: Bruce Momjian When interval input provides a fractional value for a unit greater than months, round to the nearest month (Bruce Momjian) + § @@ -10183,6 +12320,7 @@ Author: Tom Lane Improve consistency of interval parsing with trailing periods (Tom Lane) + § @@ -10201,6 +12339,7 @@ Author: Tom Lane function as stable, not immutable, since it depends on IntervalStyle (Tom Lane) + § @@ -10219,6 +12358,7 @@ Author: Tom Lane Detect integer overflow in interval justification functions (Joe Koshakow) + § @@ -10237,6 +12377,7 @@ Author: Tom Lane Change the I/O format of type "char" for non-ASCII characters (Tom Lane) + § @@ -10255,6 +12396,7 @@ Author: Robert Haas Remove the default ADMIN OPTION privilege a login role has on its own role membership (Robert Haas) + § @@ -10272,6 +12414,7 @@ Author: Jeff Davis Allow logical replication to run as the owner of the subscription (Mark Dilger) + § @@ -10292,6 +12435,7 @@ Author: Jeff Davis logical replication operations on tables where the subscription owner does not have SELECT permission on the table (Jeff Davis) + § @@ -10312,6 +12456,7 @@ Author: Tom Lane When EXPLAIN references the session's temporary object schema, refer to it as pg_temp (Amul Sul) + § @@ -10331,6 +12476,7 @@ Author: Tom Lane linkend="monitoring-pg-statio-all-tables-view">pg_statio_all_tables to sum values for the rare case of TOAST tables with multiple indexes (Andrei Zubkov) + § @@ -10353,6 +12499,9 @@ Author: Tom Lane options that match the name of an installed extension, but are not one of the extension's declared variables (Florin Irion, Tom Lane) + § + § + § @@ -10373,6 +12522,7 @@ Author: Andres Freund Remove obsolete server variable stats_temp_directory (Andres Freund, Kyotaro Horiguchi) + § @@ -10388,6 +12538,8 @@ Author: Tom Lane Improve the algorithm used to compute random() (Fabien Coelho) + § + § @@ -10407,6 +12559,7 @@ Author: Alvaro Herrera libpq's PQsendQuery() function is no longer supported in pipeline mode (Álvaro Herrera) + § @@ -10424,6 +12577,7 @@ Author: Tom Lane On non-Windows platforms, consult the HOME environment variable to find the user's home directory (Anders Kaseorg) + § @@ -10445,6 +12599,7 @@ Author: Tom Lane Remove pg_dump's option (Tom Lane) + § @@ -10466,6 +12621,7 @@ Author: Michael Paquier final COMMIT command to ROLLBACK only if ON_ERROR_STOP is set (Michael Paquier) + § @@ -10478,6 +12634,7 @@ Author: Tom Lane Avoid unnecessary casting of constants in queries sent by postgres_fdw (Dian Fay) + § @@ -10495,6 +12652,7 @@ Author: Tom Lane Remove xml2's xml_is_well_formed() function (Tom Lane) + § @@ -10512,6 +12670,7 @@ Author: Tom Lane Allow custom scan providers to indicate if they support projections (Sven Klemm) + § @@ -10548,6 +12707,7 @@ Author: Peter Eisentraut Record and check the collation version of each database (Peter Eisentraut) + § @@ -10571,6 +12731,7 @@ Author: Peter Eisentraut Allow ICU collations to be set as the default for clusters and databases (Peter Eisentraut) + § @@ -10592,6 +12753,7 @@ Author: Michael Paquier linkend="view-pg-ident-file-mappings">pg_ident_file_mappings to report pg_ident.conf information (Julien Rouhaud) + § @@ -10611,6 +12773,7 @@ Author: David Rowley Improve planning time for queries referencing partitioned tables (David Rowley) + § @@ -10627,6 +12790,7 @@ Author: David Rowley Allow ordered scans of partitions to avoid sorting in more cases (David Rowley) + § @@ -10646,6 +12810,7 @@ Author: Alvaro Herrera Improve foreign key behavior of updates on partitioned tables that move rows between partitions (Amit Langote) + § @@ -10667,6 +12832,8 @@ Author: Alvaro Herrera Allow CLUSTER on partitioned tables (Justin Pryzby) + § + § @@ -10680,6 +12847,7 @@ Author: Alvaro Herrera Fix ALTER TRIGGER RENAME on partitioned tables to properly rename triggers on all partitions (Arne Roland, Álvaro Herrera) + § @@ -10706,6 +12874,7 @@ Author: Peter Geoghegan Allow btree indexes on system and TOAST tables to efficiently store duplicates (Peter Geoghegan) + § @@ -10724,6 +12893,7 @@ Author: Alexander Korotkov of GiST indexes that were built using sorting (Aliaksandr Kalenik, Sergei Shoulbakov, Andrey Borodin) + § @@ -10736,6 +12906,7 @@ Author: Peter Eisentraut Allow unique constraints and indexes to treat NULL values as not distinct (Peter Eisentraut) + § @@ -10757,6 +12928,7 @@ Author: Tom Lane linkend="functions-string-other">^@ starts-with operator and the starts_with() function to use btree indexes if using the C collation (Tom Lane) + § @@ -10784,6 +12956,7 @@ Author: Tomas Vondra Allow extended statistics to record statistics for a parent with all its children (Tomas Vondra, Justin Pryzby) + § @@ -10804,6 +12977,7 @@ Author: Tom Lane to allow the user to specify the expected size of the working table of a recursive query (Simon Riggs) + § @@ -10826,6 +13000,7 @@ Author: David Rowley Allow hash lookup for NOT IN clauses with many constants (David Rowley, James Coleman) + § @@ -10842,6 +13017,7 @@ Author: David Rowley Allow SELECT DISTINCT to be parallelized (David Rowley) + § @@ -10855,6 +13031,7 @@ Author: John Naylor Speed up encoding validation of UTF-8 text by processing 16 bytes at a time (John Naylor, Heikki Linnakangas) + § @@ -10875,6 +13052,8 @@ Author: Heikki Linnakangas Improve performance for sorts that exceed work_mem (Heikki Linnakangas) + § + § @@ -10897,6 +13076,9 @@ Author: John Naylor Improve performance and reduce memory consumption of in-memory sorts (Ronan Dunklau, David Rowley, Thomas Munro, John Naylor) + § + § + § @@ -10912,6 +13094,8 @@ Author: Michael Paquier Allow WAL full page writes to use LZ4 and Zstandard compression (Andrey Borodin, Justin Pryzby) + § + § @@ -10931,6 +13115,7 @@ Author: Thomas Munro Add support for writing WAL using direct I/O on macOS (Thomas Munro) + § @@ -10949,6 +13134,7 @@ Author: Peter Geoghegan Allow vacuum to be more aggressive in setting the oldest frozen and multi transaction id (Peter Geoghegan) + § @@ -10963,6 +13149,7 @@ Author: Etsuro Fujita linkend="ddl-foreign-data">foreign tables to perform parallel foreign table scans in more cases (Andrey Lepikhov, Etsuro Fujita) + § @@ -10978,6 +13165,7 @@ Author: David Rowley rank(), dense_rank() and count() (David Rowley) + § @@ -10990,6 +13178,7 @@ Author: Tom Lane Improve the performance of spinlocks on high-core-count ARM64 systems (Geoffrey Blake) + § @@ -11011,6 +13200,7 @@ Author: Robert Haas Enable default logging of checkpoints and slow autovacuum operations (Bharath Rupireddy) + § @@ -11036,6 +13226,8 @@ Author: Alvaro Herrera Generate progress messages in the server log during slow server starts (Nitin Jadhav, Robert Haas) + § + § @@ -11057,6 +13249,8 @@ Author: Andres Freund Store cumulative statistics system data in shared memory (Kyotaro Horiguchi, Andres Freund, Melanie Plageman) + § + § @@ -11080,6 +13274,9 @@ Author: Peter Geoghegan Add additional information to VACUUM VERBOSE and autovacuum logging messages (Peter Geoghegan) + § + § + § @@ -11093,6 +13290,7 @@ Author: Michael Paquier Add EXPLAIN (BUFFERS) output for temporary file block I/O (Masahiko Sawada) + § @@ -11105,6 +13303,7 @@ Author: Michael Paquier Allow log output in JSON format (Sehrope Sarkuni, Michael Paquier) + § @@ -11123,6 +13322,7 @@ Author: Fujii Masao linkend="monitoring-stats-funcs-table">pg_stat_reset_single_table_counters() to reset the counters of relations shared across all databases (Sadhuprasad Patro) + § @@ -11135,6 +13335,7 @@ Author: Fujii Masao Add wait events for local shell commands (Fujii Masao) + § @@ -11165,6 +13366,7 @@ Author: Dean Rasheed Allow table accesses done by a view to optionally be controlled by privileges of the view's caller (Christoph Heiss) + § @@ -11184,6 +13386,7 @@ Author: Robert Haas linkend="predefined-roles-table">pg_write_server_files predefined role to perform server-side base backups (Dagfinn Ilmari Mannsåker) + § @@ -11204,6 +13407,8 @@ Author: Tom Lane to grant permissions to change individual server variables via SET and ALTER SYSTEM (Mark Dilger) + § + § @@ -11225,6 +13430,8 @@ Author: Robert Haas linkend="predefined-roles-table">pg_checkpoint that allows members to run CHECKPOINT (Jeff Davis) + § + § @@ -11246,6 +13453,7 @@ Author: Jeff Davis and pg_shmem_allocations (Bharath Rupireddy) + § @@ -11264,6 +13472,7 @@ Author: Jeff Davis to grant permissions on pg_log_backend_memory_contexts() (Jeff Davis) + § @@ -11292,6 +13501,8 @@ Author: Michael Paquier Add server variable shared_memory_size to report the size of allocated shared memory (Nathan Bossart) + § + § @@ -11307,6 +13518,8 @@ Author: Michael Paquier Add server variable shared_memory_size_in_huge_pages to report the number of huge memory pages required (Nathan Bossart) + § + § @@ -11324,6 +13537,7 @@ Author: Jeff Davis Honor server variable shared_preload_libraries in single-user mode (Jeff Davis) + § @@ -11344,6 +13558,7 @@ Author: Thomas Munro On Solaris, make the default setting of dynamic_shared_memory_type be sysv (Thomas Munro) + § @@ -11362,6 +13577,7 @@ Author: Michael Paquier Allow postgres -C to properly report runtime-computed values (Nathan Bossart) + § @@ -11401,6 +13617,9 @@ Author: Robert Haas Add support for LZ4 and Zstandard compression of server-side base backups (Jeevan Ladhe, Robert Haas) + § + § + § @@ -11413,6 +13632,7 @@ Author: Thomas Munro Run the checkpointer and bgwriter processes during crash recovery (Thomas Munro) + § @@ -11429,6 +13649,7 @@ Author: Thomas Munro Allow WAL processing to pre-fetch needed file contents (Thomas Munro) + § @@ -11445,6 +13666,7 @@ Author: Robert Haas Allow archiving via loadable modules (Nathan Bossart) + § @@ -11465,6 +13687,7 @@ Author: Jeff Davis No longer require IDENTIFY_SYSTEM to be run before START_REPLICATION (Jeff Davis) + § @@ -11488,6 +13711,9 @@ Author: Alvaro Herrera Allow publication of all tables in a schema (Vignesh C, Hou Zhijie, Amit Kapila) + § + § + § @@ -11512,6 +13738,9 @@ Author: Amit Kapila Allow publication content to be filtered using a WHERE clause (Hou Zhijie, Euler Taveira, Peter Smith, Ajin Cherian, Tomas Vondra, Amit Kapila) + § + § + § @@ -11530,6 +13759,7 @@ Author: Tomas Vondra Allow publication content to be restricted to specific columns (Tomas Vondra, Álvaro Herrera, Rahila Syed) + § @@ -11543,6 +13773,7 @@ Author: Amit Kapila Allow skipping of transactions on a subscriber using ALTER SUBSCRIPTION ... SKIP (Masahiko Sawada) + § @@ -11560,6 +13791,9 @@ Author: Amit Kapila Add support for prepared (two-phase) transactions to logical replication (Peter Smith, Ajin Cherian, Amit Kapila, Nikhil Sontakke, Stas Kelvich) + § + § + § @@ -11580,6 +13814,7 @@ Author: Amit Kapila Prevent logical replication of empty transactions (Ajin Cherian, Hou Zhijie, Euler Taveira) + § @@ -11597,6 +13832,7 @@ Author: Michael Paquier Add SQL functions to monitor the directory contents of logical replication slots (Bharath Rupireddy) + § @@ -11617,6 +13853,7 @@ Author: Amit Kapila Allow subscribers to stop the application of logical replication changes on error (Osumi Takamichi, Mark Dilger) + § @@ -11635,6 +13872,7 @@ Author: Tom Lane Adjust subscriber server variables to match the publisher so datetime and float8 values are interpreted consistently (Japin Li) + § @@ -11654,6 +13892,8 @@ Author: Amit Kapila Add system view pg_stat_subscription_stats to report on subscriber activity (Masahiko Sawada) + § + § @@ -11673,6 +13913,7 @@ Author: Amit Kapila Suppress duplicate entries in the pg_publication_tables system view (Hou Zhijie) + § @@ -11702,6 +13943,7 @@ Author: Alvaro Herrera linkend="sql-merge">MERGE command to adjust one table to match another (Simon Riggs, Pavan Deolasee, Álvaro Herrera, Amit Langote) + § @@ -11722,6 +13964,8 @@ Author: Peter Eisentraut Add support for HEADER option in COPY text format (Rémi Lapeyre) + § + § @@ -11739,6 +13983,7 @@ Author: Robert Haas Add new WAL-logged method for database creation (Dilip Kumar) + § @@ -11759,6 +14004,7 @@ Author: Robert Haas Allow CREATE DATABASE to set the database OID (Shruthi Gowda, Antonin Houska) + § @@ -11776,6 +14022,7 @@ Author: Thomas Munro linkend="sql-alterdatabase">ALTER DATABASE SET TABLESPACE from occasionally failing during concurrent use on Windows (Thomas Munro) + § @@ -11789,6 +14036,7 @@ Author: Peter Eisentraut Allow foreign key ON DELETE SET actions to affect only specified columns (Paul Martinez) + § @@ -11807,6 +14055,7 @@ Author: Michael Paquier Allow ALTER TABLE to modify a table's ACCESS METHOD (Justin Pryzby, Jeff Davis) + § @@ -11820,6 +14069,7 @@ Author: Michael Paquier Properly call object access hooks when ALTER TABLE causes table rewrites (Michael Paquier) + § @@ -11832,6 +14082,7 @@ Author: Peter Eisentraut Allow creation of unlogged sequences (Peter Eisentraut) + § @@ -11844,6 +14095,7 @@ Author: Tom Lane Track dependencies on individual columns in the results of functions returning composite types (Tom Lane) + § @@ -11878,6 +14130,7 @@ Author: Dean Rasheed a numeric value to be negative, or greater than its precision (Dean Rasheed, Tom Lane) + § @@ -11895,6 +14148,7 @@ Author: Tom Lane Improve overflow detection when casting values to interval (Joe Koshakow) + § @@ -11907,6 +14161,7 @@ Author: Tom Lane Change the I/O format of type "char" for non-ASCII characters (Tom Lane) + § @@ -11921,6 +14176,8 @@ Author: Peter Eisentraut Update the display width information of modern Unicode characters, like emojis (Jacob Champion) + § + § @@ -11948,6 +14205,7 @@ Author: Peter Eisentraut Add multirange input to range_agg() (Paul Jungwirth) + § @@ -11961,6 +14219,7 @@ Author: Fujii Masao Add MIN() and MAX() aggregates for the xid8 data type (Ken Kato) + § @@ -11973,6 +14232,7 @@ Author: Tom Lane Add regular expression functions for compatibility with other relational systems (Gilles Darold, Tom Lane) + § @@ -11994,6 +14254,7 @@ Author: Tom Lane Add the ability to compute the distance between polygons (Tom Lane) + § @@ -12008,6 +14269,7 @@ Author: Robert Haas linkend="functions-formatting-table">to_char() format codes of, tzh, and tzm (Nitin Jadhav) + § @@ -12027,6 +14289,7 @@ Author: Tom Lane TIME ZONE to a time with time zone value, use the transaction start time rather than wall clock time to determine whether DST applies (Aleksander Alekseev, Tom Lane) + § @@ -12046,6 +14309,7 @@ Author: Tom Lane linkend="textsearch-functions-table">ts_delete() and setweight() functions with array arguments (Jean-Christophe Arnu) + § @@ -12066,6 +14330,7 @@ Author: David Rowley Add support for petabyte units to pg_size_pretty() and pg_size_bytes() (David Christensen) + § @@ -12080,6 +14345,7 @@ Author: Tom Lane linkend="pg-event-trigger-ddl-command-end-functions">pg_event_trigger_ddl_commands() to output references to other sessions' temporary schemas using the actual schema name (Tom Lane) + § @@ -12107,6 +14373,7 @@ Author: Tom Lane Fix enforcement of PL/pgSQL variable CONSTANT markings (Tom Lane) + § @@ -12135,6 +14402,7 @@ Author: Peter Eisentraut Allow IP address matching against a server certificate's Subject Alternative Name (Jacob Champion) + § @@ -12148,6 +14416,7 @@ Author: Daniel Gustafsson Allow PQsslAttribute() to report the SSL library type without requiring a libpq connection (Jacob Champion) + § @@ -12161,6 +14430,7 @@ Author: Tom Lane Change query cancellations sent by the client to use the same TCP settings as normal client connections (Jelte Fennema) + § @@ -12180,6 +14450,8 @@ Author: Tom Lane Prevent libpq event callback failures from forcing an error result (Tom Lane) + § + § @@ -12203,6 +14475,7 @@ Author: Tatsuo Ishii linkend="pgbench">pgbench to retry after serialization and deadlock failures (Yugo Nagata, Marina Polyakova) + § @@ -12223,6 +14496,7 @@ Author: Heikki Linnakangas Improve performance of psql's \copy command, by sending data in larger chunks (Heikki Linnakangas) + § @@ -12239,6 +14513,9 @@ Author: Tom Lane Add \dconfig command to report server variables (Mark Dilger, Tom Lane) + § + § + § @@ -12258,6 +14535,7 @@ Author: Tom Lane Add \getenv command to assign the value of an environment variable to a psql variable (Tom Lane) + § @@ -12271,6 +14549,7 @@ Author: Tom Lane Add + option to the \lo_list and \dl commands to show large-object privileges (Pavel Luzanov) + § @@ -12283,6 +14562,7 @@ Author: Thomas Munro Add a pager option for the \watch command (Pavel Stehule, Thomas Munro) + § @@ -12302,6 +14582,8 @@ Author: Tom Lane Make psql include intra-query double-hyphen comments in queries sent to the server (Tom Lane, Greg Nancarrow) + § + § @@ -12323,6 +14605,7 @@ Author: Tom Lane that Readline's meta-# command will insert a double-hyphen comment marker (Tom Lane) + § @@ -12340,6 +14623,7 @@ Author: Peter Eisentraut Make psql output all results when multiple queries are passed to the server at once (Fabien Coelho) + § @@ -12362,6 +14646,7 @@ Author: Michael Paquier final COMMIT command to ROLLBACK only if ON_ERROR_STOP is set (Michael Paquier) + § @@ -12421,6 +14706,26 @@ Author: Tom Lane Kato, Dagfinn Ilmari Mannsåker, Peter Smith, Koyu Tanigawa, Ken Kato, David Fetter, Haiying Tang, Peter Eisentraut, Álvaro Herrera, Tom Lane, Masahiko Sawada) + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § + § @@ -12434,6 +14739,7 @@ Author: Tom Lane Limit support of psql's backslash commands to servers running PostgreSQL 9.2 or later (Tom Lane) + § @@ -12464,6 +14770,8 @@ Author: Noah Misch Make pg_dump dump public schema ownership changes and security labels (Noah Misch) + § + § @@ -12480,6 +14788,9 @@ Author: Tom Lane Improve performance of dumping databases with many objects (Tom Lane) + § + § + § @@ -12497,6 +14808,7 @@ Author: Tom Lane Improve parallel pg_dump's performance for tables with large TOAST tables (Tom Lane) + § @@ -12510,6 +14822,7 @@ Author: Michael Paquier Add dump/restore option to force restore to only use the default table access method (Justin Pryzby) + § @@ -12524,6 +14837,7 @@ Author: Tom Lane linkend="app-pg-dumpall">pg_dumpall to servers running PostgreSQL 9.2 or later (Tom Lane) + § @@ -12549,6 +14863,7 @@ Author: Robert Haas linkend="app-pgbasebackup">pg_basebackup option to control the base backup location (Robert Haas) + § @@ -12573,6 +14888,9 @@ Author: Robert Haas gzip, LZ4, and Zstandard compression and client-side LZ4 and Zstandard compression of base backup files (Dipesh Pandit, Jeevan Ladhe) + § + § + § @@ -12591,6 +14909,7 @@ Author: Robert Haas Allow pg_basebackup to compress on the server side and decompress on the client side before storage (Dipesh Pandit) + § @@ -12614,6 +14933,9 @@ Author: Robert Haas option to control the compression location (server or client), compression method, and compression options (Michael Paquier, Robert Haas) + § + § + § @@ -12629,6 +14951,8 @@ Author: Michael Paquier Add the LZ4 compression method to pg_receivewal (Georgios Kokolatos) + § + § @@ -12647,6 +14971,7 @@ Author: Michael Paquier Add additional capabilities to pg_receivewal's option (Georgios Kokolatos) + § @@ -12660,6 +14985,7 @@ Author: Michael Paquier Improve pg_receivewal's ability to restart at the proper WAL location (Ronan Dunklau) + § @@ -12685,6 +15011,7 @@ Author: Michael Paquier option to simplify use when server configuration files are stored outside the data directory (Gunnar Bluth) + § @@ -12709,6 +15036,9 @@ Author: Michael Paquier Store pg_upgrade's log and temporary files in a subdirectory of the new cluster called pg_upgrade_output.d (Justin Pryzby) + § + § + § @@ -12728,6 +15058,7 @@ Author: Andres Freund Disable default status reporting during pg_upgrade operation if the output is not a terminal (Andres Freund) + § @@ -12745,6 +15076,7 @@ Author: Daniel Gustafsson Make pg_upgrade report all databases with invalid connection settings (Jeevan Ladhe) + § @@ -12767,6 +15099,9 @@ Author: Robert Haas Make pg_upgrade preserve tablespace and database OIDs, as well as relation relfilenode numbers (Shruthi Gowda, Antonin Houska) + § + § + § @@ -12779,6 +15114,7 @@ Author: Michael Paquier Add a option to pg_upgrade (Michael Paquier) + § @@ -12796,6 +15132,7 @@ Author: Tom Lane Limit support of pg_upgrade to old servers running PostgreSQL 9.2 or later (Tom Lane) + § @@ -12820,6 +15157,8 @@ Author: Thomas Munro Allow pg_waldump output to be filtered by relation file node, block number, fork number, and full page images (David Christensen, Thomas Munro) + § + § @@ -12832,6 +15171,7 @@ Author: Michael Paquier Make pg_waldump report statistics before an interrupted exit (Bharath Rupireddy) + § @@ -12851,6 +15191,7 @@ Author: Michael Paquier Improve descriptions of some transaction WAL records reported by pg_waldump (Masahiko Sawada, Michael Paquier) + § @@ -12863,6 +15204,7 @@ Author: Heikki Linnakangas Allow pg_waldump to dump information about multiple resource managers (Heikki Linnakangas) + § @@ -12893,6 +15235,7 @@ Author: Fujii Masao linkend="functions-info-catalog-table">pg_encoding_to_char() and pg_char_to_encoding() (Ian Lawrence Barwick) + § @@ -12906,6 +15249,7 @@ Author: Tom Lane Document the ^@ starts-with operator (Tom Lane) + § @@ -12927,6 +15271,7 @@ Author: Andres Freund Add support for continuous integration testing using cirrus-ci (Andres Freund, Thomas Munro, Melanie Plageman) + § @@ -12941,6 +15286,7 @@ Author: Robert Haas linkend="configure-options-features"> to enable Zstandard builds (Jeevan Ladhe, Robert Haas, Michael Paquier) + § @@ -12956,6 +15302,7 @@ Author: Peter Eisentraut non-community PostgreSQL distributions to identify libraries that are not compatible with other builds (Peter Eisentraut) + § @@ -12973,6 +15320,7 @@ Author: Tom Lane Create a new pg_type.typcategory value for "char" (Tom Lane) + § @@ -12992,6 +15340,7 @@ Author: Robert Haas linkend="protocol-replication-base-backup">TARGET to specify a new COPY method to be used for base backups (Robert Haas) + § @@ -13014,6 +15363,8 @@ Author: Robert Haas linkend="protocol-replication-base-backup">COMPRESSION and COMPRESSION_DETAIL to specify the compression method and options (Robert Haas) + § + § @@ -13028,6 +15379,8 @@ Author: Robert Haas Remove server support for old BASE_BACKUP command syntax and base backup protocol (Robert Haas) + § + § @@ -13040,6 +15393,7 @@ Author: Robert Haas Add support for extensions to set custom backup targets (Robert Haas) + § @@ -13052,6 +15406,7 @@ Author: Jeff Davis Allow extensions to define custom WAL resource managers (Jeff Davis) + § @@ -13065,6 +15420,7 @@ Author: Michael Paquier Add function pg_settings_get_flags() to get the flags of server variables (Justin Pryzby) + § @@ -13077,6 +15433,7 @@ Author: Robert Haas On Windows, export all the server's global variables using PGDLLIMPORT markers (Robert Haas) + § @@ -13094,6 +15451,7 @@ Author: Tom Lane Require GNU make version 3.81 or later to build PostgreSQL (Tom Lane) + § @@ -13107,6 +15465,7 @@ Author: Peter Eisentraut Require OpenSSL to build the pgcrypto extension (Peter Eisentraut) + § @@ -13119,6 +15478,7 @@ Author: Tom Lane Require Perl version 5.8.3 or later (Dagfinn Ilmari Mannsåker) + § @@ -13131,6 +15491,7 @@ Author: Andres Freund Require Python version 3.2 or later (Andres Freund) + § @@ -13153,6 +15514,7 @@ Author: Peter Eisentraut Allow amcheck to check sequences (Mark Dilger) + § @@ -13165,6 +15527,7 @@ Author: Robert Haas Improve amcheck sanity checks for TOAST tables (Mark Dilger) + § @@ -13180,6 +15543,8 @@ Author: Robert Haas Add new module basebackup_to_shell as an example of a custom backup target (Robert Haas) + § + § @@ -13193,6 +15558,7 @@ Author: Robert Haas Add new module basic_archive as an example of performing archiving via a library (Nathan Bossart) + § @@ -13210,6 +15576,9 @@ Author: Tomas Vondra Allow btree_gist indexes on boolean columns (Emre Hasegeli) + § + § + § @@ -13228,6 +15597,7 @@ Author: Michael Paquier linkend="pageinspect">pageinspect's page_header() to handle 32-kilobyte page sizes (Quan Zongliang) + § @@ -13246,6 +15616,7 @@ Author: Michael Paquier Add counters for temporary file block I/O to pg_stat_statements (Masahiko Sawada) + § @@ -13258,6 +15629,7 @@ Author: Magnus Hagander Add JIT counters to pg_stat_statements (Magnus Hagander) + § @@ -13271,6 +15643,7 @@ Author: Jeff Davis Add new module pg_walinspect (Bharath Rupireddy) + § @@ -13289,6 +15662,7 @@ Author: Tom Lane Indicate the permissive/enforcing state in sepgsql log messages (Dave Page) + § @@ -13308,6 +15682,7 @@ Author: Tom Lane Allow postgres_fdw to push down CASE expressions (Alexander Pyhalov) + § @@ -13325,6 +15700,9 @@ Author: Fujii Masao Add server variable postgres_fdw.application_name to control the application name of postgres_fdw connections (Hayato Kuroda) + § + § + § @@ -13347,6 +15725,7 @@ Author: Etsuro Fujita Allow parallel commit on postgres_fdw servers (Etsuro Fujita) + § diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 3ea5024956f..142b2998dea 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -71,6 +71,15 @@ For new features, add links to the documentation sections. review, so each item is truly a community effort. + + Section markers (§) in the release notes link to gitweb + pages which show the primary git commit + messages and source tree changes responsible for the release note item. + There might be additional git commits which + are not shown. + + + + + + + + + + + 1.5em diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml index 2514982fbb4..7463a87a8e1 100644 --- a/doc/src/sgml/wal.sgml +++ b/doc/src/sgml/wal.sgml @@ -185,7 +185,7 @@ - Each individual record in a WAL file is protected by a CRC-32 (32-bit) check + Each individual record in a WAL file is protected by a CRC-32C (32-bit) check that allows us to tell if record contents are correct. The CRC value is set when we write each WAL record and checked during crash recovery, archive recovery and replication. @@ -211,7 +211,7 @@ - Individual state files in pg_twophase are protected by CRC-32. + Individual state files in pg_twophase are protected by CRC-32C. diff --git a/src/backend/access/hash/hashsort.c b/src/backend/access/hash/hashsort.c index aa61e39f26a..bd59ff86f55 100644 --- a/src/backend/access/hash/hashsort.c +++ b/src/backend/access/hash/hashsort.c @@ -146,6 +146,9 @@ _h_indexbuild(HSpool *hspool, Relation heapRel) _hash_doinsert(hspool->index, itup, heapRel); + /* allow insertion phase to be interrupted, and track progress */ + CHECK_FOR_INTERRUPTS(); + pgstat_progress_update_param(PROGRESS_CREATEIDX_TUPLES_DONE, ++tups_done); } diff --git a/src/backend/access/heap/README.tuplock b/src/backend/access/heap/README.tuplock index 6441e8baf0e..818cd7f9806 100644 --- a/src/backend/access/heap/README.tuplock +++ b/src/backend/access/heap/README.tuplock @@ -153,3 +153,56 @@ The following infomask bits are applicable: We currently never set the HEAP_XMAX_COMMITTED when the HEAP_XMAX_IS_MULTI bit is set. + +Locking to write inplace-updated tables +--------------------------------------- + +If IsInplaceUpdateRelation() returns true for a table, the table is a system +catalog that receives systable_inplace_update_begin() calls. Preparing a +heap_update() of these tables follows additional locking rules, to ensure we +don't lose the effects of an inplace update. In particular, consider a moment +when a backend has fetched the old tuple to modify, not yet having called +heap_update(). Another backend's inplace update starting then can't conclude +until the heap_update() places its new tuple in a buffer. We enforce that +using locktags as follows. While DDL code is the main audience, the executor +follows these rules to make e.g. "MERGE INTO pg_class" safer. Locking rules +are per-catalog: + + pg_class systable_inplace_update_begin() callers: before the call, acquire a + lock on the relation in mode ShareUpdateExclusiveLock or stricter. If the + update targets a row of RELKIND_INDEX (but not RELKIND_PARTITIONED_INDEX), + that lock must be on the table. Locking the index rel is not necessary. + (This allows VACUUM to overwrite per-index pg_class while holding a lock on + the table alone.) systable_inplace_update_begin() acquires and releases + LOCKTAG_TUPLE in InplaceUpdateTupleLock, an alias for ExclusiveLock, on each + tuple it overwrites. + + pg_class heap_update() callers: before copying the tuple to modify, take a + lock on the tuple, a ShareUpdateExclusiveLock on the relation, or a + ShareRowExclusiveLock or stricter on the relation. + + SearchSysCacheLocked1() is one convenient way to acquire the tuple lock. + Most heap_update() callers already hold a suitable lock on the relation for + other reasons and can skip the tuple lock. If you do acquire the tuple + lock, release it immediately after the update. + + + pg_database: before copying the tuple to modify, all updaters of pg_database + rows acquire LOCKTAG_TUPLE. (Few updaters acquire LOCKTAG_OBJECT on the + database OID, so it wasn't worth extending that as a second option.) + +Ideally, DDL might want to perform permissions checks before LockTuple(), as +we do with RangeVarGetRelidExtended() callbacks. We typically don't bother. +LOCKTAG_TUPLE acquirers release it after each row, so the potential +inconvenience is lower. + +Reading inplace-updated columns +------------------------------- + +Inplace updates create an exception to the rule that tuple data won't change +under a reader holding a pin. A reader of a heap_fetch() result tuple may +witness a torn read. Current inplace-updated fields are aligned and are no +wider than four bytes, and current readers don't need consistency across +fields. Hence, they get by with just fetching each field once. XXX such a +caller may also read a value that has not reached WAL; see +systable_inplace_update_finish(). diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 16e019078b9..f855eb7e73c 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -52,6 +52,8 @@ #include "access/xloginsert.h" #include "access/xlogutils.h" #include "catalog/catalog.h" +#include "catalog/pg_database.h" +#include "catalog/pg_database_d.h" #include "miscadmin.h" #include "pgstat.h" #include "port/atomics.h" @@ -79,6 +81,12 @@ static XLogRecPtr log_heap_update(Relation reln, Buffer oldbuf, Buffer newbuf, HeapTuple oldtup, HeapTuple newtup, HeapTuple old_key_tuple, bool all_visible_cleared, bool new_all_visible_cleared); +#ifdef USE_ASSERT_CHECKING +static void check_lock_if_inplace_updateable_rel(Relation relation, + ItemPointer otid, + HeapTuple newtup); +static void check_inplace_rel_lock(HeapTuple oldtup); +#endif static Bitmapset *HeapDetermineColumnsInfo(Relation relation, Bitmapset *interesting_cols, Bitmapset *external_cols, @@ -120,6 +128,8 @@ static HeapTuple ExtractReplicaIdentity(Relation rel, HeapTuple tup, bool key_re * heavyweight lock mode and MultiXactStatus values to use for any particular * tuple lock strength. * + * These interact with InplaceUpdateTupleLock, an alias for ExclusiveLock. + * * Don't look at lockstatus/updstatus directly! Use get_mxact_status_for_lock * instead. */ @@ -3199,6 +3209,10 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup, (errcode(ERRCODE_INVALID_TRANSACTION_STATE), errmsg("cannot update tuples during a parallel operation"))); +#ifdef USE_ASSERT_CHECKING + check_lock_if_inplace_updateable_rel(relation, otid, newtup); +#endif + /* * Fetch the list of attributes to be checked for various operations. * @@ -4031,6 +4045,128 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup, return TM_Ok; } +#ifdef USE_ASSERT_CHECKING +/* + * Confirm adequate lock held during heap_update(), per rules from + * README.tuplock section "Locking to write inplace-updated tables". + */ +static void +check_lock_if_inplace_updateable_rel(Relation relation, + ItemPointer otid, + HeapTuple newtup) +{ + /* LOCKTAG_TUPLE acceptable for any catalog */ + switch (RelationGetRelid(relation)) + { + case RelationRelationId: + case DatabaseRelationId: + { + LOCKTAG tuptag; + + SET_LOCKTAG_TUPLE(tuptag, + relation->rd_lockInfo.lockRelId.dbId, + relation->rd_lockInfo.lockRelId.relId, + ItemPointerGetBlockNumber(otid), + ItemPointerGetOffsetNumber(otid)); + if (LockHeldByMe(&tuptag, InplaceUpdateTupleLock)) + return; + } + break; + default: + Assert(!IsInplaceUpdateRelation(relation)); + return; + } + + switch (RelationGetRelid(relation)) + { + case RelationRelationId: + { + /* LOCKTAG_TUPLE or LOCKTAG_RELATION ok */ + Form_pg_class classForm = (Form_pg_class) GETSTRUCT(newtup); + Oid relid = classForm->oid; + Oid dbid; + LOCKTAG tag; + + if (IsSharedRelation(relid)) + dbid = InvalidOid; + else + dbid = MyDatabaseId; + + if (classForm->relkind == RELKIND_INDEX) + { + Relation irel = index_open(relid, AccessShareLock); + + SET_LOCKTAG_RELATION(tag, dbid, irel->rd_index->indrelid); + index_close(irel, AccessShareLock); + } + else + SET_LOCKTAG_RELATION(tag, dbid, relid); + + if (!LockHeldByMe(&tag, ShareUpdateExclusiveLock) && + !LockOrStrongerHeldByMe(&tag, ShareRowExclusiveLock)) + elog(WARNING, + "missing lock for relation \"%s\" (OID %u, relkind %c) @ TID (%u,%u)", + NameStr(classForm->relname), + relid, + classForm->relkind, + ItemPointerGetBlockNumber(otid), + ItemPointerGetOffsetNumber(otid)); + } + break; + case DatabaseRelationId: + { + /* LOCKTAG_TUPLE required */ + Form_pg_database dbForm = (Form_pg_database) GETSTRUCT(newtup); + + elog(WARNING, + "missing lock on database \"%s\" (OID %u) @ TID (%u,%u)", + NameStr(dbForm->datname), + dbForm->oid, + ItemPointerGetBlockNumber(otid), + ItemPointerGetOffsetNumber(otid)); + } + break; + } +} + +/* + * Confirm adequate relation lock held, per rules from README.tuplock section + * "Locking to write inplace-updated tables". + */ +static void +check_inplace_rel_lock(HeapTuple oldtup) +{ + Form_pg_class classForm = (Form_pg_class) GETSTRUCT(oldtup); + Oid relid = classForm->oid; + Oid dbid; + LOCKTAG tag; + + if (IsSharedRelation(relid)) + dbid = InvalidOid; + else + dbid = MyDatabaseId; + + if (classForm->relkind == RELKIND_INDEX) + { + Relation irel = index_open(relid, AccessShareLock); + + SET_LOCKTAG_RELATION(tag, dbid, irel->rd_index->indrelid); + index_close(irel, AccessShareLock); + } + else + SET_LOCKTAG_RELATION(tag, dbid, relid); + + if (!LockOrStrongerHeldByMe(&tag, ShareUpdateExclusiveLock)) + elog(WARNING, + "missing lock for relation \"%s\" (OID %u, relkind %c) @ TID (%u,%u)", + NameStr(classForm->relname), + relid, + classForm->relkind, + ItemPointerGetBlockNumber(&oldtup->t_self), + ItemPointerGetOffsetNumber(&oldtup->t_self)); +} +#endif + /* * Check if the specified attribute's values are the same. Subroutine for * HeapDetermineColumnsInfo. @@ -6008,23 +6144,260 @@ heap_abort_speculative(Relation relation, ItemPointer tid) } /* - * heap_inplace_update - update a tuple "in place" (ie, overwrite it) - * - * Overwriting violates both MVCC and transactional safety, so the uses - * of this function in Postgres are extremely limited. Nonetheless we - * find some places to use it. + * heap_inplace_lock - protect inplace update from concurrent heap_update() + * + * Evaluate whether the tuple's state is compatible with a no-key update. + * Current transaction rowmarks are fine, as is KEY SHARE from any + * transaction. If compatible, return true with the buffer exclusive-locked, + * and the caller must release that by calling + * heap_inplace_update_and_unlock(), calling heap_inplace_unlock(), or raising + * an error. Otherwise, call release_callback(arg), wait for blocking + * transactions to end, and return false. + * + * Since this is intended for system catalogs and SERIALIZABLE doesn't cover + * DDL, this doesn't guarantee any particular predicate locking. + * + * One could modify this to return true for tuples with delete in progress, + * All inplace updaters take a lock that conflicts with DROP. If explicit + * "DELETE FROM pg_class" is in progress, we'll wait for it like we would an + * update. + * + * Readers of inplace-updated fields expect changes to those fields are + * durable. For example, vac_truncate_clog() reads datfrozenxid from + * pg_database tuples via catalog snapshots. A future snapshot must not + * return a lower datfrozenxid for the same database OID (lower in the + * FullTransactionIdPrecedes() sense). We achieve that since no update of a + * tuple can start while we hold a lock on its buffer. In cases like + * BEGIN;GRANT;CREATE INDEX;COMMIT we're inplace-updating a tuple visible only + * to this transaction. ROLLBACK then is one case where it's okay to lose + * inplace updates. (Restoring relhasindex=false on ROLLBACK is fine, since + * any concurrent CREATE INDEX would have blocked, then inplace-updated the + * committed tuple.) + * + * In principle, we could avoid waiting by overwriting every tuple in the + * updated tuple chain. Reader expectations permit updating a tuple only if + * it's aborted, is the tail of the chain, or we already updated the tuple + * referenced in its t_ctid. Hence, we would need to overwrite the tuples in + * order from tail to head. That would imply either (a) mutating all tuples + * in one critical section or (b) accepting a chance of partial completion. + * Partial completion of a relfrozenxid update would have the weird + * consequence that the table's next VACUUM could see the table's relfrozenxid + * move forward between vacuum_get_cutoffs() and finishing. + */ +bool +heap_inplace_lock(Relation relation, + HeapTuple oldtup_ptr, Buffer buffer, + void (*release_callback) (void *), void *arg) +{ + HeapTupleData oldtup = *oldtup_ptr; /* minimize diff vs. heap_update() */ + TM_Result result; + bool ret; + +#ifdef USE_ASSERT_CHECKING + if (RelationGetRelid(relation) == RelationRelationId) + check_inplace_rel_lock(oldtup_ptr); +#endif + + Assert(BufferIsValid(buffer)); + + LockTuple(relation, &oldtup.t_self, InplaceUpdateTupleLock); + LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE); + + /*---------- + * Interpret HeapTupleSatisfiesUpdate() like heap_update() does, except: + * + * - wait unconditionally + * - already locked tuple above, since inplace needs that unconditionally + * - don't recheck header after wait: simpler to defer to next iteration + * - don't try to continue even if the updater aborts: likewise + * - no crosscheck + */ + result = HeapTupleSatisfiesUpdate(relation, &oldtup, GetCurrentCommandId(false), + buffer); + + if (result == TM_Invisible) + { + /* no known way this can happen */ + ereport(ERROR, + (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), + errmsg_internal("attempted to overwrite invisible tuple"))); + } + else if (result == TM_SelfModified) + { + /* + * CREATE INDEX might reach this if an expression is silly enough to + * call e.g. SELECT ... FROM pg_class FOR SHARE. C code of other SQL + * statements might get here after a heap_update() of the same row, in + * the absence of an intervening CommandCounterIncrement(). + */ + ereport(ERROR, + (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), + errmsg("tuple to be updated was already modified by an operation triggered by the current command"))); + } + else if (result == TM_BeingModified) + { + TransactionId xwait; + uint16 infomask; + + xwait = HeapTupleHeaderGetRawXmax(oldtup.t_data); + infomask = oldtup.t_data->t_infomask; + + if (infomask & HEAP_XMAX_IS_MULTI) + { + LockTupleMode lockmode = LockTupleNoKeyExclusive; + MultiXactStatus mxact_status = MultiXactStatusNoKeyUpdate; + int remain; + + if (DoesMultiXactIdConflict((MultiXactId) xwait, infomask, + lockmode, NULL)) + { + LockBuffer(buffer, BUFFER_LOCK_UNLOCK); + release_callback(arg); + ret = false; + MultiXactIdWait((MultiXactId) xwait, mxact_status, infomask, + relation, &oldtup.t_self, XLTW_Update, + &remain); + } + else + ret = true; + } + else if (TransactionIdIsCurrentTransactionId(xwait)) + ret = true; + else if (HEAP_XMAX_IS_KEYSHR_LOCKED(infomask)) + ret = true; + else + { + LockBuffer(buffer, BUFFER_LOCK_UNLOCK); + release_callback(arg); + ret = false; + XactLockTableWait(xwait, relation, &oldtup.t_self, + XLTW_Update); + } + } + else + { + ret = (result == TM_Ok); + if (!ret) + { + LockBuffer(buffer, BUFFER_LOCK_UNLOCK); + release_callback(arg); + } + } + + /* + * GetCatalogSnapshot() relies on invalidation messages to know when to + * take a new snapshot. COMMIT of xwait is responsible for sending the + * invalidation. We're not acquiring heavyweight locks sufficient to + * block if not yet sent, so we must take a new snapshot to ensure a later + * attempt has a fair chance. While we don't need this if xwait aborted, + * don't bother optimizing that. + */ + if (!ret) + { + UnlockTuple(relation, &oldtup.t_self, InplaceUpdateTupleLock); + InvalidateCatalogSnapshot(); + } + return ret; +} + +/* + * heap_inplace_update_and_unlock - core of systable_inplace_update_finish * - * The tuple cannot change size, and therefore it's reasonable to assume - * that its null bitmap (if any) doesn't change either. So we just - * overwrite the data portion of the tuple without touching the null - * bitmap or any of the header fields. + * The tuple cannot change size, and therefore its header fields and null + * bitmap (if any) don't change either. * - * tuple is an in-memory tuple structure containing the data to be written - * over the target tuple. Also, tuple->t_self identifies the target tuple. + * Since we hold LOCKTAG_TUPLE, no updater has a local copy of this tuple. + */ +void +heap_inplace_update_and_unlock(Relation relation, + HeapTuple oldtup, HeapTuple tuple, + Buffer buffer) +{ + HeapTupleHeader htup = oldtup->t_data; + uint32 oldlen; + uint32 newlen; + + Assert(ItemPointerEquals(&oldtup->t_self, &tuple->t_self)); + oldlen = oldtup->t_len - htup->t_hoff; + newlen = tuple->t_len - tuple->t_data->t_hoff; + if (oldlen != newlen || htup->t_hoff != tuple->t_data->t_hoff) + elog(ERROR, "wrong tuple length"); + + /* NO EREPORT(ERROR) from here till changes are logged */ + START_CRIT_SECTION(); + + memcpy((char *) htup + htup->t_hoff, + (char *) tuple->t_data + tuple->t_data->t_hoff, + newlen); + + /*---------- + * XXX A crash here can allow datfrozenxid() to get ahead of relfrozenxid: + * + * ["D" is a VACUUM (ONLY_DATABASE_STATS)] + * ["R" is a VACUUM tbl] + * D: vac_update_datfrozenid() -> systable_beginscan(pg_class) + * D: systable_getnext() returns pg_class tuple of tbl + * R: memcpy() into pg_class tuple of tbl + * D: raise pg_database.datfrozenxid, XLogInsert(), finish + * [crash] + * [recovery restores datfrozenxid w/o relfrozenxid] + */ + + MarkBufferDirty(buffer); + + /* XLOG stuff */ + if (RelationNeedsWAL(relation)) + { + xl_heap_inplace xlrec; + XLogRecPtr recptr; + + xlrec.offnum = ItemPointerGetOffsetNumber(&tuple->t_self); + + XLogBeginInsert(); + XLogRegisterData((char *) &xlrec, SizeOfHeapInplace); + + XLogRegisterBuffer(0, buffer, REGBUF_STANDARD); + XLogRegisterBufData(0, (char *) htup + htup->t_hoff, newlen); + + /* inplace updates aren't decoded atm, don't log the origin */ + + recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_INPLACE); + + PageSetLSN(BufferGetPage(buffer), recptr); + } + + END_CRIT_SECTION(); + + heap_inplace_unlock(relation, oldtup, buffer); + + /* + * Send out shared cache inval if necessary. Note that because we only + * pass the new version of the tuple, this mustn't be used for any + * operations that could change catcache lookup keys. But we aren't + * bothering with index updates either, so that's true a fortiori. + * + * XXX ROLLBACK discards the invalidation. See test inplace-inval.spec. + */ + if (!IsBootstrapProcessingMode()) + CacheInvalidateHeapTuple(relation, tuple, NULL); +} + +/* + * heap_inplace_unlock - reverse of heap_inplace_lock + */ +void +heap_inplace_unlock(Relation relation, + HeapTuple oldtup, Buffer buffer) +{ + LockBuffer(buffer, BUFFER_LOCK_UNLOCK); + UnlockTuple(relation, &oldtup->t_self, InplaceUpdateTupleLock); +} + +/* + * heap_inplace_update - deprecated * - * Note that the tuple updated here had better not come directly from the - * syscache if the relation has a toast relation as this tuple could - * include toast values that have been expanded, causing a failure here. + * This exists only to keep modules working in back branches. Affected + * modules should migrate to systable_inplace_update_begin(). */ void heap_inplace_update(Relation relation, HeapTuple tuple) diff --git a/src/backend/access/index/genam.c b/src/backend/access/index/genam.c index bc8661ce945..77d36eafa5b 100644 --- a/src/backend/access/index/genam.c +++ b/src/backend/access/index/genam.c @@ -24,6 +24,7 @@ #include "access/relscan.h" #include "access/tableam.h" #include "access/transam.h" +#include "catalog/catalog.h" #include "catalog/index.h" #include "lib/stringinfo.h" #include "miscadmin.h" @@ -734,6 +735,14 @@ systable_beginscan_ordered(Relation heapRelation, index_rescan(sysscan->iscan, key, nkeys, NULL, 0); sysscan->scan = NULL; + /* + * If CheckXidAlive is set then set a flag to indicate that system table + * scan is in-progress. See detailed comments in xact.c where these + * variables are declared. + */ + if (TransactionIdIsValid(CheckXidAlive)) + bsysscan = true; + return sysscan; } @@ -778,5 +787,180 @@ systable_endscan_ordered(SysScanDesc sysscan) index_endscan(sysscan->iscan); if (sysscan->snapshot) UnregisterSnapshot(sysscan->snapshot); + + /* + * Reset the bsysscan flag at the end of the systable scan. See detailed + * comments in xact.c where these variables are declared. + */ + if (TransactionIdIsValid(CheckXidAlive)) + bsysscan = false; + pfree(sysscan); } + +/* + * systable_inplace_update_begin --- update a row "in place" (overwrite it) + * + * Overwriting violates both MVCC and transactional safety, so the uses of + * this function in Postgres are extremely limited. Nonetheless we find some + * places to use it. See README.tuplock section "Locking to write + * inplace-updated tables" and later sections for expectations of readers and + * writers of a table that gets inplace updates. Standard flow: + * + * ... [any slow preparation not requiring oldtup] ... + * systable_inplace_update_begin([...], &tup, &inplace_state); + * if (!HeapTupleIsValid(tup)) + * elog(ERROR, [...]); + * ... [buffer is exclusive-locked; mutate "tup"] ... + * if (dirty) + * systable_inplace_update_finish(inplace_state, tup); + * else + * systable_inplace_update_cancel(inplace_state); + * + * The first several params duplicate the systable_beginscan() param list. + * "oldtupcopy" is an output parameter, assigned NULL if the key ceases to + * find a live tuple. (In PROC_IN_VACUUM, that is a low-probability transient + * condition.) If "oldtupcopy" gets non-NULL, you must pass output parameter + * "state" to systable_inplace_update_finish() or + * systable_inplace_update_cancel(). + */ +void +systable_inplace_update_begin(Relation relation, + Oid indexId, + bool indexOK, + Snapshot snapshot, + int nkeys, const ScanKeyData *key, + HeapTuple *oldtupcopy, + void **state) +{ + ScanKey mutable_key = palloc(sizeof(ScanKeyData) * nkeys); + int retries = 0; + SysScanDesc scan; + HeapTuple oldtup; + BufferHeapTupleTableSlot *bslot; + + /* + * For now, we don't allow parallel updates. Unlike a regular update, + * this should never create a combo CID, so it might be possible to relax + * this restriction, but not without more thought and testing. It's not + * clear that it would be useful, anyway. + */ + if (IsInParallelMode()) + ereport(ERROR, + (errcode(ERRCODE_INVALID_TRANSACTION_STATE), + errmsg("cannot update tuples during a parallel operation"))); + + /* + * Accept a snapshot argument, for symmetry, but this function advances + * its snapshot as needed to reach the tail of the updated tuple chain. + */ + Assert(snapshot == NULL); + + Assert(IsInplaceUpdateRelation(relation) || !IsSystemRelation(relation)); + + /* Loop for an exclusive-locked buffer of a non-updated tuple. */ + do + { + TupleTableSlot *slot; + + CHECK_FOR_INTERRUPTS(); + + /* + * Processes issuing heap_update (e.g. GRANT) at maximum speed could + * drive us to this error. A hostile table owner has stronger ways to + * damage their own table, so that's minor. + */ + if (retries++ > 10000) + elog(ERROR, "giving up after too many tries to overwrite row"); + + memcpy(mutable_key, key, sizeof(ScanKeyData) * nkeys); + scan = systable_beginscan(relation, indexId, indexOK, snapshot, + nkeys, mutable_key); + oldtup = systable_getnext(scan); + if (!HeapTupleIsValid(oldtup)) + { + systable_endscan(scan); + *oldtupcopy = NULL; + return; + } + + if (scan->enr) + { + break; + } + + slot = scan->slot; + Assert(TTS_IS_BUFFERTUPLE(slot)); + bslot = (BufferHeapTupleTableSlot *) slot; + } while (!heap_inplace_lock(scan->heap_rel, + bslot->base.tuple, bslot->buffer, + (void (*) (void *)) systable_endscan, scan)); + + *oldtupcopy = heap_copytuple(oldtup); + *state = scan; +} + +/* + * systable_inplace_update_finish --- second phase of inplace update + * + * The tuple cannot change size, and therefore its header fields and null + * bitmap (if any) don't change either. + */ +void +systable_inplace_update_finish(void *state, HeapTuple tuple) +{ + SysScanDesc scan = (SysScanDesc) state; + Relation relation = scan->heap_rel; + TupleTableSlot *slot = scan->slot; + BufferHeapTupleTableSlot *bslot = (BufferHeapTupleTableSlot *) slot; + HeapTuple oldtup; + Buffer buffer; + + if (scan->enr) + { + /* + * heap_inplace_update is deprecated, but the replacement + * function heap_inplace_update_and_unlock contains a ton of + * functionality that is broken by our ENR implementation. + * Therefore, we use it here to avoid introducing additional + * issues. + */ + heap_inplace_update(relation, tuple); + systable_endscan(scan); + return; + } + + oldtup = bslot->base.tuple; + buffer = bslot->buffer; + + heap_inplace_update_and_unlock(relation, oldtup, tuple, buffer); + systable_endscan(scan); +} + +/* + * systable_inplace_update_cancel --- abandon inplace update + * + * This is an alternative to making a no-op update. + */ +void +systable_inplace_update_cancel(void *state) +{ + SysScanDesc scan = (SysScanDesc) state; + Relation relation = scan->heap_rel; + TupleTableSlot *slot = scan->slot; + BufferHeapTupleTableSlot *bslot = (BufferHeapTupleTableSlot *) slot; + HeapTuple oldtup; + Buffer buffer; + + if (scan->enr) + { + systable_endscan(scan); + return; + } + + oldtup = bslot->base.tuple; + buffer = bslot->buffer; + + heap_inplace_unlock(relation, oldtup, buffer); + systable_endscan(scan); +} diff --git a/src/backend/access/transam/parallel.c b/src/backend/access/transam/parallel.c index be2415a4907..af2cb63ee1e 100644 --- a/src/backend/access/transam/parallel.c +++ b/src/backend/access/transam/parallel.c @@ -87,12 +87,15 @@ typedef struct FixedParallelState /* Fixed-size state that workers must restore. */ Oid database_id; Oid authenticated_user_id; - Oid current_user_id; + Oid session_user_id; Oid outer_user_id; + Oid current_user_id; Oid temp_namespace_id; Oid temp_toast_namespace_id; int sec_context; - bool is_superuser; + bool authenticated_user_is_superuser; + bool session_user_is_superuser; + bool role_is_superuser; PGPROC *parallel_leader_pgproc; pid_t parallel_leader_pid; BackendId parallel_leader_backend_id; @@ -233,6 +236,15 @@ InitializeParallelDSM(ParallelContext *pcxt) shm_toc_estimate_chunk(&pcxt->estimator, sizeof(FixedParallelState)); shm_toc_estimate_keys(&pcxt->estimator, 1); + /* + * If we manage to reach here while non-interruptible, it's unsafe to + * launch any workers: we would fail to process interrupts sent by them. + * We can deal with that edge case by pretending no workers were + * requested. + */ + if (!INTERRUPTS_CAN_BE_PROCESSED()) + pcxt->nworkers = 0; + /* * Normally, the user will have requested at least one worker process, but * if by chance they have not, we can skip a bunch of things here. @@ -332,9 +344,12 @@ InitializeParallelDSM(ParallelContext *pcxt) shm_toc_allocate(pcxt->toc, sizeof(FixedParallelState)); fps->database_id = MyDatabaseId; fps->authenticated_user_id = GetAuthenticatedUserId(); + fps->session_user_id = GetSessionUserId(); fps->outer_user_id = GetCurrentRoleId(); - fps->is_superuser = session_auth_is_superuser; GetUserIdAndSecContext(&fps->current_user_id, &fps->sec_context); + fps->authenticated_user_is_superuser = GetAuthenticatedUserIsSuperuser(); + fps->session_user_is_superuser = GetSessionUserIsSuperuser(); + fps->role_is_superuser = session_auth_is_superuser; GetTempNamespaceState(&fps->temp_namespace_id, &fps->temp_toast_namespace_id); fps->parallel_leader_pgproc = MyProc; @@ -479,6 +494,9 @@ InitializeParallelDSM(ParallelContext *pcxt) (*bbf_InitializeParallelDSM_hook) (pcxt, false); } + /* Update nworkers_to_launch, in case we changed nworkers above. */ + pcxt->nworkers_to_launch = pcxt->nworkers; + /* Restore previous memory context. */ MemoryContextSwitchTo(oldcontext); } @@ -542,10 +560,11 @@ ReinitializeParallelWorkers(ParallelContext *pcxt, int nworkers_to_launch) { /* * The number of workers that need to be launched must be less than the - * number of workers with which the parallel context is initialized. + * number of workers with which the parallel context is initialized. But + * the caller might not know that InitializeParallelDSM reduced nworkers, + * so just silently trim the request. */ - Assert(pcxt->nworkers >= nworkers_to_launch); - pcxt->nworkers_to_launch = nworkers_to_launch; + pcxt->nworkers_to_launch = Min(pcxt->nworkers, nworkers_to_launch); } /* @@ -1399,6 +1418,18 @@ ParallelWorkerMain(Datum main_arg) entrypt = LookupParallelWorkerFunction(library_name, function_name); + /* + * Restore current session authorization and role id. No verification + * happens here, we just blindly adopt the leader's state. Note that this + * has to happen before InitPostgres, since InitializeSessionUserId will + * not set these variables. + */ + SetAuthenticatedUserId(fps->authenticated_user_id, + fps->authenticated_user_is_superuser); + SetSessionAuthorization(fps->session_user_id, + fps->session_user_is_superuser); + SetCurrentRoleId(fps->outer_user_id, fps->role_is_superuser); + /* Restore database connection. */ BackgroundWorkerInitializeConnectionByOid(fps->database_id, fps->authenticated_user_id, @@ -1464,13 +1495,13 @@ ParallelWorkerMain(Datum main_arg) InvalidateSystemCaches(); /* - * Restore current role id. Skip verifying whether session user is - * allowed to become this role and blindly restore the leader's state for - * current role. + * Restore current user ID and security context. No verification happens + * here, we just blindly adopt the leader's state. We can't do this till + * after restoring GUCs, else we'll get complaints about restoring + * session_authorization and role. (In effect, we're assuming that all + * the restored values are okay to set, even if we are now inside a + * restricted context.) */ - SetCurrentRoleId(fps->outer_user_id, fps->is_superuser); - - /* Restore user ID and security context. */ SetUserIdAndSecContext(fps->current_user_id, fps->sec_context); /* Restore temp-namespace state to ensure search path matches leader's. */ diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index b420aef5abc..2c3e262224d 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -1485,6 +1485,7 @@ FinishPreparedTransaction(const char *gid, bool isCommit) GlobalTransaction gxact; PGPROC *proc; TransactionId xid; + bool ondisk; char *buf; char *bufptr; TwoPhaseFileHeader *hdr; @@ -1637,6 +1638,12 @@ FinishPreparedTransaction(const char *gid, bool isCommit) PredicateLockTwoPhaseFinish(xid, isCommit); + /* + * Read this value while holding the two-phase lock, as the on-disk 2PC + * file is physically removed after the lock is released. + */ + ondisk = gxact->ondisk; + /* Clear shared memory state */ RemoveGXact(gxact); @@ -1652,7 +1659,7 @@ FinishPreparedTransaction(const char *gid, bool isCommit) /* * And now we can clean up any files we may have left. */ - if (gxact->ondisk) + if (ondisk) RemoveTwoPhaseFile(xid, true); MyLockedGxact = NULL; diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index daad1ff1c3b..5d8322fbd04 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -94,6 +94,7 @@ #include "storage/proc.h" #include "storage/procarray.h" #include "storage/reinit.h" +#include "storage/sinvaladt.h" #include "storage/smgr.h" #include "storage/spin.h" #include "storage/sync.h" @@ -5514,6 +5515,30 @@ StartupXLOG(void) XLogCtl->LogwrtRqst.Write = EndOfLog; XLogCtl->LogwrtRqst.Flush = EndOfLog; + /* + * Invalidate all sinval-managed caches before READ WRITE transactions + * begin. The xl_heap_inplace WAL record doesn't store sufficient data + * for invalidations. The commit record, if any, has the invalidations. + * However, the inplace update is permanent, whether or not we reach a + * commit record. Fortunately, read-only transactions tolerate caches not + * reflecting the latest inplace updates. Read-only transactions + * experience the notable inplace updates as follows: + * + * - relhasindex=true affects readers only after the CREATE INDEX + * transaction commit makes an index fully available to them. + * + * - datconnlimit=DATCONNLIMIT_INVALID_DB affects readers only at + * InitPostgres() time, and that read does not use a cache. + * + * - relfrozenxid, datfrozenxid, relminmxid, and datminmxid have no effect + * on readers. + * + * Hence, hot standby queries (all READ ONLY) function correctly without + * the missing invalidations. This avoided changing the WAL format in + * back branches. + */ + SIResetAll(); + /* * Preallocate additional log files, if wanted. */ diff --git a/src/backend/backup/basebackup.c b/src/backend/backup/basebackup.c index 847a52f599b..3fe6468400e 100644 --- a/src/backend/backup/basebackup.c +++ b/src/backend/backup/basebackup.c @@ -1325,13 +1325,7 @@ sendDir(bbsink *sink, const char *path, int basepathlen, bool sizeonly, } /* Allow symbolic links in pg_tblspc only */ - if (strcmp(path, "./pg_tblspc") == 0 && -#ifndef WIN32 - S_ISLNK(statbuf.st_mode) -#else - pgwin32_is_junction(pathbuf) -#endif - ) + if (strcmp(path, "./pg_tblspc") == 0 && S_ISLNK(statbuf.st_mode)) { #if defined(HAVE_READLINK) || defined(WIN32) char linkpath[MAXPGPATH]; @@ -1815,11 +1809,7 @@ static void convert_link_to_directory(const char *pathbuf, struct stat *statbuf) { /* If symlink, write it as a directory anyway */ -#ifndef WIN32 if (S_ISLNK(statbuf->st_mode)) -#else - if (pgwin32_is_junction(pathbuf)) -#endif statbuf->st_mode = S_IFDIR | pg_dir_create_mode; } diff --git a/src/backend/catalog/aclchk.c b/src/backend/catalog/aclchk.c index a241726b6c3..be3b93c15d3 100644 --- a/src/backend/catalog/aclchk.c +++ b/src/backend/catalog/aclchk.c @@ -70,6 +70,8 @@ #include "nodes/makefuncs.h" #include "parser/parse_func.h" #include "parser/parse_type.h" +#include "parser/parser.h" +#include "storage/lmgr.h" #include "utils/acl.h" #include "utils/aclchk_internal.h" #include "utils/builtins.h" @@ -1822,8 +1824,12 @@ ExecGrant_Relation(InternalGrant *istmt) Oid ownerId; HeapTuple tuple; ListCell *cell_colprivs; + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, relOid, ENR_TSQL_TEMP)); - tuple = SearchSysCache1(RELOID, ObjectIdGetDatum(relOid)); + if (is_enr) + tuple = SearchSysCache1(RELOID, ObjectIdGetDatum(relOid)); + else + tuple = SearchSysCacheLocked1(RELOID, ObjectIdGetDatum(relOid)); if (!HeapTupleIsValid(tuple)) elog(ERROR, "cache lookup failed for relation %u", relOid); pg_class_tuple = (Form_pg_class) GETSTRUCT(tuple); @@ -2039,6 +2045,8 @@ ExecGrant_Relation(InternalGrant *istmt) values, nulls, replaces); CatalogTupleUpdate(relation, &newtuple->t_self, newtuple); + if (!is_enr) + UnlockTuple(relation, &tuple->t_self, InplaceUpdateTupleLock); /* Update initial privileges for extensions */ recordExtensionInitPriv(relOid, RelationRelationId, 0, new_acl); @@ -2051,6 +2059,8 @@ ExecGrant_Relation(InternalGrant *istmt) pfree(new_acl); } + else if (!is_enr) + UnlockTuple(relation, &tuple->t_self, InplaceUpdateTupleLock); /* * Handle column-level privileges, if any were specified or implied. @@ -2159,8 +2169,12 @@ ExecGrant_Database(InternalGrant *istmt) Oid *oldmembers; Oid *newmembers; HeapTuple tuple; + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, datId, ENR_TSQL_TEMP)); - tuple = SearchSysCache1(DATABASEOID, ObjectIdGetDatum(datId)); + if (is_enr) + tuple = SearchSysCache1(DATABASEOID, ObjectIdGetDatum(datId)); + else + tuple = SearchSysCacheLocked1(DATABASEOID, ObjectIdGetDatum(datId)); if (!HeapTupleIsValid(tuple)) elog(ERROR, "cache lookup failed for database %u", datId); @@ -2229,6 +2243,8 @@ ExecGrant_Database(InternalGrant *istmt) nulls, replaces); CatalogTupleUpdate(relation, &newtuple->t_self, newtuple); + if (!is_enr) + UnlockTuple(relation, &tuple->t_self, InplaceUpdateTupleLock); /* Update the shared dependency ACL info */ updateAclDependencies(DatabaseRelationId, pg_database_tuple->oid, 0, diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index a6f6091b8de..037a435ee9c 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -148,6 +148,15 @@ IsCatalogRelationOid(Oid relid) /* * IsInplaceUpdateRelation * True iff core code performs inplace updates on the relation. + * + * This is used for assertions and for making the executor follow the + * locking protocol described at README.tuplock section "Locking to write + * inplace-updated tables". Extensions may inplace-update other heap + * tables, but concurrent SQL UPDATE on the same table may overwrite + * those modifications. + * + * The executor can assume these are not partitions or partitioned and + * have no triggers. */ bool IsInplaceUpdateRelation(Relation relation) diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 6b0164a75f3..2e896daf5fd 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -2833,12 +2833,47 @@ index_update_stats(Relation rel, bool hasindex, double reltuples) { + bool update_stats; + BlockNumber relpages = 0; /* keep compiler quiet */ + BlockNumber relallvisible = 0; Oid relid = RelationGetRelid(rel); Relation pg_class; + ScanKeyData key[1]; HeapTuple tuple; + void *state; Form_pg_class rd_rel; bool dirty; + /* + * As a special hack, if we are dealing with an empty table and the + * existing reltuples is -1, we leave that alone. This ensures that + * creating an index as part of CREATE TABLE doesn't cause the table to + * prematurely look like it's been vacuumed. The rd_rel we modify may + * differ from rel->rd_rel due to e.g. commit of concurrent GRANT, but the + * commands that change reltuples take locks conflicting with ours. (Even + * if a command changed reltuples under a weaker lock, this affects only + * statistics for an empty table.) + */ + if (reltuples == 0 && rel->rd_rel->reltuples < 0) + reltuples = -1; + + update_stats = reltuples >= 0; + + /* + * Finish I/O and visibility map buffer locks before + * systable_inplace_update_begin() locks the pg_class buffer. The rd_rel + * we modify may differ from rel->rd_rel due to e.g. commit of concurrent + * GRANT, but no command changes a relkind from non-index to index. (Even + * if one did, relallvisible doesn't break functionality.) + */ + if (update_stats) + { + relpages = RelationGetNumberOfBlocks(rel); + + if (rel->rd_rel->relkind != RELKIND_INDEX) + visibilitymap_count(rel, &relallvisible, NULL); + } + /* * We always update the pg_class row using a non-transactional, * overwrite-in-place update. There are several reasons for this: @@ -2869,33 +2904,12 @@ index_update_stats(Relation rel, pg_class = table_open(RelationRelationId, RowExclusiveLock); - /* - * Make a copy of the tuple to update. Normally we use the syscache, but - * we can't rely on that during bootstrap or while reindexing pg_class - * itself. - */ - if (IsBootstrapProcessingMode() || - ReindexIsProcessingHeap(RelationRelationId)) - { - /* don't assume syscache will work */ - TableScanDesc pg_class_scan; - ScanKeyData key[1]; - - ScanKeyInit(&key[0], - Anum_pg_class_oid, - BTEqualStrategyNumber, F_OIDEQ, - ObjectIdGetDatum(relid)); - - pg_class_scan = table_beginscan_catalog(pg_class, 1, key); - tuple = heap_getnext(pg_class_scan, ForwardScanDirection); - tuple = heap_copytuple(tuple); - table_endscan(pg_class_scan); - } - else - { - /* normal case, use syscache */ - tuple = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relid)); - } + ScanKeyInit(&key[0], + Anum_pg_class_oid, + BTEqualStrategyNumber, F_OIDEQ, + ObjectIdGetDatum(relid)); + systable_inplace_update_begin(pg_class, ClassOidIndexId, true, NULL, + 1, key, &tuple, &state); if (!HeapTupleIsValid(tuple)) elog(ERROR, "could not find tuple for relation %u", relid); @@ -2904,15 +2918,6 @@ index_update_stats(Relation rel, /* Should this be a more comprehensive test? */ Assert(rd_rel->relkind != RELKIND_PARTITIONED_INDEX); - /* - * As a special hack, if we are dealing with an empty table and the - * existing reltuples is -1, we leave that alone. This ensures that - * creating an index as part of CREATE TABLE doesn't cause the table to - * prematurely look like it's been vacuumed. - */ - if (reltuples == 0 && rd_rel->reltuples < 0) - reltuples = -1; - /* Apply required updates, if any, to copied tuple */ dirty = false; @@ -2922,16 +2927,8 @@ index_update_stats(Relation rel, dirty = true; } - if (reltuples >= 0) + if (update_stats) { - BlockNumber relpages = RelationGetNumberOfBlocks(rel); - BlockNumber relallvisible; - - if (rd_rel->relkind != RELKIND_INDEX) - visibilitymap_count(rel, &relallvisible, NULL); - else /* don't bother for indexes */ - relallvisible = 0; - if (rd_rel->relpages != (int32) relpages) { rd_rel->relpages = (int32) relpages; @@ -2954,11 +2951,12 @@ index_update_stats(Relation rel, */ if (dirty) { - heap_inplace_update(pg_class, tuple); + systable_inplace_update_finish(state, tuple); /* the above sends a cache inval message */ } else { + systable_inplace_update_cancel(state); /* no need to change tuple, but force relcache inval anyway */ CacheInvalidateRelcacheByTuple(tuple); } @@ -4004,6 +4002,14 @@ reindex_relation(Oid relid, int flags, ReindexParams *params) errmsg("cannot reindex invalid index \"%s.%s\" on TOAST table, skipping", get_namespace_name(indexNamespaceId), get_rel_name(indexOid)))); + + /* + * Remove this invalid toast index from the reindex pending list, + * as it is skipped here due to the hard failure that would happen + * in reindex_index(), should we try to process it. + */ + if (flags & REINDEX_REL_SUPPRESS_INDEX_USE) + RemoveReindexPending(indexOid); continue; } diff --git a/src/backend/catalog/toasting.c b/src/backend/catalog/toasting.c index d726088c8ec..9dc76dfe34a 100644 --- a/src/backend/catalog/toasting.c +++ b/src/backend/catalog/toasting.c @@ -14,6 +14,7 @@ */ #include "postgres.h" +#include "access/genam.h" #include "access/heapam.h" #include "access/toast_compression.h" #include "access/xact.h" @@ -33,6 +34,7 @@ #include "parser/parser.h" #include "storage/lock.h" #include "utils/builtins.h" +#include "utils/fmgroids.h" #include "utils/rel.h" #include "utils/syscache.h" @@ -344,21 +346,36 @@ create_toast_table(Relation rel, Oid toastOid, Oid toastIndexOid, */ class_rel = table_open(RelationRelationId, RowExclusiveLock); - reltup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relOid)); - if (!HeapTupleIsValid(reltup)) - elog(ERROR, "cache lookup failed for relation %u", relOid); - - ((Form_pg_class) GETSTRUCT(reltup))->reltoastrelid = toast_relid; - if (!IsBootstrapProcessingMode()) { /* normal case, use a transactional update */ + reltup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relOid)); + if (!HeapTupleIsValid(reltup)) + elog(ERROR, "cache lookup failed for relation %u", relOid); + + ((Form_pg_class) GETSTRUCT(reltup))->reltoastrelid = toast_relid; + CatalogTupleUpdate(class_rel, &reltup->t_self, reltup); } else { /* While bootstrapping, we cannot UPDATE, so overwrite in-place */ - heap_inplace_update(class_rel, reltup); + + ScanKeyData key[1]; + void *state; + + ScanKeyInit(&key[0], + Anum_pg_class_oid, + BTEqualStrategyNumber, F_OIDEQ, + ObjectIdGetDatum(relOid)); + systable_inplace_update_begin(class_rel, ClassOidIndexId, true, + NULL, 1, key, &reltup, &state); + if (!HeapTupleIsValid(reltup)) + elog(ERROR, "cache lookup failed for relation %u", relOid); + + ((Form_pg_class) GETSTRUCT(reltup))->reltoastrelid = toast_relid; + + systable_inplace_update_finish(state, reltup); } heap_freetuple(reltup); diff --git a/src/backend/commands/copyto.c b/src/backend/commands/copyto.c index 73e286f7ea5..6a203b7853a 100644 --- a/src/backend/commands/copyto.c +++ b/src/backend/commands/copyto.c @@ -465,7 +465,7 @@ BeginCopyTo(ParseState *pstate, if (q->querySource == QSRC_NON_INSTEAD_RULE) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("DO ALSO rules are not supported for the COPY"))); + errmsg("DO ALSO rules are not supported for COPY"))); } ereport(ERROR, @@ -482,7 +482,11 @@ BeginCopyTo(ParseState *pstate, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("COPY (SELECT INTO) is not supported"))); - Assert(query->utilityStmt == NULL); + /* The only other utility command we could see is NOTIFY */ + if (query->utilityStmt != NULL) + ereport(ERROR, + (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), + errmsg("COPY query must not be a utility command"))); /* * Similarly the grammar doesn't enforce the presence of a RETURNING diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index e1842184eab..fcec38a15a5 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -51,6 +51,7 @@ #include "common/file_perm.h" #include "mb/pg_wchar.h" #include "miscadmin.h" +#include "parser/parser.h" #include "pgstat.h" #include "postmaster/bgwriter.h" #include "replication/slot.h" @@ -1523,6 +1524,8 @@ dropdb(const char *dbname, bool missing_ok, bool force) bool db_istemplate; Relation pgdbrel; HeapTuple tup; + ScanKeyData scankey; + void *inplace_state; Form_pg_database datform; int notherbackends; int npreparedxacts; @@ -1660,11 +1663,6 @@ dropdb(const char *dbname, bool missing_ok, bool force) */ pgstat_drop_database(db_id); - tup = SearchSysCacheCopy1(DATABASEOID, ObjectIdGetDatum(db_id)); - if (!HeapTupleIsValid(tup)) - elog(ERROR, "cache lookup failed for database %u", db_id); - datform = (Form_pg_database) GETSTRUCT(tup); - /* * Except for the deletion of the catalog row, subsequent actions are not * transactional (consider DropDatabaseBuffers() discarding modified @@ -1676,8 +1674,17 @@ dropdb(const char *dbname, bool missing_ok, bool force) * modification is durable before performing irreversible filesystem * operations. */ + ScanKeyInit(&scankey, + Anum_pg_database_datname, + BTEqualStrategyNumber, F_NAMEEQ, + CStringGetDatum(dbname)); + systable_inplace_update_begin(pgdbrel, DatabaseNameIndexId, true, + NULL, 1, &scankey, &tup, &inplace_state); + if (!HeapTupleIsValid(tup)) + elog(ERROR, "cache lookup failed for database %u", db_id); + datform = (Form_pg_database) GETSTRUCT(tup); datform->datconnlimit = DATCONNLIMIT_INVALID_DB; - heap_inplace_update(pgdbrel, tup); + systable_inplace_update_finish(inplace_state, tup); XLogFlush(XactLastRecEnd); /* @@ -1685,6 +1692,7 @@ dropdb(const char *dbname, bool missing_ok, bool force) * the row will be gone, but if we fail, dropdb() can be invoked again. */ CatalogTupleDelete(pgdbrel, &tup->t_self); + heap_freetuple(tup); /* * Drop db-specific replication slots. @@ -1743,10 +1751,12 @@ RenameDatabase(const char *oldname, const char *newname) { Oid db_id; HeapTuple newtup; + ItemPointerData otid; Relation rel; int notherbackends; int npreparedxacts; ObjectAddress address; + bool is_enr = false; /* * Look up the target database's OID, and get exclusive lock on it. We @@ -1814,11 +1824,18 @@ RenameDatabase(const char *oldname, const char *newname) errdetail_busy_db(notherbackends, npreparedxacts))); /* rename */ - newtup = SearchSysCacheCopy1(DATABASEOID, ObjectIdGetDatum(db_id)); + is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, db_id, ENR_TSQL_TEMP)); + if (is_enr) + newtup = SearchSysCacheCopy1(DATABASEOID, ObjectIdGetDatum(db_id)); + else + newtup = SearchSysCacheLockedCopy1(DATABASEOID, ObjectIdGetDatum(db_id)); if (!HeapTupleIsValid(newtup)) elog(ERROR, "cache lookup failed for database %u", db_id); + otid = newtup->t_self; namestrcpy(&(((Form_pg_database) GETSTRUCT(newtup))->datname), newname); - CatalogTupleUpdate(rel, &newtup->t_self, newtup); + CatalogTupleUpdate(rel, &otid, newtup); + if (!is_enr) + UnlockTuple(rel, &otid, InplaceUpdateTupleLock); InvokeObjectPostAlterHook(DatabaseRelationId, db_id, 0); @@ -2066,6 +2083,7 @@ movedb(const char *dbname, const char *tblspcname) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_DATABASE), errmsg("database \"%s\" does not exist", dbname))); + LockTuple(pgdbrel, &oldtuple->t_self, InplaceUpdateTupleLock); MemSet(new_record, 0, sizeof(new_record)); MemSet(new_record_nulls, false, sizeof(new_record_nulls)); @@ -2078,6 +2096,7 @@ movedb(const char *dbname, const char *tblspcname) new_record, new_record_nulls, new_record_repl); CatalogTupleUpdate(pgdbrel, &oldtuple->t_self, newtuple); + UnlockTuple(pgdbrel, &oldtuple->t_self, InplaceUpdateTupleLock); InvokeObjectPostAlterHook(DatabaseRelationId, db_id, 0); @@ -2308,6 +2327,7 @@ AlterDatabase(ParseState *pstate, AlterDatabaseStmt *stmt, bool isTopLevel) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_DATABASE), errmsg("database \"%s\" does not exist", stmt->dbname))); + LockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); datform = (Form_pg_database) GETSTRUCT(tuple); dboid = datform->oid; @@ -2361,6 +2381,7 @@ AlterDatabase(ParseState *pstate, AlterDatabaseStmt *stmt, bool isTopLevel) newtuple = heap_modify_tuple(tuple, RelationGetDescr(rel), new_record, new_record_nulls, new_record_repl); CatalogTupleUpdate(rel, &tuple->t_self, newtuple); + UnlockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); InvokeObjectPostAlterHook(DatabaseRelationId, dboid, 0); @@ -2410,6 +2431,7 @@ AlterDatabaseRefreshColl(AlterDatabaseRefreshCollStmt *stmt) if (!pg_database_ownercheck(db_id, GetUserId())) aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_DATABASE, stmt->dbname); + LockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); datum = heap_getattr(tuple, Anum_pg_database_datcollversion, RelationGetDescr(rel), &isnull); oldversion = isnull ? NULL : TextDatumGetCString(datum); @@ -2427,6 +2449,7 @@ AlterDatabaseRefreshColl(AlterDatabaseRefreshCollStmt *stmt) bool nulls[Natts_pg_database] = {0}; bool replaces[Natts_pg_database] = {0}; Datum values[Natts_pg_database] = {0}; + HeapTuple newtuple; ereport(NOTICE, (errmsg("changing version from %s to %s", @@ -2435,14 +2458,15 @@ AlterDatabaseRefreshColl(AlterDatabaseRefreshCollStmt *stmt) values[Anum_pg_database_datcollversion - 1] = CStringGetTextDatum(newversion); replaces[Anum_pg_database_datcollversion - 1] = true; - tuple = heap_modify_tuple(tuple, RelationGetDescr(rel), - values, nulls, replaces); - CatalogTupleUpdate(rel, &tuple->t_self, tuple); - heap_freetuple(tuple); + newtuple = heap_modify_tuple(tuple, RelationGetDescr(rel), + values, nulls, replaces); + CatalogTupleUpdate(rel, &tuple->t_self, newtuple); + heap_freetuple(newtuple); } else ereport(NOTICE, (errmsg("version has not changed"))); + UnlockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); InvokeObjectPostAlterHook(DatabaseRelationId, db_id, 0); @@ -2554,6 +2578,8 @@ AlterDatabaseOwner(const char *dbname, Oid newOwnerId) (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("permission denied to change owner of database"))); + LockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); + memset(repl_null, false, sizeof(repl_null)); memset(repl_repl, false, sizeof(repl_repl)); @@ -2578,6 +2604,7 @@ AlterDatabaseOwner(const char *dbname, Oid newOwnerId) newtuple = heap_modify_tuple(tuple, RelationGetDescr(rel), repl_val, repl_null, repl_repl); CatalogTupleUpdate(rel, &newtuple->t_self, newtuple); + UnlockTuple(rel, &tuple->t_self, InplaceUpdateTupleLock); heap_freetuple(newtuple); diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 53e38f807e6..c06a8753910 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -26,6 +26,7 @@ #include "catalog/index.h" #include "catalog/indexing.h" #include "catalog/pg_am.h" +#include "catalog/pg_collation.h" #include "catalog/pg_constraint.h" #include "catalog/pg_inherits.h" #include "catalog/pg_opclass.h" @@ -47,6 +48,7 @@ #include "parser/parse_coerce.h" #include "parser/parse_func.h" #include "parser/parse_oper.h" +#include "parser/parser.h" #include "partitioning/partdesc.h" #include "pgstat.h" #include "rewrite/rewriteManip.h" @@ -62,6 +64,7 @@ #include "utils/memutils.h" #include "utils/partcache.h" #include "utils/pg_rusage.h" +#include "utils/queryenvironment.h" #include "utils/regproc.h" #include "utils/snapmgr.h" #include "utils/syscache.h" @@ -349,10 +352,12 @@ static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts) { int i; + FmgrInfo fm; if (!opts1 && !opts2) return true; + fmgr_info(F_ARRAY_EQ, &fm); for (i = 0; i < natts; i++) { Datum opt1 = opts1 ? opts1[i] : (Datum) 0; @@ -368,8 +373,12 @@ CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts) else if (opt2 == (Datum) 0) return false; - /* Compare non-NULL text[] datums. */ - if (!DatumGetBool(DirectFunctionCall2(array_eq, opt1, opt2))) + /* + * Compare non-NULL text[] datums. Use C collation to enforce binary + * equivalence of texts, because we don't know anything about the + * semantics of opclass options. + */ + if (!DatumGetBool(FunctionCall2Coll(&fm, C_COLLATION_OID, opt1, opt2))) return false; } @@ -3668,8 +3677,8 @@ ReindexRelationConcurrently(Oid relationOid, ReindexParams *params) save_nestlevel = NewGUCNestLevel(); /* determine safety of this index for set_indexsafe_procflags */ - idx->safe = (indexRel->rd_indexprs == NIL && - indexRel->rd_indpred == NIL); + idx->safe = (RelationGetIndexExpressions(indexRel) == NIL && + RelationGetIndexPredicate(indexRel) == NIL); idx->tableId = RelationGetRelid(heapRel); idx->amId = indexRel->rd_rel->relam; @@ -4287,14 +4296,22 @@ update_relispartition(Oid relationId, bool newval) { HeapTuple tup; Relation classRel; + ItemPointerData otid; + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, relationId, ENR_TSQL_TEMP)); classRel = table_open(RelationRelationId, RowExclusiveLock); - tup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relationId)); + if (is_enr) + tup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relationId)); + else + tup = SearchSysCacheLockedCopy1(RELOID, ObjectIdGetDatum(relationId)); if (!HeapTupleIsValid(tup)) elog(ERROR, "cache lookup failed for relation %u", relationId); + otid = tup->t_self; Assert(((Form_pg_class) GETSTRUCT(tup))->relispartition != newval); ((Form_pg_class) GETSTRUCT(tup))->relispartition = newval; - CatalogTupleUpdate(classRel, &tup->t_self, tup); + CatalogTupleUpdate(classRel, &otid, tup); + if (!is_enr) + UnlockTuple(classRel, &otid, InplaceUpdateTupleLock); heap_freetuple(tup); table_close(classRel, RowExclusiveLock); } diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c index 3c48e40bd6e..ed8e3d921e1 100644 --- a/src/backend/commands/sequence.c +++ b/src/backend/commands/sequence.c @@ -1379,7 +1379,10 @@ init_params(ParseState *pstate, List *options, bool for_identity, /* * The parser allows this, but it is only for identity columns, in * which case it is filtered out in parse_utilcmd.c. We only get - * here if someone puts it into a CREATE SEQUENCE. + * here if someone puts it into a CREATE SEQUENCE, where it'd be + * redundant. (The same is true for the equally-nonstandard + * LOGGED and UNLOGGED options, but for those, the default error + * below seems sufficient.) */ ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index f3ff406ecd1..9d432d672d4 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -345,6 +345,14 @@ typedef struct ForeignTruncateInfo List *rels; } ForeignTruncateInfo; +/* Partial or complete FK creation in addFkConstraint() */ +typedef enum addFkConstraintSides +{ + addFkReferencedSide, + addFkReferencingSide, + addFkBothSides, +} addFkConstraintSides; + /* * Partition tables are expected to be dropped when the parent partitioned * table gets dropped. Hence for partitioning we use AUTO dependency. @@ -499,16 +507,25 @@ static ObjectAddress ATAddForeignKeyConstraint(List **wqueue, AlteredTableInfo * Relation rel, Constraint *fkconstraint, bool recurse, bool recursing, LOCKMODE lockmode); -static ObjectAddress addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, - Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr, - int numfks, int16 *pkattnum, int16 *fkattnum, - Oid *pfeqoperators, Oid *ppeqoperators, Oid *ffeqoperators, - int numfkdelsetcols, int16 *fkdelsetcols, - bool old_check_ok, - Oid parentDelTrigger, Oid parentUpdTrigger); static void validateFkOnDeleteSetColumns(int numfks, const int16 *fkattnums, int numfksetcols, const int16 *fksetcolsattnums, List *fksetcols); +static ObjectAddress addFkConstraint(addFkConstraintSides fkside, + char *constraintname, + Constraint *fkconstraint, Relation rel, + Relation pkrel, Oid indexOid, + Oid parentConstr, + int numfks, int16 *pkattnum, int16 *fkattnum, + Oid *pfeqoperators, Oid *ppeqoperators, + Oid *ffeqoperators, int numfkdelsetcols, + int16 *fkdelsetcols, bool is_internal); +static void addFkRecurseReferenced(Constraint *fkconstraint, + Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr, + int numfks, int16 *pkattnum, int16 *fkattnum, + Oid *pfeqoperators, Oid *ppeqoperators, Oid *ffeqoperators, + int numfkdelsetcols, int16 *fkdelsetcols, + bool old_check_ok, + Oid parentDelTrigger, Oid parentUpdTrigger); static void addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr, int numfks, int16 *pkattnum, int16 *fkattnum, @@ -638,7 +655,7 @@ static ObjectAddress ATExecDetachPartition(List **wqueue, AlteredTableInfo *tab, static void DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent, Oid defaultPartOid); static ObjectAddress ATExecDetachPartitionFinalize(Relation rel, RangeVar *name); -static ObjectAddress ATExecAttachPartitionIdx(List **wqueue, Relation rel, +static ObjectAddress ATExecAttachPartitionIdx(List **wqueue, Relation parentIdx, RangeVar *name); static void validatePartitionedIndex(Relation partedIdx, Relation partedTbl); static void refuseDupeIndexAttach(Relation parentIdx, Relation partIdx, @@ -3418,17 +3435,23 @@ SetRelationTableSpace(Relation rel, { Relation pg_class; HeapTuple tuple; + ItemPointerData otid; Form_pg_class rd_rel; Oid reloid = RelationGetRelid(rel); + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, reloid, ENR_TSQL_TEMP)); Assert(CheckRelationTableSpaceMove(rel, newTableSpaceId)); /* Get a modifiable copy of the relation's pg_class row. */ pg_class = table_open(RelationRelationId, RowExclusiveLock); - tuple = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(reloid)); + if (is_enr) + tuple = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(reloid)); + else + tuple = SearchSysCacheLockedCopy1(RELOID, ObjectIdGetDatum(reloid)); if (!HeapTupleIsValid(tuple)) elog(ERROR, "cache lookup failed for relation %u", reloid); + otid = tuple->t_self; rd_rel = (Form_pg_class) GETSTRUCT(tuple); /* Update the pg_class row. */ @@ -3436,7 +3459,9 @@ SetRelationTableSpace(Relation rel, InvalidOid : newTableSpaceId; if (OidIsValid(newRelFileNode)) rd_rel->relfilenode = newRelFileNode; - CatalogTupleUpdate(pg_class, &tuple->t_self, tuple); + CatalogTupleUpdate(pg_class, &otid, tuple); + if (!is_enr) + UnlockTuple(pg_class, &otid, InplaceUpdateTupleLock); /* * Record dependency on tablespace. This is only required for relations @@ -3930,9 +3955,11 @@ RenameRelationInternal(Oid myrelid, const char *newrelname, bool is_internal, bo { Relation targetrelation; Relation relrelation; /* for RELATION relation */ + ItemPointerData otid; HeapTuple reltup; Form_pg_class relform; Oid namespaceId; + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, myrelid, ENR_TSQL_TEMP)); /* * Grab a lock on the target relation, which we will NOT release until end @@ -3952,9 +3979,13 @@ RenameRelationInternal(Oid myrelid, const char *newrelname, bool is_internal, bo */ relrelation = table_open(RelationRelationId, RowExclusiveLock); - reltup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(myrelid)); + if (is_enr) + reltup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(myrelid)); + else + reltup = SearchSysCacheLockedCopy1(RELOID, ObjectIdGetDatum(myrelid)); if (!HeapTupleIsValid(reltup)) /* shouldn't happen */ elog(ERROR, "cache lookup failed for relation %u", myrelid); + otid = reltup->t_self; relform = (Form_pg_class) GETSTRUCT(reltup); if (get_relname_relid(newrelname, namespaceId) != InvalidOid) @@ -3979,7 +4010,9 @@ RenameRelationInternal(Oid myrelid, const char *newrelname, bool is_internal, bo */ namestrcpy(&(relform->relname), newrelname); - CatalogTupleUpdate(relrelation, &reltup->t_self, reltup); + CatalogTupleUpdate(relrelation, &otid, reltup); + if (!is_enr) + UnlockTuple(relrelation, &otid, InplaceUpdateTupleLock); InvokeObjectPostAlterHookArg(RelationRelationId, myrelid, 0, InvalidOid, is_internal); @@ -5341,7 +5374,7 @@ ATExecCmd(List **wqueue, AlteredTableInfo *tab, ((PartitionCmd *) cmd->def)->concurrent); break; case AT_DetachPartitionFinalize: - ATExecDetachPartitionFinalize(rel, ((PartitionCmd *) cmd->def)->name); + address = ATExecDetachPartitionFinalize(rel, ((PartitionCmd *) cmd->def)->name); break; default: /* oops */ elog(ERROR, "unrecognized alter table type: %d", @@ -9594,25 +9627,37 @@ ATAddForeignKeyConstraint(List **wqueue, AlteredTableInfo *tab, Relation rel, ffeqoperators[i] = ffeqop; } - /* - * Create all the constraint and trigger objects, recursing to partitions - * as necessary. First handle the referenced side. - */ - address = addFkRecurseReferenced(wqueue, fkconstraint, rel, pkrel, - indexOid, - InvalidOid, /* no parent constraint */ - numfks, - pkattnum, - fkattnum, - pfeqoperators, - ppeqoperators, - ffeqoperators, - numfkdelsetcols, - fkdelsetcols, - old_check_ok, - InvalidOid, InvalidOid); - - /* Now handle the referencing side. */ + /* First, create the constraint catalog entry itself. */ + address = addFkConstraint(addFkBothSides, + fkconstraint->conname, fkconstraint, rel, pkrel, + indexOid, + InvalidOid, /* no parent constraint */ + numfks, + pkattnum, + fkattnum, + pfeqoperators, + ppeqoperators, + ffeqoperators, + numfkdelsetcols, + fkdelsetcols, + false); + + /* Next process the action triggers at the referenced side and recurse */ + addFkRecurseReferenced(fkconstraint, rel, pkrel, + indexOid, + address.objectId, + numfks, + pkattnum, + fkattnum, + pfeqoperators, + ppeqoperators, + ffeqoperators, + numfkdelsetcols, + fkdelsetcols, + old_check_ok, + InvalidOid, InvalidOid); + + /* Lastly create the check triggers at the referencing side and recurse */ addFkRecurseReferencing(wqueue, fkconstraint, rel, pkrel, indexOid, address.objectId, @@ -9672,46 +9717,41 @@ validateFkOnDeleteSetColumns(int numfks, const int16 *fkattnums, } /* - * addFkRecurseReferenced - * subroutine for ATAddForeignKeyConstraint; recurses on the referenced - * side of the constraint + * addFkConstraint + * Install pg_constraint entries to implement a foreign key constraint. + * Caller must separately invoke addFkRecurseReferenced and + * addFkRecurseReferencing, as appropriate, to install pg_trigger entries + * and (for partitioned tables) recurse to partitions. * - * Create pg_constraint rows for the referenced side of the constraint, - * referencing the parent of the referencing side; also create action triggers - * on leaf partitions. If the table is partitioned, recurse to handle each - * partition. - * - * wqueue is the ALTER TABLE work queue; can be NULL when not running as part - * of an ALTER TABLE sequence. - * fkconstraint is the constraint being added. - * rel is the root referencing relation. - * pkrel is the referenced relation; might be a partition, if recursing. - * indexOid is the OID of the index (on pkrel) implementing this constraint. - * parentConstr is the OID of a parent constraint; InvalidOid if this is a - * top-level constraint. - * numfks is the number of columns in the foreign key - * pkattnum is the attnum array of referenced attributes. - * fkattnum is the attnum array of referencing attributes. - * numfkdelsetcols is the number of columns in the ON DELETE SET NULL/DEFAULT + * fkside: the side of the FK (or both) to create. Caller should + * call addFkRecurseReferenced if this is addFkReferencedSide, + * addFkRecurseReferencing if it's addFkReferencingSide, or both if it's + * addFkBothSides. + * constraintname: the base name for the constraint being added, + * copied to fkconstraint->conname if the latter is not set + * fkconstraint: the constraint being added + * rel: the root referencing relation + * pkrel: the referenced relation; might be a partition, if recursing + * indexOid: the OID of the index (on pkrel) implementing this constraint + * parentConstr: the OID of a parent constraint; InvalidOid if this is a + * top-level constraint + * numfks: the number of columns in the foreign key + * pkattnum: the attnum array of referenced attributes + * fkattnum: the attnum array of referencing attributes + * pf/pp/ffeqoperators: OID array of operators between columns + * numfkdelsetcols: the number of columns in the ON DELETE SET NULL/DEFAULT * (...) clause - * fkdelsetcols is the attnum array of the columns in the ON DELETE SET + * fkdelsetcols: the attnum array of the columns in the ON DELETE SET * NULL/DEFAULT clause - * pf/pp/ffeqoperators are OID array of operators between columns. - * old_check_ok signals that this constraint replaces an existing one that - * was already validated (thus this one doesn't need validation). - * parentDelTrigger and parentUpdTrigger, when being recursively called on - * a partition, are the OIDs of the parent action triggers for DELETE and - * UPDATE respectively. */ static ObjectAddress -addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, - Relation pkrel, Oid indexOid, Oid parentConstr, - int numfks, - int16 *pkattnum, int16 *fkattnum, Oid *pfeqoperators, - Oid *ppeqoperators, Oid *ffeqoperators, - int numfkdelsetcols, int16 *fkdelsetcols, - bool old_check_ok, - Oid parentDelTrigger, Oid parentUpdTrigger) +addFkConstraint(addFkConstraintSides fkside, + char *constraintname, Constraint *fkconstraint, + Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr, + int numfks, int16 *pkattnum, + int16 *fkattnum, Oid *pfeqoperators, Oid *ppeqoperators, + Oid *ffeqoperators, int numfkdelsetcols, int16 *fkdelsetcols, + bool is_internal) { ObjectAddress address; Oid constrOid; @@ -9719,8 +9759,6 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, bool conislocal; int coninhcount; bool connoinherit; - Oid deleteTriggerOid, - updateTriggerOid; /* * Verify relkind for each referenced partition. At the top level, this @@ -9739,13 +9777,16 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, */ if (ConstraintNameIsUsed(CONSTRAINT_RELATION, RelationGetRelid(rel), - fkconstraint->conname)) + constraintname)) conname = ChooseConstraintName(RelationGetRelationName(rel), ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs), "fkey", RelationGetNamespace(rel), NIL); else - conname = fkconstraint->conname; + conname = constraintname; + + if (fkconstraint->conname == NULL) + fkconstraint->conname = pstrdup(conname); if (OidIsValid(parentConstr)) { @@ -9797,33 +9838,107 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, conislocal, /* islocal */ coninhcount, /* inhcount */ connoinherit, /* conNoInherit */ - false); /* is_internal */ + is_internal); /* is_internal */ ObjectAddressSet(address, ConstraintRelationId, constrOid); /* - * Mark the child constraint as part of the parent constraint; it must not - * be dropped on its own. (This constraint is deleted when the partition - * is detached, but a special check needs to occur that the partition - * contains no referenced values.) + * In partitioning cases, create the dependency entries for this + * constraint. (For non-partitioned cases, relevant entries were created + * by CreateConstraintEntry.) + * + * On the referenced side, we need the constraint to have an internal + * dependency on its parent constraint; this means that this constraint + * cannot be dropped on its own -- only through the parent constraint. It + * also means the containing partition cannot be dropped on its own, but + * it can be detached, at which point this dependency is removed (after + * verifying that no rows are referenced via this FK.) + * + * When processing the referencing side, we link the constraint via the + * special partitioning dependencies: the parent constraint is the primary + * dependent, and the partition on which the foreign key exists is the + * secondary dependency. That way, this constraint is dropped if either + * of these objects is. + * + * Note that this is only necessary for the subsidiary pg_constraint rows + * in partitions; the topmost row doesn't need any of this. */ if (OidIsValid(parentConstr)) { ObjectAddress referenced; ObjectAddressSet(referenced, ConstraintRelationId, parentConstr); - recordDependencyOn(&address, &referenced, DEPENDENCY_INTERNAL); + + Assert(fkside != addFkBothSides); + if (fkside == addFkReferencedSide) + recordDependencyOn(&address, &referenced, DEPENDENCY_INTERNAL); + else + { + recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI); + ObjectAddressSet(referenced, RelationRelationId, RelationGetRelid(rel)); + recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC); + } } /* make new constraint visible, in case we add more */ CommandCounterIncrement(); + return address; +} + +/* + * addFkRecurseReferenced + * Recursive helper for the referenced side of foreign key creation, + * which creates the action triggers and recurses + * + * If the referenced relation is a plain relation, create the necessary action + * triggers that implement the constraint. If the referenced relation is a + * partitioned table, then we create a pg_constraint row referencing the parent + * of the referencing side for it and recurse on this routine for each + * partition. + * + * fkconstraint: the constraint being added + * rel: the root referencing relation + * pkrel: the referenced relation; might be a partition, if recursing + * indexOid: the OID of the index (on pkrel) implementing this constraint + * parentConstr: the OID of a parent constraint; InvalidOid if this is a + * top-level constraint + * numfks: the number of columns in the foreign key + * pkattnum: the attnum array of referenced attributes + * fkattnum: the attnum array of referencing attributes + * numfkdelsetcols: the number of columns in the ON DELETE SET + * NULL/DEFAULT (...) clause + * fkdelsetcols: the attnum array of the columns in the ON DELETE SET + * NULL/DEFAULT clause + * pf/pp/ffeqoperators: OID array of operators between columns + * old_check_ok: true if this constraint replaces an existing one that + * was already validated (thus this one doesn't need validation) + * parentDelTrigger and parentUpdTrigger: when recursively called on a + * partition, the OIDs of the parent action triggers for DELETE and + * UPDATE respectively. + */ +static void +addFkRecurseReferenced(Constraint *fkconstraint, Relation rel, + Relation pkrel, Oid indexOid, Oid parentConstr, + int numfks, + int16 *pkattnum, int16 *fkattnum, Oid *pfeqoperators, + Oid *ppeqoperators, Oid *ffeqoperators, + int numfkdelsetcols, int16 *fkdelsetcols, + bool old_check_ok, + Oid parentDelTrigger, Oid parentUpdTrigger) +{ + Oid deleteTriggerOid, + updateTriggerOid; + + Assert(CheckRelationLockedByMe(pkrel, ShareRowExclusiveLock, true)); + Assert(CheckRelationLockedByMe(rel, ShareRowExclusiveLock, true)); + /* * Create the action triggers that enforce the constraint. */ createForeignKeyActionTriggers(rel, RelationGetRelid(pkrel), fkconstraint, - constrOid, indexOid, + parentConstr, indexOid, parentDelTrigger, parentUpdTrigger, &deleteTriggerOid, &updateTriggerOid); @@ -9842,7 +9957,9 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, AttrMap *map; AttrNumber *mapped_pkattnum; Oid partIndexId; + ObjectAddress address; + /* XXX would it be better to acquire these locks beforehand? */ partRel = table_open(pd->oids[i], ShareRowExclusiveLock); /* @@ -9860,13 +9977,23 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, else mapped_pkattnum = pkattnum; - /* do the deed */ + /* Determine the index to use at this level */ partIndexId = index_get_partition(partRel, indexOid); if (!OidIsValid(partIndexId)) elog(ERROR, "index for %u not found in partition %s", indexOid, RelationGetRelationName(partRel)); - addFkRecurseReferenced(wqueue, fkconstraint, rel, partRel, - partIndexId, constrOid, numfks, + + /* Create entry at this level ... */ + address = addFkConstraint(addFkReferencedSide, + fkconstraint->conname, fkconstraint, rel, + partRel, partIndexId, parentConstr, + numfks, mapped_pkattnum, + fkattnum, pfeqoperators, ppeqoperators, + ffeqoperators, numfkdelsetcols, + fkdelsetcols, true); + /* ... and recurse to our children */ + addFkRecurseReferenced(fkconstraint, rel, partRel, + partIndexId, address.objectId, numfks, mapped_pkattnum, fkattnum, pfeqoperators, ppeqoperators, ffeqoperators, numfkdelsetcols, fkdelsetcols, @@ -9882,13 +10009,12 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, } } } - - return address; } /* * addFkRecurseReferencing - * subroutine for ATAddForeignKeyConstraint and CloneFkReferencing + * Recursive helper for the referencing side of foreign key creation, + * which creates the check triggers and recurses * * If the referencing relation is a plain relation, create the necessary check * triggers that implement the constraint, and set up for Phase 3 constraint @@ -9900,27 +10026,27 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel, * deletions. If it's a partitioned relation, every partition must be so * locked. * - * wqueue is the ALTER TABLE work queue; can be NULL when not running as part - * of an ALTER TABLE sequence. - * fkconstraint is the constraint being added. - * rel is the referencing relation; might be a partition, if recursing. - * pkrel is the root referenced relation. - * indexOid is the OID of the index (on pkrel) implementing this constraint. - * parentConstr is the OID of the parent constraint (there is always one). - * numfks is the number of columns in the foreign key - * pkattnum is the attnum array of referenced attributes. - * fkattnum is the attnum array of referencing attributes. - * pf/pp/ffeqoperators are OID array of operators between columns. - * numfkdelsetcols is the number of columns in the ON DELETE SET NULL/DEFAULT + * wqueue: the ALTER TABLE work queue; NULL when not running as part + * of an ALTER TABLE sequence. + * fkconstraint: the constraint being added + * rel: the referencing relation; might be a partition, if recursing + * pkrel: the root referenced relation + * indexOid: the OID of the index (on pkrel) implementing this constraint + * parentConstr: the OID of the parent constraint (there is always one) + * numfks: the number of columns in the foreign key + * pkattnum: the attnum array of referenced attributes + * fkattnum: the attnum array of referencing attributes + * pf/pp/ffeqoperators: OID array of operators between columns + * numfkdelsetcols: the number of columns in the ON DELETE SET NULL/DEFAULT * (...) clause - * fkdelsetcols is the attnum array of the columns in the ON DELETE SET + * fkdelsetcols: the attnum array of the columns in the ON DELETE SET * NULL/DEFAULT clause - * old_check_ok signals that this constraint replaces an existing one that - * was already validated (thus this one doesn't need validation). - * lockmode is the lockmode to acquire on partitions when recursing. - * parentInsTrigger and parentUpdTrigger, when being recursively called on - * a partition, are the OIDs of the parent check triggers for INSERT and - * UPDATE respectively. + * old_check_ok: true if this constraint replaces an existing one that + * was already validated (thus this one doesn't need validation) + * lockmode: the lockmode to acquire on partitions when recursing + * parentInsTrigger and parentUpdTrigger: when being recursively called on + * a partition, the OIDs of the parent check triggers for INSERT and + * UPDATE respectively. */ static void addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel, @@ -9934,7 +10060,9 @@ addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel, Oid insertTriggerOid, updateTriggerOid; - AssertArg(OidIsValid(parentConstr)); + Assert(OidIsValid(parentConstr)); + Assert(CheckRelationLockedByMe(rel, ShareRowExclusiveLock, true)); + Assert(CheckRelationLockedByMe(pkrel, ShareRowExclusiveLock, true)); if (rel->rd_rel->relkind == RELKIND_FOREIGN_TABLE) ereport(ERROR, @@ -10008,10 +10136,7 @@ addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel, AttrMap *attmap; AttrNumber mapped_fkattnum[INDEX_MAX_KEYS]; bool attached; - char *conname; - Oid constrOid; - ObjectAddress address, - referenced; + ObjectAddress address; ListCell *cell; CheckAlterTableIsSafe(partition); @@ -10053,65 +10178,18 @@ addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel, /* * No luck finding a good constraint to reuse; create our own. */ - if (ConstraintNameIsUsed(CONSTRAINT_RELATION, - RelationGetRelid(partition), - fkconstraint->conname)) - conname = ChooseConstraintName(RelationGetRelationName(partition), - ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs), - "fkey", - RelationGetNamespace(partition), NIL); - else - conname = fkconstraint->conname; - constrOid = - CreateConstraintEntry(conname, - RelationGetNamespace(partition), - CONSTRAINT_FOREIGN, - fkconstraint->deferrable, - fkconstraint->initdeferred, - fkconstraint->initially_valid, - parentConstr, - partitionId, - mapped_fkattnum, - numfks, - numfks, - InvalidOid, - indexOid, - RelationGetRelid(pkrel), - pkattnum, - pfeqoperators, - ppeqoperators, - ffeqoperators, - numfks, - fkconstraint->fk_upd_action, - fkconstraint->fk_del_action, - fkdelsetcols, - numfkdelsetcols, - fkconstraint->fk_matchtype, - NULL, - NULL, - NULL, - false, - 1, - false, - false); - - /* - * Give this constraint partition-type dependencies on the parent - * constraint as well as the table. - */ - ObjectAddressSet(address, ConstraintRelationId, constrOid); - ObjectAddressSet(referenced, ConstraintRelationId, parentConstr); - recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI); - ObjectAddressSet(referenced, RelationRelationId, partitionId); - recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC); - - /* Make all this visible before recursing */ - CommandCounterIncrement(); + address = addFkConstraint(addFkReferencingSide, + fkconstraint->conname, fkconstraint, + partition, pkrel, indexOid, parentConstr, + numfks, pkattnum, + mapped_fkattnum, pfeqoperators, + ppeqoperators, ffeqoperators, + numfkdelsetcols, fkdelsetcols, true); /* call ourselves to finalize the creation and we're done */ addFkRecurseReferencing(wqueue, fkconstraint, partition, pkrel, indexOid, - constrOid, + address.objectId, numfks, pkattnum, mapped_fkattnum, @@ -10243,6 +10321,7 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel) int numfkdelsetcols; AttrNumber confdelsetcols[INDEX_MAX_KEYS]; Constraint *fkconstraint; + ObjectAddress address; Oid deleteTriggerOid, updateTriggerOid; @@ -10272,13 +10351,8 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel) continue; } - /* - * Because we're only expanding the key space at the referenced side, - * we don't need to prevent any operation in the referencing table, so - * AccessShareLock suffices (assumes that dropping the constraint - * acquires AEL). - */ - fkRel = table_open(constrForm->conrelid, AccessShareLock); + /* We need the same lock level that CreateTrigger will acquire */ + fkRel = table_open(constrForm->conrelid, ShareRowExclusiveLock); indexOid = constrForm->conindid; DeconstructFkConstraintRow(tuple, @@ -10342,12 +10416,19 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel) constrForm->confrelid, constrForm->conrelid, &deleteTriggerOid, &updateTriggerOid); - addFkRecurseReferenced(NULL, - fkconstraint, + /* Add this constraint ... */ + address = addFkConstraint(addFkReferencedSide, + fkconstraint->conname, fkconstraint, fkRel, + partitionRel, partIndexId, constrOid, + numfks, mapped_confkey, + conkey, conpfeqop, conppeqop, conffeqop, + numfkdelsetcols, confdelsetcols, false); + /* ... and recurse */ + addFkRecurseReferenced(fkconstraint, fkRel, partitionRel, partIndexId, - constrOid, + address.objectId, numfks, mapped_confkey, conkey, @@ -10377,8 +10458,8 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel) * child. * * If wqueue is given, it is used to set up phase-3 verification for each - * cloned constraint; if omitted, we assume that such verification is not - * needed (example: the partition is being created anew). + * cloned constraint; omit it if such verification is not needed + * (example: the partition is being created anew). */ static void CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel) @@ -10394,6 +10475,23 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel) { ForeignKeyCacheInfo *fk = lfirst(cell); + /* + * Refuse to attach a table as partition that this partitioned table + * already has a foreign key to. This isn't useful schema, which is + * proven by the fact that there have been no user complaints that + * it's already impossible to achieve this in the opposite direction, + * i.e., creating a foreign key that references a partition. This + * restriction allows us to dodge some complexities around + * pg_constraint and pg_trigger row creations that would be needed + * during ATTACH/DETACH for this kind of relationship. + */ + if (fk->confrelid == RelationGetRelid(partRel)) + ereport(ERROR, + (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), + errmsg("cannot attach table \"%s\" as a partition because it is referenced by foreign key \"%s\"", + RelationGetRelationName(partRel), + get_constraint_name(fk->conoid)))); + clone = lappend_oid(clone, fk->conoid); } @@ -10444,9 +10542,7 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel) Constraint *fkconstraint; bool attached; Oid indexOid; - Oid constrOid; - ObjectAddress address, - referenced; + ObjectAddress address; ListCell *cell; Oid insertTriggerOid, updateTriggerOid; @@ -10543,7 +10639,7 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel) fkconstraint->old_conpfeqop = NIL; fkconstraint->old_pktable_oid = InvalidOid; fkconstraint->skip_validation = false; - fkconstraint->initially_valid = true; + fkconstraint->initially_valid = constrForm->convalidated; for (int i = 0; i < numfks; i++) { Form_pg_attribute att; @@ -10553,71 +10649,29 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel) fkconstraint->fk_attrs = lappend(fkconstraint->fk_attrs, makeString(NameStr(att->attname))); } - if (ConstraintNameIsUsed(CONSTRAINT_RELATION, - RelationGetRelid(partRel), - NameStr(constrForm->conname))) - fkconstraint->conname = - ChooseConstraintName(RelationGetRelationName(partRel), - ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs), - "fkey", - RelationGetNamespace(partRel), NIL); - else - fkconstraint->conname = pstrdup(NameStr(constrForm->conname)); indexOid = constrForm->conindid; - constrOid = - CreateConstraintEntry(fkconstraint->conname, - constrForm->connamespace, - CONSTRAINT_FOREIGN, - fkconstraint->deferrable, - fkconstraint->initdeferred, - constrForm->convalidated, - parentConstrOid, - RelationGetRelid(partRel), - mapped_conkey, - numfks, - numfks, - InvalidOid, /* not a domain constraint */ - indexOid, - constrForm->confrelid, /* same foreign rel */ - confkey, - conpfeqop, - conppeqop, - conffeqop, - numfks, - fkconstraint->fk_upd_action, - fkconstraint->fk_del_action, - confdelsetcols, - numfkdelsetcols, - fkconstraint->fk_matchtype, - NULL, - NULL, - NULL, - false, /* islocal */ - 1, /* inhcount */ - false, /* conNoInherit */ - true); - - /* Set up partition dependencies for the new constraint */ - ObjectAddressSet(address, ConstraintRelationId, constrOid); - ObjectAddressSet(referenced, ConstraintRelationId, parentConstrOid); - recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI); - ObjectAddressSet(referenced, RelationRelationId, - RelationGetRelid(partRel)); - recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC); + + /* Create the pg_constraint entry at this level */ + address = addFkConstraint(addFkReferencingSide, + NameStr(constrForm->conname), fkconstraint, + partRel, pkrel, indexOid, parentConstrOid, + numfks, confkey, + mapped_conkey, conpfeqop, + conppeqop, conffeqop, + numfkdelsetcols, confdelsetcols, + false); /* Done with the cloned constraint's tuple */ ReleaseSysCache(tuple); - /* Make all this visible before recursing */ - CommandCounterIncrement(); - + /* Create the check triggers, and recurse to partitions, if any */ addFkRecurseReferencing(wqueue, fkconstraint, partRel, pkrel, indexOid, - constrOid, + address.objectId, numfks, confkey, mapped_conkey, @@ -10781,6 +10835,81 @@ tryAttachPartitionForeignKey(ForeignKeyCacheInfo *fk, TriggerSetParentTrigger(trigrel, updateTriggerOid, parentUpdTrigger, partRelid); + /* + * If the referenced table is partitioned, then the partition we're + * attaching now has extra pg_constraint rows and action triggers that are + * no longer needed. Remove those. + */ + if (get_rel_relkind(fk->confrelid) == RELKIND_PARTITIONED_TABLE) + { + Relation pg_constraint = table_open(ConstraintRelationId, RowShareLock); + ObjectAddresses *objs; + HeapTuple consttup; + + ScanKeyInit(&key, + Anum_pg_constraint_conrelid, + BTEqualStrategyNumber, F_OIDEQ, + ObjectIdGetDatum(fk->conrelid)); + + scan = systable_beginscan(pg_constraint, + ConstraintRelidTypidNameIndexId, + true, NULL, 1, &key); + objs = new_object_addresses(); + while ((consttup = systable_getnext(scan)) != NULL) + { + Form_pg_constraint conform = (Form_pg_constraint) GETSTRUCT(consttup); + + if (conform->conparentid != fk->conoid) + continue; + else + { + ObjectAddress addr; + SysScanDesc scan2; + ScanKeyData key2; + int n PG_USED_FOR_ASSERTS_ONLY; + + ObjectAddressSet(addr, ConstraintRelationId, conform->oid); + add_exact_object_address(&addr, objs); + + /* + * First we must delete the dependency record that binds the + * constraint records together. + */ + n = deleteDependencyRecordsForSpecific(ConstraintRelationId, + conform->oid, + DEPENDENCY_INTERNAL, + ConstraintRelationId, + fk->conoid); + Assert(n == 1); /* actually only one is expected */ + + /* + * Now search for the triggers for this constraint and set + * them up for deletion too + */ + ScanKeyInit(&key2, + Anum_pg_trigger_tgconstraint, + BTEqualStrategyNumber, F_OIDEQ, + ObjectIdGetDatum(conform->oid)); + scan2 = systable_beginscan(trigrel, TriggerConstraintIndexId, + true, NULL, 1, &key2); + while ((trigtup = systable_getnext(scan2)) != NULL) + { + ObjectAddressSet(addr, TriggerRelationId, + ((Form_pg_trigger) GETSTRUCT(trigtup))->oid); + add_exact_object_address(&addr, objs); + } + systable_endscan(scan2); + } + } + /* make the dependency deletions visible */ + CommandCounterIncrement(); + performMultipleDeletions(objs, DROP_RESTRICT, + PERFORM_DELETION_INTERNAL); + systable_endscan(scan); + + table_close(pg_constraint, RowShareLock); + } + CommandCounterIncrement(); return true; } @@ -12367,6 +12496,16 @@ ATPrepAlterColumnType(List **wqueue, errmsg("cannot alter system column \"%s\"", colName))); + /* + * Cannot specify USING when altering type of a generated column, because + * that would violate the generation expression. + */ + if (attTup->attgenerated && def->cooked_default) + ereport(ERROR, + (errcode(ERRCODE_INVALID_COLUMN_DEFINITION), + errmsg("cannot specify USING when altering type of generated column"), + errdetail("Column \"%s\" is a generated column.", colName))); + /* * Don't alter inherited columns. At outer level, there had better not be * any inherited definition; when recursing, we assume this was checked at @@ -12446,11 +12585,12 @@ ATPrepAlterColumnType(List **wqueue, (errcode(ERRCODE_DATATYPE_MISMATCH), errmsg("column \"%s\" cannot be cast automatically to type %s", colName, format_type_be(targettype)), + !attTup->attgenerated ? /* translator: USING is SQL, don't translate it */ errhint("You might need to specify \"USING %s::%s\".", quote_identifier(colName), format_type_with_typemod(targettype, - targettypmod)))); + targettypmod)) : 0)); } /* Fix collations after all else */ @@ -14459,6 +14599,7 @@ ATExecSetRelOptions(Relation rel, List *defList, AlterTableType operation, bool repl_null[Natts_pg_class]; bool repl_repl[Natts_pg_class]; static char *validnsps[] = HEAP_RELOPT_NAMESPACES; + bool is_enr = false; if (defList == NIL && operation != AT_ReplaceRelOptions) return; /* nothing to do */ @@ -14467,7 +14608,11 @@ ATExecSetRelOptions(Relation rel, List *defList, AlterTableType operation, /* Fetch heap tuple */ relid = RelationGetRelid(rel); - tuple = SearchSysCache1(RELOID, ObjectIdGetDatum(relid)); + is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, relid, ENR_TSQL_TEMP)); + if (is_enr) + tuple = SearchSysCache1(RELOID, ObjectIdGetDatum(relid)); + else + tuple = SearchSysCacheLocked1(RELOID, ObjectIdGetDatum(relid)); if (!HeapTupleIsValid(tuple)) elog(ERROR, "cache lookup failed for relation %u", relid); @@ -14571,6 +14716,8 @@ ATExecSetRelOptions(Relation rel, List *defList, AlterTableType operation, repl_val, repl_null, repl_repl); CatalogTupleUpdate(pgclass, &newtuple->t_self, newtuple); + if (!is_enr) + UnlockTuple(pgclass, &tuple->t_self, InplaceUpdateTupleLock); InvokeObjectPostAlterHook(RelationRelationId, RelationGetRelid(rel), 0); @@ -16766,8 +16913,13 @@ AlterRelationNamespaceInternal(Relation classRel, Oid relOid, Form_pg_class classForm; ObjectAddress thisobj; bool already_done = false; + bool is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, relOid, ENR_TSQL_TEMP)); - classTup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relOid)); + /* no rel lock for relkind=c so use LOCKTAG_TUPLE */ + if (is_enr) + classTup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relOid)); + else + classTup = SearchSysCacheLockedCopy1(RELOID, ObjectIdGetDatum(relOid)); if (!HeapTupleIsValid(classTup)) elog(ERROR, "cache lookup failed for relation %u", relOid); classForm = (Form_pg_class) GETSTRUCT(classTup); @@ -16786,6 +16938,8 @@ AlterRelationNamespaceInternal(Relation classRel, Oid relOid, already_done = object_address_present(&thisobj, objsMoved); if (!already_done && oldNspOid != newNspOid) { + ItemPointerData otid = classTup->t_self; + /* check for duplicate name (more friendly than unique-index failure) */ if (get_relname_relid(NameStr(classForm->relname), newNspOid) != InvalidOid) @@ -16798,7 +16952,10 @@ AlterRelationNamespaceInternal(Relation classRel, Oid relOid, /* classTup is a copy, so OK to scribble on */ classForm->relnamespace = newNspOid; - CatalogTupleUpdate(classRel, &classTup->t_self, classTup); + CatalogTupleUpdate(classRel, &otid, classTup); + if (!is_enr) + UnlockTuple(classRel, &otid, InplaceUpdateTupleLock); + /* Update dependency on schema if caller said so */ if (hasDependEntry && @@ -16810,6 +16967,8 @@ AlterRelationNamespaceInternal(Relation classRel, Oid relOid, elog(ERROR, "failed to change schema dependency for relation \"%s\"", NameStr(classForm->relname)); } + else if (!is_enr) + UnlockTuple(classRel, &classTup->t_self, InplaceUpdateTupleLock); if (!already_done) { add_exact_object_address(&thisobj, objsMoved); @@ -18777,7 +18936,6 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent, ForeignKeyCacheInfo *fk = lfirst(cell); HeapTuple contup; Form_pg_constraint conform; - Constraint *fkconstraint; Oid insertTriggerOid, updateTriggerOid; @@ -18794,7 +18952,10 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent, continue; } - /* unset conparentid and adjust conislocal, coninhcount, etc. */ + /* + * The constraint on this table must be marked no longer a child of + * the parent's constraint, as do its check triggers. + */ ConstraintSetParentConstraint(fk->conoid, InvalidOid, InvalidOid); /* @@ -18812,33 +18973,87 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent, RelationGetRelid(partRel)); /* - * Make the action triggers on the referenced relation. When this was - * a partition the action triggers pointed to the parent rel (they - * still do), but now we need separate ones of our own. + * Lastly, create the action triggers on the referenced table, using + * addFkRecurseReferenced, which requires some elaborate setup (so put + * it in a separate block). While at it, if the table is partitioned, + * that function will recurse to create the pg_constraint rows and + * action triggers for each partition. + * + * Note there's no need to do addFkConstraint() here, because the + * pg_constraint row already exists. */ - fkconstraint = makeNode(Constraint); - fkconstraint->contype = CONSTRAINT_FOREIGN; - fkconstraint->conname = pstrdup(NameStr(conform->conname)); - fkconstraint->deferrable = conform->condeferrable; - fkconstraint->initdeferred = conform->condeferred; - fkconstraint->location = -1; - fkconstraint->pktable = NULL; - fkconstraint->fk_attrs = NIL; - fkconstraint->pk_attrs = NIL; - fkconstraint->fk_matchtype = conform->confmatchtype; - fkconstraint->fk_upd_action = conform->confupdtype; - fkconstraint->fk_del_action = conform->confdeltype; - fkconstraint->fk_del_set_cols = NIL; - fkconstraint->old_conpfeqop = NIL; - fkconstraint->old_pktable_oid = InvalidOid; - fkconstraint->skip_validation = false; - fkconstraint->initially_valid = true; + { + Constraint *fkconstraint; + int numfks; + AttrNumber conkey[INDEX_MAX_KEYS]; + AttrNumber confkey[INDEX_MAX_KEYS]; + Oid conpfeqop[INDEX_MAX_KEYS]; + Oid conppeqop[INDEX_MAX_KEYS]; + Oid conffeqop[INDEX_MAX_KEYS]; + int numfkdelsetcols; + AttrNumber confdelsetcols[INDEX_MAX_KEYS]; + Relation refdRel; + + DeconstructFkConstraintRow(contup, + &numfks, + conkey, + confkey, + conpfeqop, + conppeqop, + conffeqop, + &numfkdelsetcols, + confdelsetcols); + + /* Create a synthetic node we'll use throughout */ + fkconstraint = makeNode(Constraint); + fkconstraint->contype = CONSTRAINT_FOREIGN; + fkconstraint->conname = pstrdup(NameStr(conform->conname)); + fkconstraint->deferrable = conform->condeferrable; + fkconstraint->initdeferred = conform->condeferred; + fkconstraint->skip_validation = true; + fkconstraint->initially_valid = true; + /* a few irrelevant fields omitted here */ + fkconstraint->pktable = NULL; + fkconstraint->fk_attrs = NIL; + fkconstraint->pk_attrs = NIL; + fkconstraint->fk_matchtype = conform->confmatchtype; + fkconstraint->fk_upd_action = conform->confupdtype; + fkconstraint->fk_del_action = conform->confdeltype; + fkconstraint->fk_del_set_cols = NIL; + fkconstraint->old_conpfeqop = NIL; + fkconstraint->old_pktable_oid = InvalidOid; + fkconstraint->location = -1; + + /* set up colnames, used to generate the constraint name */ + for (int i = 0; i < numfks; i++) + { + Form_pg_attribute att; - createForeignKeyActionTriggers(partRel, conform->confrelid, - fkconstraint, fk->conoid, - conform->conindid, - InvalidOid, InvalidOid, - NULL, NULL); + att = TupleDescAttr(RelationGetDescr(partRel), + conkey[i] - 1); + + fkconstraint->fk_attrs = lappend(fkconstraint->fk_attrs, + makeString(NameStr(att->attname))); + } + + refdRel = table_open(fk->confrelid, ShareRowExclusiveLock); + + addFkRecurseReferenced(fkconstraint, partRel, + refdRel, + conform->conindid, + fk->conoid, + numfks, + confkey, + conkey, + conpfeqop, + conppeqop, + conffeqop, + numfkdelsetcols, + confdelsetcols, + true, + InvalidOid, InvalidOid); + table_close(refdRel, NoLock); /* keep lock till end of xact */ + } ReleaseSysCache(contup); } diff --git a/src/backend/commands/tablespace.c b/src/backend/commands/tablespace.c index 9bdfef97bb9..977df7498bd 100644 --- a/src/backend/commands/tablespace.c +++ b/src/backend/commands/tablespace.c @@ -807,8 +807,7 @@ destroy_tablespace_directories(Oid tablespaceoid, bool redo) /* * Try to remove the symlink. We must however deal with the possibility * that it's a directory instead of a symlink --- this could happen during - * WAL replay (see TablespaceCreateDbspace), and it is also the case on - * Windows where junction points lstat() as directories. + * WAL replay (see TablespaceCreateDbspace). * * Note: in the redo case, we'll return true if this final step fails; * there's no point in retrying it. Also, ENOENT should provoke no more @@ -838,7 +837,6 @@ destroy_tablespace_directories(Oid tablespaceoid, bool redo) linkloc))); } } -#ifdef S_ISLNK else if (S_ISLNK(st.st_mode)) { if (unlink(linkloc) < 0) @@ -851,7 +849,6 @@ destroy_tablespace_directories(Oid tablespaceoid, bool redo) linkloc))); } } -#endif else { /* Refuse to remove anything that's not a directory or symlink */ @@ -929,7 +926,6 @@ remove_tablespace_symlink(const char *linkloc) errmsg("could not remove directory \"%s\": %m", linkloc))); } -#ifdef S_ISLNK else if (S_ISLNK(st.st_mode)) { if (unlink(linkloc) < 0 && errno != ENOENT) @@ -938,7 +934,6 @@ remove_tablespace_symlink(const char *linkloc) errmsg("could not remove symbolic link \"%s\": %m", linkloc))); } -#endif else { /* Refuse to remove anything that's not a directory or symlink */ diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 329c73d2261..916ba841930 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -1326,7 +1326,9 @@ vac_update_relstats(Relation relation, { Oid relid = RelationGetRelid(relation); Relation rd; + ScanKeyData key[1]; HeapTuple ctup; + void *inplace_state; Form_pg_class pgcform; bool dirty, futurexid, @@ -1337,7 +1339,12 @@ vac_update_relstats(Relation relation, rd = table_open(RelationRelationId, RowExclusiveLock); /* Fetch a copy of the tuple to scribble on */ - ctup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relid)); + ScanKeyInit(&key[0], + Anum_pg_class_oid, + BTEqualStrategyNumber, F_OIDEQ, + ObjectIdGetDatum(relid)); + systable_inplace_update_begin(rd, ClassOidIndexId, true, + NULL, 1, key, &ctup, &inplace_state); if (!HeapTupleIsValid(ctup)) elog(ERROR, "pg_class entry for relid %u vanished during vacuuming", relid); @@ -1445,7 +1452,9 @@ vac_update_relstats(Relation relation, /* If anything changed, write out the tuple. */ if (dirty) - heap_inplace_update(rd, ctup); + systable_inplace_update_finish(inplace_state, ctup); + else + systable_inplace_update_cancel(inplace_state); table_close(rd, RowExclusiveLock); @@ -1497,6 +1506,7 @@ vac_update_datfrozenxid(void) bool bogus = false; bool dirty = false; ScanKeyData key[1]; + void *inplace_state; /* * Restrict this task to one backend per database. This avoids race @@ -1620,20 +1630,18 @@ vac_update_datfrozenxid(void) relation = table_open(DatabaseRelationId, RowExclusiveLock); /* - * Get the pg_database tuple to scribble on. Note that this does not - * directly rely on the syscache to avoid issues with flattened toast - * values for the in-place update. + * Fetch a copy of the tuple to scribble on. We could check the syscache + * tuple first. If that concluded !dirty, we'd avoid waiting on + * concurrent heap_update() and would avoid exclusive-locking the buffer. + * For now, don't optimize that. */ ScanKeyInit(&key[0], Anum_pg_database_oid, BTEqualStrategyNumber, F_OIDEQ, ObjectIdGetDatum(MyDatabaseId)); - scan = systable_beginscan(relation, DatabaseOidIndexId, true, - NULL, 1, key); - tuple = systable_getnext(scan); - tuple = heap_copytuple(tuple); - systable_endscan(scan); + systable_inplace_update_begin(relation, DatabaseOidIndexId, true, + NULL, 1, key, &tuple, &inplace_state); if (!HeapTupleIsValid(tuple)) elog(ERROR, "could not find tuple for database %u", MyDatabaseId); @@ -1667,7 +1675,9 @@ vac_update_datfrozenxid(void) newMinMulti = dbform->datminmxid; if (dirty) - heap_inplace_update(relation, tuple); + systable_inplace_update_finish(inplace_state, tuple); + else + systable_inplace_update_cancel(inplace_state); heap_freetuple(tuple); table_close(relation, RowExclusiveLock); diff --git a/src/backend/commands/variable.c b/src/backend/commands/variable.c index e5ddcda0b4a..f105e006c3f 100644 --- a/src/backend/commands/variable.c +++ b/src/backend/commands/variable.c @@ -753,40 +753,78 @@ check_session_authorization(char **newval, void **extra, GucSource source) if (*newval == NULL) return true; - if (!IsTransactionState()) + if (InitializingParallelWorker) { /* - * Can't do catalog lookups, so fail. The result of this is that - * session_authorization cannot be set in postgresql.conf, which seems - * like a good thing anyway, so we don't work hard to avoid it. + * In parallel worker initialization, we want to copy the leader's + * state even if it no longer matches the catalogs. ParallelWorkerMain + * already installed the correct role OID and superuser state. */ - return false; + roleid = GetSessionUserId(); + is_superuser = GetSessionUserIsSuperuser(); } - - /* Look up the username */ - roleTup = SearchSysCache1(AUTHNAME, PointerGetDatum(*newval)); - if (!HeapTupleIsValid(roleTup)) + else { + if (!IsTransactionState()) + { + /* + * Can't do catalog lookups, so fail. The result of this is that + * session_authorization cannot be set in postgresql.conf, which + * seems like a good thing anyway, so we don't work hard to avoid + * it. + */ + return false; + } + /* * When source == PGC_S_TEST, we don't throw a hard error for a - * nonexistent user name, only a NOTICE. See comments in guc.h. + * nonexistent user name or insufficient privileges, only a NOTICE. + * See comments in guc.h. */ - if (source == PGC_S_TEST) + + /* Look up the username */ + roleTup = SearchSysCache1(AUTHNAME, PointerGetDatum(*newval)); + if (!HeapTupleIsValid(roleTup)) { - ereport(NOTICE, - (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("role \"%s\" does not exist", *newval))); - return true; + if (source == PGC_S_TEST) + { + ereport(NOTICE, + (errcode(ERRCODE_UNDEFINED_OBJECT), + errmsg("role \"%s\" does not exist", *newval))); + return true; + } + GUC_check_errmsg("role \"%s\" does not exist", *newval); + return false; } - GUC_check_errmsg("role \"%s\" does not exist", *newval); - return false; - } - roleform = (Form_pg_authid) GETSTRUCT(roleTup); - roleid = roleform->oid; - is_superuser = roleform->rolsuper; + roleform = (Form_pg_authid) GETSTRUCT(roleTup); + roleid = roleform->oid; + is_superuser = roleform->rolsuper; - ReleaseSysCache(roleTup); + ReleaseSysCache(roleTup); + + /* + * Only superusers may SET SESSION AUTHORIZATION a role other than + * itself. Note that in case of multiple SETs in a single session, the + * original authenticated user's superuserness is what matters. + */ + if (roleid != GetAuthenticatedUserId() && + !GetAuthenticatedUserIsSuperuser()) + { + if (source == PGC_S_TEST) + { + ereport(NOTICE, + (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), + errmsg("permission will be denied to set session authorization \"%s\"", + *newval))); + return true; + } + GUC_check_errcode(ERRCODE_INSUFFICIENT_PRIVILEGE); + GUC_check_errmsg("permission denied to set session authorization \"%s\"", + *newval); + return false; + } + } /* Set up "extra" struct for assign_session_authorization to use */ myextra = (role_auth_extra *) malloc(sizeof(role_auth_extra)); @@ -836,6 +874,16 @@ check_role(char **newval, void **extra, GucSource source) roleid = InvalidOid; is_superuser = false; } + else if (InitializingParallelWorker) + { + /* + * In parallel worker initialization, we want to copy the leader's + * state even if it no longer matches the catalogs. ParallelWorkerMain + * already installed the correct role OID and superuser state. + */ + roleid = GetCurrentRoleId(); + is_superuser = session_auth_is_superuser; + } else { if (!IsTransactionState()) @@ -875,13 +923,8 @@ check_role(char **newval, void **extra, GucSource source) ReleaseSysCache(roleTup); - /* - * Verify that session user is allowed to become this role, but skip - * this in parallel mode, where we must blindly recreate the parallel - * leader's state. - */ - if (!InitializingParallelWorker && - !is_member_of_role(GetSessionUserId(), roleid)) + /* Verify that session user is allowed to become this role */ + if (!is_member_of_role(GetSessionUserId(), roleid)) { if (source == PGC_S_TEST) { diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index dcbfdc8f757..d5b8c31f32b 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -43,6 +43,7 @@ #include "access/tableam.h" #include "access/transam.h" #include "access/xact.h" +#include "catalog/catalog.h" #include "catalog/namespace.h" #include "catalog/partition.h" #include "catalog/pg_publication.h" @@ -134,10 +135,12 @@ void ExecutorStart(QueryDesc *queryDesc, int eflags) { /* - * In some cases (e.g. an EXECUTE statement) a query execution will skip - * parse analysis, which means that the query_id won't be reported. Note - * that it's harmless to report the query_id multiple time, as the call - * will be ignored if the top level query_id has already been reported. + * In some cases (e.g. an EXECUTE statement or an execute message with the + * extended query protocol) the query_id won't be reported, so do it now. + * + * Note that it's harmless to report the query_id multiple times, as the + * call will be ignored if the top level query_id has already been + * reported. */ pgstat_report_query_id(queryDesc->plannedstmt->queryId, false); @@ -1001,6 +1004,10 @@ CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation) TriggerDesc *trigDesc = resultRel->trigdesc; FdwRoutine *fdwroutine; + /* Expect a fully-formed ResultRelInfo from InitResultRelInfo(). */ + Assert(resultRelInfo->ri_needLockTagTuple == + IsInplaceUpdateRelation(resultRel)); + switch (resultRel->rd_rel->relkind) { case RELKIND_RELATION: @@ -1209,6 +1216,8 @@ InitResultRelInfo(ResultRelInfo *resultRelInfo, resultRelInfo->ri_NumIndices = 0; resultRelInfo->ri_IndexRelationDescs = NULL; resultRelInfo->ri_IndexRelationInfo = NULL; + resultRelInfo->ri_needLockTagTuple = + IsInplaceUpdateRelation(resultRelationDesc); /* make a copy so as not to depend on relcache info not changing... */ resultRelInfo->ri_TrigDesc = CopyTriggerDesc(resultRelationDesc->trigdesc); if (resultRelInfo->ri_TrigDesc) diff --git a/src/backend/executor/execReplication.c b/src/backend/executor/execReplication.c index 125f1367d1a..3ecb7efe365 100644 --- a/src/backend/executor/execReplication.c +++ b/src/backend/executor/execReplication.c @@ -19,6 +19,7 @@ #include "access/tableam.h" #include "access/transam.h" #include "access/xact.h" +#include "catalog/catalog.h" #include "commands/trigger.h" #include "executor/executor.h" #include "executor/nodeModifyTable.h" @@ -483,8 +484,12 @@ ExecSimpleRelationUpdate(ResultRelInfo *resultRelInfo, Relation rel = resultRelInfo->ri_RelationDesc; ItemPointer tid = &(searchslot->tts_tid); - /* For now we support only tables. */ + /* + * We support only non-system tables, with + * check_publication_add_relation() accountable. + */ Assert(rel->rd_rel->relkind == RELKIND_RELATION); + Assert(!IsCatalogRelation(rel)); CheckCmdReplicaIdentity(rel, CMD_UPDATE); diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index 3a4368385df..60a9c6dd116 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -782,7 +782,7 @@ ExecInitRangeTable(EState *estate, List *rangeTable) * ExecGetRangeTableRelation * Open the Relation for a range table entry, if not already done * - * The Relations will be closed again in ExecEndPlan(). + * The Relations will be closed in ExecEndPlan(). */ Relation ExecGetRangeTableRelation(EState *estate, Index rti) diff --git a/src/backend/executor/functions.c b/src/backend/executor/functions.c index 63062a0b924..a686d87a02e 100644 --- a/src/backend/executor/functions.c +++ b/src/backend/executor/functions.c @@ -1991,6 +1991,12 @@ check_sql_fn_retval_ext(List *queryTreeLists, rtr->rtindex = 1; newquery->jointree = makeFromExpr(list_make1(rtr), NULL); + /* + * Make sure the new query is marked as having row security if the + * original one does. + */ + newquery->hasRowSecurity = parse->hasRowSecurity; + /* Replace original query in the correct element of the query list */ lfirst(parse_cell) = newquery; } diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 34dd9a28d95..91784acb4d0 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1252,6 +1252,7 @@ ExecParallelHashIncreaseNumBatches(HashJoinTable hashtable) if (BarrierArriveAndWait(&pstate->grow_batches_barrier, WAIT_EVENT_HASH_GROW_BATCHES_DECIDE)) { + ParallelHashJoinBatch *old_batches; bool space_exhausted = false; bool extreme_skew_detected = false; @@ -1259,25 +1260,31 @@ ExecParallelHashIncreaseNumBatches(HashJoinTable hashtable) ExecParallelHashEnsureBatchAccessors(hashtable); ExecParallelHashTableSetCurrentBatch(hashtable, 0); + old_batches = dsa_get_address(hashtable->area, pstate->old_batches); + /* Are any of the new generation of batches exhausted? */ for (i = 0; i < hashtable->nbatch; ++i) { - ParallelHashJoinBatch *batch = hashtable->batches[i].shared; + ParallelHashJoinBatch *batch; + ParallelHashJoinBatch *old_batch; + int parent; + batch = hashtable->batches[i].shared; if (batch->space_exhausted || batch->estimated_size > pstate->space_allowed) - { - int parent; - space_exhausted = true; + parent = i % pstate->old_nbatch; + old_batch = NthParallelHashJoinBatch(old_batches, parent); + if (old_batch->space_exhausted || + batch->estimated_size > pstate->space_allowed) + { /* * Did this batch receive ALL of the tuples from its * parent batch? That would indicate that further * repartitioning isn't going to help (the hash values * are probably all the same). */ - parent = i % pstate->old_nbatch; if (batch->ntuples == hashtable->batches[parent].shared->old_ntuples) extreme_skew_detected = true; } diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index b6944d708a3..f29b5d539d5 100644 --- a/src/backend/executor/nodeHashjoin.c +++ b/src/backend/executor/nodeHashjoin.c @@ -1524,8 +1524,13 @@ void ExecHashJoinReInitializeDSM(HashJoinState *state, ParallelContext *cxt) { int plan_node_id = state->js.ps.plan->plan_node_id; - ParallelHashJoinState *pstate = - shm_toc_lookup(cxt->toc, plan_node_id, false); + ParallelHashJoinState *pstate; + + /* Nothing to do if we failed to create a DSM segment. */ + if (cxt->seg == NULL) + return; + + pstate = shm_toc_lookup(cxt->toc, plan_node_id, false); /* * It would be possible to reuse the shared hash table in single-batch diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index f5f2d4083cc..4d697a28c00 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -2394,6 +2394,8 @@ ExecUpdate(ModifyTableContext *context, ResultRelInfo *resultRelInfo, } else { + ItemPointerData lockedtid; + /* * If we generate a new candidate tuple after EvalPlanQual testing, we * must loop back here to try again. (We don't need to redo triggers, @@ -2402,6 +2404,7 @@ ExecUpdate(ModifyTableContext *context, ResultRelInfo *resultRelInfo, * to do them again.) */ redo_act: + lockedtid = *tupleid; result = ExecUpdateAct(context, resultRelInfo, tupleid, oldtuple, slot, canSetTag, &updateCxt); @@ -2495,6 +2498,14 @@ ExecUpdate(ModifyTableContext *context, ResultRelInfo *resultRelInfo, ExecInitUpdateProjection(context->mtstate, resultRelInfo); + if (resultRelInfo->ri_needLockTagTuple) + { + UnlockTuple(resultRelationDesc, + &lockedtid, InplaceUpdateTupleLock); + LockTuple(resultRelationDesc, + tupleid, InplaceUpdateTupleLock); + } + /* Fetch the most recent version of old tuple. */ oldSlot = resultRelInfo->ri_oldTupleSlot; if (!table_tuple_fetch_row_version(resultRelationDesc, @@ -2602,6 +2613,14 @@ ExecOnConflictUpdate(ModifyTableContext *context, TransactionId xmin; bool isnull; + /* + * Parse analysis should have blocked ON CONFLICT for all system + * relations, which includes these. There's no fundamental obstacle to + * supporting this; we'd just need to handle LOCKTAG_TUPLE like the other + * ExecUpdate() caller. + */ + Assert(!resultRelInfo->ri_needLockTagTuple); + /* Determine lock mode to use */ lockmode = ExecUpdateLockMode(context->estate, resultRelInfo); @@ -2885,18 +2904,20 @@ ExecMergeMatched(ModifyTableContext *context, ResultRelInfo *resultRelInfo, ItemPointer tupleid, bool canSetTag) { ModifyTableState *mtstate = context->mtstate; + ItemPointerData lockedtid; TupleTableSlot *newslot; EState *estate = context->estate; ExprContext *econtext = mtstate->ps.ps_ExprContext; bool isNull; EPQState *epqstate = &mtstate->mt_epqstate; ListCell *l; + bool no_further_action = true; /* * If there are no WHEN MATCHED actions, we are done. */ if (resultRelInfo->ri_matchedMergeAction == NIL) - return true; + return no_further_action; /* * Make tuple and any needed join variables available to ExecQual and @@ -2910,6 +2931,20 @@ ExecMergeMatched(ModifyTableContext *context, ResultRelInfo *resultRelInfo, lmerge_matched:; + if (resultRelInfo->ri_needLockTagTuple) + { + /* + * This locks even for CMD_DELETE, for CMD_NOTHING, and for tuples + * that don't match mas_whenqual. MERGE on system catalogs is a minor + * use case, so don't bother optimizing those. + */ + LockTuple(resultRelInfo->ri_RelationDesc, tupleid, + InplaceUpdateTupleLock); + lockedtid = *tupleid; + } + else + ItemPointerSetInvalid(&lockedtid); + /* * This routine is only invoked for matched rows, and we must have found * the tupleid of the target row in that case; fetch that tuple. @@ -2980,7 +3015,7 @@ lmerge_matched:; tupleid, NULL, newslot, &result)) { if (result == TM_Ok) - return true; /* "do nothing" */ + goto out; /* "do nothing" */ break; /* concurrent update/delete */ } result = ExecUpdateAct(context, resultRelInfo, tupleid, NULL, @@ -2996,7 +3031,7 @@ lmerge_matched:; if (updateCxt.crossPartUpdate) { mtstate->mt_merge_updated += 1; - return true; + goto out; } if (result == TM_Ok && updateCxt.updated) @@ -3013,7 +3048,7 @@ lmerge_matched:; NULL, NULL, &result)) { if (result == TM_Ok) - return true; /* "do nothing" */ + goto out; /* "do nothing" */ break; /* concurrent update/delete */ } result = ExecDeleteAct(context, resultRelInfo, tupleid, false); @@ -3091,7 +3126,8 @@ lmerge_matched:; * If the tuple was already deleted, return to let caller * handle it under NOT MATCHED clauses. */ - return false; + no_further_action = false; + goto out; case TM_Updated: { @@ -3137,13 +3173,19 @@ lmerge_matched:; * NOT MATCHED actions. */ if (TupIsNull(epqslot)) - return false; + { + no_further_action = false; + goto out; + } (void) ExecGetJunkAttribute(epqslot, resultRelInfo->ri_RowIdAttNo, &isNull); if (isNull) - return false; + { + no_further_action = false; + goto out; + } /* * When a tuple was updated and migrated to @@ -3169,6 +3211,10 @@ lmerge_matched:; * Update tupleid to that of the new tuple, for * the refetch we do at the top. */ + if (resultRelInfo->ri_needLockTagTuple) + UnlockTuple(resultRelInfo->ri_RelationDesc, + &lockedtid, + InplaceUpdateTupleLock); ItemPointerCopy(&context->tmfd.ctid, tupleid); goto lmerge_matched; @@ -3178,7 +3224,8 @@ lmerge_matched:; * tuple already deleted; tell caller to run NOT * MATCHED actions */ - return false; + no_further_action = false; + goto out; case TM_SelfModified: @@ -3206,13 +3253,15 @@ lmerge_matched:; /* This shouldn't happen */ elog(ERROR, "attempted to update or delete invisible tuple"); - return false; + no_further_action = false; + goto out; default: /* see table_tuple_lock call in ExecDelete() */ elog(ERROR, "unexpected table_tuple_lock status: %u", result); - return false; + no_further_action = false; + goto out; } } @@ -3234,7 +3283,11 @@ lmerge_matched:; /* * Successfully executed an action or no qualifying action was found. */ - return true; +out: + if (ItemPointerIsValid(&lockedtid)) + UnlockTuple(resultRelInfo->ri_RelationDesc, &lockedtid, + InplaceUpdateTupleLock); + return no_further_action; } /* @@ -3727,6 +3780,7 @@ ExecModifyTable(PlanState *pstate) Tuplestorestate *tss; TupleDesc tupdesc; DestReceiver *dest = NULL; + bool tuplock; CHECK_FOR_INTERRUPTS(); @@ -4012,6 +4066,8 @@ ExecModifyTable(PlanState *pstate) break; case CMD_UPDATE: + tuplock = false; + /* Initialize projection info if first time for this table */ if (unlikely(!resultRelInfo->ri_projectNewInfoValid)) ExecInitUpdateProjection(node, resultRelInfo); @@ -4023,6 +4079,7 @@ ExecModifyTable(PlanState *pstate) oldSlot = resultRelInfo->ri_oldTupleSlot; if (oldtuple != NULL) { + Assert(!resultRelInfo->ri_needLockTagTuple); /* Use the wholerow junk attr as the old tuple. */ ExecForceStoreHeapTuple(oldtuple, oldSlot, false); } @@ -4031,6 +4088,11 @@ ExecModifyTable(PlanState *pstate) /* Fetch the most recent version of old tuple. */ Relation relation = resultRelInfo->ri_RelationDesc; + if (resultRelInfo->ri_needLockTagTuple) + { + LockTuple(relation, tupleid, InplaceUpdateTupleLock); + tuplock = true; + } if (!table_tuple_fetch_row_version(relation, tupleid, SnapshotAny, oldSlot)) @@ -4043,6 +4105,9 @@ ExecModifyTable(PlanState *pstate) /* Now apply the update. */ slot = ExecUpdate(&context, resultRelInfo, tupleid, oldtuple, slot, node->canSetTag); + if (tuplock) + UnlockTuple(resultRelInfo->ri_RelationDesc, tupleid, + InplaceUpdateTupleLock); break; case CMD_DELETE: diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index 33c01ea0fea..bd4c72cd294 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -336,13 +336,13 @@ _SPI_rollback(bool chain) MemoryContext oldcontext = CurrentMemoryContext; SavedTransactionCharacteristics savetc; - /* see under SPI_commit() */ + /* see comments in _SPI_commit() */ if (_SPI_current->atomic) ereport(ERROR, (errcode(ERRCODE_INVALID_TRANSACTION_TERMINATION), errmsg("invalid transaction termination"))); - /* see under SPI_commit() */ + /* see comments in _SPI_commit() */ if (IsSubTransaction()) ereport(ERROR, (errcode(ERRCODE_INVALID_TRANSACTION_TERMINATION), @@ -597,8 +597,11 @@ SPI_inside_nonatomic_context(void) { if (_SPI_current == NULL) return false; /* not in any SPI context at all */ + /* these tests must match _SPI_commit's opinion of what's atomic: */ if (_SPI_current->atomic) return false; /* it's atomic (ie function not procedure) */ + if (IsSubTransaction()) + return false; /* if within subtransaction, it's atomic */ return true; } @@ -2073,6 +2076,8 @@ SPI_result_code_string(int code) * SPI_plan_get_plan_sources --- get a SPI plan's underlying list of * CachedPlanSources. * + * CAUTION: there is no check on whether the CachedPlanSources are up-to-date. + * * This is exported so that PL/pgSQL can use it (this beats letting PL/pgSQL * look directly into the SPIPlan for itself). It's not documented in * spi.sgml because we'd just as soon not have too many places using this. @@ -2438,9 +2443,19 @@ _SPI_execute_plan(SPIPlanPtr plan, const SPIExecuteOptions *options, /* * We allow nonatomic behavior only if options->allow_nonatomic is set - * *and* the SPI_OPT_NONATOMIC flag was given when connecting. + * *and* the SPI_OPT_NONATOMIC flag was given when connecting and we are + * not inside a subtransaction. The latter two tests match whether + * _SPI_commit() would allow a commit; see there for more commentary. */ - allow_nonatomic = options->allow_nonatomic && !_SPI_current->atomic; + if (check_pltsql_support_tsql_transactions_hook && (*check_pltsql_support_tsql_transactions_hook)()) + { + allow_nonatomic = options->allow_nonatomic && !_SPI_current->atomic; + } + else + { + allow_nonatomic = options->allow_nonatomic && + !_SPI_current->atomic && !IsSubTransaction(); + } /* * Setup error traceback support for ereport() diff --git a/src/backend/jit/llvm/Makefile b/src/backend/jit/llvm/Makefile index 2da122a391e..607d16754f5 100644 --- a/src/backend/jit/llvm/Makefile +++ b/src/backend/jit/llvm/Makefile @@ -47,7 +47,8 @@ OBJS += \ llvmjit.o \ llvmjit_error.o \ llvmjit_inline.o \ - llvmjit_wrap.o + llvmjit_wrap.o \ + SectionMemoryManager.o # Code generation OBJS += \ diff --git a/src/backend/jit/llvm/SectionMemoryManager.LICENSE b/src/backend/jit/llvm/SectionMemoryManager.LICENSE new file mode 100644 index 00000000000..fa6ac540007 --- /dev/null +++ b/src/backend/jit/llvm/SectionMemoryManager.LICENSE @@ -0,0 +1,279 @@ +============================================================================== +The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + +============================================================================== +Software from third parties included in the LLVM Project: +============================================================================== +The LLVM Project contains third party software which is under different license +terms. All such code will be identified clearly using at least one of two +mechanisms: +1) It will be in a separate directory tree with its own `LICENSE.txt` or + `LICENSE` file at the top containing the specific license and restrictions + which apply to that software, or +2) It will contain specific license and restriction terms at the top of every + file. + +============================================================================== +Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy): +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2019 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + diff --git a/src/backend/jit/llvm/SectionMemoryManager.cpp b/src/backend/jit/llvm/SectionMemoryManager.cpp new file mode 100644 index 00000000000..c4fbf15a961 --- /dev/null +++ b/src/backend/jit/llvm/SectionMemoryManager.cpp @@ -0,0 +1,412 @@ +/* + * This file is from https://github.com/llvm/llvm-project/pull/71968 + * with minor modifications to avoid name clash and work with older + * LLVM versions. The llvm::backport::SectionMemoryManager class is a + * drop-in replacement for llvm::SectionMemoryManager, for use with + * llvm::RuntimeDyld. It fixes a memory layout bug on large memory + * ARM systems (see pull request for details). If the LLVM project + * eventually commits the change, we may need to resynchronize our + * copy with any further modifications, but they would be unlikely to + * backport it into the LLVM versions that we target so we would still + * need this copy. + * + * In the future we will switch to using JITLink instead of + * RuntimeDyld where possible, and later remove this code (.cpp, .h, + * .LICENSE) after all LLVM versions that we target allow it. + * + * This file is a modified copy of a part of the LLVM source code that + * we would normally access from the LLVM library. It is therefore + * covered by the license at https://llvm.org/LICENSE.txt, reproduced + * verbatim in SectionMemoryManager.LICENSE in fulfillment of clause + * 4a. The bugfix changes from the pull request are also covered, per + * clause 5. + */ + +//===- SectionMemoryManager.cpp - Memory manager for MCJIT/RtDyld *- C++ -*-==// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file implements the section-based memory manager used by the MCJIT +// execution engine and RuntimeDyld +// +//===----------------------------------------------------------------------===// + +#include "jit/llvmjit_backport.h" + +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER + +#include "jit/SectionMemoryManager.h" +#include "llvm/Support/MathExtras.h" +#include "llvm/Support/Process.h" + +namespace llvm { +namespace backport { + +bool SectionMemoryManager::hasSpace(const MemoryGroup &MemGroup, + uintptr_t Size) const { + for (const FreeMemBlock &FreeMB : MemGroup.FreeMem) { + if (FreeMB.Free.allocatedSize() >= Size) + return true; + } + return false; +} + +#if LLVM_VERSION_MAJOR < 16 +void SectionMemoryManager::reserveAllocationSpace(uintptr_t CodeSize, + uint32_t CodeAlign_i, + uintptr_t RODataSize, + uint32_t RODataAlign_i, + uintptr_t RWDataSize, + uint32_t RWDataAlign_i) { + Align CodeAlign(CodeAlign_i); + Align RODataAlign(RODataAlign_i); + Align RWDataAlign(RWDataAlign_i); +#else +void SectionMemoryManager::reserveAllocationSpace( + uintptr_t CodeSize, Align CodeAlign, uintptr_t RODataSize, + Align RODataAlign, uintptr_t RWDataSize, Align RWDataAlign) { +#endif + if (CodeSize == 0 && RODataSize == 0 && RWDataSize == 0) + return; + + static const size_t PageSize = sys::Process::getPageSizeEstimate(); + + // Code alignment needs to be at least the stub alignment - however, we + // don't have an easy way to get that here so as a workaround, we assume + // it's 8, which is the largest value I observed across all platforms. + constexpr uint64_t StubAlign = 8; + CodeAlign = Align(std::max(CodeAlign.value(), StubAlign)); + RODataAlign = Align(std::max(RODataAlign.value(), StubAlign)); + RWDataAlign = Align(std::max(RWDataAlign.value(), StubAlign)); + + // Get space required for each section. Use the same calculation as + // allocateSection because we need to be able to satisfy it. + uint64_t RequiredCodeSize = alignTo(CodeSize, CodeAlign) + CodeAlign.value(); + uint64_t RequiredRODataSize = + alignTo(RODataSize, RODataAlign) + RODataAlign.value(); + uint64_t RequiredRWDataSize = + alignTo(RWDataSize, RWDataAlign) + RWDataAlign.value(); + + if (hasSpace(CodeMem, RequiredCodeSize) && + hasSpace(RODataMem, RequiredRODataSize) && + hasSpace(RWDataMem, RequiredRWDataSize)) { + // Sufficient space in contiguous block already available. + return; + } + + // MemoryManager does not have functions for releasing memory after it's + // allocated. Normally it tries to use any excess blocks that were allocated + // due to page alignment, but if we have insufficient free memory for the + // request this can lead to allocating disparate memory that can violate the + // ARM ABI. Clear free memory so only the new allocations are used, but do + // not release allocated memory as it may still be in-use. + CodeMem.FreeMem.clear(); + RODataMem.FreeMem.clear(); + RWDataMem.FreeMem.clear(); + + // Round up to the nearest page size. Blocks must be page-aligned. + RequiredCodeSize = alignTo(RequiredCodeSize, PageSize); + RequiredRODataSize = alignTo(RequiredRODataSize, PageSize); + RequiredRWDataSize = alignTo(RequiredRWDataSize, PageSize); + uint64_t RequiredSize = + RequiredCodeSize + RequiredRODataSize + RequiredRWDataSize; + + std::error_code ec; + sys::MemoryBlock MB = MMapper->allocateMappedMemory( + AllocationPurpose::RWData, RequiredSize, nullptr, + sys::Memory::MF_READ | sys::Memory::MF_WRITE, ec); + if (ec) { + return; + } + // CodeMem will arbitrarily own this MemoryBlock to handle cleanup. + CodeMem.AllocatedMem.push_back(MB); + uintptr_t Addr = (uintptr_t)MB.base(); + FreeMemBlock FreeMB; + FreeMB.PendingPrefixIndex = (unsigned)-1; + + if (CodeSize > 0) { + assert(isAddrAligned(CodeAlign, (void *)Addr)); + FreeMB.Free = sys::MemoryBlock((void *)Addr, RequiredCodeSize); + CodeMem.FreeMem.push_back(FreeMB); + Addr += RequiredCodeSize; + } + + if (RODataSize > 0) { + assert(isAddrAligned(RODataAlign, (void *)Addr)); + FreeMB.Free = sys::MemoryBlock((void *)Addr, RequiredRODataSize); + RODataMem.FreeMem.push_back(FreeMB); + Addr += RequiredRODataSize; + } + + if (RWDataSize > 0) { + assert(isAddrAligned(RWDataAlign, (void *)Addr)); + FreeMB.Free = sys::MemoryBlock((void *)Addr, RequiredRWDataSize); + RWDataMem.FreeMem.push_back(FreeMB); + } +} + +uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size, + unsigned Alignment, + unsigned SectionID, + StringRef SectionName, + bool IsReadOnly) { + if (IsReadOnly) + return allocateSection(SectionMemoryManager::AllocationPurpose::ROData, + Size, Alignment); + return allocateSection(SectionMemoryManager::AllocationPurpose::RWData, Size, + Alignment); +} + +uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, + unsigned Alignment, + unsigned SectionID, + StringRef SectionName) { + return allocateSection(SectionMemoryManager::AllocationPurpose::Code, Size, + Alignment); +} + +uint8_t *SectionMemoryManager::allocateSection( + SectionMemoryManager::AllocationPurpose Purpose, uintptr_t Size, + unsigned Alignment) { + if (!Alignment) + Alignment = 16; + + assert(!(Alignment & (Alignment - 1)) && "Alignment must be a power of two."); + + uintptr_t RequiredSize = Alignment * ((Size + Alignment - 1) / Alignment + 1); + uintptr_t Addr = 0; + + MemoryGroup &MemGroup = [&]() -> MemoryGroup & { + switch (Purpose) { + case AllocationPurpose::Code: + return CodeMem; + case AllocationPurpose::ROData: + return RODataMem; + case AllocationPurpose::RWData: + return RWDataMem; + } + llvm_unreachable("Unknown SectionMemoryManager::AllocationPurpose"); + }(); + + // Look in the list of free memory regions and use a block there if one + // is available. + for (FreeMemBlock &FreeMB : MemGroup.FreeMem) { + if (FreeMB.Free.allocatedSize() >= RequiredSize) { + Addr = (uintptr_t)FreeMB.Free.base(); + uintptr_t EndOfBlock = Addr + FreeMB.Free.allocatedSize(); + // Align the address. + Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1); + + if (FreeMB.PendingPrefixIndex == (unsigned)-1) { + // The part of the block we're giving out to the user is now pending + MemGroup.PendingMem.push_back(sys::MemoryBlock((void *)Addr, Size)); + + // Remember this pending block, such that future allocations can just + // modify it rather than creating a new one + FreeMB.PendingPrefixIndex = MemGroup.PendingMem.size() - 1; + } else { + sys::MemoryBlock &PendingMB = + MemGroup.PendingMem[FreeMB.PendingPrefixIndex]; + PendingMB = sys::MemoryBlock(PendingMB.base(), + Addr + Size - (uintptr_t)PendingMB.base()); + } + + // Remember how much free space is now left in this block + FreeMB.Free = + sys::MemoryBlock((void *)(Addr + Size), EndOfBlock - Addr - Size); + return (uint8_t *)Addr; + } + } + + // No pre-allocated free block was large enough. Allocate a new memory region. + // Note that all sections get allocated as read-write. The permissions will + // be updated later based on memory group. + // + // FIXME: It would be useful to define a default allocation size (or add + // it as a constructor parameter) to minimize the number of allocations. + // + // FIXME: Initialize the Near member for each memory group to avoid + // interleaving. + std::error_code ec; + sys::MemoryBlock MB = MMapper->allocateMappedMemory( + Purpose, RequiredSize, &MemGroup.Near, + sys::Memory::MF_READ | sys::Memory::MF_WRITE, ec); + if (ec) { + // FIXME: Add error propagation to the interface. + return nullptr; + } + + // Save this address as the basis for our next request + MemGroup.Near = MB; + + // Copy the address to all the other groups, if they have not + // been initialized. + if (CodeMem.Near.base() == nullptr) + CodeMem.Near = MB; + if (RODataMem.Near.base() == nullptr) + RODataMem.Near = MB; + if (RWDataMem.Near.base() == nullptr) + RWDataMem.Near = MB; + + // Remember that we allocated this memory + MemGroup.AllocatedMem.push_back(MB); + Addr = (uintptr_t)MB.base(); + uintptr_t EndOfBlock = Addr + MB.allocatedSize(); + + // Align the address. + Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1); + + // The part of the block we're giving out to the user is now pending + MemGroup.PendingMem.push_back(sys::MemoryBlock((void *)Addr, Size)); + + // The allocateMappedMemory may allocate much more memory than we need. In + // this case, we store the unused memory as a free memory block. + unsigned FreeSize = EndOfBlock - Addr - Size; + if (FreeSize > 16) { + FreeMemBlock FreeMB; + FreeMB.Free = sys::MemoryBlock((void *)(Addr + Size), FreeSize); + FreeMB.PendingPrefixIndex = (unsigned)-1; + MemGroup.FreeMem.push_back(FreeMB); + } + + // Return aligned address + return (uint8_t *)Addr; +} + +bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg) { + // FIXME: Should in-progress permissions be reverted if an error occurs? + std::error_code ec; + + // Make code memory executable. + ec = applyMemoryGroupPermissions(CodeMem, + sys::Memory::MF_READ | sys::Memory::MF_EXEC); + if (ec) { + if (ErrMsg) { + *ErrMsg = ec.message(); + } + return true; + } + + // Make read-only data memory read-only. + ec = applyMemoryGroupPermissions(RODataMem, sys::Memory::MF_READ); + if (ec) { + if (ErrMsg) { + *ErrMsg = ec.message(); + } + return true; + } + + // Read-write data memory already has the correct permissions + + // Some platforms with separate data cache and instruction cache require + // explicit cache flush, otherwise JIT code manipulations (like resolved + // relocations) will get to the data cache but not to the instruction cache. + invalidateInstructionCache(); + + return false; +} + +static sys::MemoryBlock trimBlockToPageSize(sys::MemoryBlock M) { + static const size_t PageSize = sys::Process::getPageSizeEstimate(); + + size_t StartOverlap = + (PageSize - ((uintptr_t)M.base() % PageSize)) % PageSize; + + size_t TrimmedSize = M.allocatedSize(); + TrimmedSize -= StartOverlap; + TrimmedSize -= TrimmedSize % PageSize; + + sys::MemoryBlock Trimmed((void *)((uintptr_t)M.base() + StartOverlap), + TrimmedSize); + + assert(((uintptr_t)Trimmed.base() % PageSize) == 0); + assert((Trimmed.allocatedSize() % PageSize) == 0); + assert(M.base() <= Trimmed.base() && + Trimmed.allocatedSize() <= M.allocatedSize()); + + return Trimmed; +} + +std::error_code +SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup, + unsigned Permissions) { + for (sys::MemoryBlock &MB : MemGroup.PendingMem) + if (std::error_code EC = MMapper->protectMappedMemory(MB, Permissions)) + return EC; + + MemGroup.PendingMem.clear(); + + // Now go through free blocks and trim any of them that don't span the entire + // page because one of the pending blocks may have overlapped it. + for (FreeMemBlock &FreeMB : MemGroup.FreeMem) { + FreeMB.Free = trimBlockToPageSize(FreeMB.Free); + // We cleared the PendingMem list, so all these pointers are now invalid + FreeMB.PendingPrefixIndex = (unsigned)-1; + } + + // Remove all blocks which are now empty + erase_if(MemGroup.FreeMem, [](FreeMemBlock &FreeMB) { + return FreeMB.Free.allocatedSize() == 0; + }); + + return std::error_code(); +} + +void SectionMemoryManager::invalidateInstructionCache() { + for (sys::MemoryBlock &Block : CodeMem.PendingMem) + sys::Memory::InvalidateInstructionCache(Block.base(), + Block.allocatedSize()); +} + +SectionMemoryManager::~SectionMemoryManager() { + for (MemoryGroup *Group : {&CodeMem, &RWDataMem, &RODataMem}) { + for (sys::MemoryBlock &Block : Group->AllocatedMem) + MMapper->releaseMappedMemory(Block); + } +} + +SectionMemoryManager::MemoryMapper::~MemoryMapper() = default; + +void SectionMemoryManager::anchor() {} + +namespace { +// Trivial implementation of SectionMemoryManager::MemoryMapper that just calls +// into sys::Memory. +class DefaultMMapper final : public SectionMemoryManager::MemoryMapper { +public: + sys::MemoryBlock + allocateMappedMemory(SectionMemoryManager::AllocationPurpose Purpose, + size_t NumBytes, const sys::MemoryBlock *const NearBlock, + unsigned Flags, std::error_code &EC) override { + return sys::Memory::allocateMappedMemory(NumBytes, NearBlock, Flags, EC); + } + + std::error_code protectMappedMemory(const sys::MemoryBlock &Block, + unsigned Flags) override { + return sys::Memory::protectMappedMemory(Block, Flags); + } + + std::error_code releaseMappedMemory(sys::MemoryBlock &M) override { + return sys::Memory::releaseMappedMemory(M); + } +}; +} // namespace + +SectionMemoryManager::SectionMemoryManager(MemoryMapper *UnownedMM, + bool ReserveAlloc) + : MMapper(UnownedMM), OwnedMMapper(nullptr), + ReserveAllocation(ReserveAlloc) { + if (!MMapper) { + OwnedMMapper = std::make_unique(); + MMapper = OwnedMMapper.get(); + } +} + +} // namespace backport +} // namespace llvm + +#endif diff --git a/src/backend/jit/llvm/llvmjit.c b/src/backend/jit/llvm/llvmjit.c index 8b00d981121..356b5590a62 100644 --- a/src/backend/jit/llvm/llvmjit.c +++ b/src/backend/jit/llvm/llvmjit.c @@ -40,6 +40,7 @@ #endif #include "jit/llvmjit.h" +#include "jit/llvmjit_backport.h" #include "jit/llvmjit_emit.h" #include "miscadmin.h" #include "portability/instr_time.h" @@ -1316,8 +1317,13 @@ llvm_log_jit_error(void *ctx, LLVMErrorRef error) static LLVMOrcObjectLayerRef llvm_create_object_layer(void *Ctx, LLVMOrcExecutionSessionRef ES, const char *Triple) { +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER LLVMOrcObjectLayerRef objlayer = - LLVMOrcCreateRTDyldObjectLinkingLayerWithSectionMemoryManager(ES); + LLVMOrcCreateRTDyldObjectLinkingLayerWithSafeSectionMemoryManager(ES); +#else + LLVMOrcObjectLayerRef objlayer = + LLVMOrcCreateRTDyldObjectLinkingLayerWithSectionMemoryManager(ES); +#endif #if defined(HAVE_DECL_LLVMCREATEGDBREGISTRATIONLISTENER) && HAVE_DECL_LLVMCREATEGDBREGISTRATIONLISTENER if (jit_debugging_support) diff --git a/src/backend/jit/llvm/llvmjit_wrap.cpp b/src/backend/jit/llvm/llvmjit_wrap.cpp index bab5b662490..26074b1e893 100644 --- a/src/backend/jit/llvm/llvmjit_wrap.cpp +++ b/src/backend/jit/llvm/llvmjit_wrap.cpp @@ -33,6 +33,14 @@ extern "C" #endif #include "jit/llvmjit.h" +#include "jit/llvmjit_backport.h" + +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER +#include +#include +#include "jit/SectionMemoryManager.h" +#include +#endif /* @@ -102,3 +110,15 @@ LLVMGlobalGetValueType(LLVMValueRef g) return llvm::wrap(llvm::unwrap(g)->getValueType()); } #endif + +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER +DEFINE_SIMPLE_CONVERSION_FUNCTIONS(llvm::orc::ExecutionSession, LLVMOrcExecutionSessionRef) +DEFINE_SIMPLE_CONVERSION_FUNCTIONS(llvm::orc::ObjectLayer, LLVMOrcObjectLayerRef); + +LLVMOrcObjectLayerRef +LLVMOrcCreateRTDyldObjectLinkingLayerWithSafeSectionMemoryManager(LLVMOrcExecutionSessionRef ES) +{ + return wrap(new llvm::orc::RTDyldObjectLinkingLayer( + *unwrap(ES), [] { return std::make_unique(nullptr, true); })); +} +#endif diff --git a/src/backend/libpq/be-secure-openssl.c b/src/backend/libpq/be-secure-openssl.c index ad4b005dc86..b0492c443ec 100644 --- a/src/backend/libpq/be-secure-openssl.c +++ b/src/backend/libpq/be-secure-openssl.c @@ -260,9 +260,8 @@ be_tls_init(bool isServerStart) */ #ifdef HAVE_SSL_CTX_SET_NUM_TICKETS SSL_CTX_set_num_tickets(context, 0); -#else - SSL_CTX_set_options(context, SSL_OP_NO_TICKET); #endif + SSL_CTX_set_options(context, SSL_OP_NO_TICKET); /* disallow SSL session caching, too */ SSL_CTX_set_session_cache_mode(context, SSL_SESS_CACHE_OFF); diff --git a/src/backend/optimizer/path/equivclass.c b/src/backend/optimizer/path/equivclass.c index 06f89a67328..9357ee4036c 100644 --- a/src/backend/optimizer/path/equivclass.c +++ b/src/backend/optimizer/path/equivclass.c @@ -35,7 +35,6 @@ static EquivalenceMember *add_eq_member(EquivalenceClass *ec, Expr *expr, Relids relids, Relids nullable_relids, bool is_child, Oid datatype); -static bool is_exprlist_member(Expr *node, List *exprs); static void generate_base_implied_equalities_const(PlannerInfo *root, EquivalenceClass *ec); static void generate_base_implied_equalities_no_const(PlannerInfo *root, @@ -832,9 +831,18 @@ find_ec_member_matching_expr(EquivalenceClass *ec, * expressions appearing in "exprs"; return NULL if no match. * * "exprs" can be either a list of bare expression trees, or a list of - * TargetEntry nodes. Either way, it should contain Vars and possibly - * Aggrefs and WindowFuncs, which are matched to the corresponding elements - * of the EquivalenceClass's expressions. + * TargetEntry nodes. Typically it will contain Vars and possibly Aggrefs + * and WindowFuncs; however, when considering an appendrel member the list + * could contain arbitrary expressions. We consider an EC member to be + * computable if all the Vars, PlaceHolderVars, Aggrefs, and WindowFuncs + * it needs are present in "exprs". + * + * There is some subtlety in that definition: for example, if an EC member is + * Var_A + 1 while what is in "exprs" is Var_A + 2, it's still computable. + * This works because in the final plan tree, the EC member's expression will + * be computed as part of the same plan node targetlist that is currently + * represented by "exprs". So if we have Var_A available for the existing + * tlist member, it must be OK to use it in the EC expression too. * * Unlike find_ec_member_matching_expr, there's no special provision here * for binary-compatible relabeling. This is intentional: if we have to @@ -854,12 +862,24 @@ find_computable_ec_member(PlannerInfo *root, Relids relids, bool require_parallel_safe) { + List *exprvars; ListCell *lc; + /* + * Pull out the Vars and quasi-Vars present in "exprs". In the typical + * non-appendrel case, this is just another representation of the same + * list. However, it does remove the distinction between the case of a + * list of plain expressions and a list of TargetEntrys. + */ + exprvars = pull_var_clause((Node *) exprs, + PVC_INCLUDE_AGGREGATES | + PVC_INCLUDE_WINDOWFUNCS | + PVC_INCLUDE_PLACEHOLDERS); + foreach(lc, ec->ec_members) { EquivalenceMember *em = (EquivalenceMember *) lfirst(lc); - List *exprvars; + List *emvars; ListCell *lc2; /* @@ -877,18 +897,18 @@ find_computable_ec_member(PlannerInfo *root, continue; /* - * Match if all Vars and quasi-Vars are available in "exprs". + * Match if all Vars and quasi-Vars are present in "exprs". */ - exprvars = pull_var_clause((Node *) em->em_expr, - PVC_INCLUDE_AGGREGATES | - PVC_INCLUDE_WINDOWFUNCS | - PVC_INCLUDE_PLACEHOLDERS); - foreach(lc2, exprvars) + emvars = pull_var_clause((Node *) em->em_expr, + PVC_INCLUDE_AGGREGATES | + PVC_INCLUDE_WINDOWFUNCS | + PVC_INCLUDE_PLACEHOLDERS); + foreach(lc2, emvars) { - if (!is_exprlist_member(lfirst(lc2), exprs)) + if (!list_member(exprvars, lfirst(lc2))) break; } - list_free(exprvars); + list_free(emvars); if (lc2) continue; /* we hit a non-available Var */ @@ -906,31 +926,6 @@ find_computable_ec_member(PlannerInfo *root, return NULL; } -/* - * is_exprlist_member - * Subroutine for find_computable_ec_member: is "node" in "exprs"? - * - * Per the requirements of that function, "exprs" might or might not have - * TargetEntry superstructure. - */ -static bool -is_exprlist_member(Expr *node, List *exprs) -{ - ListCell *lc; - - foreach(lc, exprs) - { - Expr *expr = (Expr *) lfirst(lc); - - if (expr && IsA(expr, TargetEntry)) - expr = ((TargetEntry *) expr)->expr; - - if (equal(node, expr)) - return true; - } - return false; -} - /* * relation_can_be_sorted_early * Can this relation be sorted on this EC before the final output step? diff --git a/src/backend/optimizer/plan/createplan.c b/src/backend/optimizer/plan/createplan.c index f91562cbea3..f23326a1c51 100644 --- a/src/backend/optimizer/plan/createplan.c +++ b/src/backend/optimizer/plan/createplan.c @@ -2015,7 +2015,7 @@ create_projection_plan(PlannerInfo *root, ProjectionPath *best_path, int flags) * Convert our subpath to a Plan and determine whether we need a Result * node. * - * In most cases where we don't need to project, creation_projection_path + * In most cases where we don't need to project, create_projection_path * will have set dummypp, but not always. First, some createplan.c * routines change the tlists of their nodes. (An example is that * create_merge_append_plan might add resjunk sort columns to a diff --git a/src/backend/optimizer/plan/planner.c b/src/backend/optimizer/plan/planner.c index f7ae63755bc..3a7b00ffea9 100644 --- a/src/backend/optimizer/plan/planner.c +++ b/src/backend/optimizer/plan/planner.c @@ -3641,9 +3641,10 @@ create_ordinary_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel, * If this is the topmost relation or if the parent relation is doing * full partitionwise aggregation, then we can do full partitionwise * aggregation provided that the GROUP BY clause contains all of the - * partitioning columns at this level. Otherwise, we can do at most - * partial partitionwise aggregation. But if partial aggregation is - * not supported in general then we can't use it for partitionwise + * partitioning columns at this level and the collation used by GROUP + * BY matches the partitioning collation. Otherwise, we can do at + * most partial partitionwise aggregation. But if partial aggregation + * is not supported in general then we can't use it for partitionwise * aggregation either. */ if (extra->patype == PARTITIONWISE_AGGREGATE_FULL && @@ -7468,8 +7469,8 @@ create_partitionwise_grouping_paths(PlannerInfo *root, /* * group_by_has_partkey * - * Returns true, if all the partition keys of the given relation are part of - * the GROUP BY clauses, false otherwise. + * Returns true if all the partition keys of the given relation are part of + * the GROUP BY clauses, including having matching collation, false otherwise. */ static bool group_by_has_partkey(RelOptInfo *input_rel, @@ -7497,13 +7498,40 @@ group_by_has_partkey(RelOptInfo *input_rel, foreach(lc, partexprs) { + ListCell *lg; Expr *partexpr = lfirst(lc); + Oid partcoll = input_rel->part_scheme->partcollation[cnt]; - if (list_member(groupexprs, partexpr)) + foreach(lg, groupexprs) { - found = true; - break; + Expr *groupexpr = lfirst(lg); + Oid groupcoll = exprCollation((Node *) groupexpr); + + /* + * Note: we can assume there is at most one RelabelType node; + * eval_const_expressions() will have simplified if more than + * one. + */ + if (IsA(groupexpr, RelabelType)) + groupexpr = ((RelabelType *) groupexpr)->arg; + + if (equal(groupexpr, partexpr)) + { + /* + * Reject a match if the grouping collation does not match + * the partitioning collation. + */ + if (OidIsValid(partcoll) && OidIsValid(groupcoll) && + partcoll != groupcoll) + return false; + + found = true; + break; + } } + + if (found) + break; } /* diff --git a/src/backend/optimizer/util/inherit.c b/src/backend/optimizer/util/inherit.c index 3c11f5db5ad..d69b12855c6 100644 --- a/src/backend/optimizer/util/inherit.c +++ b/src/backend/optimizer/util/inherit.c @@ -378,8 +378,17 @@ expand_partitioned_rtentry(PlannerInfo *root, RelOptInfo *relinfo, Index childRTindex; RelOptInfo *childrelinfo; - /* Open rel, acquiring required locks */ - childrel = table_open(childOID, lockmode); + /* + * Open rel, acquiring required locks. If a partition was recently + * detached and subsequently dropped, then opening it will fail. In + * this case, behave as though the partition had been pruned. + */ + childrel = try_table_open(childOID, lockmode); + if (childrel == NULL) + { + relinfo->live_parts = bms_del_member(relinfo->live_parts, i); + continue; + } /* * Temporary partitions belonging to other sessions should have been diff --git a/src/backend/optimizer/util/relnode.c b/src/backend/optimizer/util/relnode.c index 6e1c87a4e20..591306735a5 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -1810,6 +1810,10 @@ have_partkey_equi_join(RelOptInfo *joinrel, if (ipk1 != ipk2) continue; + /* Reject if the partition key collation differs from the clause's. */ + if (rel1->part_scheme->partcollation[ipk1] != opexpr->inputcollid) + return false; + /* * The clause allows partitionwise join only if it uses the same * operator family as that specified by the partition key. diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index eb0f61dd4b5..bc2e3641fa9 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -4773,6 +4773,10 @@ SeqOptElem: AS SimpleTypename { $$ = makeDefElem("increment", (Node *) $3, @1); } + | LOGGED + { + $$ = makeDefElem("logged", NULL, @1); + } | MAXVALUE NumericOnly { $$ = makeDefElem("maxvalue", (Node *) $2, @1); @@ -4795,7 +4799,6 @@ SeqOptElem: AS SimpleTypename } | SEQUENCE NAME_P any_name { - /* not documented, only used by pg_dump */ $$ = makeDefElem("sequence_name", (Node *) $3, @1); } | START opt_with NumericOnly @@ -4810,6 +4813,10 @@ SeqOptElem: AS SimpleTypename { $$ = makeDefElem("restart", (Node *) $3, @1); } + | UNLOGGED + { + $$ = makeDefElem("unlogged", NULL, @1); + } ; opt_by: BY diff --git a/src/backend/parser/parse_agg.c b/src/backend/parser/parse_agg.c index fab9d0d293d..3115296f330 100644 --- a/src/backend/parser/parse_agg.c +++ b/src/backend/parser/parse_agg.c @@ -374,8 +374,6 @@ check_agglevels_and_constraints(ParseState *pstate, Node *expr) break; case EXPR_KIND_FROM_SUBSELECT: - /* Should only be possible in a LATERAL subquery */ - Assert(pstate->p_lateral_active); /* * Aggregate/grouping scope rules make it worth being explicit diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c index d7ffb6fcde8..68c062e2ca1 100644 --- a/src/backend/parser/parse_utilcmd.c +++ b/src/backend/parser/parse_utilcmd.c @@ -376,30 +376,22 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, { ListCell *option; DefElem *nameEl = NULL; + DefElem *loggedEl = NULL; Oid snamespaceid; char *snamespace; char *sname; + char seqpersistence; CreateSeqStmt *seqstmt; AlterSeqStmt *altseqstmt; List *attnamelist; - int nameEl_idx = -1; /* Make a copy of this as we may end up modifying it in the code below */ seqoptions = list_copy(seqoptions); /* - * Determine namespace and name to use for the sequence. - * - * First, check if a sequence name was passed in as an option. This is - * used by pg_dump. Else, generate a name. - * - * Although we use ChooseRelationName, it's not guaranteed that the - * selected sequence name won't conflict; given sufficiently long field - * names, two different serial columns in the same table could be assigned - * the same sequence name, and we'd not notice since we aren't creating - * the sequence quite yet. In practice this seems quite unlikely to be a - * problem, especially since few people would need two serial columns in - * one table. + * Check for non-SQL-standard options (not supported within CREATE + * SEQUENCE, because they'd be redundant), and remove them from the + * seqoptions list if found. */ foreach(option, seqoptions) { @@ -410,12 +402,24 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, if (nameEl) errorConflictingDefElem(defel, cxt->pstate); nameEl = defel; - nameEl_idx = foreach_current_index(option); + seqoptions = foreach_delete_current(seqoptions, option); + } + else if (strcmp(defel->defname, "logged") == 0 || + strcmp(defel->defname, "unlogged") == 0) + { + if (loggedEl) + errorConflictingDefElem(defel, cxt->pstate); + loggedEl = defel; + seqoptions = foreach_delete_current(seqoptions, option); } } + /* + * Determine namespace and name to use for the sequence. + */ if (nameEl) { + /* Use specified name */ RangeVar *rv = makeRangeVarFromNameList(castNode(List, nameEl->arg)); snamespace = rv->schemaname; @@ -429,11 +433,20 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, snamespace = get_namespace_name(snamespaceid); } sname = rv->relname; - /* Remove the SEQUENCE NAME item from seqoptions */ - seqoptions = list_delete_nth_cell(seqoptions, nameEl_idx); } else { + /* + * Generate a name. + * + * Although we use ChooseRelationName, it's not guaranteed that the + * selected sequence name won't conflict; given sufficiently long + * field names, two different serial columns in the same table could + * be assigned the same sequence name, and we'd not notice since we + * aren't creating the sequence quite yet. In practice this seems + * quite unlikely to be a problem, especially since few people would + * need two serial columns in one table. + */ if (cxt->rel) snamespaceid = RelationGetNamespace(cxt->rel); else @@ -454,6 +467,30 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, cxt->stmtType, sname, cxt->relation->relname, column->colname))); + /* + * Determine the persistence of the sequence. By default we copy the + * persistence of the table, but if LOGGED or UNLOGGED was specified, use + * that (as long as the table isn't TEMP). + * + * For CREATE TABLE, we get the persistence from cxt->relation, which + * comes from the CreateStmt in progress. For ALTER TABLE, the parser + * won't set cxt->relation->relpersistence, but we have cxt->rel as the + * existing table, so we copy the persistence from there. + */ + seqpersistence = cxt->rel ? cxt->rel->rd_rel->relpersistence : cxt->relation->relpersistence; + if (loggedEl) + { + if (seqpersistence == RELPERSISTENCE_TEMP) + ereport(ERROR, + (errcode(ERRCODE_INVALID_TABLE_DEFINITION), + errmsg("cannot set logged status of a temporary sequence"), + parser_errposition(cxt->pstate, loggedEl->location))); + else if (strcmp(loggedEl->defname, "logged") == 0) + seqpersistence = RELPERSISTENCE_PERMANENT; + else + seqpersistence = RELPERSISTENCE_UNLOGGED; + } + /* * Build a CREATE SEQUENCE command to create the sequence object, and add * it to the list of things to be done before this CREATE/ALTER TABLE. @@ -461,16 +498,7 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, seqstmt = makeNode(CreateSeqStmt); seqstmt->for_identity = for_identity; seqstmt->sequence = makeRangeVar(snamespace, sname, -1); - - /* - * Copy the persistence of the table. For CREATE TABLE, we get the - * persistence from cxt->relation, which comes from the CreateStmt in - * progress. For ALTER TABLE, the parser won't set - * cxt->relation->relpersistence, but we have cxt->rel as the existing - * table, so we copy the persistence from there. - */ - seqstmt->sequence->relpersistence = cxt->rel ? cxt->rel->rd_rel->relpersistence : cxt->relation->relpersistence; - + seqstmt->sequence->relpersistence = seqpersistence; seqstmt->options = seqoptions; /* diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l index 2a32db31d78..86a63c0a383 100644 --- a/src/backend/parser/scan.l +++ b/src/backend/parser/scan.l @@ -417,12 +417,12 @@ decimalfail {digit}+\.\. real ({integer}|{decimal})[Ee][-+]?{digit}+ realfail ({integer}|{decimal})[Ee][-+] -integer_junk {integer}{ident_start} -decimal_junk {decimal}{ident_start} -real_junk {real}{ident_start} +integer_junk {integer}{identifier} +decimal_junk {decimal}{identifier} +real_junk {real}{identifier} param \${integer} -param_junk \${integer}{ident_start} +param_junk \${integer}{identifier} other . diff --git a/src/backend/partitioning/partdesc.c b/src/backend/partitioning/partdesc.c index 0b805d193b6..91d1e83ea2b 100644 --- a/src/backend/partitioning/partdesc.c +++ b/src/backend/partitioning/partdesc.c @@ -210,6 +210,10 @@ RelationBuildPartitionDesc(Relation rel, bool omit_detached) * shared queue. We solve this problem by reading pg_class directly * for the desired tuple. * + * If the partition recently detached is also dropped, we get no tuple + * from the scan. In that case, we also retry, and next time through + * here, we don't see that partition anymore. + * * The other problem is that DETACH CONCURRENTLY is in the process of * removing a partition, which happens in two steps: first it marks it * as "detach pending", commits, then unsets relpartbound. If @@ -224,8 +228,6 @@ RelationBuildPartitionDesc(Relation rel, bool omit_detached) Relation pg_class; SysScanDesc scan; ScanKeyData key[1]; - Datum datum; - bool isnull; pg_class = table_open(RelationRelationId, AccessShareLock); ScanKeyInit(&key[0], @@ -234,17 +236,29 @@ RelationBuildPartitionDesc(Relation rel, bool omit_detached) ObjectIdGetDatum(inhrelid)); scan = systable_beginscan(pg_class, ClassOidIndexId, true, NULL, 1, key); + + /* + * We could get one tuple from the scan (the normal case), or zero + * tuples if the table has been dropped meanwhile. + */ tuple = systable_getnext(scan); - datum = heap_getattr(tuple, Anum_pg_class_relpartbound, - RelationGetDescr(pg_class), &isnull); - if (!isnull) - boundspec = stringToNode(TextDatumGetCString(datum)); + if (HeapTupleIsValid(tuple)) + { + Datum datum; + bool isnull; + + datum = heap_getattr(tuple, Anum_pg_class_relpartbound, + RelationGetDescr(pg_class), &isnull); + if (!isnull) + boundspec = stringToNode(TextDatumGetCString(datum)); + } systable_endscan(scan); table_close(pg_class, AccessShareLock); /* - * If we still don't get a relpartbound value, then it must be - * because of DETACH CONCURRENTLY. Restart from the top, as + * If we still don't get a relpartbound value (either because + * boundspec is null or because there was no tuple), then it must + * be because of DETACH CONCURRENTLY. Restart from the top, as * explained above. We only do this once, for two reasons: first, * only one DETACH CONCURRENTLY session could affect us at a time, * since each of them would have to wait for the snapshot under diff --git a/src/backend/po/de.po b/src/backend/po/de.po index 88538db854d..5511b654bc4 100644 --- a/src/backend/po/de.po +++ b/src/backend/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-01 23:27+0000\n" +"POT-Creation-Date: 2024-11-08 07:26+0000\n" "PO-Revision-Date: 2023-11-08 21:53+0100\n" "Last-Translator: Peter Eisentraut \n" "Language-Team: German \n" @@ -72,24 +72,24 @@ msgstr "konnte Datei »%s« nicht zum Lesen öffnen: %m" #: ../common/controldata_utils.c:94 ../common/controldata_utils.c:96 #: access/transam/timeline.c:143 access/transam/timeline.c:362 -#: access/transam/twophase.c:1349 access/transam/xlog.c:3209 -#: access/transam/xlog.c:4024 access/transam/xlogrecovery.c:1223 +#: access/transam/twophase.c:1349 access/transam/xlog.c:3210 +#: access/transam/xlog.c:4025 access/transam/xlogrecovery.c:1223 #: access/transam/xlogrecovery.c:1315 access/transam/xlogrecovery.c:1352 -#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1848 +#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1838 #: commands/extension.c:3411 libpq/hba.c:505 replication/logical/origin.c:729 -#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4958 +#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4963 #: replication/logical/snapbuild.c:1879 replication/logical/snapbuild.c:1921 #: replication/logical/snapbuild.c:1948 replication/slot.c:1807 #: replication/slot.c:1848 replication/walsender.c:658 #: storage/file/buffile.c:463 storage/file/copydir.c:195 -#: utils/adt/genfile.c:197 utils/adt/misc.c:863 utils/cache/relmapper.c:816 +#: utils/adt/genfile.c:197 utils/adt/misc.c:856 utils/cache/relmapper.c:816 #, c-format msgid "could not read file \"%s\": %m" msgstr "konnte Datei »%s« nicht lesen: %m" #: ../common/controldata_utils.c:102 ../common/controldata_utils.c:105 -#: access/transam/xlog.c:3214 access/transam/xlog.c:4029 -#: backup/basebackup.c:1852 replication/logical/origin.c:734 +#: access/transam/xlog.c:3215 access/transam/xlog.c:4030 +#: backup/basebackup.c:1842 replication/logical/origin.c:734 #: replication/logical/origin.c:773 replication/logical/snapbuild.c:1884 #: replication/logical/snapbuild.c:1926 replication/logical/snapbuild.c:1953 #: replication/slot.c:1811 replication/slot.c:1852 replication/walsender.c:663 @@ -103,17 +103,17 @@ msgstr "konnte Datei »%s« nicht lesen: %d von %zu gelesen" #: access/heap/rewriteheap.c:1178 access/heap/rewriteheap.c:1281 #: access/transam/timeline.c:392 access/transam/timeline.c:438 #: access/transam/timeline.c:516 access/transam/twophase.c:1361 -#: access/transam/twophase.c:1773 access/transam/xlog.c:3056 -#: access/transam/xlog.c:3249 access/transam/xlog.c:3254 -#: access/transam/xlog.c:3392 access/transam/xlog.c:3994 -#: access/transam/xlog.c:4740 commands/copyfrom.c:1585 commands/copyto.c:327 +#: access/transam/twophase.c:1780 access/transam/xlog.c:3057 +#: access/transam/xlog.c:3250 access/transam/xlog.c:3255 +#: access/transam/xlog.c:3393 access/transam/xlog.c:3995 +#: access/transam/xlog.c:4741 commands/copyfrom.c:1585 commands/copyto.c:327 #: libpq/be-fsstubs.c:455 libpq/be-fsstubs.c:525 #: replication/logical/origin.c:667 replication/logical/origin.c:806 -#: replication/logical/reorderbuffer.c:5016 +#: replication/logical/reorderbuffer.c:5021 #: replication/logical/snapbuild.c:1788 replication/logical/snapbuild.c:1961 #: replication/slot.c:1698 replication/slot.c:1859 replication/walsender.c:673 #: storage/file/copydir.c:218 storage/file/copydir.c:223 storage/file/fd.c:745 -#: storage/file/fd.c:3643 storage/file/fd.c:3749 utils/cache/relmapper.c:831 +#: storage/file/fd.c:3638 storage/file/fd.c:3744 utils/cache/relmapper.c:831 #: utils/cache/relmapper.c:968 #, c-format msgid "could not close file \"%s\": %m" @@ -138,33 +138,33 @@ msgstr "" "wäre inkompatibel mit diesem Datenverzeichnis." #: ../common/controldata_utils.c:219 ../common/controldata_utils.c:224 -#: ../common/file_utils.c:232 ../common/file_utils.c:291 -#: ../common/file_utils.c:365 access/heap/rewriteheap.c:1264 +#: ../common/file_utils.c:227 ../common/file_utils.c:286 +#: ../common/file_utils.c:360 access/heap/rewriteheap.c:1264 #: access/transam/timeline.c:111 access/transam/timeline.c:251 #: access/transam/timeline.c:348 access/transam/twophase.c:1305 -#: access/transam/xlog.c:2943 access/transam/xlog.c:3125 -#: access/transam/xlog.c:3164 access/transam/xlog.c:3359 -#: access/transam/xlog.c:4014 access/transam/xlogrecovery.c:4243 +#: access/transam/xlog.c:2944 access/transam/xlog.c:3126 +#: access/transam/xlog.c:3165 access/transam/xlog.c:3360 +#: access/transam/xlog.c:4015 access/transam/xlogrecovery.c:4243 #: access/transam/xlogrecovery.c:4346 access/transam/xlogutils.c:852 -#: backup/basebackup.c:522 backup/basebackup.c:1524 postmaster/syslogger.c:1560 -#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3611 -#: replication/logical/reorderbuffer.c:4162 -#: replication/logical/reorderbuffer.c:4938 +#: backup/basebackup.c:522 backup/basebackup.c:1518 postmaster/syslogger.c:1560 +#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3616 +#: replication/logical/reorderbuffer.c:4167 +#: replication/logical/reorderbuffer.c:4943 #: replication/logical/snapbuild.c:1743 replication/logical/snapbuild.c:1850 #: replication/slot.c:1779 replication/walsender.c:631 #: replication/walsender.c:2722 storage/file/copydir.c:161 -#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3630 -#: storage/file/fd.c:3720 storage/smgr/md.c:541 utils/cache/relmapper.c:795 +#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3625 +#: storage/file/fd.c:3715 storage/smgr/md.c:541 utils/cache/relmapper.c:795 #: utils/cache/relmapper.c:912 utils/error/elog.c:1953 #: utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 -#: utils/init/miscinit.c:1585 utils/misc/guc.c:8998 utils/misc/guc.c:9047 +#: utils/init/miscinit.c:1585 utils/misc/guc.c:9016 utils/misc/guc.c:9065 #, c-format msgid "could not open file \"%s\": %m" msgstr "konnte Datei »%s« nicht öffnen: %m" #: ../common/controldata_utils.c:240 ../common/controldata_utils.c:243 -#: access/transam/twophase.c:1746 access/transam/twophase.c:1755 -#: access/transam/xlog.c:8685 access/transam/xlogfuncs.c:600 +#: access/transam/twophase.c:1753 access/transam/twophase.c:1762 +#: access/transam/xlog.c:8710 access/transam/xlogfuncs.c:600 #: backup/basebackup_server.c:173 backup/basebackup_server.c:266 #: postmaster/postmaster.c:5633 postmaster/syslogger.c:1571 #: postmaster/syslogger.c:1584 postmaster/syslogger.c:1597 @@ -174,17 +174,17 @@ msgid "could not write file \"%s\": %m" msgstr "konnte Datei »%s« nicht schreiben: %m" #: ../common/controldata_utils.c:257 ../common/controldata_utils.c:262 -#: ../common/file_utils.c:303 ../common/file_utils.c:373 +#: ../common/file_utils.c:298 ../common/file_utils.c:368 #: access/heap/rewriteheap.c:960 access/heap/rewriteheap.c:1172 #: access/heap/rewriteheap.c:1275 access/transam/timeline.c:432 -#: access/transam/timeline.c:510 access/transam/twophase.c:1767 -#: access/transam/xlog.c:3049 access/transam/xlog.c:3243 -#: access/transam/xlog.c:3987 access/transam/xlog.c:7988 -#: access/transam/xlog.c:8031 backup/basebackup_server.c:207 +#: access/transam/timeline.c:510 access/transam/twophase.c:1774 +#: access/transam/xlog.c:3050 access/transam/xlog.c:3244 +#: access/transam/xlog.c:3988 access/transam/xlog.c:8013 +#: access/transam/xlog.c:8056 backup/basebackup_server.c:207 #: commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 #: replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 -#: storage/file/fd.c:3741 storage/smgr/md.c:992 storage/smgr/md.c:1033 -#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8767 +#: storage/file/fd.c:3736 storage/smgr/md.c:992 storage/smgr/md.c:1033 +#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8785 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "konnte Datei »%s« nicht fsyncen: %m" @@ -212,8 +212,8 @@ msgstr "konnte Datei »%s« nicht fsyncen: %m" #: utils/adt/pg_locale.c:617 utils/adt/regexp.c:224 utils/fmgr/dfmgr.c:229 #: utils/hash/dynahash.c:513 utils/hash/dynahash.c:613 #: utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 -#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5192 -#: utils/misc/guc.c:5208 utils/misc/guc.c:5221 utils/misc/guc.c:8745 +#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5204 +#: utils/misc/guc.c:5220 utils/misc/guc.c:5233 utils/misc/guc.c:8763 #: utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 #: utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 #: utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 @@ -265,8 +265,8 @@ msgstr "konnte kein »%s« zum Ausführen finden" msgid "could not change directory to \"%s\": %m" msgstr "konnte nicht in Verzeichnis »%s« wechseln: %m" -#: ../common/exec.c:299 access/transam/xlog.c:8334 backup/basebackup.c:1344 -#: utils/adt/misc.c:342 +#: ../common/exec.c:299 access/transam/xlog.c:8359 backup/basebackup.c:1338 +#: utils/adt/misc.c:335 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "konnte symbolische Verknüpfung »%s« nicht lesen: %m" @@ -292,22 +292,22 @@ msgstr "Speicher aufgebraucht\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "kann NULL-Zeiger nicht kopieren (interner Fehler)\n" -#: ../common/file_utils.c:87 ../common/file_utils.c:451 -#: ../common/file_utils.c:455 access/transam/twophase.c:1317 +#: ../common/file_utils.c:86 ../common/file_utils.c:446 +#: ../common/file_utils.c:450 access/transam/twophase.c:1317 #: access/transam/xlogarchive.c:111 access/transam/xlogarchive.c:237 #: backup/basebackup.c:338 backup/basebackup.c:528 backup/basebackup.c:599 -#: commands/copyfrom.c:1535 commands/copyto.c:725 commands/extension.c:3390 -#: commands/tablespace.c:826 commands/tablespace.c:917 guc-file.l:1061 +#: commands/copyfrom.c:1535 commands/copyto.c:729 commands/extension.c:3390 +#: commands/tablespace.c:825 commands/tablespace.c:914 guc-file.l:1061 #: postmaster/pgarch.c:597 replication/logical/snapbuild.c:1660 #: storage/file/copydir.c:68 storage/file/copydir.c:107 storage/file/fd.c:1951 -#: storage/file/fd.c:2037 storage/file/fd.c:3243 storage/file/fd.c:3450 +#: storage/file/fd.c:2037 storage/file/fd.c:3243 storage/file/fd.c:3449 #: utils/adt/dbsize.c:92 utils/adt/dbsize.c:244 utils/adt/dbsize.c:324 -#: utils/adt/genfile.c:413 utils/adt/genfile.c:588 utils/adt/misc.c:327 +#: utils/adt/genfile.c:413 utils/adt/genfile.c:588 utils/adt/misc.c:321 #, c-format msgid "could not stat file \"%s\": %m" msgstr "konnte »stat« für Datei »%s« nicht ausführen: %m" -#: ../common/file_utils.c:166 ../common/pgfnames.c:48 commands/tablespace.c:749 +#: ../common/file_utils.c:161 ../common/pgfnames.c:48 commands/tablespace.c:749 #: commands/tablespace.c:759 postmaster/postmaster.c:1579 #: storage/file/fd.c:2812 storage/file/reinit.c:126 utils/adt/misc.c:235 #: utils/misc/tzparser.c:338 @@ -315,12 +315,12 @@ msgstr "konnte »stat« für Datei »%s« nicht ausführen: %m" msgid "could not open directory \"%s\": %m" msgstr "konnte Verzeichnis »%s« nicht öffnen: %m" -#: ../common/file_utils.c:200 ../common/pgfnames.c:69 storage/file/fd.c:2824 +#: ../common/file_utils.c:195 ../common/pgfnames.c:69 storage/file/fd.c:2824 #, c-format msgid "could not read directory \"%s\": %m" msgstr "konnte Verzeichnis »%s« nicht lesen: %m" -#: ../common/file_utils.c:383 access/transam/xlogarchive.c:426 +#: ../common/file_utils.c:378 access/transam/xlogarchive.c:426 #: postmaster/syslogger.c:1608 replication/logical/snapbuild.c:1800 #: replication/slot.c:721 replication/slot.c:1570 replication/slot.c:1712 #: storage/file/fd.c:755 storage/file/fd.c:853 utils/time/snapmgr.c:1282 @@ -582,22 +582,22 @@ msgstr "konnte Kodierung für Codeset »%s« nicht bestimmen" msgid "could not determine encoding for locale \"%s\": codeset is \"%s\"" msgstr "konnte Kodierung für Locale »%s« nicht bestimmen: Codeset ist »%s«" -#: ../port/dirmod.c:218 +#: ../port/dirmod.c:244 #, c-format msgid "could not set junction for \"%s\": %s" msgstr "konnte Junction für »%s« nicht erzeugen: %s" -#: ../port/dirmod.c:221 +#: ../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "konnte Junction für »%s« nicht erzeugen: %s\n" -#: ../port/dirmod.c:295 +#: ../port/dirmod.c:321 #, c-format msgid "could not get junction for \"%s\": %s" msgstr "konnte Junction für »%s« nicht ermitteln: %s" -#: ../port/dirmod.c:298 +#: ../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "konnte Junction für »%s« nicht ermitteln: %s\n" @@ -695,7 +695,7 @@ msgid "could not open parent table of index \"%s\"" msgstr "konnte Basistabelle von Index »%s« nicht öffnen" #: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 -#: parser/parse_utilcmd.c:2303 +#: parser/parse_utilcmd.c:2331 #, c-format msgid "index \"%s\" is not valid" msgstr "Index »%s« ist nicht gültig" @@ -827,7 +827,7 @@ msgid "index row requires %zu bytes, maximum size is %zu" msgstr "Indexzeile benötigt %zu Bytes, Maximalgröße ist %zu" #: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 -#: tcop/postgres.c:1921 +#: tcop/postgres.c:1937 #, c-format msgid "unsupported format code: %d" msgstr "nicht unterstützter Formatcode: %d" @@ -855,7 +855,7 @@ msgstr "RESET darf keinen Parameterwert enthalten" msgid "unrecognized parameter namespace \"%s\"" msgstr "unbekannter Parameter-Namensraum »%s«" -#: access/common/reloptions.c:1303 utils/misc/guc.c:13002 +#: access/common/reloptions.c:1303 utils/misc/guc.c:13020 #, c-format msgid "tables declared WITH OIDS are not supported" msgstr "Tabellen mit WITH OIDS werden nicht unterstützt" @@ -1049,7 +1049,7 @@ msgstr "konnte die für das Zeichenketten-Hashing zu verwendende Sortierfolge ni #: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 #: catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 -#: commands/indexcmds.c:1955 commands/tablecmds.c:17596 commands/view.c:86 +#: commands/indexcmds.c:1955 commands/tablecmds.c:17734 commands/view.c:86 #: regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 #: utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 #: utils/adt/like_support.c:1025 utils/adt/varchar.c:733 @@ -1104,37 +1104,43 @@ msgstr "in Operatorfamilie »%s« für Zugriffsmethode %s fehlt Support-Funktion msgid "operator family \"%s\" of access method %s is missing cross-type operator(s)" msgstr "in Operatorfamilie »%s« für Zugriffsmethode %s fehlen typübergreifende Operatoren" -#: access/heap/heapam.c:2226 +#: access/heap/heapam.c:2236 #, c-format msgid "cannot insert tuples in a parallel worker" msgstr "in einem parallelen Arbeitsprozess können keine Tupel eingefügt werden" -#: access/heap/heapam.c:2697 +#: access/heap/heapam.c:2707 #, c-format msgid "cannot delete tuples during a parallel operation" msgstr "während einer parallelen Operation können keine Tupel gelöscht werden" -#: access/heap/heapam.c:2743 +#: access/heap/heapam.c:2753 #, c-format msgid "attempted to delete invisible tuple" msgstr "Versuch ein unsichtbares Tupel zu löschen" -#: access/heap/heapam.c:3188 access/heap/heapam.c:6032 +#: access/heap/heapam.c:3198 access/heap/heapam.c:6405 access/index/genam.c:819 #, c-format msgid "cannot update tuples during a parallel operation" msgstr "während einer parallelen Operation können keine Tupel aktualisiert werden" -#: access/heap/heapam.c:3312 +#: access/heap/heapam.c:3326 #, c-format msgid "attempted to update invisible tuple" msgstr "Versuch ein unsichtbares Tupel zu aktualisieren" -#: access/heap/heapam.c:4676 access/heap/heapam.c:4714 -#: access/heap/heapam.c:4979 access/heap/heapam_handler.c:456 +#: access/heap/heapam.c:4812 access/heap/heapam.c:4850 +#: access/heap/heapam.c:5115 access/heap/heapam_handler.c:456 #, c-format msgid "could not obtain lock on row in relation \"%s\"" msgstr "konnte Sperre für Zeile in Relation »%s« nicht setzen" +#: access/heap/heapam.c:6218 commands/trigger.c:3441 +#: executor/nodeModifyTable.c:2362 executor/nodeModifyTable.c:2453 +#, c-format +msgid "tuple to be updated was already modified by an operation triggered by the current command" +msgstr "das zu aktualisierende Tupel wurde schon durch eine vom aktuellen Befehl ausgelöste Operation verändert" + #: access/heap/heapam_handler.c:401 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update" @@ -1152,8 +1158,8 @@ msgstr "konnte nicht in Datei »%s« schreiben, %d von %d geschrieben: %m" #: access/heap/rewriteheap.c:1013 access/heap/rewriteheap.c:1131 #: access/transam/timeline.c:329 access/transam/timeline.c:485 -#: access/transam/xlog.c:2965 access/transam/xlog.c:3178 -#: access/transam/xlog.c:3966 access/transam/xlog.c:8668 +#: access/transam/xlog.c:2966 access/transam/xlog.c:3179 +#: access/transam/xlog.c:3967 access/transam/xlog.c:8693 #: access/transam/xlogfuncs.c:594 backup/basebackup_server.c:149 #: backup/basebackup_server.c:242 commands/dbcommands.c:494 #: postmaster/postmaster.c:4607 postmaster/postmaster.c:5620 @@ -1170,24 +1176,24 @@ msgstr "konnte Datei »%s« nicht auf %u kürzen: %m" #: access/heap/rewriteheap.c:1159 access/transam/timeline.c:384 #: access/transam/timeline.c:424 access/transam/timeline.c:502 -#: access/transam/xlog.c:3037 access/transam/xlog.c:3234 -#: access/transam/xlog.c:3978 commands/dbcommands.c:506 +#: access/transam/xlog.c:3038 access/transam/xlog.c:3235 +#: access/transam/xlog.c:3979 commands/dbcommands.c:506 #: postmaster/postmaster.c:4617 postmaster/postmaster.c:4627 #: replication/logical/origin.c:599 replication/logical/origin.c:641 #: replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 #: replication/slot.c:1666 storage/file/buffile.c:537 #: storage/file/copydir.c:207 utils/init/miscinit.c:1449 -#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8728 -#: utils/misc/guc.c:8759 utils/misc/guc.c:10757 utils/misc/guc.c:10771 +#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8746 +#: utils/misc/guc.c:8777 utils/misc/guc.c:10775 utils/misc/guc.c:10789 #: utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 #, c-format msgid "could not write to file \"%s\": %m" msgstr "konnte nicht in Datei »%s« schreiben: %m" -#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1706 +#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1713 #: access/transam/xlogarchive.c:119 access/transam/xlogarchive.c:436 #: postmaster/postmaster.c:1157 postmaster/syslogger.c:1537 -#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4431 +#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4436 #: replication/logical/snapbuild.c:1702 replication/logical/snapbuild.c:2118 #: replication/slot.c:1763 storage/file/fd.c:795 storage/file/fd.c:3263 #: storage/file/fd.c:3325 storage/file/reinit.c:262 storage/ipc/dsm.c:317 @@ -1417,19 +1423,19 @@ msgstr "Zugriffsmethode »%s« ist nicht vom Typ %s" msgid "index access method \"%s\" does not have a handler" msgstr "Indexzugriffsmethode »%s« hat keinen Handler" -#: access/index/genam.c:489 +#: access/index/genam.c:490 #, c-format msgid "transaction aborted during system catalog scan" msgstr "Transaktion während eines Systemkatalog-Scans abgebrochen" -#: access/index/genam.c:657 access/index/indexam.c:87 +#: access/index/genam.c:658 access/index/indexam.c:87 #, c-format msgid "cannot access index \"%s\" while it is being reindexed" msgstr "auf Index »%s« kann nicht zugegriffen werden, während er reindiziert wird" #: access/index/indexam.c:208 catalog/objectaddress.c:1376 #: commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 -#: commands/tablecmds.c:17282 commands/tablecmds.c:19076 +#: commands/tablecmds.c:17420 commands/tablecmds.c:19270 #, c-format msgid "\"%s\" is not an index" msgstr "»%s« ist kein Index" @@ -1455,7 +1461,7 @@ msgid "This may be because of a non-immutable index expression." msgstr "Das kann daran liegen, dass der Indexausdruck nicht »immutable« ist." #: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 -#: parser/parse_utilcmd.c:2349 +#: parser/parse_utilcmd.c:2377 #, c-format msgid "index \"%s\" is not a btree" msgstr "Index »%s« ist kein B-Tree" @@ -1520,14 +1526,14 @@ msgid "operator family \"%s\" of access method %s is missing support function %d msgstr "in Operatorfamilie »%s« für Zugriffsmethode %s fehlt Support-Funktion %d für Typ %s" #: access/table/table.c:49 access/table/table.c:83 access/table/table.c:112 -#: access/table/table.c:145 catalog/aclchk.c:1835 +#: access/table/table.c:145 catalog/aclchk.c:1836 #, c-format msgid "\"%s\" is an index" msgstr "»%s« ist ein Index" #: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 -#: access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:13976 -#: commands/tablecmds.c:17291 +#: access/table/table.c:150 catalog/aclchk.c:1843 commands/tablecmds.c:14106 +#: commands/tablecmds.c:17429 #, c-format msgid "\"%s\" is a composite type" msgstr "»%s« ist ein zusammengesetzter Typ" @@ -1542,7 +1548,7 @@ msgstr "tid (%u, %u) ist nicht gültig für Relation »%s«" msgid "%s cannot be empty." msgstr "%s kann nicht leer sein." -#: access/table/tableamapi.c:122 utils/misc/guc.c:12926 +#: access/table/tableamapi.c:122 utils/misc/guc.c:12944 #, c-format msgid "%s is too long (maximum %d characters)." msgstr "%s ist zu lang (maximal %d Zeichen)." @@ -1899,12 +1905,12 @@ msgstr "Setzen Sie max_prepared_transactions auf einen Wert höher als null." msgid "transaction identifier \"%s\" is already in use" msgstr "Transaktionsbezeichner »%s« wird bereits verwendet" -#: access/transam/twophase.c:422 access/transam/twophase.c:2518 +#: access/transam/twophase.c:422 access/transam/twophase.c:2525 #, c-format msgid "maximum number of prepared transactions reached" msgstr "maximale Anzahl vorbereiteter Transaktionen erreicht" -#: access/transam/twophase.c:423 access/transam/twophase.c:2519 +#: access/transam/twophase.c:423 access/transam/twophase.c:2526 #, c-format msgid "Increase max_prepared_transactions (currently %d)." msgstr "Erhöhen Sie max_prepared_transactions (aktuell %d)." @@ -1997,64 +2003,64 @@ msgstr "konnte Zweiphasen-Status nicht aus dem WAL bei %X/%X lesen" msgid "expected two-phase state data is not present in WAL at %X/%X" msgstr "erwartete Zweiphasen-Status-Daten sind nicht im WAL bei %X/%X vorhanden" -#: access/transam/twophase.c:1734 +#: access/transam/twophase.c:1741 #, c-format msgid "could not recreate file \"%s\": %m" msgstr "konnte Datei »%s« nicht neu erzeugen: %m" -#: access/transam/twophase.c:1861 +#: access/transam/twophase.c:1868 #, c-format msgid "%u two-phase state file was written for a long-running prepared transaction" msgid_plural "%u two-phase state files were written for long-running prepared transactions" msgstr[0] "%u Zweiphasen-Statusdatei wurde für eine lange laufende vorbereitete Transaktion geschrieben" msgstr[1] "%u Zweiphasen-Statusdateien wurden für lange laufende vorbereitete Transaktionen geschrieben" -#: access/transam/twophase.c:2094 +#: access/transam/twophase.c:2101 #, c-format msgid "recovering prepared transaction %u from shared memory" msgstr "Wiederherstellung der vorbereiteten Transaktion %u aus dem Shared Memory" -#: access/transam/twophase.c:2187 +#: access/transam/twophase.c:2194 #, c-format msgid "removing stale two-phase state file for transaction %u" msgstr "entferne abgelaufene Zweiphasen-Statusdatei für Transaktion %u" -#: access/transam/twophase.c:2194 +#: access/transam/twophase.c:2201 #, c-format msgid "removing stale two-phase state from memory for transaction %u" msgstr "entferne abgelaufenen Zweiphasen-Status aus dem Speicher für Transaktion %u" -#: access/transam/twophase.c:2207 +#: access/transam/twophase.c:2214 #, c-format msgid "removing future two-phase state file for transaction %u" msgstr "entferne zukünftige Zweiphasen-Statusdatei für Transaktion %u" -#: access/transam/twophase.c:2214 +#: access/transam/twophase.c:2221 #, c-format msgid "removing future two-phase state from memory for transaction %u" msgstr "entferne zukünftigen Zweiphasen-Status aus dem Speicher für Transaktion %u" -#: access/transam/twophase.c:2239 +#: access/transam/twophase.c:2246 #, c-format msgid "corrupted two-phase state file for transaction %u" msgstr "verfälschte Zweiphasen-Statusdatei für Transaktion %u" -#: access/transam/twophase.c:2244 +#: access/transam/twophase.c:2251 #, c-format msgid "corrupted two-phase state in memory for transaction %u" msgstr "verfälschter Zweiphasen-Status im Speicher für Transaktion %u" -#: access/transam/twophase.c:2501 +#: access/transam/twophase.c:2508 #, c-format msgid "could not recover two-phase state file for transaction %u" msgstr "konnte Zweiphasen-Statusdatei für Transaktion %u nicht wiederherstellen" -#: access/transam/twophase.c:2503 +#: access/transam/twophase.c:2510 #, c-format msgid "Two-phase state file has been found in WAL record %X/%X, but this transaction has already been restored from disk." msgstr "Zweiphasen-Statusdatei wurde in WAL-Eintrag %X/%X gefunden, aber diese Transaktion wurde schon von der Festplatte wiederhergestellt." -#: access/transam/twophase.c:2511 jit/jit.c:205 utils/fmgr/dfmgr.c:209 +#: access/transam/twophase.c:2518 jit/jit.c:205 utils/fmgr/dfmgr.c:209 #: utils/fmgr/dfmgr.c:415 #, c-format msgid "could not access file \"%s\": %m" @@ -2204,391 +2210,391 @@ msgstr "während einer parallelen Operation können keine Subtransaktionen commi msgid "cannot have more than 2^32-1 subtransactions in a transaction" msgstr "kann nicht mehr als 2^32-1 Subtransaktionen in einer Transaktion haben" -#: access/transam/xlog.c:1465 +#: access/transam/xlog.c:1466 #, c-format msgid "request to flush past end of generated WAL; request %X/%X, current position %X/%X" msgstr "Flush hinter das Ende des erzeugten WAL angefordert; Anforderung %X/%X, aktuelle Position %X/%X" -#: access/transam/xlog.c:2226 +#: access/transam/xlog.c:2227 #, c-format msgid "could not write to log file %s at offset %u, length %zu: %m" msgstr "konnte nicht in Logdatei %s bei Position %u, Länge %zu schreiben: %m" -#: access/transam/xlog.c:3473 access/transam/xlogutils.c:847 +#: access/transam/xlog.c:3474 access/transam/xlogutils.c:847 #: replication/walsender.c:2716 #, c-format msgid "requested WAL segment %s has already been removed" msgstr "das angeforderte WAL-Segment %s wurde schon entfernt" -#: access/transam/xlog.c:3758 +#: access/transam/xlog.c:3759 #, c-format msgid "could not rename file \"%s\": %m" msgstr "konnte Datei »%s« nicht umbenennen: %m" -#: access/transam/xlog.c:3800 access/transam/xlog.c:3810 +#: access/transam/xlog.c:3801 access/transam/xlog.c:3811 #, c-format msgid "required WAL directory \"%s\" does not exist" msgstr "benötigtes WAL-Verzeichnis »%s« existiert nicht" -#: access/transam/xlog.c:3816 +#: access/transam/xlog.c:3817 #, c-format msgid "creating missing WAL directory \"%s\"" msgstr "erzeuge fehlendes WAL-Verzeichnis »%s«" -#: access/transam/xlog.c:3819 commands/dbcommands.c:3115 +#: access/transam/xlog.c:3820 commands/dbcommands.c:3135 #, c-format msgid "could not create missing directory \"%s\": %m" msgstr "konnte fehlendes Verzeichnis »%s« nicht erzeugen: %m" -#: access/transam/xlog.c:3886 +#: access/transam/xlog.c:3887 #, c-format msgid "could not generate secret authorization token" msgstr "konnte geheimes Autorisierungstoken nicht erzeugen" -#: access/transam/xlog.c:4045 access/transam/xlog.c:4054 -#: access/transam/xlog.c:4078 access/transam/xlog.c:4085 -#: access/transam/xlog.c:4092 access/transam/xlog.c:4097 -#: access/transam/xlog.c:4104 access/transam/xlog.c:4111 -#: access/transam/xlog.c:4118 access/transam/xlog.c:4125 -#: access/transam/xlog.c:4132 access/transam/xlog.c:4139 -#: access/transam/xlog.c:4148 access/transam/xlog.c:4155 +#: access/transam/xlog.c:4046 access/transam/xlog.c:4055 +#: access/transam/xlog.c:4079 access/transam/xlog.c:4086 +#: access/transam/xlog.c:4093 access/transam/xlog.c:4098 +#: access/transam/xlog.c:4105 access/transam/xlog.c:4112 +#: access/transam/xlog.c:4119 access/transam/xlog.c:4126 +#: access/transam/xlog.c:4133 access/transam/xlog.c:4140 +#: access/transam/xlog.c:4149 access/transam/xlog.c:4156 #: utils/init/miscinit.c:1606 #, c-format msgid "database files are incompatible with server" msgstr "Datenbankdateien sind inkompatibel mit Server" -#: access/transam/xlog.c:4046 +#: access/transam/xlog.c:4047 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d (0x%08x), but the server was compiled with PG_CONTROL_VERSION %d (0x%08x)." msgstr "Der Datenbank-Cluster wurde mit PG_CONTROL_VERSION %d (0x%08x) initialisiert, aber der Server wurde mit PG_CONTROL_VERSION %d (0x%08x) kompiliert." -#: access/transam/xlog.c:4050 +#: access/transam/xlog.c:4051 #, c-format msgid "This could be a problem of mismatched byte ordering. It looks like you need to initdb." msgstr "Das Problem könnte eine falsche Byte-Reihenfolge sein. Es sieht so aus, dass Sie initdb ausführen müssen." -#: access/transam/xlog.c:4055 +#: access/transam/xlog.c:4056 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d, but the server was compiled with PG_CONTROL_VERSION %d." msgstr "Der Datenbank-Cluster wurde mit PG_CONTROL_VERSION %d initialisiert, aber der Server wurde mit PG_CONTROL_VERSION %d kompiliert." -#: access/transam/xlog.c:4058 access/transam/xlog.c:4082 -#: access/transam/xlog.c:4089 access/transam/xlog.c:4094 +#: access/transam/xlog.c:4059 access/transam/xlog.c:4083 +#: access/transam/xlog.c:4090 access/transam/xlog.c:4095 #, c-format msgid "It looks like you need to initdb." msgstr "Es sieht so aus, dass Sie initdb ausführen müssen." -#: access/transam/xlog.c:4069 +#: access/transam/xlog.c:4070 #, c-format msgid "incorrect checksum in control file" msgstr "falsche Prüfsumme in Kontrolldatei" -#: access/transam/xlog.c:4079 +#: access/transam/xlog.c:4080 #, c-format msgid "The database cluster was initialized with CATALOG_VERSION_NO %d, but the server was compiled with CATALOG_VERSION_NO %d." msgstr "Der Datenbank-Cluster wurde mit CATALOG_VERSION_NO %d initialisiert, aber der Server wurde mit CATALOG_VERSION_NO %d kompiliert." -#: access/transam/xlog.c:4086 +#: access/transam/xlog.c:4087 #, c-format msgid "The database cluster was initialized with MAXALIGN %d, but the server was compiled with MAXALIGN %d." msgstr "Der Datenbank-Cluster wurde mit MAXALIGN %d initialisiert, aber der Server wurde mit MAXALIGN %d kompiliert." -#: access/transam/xlog.c:4093 +#: access/transam/xlog.c:4094 #, c-format msgid "The database cluster appears to use a different floating-point number format than the server executable." msgstr "Der Datenbank-Cluster verwendet anscheinend ein anderes Fließkommazahlenformat als das Serverprogramm." -#: access/transam/xlog.c:4098 +#: access/transam/xlog.c:4099 #, c-format msgid "The database cluster was initialized with BLCKSZ %d, but the server was compiled with BLCKSZ %d." msgstr "Der Datenbank-Cluster wurde mit BLCKSZ %d initialisiert, aber der Server wurde mit BLCKSZ %d kompiliert." -#: access/transam/xlog.c:4101 access/transam/xlog.c:4108 -#: access/transam/xlog.c:4115 access/transam/xlog.c:4122 -#: access/transam/xlog.c:4129 access/transam/xlog.c:4136 -#: access/transam/xlog.c:4143 access/transam/xlog.c:4151 -#: access/transam/xlog.c:4158 +#: access/transam/xlog.c:4102 access/transam/xlog.c:4109 +#: access/transam/xlog.c:4116 access/transam/xlog.c:4123 +#: access/transam/xlog.c:4130 access/transam/xlog.c:4137 +#: access/transam/xlog.c:4144 access/transam/xlog.c:4152 +#: access/transam/xlog.c:4159 #, c-format msgid "It looks like you need to recompile or initdb." msgstr "Es sieht so aus, dass Sie neu kompilieren oder initdb ausführen müssen." -#: access/transam/xlog.c:4105 +#: access/transam/xlog.c:4106 #, c-format msgid "The database cluster was initialized with RELSEG_SIZE %d, but the server was compiled with RELSEG_SIZE %d." msgstr "Der Datenbank-Cluster wurde mit RELSEG_SIZE %d initialisiert, aber der Server wurde mit RELSEGSIZE %d kompiliert." -#: access/transam/xlog.c:4112 +#: access/transam/xlog.c:4113 #, c-format msgid "The database cluster was initialized with XLOG_BLCKSZ %d, but the server was compiled with XLOG_BLCKSZ %d." msgstr "Der Datenbank-Cluster wurde mit XLOG_BLCKSZ %d initialisiert, aber der Server wurde mit XLOG_BLCKSZ %d kompiliert." -#: access/transam/xlog.c:4119 +#: access/transam/xlog.c:4120 #, c-format msgid "The database cluster was initialized with NAMEDATALEN %d, but the server was compiled with NAMEDATALEN %d." msgstr "Der Datenbank-Cluster wurde mit NAMEDATALEN %d initialisiert, aber der Server wurde mit NAMEDATALEN %d kompiliert." -#: access/transam/xlog.c:4126 +#: access/transam/xlog.c:4127 #, c-format msgid "The database cluster was initialized with INDEX_MAX_KEYS %d, but the server was compiled with INDEX_MAX_KEYS %d." msgstr "Der Datenbank-Cluster wurde mit INDEX_MAX_KEYS %d initialisiert, aber der Server wurde mit INDEX_MAX_KEYS %d kompiliert." -#: access/transam/xlog.c:4133 +#: access/transam/xlog.c:4134 #, c-format msgid "The database cluster was initialized with TOAST_MAX_CHUNK_SIZE %d, but the server was compiled with TOAST_MAX_CHUNK_SIZE %d." msgstr "Der Datenbank-Cluster wurde mit TOAST_MAX_CHUNK_SIZE %d initialisiert, aber der Server wurde mit TOAST_MAX_CHUNK_SIZE %d kompiliert." -#: access/transam/xlog.c:4140 +#: access/transam/xlog.c:4141 #, c-format msgid "The database cluster was initialized with LOBLKSIZE %d, but the server was compiled with LOBLKSIZE %d." msgstr "Der Datenbank-Cluster wurde mit LOBLKSIZE %d initialisiert, aber der Server wurde mit LOBLKSIZE %d kompiliert." -#: access/transam/xlog.c:4149 +#: access/transam/xlog.c:4150 #, c-format msgid "The database cluster was initialized without USE_FLOAT8_BYVAL but the server was compiled with USE_FLOAT8_BYVAL." msgstr "Der Datenbank-Cluster wurde ohne USE_FLOAT8_BYVAL initialisiert, aber der Server wurde mit USE_FLOAT8_BYVAL kompiliert." -#: access/transam/xlog.c:4156 +#: access/transam/xlog.c:4157 #, c-format msgid "The database cluster was initialized with USE_FLOAT8_BYVAL but the server was compiled without USE_FLOAT8_BYVAL." msgstr "Der Datenbank-Cluster wurde mit USE_FLOAT8_BYVAL initialisiert, aber der Server wurde ohne USE_FLOAT8_BYVAL kompiliert." -#: access/transam/xlog.c:4165 +#: access/transam/xlog.c:4166 #, c-format msgid "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d byte" msgid_plural "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d bytes" msgstr[0] "WAL-Segmentgröße muss eine Zweierpotenz zwischen 1 MB und 1 GB sein, aber die Kontrolldatei gibt %d Byte an" msgstr[1] "WAL-Segmentgröße muss eine Zweierpotenz zwischen 1 MB und 1 GB sein, aber die Kontrolldatei gibt %d Bytes an" -#: access/transam/xlog.c:4177 +#: access/transam/xlog.c:4178 #, c-format msgid "\"min_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "»min_wal_size« muss mindestens zweimal so groß wie »wal_segment_size« sein" -#: access/transam/xlog.c:4181 +#: access/transam/xlog.c:4182 #, c-format msgid "\"max_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "»max_wal_size« muss mindestens zweimal so groß wie »wal_segment_size« sein" -#: access/transam/xlog.c:4622 +#: access/transam/xlog.c:4623 #, c-format msgid "could not write bootstrap write-ahead log file: %m" msgstr "konnte Bootstrap-Write-Ahead-Log-Datei nicht schreiben: %m" -#: access/transam/xlog.c:4630 +#: access/transam/xlog.c:4631 #, c-format msgid "could not fsync bootstrap write-ahead log file: %m" msgstr "konnte Bootstrap-Write-Ahead-Log-Datei nicht fsyncen: %m" -#: access/transam/xlog.c:4636 +#: access/transam/xlog.c:4637 #, c-format msgid "could not close bootstrap write-ahead log file: %m" msgstr "konnte Bootstrap-Write-Ahead-Log-Datei nicht schließen: %m" -#: access/transam/xlog.c:4854 +#: access/transam/xlog.c:4855 #, c-format msgid "WAL was generated with wal_level=minimal, cannot continue recovering" msgstr "WAL wurde mit wal_level=minimal erzeugt, Wiederherstellung kann nicht fortgesetzt werden" -#: access/transam/xlog.c:4855 +#: access/transam/xlog.c:4856 #, c-format msgid "This happens if you temporarily set wal_level=minimal on the server." msgstr "Das passiert, wenn auf dem Server vorübergehend wal_level=minimal gesetzt wurde." -#: access/transam/xlog.c:4856 +#: access/transam/xlog.c:4857 #, c-format msgid "Use a backup taken after setting wal_level to higher than minimal." msgstr "Verwenden Sie ein Backup, das durchgeführt wurde, nachdem wal_level auf höher als minimal gesetzt wurde." -#: access/transam/xlog.c:4920 +#: access/transam/xlog.c:4921 #, c-format msgid "control file contains invalid checkpoint location" msgstr "Kontrolldatei enthält ungültige Checkpoint-Position" -#: access/transam/xlog.c:4931 +#: access/transam/xlog.c:4932 #, c-format msgid "database system was shut down at %s" msgstr "Datenbanksystem wurde am %s heruntergefahren" -#: access/transam/xlog.c:4937 +#: access/transam/xlog.c:4938 #, c-format msgid "database system was shut down in recovery at %s" msgstr "Datenbanksystem wurde während der Wiederherstellung am %s heruntergefahren" -#: access/transam/xlog.c:4943 +#: access/transam/xlog.c:4944 #, c-format msgid "database system shutdown was interrupted; last known up at %s" msgstr "Datenbanksystem wurde beim Herunterfahren unterbrochen; letzte bekannte Aktion am %s" -#: access/transam/xlog.c:4949 +#: access/transam/xlog.c:4950 #, c-format msgid "database system was interrupted while in recovery at %s" msgstr "Datenbanksystem wurde während der Wiederherstellung am %s unterbrochen" -#: access/transam/xlog.c:4951 +#: access/transam/xlog.c:4952 #, c-format msgid "This probably means that some data is corrupted and you will have to use the last backup for recovery." msgstr "Das bedeutet wahrscheinlich, dass einige Daten verfälscht sind und Sie die letzte Datensicherung zur Wiederherstellung verwenden müssen." -#: access/transam/xlog.c:4957 +#: access/transam/xlog.c:4958 #, c-format msgid "database system was interrupted while in recovery at log time %s" msgstr "Datenbanksystem wurde während der Wiederherstellung bei Logzeit %s unterbrochen" -#: access/transam/xlog.c:4959 +#: access/transam/xlog.c:4960 #, c-format msgid "If this has occurred more than once some data might be corrupted and you might need to choose an earlier recovery target." msgstr "Wenn dies mehr als einmal vorgekommen ist, dann sind einige Daten möglicherweise verfälscht und Sie müssen ein früheres Wiederherstellungsziel wählen." -#: access/transam/xlog.c:4965 +#: access/transam/xlog.c:4966 #, c-format msgid "database system was interrupted; last known up at %s" msgstr "Datenbanksystem wurde unterbrochen; letzte bekannte Aktion am %s" -#: access/transam/xlog.c:4971 +#: access/transam/xlog.c:4972 #, c-format msgid "control file contains invalid database cluster state" msgstr "Kontrolldatei enthält ungültigen Datenbankclusterstatus" -#: access/transam/xlog.c:5356 +#: access/transam/xlog.c:5357 #, c-format msgid "WAL ends before end of online backup" msgstr "WAL endet vor dem Ende der Online-Sicherung" -#: access/transam/xlog.c:5357 +#: access/transam/xlog.c:5358 #, c-format msgid "All WAL generated while online backup was taken must be available at recovery." msgstr "Der komplette WAL, der während der Online-Sicherung erzeugt wurde, muss bei der Wiederherstellung verfügbar sein." -#: access/transam/xlog.c:5360 +#: access/transam/xlog.c:5361 #, c-format msgid "WAL ends before consistent recovery point" msgstr "WAL endet vor einem konsistenten Wiederherstellungspunkt" -#: access/transam/xlog.c:5408 +#: access/transam/xlog.c:5409 #, c-format msgid "selected new timeline ID: %u" msgstr "gewählte neue Zeitleisten-ID: %u" -#: access/transam/xlog.c:5441 +#: access/transam/xlog.c:5442 #, c-format msgid "archive recovery complete" msgstr "Wiederherstellung aus Archiv abgeschlossen" -#: access/transam/xlog.c:6047 +#: access/transam/xlog.c:6072 #, c-format msgid "shutting down" msgstr "fahre herunter" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6086 +#: access/transam/xlog.c:6111 #, c-format msgid "restartpoint starting:%s%s%s%s%s%s%s%s" msgstr "Restart-Punkt beginnt:%s%s%s%s%s%s%s%s" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6098 +#: access/transam/xlog.c:6123 #, c-format msgid "checkpoint starting:%s%s%s%s%s%s%s%s" msgstr "Checkpoint beginnt:%s%s%s%s%s%s%s%s" -#: access/transam/xlog.c:6158 +#: access/transam/xlog.c:6183 #, c-format msgid "restartpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "Restart-Punkt komplett: %d Puffer geschrieben (%.1f%%); %d WAL-Datei(en) hinzugefügt, %d entfernt, %d wiederverwendet; Schreiben=%ld,%03d s, Sync=%ld,%03d s, gesamt=%ld,%03d s; sync. Dateien=%d, längste=%ld,%03d s, Durchschnitt=%ld.%03d s; Entfernung=%d kB, Schätzung=%d kB" -#: access/transam/xlog.c:6178 +#: access/transam/xlog.c:6203 #, c-format msgid "checkpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "Checkpoint komplett: %d Puffer geschrieben (%.1f%%); %d WAL-Datei(en) hinzugefügt, %d entfernt, %d wiederverwendet; Schreiben=%ld,%03d s, Sync=%ld,%03d s, gesamt=%ld,%03d s; sync. Dateien=%d, längste=%ld,%03d s, Durchschnitt=%ld.%03d s; Entfernung=%d kB, Schätzung=%d kB" -#: access/transam/xlog.c:6620 +#: access/transam/xlog.c:6645 #, c-format msgid "concurrent write-ahead log activity while database system is shutting down" msgstr "gleichzeitige Write-Ahead-Log-Aktivität während das Datenbanksystem herunterfährt" -#: access/transam/xlog.c:7177 +#: access/transam/xlog.c:7202 #, c-format msgid "recovery restart point at %X/%X" msgstr "Recovery-Restart-Punkt bei %X/%X" -#: access/transam/xlog.c:7179 +#: access/transam/xlog.c:7204 #, c-format msgid "Last completed transaction was at log time %s." msgstr "Die letzte vollständige Transaktion war bei Logzeit %s." -#: access/transam/xlog.c:7426 +#: access/transam/xlog.c:7451 #, c-format msgid "restore point \"%s\" created at %X/%X" msgstr "Restore-Punkt »%s« erzeugt bei %X/%X" -#: access/transam/xlog.c:7633 +#: access/transam/xlog.c:7658 #, c-format msgid "online backup was canceled, recovery cannot continue" msgstr "Online-Sicherung wurde storniert, Wiederherstellung kann nicht fortgesetzt werden" -#: access/transam/xlog.c:7691 +#: access/transam/xlog.c:7716 #, c-format msgid "unexpected timeline ID %u (should be %u) in shutdown checkpoint record" msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Shutdown-Checkpoint-Datensatz" -#: access/transam/xlog.c:7749 +#: access/transam/xlog.c:7774 #, c-format msgid "unexpected timeline ID %u (should be %u) in online checkpoint record" msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Online-Checkpoint-Datensatz" -#: access/transam/xlog.c:7778 +#: access/transam/xlog.c:7803 #, c-format msgid "unexpected timeline ID %u (should be %u) in end-of-recovery record" msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im End-of-Recovery-Datensatz" -#: access/transam/xlog.c:8036 +#: access/transam/xlog.c:8061 #, c-format msgid "could not fsync write-through file \"%s\": %m" msgstr "konnte Write-Through-Logdatei »%s« nicht fsyncen: %m" -#: access/transam/xlog.c:8042 +#: access/transam/xlog.c:8067 #, c-format msgid "could not fdatasync file \"%s\": %m" msgstr "konnte Datei »%s« nicht fdatasyncen: %m" -#: access/transam/xlog.c:8137 access/transam/xlog.c:8504 +#: access/transam/xlog.c:8162 access/transam/xlog.c:8529 #, c-format msgid "WAL level not sufficient for making an online backup" msgstr "WAL-Level nicht ausreichend, um Online-Sicherung durchzuführen" -#: access/transam/xlog.c:8138 access/transam/xlog.c:8505 +#: access/transam/xlog.c:8163 access/transam/xlog.c:8530 #: access/transam/xlogfuncs.c:199 #, c-format msgid "wal_level must be set to \"replica\" or \"logical\" at server start." msgstr "wal_level muss beim Serverstart auf »replica« oder »logical« gesetzt werden." -#: access/transam/xlog.c:8143 +#: access/transam/xlog.c:8168 #, c-format msgid "backup label too long (max %d bytes)" msgstr "Backup-Label zu lang (maximal %d Bytes)" -#: access/transam/xlog.c:8259 +#: access/transam/xlog.c:8284 #, c-format msgid "WAL generated with full_page_writes=off was replayed since last restartpoint" msgstr "mit full_page_writes=off erzeugtes WAL wurde seit dem letzten Restart-Punkt zurückgespielt" -#: access/transam/xlog.c:8261 access/transam/xlog.c:8617 +#: access/transam/xlog.c:8286 access/transam/xlog.c:8642 #, c-format msgid "This means that the backup being taken on the standby is corrupt and should not be used. Enable full_page_writes and run CHECKPOINT on the primary, and then try an online backup again." msgstr "Das bedeutet, dass die aktuelle Datensicherung auf dem Standby-Server verfälscht ist und nicht verwendet werden sollte. Schalten Sie auf dem Primärserver full_page_writes ein, führen Sie dort CHECKPOINT aus und versuchen Sie dann die Online-Sicherung erneut." -#: access/transam/xlog.c:8341 backup/basebackup.c:1349 utils/adt/misc.c:347 +#: access/transam/xlog.c:8366 backup/basebackup.c:1343 utils/adt/misc.c:340 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "Ziel für symbolische Verknüpfung »%s« ist zu lang" -#: access/transam/xlog.c:8391 backup/basebackup.c:1364 -#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:355 +#: access/transam/xlog.c:8416 backup/basebackup.c:1358 +#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:348 #, c-format msgid "tablespaces are not supported on this platform" msgstr "Tablespaces werden auf dieser Plattform nicht unterstützt" -#: access/transam/xlog.c:8550 access/transam/xlog.c:8563 +#: access/transam/xlog.c:8575 access/transam/xlog.c:8588 #: access/transam/xlogrecovery.c:1237 access/transam/xlogrecovery.c:1244 #: access/transam/xlogrecovery.c:1303 access/transam/xlogrecovery.c:1383 #: access/transam/xlogrecovery.c:1407 @@ -2596,47 +2602,47 @@ msgstr "Tablespaces werden auf dieser Plattform nicht unterstützt" msgid "invalid data in file \"%s\"" msgstr "ungültige Daten in Datei »%s«" -#: access/transam/xlog.c:8567 backup/basebackup.c:1204 +#: access/transam/xlog.c:8592 backup/basebackup.c:1204 #, c-format msgid "the standby was promoted during online backup" msgstr "der Standby-Server wurde während der Online-Sicherung zum Primärserver befördert" -#: access/transam/xlog.c:8568 backup/basebackup.c:1205 +#: access/transam/xlog.c:8593 backup/basebackup.c:1205 #, c-format msgid "This means that the backup being taken is corrupt and should not be used. Try taking another online backup." msgstr "Das bedeutet, dass die aktuelle Online-Sicherung verfälscht ist und nicht verwendet werden sollte. Versuchen Sie, eine neue Online-Sicherung durchzuführen." -#: access/transam/xlog.c:8615 +#: access/transam/xlog.c:8640 #, c-format msgid "WAL generated with full_page_writes=off was replayed during online backup" msgstr "mit full_page_writes=off erzeugtes WAL wurde während der Online-Sicherung zurückgespielt" -#: access/transam/xlog.c:8740 +#: access/transam/xlog.c:8765 #, c-format msgid "base backup done, waiting for required WAL segments to be archived" msgstr "Basissicherung beendet, warte bis die benötigten WAL-Segmente archiviert sind" -#: access/transam/xlog.c:8754 +#: access/transam/xlog.c:8779 #, c-format msgid "still waiting for all required WAL segments to be archived (%d seconds elapsed)" msgstr "warte immer noch, bis alle benötigten WAL-Segmente archiviert sind (%d Sekunden abgelaufen)" -#: access/transam/xlog.c:8756 +#: access/transam/xlog.c:8781 #, c-format msgid "Check that your archive_command is executing properly. You can safely cancel this backup, but the database backup will not be usable without all the WAL segments." msgstr "Prüfen Sie, ob das archive_command korrekt ausgeführt wird. Dieser Sicherungsvorgang kann gefahrlos abgebrochen werden, aber die Datenbanksicherung wird ohne die fehlenden WAL-Segmente nicht benutzbar sein." -#: access/transam/xlog.c:8763 +#: access/transam/xlog.c:8788 #, c-format msgid "all required WAL segments have been archived" msgstr "alle benötigten WAL-Segmente wurden archiviert" -#: access/transam/xlog.c:8767 +#: access/transam/xlog.c:8792 #, c-format msgid "WAL archiving is not enabled; you must ensure that all required WAL segments are copied through other means to complete the backup" msgstr "WAL-Archivierung ist nicht eingeschaltet; Sie müssen dafür sorgen, dass alle benötigten WAL-Segmente auf andere Art kopiert werden, um die Sicherung abzuschließen" -#: access/transam/xlog.c:8816 +#: access/transam/xlog.c:8841 #, c-format msgid "aborting backup due to backend exiting before pg_backup_stop was called" msgstr "Backup wird abgebrochen, weil Backend-Prozess beendete, bevor pg_backup_stop aufgerufen wurde" @@ -3506,44 +3512,44 @@ msgstr "Komprimierungsdetail kann nicht angegeben werden, wenn Komprimierung nic msgid "invalid compression specification: %s" msgstr "ungültige Komprimierungsangabe: %s" -#: backup/basebackup.c:1435 +#: backup/basebackup.c:1429 #, c-format msgid "skipping special file \"%s\"" msgstr "überspringe besondere Datei »%s«" -#: backup/basebackup.c:1554 +#: backup/basebackup.c:1548 #, c-format msgid "invalid segment number %d in file \"%s\"" msgstr "ungültige Segmentnummer %d in Datei »%s«" -#: backup/basebackup.c:1586 +#: backup/basebackup.c:1580 #, c-format msgid "could not verify checksum in file \"%s\", block %u: read buffer size %d and page size %d differ" msgstr "konnte Prüfsumme in Datei »%s«, Block %u nicht überprüfen: gelesene Puffergröße %d und Seitengröße %d sind verschieden" -#: backup/basebackup.c:1660 +#: backup/basebackup.c:1654 #, c-format msgid "checksum verification failed in file \"%s\", block %u: calculated %X but expected %X" msgstr "Prüfsummenüberprüfung fehlgeschlagen in Datei »%s«, Block %u: berechnet %X, aber erwartet %X" -#: backup/basebackup.c:1667 +#: backup/basebackup.c:1661 #, c-format msgid "further checksum verification failures in file \"%s\" will not be reported" msgstr "weitere Prüfsummenfehler in Datei »%s« werden nicht berichtet werden" -#: backup/basebackup.c:1723 +#: backup/basebackup.c:1717 #, c-format msgid "file \"%s\" has a total of %d checksum verification failure" msgid_plural "file \"%s\" has a total of %d checksum verification failures" msgstr[0] "Datei »%s« hat insgesamt %d Prüfsummenfehler" msgstr[1] "Datei »%s« hat insgesamt %d Prüfsummenfehler" -#: backup/basebackup.c:1769 +#: backup/basebackup.c:1763 #, c-format msgid "file name too long for tar format: \"%s\"" msgstr "Dateiname zu lang für Tar-Format: »%s«" -#: backup/basebackup.c:1774 +#: backup/basebackup.c:1768 #, c-format msgid "symbolic link target too long for tar format: file name \"%s\", target \"%s\"" msgstr "Ziel der symbolischen Verknüpfung zu lang für Tar-Format: Dateiname »%s«, Ziel »%s«" @@ -3628,12 +3634,12 @@ msgstr "konnte Komprimierungs-Worker-Anzahl nicht auf %d setzen: %s" msgid "-X requires a power of two value between 1 MB and 1 GB" msgstr "-X benötigt eine Zweierpotenz zwischen 1 MB und 1 GB" -#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3906 +#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3994 #, c-format msgid "--%s requires a value" msgstr "--%s benötigt einen Wert" -#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3911 +#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3999 #, c-format msgid "-c %s requires a value" msgstr "-c %s benötigt einen Wert" @@ -3649,726 +3655,726 @@ msgstr "Versuchen Sie »%s --help« für weitere Informationen.\n" msgid "%s: invalid command-line arguments\n" msgstr "%s: ungültige Kommandozeilenargumente\n" -#: catalog/aclchk.c:185 +#: catalog/aclchk.c:186 #, c-format msgid "grant options can only be granted to roles" msgstr "Grant-Optionen können nur Rollen gewährt werden" -#: catalog/aclchk.c:307 +#: catalog/aclchk.c:308 #, c-format msgid "no privileges were granted for column \"%s\" of relation \"%s\"" msgstr "es wurden keine Privilegien für Spalte »%s« von Relation »%s« gewährt" -#: catalog/aclchk.c:312 +#: catalog/aclchk.c:313 #, c-format msgid "no privileges were granted for \"%s\"" msgstr "es wurden keine Privilegien für »%s« gewährt" -#: catalog/aclchk.c:320 +#: catalog/aclchk.c:321 #, c-format msgid "not all privileges were granted for column \"%s\" of relation \"%s\"" msgstr "es wurden nicht alle Priviligien für Spalte »%s« von Relation »%s« gewährt" -#: catalog/aclchk.c:325 +#: catalog/aclchk.c:326 #, c-format msgid "not all privileges were granted for \"%s\"" msgstr "es wurden nicht alle Priviligien für »%s« gewährt" -#: catalog/aclchk.c:336 +#: catalog/aclchk.c:337 #, c-format msgid "no privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "es konnten keine Privilegien für Spalte »%s« von Relation »%s« entzogen werden" -#: catalog/aclchk.c:341 +#: catalog/aclchk.c:342 #, c-format msgid "no privileges could be revoked for \"%s\"" msgstr "es konnten keine Privilegien für »%s« entzogen werden" -#: catalog/aclchk.c:349 +#: catalog/aclchk.c:350 #, c-format msgid "not all privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "es konnten nicht alle Privilegien für Spalte »%s« von Relation »%s« entzogen werden" -#: catalog/aclchk.c:354 +#: catalog/aclchk.c:355 #, c-format msgid "not all privileges could be revoked for \"%s\"" msgstr "es konnten nicht alle Privilegien für »%s« entzogen werden" -#: catalog/aclchk.c:386 +#: catalog/aclchk.c:387 #, c-format msgid "grantor must be current user" msgstr "Grantor muss aktueller Benutzer sein" -#: catalog/aclchk.c:454 catalog/aclchk.c:1029 +#: catalog/aclchk.c:455 catalog/aclchk.c:1030 #, c-format msgid "invalid privilege type %s for relation" msgstr "ungültiger Privilegtyp %s für Relation" -#: catalog/aclchk.c:458 catalog/aclchk.c:1033 +#: catalog/aclchk.c:459 catalog/aclchk.c:1034 #, c-format msgid "invalid privilege type %s for sequence" msgstr "ungültiger Privilegtyp %s für Sequenz" -#: catalog/aclchk.c:462 +#: catalog/aclchk.c:463 #, c-format msgid "invalid privilege type %s for database" msgstr "ungültiger Privilegtyp %s für Datenbank" -#: catalog/aclchk.c:466 +#: catalog/aclchk.c:467 #, c-format msgid "invalid privilege type %s for domain" msgstr "ungültiger Privilegtyp %s für Domäne" -#: catalog/aclchk.c:470 catalog/aclchk.c:1037 +#: catalog/aclchk.c:471 catalog/aclchk.c:1038 #, c-format msgid "invalid privilege type %s for function" msgstr "ungültiger Privilegtyp %s für Funktion" -#: catalog/aclchk.c:474 +#: catalog/aclchk.c:475 #, c-format msgid "invalid privilege type %s for language" msgstr "ungültiger Privilegtyp %s für Sprache" -#: catalog/aclchk.c:478 +#: catalog/aclchk.c:479 #, c-format msgid "invalid privilege type %s for large object" msgstr "ungültiger Privilegtyp %s für Large Object" -#: catalog/aclchk.c:482 catalog/aclchk.c:1053 +#: catalog/aclchk.c:483 catalog/aclchk.c:1054 #, c-format msgid "invalid privilege type %s for schema" msgstr "ungültiger Privilegtyp %s für Schema" -#: catalog/aclchk.c:486 catalog/aclchk.c:1041 +#: catalog/aclchk.c:487 catalog/aclchk.c:1042 #, c-format msgid "invalid privilege type %s for procedure" msgstr "ungültiger Privilegtyp %s für Prozedur" -#: catalog/aclchk.c:490 catalog/aclchk.c:1045 +#: catalog/aclchk.c:491 catalog/aclchk.c:1046 #, c-format msgid "invalid privilege type %s for routine" msgstr "ungültiger Privilegtyp %s für Routine" -#: catalog/aclchk.c:494 +#: catalog/aclchk.c:495 #, c-format msgid "invalid privilege type %s for tablespace" msgstr "ungültiger Privilegtyp %s für Tablespace" -#: catalog/aclchk.c:498 catalog/aclchk.c:1049 +#: catalog/aclchk.c:499 catalog/aclchk.c:1050 #, c-format msgid "invalid privilege type %s for type" msgstr "ungültiger Privilegtyp %s für Typ" -#: catalog/aclchk.c:502 +#: catalog/aclchk.c:503 #, c-format msgid "invalid privilege type %s for foreign-data wrapper" msgstr "ungültiger Privilegtyp %s für Fremddaten-Wrapper" -#: catalog/aclchk.c:506 +#: catalog/aclchk.c:507 #, c-format msgid "invalid privilege type %s for foreign server" msgstr "ungültiger Privilegtyp %s für Fremdserver" -#: catalog/aclchk.c:510 +#: catalog/aclchk.c:511 #, c-format msgid "invalid privilege type %s for parameter" msgstr "ungültiger Privilegtyp %s für Parameter" -#: catalog/aclchk.c:549 +#: catalog/aclchk.c:550 #, c-format msgid "column privileges are only valid for relations" msgstr "Spaltenprivilegien sind nur für Relation gültig" -#: catalog/aclchk.c:712 catalog/aclchk.c:4486 catalog/aclchk.c:5333 +#: catalog/aclchk.c:713 catalog/aclchk.c:4491 catalog/aclchk.c:5338 #: catalog/objectaddress.c:1072 catalog/pg_largeobject.c:116 #: storage/large_object/inv_api.c:287 #, c-format msgid "large object %u does not exist" msgstr "Large Object %u existiert nicht" -#: catalog/aclchk.c:1086 +#: catalog/aclchk.c:1087 #, c-format msgid "default privileges cannot be set for columns" msgstr "Vorgabeprivilegien können nicht für Spalten gesetzt werden" -#: catalog/aclchk.c:1246 +#: catalog/aclchk.c:1247 #, c-format msgid "cannot use IN SCHEMA clause when using GRANT/REVOKE ON SCHEMAS" msgstr "Klausel IN SCHEMA kann nicht verwendet werden, wenn GRANT/REVOKE ON SCHEMAS verwendet wird" -#: catalog/aclchk.c:1587 catalog/catalog.c:648 catalog/objectaddress.c:1543 +#: catalog/aclchk.c:1588 catalog/catalog.c:657 catalog/objectaddress.c:1543 #: catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 -#: commands/sequence.c:1670 commands/tablecmds.c:7320 commands/tablecmds.c:7476 -#: commands/tablecmds.c:7526 commands/tablecmds.c:7600 -#: commands/tablecmds.c:7670 commands/tablecmds.c:7782 -#: commands/tablecmds.c:7876 commands/tablecmds.c:7935 -#: commands/tablecmds.c:8024 commands/tablecmds.c:8054 -#: commands/tablecmds.c:8182 commands/tablecmds.c:8264 -#: commands/tablecmds.c:8420 commands/tablecmds.c:8542 -#: commands/tablecmds.c:12281 commands/tablecmds.c:12462 -#: commands/tablecmds.c:12622 commands/tablecmds.c:13819 -#: commands/tablecmds.c:16388 commands/trigger.c:954 parser/analyze.c:2517 +#: commands/sequence.c:1673 commands/tablecmds.c:7343 commands/tablecmds.c:7499 +#: commands/tablecmds.c:7549 commands/tablecmds.c:7623 +#: commands/tablecmds.c:7693 commands/tablecmds.c:7805 +#: commands/tablecmds.c:7899 commands/tablecmds.c:7958 +#: commands/tablecmds.c:8047 commands/tablecmds.c:8077 +#: commands/tablecmds.c:8205 commands/tablecmds.c:8287 +#: commands/tablecmds.c:8443 commands/tablecmds.c:8565 +#: commands/tablecmds.c:12400 commands/tablecmds.c:12592 +#: commands/tablecmds.c:12752 commands/tablecmds.c:13949 +#: commands/tablecmds.c:16519 commands/trigger.c:954 parser/analyze.c:2517 #: parser/parse_relation.c:725 parser/parse_target.c:1077 -#: parser/parse_type.c:144 parser/parse_utilcmd.c:3437 -#: parser/parse_utilcmd.c:3473 parser/parse_utilcmd.c:3515 utils/adt/acl.c:2869 +#: parser/parse_type.c:144 parser/parse_utilcmd.c:3465 +#: parser/parse_utilcmd.c:3501 parser/parse_utilcmd.c:3543 utils/adt/acl.c:2869 #: utils/adt/ruleutils.c:2828 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist" msgstr "Spalte »%s« von Relation »%s« existiert nicht" -#: catalog/aclchk.c:1850 catalog/objectaddress.c:1383 commands/sequence.c:1179 -#: commands/tablecmds.c:253 commands/tablecmds.c:17255 utils/adt/acl.c:2077 +#: catalog/aclchk.c:1851 catalog/objectaddress.c:1383 commands/sequence.c:1179 +#: commands/tablecmds.c:253 commands/tablecmds.c:17393 utils/adt/acl.c:2077 #: utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 #: utils/adt/acl.c:2199 utils/adt/acl.c:2229 #, c-format msgid "\"%s\" is not a sequence" msgstr "»%s« ist keine Sequenz" -#: catalog/aclchk.c:1888 +#: catalog/aclchk.c:1889 #, c-format msgid "sequence \"%s\" only supports USAGE, SELECT, and UPDATE privileges" msgstr "Sequenz »%s« unterstützt nur die Privilegien USAGE, SELECT und UPDATE" -#: catalog/aclchk.c:1905 +#: catalog/aclchk.c:1906 #, c-format msgid "invalid privilege type %s for table" msgstr "ungültiger Privilegtyp %s für Tabelle" -#: catalog/aclchk.c:2071 +#: catalog/aclchk.c:2075 #, c-format msgid "invalid privilege type %s for column" msgstr "ungültiger Privilegtyp %s für Spalte" -#: catalog/aclchk.c:2084 +#: catalog/aclchk.c:2088 #, c-format msgid "sequence \"%s\" only supports SELECT column privileges" msgstr "Sequenz »%s« unterstützt nur den Spaltenprivilegientyp SELECT" -#: catalog/aclchk.c:2666 +#: catalog/aclchk.c:2671 #, c-format msgid "language \"%s\" is not trusted" msgstr "Sprache »%s« ist nicht »trusted«" -#: catalog/aclchk.c:2668 +#: catalog/aclchk.c:2673 #, c-format msgid "GRANT and REVOKE are not allowed on untrusted languages, because only superusers can use untrusted languages." msgstr "GRANT und REVOKE sind für nicht vertrauenswürdige Sprachen nicht erlaubt, weil nur Superuser nicht vertrauenswürdige Sprachen verwenden können." -#: catalog/aclchk.c:3182 +#: catalog/aclchk.c:3187 #, c-format msgid "cannot set privileges of array types" msgstr "für Array-Typen können keine Privilegien gesetzt werden" -#: catalog/aclchk.c:3183 +#: catalog/aclchk.c:3188 #, c-format msgid "Set the privileges of the element type instead." msgstr "Setzen Sie stattdessen die Privilegien des Elementtyps." -#: catalog/aclchk.c:3190 catalog/objectaddress.c:1649 +#: catalog/aclchk.c:3195 catalog/objectaddress.c:1649 #, c-format msgid "\"%s\" is not a domain" msgstr "»%s« ist keine Domäne" -#: catalog/aclchk.c:3462 +#: catalog/aclchk.c:3467 #, c-format msgid "unrecognized privilege type \"%s\"" msgstr "unbekannter Privilegtyp »%s«" -#: catalog/aclchk.c:3527 +#: catalog/aclchk.c:3532 #, c-format msgid "permission denied for aggregate %s" msgstr "keine Berechtigung für Aggregatfunktion %s" -#: catalog/aclchk.c:3530 +#: catalog/aclchk.c:3535 #, c-format msgid "permission denied for collation %s" msgstr "keine Berechtigung für Sortierfolge %s" -#: catalog/aclchk.c:3533 +#: catalog/aclchk.c:3538 #, c-format msgid "permission denied for column %s" msgstr "keine Berechtigung für Spalte %s" -#: catalog/aclchk.c:3536 +#: catalog/aclchk.c:3541 #, c-format msgid "permission denied for conversion %s" msgstr "keine Berechtigung für Konversion %s" -#: catalog/aclchk.c:3539 +#: catalog/aclchk.c:3544 #, c-format msgid "permission denied for database %s" msgstr "keine Berechtigung für Datenbank %s" -#: catalog/aclchk.c:3542 +#: catalog/aclchk.c:3547 #, c-format msgid "permission denied for domain %s" msgstr "keine Berechtigung für Domäne %s" -#: catalog/aclchk.c:3545 +#: catalog/aclchk.c:3550 #, c-format msgid "permission denied for event trigger %s" msgstr "keine Berechtigung für Ereignistrigger %s" -#: catalog/aclchk.c:3548 +#: catalog/aclchk.c:3553 #, c-format msgid "permission denied for extension %s" msgstr "keine Berechtigung für Erweiterung %s" -#: catalog/aclchk.c:3551 +#: catalog/aclchk.c:3556 #, c-format msgid "permission denied for foreign-data wrapper %s" msgstr "keine Berechtigung für Fremddaten-Wrapper %s" -#: catalog/aclchk.c:3554 +#: catalog/aclchk.c:3559 #, c-format msgid "permission denied for foreign server %s" msgstr "keine Berechtigung für Fremdserver %s" -#: catalog/aclchk.c:3557 +#: catalog/aclchk.c:3562 #, c-format msgid "permission denied for foreign table %s" msgstr "keine Berechtigung für Fremdtabelle %s" -#: catalog/aclchk.c:3560 +#: catalog/aclchk.c:3565 #, c-format msgid "permission denied for function %s" msgstr "keine Berechtigung für Funktion %s" -#: catalog/aclchk.c:3563 +#: catalog/aclchk.c:3568 #, c-format msgid "permission denied for index %s" msgstr "keine Berechtigung für Index %s" -#: catalog/aclchk.c:3566 +#: catalog/aclchk.c:3571 #, c-format msgid "permission denied for language %s" msgstr "keine Berechtigung für Sprache %s" -#: catalog/aclchk.c:3569 +#: catalog/aclchk.c:3574 #, c-format msgid "permission denied for large object %s" msgstr "keine Berechtigung für Large Object %s" -#: catalog/aclchk.c:3572 +#: catalog/aclchk.c:3577 #, c-format msgid "permission denied for materialized view %s" msgstr "keine Berechtigung für materialisierte Sicht %s" -#: catalog/aclchk.c:3575 +#: catalog/aclchk.c:3580 #, c-format msgid "permission denied for operator class %s" msgstr "keine Berechtigung für Operatorklasse %s" -#: catalog/aclchk.c:3578 +#: catalog/aclchk.c:3583 #, c-format msgid "permission denied for operator %s" msgstr "keine Berechtigung für Operator %s" -#: catalog/aclchk.c:3581 +#: catalog/aclchk.c:3586 #, c-format msgid "permission denied for operator family %s" msgstr "keine Berechtigung für Operatorfamilie %s" -#: catalog/aclchk.c:3584 +#: catalog/aclchk.c:3589 #, c-format msgid "permission denied for parameter %s" msgstr "keine Berechtigung für Parameter %s" -#: catalog/aclchk.c:3587 +#: catalog/aclchk.c:3592 #, c-format msgid "permission denied for policy %s" msgstr "keine Berechtigung für Policy %s" -#: catalog/aclchk.c:3590 +#: catalog/aclchk.c:3595 #, c-format msgid "permission denied for procedure %s" msgstr "keine Berechtigung für Prozedur %s" -#: catalog/aclchk.c:3593 +#: catalog/aclchk.c:3598 #, c-format msgid "permission denied for publication %s" msgstr "keine Berechtigung für Publikation %s" -#: catalog/aclchk.c:3596 +#: catalog/aclchk.c:3601 #, c-format msgid "permission denied for routine %s" msgstr "keine Berechtigung für Routine %s" -#: catalog/aclchk.c:3599 +#: catalog/aclchk.c:3604 #, c-format msgid "permission denied for schema %s" msgstr "keine Berechtigung für Schema %s" -#: catalog/aclchk.c:3602 commands/sequence.c:667 commands/sequence.c:893 -#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1768 -#: commands/sequence.c:1829 +#: catalog/aclchk.c:3607 commands/sequence.c:667 commands/sequence.c:893 +#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1771 +#: commands/sequence.c:1832 #, c-format msgid "permission denied for sequence %s" msgstr "keine Berechtigung für Sequenz %s" -#: catalog/aclchk.c:3605 +#: catalog/aclchk.c:3610 #, c-format msgid "permission denied for statistics object %s" msgstr "keine Berechtigung für Statistikobjekt %s" -#: catalog/aclchk.c:3608 +#: catalog/aclchk.c:3613 #, c-format msgid "permission denied for subscription %s" msgstr "keine Berechtigung für Subskription %s" -#: catalog/aclchk.c:3611 +#: catalog/aclchk.c:3616 #, c-format msgid "permission denied for table %s" msgstr "keine Berechtigung für Tabelle %s" -#: catalog/aclchk.c:3614 +#: catalog/aclchk.c:3619 #, c-format msgid "permission denied for tablespace %s" msgstr "keine Berechtigung für Tablespace %s" -#: catalog/aclchk.c:3617 +#: catalog/aclchk.c:3622 #, c-format msgid "permission denied for text search configuration %s" msgstr "keine Berechtigung für Textsuchekonfiguration %s" -#: catalog/aclchk.c:3620 +#: catalog/aclchk.c:3625 #, c-format msgid "permission denied for text search dictionary %s" msgstr "keine Berechtigung für Textsuchewörterbuch %s" -#: catalog/aclchk.c:3623 +#: catalog/aclchk.c:3628 #, c-format msgid "permission denied for type %s" msgstr "keine Berechtigung für Typ %s" -#: catalog/aclchk.c:3626 +#: catalog/aclchk.c:3631 #, c-format msgid "permission denied for view %s" msgstr "keine Berechtigung für Sicht %s" -#: catalog/aclchk.c:3662 +#: catalog/aclchk.c:3667 #, c-format msgid "must be owner of aggregate %s" msgstr "Berechtigung nur für Eigentümer der Aggregatfunktion %s" -#: catalog/aclchk.c:3665 +#: catalog/aclchk.c:3670 #, c-format msgid "must be owner of collation %s" msgstr "Berechtigung nur für Eigentümer der Sortierfolge %s" -#: catalog/aclchk.c:3668 +#: catalog/aclchk.c:3673 #, c-format msgid "must be owner of conversion %s" msgstr "Berechtigung nur für Eigentümer der Konversion %s" -#: catalog/aclchk.c:3671 +#: catalog/aclchk.c:3676 #, c-format msgid "must be owner of database %s" msgstr "Berechtigung nur für Eigentümer der Datenbank %s" -#: catalog/aclchk.c:3674 +#: catalog/aclchk.c:3679 #, c-format msgid "must be owner of domain %s" msgstr "Berechtigung nur für Eigentümer der Domäne %s" -#: catalog/aclchk.c:3677 +#: catalog/aclchk.c:3682 #, c-format msgid "must be owner of event trigger %s" msgstr "Berechtigung nur für Eigentümer des Ereignistriggers %s" -#: catalog/aclchk.c:3680 +#: catalog/aclchk.c:3685 #, c-format msgid "must be owner of extension %s" msgstr "Berechtigung nur für Eigentümer der Erweiterung %s" -#: catalog/aclchk.c:3683 +#: catalog/aclchk.c:3688 #, c-format msgid "must be owner of foreign-data wrapper %s" msgstr "Berechtigung nur für Eigentümer des Fremddaten-Wrappers %s" -#: catalog/aclchk.c:3686 +#: catalog/aclchk.c:3691 #, c-format msgid "must be owner of foreign server %s" msgstr "Berechtigung nur für Eigentümer des Fremdservers %s" -#: catalog/aclchk.c:3689 +#: catalog/aclchk.c:3694 #, c-format msgid "must be owner of foreign table %s" msgstr "Berechtigung nur für Eigentümer der Fremdtabelle %s" -#: catalog/aclchk.c:3692 +#: catalog/aclchk.c:3697 #, c-format msgid "must be owner of function %s" msgstr "Berechtigung nur für Eigentümer der Funktion %s" -#: catalog/aclchk.c:3695 +#: catalog/aclchk.c:3700 #, c-format msgid "must be owner of index %s" msgstr "Berechtigung nur für Eigentümer des Index %s" -#: catalog/aclchk.c:3698 +#: catalog/aclchk.c:3703 #, c-format msgid "must be owner of language %s" msgstr "Berechtigung nur für Eigentümer der Sprache %s" -#: catalog/aclchk.c:3701 +#: catalog/aclchk.c:3706 #, c-format msgid "must be owner of large object %s" msgstr "Berechtigung nur für Eigentümer des Large Object %s" -#: catalog/aclchk.c:3704 +#: catalog/aclchk.c:3709 #, c-format msgid "must be owner of materialized view %s" msgstr "Berechtigung nur für Eigentümer der materialisierten Sicht %s" -#: catalog/aclchk.c:3707 +#: catalog/aclchk.c:3712 #, c-format msgid "must be owner of operator class %s" msgstr "Berechtigung nur für Eigentümer der Operatorklasse %s" -#: catalog/aclchk.c:3710 +#: catalog/aclchk.c:3715 #, c-format msgid "must be owner of operator %s" msgstr "Berechtigung nur für Eigentümer des Operators %s" -#: catalog/aclchk.c:3713 +#: catalog/aclchk.c:3718 #, c-format msgid "must be owner of operator family %s" msgstr "Berechtigung nur für Eigentümer der Operatorfamilie %s" -#: catalog/aclchk.c:3716 +#: catalog/aclchk.c:3721 #, c-format msgid "must be owner of procedure %s" msgstr "Berechtigung nur für Eigentümer der Prozedur %s" -#: catalog/aclchk.c:3719 +#: catalog/aclchk.c:3724 #, c-format msgid "must be owner of publication %s" msgstr "Berechtigung nur für Eigentümer der Publikation %s" -#: catalog/aclchk.c:3722 +#: catalog/aclchk.c:3727 #, c-format msgid "must be owner of routine %s" msgstr "Berechtigung nur für Eigentümer der Routine %s" -#: catalog/aclchk.c:3725 +#: catalog/aclchk.c:3730 #, c-format msgid "must be owner of sequence %s" msgstr "Berechtigung nur für Eigentümer der Sequenz %s" -#: catalog/aclchk.c:3728 +#: catalog/aclchk.c:3733 #, c-format msgid "must be owner of subscription %s" msgstr "Berechtigung nur für Eigentümer der Subskription %s" -#: catalog/aclchk.c:3731 +#: catalog/aclchk.c:3736 #, c-format msgid "must be owner of table %s" msgstr "Berechtigung nur für Eigentümer der Tabelle %s" -#: catalog/aclchk.c:3734 +#: catalog/aclchk.c:3739 #, c-format msgid "must be owner of type %s" msgstr "Berechtigung nur für Eigentümer des Typs %s" -#: catalog/aclchk.c:3737 +#: catalog/aclchk.c:3742 #, c-format msgid "must be owner of view %s" msgstr "Berechtigung nur für Eigentümer der Sicht %s" -#: catalog/aclchk.c:3740 +#: catalog/aclchk.c:3745 #, c-format msgid "must be owner of schema %s" msgstr "Berechtigung nur für Eigentümer des Schemas %s" -#: catalog/aclchk.c:3743 +#: catalog/aclchk.c:3748 #, c-format msgid "must be owner of statistics object %s" msgstr "Berechtigung nur für Eigentümer des Statistikobjekts %s" -#: catalog/aclchk.c:3746 +#: catalog/aclchk.c:3751 #, c-format msgid "must be owner of tablespace %s" msgstr "Berechtigung nur für Eigentümer des Tablespace %s" -#: catalog/aclchk.c:3749 +#: catalog/aclchk.c:3754 #, c-format msgid "must be owner of text search configuration %s" msgstr "Berechtigung nur für Eigentümer der Textsuchekonfiguration %s" -#: catalog/aclchk.c:3752 +#: catalog/aclchk.c:3757 #, c-format msgid "must be owner of text search dictionary %s" msgstr "Berechtigung nur für Eigentümer des Textsuchewörterbuches %s" -#: catalog/aclchk.c:3766 +#: catalog/aclchk.c:3771 #, c-format msgid "must be owner of relation %s" msgstr "Berechtigung nur für Eigentümer der Relation %s" -#: catalog/aclchk.c:3812 +#: catalog/aclchk.c:3817 #, c-format msgid "permission denied for column \"%s\" of relation \"%s\"" msgstr "keine Berechtigung für Spalte »%s« von Relation »%s«" -#: catalog/aclchk.c:3957 catalog/aclchk.c:3976 +#: catalog/aclchk.c:3962 catalog/aclchk.c:3981 #, c-format msgid "attribute %d of relation with OID %u does not exist" msgstr "Attribut %d der Relation mit OID %u existiert nicht" -#: catalog/aclchk.c:4071 catalog/aclchk.c:5184 +#: catalog/aclchk.c:4076 catalog/aclchk.c:5189 #, c-format msgid "relation with OID %u does not exist" msgstr "Relation mit OID %u existiert nicht" -#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2615 +#: catalog/aclchk.c:4189 catalog/aclchk.c:5607 commands/dbcommands.c:2635 #, c-format msgid "database with OID %u does not exist" msgstr "Datenbank mit OID %u existiert nicht" -#: catalog/aclchk.c:4299 +#: catalog/aclchk.c:4304 #, c-format msgid "parameter ACL with OID %u does not exist" msgstr "Parameter-ACL mit OID %u existiert nicht" -#: catalog/aclchk.c:4353 catalog/aclchk.c:5262 tcop/fastpath.c:141 +#: catalog/aclchk.c:4358 catalog/aclchk.c:5267 tcop/fastpath.c:141 #: utils/fmgr/fmgr.c:2037 #, c-format msgid "function with OID %u does not exist" msgstr "Funktion mit OID %u existiert nicht" -#: catalog/aclchk.c:4407 catalog/aclchk.c:5288 +#: catalog/aclchk.c:4412 catalog/aclchk.c:5293 #, c-format msgid "language with OID %u does not exist" msgstr "Sprache mit OID %u existiert nicht" -#: catalog/aclchk.c:4571 catalog/aclchk.c:5360 commands/collationcmds.c:595 +#: catalog/aclchk.c:4576 catalog/aclchk.c:5365 commands/collationcmds.c:595 #: commands/publicationcmds.c:1745 #, c-format msgid "schema with OID %u does not exist" msgstr "Schema mit OID %u existiert nicht" -#: catalog/aclchk.c:4635 catalog/aclchk.c:5387 utils/adt/genfile.c:632 +#: catalog/aclchk.c:4640 catalog/aclchk.c:5392 utils/adt/genfile.c:632 #, c-format msgid "tablespace with OID %u does not exist" msgstr "Tablespace mit OID %u existiert nicht" -#: catalog/aclchk.c:4694 catalog/aclchk.c:5521 commands/foreigncmds.c:325 +#: catalog/aclchk.c:4699 catalog/aclchk.c:5526 commands/foreigncmds.c:325 #, c-format msgid "foreign-data wrapper with OID %u does not exist" msgstr "Fremddaten-Wrapper mit OID %u existiert nicht" -#: catalog/aclchk.c:4756 catalog/aclchk.c:5548 commands/foreigncmds.c:462 +#: catalog/aclchk.c:4761 catalog/aclchk.c:5553 commands/foreigncmds.c:462 #, c-format msgid "foreign server with OID %u does not exist" msgstr "Fremdserver mit OID %u existiert nicht" -#: catalog/aclchk.c:4816 catalog/aclchk.c:5210 utils/cache/typcache.c:390 +#: catalog/aclchk.c:4821 catalog/aclchk.c:5215 utils/cache/typcache.c:390 #: utils/cache/typcache.c:445 #, c-format msgid "type with OID %u does not exist" msgstr "Typ mit OID %u existiert nicht" -#: catalog/aclchk.c:5236 +#: catalog/aclchk.c:5241 #, c-format msgid "operator with OID %u does not exist" msgstr "Operator mit OID %u existiert nicht" -#: catalog/aclchk.c:5413 +#: catalog/aclchk.c:5418 #, c-format msgid "operator class with OID %u does not exist" msgstr "Operatorklasse mit OID %u existiert nicht" -#: catalog/aclchk.c:5440 +#: catalog/aclchk.c:5445 #, c-format msgid "operator family with OID %u does not exist" msgstr "Operatorfamilie mit OID %u existiert nicht" -#: catalog/aclchk.c:5467 +#: catalog/aclchk.c:5472 #, c-format msgid "text search dictionary with OID %u does not exist" msgstr "Textsuchewörterbuch mit OID %u existiert nicht" -#: catalog/aclchk.c:5494 +#: catalog/aclchk.c:5499 #, c-format msgid "text search configuration with OID %u does not exist" msgstr "Textsuchekonfiguration mit OID %u existiert nicht" -#: catalog/aclchk.c:5575 commands/event_trigger.c:453 +#: catalog/aclchk.c:5580 commands/event_trigger.c:453 #, c-format msgid "event trigger with OID %u does not exist" msgstr "Ereignistrigger mit OID %u existiert nicht" -#: catalog/aclchk.c:5628 commands/collationcmds.c:439 +#: catalog/aclchk.c:5633 commands/collationcmds.c:439 #, c-format msgid "collation with OID %u does not exist" msgstr "Sortierfolge mit OID %u existiert nicht" -#: catalog/aclchk.c:5654 +#: catalog/aclchk.c:5659 #, c-format msgid "conversion with OID %u does not exist" msgstr "Konversion mit OID %u existiert nicht" -#: catalog/aclchk.c:5695 +#: catalog/aclchk.c:5700 #, c-format msgid "extension with OID %u does not exist" msgstr "Erweiterung mit OID %u existiert nicht" -#: catalog/aclchk.c:5722 commands/publicationcmds.c:1999 +#: catalog/aclchk.c:5727 commands/publicationcmds.c:1999 #, c-format msgid "publication with OID %u does not exist" msgstr "Publikation mit OID %u existiert nicht" -#: catalog/aclchk.c:5748 commands/subscriptioncmds.c:1742 +#: catalog/aclchk.c:5753 commands/subscriptioncmds.c:1742 #, c-format msgid "subscription with OID %u does not exist" msgstr "Subskription mit OID %u existiert nicht" -#: catalog/aclchk.c:5774 +#: catalog/aclchk.c:5779 #, c-format msgid "statistics object with OID %u does not exist" msgstr "Statistikobjekt mit OID %u existiert nicht" -#: catalog/catalog.c:468 +#: catalog/catalog.c:477 #, c-format msgid "still searching for an unused OID in relation \"%s\"" msgstr "suche immer noch nach einer unbenutzten OID in in Relation »%s«" -#: catalog/catalog.c:470 +#: catalog/catalog.c:479 #, c-format msgid "OID candidates have been checked %llu time, but no unused OID has been found yet." msgid_plural "OID candidates have been checked %llu times, but no unused OID has been found yet." msgstr[0] "OID-Kandidaten wurden %llu mal geprüft, aber es wurde bisher keine unbenutzte OID gefunden." msgstr[1] "OID-Kandidaten wurden %llu mal geprüft, aber es wurde bisher keine unbenutzte OID gefunden." -#: catalog/catalog.c:495 +#: catalog/catalog.c:504 #, c-format msgid "new OID has been assigned in relation \"%s\" after %llu retry" msgid_plural "new OID has been assigned in relation \"%s\" after %llu retries" msgstr[0] "neue OID in Relation »%s« wurde zugewiesen nach %llu Versuch" msgstr[1] "neue OID in Relation »%s« wurde zugewiesen nach %llu Versuchen" -#: catalog/catalog.c:626 catalog/catalog.c:693 +#: catalog/catalog.c:635 catalog/catalog.c:702 #, c-format msgid "must be superuser to call %s()" msgstr "nur Superuser können %s() aufrufen" -#: catalog/catalog.c:635 +#: catalog/catalog.c:644 #, c-format msgid "pg_nextoid() can only be used on system catalogs" msgstr "pg_nextoid() kann nur mit Systemkatalogen verwendet werden" -#: catalog/catalog.c:640 parser/parse_utilcmd.c:2296 +#: catalog/catalog.c:649 parser/parse_utilcmd.c:2324 #, c-format msgid "index \"%s\" does not belong to table \"%s\"" msgstr "Index »%s« gehört nicht zu Tabelle »%s«" -#: catalog/catalog.c:657 +#: catalog/catalog.c:666 #, c-format msgid "column \"%s\" is not of type oid" msgstr "Spalte »%s« hat nicht Typ oid" -#: catalog/catalog.c:664 +#: catalog/catalog.c:673 #, c-format msgid "index \"%s\" is not the index for column \"%s\"" msgstr "»%s« ist kein Index für Spalte »%s«" @@ -4419,13 +4425,13 @@ msgid "cannot drop %s because other objects depend on it" msgstr "kann %s nicht löschen, weil andere Objekte davon abhängen" #: catalog/dependency.c:1201 catalog/dependency.c:1208 -#: catalog/dependency.c:1219 commands/tablecmds.c:1325 -#: commands/tablecmds.c:14461 commands/tablespace.c:476 commands/user.c:1008 +#: catalog/dependency.c:1219 commands/tablecmds.c:1342 +#: commands/tablecmds.c:14591 commands/tablespace.c:476 commands/user.c:1008 #: commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 -#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7402 -#: utils/misc/guc.c:7438 utils/misc/guc.c:7508 utils/misc/guc.c:11880 -#: utils/misc/guc.c:11914 utils/misc/guc.c:11948 utils/misc/guc.c:11991 -#: utils/misc/guc.c:12033 +#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7414 +#: utils/misc/guc.c:7450 utils/misc/guc.c:7520 utils/misc/guc.c:11898 +#: utils/misc/guc.c:11932 utils/misc/guc.c:11966 utils/misc/guc.c:12009 +#: utils/misc/guc.c:12051 #, c-format msgid "%s" msgstr "%s" @@ -4468,13 +4474,13 @@ msgstr "keine Berechtigung, um »%s.%s« zu erzeugen" msgid "System catalog modifications are currently disallowed." msgstr "Änderungen an Systemkatalogen sind gegenwärtig nicht erlaubt." -#: catalog/heap.c:466 commands/tablecmds.c:2345 commands/tablecmds.c:2982 -#: commands/tablecmds.c:6910 +#: catalog/heap.c:466 commands/tablecmds.c:2362 commands/tablecmds.c:2999 +#: commands/tablecmds.c:6933 #, c-format msgid "tables can have at most %d columns" msgstr "Tabellen können höchstens %d Spalten haben" -#: catalog/heap.c:484 commands/tablecmds.c:7210 +#: catalog/heap.c:484 commands/tablecmds.c:7233 #, c-format msgid "column name \"%s\" conflicts with a system column name" msgstr "Spaltenname »%s« steht im Konflikt mit dem Namen einer Systemspalte" @@ -4512,7 +4518,7 @@ msgid "no collation was derived for column \"%s\" with collatable type %s" msgstr "für Spalte »%s« mit sortierbarem Typ %s wurde keine Sortierfolge abgeleitet" #: catalog/heap.c:1151 catalog/index.c:875 commands/createas.c:408 -#: commands/tablecmds.c:3899 +#: commands/tablecmds.c:3921 #, c-format msgid "relation \"%s\" already exists" msgstr "Relation »%s« existiert bereits" @@ -4556,7 +4562,7 @@ msgid "check constraint \"%s\" already exists" msgstr "Check-Constraint »%s« existiert bereits" #: catalog/heap.c:2582 catalog/index.c:889 catalog/pg_constraint.c:689 -#: commands/tablecmds.c:8916 +#: commands/tablecmds.c:8939 #, c-format msgid "constraint \"%s\" for relation \"%s\" already exists" msgstr "Constraint »%s« existiert bereits für Relation »%s«" @@ -4606,14 +4612,14 @@ msgstr "Dadurch würde die generierte Spalte von ihrem eigenen Wert abhängen." msgid "generation expression is not immutable" msgstr "Generierungsausdruck ist nicht »immutable«" -#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1290 +#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1291 #, c-format msgid "column \"%s\" is of type %s but default expression is of type %s" msgstr "Spalte »%s« hat Typ %s, aber der Vorgabeausdruck hat Typ %s" #: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 #: parser/parse_target.c:594 parser/parse_target.c:891 -#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1295 +#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1296 #, c-format msgid "You will need to rewrite or cast the expression." msgstr "Sie müssen den Ausdruck umschreiben oder eine Typumwandlung vornehmen." @@ -4648,7 +4654,7 @@ msgstr "Tabelle »%s« verweist auf »%s«." msgid "Truncate table \"%s\" at the same time, or use TRUNCATE ... CASCADE." msgstr "Leeren Sie die Tabelle »%s« gleichzeitig oder verwenden Sie TRUNCATE ... CASCADE." -#: catalog/index.c:224 parser/parse_utilcmd.c:2201 +#: catalog/index.c:224 parser/parse_utilcmd.c:2229 #, c-format msgid "multiple primary keys for table \"%s\" are not allowed" msgstr "mehrere Primärschlüssel für Tabelle »%s« nicht erlaubt" @@ -4699,7 +4705,7 @@ msgstr "Relation »%s« existiert bereits, wird übersprungen" msgid "pg_class index OID value not set when in binary upgrade mode" msgstr "Index-OID-Wert für pg_class ist im Binary-Upgrade-Modus nicht gesetzt" -#: catalog/index.c:927 utils/cache/relcache.c:3744 +#: catalog/index.c:927 utils/cache/relcache.c:3745 #, c-format msgid "index relfilenode value not set when in binary upgrade mode" msgstr "Index-Relfilenode-Wert ist im Binary-Upgrade-Modus nicht gesetzt" @@ -4709,28 +4715,28 @@ msgstr "Index-Relfilenode-Wert ist im Binary-Upgrade-Modus nicht gesetzt" msgid "DROP INDEX CONCURRENTLY must be first action in transaction" msgstr "DROP INDEX CONCURRENTLY muss die erste Aktion in einer Transaktion sein" -#: catalog/index.c:3664 +#: catalog/index.c:3662 #, c-format msgid "cannot reindex temporary tables of other sessions" msgstr "kann temporäre Tabellen anderer Sitzungen nicht reindizieren" -#: catalog/index.c:3675 commands/indexcmds.c:3536 +#: catalog/index.c:3673 commands/indexcmds.c:3536 #, c-format msgid "cannot reindex invalid index on TOAST table" msgstr "ungültiger Index einer TOAST-Tabelle kann nicht reindiziert werden" -#: catalog/index.c:3691 commands/indexcmds.c:3416 commands/indexcmds.c:3560 -#: commands/tablecmds.c:3314 +#: catalog/index.c:3689 commands/indexcmds.c:3416 commands/indexcmds.c:3560 +#: commands/tablecmds.c:3331 #, c-format msgid "cannot move system relation \"%s\"" msgstr "Systemrelation »%s« kann nicht verschoben werden" -#: catalog/index.c:3835 +#: catalog/index.c:3833 #, c-format msgid "index \"%s\" was reindexed" msgstr "Index »%s« wurde neu indiziert" -#: catalog/index.c:3972 +#: catalog/index.c:3970 #, c-format msgid "cannot reindex invalid index \"%s.%s\" on TOAST table, skipping" msgstr "ungültiger Index »%s.%s« einer TOAST-Tabelle kann nicht reindizert werden, wird übersprungen" @@ -4819,7 +4825,7 @@ msgstr "Textsuchekonfiguration »%s« existiert nicht" msgid "cross-database references are not implemented: %s" msgstr "Verweise auf andere Datenbanken sind nicht implementiert: %s" -#: catalog/namespace.c:2889 gram.y:18258 gram.y:18298 parser/parse_expr.c:813 +#: catalog/namespace.c:2889 gram.y:18265 gram.y:18305 parser/parse_expr.c:813 #: parser/parse_target.c:1276 #, c-format msgid "improper qualified name (too many dotted names): %s" @@ -4836,7 +4842,7 @@ msgid "cannot move objects into or out of TOAST schema" msgstr "Objekte können nicht in oder aus TOAST-Schemas verschoben werden" #: catalog/namespace.c:3098 commands/schemacmds.c:263 commands/schemacmds.c:343 -#: commands/tablecmds.c:1270 +#: commands/tablecmds.c:1287 #, c-format msgid "schema \"%s\" does not exist" msgstr "Schema »%s« existiert nicht" @@ -4871,33 +4877,33 @@ msgstr "während der Wiederherstellung können keine temporären Tabellen erzeug msgid "cannot create temporary tables during a parallel operation" msgstr "während einer parallelen Operation können keine temporären Tabellen erzeugt werden" -#: catalog/namespace.c:4338 commands/tablespace.c:1236 commands/variable.c:64 -#: utils/misc/guc.c:12065 utils/misc/guc.c:12167 +#: catalog/namespace.c:4338 commands/tablespace.c:1231 commands/variable.c:64 +#: tcop/postgres.c:3649 utils/misc/guc.c:12083 utils/misc/guc.c:12185 #, c-format msgid "List syntax is invalid." msgstr "Die Listensyntax ist ungültig." #: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 -#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2181 -#: commands/tablecmds.c:12398 +#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2198 +#: commands/tablecmds.c:12528 #, c-format msgid "\"%s\" is not a table" msgstr "»%s« ist keine Tabelle" #: catalog/objectaddress.c:1398 commands/tablecmds.c:259 -#: commands/tablecmds.c:17260 commands/view.c:119 +#: commands/tablecmds.c:17398 commands/view.c:119 #, c-format msgid "\"%s\" is not a view" msgstr "»%s« ist keine Sicht" #: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 -#: commands/tablecmds.c:17265 +#: commands/tablecmds.c:17403 #, c-format msgid "\"%s\" is not a materialized view" msgstr "»%s« ist keine materialisierte Sicht" #: catalog/objectaddress.c:1412 commands/tablecmds.c:283 -#: commands/tablecmds.c:17270 +#: commands/tablecmds.c:17408 #, c-format msgid "\"%s\" is not a foreign table" msgstr "»%s« ist keine Fremdtabelle" @@ -4941,7 +4947,7 @@ msgid "user mapping for user \"%s\" on server \"%s\" does not exist" msgstr "Benutzerabbildung für Benutzer »%s« auf Server »%s« existiert nicht" #: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 -#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:691 +#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:701 #, c-format msgid "server \"%s\" does not exist" msgstr "Server »%s« existiert nicht" @@ -5657,8 +5663,8 @@ msgstr "Partition »%s« kann nicht abgetrennt werden" msgid "The partition is being detached concurrently or has an unfinished detach." msgstr "Die Partition wird nebenläufig abgetrennt oder hat eine unfertige Abtrennoperation." -#: catalog/pg_inherits.c:596 commands/tablecmds.c:4528 -#: commands/tablecmds.c:15577 +#: catalog/pg_inherits.c:596 commands/tablecmds.c:4551 +#: commands/tablecmds.c:15708 #, c-format msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending detach operation." msgstr "Verwendet Sie ALTER TABLE ... DETACH PARTITION ... FINALIZE, um die unerledigte Abtrennoperation abzuschließen." @@ -6343,7 +6349,7 @@ msgstr "kann temporäre Tabellen anderer Sitzungen nicht clustern" msgid "there is no previously clustered index for table \"%s\"" msgstr "es gibt keinen bereits geclusterten Index für Tabelle »%s«" -#: commands/cluster.c:190 commands/tablecmds.c:14275 commands/tablecmds.c:16156 +#: commands/cluster.c:190 commands/tablecmds.c:14405 commands/tablecmds.c:16287 #, c-format msgid "index \"%s\" for table \"%s\" does not exist" msgstr "Index »%s« für Tabelle »%s« existiert nicht" @@ -6358,7 +6364,7 @@ msgstr "globaler Katalog kann nicht geclustert werden" msgid "cannot vacuum temporary tables of other sessions" msgstr "temporäre Tabellen anderer Sitzungen können nicht gevacuumt werden" -#: commands/cluster.c:511 commands/tablecmds.c:16166 +#: commands/cluster.c:511 commands/tablecmds.c:16297 #, c-format msgid "\"%s\" is not an index for table \"%s\"" msgstr "»%s« ist kein Index für Tabelle »%s«" @@ -6418,7 +6424,7 @@ msgid "collation attribute \"%s\" not recognized" msgstr "Attribut »%s« für Sortierfolge unbekannt" #: commands/collationcmds.c:119 commands/collationcmds.c:125 -#: commands/define.c:389 commands/tablecmds.c:7857 +#: commands/define.c:389 commands/tablecmds.c:7880 #: replication/pgoutput/pgoutput.c:311 replication/pgoutput/pgoutput.c:334 #: replication/pgoutput/pgoutput.c:348 replication/pgoutput/pgoutput.c:358 #: replication/pgoutput/pgoutput.c:368 replication/pgoutput/pgoutput.c:378 @@ -6483,12 +6489,12 @@ msgstr "Sortierfolge »%s« für Kodierung »%s« existiert bereits in Schema » msgid "collation \"%s\" already exists in schema \"%s\"" msgstr "Sortierfolge »%s« existiert bereits in Schema »%s«" -#: commands/collationcmds.c:395 commands/dbcommands.c:2432 +#: commands/collationcmds.c:395 commands/dbcommands.c:2448 #, c-format msgid "changing version from %s to %s" msgstr "Version wird von %s in %s geändert" -#: commands/collationcmds.c:410 commands/dbcommands.c:2445 +#: commands/collationcmds.c:410 commands/dbcommands.c:2461 #, c-format msgid "version has not changed" msgstr "Version hat sich nicht geändert" @@ -6503,7 +6509,7 @@ msgstr "konnte Locale-Namen »%s« nicht in Sprach-Tag umwandeln: %s" msgid "must be superuser to import system collations" msgstr "nur Superuser können Systemsortierfolgen importieren" -#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:679 +#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:683 #: libpq/be-secure-common.c:81 #, c-format msgid "could not execute command \"%s\": %m" @@ -6514,10 +6520,10 @@ msgstr "konnte Befehl »%s« nicht ausführen: %m" msgid "no usable system locales were found" msgstr "keine brauchbaren System-Locales gefunden" -#: commands/comment.c:61 commands/dbcommands.c:1549 commands/dbcommands.c:1761 -#: commands/dbcommands.c:1874 commands/dbcommands.c:2068 -#: commands/dbcommands.c:2310 commands/dbcommands.c:2405 -#: commands/dbcommands.c:2515 commands/dbcommands.c:3014 +#: commands/comment.c:61 commands/dbcommands.c:1551 commands/dbcommands.c:1769 +#: commands/dbcommands.c:1884 commands/dbcommands.c:2078 +#: commands/dbcommands.c:2322 commands/dbcommands.c:2419 +#: commands/dbcommands.c:2532 commands/dbcommands.c:3034 #: utils/init/postinit.c:947 utils/init/postinit.c:1011 #: utils/init/postinit.c:1083 #, c-format @@ -6630,7 +6636,7 @@ msgstr "Argument von Option »%s« muss eine Liste aus Spaltennamen sein" msgid "argument to option \"%s\" must be a valid encoding name" msgstr "Argument von Option »%s« muss ein gültiger Kodierungsname sein" -#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2258 +#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2270 #, c-format msgid "option \"%s\" not recognized" msgstr "Option »%s« nicht erkannt" @@ -6746,14 +6752,14 @@ msgid "Generated columns cannot be used in COPY." msgstr "Generierte Spalten können nicht in COPY verwendet werden." #: commands/copy.c:784 commands/indexcmds.c:1826 commands/statscmds.c:243 -#: commands/tablecmds.c:2376 commands/tablecmds.c:3032 -#: commands/tablecmds.c:3538 parser/parse_relation.c:3669 +#: commands/tablecmds.c:2393 commands/tablecmds.c:3049 +#: commands/tablecmds.c:3558 parser/parse_relation.c:3669 #: parser/parse_relation.c:3689 utils/adt/tsvector_op.c:2688 #, c-format msgid "column \"%s\" does not exist" msgstr "Spalte »%s« existiert nicht" -#: commands/copy.c:791 commands/tablecmds.c:2402 commands/trigger.c:963 +#: commands/copy.c:791 commands/tablecmds.c:2419 commands/trigger.c:963 #: parser/parse_target.c:1093 parser/parse_target.c:1104 #, c-format msgid "column \"%s\" specified more than once" @@ -6824,12 +6830,12 @@ msgstr "COPY FREEZE kann nicht durchgeführt werden wegen vorheriger Aktivität msgid "cannot perform COPY FREEZE because the table was not created or truncated in the current subtransaction" msgstr "COPY FREEZE kann nicht durchgeführt werden, weil die Tabelle nicht in der aktuellen Transaktion erzeugt oder geleert wurde" -#: commands/copyfrom.c:1270 commands/copyto.c:611 +#: commands/copyfrom.c:1270 commands/copyto.c:615 #, c-format msgid "FORCE_NOT_NULL column \"%s\" not referenced by COPY" msgstr "Spalte »%s« mit FORCE_NOT_NULL wird von COPY nicht verwendet" -#: commands/copyfrom.c:1293 commands/copyto.c:634 +#: commands/copyfrom.c:1293 commands/copyto.c:638 #, c-format msgid "FORCE_NULL column \"%s\" not referenced by COPY" msgstr "Spalte »%s« mit FORCE_NULL wird von COPY nicht verwendet" @@ -6844,7 +6850,7 @@ msgstr "Standardumwandlung von Kodierung »%s« nach »%s« existiert nicht" msgid "COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \\copy." msgstr "Mit COPY FROM liest der PostgreSQL-Serverprozess eine Datei. Möglicherweise möchten Sie Funktionalität auf Client-Seite verwenden, wie zum Beispiel \\copy in psql." -#: commands/copyfrom.c:1541 commands/copyto.c:731 +#: commands/copyfrom.c:1541 commands/copyto.c:735 #, c-format msgid "\"%s\" is a directory" msgstr "»%s« ist ein Verzeichnis" @@ -6895,7 +6901,7 @@ msgid "could not read from COPY file: %m" msgstr "konnte nicht aus COPY-Datei lesen: %m" #: commands/copyfromparse.c:278 commands/copyfromparse.c:303 -#: tcop/postgres.c:358 +#: tcop/postgres.c:362 #, c-format msgid "unexpected EOF on client connection with an open transaction" msgstr "unerwartetes EOF auf Client-Verbindung mit einer offenen Transaktion" @@ -7074,7 +7080,7 @@ msgstr "DO-INSTEAD-Regeln mit Bedingung werden für COPY nicht unterstützt" #: commands/copyto.c:468 #, c-format -msgid "DO ALSO rules are not supported for the COPY" +msgid "DO ALSO rules are not supported for COPY" msgstr "DO-ALSO-Regeln werden für COPY nicht unterstützt" #: commands/copyto.c:473 @@ -7087,32 +7093,37 @@ msgstr "DO-INSTEAD-Regeln mit mehreren Anweisungen werden für COPY nicht unters msgid "COPY (SELECT INTO) is not supported" msgstr "COPY (SELECT INTO) wird nicht unterstützt" -#: commands/copyto.c:500 +#: commands/copyto.c:489 +#, c-format +msgid "COPY query must not be a utility command" +msgstr "COPY-Anfrage darf kein Utility-Befehl sein" + +#: commands/copyto.c:504 #, c-format msgid "COPY query must have a RETURNING clause" msgstr "COPY-Anfrage muss eine RETURNING-Klausel haben" -#: commands/copyto.c:529 +#: commands/copyto.c:533 #, c-format msgid "relation referenced by COPY statement has changed" msgstr "die von der COPY-Anweisung verwendete Relation hat sich geändert" -#: commands/copyto.c:588 +#: commands/copyto.c:592 #, c-format msgid "FORCE_QUOTE column \"%s\" not referenced by COPY" msgstr "FORCE_QUOTE-Spalte »%s« wird von COPY nicht verwendet" -#: commands/copyto.c:696 +#: commands/copyto.c:700 #, c-format msgid "relative path not allowed for COPY to file" msgstr "relativer Pfad bei COPY in Datei nicht erlaubt" -#: commands/copyto.c:715 +#: commands/copyto.c:719 #, c-format msgid "could not open file \"%s\" for writing: %m" msgstr "konnte Datei »%s« nicht zum Schreiben öffnen: %m" -#: commands/copyto.c:718 +#: commands/copyto.c:722 #, c-format msgid "COPY TO instructs the PostgreSQL server process to write a file. You may want a client-side facility such as psql's \\copy." msgstr "Mit COPY TO schreibt der PostgreSQL-Serverprozess eine Datei. Möglicherweise möchten Sie Funktionalität auf Client-Seite verwenden, wie zum Beispiel \\copy in psql." @@ -7157,7 +7168,7 @@ msgstr "%s ist kein gültiger Kodierungsname" msgid "unrecognized locale provider: %s" msgstr "unbekannter Locale-Provider: %s" -#: commands/dbcommands.c:920 commands/dbcommands.c:2291 commands/user.c:237 +#: commands/dbcommands.c:920 commands/dbcommands.c:2303 commands/user.c:237 #: commands/user.c:611 #, c-format msgid "invalid connection limit: %d" @@ -7178,7 +7189,7 @@ msgstr "Template-Datenbank »%s« existiert nicht" msgid "cannot use invalid database \"%s\" as template" msgstr "ungültige Datenbank »%s« kann nicht als Template verwendet werden" -#: commands/dbcommands.c:976 commands/dbcommands.c:2320 +#: commands/dbcommands.c:976 commands/dbcommands.c:2333 #: utils/init/postinit.c:1026 #, c-format msgid "Use DROP DATABASE to drop invalid databases." @@ -7294,7 +7305,7 @@ msgstr "Die Template-Datenbank wurde mit Sortierfolgenversion %s erzeugt, aber d msgid "Rebuild all objects in the template database that use the default collation and run ALTER DATABASE %s REFRESH COLLATION VERSION, or build PostgreSQL with the right library version." msgstr "Bauen Sie alle Objekte in der Template-Datenbank, die die Standardsortierfolge verwenden, neu und führen Sie ALTER DATABASE %s REFRESH COLLATION VERSION aus, oder bauen Sie PostgreSQL mit der richtigen Bibliotheksversion." -#: commands/dbcommands.c:1186 commands/dbcommands.c:1920 +#: commands/dbcommands.c:1186 commands/dbcommands.c:1930 #, c-format msgid "pg_global cannot be used as default tablespace" msgstr "pg_global kann nicht als Standard-Tablespace verwendet werden" @@ -7309,7 +7320,7 @@ msgstr "kann neuen Standard-Tablespace »%s« nicht setzen" msgid "There is a conflict because database \"%s\" already has some tables in this tablespace." msgstr "Es gibt einen Konflikt, weil Datenbank »%s« schon einige Tabellen in diesem Tablespace hat." -#: commands/dbcommands.c:1244 commands/dbcommands.c:1790 +#: commands/dbcommands.c:1244 commands/dbcommands.c:1798 #, c-format msgid "database \"%s\" already exists" msgstr "Datenbank »%s« existiert bereits" @@ -7344,132 +7355,132 @@ msgstr "Die gewählte LC_CTYPE-Einstellung verlangt die Kodierung »%s«." msgid "The chosen LC_COLLATE setting requires encoding \"%s\"." msgstr "Die gewählte LC_COLLATE-Einstellung verlangt die Kodierung »%s«." -#: commands/dbcommands.c:1556 +#: commands/dbcommands.c:1558 #, c-format msgid "database \"%s\" does not exist, skipping" msgstr "Datenbank »%s« existiert nicht, wird übersprungen" -#: commands/dbcommands.c:1580 +#: commands/dbcommands.c:1582 #, c-format msgid "cannot drop a template database" msgstr "Template-Datenbank kann nicht gelöscht werden" -#: commands/dbcommands.c:1586 +#: commands/dbcommands.c:1588 #, c-format msgid "cannot drop the currently open database" msgstr "kann aktuell geöffnete Datenbank nicht löschen" -#: commands/dbcommands.c:1599 +#: commands/dbcommands.c:1601 #, c-format msgid "database \"%s\" is used by an active logical replication slot" msgstr "Datenbank »%s« wird von einem aktiven logischen Replikations-Slot verwendet" -#: commands/dbcommands.c:1601 +#: commands/dbcommands.c:1603 #, c-format msgid "There is %d active slot." msgid_plural "There are %d active slots." msgstr[0] "%d Slot ist vorhanden." msgstr[1] "%d Slots sind vorhanden." -#: commands/dbcommands.c:1615 +#: commands/dbcommands.c:1617 #, c-format msgid "database \"%s\" is being used by logical replication subscription" msgstr "Datenbank »%s« wird von einer Subskription für logische Replikation verwendet" -#: commands/dbcommands.c:1617 +#: commands/dbcommands.c:1619 #, c-format msgid "There is %d subscription." msgid_plural "There are %d subscriptions." msgstr[0] "%d Subskription ist vorhanden." msgstr[1] "%d Subskriptionen sind vorhanden." -#: commands/dbcommands.c:1638 commands/dbcommands.c:1812 -#: commands/dbcommands.c:1942 +#: commands/dbcommands.c:1640 commands/dbcommands.c:1820 +#: commands/dbcommands.c:1952 #, c-format msgid "database \"%s\" is being accessed by other users" msgstr "auf Datenbank »%s« wird von anderen Benutzern zugegriffen" -#: commands/dbcommands.c:1772 +#: commands/dbcommands.c:1780 #, c-format msgid "permission denied to rename database" msgstr "keine Berechtigung, um Datenbank umzubenennen" -#: commands/dbcommands.c:1801 +#: commands/dbcommands.c:1809 #, c-format msgid "current database cannot be renamed" msgstr "aktuelle Datenbank kann nicht umbenannt werden" -#: commands/dbcommands.c:1898 +#: commands/dbcommands.c:1908 #, c-format msgid "cannot change the tablespace of the currently open database" msgstr "kann den Tablespace der aktuell geöffneten Datenbank nicht ändern" -#: commands/dbcommands.c:2004 +#: commands/dbcommands.c:2014 #, c-format msgid "some relations of database \"%s\" are already in tablespace \"%s\"" msgstr "einige Relationen von Datenbank »%s« ist bereits in Tablespace »%s«" -#: commands/dbcommands.c:2006 +#: commands/dbcommands.c:2016 #, c-format msgid "You must move them back to the database's default tablespace before using this command." msgstr "Sie müssen sie zurück in den Standard-Tablespace der Datenbank verschieben, bevor Sie diesen Befehl verwenden können." -#: commands/dbcommands.c:2133 commands/dbcommands.c:2852 -#: commands/dbcommands.c:3152 commands/dbcommands.c:3266 +#: commands/dbcommands.c:2145 commands/dbcommands.c:2872 +#: commands/dbcommands.c:3172 commands/dbcommands.c:3286 #, c-format msgid "some useless files may be left behind in old database directory \"%s\"" msgstr "einige nutzlose Dateien wurde möglicherweise im alten Datenbankverzeichnis »%s« zurückgelassen" -#: commands/dbcommands.c:2194 +#: commands/dbcommands.c:2206 #, c-format msgid "unrecognized DROP DATABASE option \"%s\"" msgstr "unbekannte DROP-DATABASE-Option »%s«" -#: commands/dbcommands.c:2272 +#: commands/dbcommands.c:2284 #, c-format msgid "option \"%s\" cannot be specified with other options" msgstr "Option »%s« kann nicht mit anderen Optionen angegeben werden" -#: commands/dbcommands.c:2319 +#: commands/dbcommands.c:2332 #, c-format msgid "cannot alter invalid database \"%s\"" msgstr "ungültige Datenbank »%s« kann nicht geändert werden" -#: commands/dbcommands.c:2336 +#: commands/dbcommands.c:2349 #, c-format msgid "cannot disallow connections for current database" msgstr "Verbindungen mit der aktuellen Datenbank können nicht verboten werden" -#: commands/dbcommands.c:2555 +#: commands/dbcommands.c:2572 #, c-format msgid "permission denied to change owner of database" msgstr "keine Berechtigung, um Eigentümer der Datenbank zu ändern" -#: commands/dbcommands.c:2958 +#: commands/dbcommands.c:2978 #, c-format msgid "There are %d other session(s) and %d prepared transaction(s) using the database." msgstr "%d andere Sitzung(en) und %d vorbereitete Transaktion(en) verwenden die Datenbank." -#: commands/dbcommands.c:2961 +#: commands/dbcommands.c:2981 #, c-format msgid "There is %d other session using the database." msgid_plural "There are %d other sessions using the database." msgstr[0] "%d andere Sitzung verwendet die Datenbank." msgstr[1] "%d andere Sitzungen verwenden die Datenbank." -#: commands/dbcommands.c:2966 storage/ipc/procarray.c:3859 +#: commands/dbcommands.c:2986 storage/ipc/procarray.c:3859 #, c-format msgid "There is %d prepared transaction using the database." msgid_plural "There are %d prepared transactions using the database." msgstr[0] "%d vorbereitete Transaktion verwendet die Datenbank." msgstr[1] "%d vorbereitete Transaktionen verwenden die Datenbank." -#: commands/dbcommands.c:3108 +#: commands/dbcommands.c:3128 #, c-format msgid "missing directory \"%s\"" msgstr "Verzeichnis »%s« fehlt" -#: commands/dbcommands.c:3168 commands/tablespace.c:190 +#: commands/dbcommands.c:3188 commands/tablespace.c:190 #: commands/tablespace.c:654 #, c-format msgid "could not stat directory \"%s\": %m" @@ -7523,14 +7534,14 @@ msgstr "»%s« ist eine Aggregatfunktion" msgid "Use DROP AGGREGATE to drop aggregate functions." msgstr "Verwenden Sie DROP AGGREGATE, um Aggregatfunktionen zu löschen." -#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3622 -#: commands/tablecmds.c:3780 commands/tablecmds.c:3832 -#: commands/tablecmds.c:16583 tcop/utility.c:1332 +#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3642 +#: commands/tablecmds.c:3800 commands/tablecmds.c:3852 +#: commands/tablecmds.c:16714 tcop/utility.c:1332 #, c-format msgid "relation \"%s\" does not exist, skipping" msgstr "Relation »%s« existiert nicht, wird übersprungen" -#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1275 +#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1292 #, c-format msgid "schema \"%s\" does not exist, skipping" msgstr "Schema »%s« existiert nicht, wird übersprungen" @@ -7840,7 +7851,7 @@ msgid "parameter \"%s\" cannot be set in a secondary extension control file" msgstr "Parameter »%s« kann nicht in einer sekundären Erweitungskontrolldatei gesetzt werden" #: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 -#: utils/misc/guc.c:7380 +#: utils/misc/guc.c:7392 #, c-format msgid "parameter \"%s\" requires a Boolean value" msgstr "Parameter »%s« erfordert einen Boole’schen Wert" @@ -8050,7 +8061,7 @@ msgstr "Nur Superuser können den Eigentümer eines Fremddaten-Wrappers ändern. msgid "The owner of a foreign-data wrapper must be a superuser." msgstr "Der Eigentümer eines Fremddaten-Wrappers muss ein Superuser sein." -#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:669 +#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:679 #, c-format msgid "foreign-data wrapper \"%s\" does not exist" msgstr "Fremddaten-Wrapper »%s« existiert nicht" @@ -8110,7 +8121,7 @@ msgstr "Benutzerabbildung für »%s« existiert nicht für Server »%s«" msgid "user mapping for \"%s\" does not exist for server \"%s\", skipping" msgstr "Benutzerabbildung für »%s« existiert nicht für Server »%s«, wird übersprungen" -#: commands/foreigncmds.c:1507 foreign/foreign.c:390 +#: commands/foreigncmds.c:1507 foreign/foreign.c:400 #, c-format msgid "foreign-data wrapper \"%s\" has no handler" msgstr "Fremddaten-Wrapper »%s« hat keinen Handler" @@ -8518,12 +8529,12 @@ msgstr "kann keinen Exclusion-Constraint für partitionierte Tabelle »%s« erze msgid "cannot create indexes on temporary tables of other sessions" msgstr "kann keine Indexe für temporäre Tabellen anderer Sitzungen erzeugen" -#: commands/indexcmds.c:760 commands/tablecmds.c:782 commands/tablespace.c:1204 +#: commands/indexcmds.c:760 commands/tablecmds.c:799 commands/tablespace.c:1199 #, c-format msgid "cannot specify default tablespace for partitioned relations" msgstr "für partitionierte Relationen kann kein Standard-Tablespace angegeben werden" -#: commands/indexcmds.c:792 commands/tablecmds.c:813 commands/tablecmds.c:3321 +#: commands/indexcmds.c:792 commands/tablecmds.c:830 commands/tablecmds.c:3338 #, c-format msgid "only shared relations can be placed in pg_global tablespace" msgstr "nur geteilte Relationen können in den Tablespace »pg_global« gelegt werden" @@ -8598,13 +8609,13 @@ msgstr "Tabelle »%s« enthält Partitionen, die Fremdtabellen sind." msgid "functions in index predicate must be marked IMMUTABLE" msgstr "Funktionen im Indexprädikat müssen als IMMUTABLE markiert sein" -#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2545 -#: parser/parse_utilcmd.c:2680 +#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2573 +#: parser/parse_utilcmd.c:2708 #, c-format msgid "column \"%s\" named in key does not exist" msgstr "Spalte »%s«, die im Schlüssel verwendet wird, existiert nicht" -#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1831 +#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1859 #, c-format msgid "expressions are not supported in included columns" msgstr "in eingeschlossenen Spalten werden keine Ausdrücke unterstützt" @@ -8639,9 +8650,9 @@ msgstr "inkludierte Spalte unterstützt die Optionen NULLS FIRST/LAST nicht" msgid "could not determine which collation to use for index expression" msgstr "konnte die für den Indexausdruck zu verwendende Sortierfolge nicht bestimmen" -#: commands/indexcmds.c:1962 commands/tablecmds.c:17603 commands/typecmds.c:807 -#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3795 -#: utils/adt/misc.c:601 +#: commands/indexcmds.c:1962 commands/tablecmds.c:17741 commands/typecmds.c:807 +#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3823 +#: utils/adt/misc.c:594 #, c-format msgid "collations are not supported by type %s" msgstr "Sortierfolgen werden von Typ %s nicht unterstützt" @@ -8676,8 +8687,8 @@ msgstr "Zugriffsmethode »%s« unterstützt die Optionen ASC/DESC nicht" msgid "access method \"%s\" does not support NULLS FIRST/LAST options" msgstr "Zugriffsmethode »%s« unterstützt die Optionen NULLS FIRST/LAST nicht" -#: commands/indexcmds.c:2144 commands/tablecmds.c:17628 -#: commands/tablecmds.c:17634 commands/typecmds.c:2302 +#: commands/indexcmds.c:2144 commands/tablecmds.c:17766 +#: commands/tablecmds.c:17772 commands/typecmds.c:2302 #, c-format msgid "data type %s has no default operator class for access method \"%s\"" msgstr "Datentyp %s hat keine Standardoperatorklasse für Zugriffsmethode »%s«" @@ -8794,7 +8805,7 @@ msgstr "kann Relation »%s« nicht sperren" msgid "CONCURRENTLY cannot be used when the materialized view is not populated" msgstr "CONCURRENTLY kann nicht verwendet werden, wenn die materialisierte Sicht nicht befüllt ist" -#: commands/matview.c:199 gram.y:17995 +#: commands/matview.c:199 gram.y:18002 #, c-format msgid "%s and %s options cannot be used together" msgstr "Optionen %s und %s können nicht zusammen verwendet werden" @@ -9092,10 +9103,10 @@ msgid "operator attribute \"%s\" cannot be changed" msgstr "Operator-Attribut »%s« kann nicht geändert werden" #: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 -#: commands/tablecmds.c:1606 commands/tablecmds.c:2194 -#: commands/tablecmds.c:3432 commands/tablecmds.c:6354 -#: commands/tablecmds.c:9197 commands/tablecmds.c:17181 -#: commands/tablecmds.c:17216 commands/trigger.c:328 commands/trigger.c:1378 +#: commands/tablecmds.c:1623 commands/tablecmds.c:2211 +#: commands/tablecmds.c:3452 commands/tablecmds.c:6377 +#: commands/tablecmds.c:9220 commands/tablecmds.c:17319 +#: commands/tablecmds.c:17354 commands/trigger.c:328 commands/trigger.c:1378 #: commands/trigger.c:1488 rewrite/rewriteDefine.c:279 #: rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 #, c-format @@ -9444,98 +9455,98 @@ msgstr "lastval ist in dieser Sitzung noch nicht definiert" msgid "setval: value %lld is out of bounds for sequence \"%s\" (%lld..%lld)" msgstr "setval: Wert %lld ist außerhalb des gültigen Bereichs von Sequenz »%s« (%lld..%lld)" -#: commands/sequence.c:1372 +#: commands/sequence.c:1375 #, c-format msgid "invalid sequence option SEQUENCE NAME" msgstr "ungültige Sequenzoption SEQUENCE NAME" -#: commands/sequence.c:1398 +#: commands/sequence.c:1401 #, c-format msgid "identity column type must be smallint, integer, or bigint" msgstr "Typ von Identitätsspalte muss smallint, integer oder bigint sein" -#: commands/sequence.c:1399 +#: commands/sequence.c:1402 #, c-format msgid "sequence type must be smallint, integer, or bigint" msgstr "Sequenztyp muss smallint, integer oder bigint sein" -#: commands/sequence.c:1433 +#: commands/sequence.c:1436 #, c-format msgid "INCREMENT must not be zero" msgstr "INCREMENT darf nicht null sein" -#: commands/sequence.c:1481 +#: commands/sequence.c:1484 #, c-format msgid "MAXVALUE (%lld) is out of range for sequence data type %s" msgstr "MAXVALUE (%lld) ist außerhalb des gültigen Bereichs für Sequenzdatentyp %s" -#: commands/sequence.c:1513 +#: commands/sequence.c:1516 #, c-format msgid "MINVALUE (%lld) is out of range for sequence data type %s" msgstr "MINVALUE (%lld) ist außerhalb des gültigen Bereichs für Sequenzdatentyp %s" -#: commands/sequence.c:1521 +#: commands/sequence.c:1524 #, c-format msgid "MINVALUE (%lld) must be less than MAXVALUE (%lld)" msgstr "MINVALUE (%lld) muss kleiner als MAXVALUE (%lld) sein" -#: commands/sequence.c:1542 +#: commands/sequence.c:1545 #, c-format msgid "START value (%lld) cannot be less than MINVALUE (%lld)" msgstr "START-Wert (%lld) kann nicht kleiner als MINVALUE (%lld) sein" -#: commands/sequence.c:1548 +#: commands/sequence.c:1551 #, c-format msgid "START value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "START-Wert (%lld) kann nicht größer als MAXVALUE (%lld) sein" -#: commands/sequence.c:1572 +#: commands/sequence.c:1575 #, c-format msgid "RESTART value (%lld) cannot be less than MINVALUE (%lld)" msgstr "RESTART-Wert (%lld) kann nicht kleiner als MINVALUE (%lld) sein" -#: commands/sequence.c:1578 +#: commands/sequence.c:1581 #, c-format msgid "RESTART value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "RESTART-Wert (%lld) kann nicht größer als MAXVALUE (%lld) sein" -#: commands/sequence.c:1589 +#: commands/sequence.c:1592 #, c-format msgid "CACHE (%lld) must be greater than zero" msgstr "CACHE (%lld) muss größer als null sein" -#: commands/sequence.c:1625 +#: commands/sequence.c:1628 #, c-format msgid "invalid OWNED BY option" msgstr "ungültige OWNED BY Option" -#: commands/sequence.c:1626 +#: commands/sequence.c:1629 #, c-format msgid "Specify OWNED BY table.column or OWNED BY NONE." msgstr "Geben Sie OWNED BY tabelle.spalte oder OWNED BY NONE an." -#: commands/sequence.c:1651 +#: commands/sequence.c:1654 #, c-format msgid "sequence cannot be owned by relation \"%s\"" msgstr "Sequenz kann nicht mit Relation »%s« verknüpft werden" -#: commands/sequence.c:1659 +#: commands/sequence.c:1662 #, c-format msgid "sequence must have same owner as table it is linked to" msgstr "Sequenz muss selben Eigentümer wie die verknüpfte Tabelle haben" -#: commands/sequence.c:1663 +#: commands/sequence.c:1666 #, c-format msgid "sequence must be in same schema as table it is linked to" msgstr "Sequenz muss im selben Schema wie die verknüpfte Tabelle sein" -#: commands/sequence.c:1685 +#: commands/sequence.c:1688 #, c-format msgid "cannot change ownership of identity sequence" msgstr "kann Eigentümer einer Identitätssequenz nicht ändern" -#: commands/sequence.c:1686 commands/tablecmds.c:13966 -#: commands/tablecmds.c:16603 +#: commands/sequence.c:1689 commands/tablecmds.c:14096 +#: commands/tablecmds.c:16734 #, c-format msgid "Sequence \"%s\" is linked to table \"%s\"." msgstr "Sequenz »%s« ist mit Tabelle »%s« verknüpft." @@ -9605,12 +9616,12 @@ msgstr "doppelter Spaltenname in Statistikdefinition" msgid "duplicate expression in statistics definition" msgstr "doppelter Ausdruck in Statistikdefinition" -#: commands/statscmds.c:620 commands/tablecmds.c:8161 +#: commands/statscmds.c:620 commands/tablecmds.c:8184 #, c-format msgid "statistics target %d is too low" msgstr "Statistikziel %d ist zu niedrig" -#: commands/statscmds.c:628 commands/tablecmds.c:8169 +#: commands/statscmds.c:628 commands/tablecmds.c:8192 #, c-format msgid "lowering statistics target to %d" msgstr "setze Statistikziel auf %d herab" @@ -9868,8 +9879,8 @@ msgstr "materialisierte Sicht »%s« existiert nicht, wird übersprungen" msgid "Use DROP MATERIALIZED VIEW to remove a materialized view." msgstr "Verwenden Sie DROP MATERIALIZED VIEW, um eine materialisierte Sicht zu löschen." -#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19119 -#: parser/parse_utilcmd.c:2277 +#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19313 +#: parser/parse_utilcmd.c:2305 #, c-format msgid "index \"%s\" does not exist" msgstr "Index »%s« existiert nicht" @@ -9892,8 +9903,8 @@ msgstr "»%s« ist kein Typ" msgid "Use DROP TYPE to remove a type." msgstr "Verwenden Sie DROP TYPE, um einen Typen zu löschen." -#: commands/tablecmds.c:281 commands/tablecmds.c:13805 -#: commands/tablecmds.c:16306 +#: commands/tablecmds.c:281 commands/tablecmds.c:13935 +#: commands/tablecmds.c:16437 #, c-format msgid "foreign table \"%s\" does not exist" msgstr "Fremdtabelle »%s« existiert nicht" @@ -9907,130 +9918,130 @@ msgstr "Fremdtabelle »%s« existiert nicht, wird übersprungen" msgid "Use DROP FOREIGN TABLE to remove a foreign table." msgstr "Verwenden Sie DROP FOREIGN TABLE, um eine Fremdtabelle zu löschen." -#: commands/tablecmds.c:698 +#: commands/tablecmds.c:715 #, c-format msgid "ON COMMIT can only be used on temporary tables" msgstr "ON COMMIT kann nur mit temporären Tabellen verwendet werden" -#: commands/tablecmds.c:729 +#: commands/tablecmds.c:746 #, c-format msgid "cannot create temporary table within security-restricted operation" msgstr "kann temporäre Tabelle nicht in einer sicherheitsbeschränkten Operation erzeugen" -#: commands/tablecmds.c:765 commands/tablecmds.c:15113 +#: commands/tablecmds.c:782 commands/tablecmds.c:15244 #, c-format msgid "relation \"%s\" would be inherited from more than once" msgstr "von der Relation »%s« würde mehrmals geerbt werden" -#: commands/tablecmds.c:946 +#: commands/tablecmds.c:963 #, c-format msgid "specifying a table access method is not supported on a partitioned table" msgstr "Angabe einer Tabellenzugriffsmethode wird für partitionierte Tabellen nicht unterstützt" -#: commands/tablecmds.c:1039 +#: commands/tablecmds.c:1056 #, c-format msgid "\"%s\" is not partitioned" msgstr "»%s« ist nicht partitioniert" -#: commands/tablecmds.c:1134 +#: commands/tablecmds.c:1151 #, c-format msgid "cannot partition using more than %d columns" msgstr "Partitionierung kann nicht mehr als %d Spalten verwenden" -#: commands/tablecmds.c:1190 +#: commands/tablecmds.c:1207 #, c-format msgid "cannot create foreign partition of partitioned table \"%s\"" msgstr "kann keine Fremdpartition der partitionierten Tabelle »%s« erzeugen" -#: commands/tablecmds.c:1192 +#: commands/tablecmds.c:1209 #, c-format msgid "Table \"%s\" contains indexes that are unique." msgstr "Tabelle »%s« enthält Unique Indexe." -#: commands/tablecmds.c:1355 +#: commands/tablecmds.c:1372 #, c-format msgid "DROP INDEX CONCURRENTLY does not support dropping multiple objects" msgstr "DROP INDEX CONCURRENTLY unterstützt das Löschen von mehreren Objekten nicht" -#: commands/tablecmds.c:1359 +#: commands/tablecmds.c:1376 #, c-format msgid "DROP INDEX CONCURRENTLY does not support CASCADE" msgstr "DROP INDEX CONCURRENTLY unterstützt kein CASCADE" -#: commands/tablecmds.c:1463 +#: commands/tablecmds.c:1480 #, c-format msgid "cannot drop partitioned index \"%s\" concurrently" msgstr "kann partitionierten Index »%s« nicht nebenläufig löschen" -#: commands/tablecmds.c:1751 +#: commands/tablecmds.c:1768 #, c-format msgid "cannot truncate only a partitioned table" msgstr "kann nicht nur eine partitionierte Tabelle leeren" -#: commands/tablecmds.c:1752 +#: commands/tablecmds.c:1769 #, c-format msgid "Do not specify the ONLY keyword, or use TRUNCATE ONLY on the partitions directly." msgstr "Lassen Sie das Schlüsselwort ONLY weg oder wenden Sie TRUNCATE ONLY direkt auf die Partitionen an." -#: commands/tablecmds.c:1824 +#: commands/tablecmds.c:1841 #, c-format msgid "truncate cascades to table \"%s\"" msgstr "Truncate-Vorgang leert ebenfalls Tabelle »%s«" -#: commands/tablecmds.c:2174 +#: commands/tablecmds.c:2191 #, c-format msgid "cannot truncate foreign table \"%s\"" msgstr "kann Fremdtabelle »%s« nicht leeren" -#: commands/tablecmds.c:2231 +#: commands/tablecmds.c:2248 #, c-format msgid "cannot truncate temporary tables of other sessions" msgstr "kann temporäre Tabellen anderer Sitzungen nicht leeren" -#: commands/tablecmds.c:2459 commands/tablecmds.c:15010 +#: commands/tablecmds.c:2476 commands/tablecmds.c:15141 #, c-format msgid "cannot inherit from partitioned table \"%s\"" msgstr "von partitionierter Tabelle »%s« kann nicht geerbt werden" -#: commands/tablecmds.c:2464 +#: commands/tablecmds.c:2481 #, c-format msgid "cannot inherit from partition \"%s\"" msgstr "von Partition »%s« kann nicht geerbt werden" -#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2507 -#: parser/parse_utilcmd.c:2649 +#: commands/tablecmds.c:2489 parser/parse_utilcmd.c:2535 +#: parser/parse_utilcmd.c:2677 #, c-format msgid "inherited relation \"%s\" is not a table or foreign table" msgstr "geerbte Relation »%s« ist keine Tabelle oder Fremdtabelle" -#: commands/tablecmds.c:2484 +#: commands/tablecmds.c:2501 #, c-format msgid "cannot create a temporary relation as partition of permanent relation \"%s\"" msgstr "eine temporäre Relation kann nicht als Partition der permanenten Relation »%s« erzeugt werden" -#: commands/tablecmds.c:2493 commands/tablecmds.c:14989 +#: commands/tablecmds.c:2510 commands/tablecmds.c:15120 #, c-format msgid "cannot inherit from temporary relation \"%s\"" msgstr "von temporärer Relation »%s« kann nicht geerbt werden" -#: commands/tablecmds.c:2503 commands/tablecmds.c:14997 +#: commands/tablecmds.c:2520 commands/tablecmds.c:15128 #, c-format msgid "cannot inherit from temporary relation of another session" msgstr "von temporärer Relation einer anderen Sitzung kann nicht geerbt werden" -#: commands/tablecmds.c:2557 +#: commands/tablecmds.c:2574 #, c-format msgid "merging multiple inherited definitions of column \"%s\"" msgstr "geerbte Definitionen von Spalte »%s« werden zusammengeführt" -#: commands/tablecmds.c:2565 +#: commands/tablecmds.c:2582 #, c-format msgid "inherited column \"%s\" has a type conflict" msgstr "geerbte Spalte »%s« hat Typkonflikt" -#: commands/tablecmds.c:2567 commands/tablecmds.c:2590 -#: commands/tablecmds.c:2607 commands/tablecmds.c:2863 -#: commands/tablecmds.c:2893 commands/tablecmds.c:2907 +#: commands/tablecmds.c:2584 commands/tablecmds.c:2607 +#: commands/tablecmds.c:2624 commands/tablecmds.c:2880 +#: commands/tablecmds.c:2910 commands/tablecmds.c:2924 #: parser/parse_coerce.c:2155 parser/parse_coerce.c:2175 #: parser/parse_coerce.c:2195 parser/parse_coerce.c:2216 #: parser/parse_coerce.c:2271 parser/parse_coerce.c:2305 @@ -10041,1235 +10052,1246 @@ msgstr "geerbte Spalte »%s« hat Typkonflikt" msgid "%s versus %s" msgstr "%s gegen %s" -#: commands/tablecmds.c:2576 +#: commands/tablecmds.c:2593 #, c-format msgid "inherited column \"%s\" has a collation conflict" msgstr "geerbte Spalte »%s« hat Sortierfolgenkonflikt" -#: commands/tablecmds.c:2578 commands/tablecmds.c:2875 -#: commands/tablecmds.c:6837 +#: commands/tablecmds.c:2595 commands/tablecmds.c:2892 +#: commands/tablecmds.c:6860 #, c-format msgid "\"%s\" versus \"%s\"" msgstr "»%s« gegen »%s«" -#: commands/tablecmds.c:2588 +#: commands/tablecmds.c:2605 #, c-format msgid "inherited column \"%s\" has a storage parameter conflict" msgstr "geerbte Spalte »%s« hat einen Konflikt bei einem Storage-Parameter" -#: commands/tablecmds.c:2605 commands/tablecmds.c:2905 +#: commands/tablecmds.c:2622 commands/tablecmds.c:2922 #, c-format msgid "column \"%s\" has a compression method conflict" msgstr "für Spalte »%s« besteht ein Komprimierungsmethodenkonflikt" -#: commands/tablecmds.c:2620 +#: commands/tablecmds.c:2637 #, c-format msgid "inherited column \"%s\" has a generation conflict" msgstr "geerbte Spalte »%s« hat einen Generierungskonflikt" -#: commands/tablecmds.c:2714 commands/tablecmds.c:2769 -#: commands/tablecmds.c:12496 parser/parse_utilcmd.c:1269 -#: parser/parse_utilcmd.c:1312 parser/parse_utilcmd.c:1759 -#: parser/parse_utilcmd.c:1867 +#: commands/tablecmds.c:2731 commands/tablecmds.c:2786 +#: commands/tablecmds.c:12626 parser/parse_utilcmd.c:1297 +#: parser/parse_utilcmd.c:1340 parser/parse_utilcmd.c:1787 +#: parser/parse_utilcmd.c:1895 #, c-format msgid "cannot convert whole-row table reference" msgstr "kann Verweis auf ganze Zeile der Tabelle nicht umwandeln" -#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1270 +#: commands/tablecmds.c:2732 parser/parse_utilcmd.c:1298 #, c-format msgid "Generation expression for column \"%s\" contains a whole-row reference to table \"%s\"." msgstr "Generierungsausdruck für Spalte »%s« enthält einen Verweis auf die ganze Zeile der Tabelle »%s«." -#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1313 +#: commands/tablecmds.c:2787 parser/parse_utilcmd.c:1341 #, c-format msgid "Constraint \"%s\" contains a whole-row reference to table \"%s\"." msgstr "Constraint »%s« enthält einen Verweis auf die ganze Zeile der Tabelle »%s«." -#: commands/tablecmds.c:2849 +#: commands/tablecmds.c:2866 #, c-format msgid "merging column \"%s\" with inherited definition" msgstr "Spalte »%s« wird mit geerbter Definition zusammengeführt" -#: commands/tablecmds.c:2853 +#: commands/tablecmds.c:2870 #, c-format msgid "moving and merging column \"%s\" with inherited definition" msgstr "Spalte »%s« wird verschoben und mit geerbter Definition zusammengeführt" -#: commands/tablecmds.c:2854 +#: commands/tablecmds.c:2871 #, c-format msgid "User-specified column moved to the position of the inherited column." msgstr "Benutzerdefinierte Spalte wurde auf die Position der geerbten Spalte verschoben." -#: commands/tablecmds.c:2861 +#: commands/tablecmds.c:2878 #, c-format msgid "column \"%s\" has a type conflict" msgstr "für Spalte »%s« besteht ein Typkonflikt" -#: commands/tablecmds.c:2873 +#: commands/tablecmds.c:2890 #, c-format msgid "column \"%s\" has a collation conflict" msgstr "für Spalte »%s« besteht ein Sortierfolgenkonflikt" -#: commands/tablecmds.c:2891 +#: commands/tablecmds.c:2908 #, c-format msgid "column \"%s\" has a storage parameter conflict" msgstr "für Spalte »%s« besteht ein Konflikt bei einem Storage-Parameter" -#: commands/tablecmds.c:2932 +#: commands/tablecmds.c:2949 #, c-format msgid "child column \"%s\" specifies generation expression" msgstr "abgeleitete Spalte »%s« gibt einen Generierungsausdruck an" -#: commands/tablecmds.c:2934 +#: commands/tablecmds.c:2951 #, c-format msgid "Omit the generation expression in the definition of the child table column to inherit the generation expression from the parent table." msgstr "Lassen Sie den Generierungsausdruck in der Definition der abgeleiteten Spalte weg, um den Generierungsausdruck der Elterntabelle zu erben." -#: commands/tablecmds.c:2938 +#: commands/tablecmds.c:2955 #, c-format msgid "column \"%s\" inherits from generated column but specifies default" msgstr "Spalte »%s« erbt von einer generierten Spalte aber hat einen Vorgabewert angegeben" -#: commands/tablecmds.c:2943 +#: commands/tablecmds.c:2960 #, c-format msgid "column \"%s\" inherits from generated column but specifies identity" msgstr "Spalte »%s« erbt von einer generierten Spalte aber ist als Identitätsspalte definiert" -#: commands/tablecmds.c:3052 +#: commands/tablecmds.c:3069 #, c-format msgid "column \"%s\" inherits conflicting generation expressions" msgstr "Spalte »%s« erbt widersprüchliche Generierungsausdrücke" -#: commands/tablecmds.c:3057 +#: commands/tablecmds.c:3074 #, c-format msgid "column \"%s\" inherits conflicting default values" msgstr "Spalte »%s« erbt widersprüchliche Vorgabewerte" -#: commands/tablecmds.c:3059 +#: commands/tablecmds.c:3076 #, c-format msgid "To resolve the conflict, specify a default explicitly." msgstr "Um den Konflikt zu lösen, geben Sie einen Vorgabewert ausdrücklich an." -#: commands/tablecmds.c:3105 +#: commands/tablecmds.c:3122 #, c-format msgid "check constraint name \"%s\" appears multiple times but with different expressions" msgstr "Check-Constraint-Name »%s« erscheint mehrmals, aber mit unterschiedlichen Ausdrücken" -#: commands/tablecmds.c:3330 +#: commands/tablecmds.c:3347 #, c-format msgid "cannot move temporary tables of other sessions" msgstr "temporäre Tabellen anderer Sitzungen können nicht verschoben werden" -#: commands/tablecmds.c:3400 +#: commands/tablecmds.c:3420 #, c-format msgid "cannot rename column of typed table" msgstr "Spalte einer getypten Tabelle kann nicht umbenannt werden" -#: commands/tablecmds.c:3419 +#: commands/tablecmds.c:3439 #, c-format msgid "cannot rename columns of relation \"%s\"" msgstr "Spalten von Relation »%s« können nicht umbenannt werden" -#: commands/tablecmds.c:3514 +#: commands/tablecmds.c:3534 #, c-format msgid "inherited column \"%s\" must be renamed in child tables too" msgstr "vererbte Spalte »%s« muss ebenso in den abgeleiteten Tabellen umbenannt werden" -#: commands/tablecmds.c:3546 +#: commands/tablecmds.c:3566 #, c-format msgid "cannot rename system column \"%s\"" msgstr "Systemspalte »%s« kann nicht umbenannt werden" -#: commands/tablecmds.c:3561 +#: commands/tablecmds.c:3581 #, c-format msgid "cannot rename inherited column \"%s\"" msgstr "kann vererbte Spalte »%s« nicht umbenennen" -#: commands/tablecmds.c:3713 +#: commands/tablecmds.c:3733 #, c-format msgid "inherited constraint \"%s\" must be renamed in child tables too" msgstr "vererbter Constraint »%s« muss ebenso in den abgeleiteten Tabellen umbenannt werden" -#: commands/tablecmds.c:3720 +#: commands/tablecmds.c:3740 #, c-format msgid "cannot rename inherited constraint \"%s\"" msgstr "kann vererbten Constraint »%s« nicht umbenennen" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4017 +#: commands/tablecmds.c:4040 #, c-format msgid "cannot %s \"%s\" because it is being used by active queries in this session" msgstr "%s mit Relation »%s« nicht möglich, weil sie von aktiven Anfragen in dieser Sitzung verwendet wird" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4026 +#: commands/tablecmds.c:4049 #, c-format msgid "cannot %s \"%s\" because it has pending trigger events" msgstr "%s mit Relation »%s« nicht möglich, weil es anstehende Trigger-Ereignisse dafür gibt" -#: commands/tablecmds.c:4052 +#: commands/tablecmds.c:4075 #, c-format msgid "cannot alter temporary tables of other sessions" msgstr "kann temporäre Tabellen anderer Sitzungen nicht ändern" -#: commands/tablecmds.c:4526 +#: commands/tablecmds.c:4549 #, c-format msgid "cannot alter partition \"%s\" with an incomplete detach" msgstr "kann Partition »%s« mit einer unvollständigen Abtrennoperation nicht ändern" -#: commands/tablecmds.c:4719 commands/tablecmds.c:4734 +#: commands/tablecmds.c:4742 commands/tablecmds.c:4757 #, c-format msgid "cannot change persistence setting twice" msgstr "Persistenzeinstellung kann nicht zweimal geändert werden" -#: commands/tablecmds.c:4755 +#: commands/tablecmds.c:4778 #, c-format msgid "cannot change access method of a partitioned table" msgstr "Zugriffsmethode einer partitionierten Tabelle kann nicht geändert werden" -#: commands/tablecmds.c:4761 +#: commands/tablecmds.c:4784 #, c-format msgid "cannot have multiple SET ACCESS METHOD subcommands" msgstr "mehrere SET ACCESS METHOD Unterbefehle sind ungültig" -#: commands/tablecmds.c:5516 +#: commands/tablecmds.c:5539 #, c-format msgid "cannot rewrite system relation \"%s\"" msgstr "Systemrelation »%s« kann nicht neu geschrieben werden" -#: commands/tablecmds.c:5522 +#: commands/tablecmds.c:5545 #, c-format msgid "cannot rewrite table \"%s\" used as a catalog table" msgstr "Tabelle »%s«, die als Katalogtabelle verwendet wird, kann nicht neu geschrieben werden" -#: commands/tablecmds.c:5534 +#: commands/tablecmds.c:5557 #, c-format msgid "cannot rewrite temporary tables of other sessions" msgstr "kann temporäre Tabellen anderer Sitzungen nicht neu schreiben" -#: commands/tablecmds.c:6028 +#: commands/tablecmds.c:6051 #, c-format msgid "column \"%s\" of relation \"%s\" contains null values" msgstr "Spalte »%s« von Relation »%s« enthält NULL-Werte" -#: commands/tablecmds.c:6045 +#: commands/tablecmds.c:6068 #, c-format msgid "check constraint \"%s\" of relation \"%s\" is violated by some row" msgstr "Check-Constraint »%s« von Relation »%s« wird von irgendeiner Zeile verletzt" -#: commands/tablecmds.c:6064 partitioning/partbounds.c:3404 +#: commands/tablecmds.c:6087 partitioning/partbounds.c:3404 #, c-format msgid "updated partition constraint for default partition \"%s\" would be violated by some row" msgstr "aktualisierter Partitions-Constraint der Standardpartition »%s« würde von irgendeiner Zeile verletzt werden" -#: commands/tablecmds.c:6070 +#: commands/tablecmds.c:6093 #, c-format msgid "partition constraint of relation \"%s\" is violated by some row" msgstr "Partitions-Constraint von Relation »%s« wird von irgendeiner Zeile verletzt" #. translator: %s is a group of some SQL keywords -#: commands/tablecmds.c:6337 +#: commands/tablecmds.c:6360 #, c-format msgid "ALTER action %s cannot be performed on relation \"%s\"" msgstr "ALTER-Aktion %s kann nicht mit Relation »%s« ausgeführt werden" -#: commands/tablecmds.c:6592 commands/tablecmds.c:6599 +#: commands/tablecmds.c:6615 commands/tablecmds.c:6622 #, c-format msgid "cannot alter type \"%s\" because column \"%s.%s\" uses it" msgstr "kann Typ »%s« nicht ändern, weil Spalte »%s.%s« ihn verwendet" -#: commands/tablecmds.c:6606 +#: commands/tablecmds.c:6629 #, c-format msgid "cannot alter foreign table \"%s\" because column \"%s.%s\" uses its row type" msgstr "kann Fremdtabelle »%s« nicht ändern, weil Spalte »%s.%s« ihren Zeilentyp verwendet" -#: commands/tablecmds.c:6613 +#: commands/tablecmds.c:6636 #, c-format msgid "cannot alter table \"%s\" because column \"%s.%s\" uses its row type" msgstr "kann Tabelle »%s« nicht ändern, weil Spalte »%s.%s« ihren Zeilentyp verwendet" -#: commands/tablecmds.c:6669 +#: commands/tablecmds.c:6692 #, c-format msgid "cannot alter type \"%s\" because it is the type of a typed table" msgstr "kann Typ »%s« nicht ändern, weil er der Typ einer getypten Tabelle ist" -#: commands/tablecmds.c:6671 +#: commands/tablecmds.c:6694 #, c-format msgid "Use ALTER ... CASCADE to alter the typed tables too." msgstr "Verwenden Sie ALTER ... CASCADE, um die getypten Tabellen ebenfalls zu ändern." -#: commands/tablecmds.c:6717 +#: commands/tablecmds.c:6740 #, c-format msgid "type %s is not a composite type" msgstr "Typ %s ist kein zusammengesetzter Typ" -#: commands/tablecmds.c:6744 +#: commands/tablecmds.c:6767 #, c-format msgid "cannot add column to typed table" msgstr "zu einer getypten Tabelle kann keine Spalte hinzugefügt werden" -#: commands/tablecmds.c:6800 +#: commands/tablecmds.c:6823 #, c-format msgid "cannot add column to a partition" msgstr "zu einer Partition kann keine Spalte hinzugefügt werden" -#: commands/tablecmds.c:6829 commands/tablecmds.c:15240 +#: commands/tablecmds.c:6852 commands/tablecmds.c:15371 #, c-format msgid "child table \"%s\" has different type for column \"%s\"" msgstr "abgeleitete Tabelle »%s« hat unterschiedlichen Typ für Spalte »%s«" -#: commands/tablecmds.c:6835 commands/tablecmds.c:15247 +#: commands/tablecmds.c:6858 commands/tablecmds.c:15378 #, c-format msgid "child table \"%s\" has different collation for column \"%s\"" msgstr "abgeleitete Tabelle »%s« hat unterschiedliche Sortierfolge für Spalte »%s«" -#: commands/tablecmds.c:6849 +#: commands/tablecmds.c:6872 #, c-format msgid "merging definition of column \"%s\" for child \"%s\"" msgstr "Definition von Spalte »%s« für abgeleitete Tabelle »%s« wird zusammengeführt" -#: commands/tablecmds.c:6896 +#: commands/tablecmds.c:6919 #, c-format msgid "cannot recursively add identity column to table that has child tables" msgstr "eine Identitätsspalte kann nicht rekursiv zu einer Tabelle hinzugefügt werden, die abgeleitete Tabellen hat" -#: commands/tablecmds.c:7140 +#: commands/tablecmds.c:7163 #, c-format msgid "column must be added to child tables too" msgstr "Spalte muss ebenso in den abgeleiteten Tabellen hinzugefügt werden" -#: commands/tablecmds.c:7218 +#: commands/tablecmds.c:7241 #, c-format msgid "column \"%s\" of relation \"%s\" already exists, skipping" msgstr "Spalte »%s« von Relation »%s« existiert bereits, wird übersprungen" -#: commands/tablecmds.c:7225 +#: commands/tablecmds.c:7248 #, c-format msgid "column \"%s\" of relation \"%s\" already exists" msgstr "Spalte »%s« von Relation »%s« existiert bereits" -#: commands/tablecmds.c:7291 commands/tablecmds.c:12135 +#: commands/tablecmds.c:7314 commands/tablecmds.c:12254 #, c-format msgid "cannot remove constraint from only the partitioned table when partitions exist" msgstr "Constraint kann nicht nur von der partitionierten Tabelle entfernt werden, wenn Partitionen existieren" -#: commands/tablecmds.c:7292 commands/tablecmds.c:7609 -#: commands/tablecmds.c:8610 commands/tablecmds.c:12136 +#: commands/tablecmds.c:7315 commands/tablecmds.c:7632 +#: commands/tablecmds.c:8633 commands/tablecmds.c:12255 #, c-format msgid "Do not specify the ONLY keyword." msgstr "Lassen Sie das Schlüsselwort ONLY weg." -#: commands/tablecmds.c:7329 commands/tablecmds.c:7535 -#: commands/tablecmds.c:7677 commands/tablecmds.c:7791 -#: commands/tablecmds.c:7885 commands/tablecmds.c:7944 -#: commands/tablecmds.c:8063 commands/tablecmds.c:8202 -#: commands/tablecmds.c:8272 commands/tablecmds.c:8428 -#: commands/tablecmds.c:12290 commands/tablecmds.c:13828 -#: commands/tablecmds.c:16397 +#: commands/tablecmds.c:7352 commands/tablecmds.c:7558 +#: commands/tablecmds.c:7700 commands/tablecmds.c:7814 +#: commands/tablecmds.c:7908 commands/tablecmds.c:7967 +#: commands/tablecmds.c:8086 commands/tablecmds.c:8225 +#: commands/tablecmds.c:8295 commands/tablecmds.c:8451 +#: commands/tablecmds.c:12409 commands/tablecmds.c:13958 +#: commands/tablecmds.c:16528 #, c-format msgid "cannot alter system column \"%s\"" msgstr "Systemspalte »%s« kann nicht geändert werden" -#: commands/tablecmds.c:7335 commands/tablecmds.c:7683 +#: commands/tablecmds.c:7358 commands/tablecmds.c:7706 #, c-format msgid "column \"%s\" of relation \"%s\" is an identity column" msgstr "Spalte »%s« von Relation »%s« ist eine Identitätsspalte" -#: commands/tablecmds.c:7378 +#: commands/tablecmds.c:7401 #, c-format msgid "column \"%s\" is in a primary key" msgstr "Spalte »%s« ist in einem Primärschlüssel" -#: commands/tablecmds.c:7383 +#: commands/tablecmds.c:7406 #, c-format msgid "column \"%s\" is in index used as replica identity" msgstr "Spalte »%s« ist in einem Index, der als Replik-Identität verwendet wird" -#: commands/tablecmds.c:7406 +#: commands/tablecmds.c:7429 #, c-format msgid "column \"%s\" is marked NOT NULL in parent table" msgstr "Spalte »%s« ist in Elterntabelle als NOT NULL markiert" -#: commands/tablecmds.c:7606 commands/tablecmds.c:9093 +#: commands/tablecmds.c:7629 commands/tablecmds.c:9116 #, c-format msgid "constraint must be added to child tables too" msgstr "Constraint muss ebenso in den abgeleiteten Tabellen hinzugefügt werden" -#: commands/tablecmds.c:7607 +#: commands/tablecmds.c:7630 #, c-format msgid "Column \"%s\" of relation \"%s\" is not already NOT NULL." msgstr "Spalte »%s« von Relation »%s« ist nicht bereits NOT NULL." -#: commands/tablecmds.c:7685 +#: commands/tablecmds.c:7708 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY instead." msgstr "Verwenden Sie stattdessen ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY." -#: commands/tablecmds.c:7690 +#: commands/tablecmds.c:7713 #, c-format msgid "column \"%s\" of relation \"%s\" is a generated column" msgstr "Spalte »%s« von Relation »%s« ist eine generierte Spalte" -#: commands/tablecmds.c:7693 +#: commands/tablecmds.c:7716 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION instead." msgstr "Verwenden Sie stattdessen ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION." -#: commands/tablecmds.c:7802 +#: commands/tablecmds.c:7825 #, c-format msgid "column \"%s\" of relation \"%s\" must be declared NOT NULL before identity can be added" msgstr "Spalte »%s« von Relation »%s« muss als NOT NULL deklariert werden, bevor Sie Identitätsspalte werden kann" -#: commands/tablecmds.c:7808 +#: commands/tablecmds.c:7831 #, c-format msgid "column \"%s\" of relation \"%s\" is already an identity column" msgstr "Spalte »%s« von Relation »%s« ist bereits eine Identitätsspalte" -#: commands/tablecmds.c:7814 +#: commands/tablecmds.c:7837 #, c-format msgid "column \"%s\" of relation \"%s\" already has a default value" msgstr "Spalte »%s« von Relation »%s« hat bereits einen Vorgabewert" -#: commands/tablecmds.c:7891 commands/tablecmds.c:7952 +#: commands/tablecmds.c:7914 commands/tablecmds.c:7975 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column" msgstr "Spalte »%s« von Relation »%s« ist keine Identitätsspalte" -#: commands/tablecmds.c:7957 +#: commands/tablecmds.c:7980 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column, skipping" msgstr "Spalte »%s« von Relation »%s« ist keine Identitätsspalte, wird übersprungen" -#: commands/tablecmds.c:8010 +#: commands/tablecmds.c:8033 #, c-format msgid "ALTER TABLE / DROP EXPRESSION must be applied to child tables too" msgstr "ALTER TABLE / DROP EXPRESSION muss auch auf abgeleitete Tabellen angewendet werden" -#: commands/tablecmds.c:8032 +#: commands/tablecmds.c:8055 #, c-format msgid "cannot drop generation expression from inherited column" msgstr "Generierungsausdruck von vererbter Spalte kann nicht gelöscht werden" -#: commands/tablecmds.c:8071 +#: commands/tablecmds.c:8094 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column" msgstr "Spalte »%s« von Relation »%s« ist keine gespeicherte generierte Spalte" -#: commands/tablecmds.c:8076 +#: commands/tablecmds.c:8099 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column, skipping" msgstr "Spalte »%s« von Relation »%s« ist keine gespeicherte generierte Spalte, wird übersprungen" -#: commands/tablecmds.c:8149 +#: commands/tablecmds.c:8172 #, c-format msgid "cannot refer to non-index column by number" msgstr "auf eine Nicht-Index-Spalte kann nicht per Nummer verwiesen werden" -#: commands/tablecmds.c:8192 +#: commands/tablecmds.c:8215 #, c-format msgid "column number %d of relation \"%s\" does not exist" msgstr "Spalte Nummer %d von Relation »%s« existiert nicht" -#: commands/tablecmds.c:8211 +#: commands/tablecmds.c:8234 #, c-format msgid "cannot alter statistics on included column \"%s\" of index \"%s\"" msgstr "Statistiken von eingeschlossener Spalte »%s« von Index »%s« können nicht geändert werden" -#: commands/tablecmds.c:8216 +#: commands/tablecmds.c:8239 #, c-format msgid "cannot alter statistics on non-expression column \"%s\" of index \"%s\"" msgstr "kann Statistiken von Spalte »%s« von Index »%s«, welche kein Ausdruck ist, nicht ändern" -#: commands/tablecmds.c:8218 +#: commands/tablecmds.c:8241 #, c-format msgid "Alter statistics on table column instead." msgstr "Ändern Sie stattdessen die Statistiken für die Tabellenspalte." -#: commands/tablecmds.c:8408 +#: commands/tablecmds.c:8431 #, c-format msgid "invalid storage type \"%s\"" msgstr "ungültiger Storage-Typ »%s«" -#: commands/tablecmds.c:8440 +#: commands/tablecmds.c:8463 #, c-format msgid "column data type %s can only have storage PLAIN" msgstr "Spaltendatentyp %s kann nur Storage-Typ PLAIN" -#: commands/tablecmds.c:8485 +#: commands/tablecmds.c:8508 #, c-format msgid "cannot drop column from typed table" msgstr "aus einer getypten Tabelle können keine Spalten gelöscht werden" -#: commands/tablecmds.c:8548 +#: commands/tablecmds.c:8571 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist, skipping" msgstr "Spalte »%s« von Relation »%s« existiert nicht, wird übersprungen" -#: commands/tablecmds.c:8561 +#: commands/tablecmds.c:8584 #, c-format msgid "cannot drop system column \"%s\"" msgstr "Systemspalte »%s« kann nicht gelöscht werden" -#: commands/tablecmds.c:8571 +#: commands/tablecmds.c:8594 #, c-format msgid "cannot drop inherited column \"%s\"" msgstr "geerbte Spalte »%s« kann nicht gelöscht werden" -#: commands/tablecmds.c:8584 +#: commands/tablecmds.c:8607 #, c-format msgid "cannot drop column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "Spalte »%s« kann nicht gelöscht werden, weil sie Teil des Partitionierungsschlüssels von Relation »%s« ist" -#: commands/tablecmds.c:8609 +#: commands/tablecmds.c:8632 #, c-format msgid "cannot drop column from only the partitioned table when partitions exist" msgstr "Spalte kann nicht nur aus der partitionierten Tabelle gelöscht werden, wenn Partitionen existieren" -#: commands/tablecmds.c:8813 +#: commands/tablecmds.c:8836 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX is not supported on partitioned tables" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX wird für partitionierte Tabellen nicht unterstützt" -#: commands/tablecmds.c:8838 +#: commands/tablecmds.c:8861 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX will rename index \"%s\" to \"%s\"" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX benennt Index »%s« um in »%s«" -#: commands/tablecmds.c:9175 +#: commands/tablecmds.c:9198 #, c-format msgid "cannot use ONLY for foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "ONLY nicht möglich für Fremdschlüssel für partitionierte Tabelle »%s« verweisend auf Relation »%s«" -#: commands/tablecmds.c:9181 +#: commands/tablecmds.c:9204 #, c-format msgid "cannot add NOT VALID foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "Hinzufügen von Fremdschlüssel mit NOT VALID nicht möglich für partitionierte Tabelle »%s« verweisend auf Relation »%s«" -#: commands/tablecmds.c:9184 +#: commands/tablecmds.c:9207 #, c-format msgid "This feature is not yet supported on partitioned tables." msgstr "Dieses Feature wird für partitionierte Tabellen noch nicht unterstützt." -#: commands/tablecmds.c:9191 commands/tablecmds.c:9657 +#: commands/tablecmds.c:9214 commands/tablecmds.c:9685 #, c-format msgid "referenced relation \"%s\" is not a table" msgstr "Relation »%s«, auf die verwiesen wird, ist keine Tabelle" -#: commands/tablecmds.c:9214 +#: commands/tablecmds.c:9237 #, c-format msgid "constraints on permanent tables may reference only permanent tables" msgstr "Constraints für permanente Tabellen dürfen nur auf permanente Tabellen verweisen" -#: commands/tablecmds.c:9221 +#: commands/tablecmds.c:9244 #, c-format msgid "constraints on unlogged tables may reference only permanent or unlogged tables" msgstr "Constraints für ungeloggte Tabellen dürfen nur auf permanente oder ungeloggte Tabellen verweisen" -#: commands/tablecmds.c:9227 +#: commands/tablecmds.c:9250 #, c-format msgid "constraints on temporary tables may reference only temporary tables" msgstr "Constraints für temporäre Tabellen dürfen nur auf temporäre Tabellen verweisen" -#: commands/tablecmds.c:9231 +#: commands/tablecmds.c:9254 #, c-format msgid "constraints on temporary tables must involve temporary tables of this session" msgstr "Constraints für temporäre Tabellen müssen temporäre Tabellen dieser Sitzung beinhalten" -#: commands/tablecmds.c:9305 commands/tablecmds.c:9311 +#: commands/tablecmds.c:9328 commands/tablecmds.c:9334 #, c-format msgid "invalid %s action for foreign key constraint containing generated column" msgstr "ungültige %s-Aktion für Fremdschlüssel-Constraint, der eine generierte Spalte enthält" -#: commands/tablecmds.c:9327 +#: commands/tablecmds.c:9350 #, c-format msgid "number of referencing and referenced columns for foreign key disagree" msgstr "Anzahl der Quell- und Zielspalten im Fremdschlüssel stimmt nicht überein" -#: commands/tablecmds.c:9434 +#: commands/tablecmds.c:9457 #, c-format msgid "foreign key constraint \"%s\" cannot be implemented" msgstr "Fremdschlüssel-Constraint »%s« kann nicht implementiert werden" -#: commands/tablecmds.c:9436 +#: commands/tablecmds.c:9459 #, c-format msgid "Key columns \"%s\" and \"%s\" are of incompatible types: %s and %s." msgstr "Schlüsselspalten »%s« und »%s« haben inkompatible Typen: %s und %s." -#: commands/tablecmds.c:9593 +#: commands/tablecmds.c:9628 #, c-format msgid "column \"%s\" referenced in ON DELETE SET action must be part of foreign key" msgstr "Spalte »%s«, auf die in der ON-DELETE-SET-Aktion verwiesen wird, muss Teil des Fremdschlüssels sein" -#: commands/tablecmds.c:9866 commands/tablecmds.c:10334 -#: parser/parse_utilcmd.c:799 parser/parse_utilcmd.c:928 +#: commands/tablecmds.c:9984 commands/tablecmds.c:10422 +#: parser/parse_utilcmd.c:827 parser/parse_utilcmd.c:956 #, c-format msgid "foreign key constraints are not supported on foreign tables" msgstr "Fremdschlüssel-Constraints auf Fremdtabellen werden nicht unterstützt" -#: commands/tablecmds.c:10886 commands/tablecmds.c:11167 -#: commands/tablecmds.c:12092 commands/tablecmds.c:12167 +#: commands/tablecmds.c:10405 +#, c-format +msgid "cannot attach table \"%s\" as a partition because it is referenced by foreign key \"%s\"" +msgstr "kann Tabelle »%s« nicht als Partition anfügen, weil auf sie von Fremdschlüssel »%s« verwiesen wird" + +#: commands/tablecmds.c:11005 commands/tablecmds.c:11286 +#: commands/tablecmds.c:12211 commands/tablecmds.c:12286 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist" msgstr "Constraint »%s« von Relation »%s« existiert nicht" -#: commands/tablecmds.c:10893 +#: commands/tablecmds.c:11012 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key constraint" msgstr "Constraint »%s« von Relation »%s« ist kein Fremdschlüssel-Constraint" -#: commands/tablecmds.c:10931 +#: commands/tablecmds.c:11050 #, c-format msgid "cannot alter constraint \"%s\" on relation \"%s\"" msgstr "Constraint »%s« von Relation »%s« kann nicht geändert werden" -#: commands/tablecmds.c:10934 +#: commands/tablecmds.c:11053 #, c-format msgid "Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\"." msgstr "Constraint »%s« ist von Constraint »%s« von Relation »%s« abgeleitet." -#: commands/tablecmds.c:10936 +#: commands/tablecmds.c:11055 #, c-format msgid "You may alter the constraint it derives from, instead." msgstr "Sie können stattdessen den Constraint, von dem er abgeleitet ist, ändern." -#: commands/tablecmds.c:11175 +#: commands/tablecmds.c:11294 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key or check constraint" msgstr "Constraint »%s« von Relation »%s« ist kein Fremdschlüssel- oder Check-Constraint" -#: commands/tablecmds.c:11253 +#: commands/tablecmds.c:11372 #, c-format msgid "constraint must be validated on child tables too" msgstr "Constraint muss ebenso in den abgeleiteten Tabellen validiert werden" -#: commands/tablecmds.c:11343 +#: commands/tablecmds.c:11462 #, c-format msgid "column \"%s\" referenced in foreign key constraint does not exist" msgstr "Spalte »%s«, die im Fremdschlüssel verwendet wird, existiert nicht" -#: commands/tablecmds.c:11349 +#: commands/tablecmds.c:11468 #, c-format msgid "system columns cannot be used in foreign keys" msgstr "Systemspalten können nicht in Fremdschlüsseln verwendet werden" -#: commands/tablecmds.c:11353 +#: commands/tablecmds.c:11472 #, c-format msgid "cannot have more than %d keys in a foreign key" msgstr "Fremdschlüssel kann nicht mehr als %d Schlüssel haben" -#: commands/tablecmds.c:11419 +#: commands/tablecmds.c:11538 #, c-format msgid "cannot use a deferrable primary key for referenced table \"%s\"" msgstr "aufschiebbarer Primärschlüssel kann nicht für Tabelle »%s«, auf die verwiesen wird, verwendet werden" -#: commands/tablecmds.c:11436 +#: commands/tablecmds.c:11555 #, c-format msgid "there is no primary key for referenced table \"%s\"" msgstr "in Tabelle »%s«, auf die verwiesen wird, gibt es keinen Primärschlüssel" -#: commands/tablecmds.c:11505 +#: commands/tablecmds.c:11624 #, c-format msgid "foreign key referenced-columns list must not contain duplicates" msgstr "die Liste der Spalten, auf die ein Fremdschlüssel verweist, darf keine doppelten Einträge enthalten" -#: commands/tablecmds.c:11599 +#: commands/tablecmds.c:11718 #, c-format msgid "cannot use a deferrable unique constraint for referenced table \"%s\"" msgstr "aufschiebbarer Unique-Constraint kann nicht für Tabelle »%s«, auf die verwiesen wird, verwendet werden" -#: commands/tablecmds.c:11604 +#: commands/tablecmds.c:11723 #, c-format msgid "there is no unique constraint matching given keys for referenced table \"%s\"" msgstr "in Tabelle »%s«, auf die verwiesen wird, gibt es keinen Unique-Constraint, der auf die angegebenen Schlüssel passt" -#: commands/tablecmds.c:12048 +#: commands/tablecmds.c:12167 #, c-format msgid "cannot drop inherited constraint \"%s\" of relation \"%s\"" msgstr "geerbter Constraint »%s« von Relation »%s« kann nicht gelöscht werden" -#: commands/tablecmds.c:12098 +#: commands/tablecmds.c:12217 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist, skipping" msgstr "Constraint »%s« von Relation »%s« existiert nicht, wird übersprungen" -#: commands/tablecmds.c:12274 +#: commands/tablecmds.c:12393 #, c-format msgid "cannot alter column type of typed table" msgstr "Spaltentyp einer getypten Tabelle kann nicht geändert werden" -#: commands/tablecmds.c:12301 +#: commands/tablecmds.c:12419 +#, c-format +msgid "cannot specify USING when altering type of generated column" +msgstr "USING kann nicht angegeben werden, wenn der Typ einer generierten Spalte geändert wird" + +#: commands/tablecmds.c:12420 commands/tablecmds.c:17584 +#: commands/tablecmds.c:17674 commands/trigger.c:668 +#: rewrite/rewriteHandler.c:930 rewrite/rewriteHandler.c:965 +#, c-format +msgid "Column \"%s\" is a generated column." +msgstr "Spalte »%s« ist eine generierte Spalte." + +#: commands/tablecmds.c:12430 #, c-format msgid "cannot alter inherited column \"%s\"" msgstr "kann vererbte Spalte »%s« nicht ändern" -#: commands/tablecmds.c:12310 +#: commands/tablecmds.c:12439 #, c-format msgid "cannot alter column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "Spalte »%s« kann nicht geändert werden, weil sie Teil des Partitionierungsschlüssels von Relation »%s« ist" -#: commands/tablecmds.c:12360 +#: commands/tablecmds.c:12489 #, c-format msgid "result of USING clause for column \"%s\" cannot be cast automatically to type %s" msgstr "Ergebnis der USING-Klausel für Spalte »%s« kann nicht automatisch in Typ %s umgewandelt werden" -#: commands/tablecmds.c:12363 +#: commands/tablecmds.c:12492 #, c-format msgid "You might need to add an explicit cast." msgstr "Sie müssen möglicherweise eine ausdrückliche Typumwandlung hinzufügen." -#: commands/tablecmds.c:12367 +#: commands/tablecmds.c:12496 #, c-format msgid "column \"%s\" cannot be cast automatically to type %s" msgstr "Spalte »%s« kann nicht automatisch in Typ %s umgewandelt werden" #. translator: USING is SQL, don't translate it -#: commands/tablecmds.c:12370 +#: commands/tablecmds.c:12500 #, c-format msgid "You might need to specify \"USING %s::%s\"." msgstr "Sie müssen möglicherweise »USING %s::%s« angeben." -#: commands/tablecmds.c:12469 +#: commands/tablecmds.c:12599 #, c-format msgid "cannot alter inherited column \"%s\" of relation \"%s\"" msgstr "geerbte Spalte »%s« von Relation »%s« kann nicht geändert werden" -#: commands/tablecmds.c:12497 +#: commands/tablecmds.c:12627 #, c-format msgid "USING expression contains a whole-row table reference." msgstr "USING-Ausdruck enthält einen Verweis auf die ganze Zeile der Tabelle." -#: commands/tablecmds.c:12508 +#: commands/tablecmds.c:12638 #, c-format msgid "type of inherited column \"%s\" must be changed in child tables too" msgstr "Typ der vererbten Spalte »%s« muss ebenso in den abgeleiteten Tabellen geändert werden" -#: commands/tablecmds.c:12633 +#: commands/tablecmds.c:12763 #, c-format msgid "cannot alter type of column \"%s\" twice" msgstr "Typ der Spalte »%s« kann nicht zweimal geändert werden" -#: commands/tablecmds.c:12671 +#: commands/tablecmds.c:12801 #, c-format msgid "generation expression for column \"%s\" cannot be cast automatically to type %s" msgstr "Generierungsausdruck der Spalte »%s« kann nicht automatisch in Typ %s umgewandelt werden" -#: commands/tablecmds.c:12676 +#: commands/tablecmds.c:12806 #, c-format msgid "default for column \"%s\" cannot be cast automatically to type %s" msgstr "Vorgabewert der Spalte »%s« kann nicht automatisch in Typ %s umgewandelt werden" -#: commands/tablecmds.c:12764 +#: commands/tablecmds.c:12894 #, c-format msgid "cannot alter type of a column used by a function or procedure" msgstr "Typ einer Spalte, die von einer Funktion oder Prozedur verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:12765 commands/tablecmds.c:12779 -#: commands/tablecmds.c:12798 commands/tablecmds.c:12816 -#: commands/tablecmds.c:12874 +#: commands/tablecmds.c:12895 commands/tablecmds.c:12909 +#: commands/tablecmds.c:12928 commands/tablecmds.c:12946 +#: commands/tablecmds.c:13004 #, c-format msgid "%s depends on column \"%s\"" msgstr "%s hängt von Spalte »%s« ab" -#: commands/tablecmds.c:12778 +#: commands/tablecmds.c:12908 #, c-format msgid "cannot alter type of a column used by a view or rule" msgstr "Typ einer Spalte, die von einer Sicht oder Regel verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:12797 +#: commands/tablecmds.c:12927 #, c-format msgid "cannot alter type of a column used in a trigger definition" msgstr "Typ einer Spalte, die in einer Trigger-Definition verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:12815 +#: commands/tablecmds.c:12945 #, c-format msgid "cannot alter type of a column used in a policy definition" msgstr "Typ einer Spalte, die in einer Policy-Definition verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:12846 +#: commands/tablecmds.c:12976 #, c-format msgid "cannot alter type of a column used by a generated column" msgstr "Typ einer Spalte, die von einer generierten Spalte verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:12847 +#: commands/tablecmds.c:12977 #, c-format msgid "Column \"%s\" is used by generated column \"%s\"." msgstr "Spalte »%s« wird von generierter Spalte »%s« verwendet." -#: commands/tablecmds.c:12873 +#: commands/tablecmds.c:13003 #, c-format msgid "cannot alter type of a column used by a publication WHERE clause" msgstr "Typ einer Spalte, die in der WHERE-Klausel einer Publikation verwendet wird, kann nicht geändert werden" -#: commands/tablecmds.c:13936 commands/tablecmds.c:13948 +#: commands/tablecmds.c:14066 commands/tablecmds.c:14078 #, c-format msgid "cannot change owner of index \"%s\"" msgstr "kann Eigentümer des Index »%s« nicht ändern" -#: commands/tablecmds.c:13938 commands/tablecmds.c:13950 +#: commands/tablecmds.c:14068 commands/tablecmds.c:14080 #, c-format msgid "Change the ownership of the index's table, instead." msgstr "Ändern Sie stattdessen den Eigentümer der Tabelle des Index." -#: commands/tablecmds.c:13964 +#: commands/tablecmds.c:14094 #, c-format msgid "cannot change owner of sequence \"%s\"" msgstr "kann Eigentümer der Sequenz »%s« nicht ändern" -#: commands/tablecmds.c:13978 commands/tablecmds.c:17292 -#: commands/tablecmds.c:17311 +#: commands/tablecmds.c:14108 commands/tablecmds.c:17430 +#: commands/tablecmds.c:17449 #, c-format msgid "Use ALTER TYPE instead." msgstr "Verwenden Sie stattdessen ALTER TYPE." -#: commands/tablecmds.c:13987 +#: commands/tablecmds.c:14117 #, c-format msgid "cannot change owner of relation \"%s\"" msgstr "kann Eigentümer der Relation »%s« nicht ändern" -#: commands/tablecmds.c:14349 +#: commands/tablecmds.c:14479 #, c-format msgid "cannot have multiple SET TABLESPACE subcommands" msgstr "mehrere SET TABLESPACE Unterbefehle sind ungültig" -#: commands/tablecmds.c:14426 +#: commands/tablecmds.c:14556 #, c-format msgid "cannot set options for relation \"%s\"" msgstr "für Relation »%s« können keine Optionen gesetzt werden" -#: commands/tablecmds.c:14460 commands/view.c:521 +#: commands/tablecmds.c:14590 commands/view.c:521 #, c-format msgid "WITH CHECK OPTION is supported only on automatically updatable views" msgstr "WITH CHECK OPTION wird nur für automatisch aktualisierbare Sichten unterstützt" -#: commands/tablecmds.c:14710 +#: commands/tablecmds.c:14841 #, c-format msgid "only tables, indexes, and materialized views exist in tablespaces" msgstr "nur Tabellen, Indexe und materialisierte Sichten existieren in Tablespaces" -#: commands/tablecmds.c:14722 +#: commands/tablecmds.c:14853 #, c-format msgid "cannot move relations in to or out of pg_global tablespace" msgstr "Relationen können nicht in den oder aus dem Tablespace »pg_global« verschoben werden" -#: commands/tablecmds.c:14814 +#: commands/tablecmds.c:14945 #, c-format msgid "aborting because lock on relation \"%s.%s\" is not available" msgstr "Abbruch weil Sperre für Relation »%s.%s« nicht verfügbar ist" -#: commands/tablecmds.c:14830 +#: commands/tablecmds.c:14961 #, c-format msgid "no matching relations in tablespace \"%s\" found" msgstr "keine passenden Relationen in Tablespace »%s« gefunden" -#: commands/tablecmds.c:14948 +#: commands/tablecmds.c:15079 #, c-format msgid "cannot change inheritance of typed table" msgstr "Vererbung einer getypten Tabelle kann nicht geändert werden" -#: commands/tablecmds.c:14953 commands/tablecmds.c:15509 +#: commands/tablecmds.c:15084 commands/tablecmds.c:15640 #, c-format msgid "cannot change inheritance of a partition" msgstr "Vererbung einer Partition kann nicht geändert werden" -#: commands/tablecmds.c:14958 +#: commands/tablecmds.c:15089 #, c-format msgid "cannot change inheritance of partitioned table" msgstr "Vererbung einer partitionierten Tabelle kann nicht geändert werden" -#: commands/tablecmds.c:15004 +#: commands/tablecmds.c:15135 #, c-format msgid "cannot inherit to temporary relation of another session" msgstr "an temporäre Relation einer anderen Sitzung kann nicht vererbt werden" -#: commands/tablecmds.c:15017 +#: commands/tablecmds.c:15148 #, c-format msgid "cannot inherit from a partition" msgstr "von einer Partition kann nicht geerbt werden" -#: commands/tablecmds.c:15039 commands/tablecmds.c:17947 +#: commands/tablecmds.c:15170 commands/tablecmds.c:18085 #, c-format msgid "circular inheritance not allowed" msgstr "zirkuläre Vererbung ist nicht erlaubt" -#: commands/tablecmds.c:15040 commands/tablecmds.c:17948 +#: commands/tablecmds.c:15171 commands/tablecmds.c:18086 #, c-format msgid "\"%s\" is already a child of \"%s\"." msgstr "»%s« ist schon von »%s« abgeleitet." -#: commands/tablecmds.c:15053 +#: commands/tablecmds.c:15184 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming an inheritance child" msgstr "Trigger »%s« verhindert, dass Tabelle »%s« ein Vererbungskind werden kann" -#: commands/tablecmds.c:15055 +#: commands/tablecmds.c:15186 #, c-format msgid "ROW triggers with transition tables are not supported in inheritance hierarchies." msgstr "ROW-Trigger mit Übergangstabellen werden in Vererbungshierarchien nicht unterstützt." -#: commands/tablecmds.c:15258 +#: commands/tablecmds.c:15389 #, c-format msgid "column \"%s\" in child table must be marked NOT NULL" msgstr "Spalte »%s« in abgeleiteter Tabelle muss als NOT NULL markiert sein" -#: commands/tablecmds.c:15267 +#: commands/tablecmds.c:15398 #, c-format msgid "column \"%s\" in child table must be a generated column" msgstr "Spalte »%s« in abgeleiteter Tabelle muss eine generierte Spalte sein" -#: commands/tablecmds.c:15317 +#: commands/tablecmds.c:15448 #, c-format msgid "column \"%s\" in child table has a conflicting generation expression" msgstr "Spalte »%s« in abgeleiteter Tabelle hat einen widersprüchlichen Generierungsausdruck" -#: commands/tablecmds.c:15345 +#: commands/tablecmds.c:15476 #, c-format msgid "child table is missing column \"%s\"" msgstr "Spalte »%s« fehlt in abgeleiteter Tabelle" -#: commands/tablecmds.c:15433 +#: commands/tablecmds.c:15564 #, c-format msgid "child table \"%s\" has different definition for check constraint \"%s\"" msgstr "abgeleitete Tabelle »%s« hat unterschiedliche Definition für Check-Constraint »%s«" -#: commands/tablecmds.c:15441 +#: commands/tablecmds.c:15572 #, c-format msgid "constraint \"%s\" conflicts with non-inherited constraint on child table \"%s\"" msgstr "Constraint »%s« kollidiert mit nicht vererbtem Constraint für abgeleitete Tabelle »%s«" -#: commands/tablecmds.c:15452 +#: commands/tablecmds.c:15583 #, c-format msgid "constraint \"%s\" conflicts with NOT VALID constraint on child table \"%s\"" msgstr "Constraint »%s« kollidiert mit NOT-VALID-Constraint für abgeleitete Tabelle »%s«" -#: commands/tablecmds.c:15487 +#: commands/tablecmds.c:15618 #, c-format msgid "child table is missing constraint \"%s\"" msgstr "Constraint »%s« fehlt in abgeleiteter Tabelle" -#: commands/tablecmds.c:15573 +#: commands/tablecmds.c:15704 #, c-format msgid "partition \"%s\" already pending detach in partitioned table \"%s.%s\"" msgstr "Partition »%s« hat schon eine unerledigte Abtrennoperation in der partitionierten Tabelle »%s.%s«" -#: commands/tablecmds.c:15602 commands/tablecmds.c:15650 +#: commands/tablecmds.c:15733 commands/tablecmds.c:15781 #, c-format msgid "relation \"%s\" is not a partition of relation \"%s\"" msgstr "Relation »%s« ist keine Partition von Relation »%s«" -#: commands/tablecmds.c:15656 +#: commands/tablecmds.c:15787 #, c-format msgid "relation \"%s\" is not a parent of relation \"%s\"" msgstr "Relation »%s« ist keine Basisrelation von Relation »%s«" -#: commands/tablecmds.c:15884 +#: commands/tablecmds.c:16015 #, c-format msgid "typed tables cannot inherit" msgstr "getypte Tabellen können nicht erben" -#: commands/tablecmds.c:15914 +#: commands/tablecmds.c:16045 #, c-format msgid "table is missing column \"%s\"" msgstr "Spalte »%s« fehlt in Tabelle" -#: commands/tablecmds.c:15925 +#: commands/tablecmds.c:16056 #, c-format msgid "table has column \"%s\" where type requires \"%s\"" msgstr "Tabelle hat Spalte »%s«, aber Typ benötigt »%s«" -#: commands/tablecmds.c:15934 +#: commands/tablecmds.c:16065 #, c-format msgid "table \"%s\" has different type for column \"%s\"" msgstr "Tabelle »%s« hat unterschiedlichen Typ für Spalte »%s«" -#: commands/tablecmds.c:15948 +#: commands/tablecmds.c:16079 #, c-format msgid "table has extra column \"%s\"" msgstr "Tabelle hat zusätzliche Spalte »%s«" -#: commands/tablecmds.c:16000 +#: commands/tablecmds.c:16131 #, c-format msgid "\"%s\" is not a typed table" msgstr "»%s« ist keine getypte Tabelle" -#: commands/tablecmds.c:16174 +#: commands/tablecmds.c:16305 #, c-format msgid "cannot use non-unique index \"%s\" as replica identity" msgstr "nicht eindeutiger Index »%s« kann nicht als Replik-Identität verwendet werden" -#: commands/tablecmds.c:16180 +#: commands/tablecmds.c:16311 #, c-format msgid "cannot use non-immediate index \"%s\" as replica identity" msgstr "Index »%s« kann nicht als Replik-Identität verwendet werden, weil er nicht IMMEDIATE ist" -#: commands/tablecmds.c:16186 +#: commands/tablecmds.c:16317 #, c-format msgid "cannot use expression index \"%s\" as replica identity" msgstr "Ausdrucksindex »%s« kann nicht als Replik-Identität verwendet werden" -#: commands/tablecmds.c:16192 +#: commands/tablecmds.c:16323 #, c-format msgid "cannot use partial index \"%s\" as replica identity" msgstr "partieller Index »%s« kann nicht als Replik-Identität verwendet werden" -#: commands/tablecmds.c:16209 +#: commands/tablecmds.c:16340 #, c-format msgid "index \"%s\" cannot be used as replica identity because column %d is a system column" msgstr "Index »%s« kann nicht als Replik-Identität verwendet werden, weil Spalte %d eine Systemspalte ist" -#: commands/tablecmds.c:16216 +#: commands/tablecmds.c:16347 #, c-format msgid "index \"%s\" cannot be used as replica identity because column \"%s\" is nullable" msgstr "Index »%s« kann nicht als Replik-Identität verwendet werden, weil Spalte »%s« NULL-Werte akzeptiert" -#: commands/tablecmds.c:16463 +#: commands/tablecmds.c:16594 #, c-format msgid "cannot change logged status of table \"%s\" because it is temporary" msgstr "kann den geloggten Status der Tabelle »%s« nicht ändern, weil sie temporär ist" -#: commands/tablecmds.c:16487 +#: commands/tablecmds.c:16618 #, c-format msgid "cannot change table \"%s\" to unlogged because it is part of a publication" msgstr "kann Tabelle »%s« nicht in ungeloggt ändern, weil sie Teil einer Publikation ist" -#: commands/tablecmds.c:16489 +#: commands/tablecmds.c:16620 #, c-format msgid "Unlogged relations cannot be replicated." msgstr "Ungeloggte Relationen können nicht repliziert werden." -#: commands/tablecmds.c:16534 +#: commands/tablecmds.c:16665 #, c-format msgid "could not change table \"%s\" to logged because it references unlogged table \"%s\"" msgstr "konnte Tabelle »%s« nicht in geloggt ändern, weil sie auf die ungeloggte Tabelle »%s« verweist" -#: commands/tablecmds.c:16544 +#: commands/tablecmds.c:16675 #, c-format msgid "could not change table \"%s\" to unlogged because it references logged table \"%s\"" msgstr "konnte Tabelle »%s« nicht in ungeloggt ändern, weil sie auf die geloggte Tabelle »%s« verweist" -#: commands/tablecmds.c:16602 +#: commands/tablecmds.c:16733 #, c-format msgid "cannot move an owned sequence into another schema" msgstr "einer Tabelle zugeordnete Sequenz kann nicht in ein anderes Schema verschoben werden" -#: commands/tablecmds.c:16704 +#: commands/tablecmds.c:16838 #, c-format msgid "relation \"%s\" already exists in schema \"%s\"" msgstr "Relation »%s« existiert bereits in Schema »%s«" -#: commands/tablecmds.c:17125 +#: commands/tablecmds.c:17263 #, c-format msgid "\"%s\" is not a table or materialized view" msgstr "»%s« ist keine Tabelle oder materialisierte Sicht" -#: commands/tablecmds.c:17275 +#: commands/tablecmds.c:17413 #, c-format msgid "\"%s\" is not a composite type" msgstr "»%s« ist kein zusammengesetzter Typ" -#: commands/tablecmds.c:17303 +#: commands/tablecmds.c:17441 #, c-format msgid "cannot change schema of index \"%s\"" msgstr "kann Schema des Index »%s« nicht ändern" -#: commands/tablecmds.c:17305 commands/tablecmds.c:17317 +#: commands/tablecmds.c:17443 commands/tablecmds.c:17455 #, c-format msgid "Change the schema of the table instead." msgstr "Ändern Sie stattdessen das Schema der Tabelle." -#: commands/tablecmds.c:17309 +#: commands/tablecmds.c:17447 #, c-format msgid "cannot change schema of composite type \"%s\"" msgstr "kann Schema des zusammengesetzten Typs »%s« nicht ändern" -#: commands/tablecmds.c:17315 +#: commands/tablecmds.c:17453 #, c-format msgid "cannot change schema of TOAST table \"%s\"" msgstr "kann Schema der TOAST-Tabelle »%s« nicht ändern" -#: commands/tablecmds.c:17352 +#: commands/tablecmds.c:17490 #, c-format msgid "unrecognized partitioning strategy \"%s\"" msgstr "unbekannte Partitionierungsstrategie »%s«" -#: commands/tablecmds.c:17360 +#: commands/tablecmds.c:17498 #, c-format msgid "cannot use \"list\" partition strategy with more than one column" msgstr "Partitionierungsstrategie »list« kann nicht mit mehr als einer Spalte verwendet werden" -#: commands/tablecmds.c:17426 +#: commands/tablecmds.c:17564 #, c-format msgid "column \"%s\" named in partition key does not exist" msgstr "Spalte »%s«, die im Partitionierungsschlüssel verwendet wird, existiert nicht" -#: commands/tablecmds.c:17434 +#: commands/tablecmds.c:17572 #, c-format msgid "cannot use system column \"%s\" in partition key" msgstr "Systemspalte »%s« kann nicht im Partitionierungsschlüssel verwendet werden" -#: commands/tablecmds.c:17445 commands/tablecmds.c:17535 +#: commands/tablecmds.c:17583 commands/tablecmds.c:17673 #, c-format msgid "cannot use generated column in partition key" msgstr "generierte Spalte kann nicht im Partitionierungsschlüssel verwendet werden" -#: commands/tablecmds.c:17446 commands/tablecmds.c:17536 commands/trigger.c:668 -#: rewrite/rewriteHandler.c:929 rewrite/rewriteHandler.c:964 -#, c-format -msgid "Column \"%s\" is a generated column." -msgstr "Spalte »%s« ist eine generierte Spalte." - -#: commands/tablecmds.c:17518 +#: commands/tablecmds.c:17656 #, c-format msgid "partition key expressions cannot contain system column references" msgstr "Partitionierungsschlüsselausdruck kann nicht auf Systemspalten verweisen" -#: commands/tablecmds.c:17565 +#: commands/tablecmds.c:17703 #, c-format msgid "functions in partition key expression must be marked IMMUTABLE" msgstr "Funktionen im Partitionierungsschlüsselausdruck müssen als IMMUTABLE markiert sein" -#: commands/tablecmds.c:17574 +#: commands/tablecmds.c:17712 #, c-format msgid "cannot use constant expression as partition key" msgstr "Partitionierungsschlüssel kann kein konstanter Ausdruck sein" -#: commands/tablecmds.c:17595 +#: commands/tablecmds.c:17733 #, c-format msgid "could not determine which collation to use for partition expression" msgstr "konnte die für den Partitionierungsausdruck zu verwendende Sortierfolge nicht bestimmen" -#: commands/tablecmds.c:17630 +#: commands/tablecmds.c:17768 #, c-format msgid "You must specify a hash operator class or define a default hash operator class for the data type." msgstr "Sie müssen eine hash-Operatorklasse angeben oder eine hash-Standardoperatorklasse für den Datentyp definieren." -#: commands/tablecmds.c:17636 +#: commands/tablecmds.c:17774 #, c-format msgid "You must specify a btree operator class or define a default btree operator class for the data type." msgstr "Sie müssen eine btree-Operatorklasse angeben oder eine btree-Standardoperatorklasse für den Datentyp definieren." -#: commands/tablecmds.c:17887 +#: commands/tablecmds.c:18025 #, c-format msgid "\"%s\" is already a partition" msgstr "»%s« ist bereits eine Partition" -#: commands/tablecmds.c:17893 +#: commands/tablecmds.c:18031 #, c-format msgid "cannot attach a typed table as partition" msgstr "eine getypte Tabelle kann nicht als Partition angefügt werden" -#: commands/tablecmds.c:17909 +#: commands/tablecmds.c:18047 #, c-format msgid "cannot attach inheritance child as partition" msgstr "ein Vererbungskind kann nicht als Partition angefügt werden" -#: commands/tablecmds.c:17923 +#: commands/tablecmds.c:18061 #, c-format msgid "cannot attach inheritance parent as partition" msgstr "eine Tabelle mit abgeleiteten Tabellen kann nicht als Partition angefügt werden" -#: commands/tablecmds.c:17957 +#: commands/tablecmds.c:18095 #, c-format msgid "cannot attach a temporary relation as partition of permanent relation \"%s\"" msgstr "eine temporäre Relation kann nicht als Partition an permanente Relation »%s« angefügt werden" -#: commands/tablecmds.c:17965 +#: commands/tablecmds.c:18103 #, c-format msgid "cannot attach a permanent relation as partition of temporary relation \"%s\"" msgstr "eine permanente Relation kann nicht als Partition an temporäre Relation »%s« angefügt werden" -#: commands/tablecmds.c:17973 +#: commands/tablecmds.c:18111 #, c-format msgid "cannot attach as partition of temporary relation of another session" msgstr "kann nicht als Partition an temporäre Relation einer anderen Sitzung anfügen" -#: commands/tablecmds.c:17980 +#: commands/tablecmds.c:18118 #, c-format msgid "cannot attach temporary relation of another session as partition" msgstr "temporäre Relation einer anderen Sitzung kann nicht als Partition angefügt werden" -#: commands/tablecmds.c:18000 +#: commands/tablecmds.c:18138 #, c-format msgid "table \"%s\" contains column \"%s\" not found in parent \"%s\"" msgstr "Tabelle »%s« enthält Spalte »%s«, die nicht in der Elterntabelle »%s« gefunden wurde" -#: commands/tablecmds.c:18003 +#: commands/tablecmds.c:18141 #, c-format msgid "The new partition may contain only the columns present in parent." msgstr "Die neue Partition darf nur Spalten enthalten, die auch die Elterntabelle hat." -#: commands/tablecmds.c:18015 +#: commands/tablecmds.c:18153 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming a partition" msgstr "Trigger »%s« verhindert, dass Tabelle »%s« eine Partition werden kann" -#: commands/tablecmds.c:18017 +#: commands/tablecmds.c:18155 #, c-format msgid "ROW triggers with transition tables are not supported on partitions." msgstr "ROW-Trigger mit Übergangstabellen werden für Partitionen nicht unterstützt." -#: commands/tablecmds.c:18196 +#: commands/tablecmds.c:18334 #, c-format msgid "cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"" msgstr "kann Fremdtabelle »%s« nicht als Partition an partitionierte Tabelle »%s« anfügen" -#: commands/tablecmds.c:18199 +#: commands/tablecmds.c:18337 #, c-format msgid "Partitioned table \"%s\" contains unique indexes." msgstr "Partitionierte Tabelle »%s« enthält Unique-Indexe." -#: commands/tablecmds.c:18514 +#: commands/tablecmds.c:18652 #, c-format msgid "cannot detach partitions concurrently when a default partition exists" msgstr "nebenläufiges Abtrennen einer Partition ist nicht möglich, wenn eine Standardpartition existiert" -#: commands/tablecmds.c:18623 +#: commands/tablecmds.c:18761 #, c-format msgid "partitioned table \"%s\" was removed concurrently" msgstr "partitionierte Tabelle »%s« wurde nebenläufig entfernt" -#: commands/tablecmds.c:18629 +#: commands/tablecmds.c:18767 #, c-format msgid "partition \"%s\" was removed concurrently" msgstr "Partition »%s« wurde nebenläufig entfernt" -#: commands/tablecmds.c:19153 commands/tablecmds.c:19173 -#: commands/tablecmds.c:19193 commands/tablecmds.c:19212 -#: commands/tablecmds.c:19254 +#: commands/tablecmds.c:19347 commands/tablecmds.c:19367 +#: commands/tablecmds.c:19387 commands/tablecmds.c:19406 +#: commands/tablecmds.c:19448 #, c-format msgid "cannot attach index \"%s\" as a partition of index \"%s\"" msgstr "kann Index »%s« nicht als Partition an Index »%s« anfügen" -#: commands/tablecmds.c:19156 +#: commands/tablecmds.c:19350 #, c-format msgid "Index \"%s\" is already attached to another index." msgstr "Index »%s« ist bereits an einen anderen Index angefügt." -#: commands/tablecmds.c:19176 +#: commands/tablecmds.c:19370 #, c-format msgid "Index \"%s\" is not an index on any partition of table \"%s\"." msgstr "Index »%s« ist kein Index irgendeiner Partition von Tabelle »%s«." -#: commands/tablecmds.c:19196 +#: commands/tablecmds.c:19390 #, c-format msgid "The index definitions do not match." msgstr "Die Indexdefinitionen stimmen nicht überein." -#: commands/tablecmds.c:19215 +#: commands/tablecmds.c:19409 #, c-format msgid "The index \"%s\" belongs to a constraint in table \"%s\" but no constraint exists for index \"%s\"." msgstr "Der Index »%s« gehört zu einem Constraint in Tabelle »%s«, aber kein Constraint existiert für Index »%s«." -#: commands/tablecmds.c:19257 +#: commands/tablecmds.c:19451 #, c-format msgid "Another index is already attached for partition \"%s\"." msgstr "Ein anderer Index ist bereits für Partition »%s« angefügt." -#: commands/tablecmds.c:19494 +#: commands/tablecmds.c:19688 #, c-format msgid "column data type %s does not support compression" msgstr "Spaltendatentyp %s unterstützt keine Komprimierung" -#: commands/tablecmds.c:19501 +#: commands/tablecmds.c:19695 #, c-format msgid "invalid compression method \"%s\"" msgstr "ungültige Komprimierungsmethode »%s«" @@ -11309,17 +11331,17 @@ msgstr "Tablespace-Pfad »%s« ist zu lang" msgid "tablespace location should not be inside the data directory" msgstr "Tablespace-Pfad sollte nicht innerhalb des Datenverzeichnisses sein" -#: commands/tablespace.c:290 commands/tablespace.c:996 +#: commands/tablespace.c:290 commands/tablespace.c:991 #, c-format msgid "unacceptable tablespace name \"%s\"" msgstr "inakzeptabler Tablespace-Name »%s«" -#: commands/tablespace.c:292 commands/tablespace.c:997 +#: commands/tablespace.c:292 commands/tablespace.c:992 #, c-format msgid "The prefix \"pg_\" is reserved for system tablespaces." msgstr "Der Präfix »pg_« ist für System-Tablespaces reserviert." -#: commands/tablespace.c:311 commands/tablespace.c:1018 +#: commands/tablespace.c:311 commands/tablespace.c:1013 #, c-format msgid "tablespace \"%s\" already exists" msgstr "Tablespace »%s« existiert bereits" @@ -11329,9 +11351,9 @@ msgstr "Tablespace »%s« existiert bereits" msgid "pg_tablespace OID value not set when in binary upgrade mode" msgstr "OID-Wert für pg_tablespace ist im Binary-Upgrade-Modus nicht gesetzt" -#: commands/tablespace.c:441 commands/tablespace.c:979 -#: commands/tablespace.c:1068 commands/tablespace.c:1137 -#: commands/tablespace.c:1283 commands/tablespace.c:1486 +#: commands/tablespace.c:441 commands/tablespace.c:974 +#: commands/tablespace.c:1063 commands/tablespace.c:1132 +#: commands/tablespace.c:1278 commands/tablespace.c:1481 #, c-format msgid "tablespace \"%s\" does not exist" msgstr "Tablespace »%s« existiert nicht" @@ -11372,33 +11394,33 @@ msgid "directory \"%s\" already in use as a tablespace" msgstr "Verzeichnis »%s« ist bereits als Tablespace in Verwendung" #: commands/tablespace.c:788 commands/tablespace.c:801 -#: commands/tablespace.c:837 commands/tablespace.c:929 storage/file/fd.c:3255 -#: storage/file/fd.c:3669 +#: commands/tablespace.c:836 commands/tablespace.c:926 storage/file/fd.c:3255 +#: storage/file/fd.c:3664 #, c-format msgid "could not remove directory \"%s\": %m" msgstr "konnte Verzeichnis »%s« nicht löschen: %m" -#: commands/tablespace.c:850 commands/tablespace.c:938 +#: commands/tablespace.c:848 commands/tablespace.c:934 #, c-format msgid "could not remove symbolic link \"%s\": %m" msgstr "konnte symbolische Verknüpfung »%s« nicht löschen: %m" -#: commands/tablespace.c:860 commands/tablespace.c:947 +#: commands/tablespace.c:857 commands/tablespace.c:942 #, c-format msgid "\"%s\" is not a directory or symbolic link" msgstr "»%s« ist kein Verzeichnis oder symbolische Verknüpfung" -#: commands/tablespace.c:1142 +#: commands/tablespace.c:1137 #, c-format msgid "Tablespace \"%s\" does not exist." msgstr "Tablespace »%s« existiert nicht." -#: commands/tablespace.c:1588 +#: commands/tablespace.c:1583 #, c-format msgid "directories for tablespace %u could not be removed" msgstr "Verzeichnisse für Tablespace %u konnten nicht entfernt werden" -#: commands/tablespace.c:1590 +#: commands/tablespace.c:1585 #, c-format msgid "You can remove the directories manually if necessary." msgstr "Sie können die Verzeichnisse falls nötig manuell entfernen." @@ -11650,31 +11672,25 @@ msgstr "Verschieben einer Zeile in eine andere Partition durch einen BEFORE-FOR- msgid "Before executing trigger \"%s\", the row was to be in partition \"%s.%s\"." msgstr "Vor der Ausführung von Trigger »%s« gehörte die Zeile in Partition »%s.%s«." -#: commands/trigger.c:3441 executor/nodeModifyTable.c:2359 -#: executor/nodeModifyTable.c:2442 -#, c-format -msgid "tuple to be updated was already modified by an operation triggered by the current command" -msgstr "das zu aktualisierende Tupel wurde schon durch eine vom aktuellen Befehl ausgelöste Operation verändert" - #: commands/trigger.c:3442 executor/nodeModifyTable.c:1522 -#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2360 -#: executor/nodeModifyTable.c:2443 executor/nodeModifyTable.c:2980 -#: executor/nodeModifyTable.c:3107 +#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2363 +#: executor/nodeModifyTable.c:2454 executor/nodeModifyTable.c:3015 +#: executor/nodeModifyTable.c:3154 #, c-format msgid "Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows." msgstr "Verwenden Sie einen AFTER-Trigger anstelle eines BEFORE-Triggers, um Änderungen an andere Zeilen zu propagieren." #: commands/trigger.c:3483 executor/nodeLockRows.c:229 #: executor/nodeLockRows.c:238 executor/nodeModifyTable.c:316 -#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2377 -#: executor/nodeModifyTable.c:2585 +#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2380 +#: executor/nodeModifyTable.c:2604 #, c-format msgid "could not serialize access due to concurrent update" msgstr "konnte Zugriff nicht serialisieren wegen gleichzeitiger Aktualisierung" #: commands/trigger.c:3491 executor/nodeModifyTable.c:1628 -#: executor/nodeModifyTable.c:2460 executor/nodeModifyTable.c:2609 -#: executor/nodeModifyTable.c:2998 +#: executor/nodeModifyTable.c:2471 executor/nodeModifyTable.c:2628 +#: executor/nodeModifyTable.c:3033 #, c-format msgid "could not serialize access due to concurrent delete" msgstr "konnte Zugriff nicht serialisieren wegen gleichzeitigem Löschen" @@ -12155,8 +12171,8 @@ msgstr "nur Superuser können Benutzer mit »bypassrls« anlegen" msgid "permission denied to create role" msgstr "keine Berechtigung, um Rolle zu erzeugen" -#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16437 -#: gram.y:16483 utils/adt/acl.c:5331 utils/adt/acl.c:5337 +#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16444 +#: gram.y:16490 utils/adt/acl.c:5331 utils/adt/acl.c:5337 #, c-format msgid "role name \"%s\" is reserved" msgstr "Rollenname »%s« ist reserviert" @@ -12452,32 +12468,32 @@ msgstr "älteste Multixact ist weit in der Vergangenheit" msgid "Close open transactions with multixacts soon to avoid wraparound problems." msgstr "Schließen Sie bald alle offenen Transaktionen mit Multixacts, um Überlaufprobleme zu vermeiden." -#: commands/vacuum.c:1811 +#: commands/vacuum.c:1821 #, c-format msgid "some databases have not been vacuumed in over 2 billion transactions" msgstr "einige Datenbanken sind seit über 2 Milliarden Transaktionen nicht gevacuumt worden" -#: commands/vacuum.c:1812 +#: commands/vacuum.c:1822 #, c-format msgid "You might have already suffered transaction-wraparound data loss." msgstr "Sie haben möglicherweise bereits Daten wegen Transaktionsnummernüberlauf verloren." -#: commands/vacuum.c:1980 +#: commands/vacuum.c:1990 #, c-format msgid "skipping \"%s\" --- cannot vacuum non-tables or special system tables" msgstr "überspringe »%s« --- kann Nicht-Tabellen oder besondere Systemtabellen nicht vacuumen" -#: commands/vacuum.c:2358 +#: commands/vacuum.c:2368 #, c-format msgid "scanned index \"%s\" to remove %d row versions" msgstr "Index »%s« gelesen und %d Zeilenversionen entfernt" -#: commands/vacuum.c:2377 +#: commands/vacuum.c:2387 #, c-format msgid "index \"%s\" now contains %.0f row versions in %u pages" msgstr "Index »%s« enthält %.0f Zeilenversionen in %u Seiten" -#: commands/vacuum.c:2381 +#: commands/vacuum.c:2391 #, c-format msgid "" "%.0f index row versions were removed.\n" @@ -12502,7 +12518,8 @@ msgid_plural "launched %d parallel vacuum workers for index cleanup (planned: %d msgstr[0] "%d parallelen Vacuum-Worker für Index-Cleanup gestartet (geplant: %d)" msgstr[1] "%d parallele Vacuum-Worker für Index-Cleanup gestartet (geplant: %d)" -#: commands/variable.c:165 utils/misc/guc.c:12115 utils/misc/guc.c:12193 +#: commands/variable.c:165 tcop/postgres.c:3665 utils/misc/guc.c:12133 +#: utils/misc/guc.c:12211 #, c-format msgid "Unrecognized key word: \"%s\"." msgstr "Unbekanntes Schlüsselwort: »%s«." @@ -12562,7 +12579,7 @@ msgstr "SET TRANSACTION ISOLATION LEVEL muss vor allen Anfragen aufgerufen werde msgid "SET TRANSACTION ISOLATION LEVEL must not be called in a subtransaction" msgstr "SET TRANSACTION ISOLATION LEVEL kann nicht in einer Subtransaktion aufgerufen werden" -#: commands/variable.c:548 storage/lmgr/predicate.c:1694 +#: commands/variable.c:548 storage/lmgr/predicate.c:1699 #, c-format msgid "cannot use serializable mode in a hot standby" msgstr "kann serialisierbaren Modus nicht in einem Hot Standby verwenden" @@ -12728,7 +12745,7 @@ msgstr "Anfrage liefert einen Wert für eine gelöschte Spalte auf Position %d." msgid "Table has type %s at ordinal position %d, but query expects %s." msgstr "Tabelle hat Typ %s auf Position %d, aber Anfrage erwartet %s." -#: executor/execExpr.c:1098 parser/parse_agg.c:837 +#: executor/execExpr.c:1098 parser/parse_agg.c:835 #, c-format msgid "window function calls cannot be nested" msgstr "Aufrufe von Fensterfunktionen können nicht geschachtelt werden" @@ -12895,175 +12912,175 @@ msgstr "Schlüssel %s kollidiert mit vorhandenem Schlüssel %s." msgid "Key conflicts with existing key." msgstr "Der Schlüssel kollidiert mit einem vorhandenen Schlüssel." -#: executor/execMain.c:1009 +#: executor/execMain.c:1016 #, c-format msgid "cannot change sequence \"%s\"" msgstr "kann Sequenz »%s« nicht ändern" -#: executor/execMain.c:1015 +#: executor/execMain.c:1022 #, c-format msgid "cannot change TOAST relation \"%s\"" msgstr "kann TOAST-Relation »%s« nicht ändern" -#: executor/execMain.c:1033 rewrite/rewriteHandler.c:3103 -#: rewrite/rewriteHandler.c:3983 +#: executor/execMain.c:1040 rewrite/rewriteHandler.c:3112 +#: rewrite/rewriteHandler.c:4000 #, c-format msgid "cannot insert into view \"%s\"" msgstr "kann nicht in Sicht »%s« einfügen" -#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3106 -#: rewrite/rewriteHandler.c:3986 +#: executor/execMain.c:1042 rewrite/rewriteHandler.c:3115 +#: rewrite/rewriteHandler.c:4003 #, c-format msgid "To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule." msgstr "Um Einfügen in die Sicht zu ermöglichen, richten Sie einen INSTEAD OF INSERT Trigger oder eine ON INSERT DO INSTEAD Regel ohne Bedingung ein." -#: executor/execMain.c:1041 rewrite/rewriteHandler.c:3111 -#: rewrite/rewriteHandler.c:3991 +#: executor/execMain.c:1048 rewrite/rewriteHandler.c:3120 +#: rewrite/rewriteHandler.c:4008 #, c-format msgid "cannot update view \"%s\"" msgstr "kann Sicht »%s« nicht aktualisieren" -#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3114 -#: rewrite/rewriteHandler.c:3994 +#: executor/execMain.c:1050 rewrite/rewriteHandler.c:3123 +#: rewrite/rewriteHandler.c:4011 #, c-format msgid "To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule." msgstr "Um Aktualisieren der Sicht zu ermöglichen, richten Sie einen INSTEAD OF UPDATE Trigger oder eine ON UPDATE DO INSTEAD Regel ohne Bedingung ein." -#: executor/execMain.c:1049 rewrite/rewriteHandler.c:3119 -#: rewrite/rewriteHandler.c:3999 +#: executor/execMain.c:1056 rewrite/rewriteHandler.c:3128 +#: rewrite/rewriteHandler.c:4016 #, c-format msgid "cannot delete from view \"%s\"" msgstr "kann nicht aus Sicht »%s« löschen" -#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3122 -#: rewrite/rewriteHandler.c:4002 +#: executor/execMain.c:1058 rewrite/rewriteHandler.c:3131 +#: rewrite/rewriteHandler.c:4019 #, c-format msgid "To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule." msgstr "Um Löschen aus der Sicht zu ermöglichen, richten Sie einen INSTEAD OF DELETE Trigger oder eine ON DELETE DO INSTEAD Regel ohne Bedingung ein." -#: executor/execMain.c:1062 +#: executor/execMain.c:1069 #, c-format msgid "cannot change materialized view \"%s\"" msgstr "kann materialisierte Sicht »%s« nicht ändern" -#: executor/execMain.c:1074 +#: executor/execMain.c:1081 #, c-format msgid "cannot insert into foreign table \"%s\"" msgstr "kann nicht in Fremdtabelle »%s« einfügen" -#: executor/execMain.c:1080 +#: executor/execMain.c:1087 #, c-format msgid "foreign table \"%s\" does not allow inserts" msgstr "Fremdtabelle »%s« erlaubt kein Einfügen" -#: executor/execMain.c:1087 +#: executor/execMain.c:1094 #, c-format msgid "cannot update foreign table \"%s\"" msgstr "kann Fremdtabelle »%s« nicht aktualisieren" -#: executor/execMain.c:1093 +#: executor/execMain.c:1100 #, c-format msgid "foreign table \"%s\" does not allow updates" msgstr "Fremdtabelle »%s« erlaubt kein Aktualisieren" -#: executor/execMain.c:1100 +#: executor/execMain.c:1107 #, c-format msgid "cannot delete from foreign table \"%s\"" msgstr "kann nicht aus Fremdtabelle »%s« löschen" -#: executor/execMain.c:1106 +#: executor/execMain.c:1113 #, c-format msgid "foreign table \"%s\" does not allow deletes" msgstr "Fremdtabelle »%s« erlaubt kein Löschen" -#: executor/execMain.c:1117 +#: executor/execMain.c:1124 #, c-format msgid "cannot change relation \"%s\"" msgstr "kann Relation »%s« nicht ändern" -#: executor/execMain.c:1144 +#: executor/execMain.c:1151 #, c-format msgid "cannot lock rows in sequence \"%s\"" msgstr "kann Zeilen in Sequenz »%s« nicht sperren" -#: executor/execMain.c:1151 +#: executor/execMain.c:1158 #, c-format msgid "cannot lock rows in TOAST relation \"%s\"" msgstr "kann Zeilen in TOAST-Relation »%s« nicht sperren" -#: executor/execMain.c:1158 +#: executor/execMain.c:1165 #, c-format msgid "cannot lock rows in view \"%s\"" msgstr "kann Zeilen in Sicht »%s« nicht sperren" -#: executor/execMain.c:1166 +#: executor/execMain.c:1173 #, c-format msgid "cannot lock rows in materialized view \"%s\"" msgstr "kann Zeilen in materialisierter Sicht »%s« nicht sperren" -#: executor/execMain.c:1175 executor/execMain.c:2685 +#: executor/execMain.c:1182 executor/execMain.c:2694 #: executor/nodeLockRows.c:136 #, c-format msgid "cannot lock rows in foreign table \"%s\"" msgstr "kann Zeilen in Fremdtabelle »%s« nicht sperren" -#: executor/execMain.c:1181 +#: executor/execMain.c:1188 #, c-format msgid "cannot lock rows in relation \"%s\"" msgstr "kann Zeilen in Relation »%s« nicht sperren" -#: executor/execMain.c:1888 +#: executor/execMain.c:1897 #, c-format msgid "new row for relation \"%s\" violates partition constraint" msgstr "neue Zeile für Relation »%s« verletzt Partitions-Constraint" -#: executor/execMain.c:1890 executor/execMain.c:1973 executor/execMain.c:2023 -#: executor/execMain.c:2132 +#: executor/execMain.c:1899 executor/execMain.c:1982 executor/execMain.c:2032 +#: executor/execMain.c:2141 #, c-format msgid "Failing row contains %s." msgstr "Fehlgeschlagene Zeile enthält %s." -#: executor/execMain.c:1970 +#: executor/execMain.c:1979 #, c-format msgid "null value in column \"%s\" of relation \"%s\" violates not-null constraint" msgstr "NULL-Wert in Spalte »%s« von Relation »%s« verletzt Not-Null-Constraint" -#: executor/execMain.c:2021 +#: executor/execMain.c:2030 #, c-format msgid "new row for relation \"%s\" violates check constraint \"%s\"" msgstr "neue Zeile für Relation »%s« verletzt Check-Constraint »%s«" -#: executor/execMain.c:2130 +#: executor/execMain.c:2139 #, c-format msgid "new row violates check option for view \"%s\"" msgstr "neue Zeile verletzt Check-Option für Sicht »%s«" -#: executor/execMain.c:2140 +#: executor/execMain.c:2149 #, c-format msgid "new row violates row-level security policy \"%s\" for table \"%s\"" msgstr "neue Zeile verletzt Policy für Sicherheit auf Zeilenebene »%s« für Tabelle »%s«" -#: executor/execMain.c:2145 +#: executor/execMain.c:2154 #, c-format msgid "new row violates row-level security policy for table \"%s\"" msgstr "neue Zeile verletzt Policy für Sicherheit auf Zeilenebene für Tabelle »%s«" -#: executor/execMain.c:2153 +#: executor/execMain.c:2162 #, c-format msgid "target row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "Zielzeile verletzt Policy für Sicherheit auf Zeilenebene »%s« (USING-Ausdruck) für Tabelle »%s«" -#: executor/execMain.c:2158 +#: executor/execMain.c:2167 #, c-format msgid "target row violates row-level security policy (USING expression) for table \"%s\"" msgstr "Zielzeile verletzt Policy für Sicherheit auf Zeilenebene (USING-Ausdruck) für Tabelle »%s«" -#: executor/execMain.c:2165 +#: executor/execMain.c:2174 #, c-format msgid "new row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "neue Zeile verletzt Policy für Sicherheit auf Zeilenebene »%s« (USING-Ausdruck) für Tabelle »%s«" -#: executor/execMain.c:2170 +#: executor/execMain.c:2179 #, c-format msgid "new row violates row-level security policy (USING expression) for table \"%s\"" msgstr "neue Zeile verletzt Policy für Sicherheit auf Zeilenebene (USING-Ausdruck) für Tabelle »%s«" @@ -13078,22 +13095,22 @@ msgstr "keine Partition von Relation »%s« für die Zeile gefunden" msgid "Partition key of the failing row contains %s." msgstr "Partitionierungsschlüssel der fehlgeschlagenen Zeile enthält %s." -#: executor/execReplication.c:196 executor/execReplication.c:380 +#: executor/execReplication.c:197 executor/execReplication.c:381 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update, retrying" msgstr "das zu sperrende Tupel wurde schon durch ein gleichzeitiges Update in eine andere Partition verschoben, versuche erneut" -#: executor/execReplication.c:200 executor/execReplication.c:384 +#: executor/execReplication.c:201 executor/execReplication.c:385 #, c-format msgid "concurrent update, retrying" msgstr "gleichzeitige Aktualisierung, versuche erneut" -#: executor/execReplication.c:206 executor/execReplication.c:390 +#: executor/execReplication.c:207 executor/execReplication.c:391 #, c-format msgid "concurrent delete, retrying" msgstr "gleichzeitiges Löschen, versuche erneut" -#: executor/execReplication.c:276 parser/parse_cte.c:308 +#: executor/execReplication.c:277 parser/parse_cte.c:308 #: parser/parse_oper.c:233 utils/adt/array_userfuncs.c:724 #: utils/adt/array_userfuncs.c:867 utils/adt/arrayfuncs.c:3709 #: utils/adt/arrayfuncs.c:4264 utils/adt/arrayfuncs.c:6256 @@ -13102,47 +13119,47 @@ msgstr "gleichzeitiges Löschen, versuche erneut" msgid "could not identify an equality operator for type %s" msgstr "konnte keinen Ist-Gleich-Operator für Typ %s ermitteln" -#: executor/execReplication.c:606 executor/execReplication.c:612 +#: executor/execReplication.c:611 executor/execReplication.c:617 #, c-format msgid "cannot update table \"%s\"" msgstr "kann Tabelle »%s« nicht aktualisieren" -#: executor/execReplication.c:608 executor/execReplication.c:620 +#: executor/execReplication.c:613 executor/execReplication.c:625 #, c-format msgid "Column used in the publication WHERE expression is not part of the replica identity." msgstr "Im WHERE-Ausdruck der Publikation verwendete Spalte ist nicht Teil der Replika-Identität." -#: executor/execReplication.c:614 executor/execReplication.c:626 +#: executor/execReplication.c:619 executor/execReplication.c:631 #, c-format msgid "Column list used by the publication does not cover the replica identity." msgstr "Die von der Publikation verwendete Spaltenliste umfasst die Replika-Identität nicht." -#: executor/execReplication.c:618 executor/execReplication.c:624 +#: executor/execReplication.c:623 executor/execReplication.c:629 #, c-format msgid "cannot delete from table \"%s\"" msgstr "kann nicht aus Tabelle »%s« löschen" -#: executor/execReplication.c:644 +#: executor/execReplication.c:649 #, c-format msgid "cannot update table \"%s\" because it does not have a replica identity and publishes updates" msgstr "Tabelle »%s« kann nicht aktualisiert werden, weil sie keine Replik-Identität hat und Updates publiziert" -#: executor/execReplication.c:646 +#: executor/execReplication.c:651 #, c-format msgid "To enable updating the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "Um Aktualisieren der Tabelle zu ermöglichen, setzen Sie REPLICA IDENTITY mit ALTER TABLE." -#: executor/execReplication.c:650 +#: executor/execReplication.c:655 #, c-format msgid "cannot delete from table \"%s\" because it does not have a replica identity and publishes deletes" msgstr "aus Tabelle »%s« kann nicht gelöscht werden, weil sie keine Replik-Identität hat und Deletes publiziert" -#: executor/execReplication.c:652 +#: executor/execReplication.c:657 #, c-format msgid "To enable deleting from the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "Um Löschen in der Tabelle zu ermöglichen, setzen Sie REPLICA IDENTITY mit ALTER TABLE." -#: executor/execReplication.c:668 +#: executor/execReplication.c:673 #, c-format msgid "cannot use relation \"%s.%s\" as logical replication target" msgstr "Relation »%s.%s« kann nicht als Ziel für logische Replikation verwendet werden" @@ -13222,7 +13239,7 @@ msgid "%s is not allowed in an SQL function" msgstr "%s ist in SQL-Funktionen nicht erlaubt" #. translator: %s is a SQL statement name -#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2648 +#: executor/functions.c:528 executor/spi.c:1745 executor/spi.c:2656 #, c-format msgid "%s is not allowed in a non-volatile function" msgstr "%s ist in als nicht »volatile« markierten Funktionen nicht erlaubt" @@ -13289,7 +13306,7 @@ msgstr "Rückgabetyp %s wird von SQL-Funktionen nicht unterstützt" msgid "aggregate %u needs to have compatible input type and transition type" msgstr "Aggregatfunktion %u muss kompatiblen Eingabe- und Übergangstyp haben" -#: executor/nodeAgg.c:3952 parser/parse_agg.c:679 parser/parse_agg.c:707 +#: executor/nodeAgg.c:3952 parser/parse_agg.c:677 parser/parse_agg.c:705 #, c-format msgid "aggregate function calls cannot be nested" msgstr "Aufrufe von Aggregatfunktionen können nicht geschachtelt werden" @@ -13370,28 +13387,28 @@ msgid "Consider defining the foreign key on table \"%s\"." msgstr "Definieren Sie den Fremdschlüssel eventuell für Tabelle »%s«." #. translator: %s is a SQL command name -#: executor/nodeModifyTable.c:2563 executor/nodeModifyTable.c:2986 -#: executor/nodeModifyTable.c:3113 +#: executor/nodeModifyTable.c:2582 executor/nodeModifyTable.c:3021 +#: executor/nodeModifyTable.c:3160 #, c-format msgid "%s command cannot affect row a second time" msgstr "Befehl in %s kann eine Zeile nicht ein zweites Mal ändern" -#: executor/nodeModifyTable.c:2565 +#: executor/nodeModifyTable.c:2584 #, c-format msgid "Ensure that no rows proposed for insertion within the same command have duplicate constrained values." msgstr "Stellen Sie sicher, dass keine im selben Befehl fürs Einfügen vorgesehene Zeilen doppelte Werte haben, die einen Constraint verletzen würden." -#: executor/nodeModifyTable.c:2979 executor/nodeModifyTable.c:3106 +#: executor/nodeModifyTable.c:3014 executor/nodeModifyTable.c:3153 #, c-format msgid "tuple to be updated or deleted was already modified by an operation triggered by the current command" msgstr "das zu aktualisierende oder zu löschende Tupel wurde schon durch eine vom aktuellen Befehl ausgelöste Operation verändert" -#: executor/nodeModifyTable.c:2988 executor/nodeModifyTable.c:3115 +#: executor/nodeModifyTable.c:3023 executor/nodeModifyTable.c:3162 #, c-format msgid "Ensure that not more than one source row matches any one target row." msgstr "Stellen Sie sicher, dass nicht mehr als eine Quellzeile auf jede Zielzeile passt." -#: executor/nodeModifyTable.c:3070 +#: executor/nodeModifyTable.c:3112 #, c-format msgid "tuple to be deleted was already moved to another partition due to concurrent update" msgstr "das zu löschende Tupel wurde schon durch ein gleichzeitiges Update in eine andere Partition verschoben" @@ -13497,49 +13514,49 @@ msgstr "Prüfen Sie, ob Aufrufe von »SPI_finish« fehlen." msgid "subtransaction left non-empty SPI stack" msgstr "Subtransaktion ließ nicht-leeren SPI-Stack zurück" -#: executor/spi.c:1600 +#: executor/spi.c:1603 #, c-format msgid "cannot open multi-query plan as cursor" msgstr "Plan mit mehreren Anfragen kann nicht als Cursor geöffnet werden" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:1610 +#: executor/spi.c:1613 #, c-format msgid "cannot open %s query as cursor" msgstr "%s kann nicht als Cursor geöffnet werden" -#: executor/spi.c:1716 +#: executor/spi.c:1719 #, c-format msgid "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE is not supported" msgstr "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE wird nicht unterstützt" -#: executor/spi.c:1717 parser/analyze.c:2910 +#: executor/spi.c:1720 parser/analyze.c:2910 #, c-format msgid "Scrollable cursors must be READ ONLY." msgstr "Scrollbare Cursor müssen READ ONLY sein." -#: executor/spi.c:2487 +#: executor/spi.c:2495 #, c-format msgid "empty query does not return tuples" msgstr "leere Anfrage gibt keine Tupel zurück" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:2561 +#: executor/spi.c:2569 #, c-format msgid "%s query does not return tuples" msgstr "%s-Anfrage gibt keine Tupel zurück" -#: executor/spi.c:2975 +#: executor/spi.c:2983 #, c-format msgid "SQL expression \"%s\"" msgstr "SQL-Ausdruck »%s«" -#: executor/spi.c:2980 +#: executor/spi.c:2988 #, c-format msgid "PL/pgSQL assignment \"%s\"" msgstr "PL/pgSQL-Zuweisung »%s«" -#: executor/spi.c:2983 +#: executor/spi.c:2991 #, c-format msgid "SQL statement \"%s\"" msgstr "SQL-Anweisung »%s«" @@ -13549,22 +13566,28 @@ msgstr "SQL-Anweisung »%s«" msgid "could not send tuple to shared-memory queue" msgstr "konnte Tupel nicht an Shared-Memory-Queue senden" -#: foreign/foreign.c:221 +#: foreign/foreign.c:222 #, c-format msgid "user mapping not found for \"%s\"" msgstr "Benutzerabbildung für »%s« nicht gefunden" -#: foreign/foreign.c:638 +#: foreign/foreign.c:332 optimizer/plan/createplan.c:7123 +#: optimizer/util/plancat.c:477 +#, c-format +msgid "access to non-system foreign table is restricted" +msgstr "Zugriff auf Nicht-System-Fremdtabelle ist beschränkt" + +#: foreign/foreign.c:648 #, c-format msgid "invalid option \"%s\"" msgstr "ungültige Option »%s«" -#: foreign/foreign.c:640 +#: foreign/foreign.c:650 #, c-format msgid "Valid options in this context are: %s" msgstr "Gültige Optionen in diesem Zusammenhang sind: %s" -#: foreign/foreign.c:642 +#: foreign/foreign.c:652 #, c-format msgid "There are no valid options in this context." msgstr "Es gibt keine gültigen Optionen in diesem Zusammenhang." @@ -13644,7 +13667,7 @@ msgstr "STDIN/STDOUT sind nicht mit PROGRAM erlaubt" msgid "WHERE clause not allowed with COPY TO" msgstr "mit COPY TO ist keine WHERE-Klausel erlaubt" -#: gram.y:3609 gram.y:3616 gram.y:12759 gram.y:12767 +#: gram.y:3609 gram.y:3616 gram.y:12766 gram.y:12774 #, c-format msgid "GLOBAL is deprecated in temporary table creation" msgstr "die Verwendung von GLOBAL beim Erzeugen einer temporären Tabelle ist veraltet" @@ -13664,304 +13687,304 @@ msgstr "MATCH PARTIAL ist noch nicht implementiert" msgid "a column list with %s is only supported for ON DELETE actions" msgstr "eine Spaltenliste für %s wird nur für ON-DELETE-Aktionen unterstützt" -#: gram.y:4974 +#: gram.y:4981 #, c-format msgid "CREATE EXTENSION ... FROM is no longer supported" msgstr "CREATE EXTENSION ... FROM wird nicht mehr unterstützt" -#: gram.y:5672 +#: gram.y:5679 #, c-format msgid "unrecognized row security option \"%s\"" msgstr "unbekannte Zeilensicherheitsoption »%s«" -#: gram.y:5673 +#: gram.y:5680 #, c-format msgid "Only PERMISSIVE or RESTRICTIVE policies are supported currently." msgstr "Aktuell werden nur PERMISSIVE und RESTRICTIVE unterstützt." -#: gram.y:5758 +#: gram.y:5765 #, c-format msgid "CREATE OR REPLACE CONSTRAINT TRIGGER is not supported" msgstr "CREATE OR REPLACE CONSTRAINT TRIGGER wird nicht unterstützt" -#: gram.y:5795 +#: gram.y:5802 msgid "duplicate trigger events specified" msgstr "mehrere Trigger-Ereignisse angegeben" -#: gram.y:5937 parser/parse_utilcmd.c:3716 parser/parse_utilcmd.c:3742 +#: gram.y:5944 parser/parse_utilcmd.c:3744 parser/parse_utilcmd.c:3770 #, c-format msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" msgstr "Constraint, der als INITIALLY DEFERRED deklariert wurde, muss DEFERRABLE sein" -#: gram.y:5944 +#: gram.y:5951 #, c-format msgid "conflicting constraint properties" msgstr "widersprüchliche Constraint-Eigentschaften" -#: gram.y:6043 +#: gram.y:6050 #, c-format msgid "CREATE ASSERTION is not yet implemented" msgstr "CREATE ASSERTION ist noch nicht implementiert" -#: gram.y:6451 +#: gram.y:6458 #, c-format msgid "RECHECK is no longer required" msgstr "RECHECK wird nicht mehr benötigt" -#: gram.y:6452 +#: gram.y:6459 #, c-format msgid "Update your data type." msgstr "Aktualisieren Sie Ihren Datentyp." -#: gram.y:8308 +#: gram.y:8315 #, c-format msgid "aggregates cannot have output arguments" msgstr "Aggregatfunktionen können keine OUT-Argumente haben" -#: gram.y:8771 utils/adt/regproc.c:710 utils/adt/regproc.c:751 +#: gram.y:8778 utils/adt/regproc.c:710 utils/adt/regproc.c:751 #, c-format msgid "missing argument" msgstr "Argument fehlt" -#: gram.y:8772 utils/adt/regproc.c:711 utils/adt/regproc.c:752 +#: gram.y:8779 utils/adt/regproc.c:711 utils/adt/regproc.c:752 #, c-format msgid "Use NONE to denote the missing argument of a unary operator." msgstr "Verwenden Sie NONE, um das fehlende Argument eines unären Operators anzugeben." -#: gram.y:10993 gram.y:11012 +#: gram.y:11000 gram.y:11019 #, c-format msgid "WITH CHECK OPTION not supported on recursive views" msgstr "WITH CHECK OPTION wird für rekursive Sichten nicht unterstützt" -#: gram.y:12898 +#: gram.y:12905 #, c-format msgid "LIMIT #,# syntax is not supported" msgstr "Syntax LIMIT x,y wird nicht unterstützt" -#: gram.y:12899 +#: gram.y:12906 #, c-format msgid "Use separate LIMIT and OFFSET clauses." msgstr "Verwenden Sie die getrennten Klauseln LIMIT und OFFSET." -#: gram.y:13252 gram.y:13278 +#: gram.y:13259 gram.y:13285 #, c-format msgid "VALUES in FROM must have an alias" msgstr "VALUES in FROM muss Aliasnamen erhalten" -#: gram.y:13253 gram.y:13279 +#: gram.y:13260 gram.y:13286 #, c-format msgid "For example, FROM (VALUES ...) [AS] foo." msgstr "Zum Beispiel FROM (VALUES ...) [AS] xyz." -#: gram.y:13258 gram.y:13284 +#: gram.y:13265 gram.y:13291 #, c-format msgid "subquery in FROM must have an alias" msgstr "Unteranfrage in FROM muss Aliasnamen erhalten" -#: gram.y:13259 gram.y:13285 +#: gram.y:13266 gram.y:13292 #, c-format msgid "For example, FROM (SELECT ...) [AS] foo." msgstr "Zum Beispiel FROM (SELECT ...) [AS] xyz." -#: gram.y:13803 +#: gram.y:13810 #, c-format msgid "only one DEFAULT value is allowed" msgstr "nur ein DEFAULT-Wert ist erlaubt" -#: gram.y:13812 +#: gram.y:13819 #, c-format msgid "only one PATH value per column is allowed" msgstr "nur ein PATH-Wert pro Spalte ist erlaubt" -#: gram.y:13821 +#: gram.y:13828 #, c-format msgid "conflicting or redundant NULL / NOT NULL declarations for column \"%s\"" msgstr "widersprüchliche oder überflüssige NULL/NOT NULL-Deklarationen für Spalte »%s«" -#: gram.y:13830 +#: gram.y:13837 #, c-format msgid "unrecognized column option \"%s\"" msgstr "unbekannte Spaltenoption »%s«" -#: gram.y:14084 +#: gram.y:14091 #, c-format msgid "precision for type float must be at least 1 bit" msgstr "Präzision von Typ float muss mindestens 1 Bit sein" -#: gram.y:14093 +#: gram.y:14100 #, c-format msgid "precision for type float must be less than 54 bits" msgstr "Präzision von Typ float muss weniger als 54 Bits sein" -#: gram.y:14596 +#: gram.y:14603 #, c-format msgid "wrong number of parameters on left side of OVERLAPS expression" msgstr "falsche Anzahl Parameter auf linker Seite von OVERLAPS-Ausdruck" -#: gram.y:14601 +#: gram.y:14608 #, c-format msgid "wrong number of parameters on right side of OVERLAPS expression" msgstr "falsche Anzahl Parameter auf rechter Seite von OVERLAPS-Ausdruck" -#: gram.y:14778 +#: gram.y:14785 #, c-format msgid "UNIQUE predicate is not yet implemented" msgstr "UNIQUE-Prädikat ist noch nicht implementiert" -#: gram.y:15156 +#: gram.y:15163 #, c-format msgid "cannot use multiple ORDER BY clauses with WITHIN GROUP" msgstr "in WITHIN GROUP können nicht mehrere ORDER-BY-Klauseln verwendet werden" -#: gram.y:15161 +#: gram.y:15168 #, c-format msgid "cannot use DISTINCT with WITHIN GROUP" msgstr "DISTINCT kann nicht mit WITHIN GROUP verwendet werden" -#: gram.y:15166 +#: gram.y:15173 #, c-format msgid "cannot use VARIADIC with WITHIN GROUP" msgstr "VARIADIC kann nicht mit WITHIN GROUP verwendet werden" -#: gram.y:15703 gram.y:15727 +#: gram.y:15710 gram.y:15734 #, c-format msgid "frame start cannot be UNBOUNDED FOLLOWING" msgstr "Frame-Beginn kann nicht UNBOUNDED FOLLOWING sein" -#: gram.y:15708 +#: gram.y:15715 #, c-format msgid "frame starting from following row cannot end with current row" msgstr "Frame der in der folgenden Zeile beginnt kann nicht in der aktuellen Zeile enden" -#: gram.y:15732 +#: gram.y:15739 #, c-format msgid "frame end cannot be UNBOUNDED PRECEDING" msgstr "Frame-Ende kann nicht UNBOUNDED PRECEDING sein" -#: gram.y:15738 +#: gram.y:15745 #, c-format msgid "frame starting from current row cannot have preceding rows" msgstr "Frame der in der aktuellen Zeile beginnt kann keine vorhergehenden Zeilen haben" -#: gram.y:15745 +#: gram.y:15752 #, c-format msgid "frame starting from following row cannot have preceding rows" msgstr "Frame der in der folgenden Zeile beginnt kann keine vorhergehenden Zeilen haben" -#: gram.y:16370 +#: gram.y:16377 #, c-format msgid "type modifier cannot have parameter name" msgstr "Typmodifikator kann keinen Parameternamen haben" -#: gram.y:16376 +#: gram.y:16383 #, c-format msgid "type modifier cannot have ORDER BY" msgstr "Typmodifikator kann kein ORDER BY haben" -#: gram.y:16444 gram.y:16451 gram.y:16458 +#: gram.y:16451 gram.y:16458 gram.y:16465 #, c-format msgid "%s cannot be used as a role name here" msgstr "%s kann hier nicht als Rollenname verwendet werden" -#: gram.y:16548 gram.y:17983 +#: gram.y:16555 gram.y:17990 #, c-format msgid "WITH TIES cannot be specified without ORDER BY clause" msgstr "WITH TIES kann nicht ohne ORDER-BY-Klausel angegeben werden" -#: gram.y:17662 gram.y:17849 +#: gram.y:17669 gram.y:17856 msgid "improper use of \"*\"" msgstr "unzulässige Verwendung von »*«" -#: gram.y:17812 gram.y:17829 tsearch/spell.c:983 tsearch/spell.c:1000 +#: gram.y:17819 gram.y:17836 tsearch/spell.c:983 tsearch/spell.c:1000 #: tsearch/spell.c:1017 tsearch/spell.c:1034 tsearch/spell.c:1099 #, c-format msgid "syntax error" msgstr "Syntaxfehler" -#: gram.y:17913 +#: gram.y:17920 #, c-format msgid "an ordered-set aggregate with a VARIADIC direct argument must have one VARIADIC aggregated argument of the same data type" msgstr "eine Ordered-Set-Aggregatfunktion mit einem direkten VARIADIC-Argument muss ein aggregiertes VARIADIC-Argument des selben Datentyps haben" -#: gram.y:17950 +#: gram.y:17957 #, c-format msgid "multiple ORDER BY clauses not allowed" msgstr "mehrere ORDER-BY-Klauseln sind nicht erlaubt" -#: gram.y:17961 +#: gram.y:17968 #, c-format msgid "multiple OFFSET clauses not allowed" msgstr "mehrere OFFSET-Klauseln sind nicht erlaubt" -#: gram.y:17970 +#: gram.y:17977 #, c-format msgid "multiple LIMIT clauses not allowed" msgstr "mehrere LIMIT-Klauseln sind nicht erlaubt" -#: gram.y:17979 +#: gram.y:17986 #, c-format msgid "multiple limit options not allowed" msgstr "mehrere Limit-Optionen sind nicht erlaubt" -#: gram.y:18006 +#: gram.y:18013 #, c-format msgid "multiple WITH clauses not allowed" msgstr "mehrere WITH-Klauseln sind nicht erlaubt" -#: gram.y:18199 +#: gram.y:18206 #, c-format msgid "OUT and INOUT arguments aren't allowed in TABLE functions" msgstr "OUT- und INOUT-Argumente sind in TABLE-Funktionen nicht erlaubt" -#: gram.y:18332 +#: gram.y:18339 #, c-format msgid "multiple COLLATE clauses not allowed" msgstr "mehrere COLLATE-Klauseln sind nicht erlaubt" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18370 gram.y:18383 +#: gram.y:18377 gram.y:18390 #, c-format msgid "%s constraints cannot be marked DEFERRABLE" msgstr "%s-Constraints können nicht als DEFERRABLE markiert werden" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18396 +#: gram.y:18403 #, c-format msgid "%s constraints cannot be marked NOT VALID" msgstr "%s-Constraints können nicht als NOT VALID markiert werden" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18409 +#: gram.y:18416 #, c-format msgid "%s constraints cannot be marked NO INHERIT" msgstr "%s-Constraints können nicht als NO INHERIT markiert werden" -#: gram.y:18433 +#: gram.y:18440 #, c-format msgid "invalid publication object list" msgstr "ungültige Publikationsobjektliste" -#: gram.y:18434 +#: gram.y:18441 #, c-format msgid "One of TABLE or TABLES IN SCHEMA must be specified before a standalone table or schema name." msgstr "Entweder TABLE oder TABLES IN SCHEMA muss vor einem alleinstehenden Tabellen- oder Schemanamen angegeben werden." -#: gram.y:18450 +#: gram.y:18457 #, c-format msgid "invalid table name" msgstr "ungültiger Tabellenname" -#: gram.y:18471 +#: gram.y:18478 #, c-format msgid "WHERE clause not allowed for schema" msgstr "für Schemas ist keine WHERE-Klausel erlaubt" -#: gram.y:18478 +#: gram.y:18485 #, c-format msgid "column specification not allowed for schema" msgstr "für Schemas ist keine Spaltenangabe erlaubt" -#: gram.y:18492 +#: gram.y:18499 #, c-format msgid "invalid schema name" msgstr "ungültiger Schemaname" @@ -13971,9 +13994,9 @@ msgstr "ungültiger Schemaname" msgid "unrecognized configuration parameter \"%s\" in file \"%s\" line %d" msgstr "unbekannter Konfigurationsparameter »%s« in Datei »%s« Zeile %d" -#: guc-file.l:353 utils/misc/guc.c:7691 utils/misc/guc.c:7915 -#: utils/misc/guc.c:8013 utils/misc/guc.c:8111 utils/misc/guc.c:8235 -#: utils/misc/guc.c:8338 +#: guc-file.l:353 utils/misc/guc.c:7709 utils/misc/guc.c:7933 +#: utils/misc/guc.c:8031 utils/misc/guc.c:8129 utils/misc/guc.c:8253 +#: utils/misc/guc.c:8356 #, c-format msgid "parameter \"%s\" cannot be changed without restarting the server" msgstr "Parameter »%s« kann nicht geändert werden, ohne den Server neu zu starten" @@ -15004,152 +15027,152 @@ msgstr "konnte SSL-Protokollversionsbereich nicht setzen" msgid "\"%s\" cannot be higher than \"%s\"" msgstr "»%s« kann nicht höher als »%s« sein" -#: libpq/be-secure-openssl.c:294 +#: libpq/be-secure-openssl.c:293 #, c-format msgid "could not set the cipher list (no valid ciphers available)" msgstr "konnte Cipher-Liste nicht setzen (keine gültigen Ciphers verfügbar)" -#: libpq/be-secure-openssl.c:314 +#: libpq/be-secure-openssl.c:313 #, c-format msgid "could not load root certificate file \"%s\": %s" msgstr "konnte Root-Zertifikat-Datei »%s« nicht laden: %s" -#: libpq/be-secure-openssl.c:363 +#: libpq/be-secure-openssl.c:362 #, c-format msgid "could not load SSL certificate revocation list file \"%s\": %s" msgstr "konnte SSL-Certificate-Revocation-List-Datei »%s« nicht laden: %s" -#: libpq/be-secure-openssl.c:371 +#: libpq/be-secure-openssl.c:370 #, c-format msgid "could not load SSL certificate revocation list directory \"%s\": %s" msgstr "konnte SSL-Certificate-Revocation-List-Verzeichnis »%s« nicht laden: %s" -#: libpq/be-secure-openssl.c:379 +#: libpq/be-secure-openssl.c:378 #, c-format msgid "could not load SSL certificate revocation list file \"%s\" or directory \"%s\": %s" msgstr "konnte SSL-Certificate-Revocation-List-Datei »%s« oder -Verzeichnis »%s« nicht laden: %s" -#: libpq/be-secure-openssl.c:437 +#: libpq/be-secure-openssl.c:436 #, c-format msgid "could not initialize SSL connection: SSL context not set up" msgstr "konnte SSL-Verbindung nicht initialisieren: SSL-Kontext nicht eingerichtet" -#: libpq/be-secure-openssl.c:448 +#: libpq/be-secure-openssl.c:447 #, c-format msgid "could not initialize SSL connection: %s" msgstr "konnte SSL-Verbindung nicht initialisieren: %s" -#: libpq/be-secure-openssl.c:456 +#: libpq/be-secure-openssl.c:455 #, c-format msgid "could not set SSL socket: %s" msgstr "konnte SSL-Socket nicht setzen: %s" -#: libpq/be-secure-openssl.c:512 +#: libpq/be-secure-openssl.c:511 #, c-format msgid "could not accept SSL connection: %m" msgstr "konnte SSL-Verbindung nicht annehmen: %m" -#: libpq/be-secure-openssl.c:516 libpq/be-secure-openssl.c:569 +#: libpq/be-secure-openssl.c:515 libpq/be-secure-openssl.c:568 #, c-format msgid "could not accept SSL connection: EOF detected" msgstr "konnte SSL-Verbindung nicht annehmen: EOF entdeckt" -#: libpq/be-secure-openssl.c:555 +#: libpq/be-secure-openssl.c:554 #, c-format msgid "could not accept SSL connection: %s" msgstr "konnte SSL-Verbindung nicht annehmen: %s" -#: libpq/be-secure-openssl.c:558 +#: libpq/be-secure-openssl.c:557 #, c-format msgid "This may indicate that the client does not support any SSL protocol version between %s and %s." msgstr "Das zeigt möglicherweise an, dass der Client keine SSL-Protokollversion zwischen %s und %s unterstützt." -#: libpq/be-secure-openssl.c:574 libpq/be-secure-openssl.c:763 -#: libpq/be-secure-openssl.c:833 +#: libpq/be-secure-openssl.c:573 libpq/be-secure-openssl.c:762 +#: libpq/be-secure-openssl.c:832 #, c-format msgid "unrecognized SSL error code: %d" msgstr "unbekannter SSL-Fehlercode: %d" -#: libpq/be-secure-openssl.c:620 +#: libpq/be-secure-openssl.c:619 #, c-format msgid "SSL certificate's common name contains embedded null" msgstr "Common-Name im SSL-Zertifikat enthält Null-Byte" -#: libpq/be-secure-openssl.c:666 +#: libpq/be-secure-openssl.c:665 #, c-format msgid "SSL certificate's distinguished name contains embedded null" msgstr "Distinguished Name im SSL-Zertifikat enthält Null-Byte" -#: libpq/be-secure-openssl.c:752 libpq/be-secure-openssl.c:817 +#: libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:816 #, c-format msgid "SSL error: %s" msgstr "SSL-Fehler: %s" -#: libpq/be-secure-openssl.c:994 +#: libpq/be-secure-openssl.c:993 #, c-format msgid "could not open DH parameters file \"%s\": %m" msgstr "konnte DH-Parameterdatei »%s« nicht öffnen: %m" -#: libpq/be-secure-openssl.c:1006 +#: libpq/be-secure-openssl.c:1005 #, c-format msgid "could not load DH parameters file: %s" msgstr "konnte DH-Parameterdatei nicht laden: %s" -#: libpq/be-secure-openssl.c:1016 +#: libpq/be-secure-openssl.c:1015 #, c-format msgid "invalid DH parameters: %s" msgstr "ungültige DH-Parameter: %s" -#: libpq/be-secure-openssl.c:1025 +#: libpq/be-secure-openssl.c:1024 #, c-format msgid "invalid DH parameters: p is not prime" msgstr "ungültige DH-Parameter: p ist keine Primzahl" -#: libpq/be-secure-openssl.c:1034 +#: libpq/be-secure-openssl.c:1033 #, c-format msgid "invalid DH parameters: neither suitable generator or safe prime" msgstr "ungültige DH-Parameter: weder geeigneter Generator noch sichere Primzahl" -#: libpq/be-secure-openssl.c:1195 +#: libpq/be-secure-openssl.c:1194 #, c-format msgid "DH: could not load DH parameters" msgstr "DH: konnte DH-Parameter nicht laden" -#: libpq/be-secure-openssl.c:1203 +#: libpq/be-secure-openssl.c:1202 #, c-format msgid "DH: could not set DH parameters: %s" msgstr "DH: konnte DH-Parameter nicht setzen: %s" -#: libpq/be-secure-openssl.c:1230 +#: libpq/be-secure-openssl.c:1229 #, c-format msgid "ECDH: unrecognized curve name: %s" msgstr "ECDH: unbekannter Kurvenname: %s" -#: libpq/be-secure-openssl.c:1239 +#: libpq/be-secure-openssl.c:1238 #, c-format msgid "ECDH: could not create key" msgstr "ECDH: konnte Schlüssel nicht erzeugen" -#: libpq/be-secure-openssl.c:1267 +#: libpq/be-secure-openssl.c:1266 msgid "no SSL error reported" msgstr "kein SSL-Fehler berichtet" -#: libpq/be-secure-openssl.c:1285 +#: libpq/be-secure-openssl.c:1284 #, c-format msgid "SSL error code %lu" msgstr "SSL-Fehlercode %lu" -#: libpq/be-secure-openssl.c:1444 +#: libpq/be-secure-openssl.c:1443 #, c-format msgid "could not create BIO" msgstr "konnte BIO nicht erzeugen" -#: libpq/be-secure-openssl.c:1454 +#: libpq/be-secure-openssl.c:1453 #, c-format msgid "could not get NID for ASN1_OBJECT object" msgstr "konnte NID für ASN1_OBJECT-Objekt nicht ermitteln" -#: libpq/be-secure-openssl.c:1462 +#: libpq/be-secure-openssl.c:1461 #, c-format msgid "could not convert NID %d to an ASN1_OBJECT structure" msgstr "konnte NID %d nicht in eine ASN1_OBJECT-Struktur umwandeln" @@ -15684,7 +15707,7 @@ msgstr "es besteht keine Client-Verbindung" msgid "could not receive data from client: %m" msgstr "konnte Daten vom Client nicht empfangen: %m" -#: libpq/pqcomm.c:1179 tcop/postgres.c:4373 +#: libpq/pqcomm.c:1179 tcop/postgres.c:4461 #, c-format msgid "terminating connection because protocol synchronization was lost" msgstr "Verbindung wird abgebrochen, weil Protokollsynchronisierung verloren wurde" @@ -16073,7 +16096,7 @@ msgstr "unbenanntes Portal mit Parametern: %s" msgid "FULL JOIN is only supported with merge-joinable or hash-joinable join conditions" msgstr "FULL JOIN wird nur für Merge- oder Hash-Verbund-fähige Verbundbedingungen unterstützt" -#: optimizer/plan/createplan.c:7101 parser/parse_merge.c:187 +#: optimizer/plan/createplan.c:7102 parser/parse_merge.c:187 #: parser/parse_merge.c:194 #, c-format msgid "cannot execute MERGE on relation \"%s\"" @@ -16086,44 +16109,44 @@ msgid "%s cannot be applied to the nullable side of an outer join" msgstr "%s kann nicht auf die nullbare Seite eines äußeren Verbundes angewendet werden" #. translator: %s is a SQL row locking clause such as FOR UPDATE -#: optimizer/plan/planner.c:1344 parser/analyze.c:1763 parser/analyze.c:2019 +#: optimizer/plan/planner.c:1350 parser/analyze.c:1763 parser/analyze.c:2019 #: parser/analyze.c:3201 #, c-format msgid "%s is not allowed with UNION/INTERSECT/EXCEPT" msgstr "%s ist nicht in UNION/INTERSECT/EXCEPT erlaubt" -#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3702 +#: optimizer/plan/planner.c:2051 optimizer/plan/planner.c:3709 #, c-format msgid "could not implement GROUP BY" msgstr "konnte GROUP BY nicht implementieren" -#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3703 -#: optimizer/plan/planner.c:4346 optimizer/prep/prepunion.c:1046 +#: optimizer/plan/planner.c:2052 optimizer/plan/planner.c:3710 +#: optimizer/plan/planner.c:4353 optimizer/prep/prepunion.c:1046 #, c-format msgid "Some of the datatypes only support hashing, while others only support sorting." msgstr "Einige Datentypen unterstützen nur Hashing, während andere nur Sortieren unterstützen." -#: optimizer/plan/planner.c:4345 +#: optimizer/plan/planner.c:4352 #, c-format msgid "could not implement DISTINCT" msgstr "konnte DISTINCT nicht implementieren" -#: optimizer/plan/planner.c:5466 +#: optimizer/plan/planner.c:5473 #, c-format msgid "could not implement window PARTITION BY" msgstr "konnte PARTITION BY für Fenster nicht implementieren" -#: optimizer/plan/planner.c:5467 +#: optimizer/plan/planner.c:5474 #, c-format msgid "Window partitioning columns must be of sortable datatypes." msgstr "Fensterpartitionierungsspalten müssen sortierbare Datentypen haben." -#: optimizer/plan/planner.c:5471 +#: optimizer/plan/planner.c:5478 #, c-format msgid "could not implement window ORDER BY" msgstr "konnte ORDER BY für Fenster nicht implementieren" -#: optimizer/plan/planner.c:5472 +#: optimizer/plan/planner.c:5479 #, c-format msgid "Window ordering columns must be of sortable datatypes." msgstr "Fenstersortierspalten müssen sortierbare Datentypen haben." @@ -16149,32 +16172,32 @@ msgstr "konnte %s nicht implementieren" msgid "SQL function \"%s\" during inlining" msgstr "SQL-Funktion »%s« beim Inlining" -#: optimizer/util/plancat.c:142 +#: optimizer/util/plancat.c:143 #, c-format msgid "cannot open relation \"%s\"" msgstr "kann Relation »%s« nicht öffnen" -#: optimizer/util/plancat.c:151 +#: optimizer/util/plancat.c:152 #, c-format msgid "cannot access temporary or unlogged relations during recovery" msgstr "während der Wiederherstellung kann nicht auf temporäre oder ungeloggte Tabellen zugegriffen werden" -#: optimizer/util/plancat.c:693 +#: optimizer/util/plancat.c:705 #, c-format msgid "whole row unique index inference specifications are not supported" msgstr "Inferenzangaben mit Unique-Index über die gesamte Zeile werden nicht unterstützt" -#: optimizer/util/plancat.c:710 +#: optimizer/util/plancat.c:722 #, c-format msgid "constraint in ON CONFLICT clause has no associated index" msgstr "Constraint in der ON-CONFLICT-Klausel hat keinen zugehörigen Index" -#: optimizer/util/plancat.c:760 +#: optimizer/util/plancat.c:772 #, c-format msgid "ON CONFLICT DO UPDATE not supported with exclusion constraints" msgstr "ON CONFLICT DO UPDATE nicht unterstützt mit Exclusion-Constraints" -#: optimizer/util/plancat.c:870 +#: optimizer/util/plancat.c:882 #, c-format msgid "there is no unique or exclusion constraint matching the ON CONFLICT specification" msgstr "es gibt keinen Unique-Constraint oder Exclusion-Constraint, der auf die ON-CONFLICT-Angabe passt" @@ -16417,308 +16440,308 @@ msgstr "Aggregatfunktionen sind in JOIN-Bedingungen nicht erlaubt" msgid "grouping operations are not allowed in JOIN conditions" msgstr "Gruppieroperationen sind in JOIN-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:385 +#: parser/parse_agg.c:383 msgid "aggregate functions are not allowed in FROM clause of their own query level" msgstr "Aggregatfunktionen sind nicht in der FROM-Klausel ihrer eigenen Anfrageebene erlaubt" -#: parser/parse_agg.c:387 +#: parser/parse_agg.c:385 msgid "grouping operations are not allowed in FROM clause of their own query level" msgstr "Gruppieroperationen sind nicht in der FROM-Klausel ihrer eigenen Anfrageebene erlaubt" -#: parser/parse_agg.c:392 +#: parser/parse_agg.c:390 msgid "aggregate functions are not allowed in functions in FROM" msgstr "Aggregatfunktionen sind in Funktionen in FROM nicht erlaubt" -#: parser/parse_agg.c:394 +#: parser/parse_agg.c:392 msgid "grouping operations are not allowed in functions in FROM" msgstr "Gruppieroperationen sind in Funktionen in FROM nicht erlaubt" -#: parser/parse_agg.c:402 +#: parser/parse_agg.c:400 msgid "aggregate functions are not allowed in policy expressions" msgstr "Aggregatfunktionen sind in Policy-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:404 +#: parser/parse_agg.c:402 msgid "grouping operations are not allowed in policy expressions" msgstr "Gruppieroperationen sind in Policy-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:421 +#: parser/parse_agg.c:419 msgid "aggregate functions are not allowed in window RANGE" msgstr "Aggregatfunktionen sind in der Fenster-RANGE-Klausel nicht erlaubt" -#: parser/parse_agg.c:423 +#: parser/parse_agg.c:421 msgid "grouping operations are not allowed in window RANGE" msgstr "Gruppieroperationen sind in der Fenster-RANGE-Klausel nicht erlaubt" -#: parser/parse_agg.c:428 +#: parser/parse_agg.c:426 msgid "aggregate functions are not allowed in window ROWS" msgstr "Aggregatfunktionen sind in der Fenster-ROWS-Klausel nicht erlaubt" -#: parser/parse_agg.c:430 +#: parser/parse_agg.c:428 msgid "grouping operations are not allowed in window ROWS" msgstr "Gruppieroperationen sind in der Fenster-ROWS-Klausel nicht erlaubt" -#: parser/parse_agg.c:435 +#: parser/parse_agg.c:433 msgid "aggregate functions are not allowed in window GROUPS" msgstr "Aggregatfunktionen sind in der Fenster-GROUPS-Klausel nicht erlaubt" -#: parser/parse_agg.c:437 +#: parser/parse_agg.c:435 msgid "grouping operations are not allowed in window GROUPS" msgstr "Gruppieroperationen sind in der Fenster-GROUPS-Klausel nicht erlaubt" -#: parser/parse_agg.c:450 +#: parser/parse_agg.c:448 msgid "aggregate functions are not allowed in MERGE WHEN conditions" msgstr "Aggregatfunktionen sind in MERGE-WHEN-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:452 +#: parser/parse_agg.c:450 msgid "grouping operations are not allowed in MERGE WHEN conditions" msgstr "Gruppieroperationen sind in MERGE-WHEN-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:478 +#: parser/parse_agg.c:476 msgid "aggregate functions are not allowed in check constraints" msgstr "Aggregatfunktionen sind in Check-Constraints nicht erlaubt" -#: parser/parse_agg.c:480 +#: parser/parse_agg.c:478 msgid "grouping operations are not allowed in check constraints" msgstr "Gruppieroperationen sind in Check-Constraints nicht erlaubt" -#: parser/parse_agg.c:487 +#: parser/parse_agg.c:485 msgid "aggregate functions are not allowed in DEFAULT expressions" msgstr "Aggregatfunktionen sind in DEFAULT-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:489 +#: parser/parse_agg.c:487 msgid "grouping operations are not allowed in DEFAULT expressions" msgstr "Gruppieroperationen sind in DEFAULT-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:494 +#: parser/parse_agg.c:492 msgid "aggregate functions are not allowed in index expressions" msgstr "Aggregatfunktionen sind in Indexausdrücken nicht erlaubt" -#: parser/parse_agg.c:496 +#: parser/parse_agg.c:494 msgid "grouping operations are not allowed in index expressions" msgstr "Gruppieroperationen sind in Indexausdrücken nicht erlaubt" -#: parser/parse_agg.c:501 +#: parser/parse_agg.c:499 msgid "aggregate functions are not allowed in index predicates" msgstr "Aggregatfunktionen sind in Indexprädikaten nicht erlaubt" -#: parser/parse_agg.c:503 +#: parser/parse_agg.c:501 msgid "grouping operations are not allowed in index predicates" msgstr "Gruppieroperationen sind in Indexprädikaten nicht erlaubt" -#: parser/parse_agg.c:508 +#: parser/parse_agg.c:506 msgid "aggregate functions are not allowed in statistics expressions" msgstr "Aggregatfunktionen sind in Statistikausdrücken nicht erlaubt" -#: parser/parse_agg.c:510 +#: parser/parse_agg.c:508 msgid "grouping operations are not allowed in statistics expressions" msgstr "Gruppieroperationen sind in Statistikausdrücken nicht erlaubt" -#: parser/parse_agg.c:515 +#: parser/parse_agg.c:513 msgid "aggregate functions are not allowed in transform expressions" msgstr "Aggregatfunktionen sind in Umwandlungsausdrücken nicht erlaubt" -#: parser/parse_agg.c:517 +#: parser/parse_agg.c:515 msgid "grouping operations are not allowed in transform expressions" msgstr "Gruppieroperationen sind in Umwandlungsausdrücken nicht erlaubt" -#: parser/parse_agg.c:522 +#: parser/parse_agg.c:520 msgid "aggregate functions are not allowed in EXECUTE parameters" msgstr "Aggregatfunktionen sind in EXECUTE-Parametern nicht erlaubt" -#: parser/parse_agg.c:524 +#: parser/parse_agg.c:522 msgid "grouping operations are not allowed in EXECUTE parameters" msgstr "Gruppieroperationen sind in EXECUTE-Parametern nicht erlaubt" -#: parser/parse_agg.c:529 +#: parser/parse_agg.c:527 msgid "aggregate functions are not allowed in trigger WHEN conditions" msgstr "Aggregatfunktionen sind in der WHEN-Bedingung eines Triggers nicht erlaubt" -#: parser/parse_agg.c:531 +#: parser/parse_agg.c:529 msgid "grouping operations are not allowed in trigger WHEN conditions" msgstr "Gruppieroperationen sind in der WHEN-Bedingung eines Triggers nicht erlaubt" -#: parser/parse_agg.c:536 +#: parser/parse_agg.c:534 msgid "aggregate functions are not allowed in partition bound" msgstr "Aggregatfunktionen sind in Partitionsbegrenzungen nicht erlaubt" -#: parser/parse_agg.c:538 +#: parser/parse_agg.c:536 msgid "grouping operations are not allowed in partition bound" msgstr "Gruppieroperationen sind in Partitionsbegrenzungen nicht erlaubt" -#: parser/parse_agg.c:543 +#: parser/parse_agg.c:541 msgid "aggregate functions are not allowed in partition key expressions" msgstr "Aggregatfunktionen sind in Partitionierungsschlüsselausdrücken nicht erlaubt" -#: parser/parse_agg.c:545 +#: parser/parse_agg.c:543 msgid "grouping operations are not allowed in partition key expressions" msgstr "Gruppieroperationen sind in Partitionierungsschlüsselausdrücken nicht erlaubt" -#: parser/parse_agg.c:551 +#: parser/parse_agg.c:549 msgid "aggregate functions are not allowed in column generation expressions" msgstr "Aggregatfunktionen sind in Spaltengenerierungsausdrücken nicht erlaubt" -#: parser/parse_agg.c:553 +#: parser/parse_agg.c:551 msgid "grouping operations are not allowed in column generation expressions" msgstr "Gruppieroperationen sind in Spaltengenerierungsausdrücken nicht erlaubt" -#: parser/parse_agg.c:559 +#: parser/parse_agg.c:557 msgid "aggregate functions are not allowed in CALL arguments" msgstr "Aggregatfunktionen sind in CALL-Argumenten nicht erlaubt" -#: parser/parse_agg.c:561 +#: parser/parse_agg.c:559 msgid "grouping operations are not allowed in CALL arguments" msgstr "Gruppieroperationen sind in CALL-Argumenten nicht erlaubt" -#: parser/parse_agg.c:567 +#: parser/parse_agg.c:565 msgid "aggregate functions are not allowed in COPY FROM WHERE conditions" msgstr "Aggregatfunktionen sind in COPY-FROM-WHERE-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:569 +#: parser/parse_agg.c:567 msgid "grouping operations are not allowed in COPY FROM WHERE conditions" msgstr "Gruppieroperationen sind in COPY-FROM-WHERE-Bedingungen nicht erlaubt" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:596 parser/parse_clause.c:1836 +#: parser/parse_agg.c:594 parser/parse_clause.c:1836 #, c-format msgid "aggregate functions are not allowed in %s" msgstr "Aggregatfunktionen sind in %s nicht erlaubt" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:599 +#: parser/parse_agg.c:597 #, c-format msgid "grouping operations are not allowed in %s" msgstr "Gruppieroperationen sind in %s nicht erlaubt" -#: parser/parse_agg.c:700 +#: parser/parse_agg.c:698 #, c-format msgid "outer-level aggregate cannot contain a lower-level variable in its direct arguments" msgstr "Aggregatfunktion auf äußerer Ebene kann keine Variable einer unteren Ebene in ihren direkten Argumenten haben" -#: parser/parse_agg.c:778 +#: parser/parse_agg.c:776 #, c-format msgid "aggregate function calls cannot contain set-returning function calls" msgstr "Aufrufe von Aggregatfunktionen können keine Aufrufe von Funktionen mit Ergebnismenge enthalten" -#: parser/parse_agg.c:779 parser/parse_expr.c:1674 parser/parse_expr.c:2156 +#: parser/parse_agg.c:777 parser/parse_expr.c:1674 parser/parse_expr.c:2156 #: parser/parse_func.c:883 #, c-format msgid "You might be able to move the set-returning function into a LATERAL FROM item." msgstr "Sie können möglicherweise die Funktion mit Ergebnismenge in ein LATERAL-FROM-Element verschieben." -#: parser/parse_agg.c:784 +#: parser/parse_agg.c:782 #, c-format msgid "aggregate function calls cannot contain window function calls" msgstr "Aufrufe von Aggregatfunktionen können keine Aufrufe von Fensterfunktionen enthalten" -#: parser/parse_agg.c:863 +#: parser/parse_agg.c:861 msgid "window functions are not allowed in JOIN conditions" msgstr "Fensterfunktionen sind in JOIN-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:870 +#: parser/parse_agg.c:868 msgid "window functions are not allowed in functions in FROM" msgstr "Fensterfunktionen sind in Funktionen in FROM nicht erlaubt" -#: parser/parse_agg.c:876 +#: parser/parse_agg.c:874 msgid "window functions are not allowed in policy expressions" msgstr "Fensterfunktionen sind in Policy-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:889 +#: parser/parse_agg.c:887 msgid "window functions are not allowed in window definitions" msgstr "Fensterfunktionen sind in Fensterdefinitionen nicht erlaubt" -#: parser/parse_agg.c:900 +#: parser/parse_agg.c:898 msgid "window functions are not allowed in MERGE WHEN conditions" msgstr "Fensterfunktionen sind in MERGE-WHEN-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:924 +#: parser/parse_agg.c:922 msgid "window functions are not allowed in check constraints" msgstr "Fensterfunktionen sind in Check-Constraints nicht erlaubt" -#: parser/parse_agg.c:928 +#: parser/parse_agg.c:926 msgid "window functions are not allowed in DEFAULT expressions" msgstr "Fensterfunktionen sind in DEFAULT-Ausdrücken nicht erlaubt" -#: parser/parse_agg.c:931 +#: parser/parse_agg.c:929 msgid "window functions are not allowed in index expressions" msgstr "Fensterfunktionen sind in Indexausdrücken nicht erlaubt" -#: parser/parse_agg.c:934 +#: parser/parse_agg.c:932 msgid "window functions are not allowed in statistics expressions" msgstr "Fensterfunktionen sind in Statistikausdrücken nicht erlaubt" -#: parser/parse_agg.c:937 +#: parser/parse_agg.c:935 msgid "window functions are not allowed in index predicates" msgstr "Fensterfunktionen sind in Indexprädikaten nicht erlaubt" -#: parser/parse_agg.c:940 +#: parser/parse_agg.c:938 msgid "window functions are not allowed in transform expressions" msgstr "Fensterfunktionen sind in Umwandlungsausdrücken nicht erlaubt" -#: parser/parse_agg.c:943 +#: parser/parse_agg.c:941 msgid "window functions are not allowed in EXECUTE parameters" msgstr "Fensterfunktionen sind in EXECUTE-Parametern nicht erlaubt" -#: parser/parse_agg.c:946 +#: parser/parse_agg.c:944 msgid "window functions are not allowed in trigger WHEN conditions" msgstr "Fensterfunktionen sind in der WHEN-Bedingung eines Triggers nicht erlaubt" -#: parser/parse_agg.c:949 +#: parser/parse_agg.c:947 msgid "window functions are not allowed in partition bound" msgstr "Fensterfunktionen sind in Partitionsbegrenzungen nicht erlaubt" -#: parser/parse_agg.c:952 +#: parser/parse_agg.c:950 msgid "window functions are not allowed in partition key expressions" msgstr "Fensterfunktionen sind in Partitionierungsschlüsselausdrücken nicht erlaubt" -#: parser/parse_agg.c:955 +#: parser/parse_agg.c:953 msgid "window functions are not allowed in CALL arguments" msgstr "Fensterfunktionen sind in CALL-Argumenten nicht erlaubt" -#: parser/parse_agg.c:958 +#: parser/parse_agg.c:956 msgid "window functions are not allowed in COPY FROM WHERE conditions" msgstr "Fensterfunktionen sind in COPY-FROM-WHERE-Bedingungen nicht erlaubt" -#: parser/parse_agg.c:961 +#: parser/parse_agg.c:959 msgid "window functions are not allowed in column generation expressions" msgstr "Fensterfunktionen sind in Spaltengenerierungsausdrücken nicht erlaubt" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:984 parser/parse_clause.c:1845 +#: parser/parse_agg.c:982 parser/parse_clause.c:1845 #, c-format msgid "window functions are not allowed in %s" msgstr "Fensterfunktionen sind in %s nicht erlaubt" -#: parser/parse_agg.c:1018 parser/parse_clause.c:2678 +#: parser/parse_agg.c:1016 parser/parse_clause.c:2678 #, c-format msgid "window \"%s\" does not exist" msgstr "Fenster »%s« existiert nicht" -#: parser/parse_agg.c:1102 +#: parser/parse_agg.c:1100 #, c-format msgid "too many grouping sets present (maximum 4096)" msgstr "zu viele Grouping-Sets vorhanden (maximal 4096)" -#: parser/parse_agg.c:1242 +#: parser/parse_agg.c:1240 #, c-format msgid "aggregate functions are not allowed in a recursive query's recursive term" msgstr "Aggregatfunktionen sind nicht im rekursiven Ausdruck einer rekursiven Anfrage erlaubt" -#: parser/parse_agg.c:1435 +#: parser/parse_agg.c:1433 #, c-format msgid "column \"%s.%s\" must appear in the GROUP BY clause or be used in an aggregate function" msgstr "Spalte »%s.%s« muss in der GROUP-BY-Klausel erscheinen oder in einer Aggregatfunktion verwendet werden" -#: parser/parse_agg.c:1438 +#: parser/parse_agg.c:1436 #, c-format msgid "Direct arguments of an ordered-set aggregate must use only grouped columns." msgstr "Direkte Argumente einer Ordered-Set-Aggregatfunktion dürfen nur gruppierte Spalten verwenden." -#: parser/parse_agg.c:1443 +#: parser/parse_agg.c:1441 #, c-format msgid "subquery uses ungrouped column \"%s.%s\" from outer query" msgstr "Unteranfrage verwendet nicht gruppierte Spalte »%s.%s« aus äußerer Anfrage" -#: parser/parse_agg.c:1607 +#: parser/parse_agg.c:1605 #, c-format msgid "arguments to GROUPING must be grouping expressions of the associated query level" msgstr "Argumente von GROUPING müssen Gruppierausdrücke der zugehörigen Anfrageebene sein" @@ -18001,7 +18024,7 @@ msgstr "op ANY/ALL (array) erfordert, dass Operator keine Ergebnismenge zurückg msgid "inconsistent types deduced for parameter $%d" msgstr "inkonsistente Typen für Parameter $%d ermittelt" -#: parser/parse_param.c:313 tcop/postgres.c:709 +#: parser/parse_param.c:313 tcop/postgres.c:713 #, c-format msgid "could not determine data type of parameter $%d" msgstr "konnte Datentyp von Parameter $%d nicht ermitteln" @@ -18238,325 +18261,330 @@ msgstr "ungültiger Typname: »%s«" msgid "cannot create partitioned table as inheritance child" msgstr "partitionierte Tabelle kann nicht als Vererbungskind erzeugt werden" -#: parser/parse_utilcmd.c:583 +#: parser/parse_utilcmd.c:475 +#, c-format +msgid "cannot set logged status of a temporary sequence" +msgstr "kann den geloggten Status einer temporären Sequenz nicht ändern" + +#: parser/parse_utilcmd.c:611 #, c-format msgid "array of serial is not implemented" msgstr "Array aus Typ serial ist nicht implementiert" -#: parser/parse_utilcmd.c:662 parser/parse_utilcmd.c:674 -#: parser/parse_utilcmd.c:733 +#: parser/parse_utilcmd.c:690 parser/parse_utilcmd.c:702 +#: parser/parse_utilcmd.c:761 #, c-format msgid "conflicting NULL/NOT NULL declarations for column \"%s\" of table \"%s\"" msgstr "widersprüchliche NULL/NOT NULL-Deklarationen für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:686 +#: parser/parse_utilcmd.c:714 #, c-format msgid "multiple default values specified for column \"%s\" of table \"%s\"" msgstr "mehrere Vorgabewerte angegeben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:703 +#: parser/parse_utilcmd.c:731 #, c-format msgid "identity columns are not supported on typed tables" msgstr "Identitätsspalten in getypten Tabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:707 +#: parser/parse_utilcmd.c:735 #, c-format msgid "identity columns are not supported on partitions" msgstr "Identitätsspalten in partitionierten Tabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:716 +#: parser/parse_utilcmd.c:744 #, c-format msgid "multiple identity specifications for column \"%s\" of table \"%s\"" msgstr "mehrere Identitätsangaben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:746 +#: parser/parse_utilcmd.c:774 #, c-format msgid "generated columns are not supported on typed tables" msgstr "generierte Spalten in getypten Tabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:750 +#: parser/parse_utilcmd.c:778 #, c-format msgid "generated columns are not supported on partitions" msgstr "generierte Spalten in partitionierten Tabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:755 +#: parser/parse_utilcmd.c:783 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" msgstr "mehrere Generierungsklauseln angegeben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:773 parser/parse_utilcmd.c:888 +#: parser/parse_utilcmd.c:801 parser/parse_utilcmd.c:916 #, c-format msgid "primary key constraints are not supported on foreign tables" msgstr "Primärschlüssel für Fremdtabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:782 parser/parse_utilcmd.c:898 +#: parser/parse_utilcmd.c:810 parser/parse_utilcmd.c:926 #, c-format msgid "unique constraints are not supported on foreign tables" msgstr "Unique-Constraints auf Fremdtabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:827 +#: parser/parse_utilcmd.c:855 #, c-format msgid "both default and identity specified for column \"%s\" of table \"%s\"" msgstr "sowohl Vorgabewert als auch Identität angegeben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:835 +#: parser/parse_utilcmd.c:863 #, c-format msgid "both default and generation expression specified for column \"%s\" of table \"%s\"" msgstr "sowohl Vorgabewert als auch Generierungsausdruck angegeben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:843 +#: parser/parse_utilcmd.c:871 #, c-format msgid "both identity and generation expression specified for column \"%s\" of table \"%s\"" msgstr "sowohl Identität als auch Generierungsausdruck angegeben für Spalte »%s« von Tabelle »%s«" -#: parser/parse_utilcmd.c:908 +#: parser/parse_utilcmd.c:936 #, c-format msgid "exclusion constraints are not supported on foreign tables" msgstr "Exclusion-Constraints auf Fremdtabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:914 +#: parser/parse_utilcmd.c:942 #, c-format msgid "exclusion constraints are not supported on partitioned tables" msgstr "Exclusion-Constraints auf partitionierten Tabellen werden nicht unterstützt" -#: parser/parse_utilcmd.c:979 +#: parser/parse_utilcmd.c:1007 #, c-format msgid "LIKE is not supported for creating foreign tables" msgstr "LIKE wird für das Erzeugen von Fremdtabellen nicht unterstützt" -#: parser/parse_utilcmd.c:992 +#: parser/parse_utilcmd.c:1020 #, c-format msgid "relation \"%s\" is invalid in LIKE clause" msgstr "Relation »%s« ist ungültig in der LIKE-Klausel" -#: parser/parse_utilcmd.c:1760 parser/parse_utilcmd.c:1868 +#: parser/parse_utilcmd.c:1788 parser/parse_utilcmd.c:1896 #, c-format msgid "Index \"%s\" contains a whole-row table reference." msgstr "Index »%s« enthält einen Verweis auf die ganze Zeile der Tabelle." -#: parser/parse_utilcmd.c:2268 +#: parser/parse_utilcmd.c:2296 #, c-format msgid "cannot use an existing index in CREATE TABLE" msgstr "bestehender Index kann nicht in CREATE TABLE verwendet werden" -#: parser/parse_utilcmd.c:2288 +#: parser/parse_utilcmd.c:2316 #, c-format msgid "index \"%s\" is already associated with a constraint" msgstr "Index »%s« gehört bereits zu einem Constraint" -#: parser/parse_utilcmd.c:2309 +#: parser/parse_utilcmd.c:2337 #, c-format msgid "\"%s\" is not a unique index" msgstr "»%s« ist kein Unique Index" -#: parser/parse_utilcmd.c:2310 parser/parse_utilcmd.c:2317 -#: parser/parse_utilcmd.c:2324 parser/parse_utilcmd.c:2401 +#: parser/parse_utilcmd.c:2338 parser/parse_utilcmd.c:2345 +#: parser/parse_utilcmd.c:2352 parser/parse_utilcmd.c:2429 #, c-format msgid "Cannot create a primary key or unique constraint using such an index." msgstr "Ein Primärschlüssel oder Unique-Constraint kann nicht mit einem solchen Index erzeugt werden." -#: parser/parse_utilcmd.c:2316 +#: parser/parse_utilcmd.c:2344 #, c-format msgid "index \"%s\" contains expressions" msgstr "Index »%s« enthält Ausdrücke" -#: parser/parse_utilcmd.c:2323 +#: parser/parse_utilcmd.c:2351 #, c-format msgid "\"%s\" is a partial index" msgstr "»%s« ist ein partieller Index" -#: parser/parse_utilcmd.c:2335 +#: parser/parse_utilcmd.c:2363 #, c-format msgid "\"%s\" is a deferrable index" msgstr "»%s« ist ein aufschiebbarer Index" -#: parser/parse_utilcmd.c:2336 +#: parser/parse_utilcmd.c:2364 #, c-format msgid "Cannot create a non-deferrable constraint using a deferrable index." msgstr "Ein nicht aufschiebbarer Constraint kann nicht mit einem aufschiebbaren Index erzeugt werden." -#: parser/parse_utilcmd.c:2400 +#: parser/parse_utilcmd.c:2428 #, c-format msgid "index \"%s\" column number %d does not have default sorting behavior" msgstr "Index »%s« Spalte Nummer %d hat nicht das Standardsortierverhalten" -#: parser/parse_utilcmd.c:2557 +#: parser/parse_utilcmd.c:2585 #, c-format msgid "column \"%s\" appears twice in primary key constraint" msgstr "Spalte »%s« erscheint zweimal im Primärschlüssel-Constraint" -#: parser/parse_utilcmd.c:2563 +#: parser/parse_utilcmd.c:2591 #, c-format msgid "column \"%s\" appears twice in unique constraint" msgstr "Spalte »%s« erscheint zweimal im Unique-Constraint" -#: parser/parse_utilcmd.c:2897 +#: parser/parse_utilcmd.c:2925 #, c-format msgid "index expressions and predicates can refer only to the table being indexed" msgstr "Indexausdrücke und -prädikate können nur auf die zu indizierende Tabelle verweisen" -#: parser/parse_utilcmd.c:2969 +#: parser/parse_utilcmd.c:2997 #, c-format msgid "statistics expressions can refer only to the table being referenced" msgstr "Statistikausdrücke können nur auf die referenzierte Tabelle verweisen" -#: parser/parse_utilcmd.c:3012 +#: parser/parse_utilcmd.c:3040 #, c-format msgid "rules on materialized views are not supported" msgstr "Regeln für materialisierte Sichten werden nicht unterstützt" -#: parser/parse_utilcmd.c:3075 +#: parser/parse_utilcmd.c:3103 #, c-format msgid "rule WHERE condition cannot contain references to other relations" msgstr "WHERE-Bedingung einer Regel kann keine Verweise auf andere Relationen enthalten" -#: parser/parse_utilcmd.c:3148 +#: parser/parse_utilcmd.c:3176 #, c-format msgid "rules with WHERE conditions can only have SELECT, INSERT, UPDATE, or DELETE actions" msgstr "Regeln mit WHERE-Bedingungen können als Aktion nur SELECT, INSERT, UPDATE oder DELETE haben" -#: parser/parse_utilcmd.c:3166 parser/parse_utilcmd.c:3267 -#: rewrite/rewriteHandler.c:532 rewrite/rewriteManip.c:1021 +#: parser/parse_utilcmd.c:3194 parser/parse_utilcmd.c:3295 +#: rewrite/rewriteHandler.c:533 rewrite/rewriteManip.c:1021 #, c-format msgid "conditional UNION/INTERSECT/EXCEPT statements are not implemented" msgstr "UNION/INTERSECTION/EXCEPT mit Bedingung sind nicht implementiert" -#: parser/parse_utilcmd.c:3184 +#: parser/parse_utilcmd.c:3212 #, c-format msgid "ON SELECT rule cannot use OLD" msgstr "ON-SELECT-Regel kann nicht OLD verwenden" -#: parser/parse_utilcmd.c:3188 +#: parser/parse_utilcmd.c:3216 #, c-format msgid "ON SELECT rule cannot use NEW" msgstr "ON-SELECT-Regel kann nicht NEW verwenden" -#: parser/parse_utilcmd.c:3197 +#: parser/parse_utilcmd.c:3225 #, c-format msgid "ON INSERT rule cannot use OLD" msgstr "ON-INSERT-Regel kann nicht OLD verwenden" -#: parser/parse_utilcmd.c:3203 +#: parser/parse_utilcmd.c:3231 #, c-format msgid "ON DELETE rule cannot use NEW" msgstr "ON-DELETE-Regel kann nicht NEW verwenden" -#: parser/parse_utilcmd.c:3231 +#: parser/parse_utilcmd.c:3259 #, c-format msgid "cannot refer to OLD within WITH query" msgstr "in WITH-Anfrage kann nicht auf OLD verweisen werden" -#: parser/parse_utilcmd.c:3238 +#: parser/parse_utilcmd.c:3266 #, c-format msgid "cannot refer to NEW within WITH query" msgstr "in WITH-Anfrage kann nicht auf NEW verwiesen werden" -#: parser/parse_utilcmd.c:3688 +#: parser/parse_utilcmd.c:3716 #, c-format msgid "misplaced DEFERRABLE clause" msgstr "falsch platzierte DEFERRABLE-Klausel" -#: parser/parse_utilcmd.c:3693 parser/parse_utilcmd.c:3708 +#: parser/parse_utilcmd.c:3721 parser/parse_utilcmd.c:3736 #, c-format msgid "multiple DEFERRABLE/NOT DEFERRABLE clauses not allowed" msgstr "mehrere DEFERRABLE/NOT DEFERRABLE-Klauseln sind nicht erlaubt" -#: parser/parse_utilcmd.c:3703 +#: parser/parse_utilcmd.c:3731 #, c-format msgid "misplaced NOT DEFERRABLE clause" msgstr "falsch platzierte NOT DEFERRABLE-Klausel" -#: parser/parse_utilcmd.c:3724 +#: parser/parse_utilcmd.c:3752 #, c-format msgid "misplaced INITIALLY DEFERRED clause" msgstr "falsch platzierte INITIALLY DEFERRED-Klausel" -#: parser/parse_utilcmd.c:3729 parser/parse_utilcmd.c:3755 +#: parser/parse_utilcmd.c:3757 parser/parse_utilcmd.c:3783 #, c-format msgid "multiple INITIALLY IMMEDIATE/DEFERRED clauses not allowed" msgstr "mehrere INITIALLY IMMEDIATE/DEFERRED-Klauseln sind nicht erlaubt" -#: parser/parse_utilcmd.c:3750 +#: parser/parse_utilcmd.c:3778 #, c-format msgid "misplaced INITIALLY IMMEDIATE clause" msgstr "falsch platzierte INITIALLY IMMEDIATE-Klausel" -#: parser/parse_utilcmd.c:3943 +#: parser/parse_utilcmd.c:3971 #, c-format msgid "CREATE specifies a schema (%s) different from the one being created (%s)" msgstr "CREATE gibt ein Schema an (%s) welches nicht gleich dem zu erzeugenden Schema ist (%s)" -#: parser/parse_utilcmd.c:3978 +#: parser/parse_utilcmd.c:4006 #, c-format msgid "\"%s\" is not a partitioned table" msgstr "»%s« ist keine partitionierte Tabelle" -#: parser/parse_utilcmd.c:3985 +#: parser/parse_utilcmd.c:4013 #, c-format msgid "table \"%s\" is not partitioned" msgstr "Tabelle »%s« ist nicht partitioniert" -#: parser/parse_utilcmd.c:3992 +#: parser/parse_utilcmd.c:4020 #, c-format msgid "index \"%s\" is not partitioned" msgstr "Index »%s« ist nicht partitioniert" -#: parser/parse_utilcmd.c:4032 +#: parser/parse_utilcmd.c:4060 #, c-format msgid "a hash-partitioned table may not have a default partition" msgstr "eine hashpartitionierte Tabelle kann keine Standardpartition haben" -#: parser/parse_utilcmd.c:4049 +#: parser/parse_utilcmd.c:4077 #, c-format msgid "invalid bound specification for a hash partition" msgstr "ungültige Begrenzungsangabe für eine Hash-Partition" -#: parser/parse_utilcmd.c:4055 partitioning/partbounds.c:4824 +#: parser/parse_utilcmd.c:4083 partitioning/partbounds.c:4824 #, c-format msgid "modulus for hash partition must be an integer value greater than zero" msgstr "Modulus für Hashpartition muss eine ganze Zahl größer als null sein" -#: parser/parse_utilcmd.c:4062 partitioning/partbounds.c:4832 +#: parser/parse_utilcmd.c:4090 partitioning/partbounds.c:4832 #, c-format msgid "remainder for hash partition must be less than modulus" msgstr "Rest für Hashpartition muss kleiner als Modulus sein" -#: parser/parse_utilcmd.c:4075 +#: parser/parse_utilcmd.c:4103 #, c-format msgid "invalid bound specification for a list partition" msgstr "ungültige Begrenzungsangabe für eine Listenpartition" -#: parser/parse_utilcmd.c:4128 +#: parser/parse_utilcmd.c:4156 #, c-format msgid "invalid bound specification for a range partition" msgstr "ungültige Begrenzungsangabe für eine Bereichspartition" -#: parser/parse_utilcmd.c:4134 +#: parser/parse_utilcmd.c:4162 #, c-format msgid "FROM must specify exactly one value per partitioning column" msgstr "FROM muss genau einen Wert pro Partitionierungsspalte angeben" -#: parser/parse_utilcmd.c:4138 +#: parser/parse_utilcmd.c:4166 #, c-format msgid "TO must specify exactly one value per partitioning column" msgstr "TO muss genau einen Wert pro Partitionierungsspalte angeben" -#: parser/parse_utilcmd.c:4252 +#: parser/parse_utilcmd.c:4280 #, c-format msgid "cannot specify NULL in range bound" msgstr "NULL kann nicht in der Bereichsgrenze angegeben werden" -#: parser/parse_utilcmd.c:4301 +#: parser/parse_utilcmd.c:4329 #, c-format msgid "every bound following MAXVALUE must also be MAXVALUE" msgstr "jede Begrenzung, die auf MAXVALUE folgt, muss auch MAXVALUE sein" -#: parser/parse_utilcmd.c:4308 +#: parser/parse_utilcmd.c:4336 #, c-format msgid "every bound following MINVALUE must also be MINVALUE" msgstr "jede Begrenzung, die auf MINVALUE folgt, muss auch MINVALUE sein" -#: parser/parse_utilcmd.c:4351 +#: parser/parse_utilcmd.c:4379 #, c-format msgid "specified value cannot be cast to type %s for column \"%s\"" msgstr "angegebener Wert kann nicht in Typ %s für Spalte »%s« umgewandelt werden" @@ -18950,7 +18978,7 @@ msgstr "Background-Worker »%s«: ungültiges Neustart-Intervall" msgid "background worker \"%s\": parallel workers may not be configured for restart" msgstr "Background-Worker »%s«: parallele Arbeitsprozesse dürfen nicht für Neustart konfiguriert sein" -#: postmaster/bgworker.c:730 tcop/postgres.c:3215 +#: postmaster/bgworker.c:730 tcop/postgres.c:3243 #, c-format msgid "terminating background worker \"%s\" due to administrator command" msgstr "Background-Worker »%s« wird abgebrochen aufgrund von Anweisung des Administrators" @@ -19230,9 +19258,9 @@ msgstr "unverschlüsselte Daten nach GSSAPI-Verschlüsselungsanforderung empfang msgid "unsupported frontend protocol %u.%u: server supports %u.0 to %u.%u" msgstr "nicht unterstütztes Frontend-Protokoll %u.%u: Server unterstützt %u.0 bis %u.%u" -#: postmaster/postmaster.c:2264 utils/misc/guc.c:7400 utils/misc/guc.c:7436 -#: utils/misc/guc.c:7506 utils/misc/guc.c:8944 utils/misc/guc.c:11986 -#: utils/misc/guc.c:12027 +#: postmaster/postmaster.c:2264 utils/misc/guc.c:7412 utils/misc/guc.c:7448 +#: utils/misc/guc.c:7518 utils/misc/guc.c:8962 utils/misc/guc.c:12004 +#: utils/misc/guc.c:12045 #, c-format msgid "invalid value for parameter \"%s\": \"%s\"" msgstr "ungültiger Wert für Parameter »%s«: »%s«" @@ -20121,29 +20149,29 @@ msgstr "Zielrelation für logische Replikation »%s.%s« verwendet Systemspalten msgid "logical replication target relation \"%s.%s\" does not exist" msgstr "Zielrelation für logische Replikation »%s.%s« existiert nicht" -#: replication/logical/reorderbuffer.c:3841 +#: replication/logical/reorderbuffer.c:3846 #, c-format msgid "could not write to data file for XID %u: %m" msgstr "konnte nicht in Datendatei für XID %u schreiben: %m" -#: replication/logical/reorderbuffer.c:4187 -#: replication/logical/reorderbuffer.c:4212 +#: replication/logical/reorderbuffer.c:4192 +#: replication/logical/reorderbuffer.c:4217 #, c-format msgid "could not read from reorderbuffer spill file: %m" msgstr "konnte nicht aus Reorder-Buffer-Spill-Datei lesen: %m" -#: replication/logical/reorderbuffer.c:4191 -#: replication/logical/reorderbuffer.c:4216 +#: replication/logical/reorderbuffer.c:4196 +#: replication/logical/reorderbuffer.c:4221 #, c-format msgid "could not read from reorderbuffer spill file: read %d instead of %u bytes" msgstr "konnte nicht aus Reorder-Buffer-Spill-Datei lesen: %d statt %u Bytes gelesen" -#: replication/logical/reorderbuffer.c:4466 +#: replication/logical/reorderbuffer.c:4471 #, c-format msgid "could not remove file \"%s\" during removal of pg_replslot/%s/xid*: %m" msgstr "konnte Datei »%s« nicht löschen, bei Löschen von pg_replslot/%s/xid*: %m" -#: replication/logical/reorderbuffer.c:4965 +#: replication/logical/reorderbuffer.c:4970 #, c-format msgid "could not read from file \"%s\": read %d instead of %d bytes" msgstr "konnte nicht aus Datei »%s« lesen: %d statt %d Bytes gelesen" @@ -20832,9 +20860,9 @@ msgstr "im WAL-Sender für physische Replikation können keine SQL-Befehle ausge msgid "received replication command: %s" msgstr "Replikationsbefehl empfangen: %s" -#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1114 -#: tcop/postgres.c:1472 tcop/postgres.c:1712 tcop/postgres.c:2181 -#: tcop/postgres.c:2614 tcop/postgres.c:2692 +#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1118 +#: tcop/postgres.c:1476 tcop/postgres.c:1728 tcop/postgres.c:2209 +#: tcop/postgres.c:2642 tcop/postgres.c:2720 #, c-format msgid "current transaction is aborted, commands ignored until end of transaction block" msgstr "aktuelle Transaktion wurde abgebrochen, Befehle werden bis zum Ende der Transaktion ignoriert" @@ -21080,198 +21108,203 @@ msgstr "Regel »%s« für Relation »%s« existiert nicht" msgid "renaming an ON SELECT rule is not allowed" msgstr "Umbenennen einer ON-SELECT-Regel ist nicht erlaubt" -#: rewrite/rewriteHandler.c:576 +#: rewrite/rewriteHandler.c:577 #, c-format msgid "WITH query name \"%s\" appears in both a rule action and the query being rewritten" msgstr "WITH-Anfragename »%s« erscheint sowohl in der Regelaktion als auch in der umzuschreibenden Anfrage" -#: rewrite/rewriteHandler.c:603 +#: rewrite/rewriteHandler.c:604 #, c-format msgid "INSERT...SELECT rule actions are not supported for queries having data-modifying statements in WITH" msgstr "INSTEAD...SELECT-Regelaktionen werden für Anfrangen mit datenmodifizierenden Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:656 +#: rewrite/rewriteHandler.c:657 #, c-format msgid "cannot have RETURNING lists in multiple rules" msgstr "RETURNING-Listen können nicht in mehreren Regeln auftreten" -#: rewrite/rewriteHandler.c:888 rewrite/rewriteHandler.c:927 +#: rewrite/rewriteHandler.c:889 rewrite/rewriteHandler.c:928 #, c-format msgid "cannot insert a non-DEFAULT value into column \"%s\"" msgstr "kann keinen Wert außer DEFAULT in Spalte »%s« einfügen" -#: rewrite/rewriteHandler.c:890 rewrite/rewriteHandler.c:956 +#: rewrite/rewriteHandler.c:891 rewrite/rewriteHandler.c:957 #, c-format msgid "Column \"%s\" is an identity column defined as GENERATED ALWAYS." msgstr "Spalte »%s« ist eine Identitätsspalte, die als GENERATED ALWAYS definiert ist." -#: rewrite/rewriteHandler.c:892 +#: rewrite/rewriteHandler.c:893 #, c-format msgid "Use OVERRIDING SYSTEM VALUE to override." msgstr "Verwenden Sie OVERRIDING SYSTEM VALUE, um diese Einschränkung außer Kraft zu setzen." -#: rewrite/rewriteHandler.c:954 rewrite/rewriteHandler.c:962 +#: rewrite/rewriteHandler.c:955 rewrite/rewriteHandler.c:963 #, c-format msgid "column \"%s\" can only be updated to DEFAULT" msgstr "Spalte »%s« kann nur auf DEFAULT aktualisiert werden" -#: rewrite/rewriteHandler.c:1109 rewrite/rewriteHandler.c:1127 +#: rewrite/rewriteHandler.c:1110 rewrite/rewriteHandler.c:1128 #, c-format msgid "multiple assignments to same column \"%s\"" msgstr "mehrere Zuweisungen zur selben Spalte »%s«" -#: rewrite/rewriteHandler.c:2143 rewrite/rewriteHandler.c:4057 +#: rewrite/rewriteHandler.c:1743 rewrite/rewriteHandler.c:3145 +#, c-format +msgid "access to non-system view \"%s\" is restricted" +msgstr "Zugriff auf Nicht-System-Sicht »%s« ist beschränkt" + +#: rewrite/rewriteHandler.c:2152 rewrite/rewriteHandler.c:4074 #, c-format msgid "infinite recursion detected in rules for relation \"%s\"" msgstr "unendliche Rekursion entdeckt in Regeln für Relation »%s«" -#: rewrite/rewriteHandler.c:2228 +#: rewrite/rewriteHandler.c:2237 #, c-format msgid "infinite recursion detected in policy for relation \"%s\"" msgstr "unendliche Rekursion entdeckt in Policys für Relation »%s«" -#: rewrite/rewriteHandler.c:2548 +#: rewrite/rewriteHandler.c:2557 msgid "Junk view columns are not updatable." msgstr "Junk-Sichtspalten sind nicht aktualisierbar." -#: rewrite/rewriteHandler.c:2553 +#: rewrite/rewriteHandler.c:2562 msgid "View columns that are not columns of their base relation are not updatable." msgstr "Sichtspalten, die nicht Spalten ihrer Basisrelation sind, sind nicht aktualisierbar." -#: rewrite/rewriteHandler.c:2556 +#: rewrite/rewriteHandler.c:2565 msgid "View columns that refer to system columns are not updatable." msgstr "Sichtspalten, die auf Systemspalten verweisen, sind nicht aktualisierbar." -#: rewrite/rewriteHandler.c:2559 +#: rewrite/rewriteHandler.c:2568 msgid "View columns that return whole-row references are not updatable." msgstr "Sichtspalten, die Verweise auf ganze Zeilen zurückgeben, sind nicht aktualisierbar." -#: rewrite/rewriteHandler.c:2620 +#: rewrite/rewriteHandler.c:2629 msgid "Views containing DISTINCT are not automatically updatable." msgstr "Sichten, die DISTINCT enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2623 +#: rewrite/rewriteHandler.c:2632 msgid "Views containing GROUP BY are not automatically updatable." msgstr "Sichten, die GROUP BY enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2626 +#: rewrite/rewriteHandler.c:2635 msgid "Views containing HAVING are not automatically updatable." msgstr "Sichten, die HAVING enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2629 +#: rewrite/rewriteHandler.c:2638 msgid "Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable." msgstr "Sichten, die UNION, INTERSECT oder EXCEPT enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2632 +#: rewrite/rewriteHandler.c:2641 msgid "Views containing WITH are not automatically updatable." msgstr "Sichten, die WITH enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2635 +#: rewrite/rewriteHandler.c:2644 msgid "Views containing LIMIT or OFFSET are not automatically updatable." msgstr "Sichten, die LIMIT oder OFFSET enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2647 +#: rewrite/rewriteHandler.c:2656 msgid "Views that return aggregate functions are not automatically updatable." msgstr "Sichten, die Aggregatfunktionen zurückgeben, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2650 +#: rewrite/rewriteHandler.c:2659 msgid "Views that return window functions are not automatically updatable." msgstr "Sichten, die Fensterfunktionen zurückgeben, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2653 +#: rewrite/rewriteHandler.c:2662 msgid "Views that return set-returning functions are not automatically updatable." msgstr "Sichten, die Funktionen mit Ergebnismenge zurückgeben, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2660 rewrite/rewriteHandler.c:2664 -#: rewrite/rewriteHandler.c:2672 +#: rewrite/rewriteHandler.c:2669 rewrite/rewriteHandler.c:2673 +#: rewrite/rewriteHandler.c:2681 msgid "Views that do not select from a single table or view are not automatically updatable." msgstr "Sichten, die nicht aus einer einzigen Tabelle oder Sicht lesen, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2675 +#: rewrite/rewriteHandler.c:2684 msgid "Views containing TABLESAMPLE are not automatically updatable." msgstr "Sichten, die TABLESAMPLE enthalten, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:2699 +#: rewrite/rewriteHandler.c:2708 msgid "Views that have no updatable columns are not automatically updatable." msgstr "Sichten, die keine aktualisierbaren Spalten haben, sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:3188 +#: rewrite/rewriteHandler.c:3205 #, c-format msgid "cannot insert into column \"%s\" of view \"%s\"" msgstr "kann nicht in Spalte »%s« von Sicht »%s« einfügen" -#: rewrite/rewriteHandler.c:3196 +#: rewrite/rewriteHandler.c:3213 #, c-format msgid "cannot update column \"%s\" of view \"%s\"" msgstr "kann Spalte »%s« von Sicht »%s« nicht aktualisieren" -#: rewrite/rewriteHandler.c:3684 +#: rewrite/rewriteHandler.c:3701 #, c-format msgid "DO INSTEAD NOTIFY rules are not supported for data-modifying statements in WITH" msgstr "DO-INSTEAD-NOTIFY-Regeln werden für datenmodifizierende Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:3695 +#: rewrite/rewriteHandler.c:3712 #, c-format msgid "DO INSTEAD NOTHING rules are not supported for data-modifying statements in WITH" msgstr "DO-INSTEAD-NOTHING-Regeln werden für datenmodifizierende Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:3709 +#: rewrite/rewriteHandler.c:3726 #, c-format msgid "conditional DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "DO-INSTEAD-Regeln mit Bedingung werden für datenmodifizierende Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:3713 +#: rewrite/rewriteHandler.c:3730 #, c-format msgid "DO ALSO rules are not supported for data-modifying statements in WITH" msgstr "DO-ALSO-Regeln werden für datenmodifizierende Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:3718 +#: rewrite/rewriteHandler.c:3735 #, c-format msgid "multi-statement DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "DO-INSTEAD-Regeln mit mehreren Anweisungen werden für datenmodifizierende Anweisungen in WITH nicht unterstützt" -#: rewrite/rewriteHandler.c:3985 rewrite/rewriteHandler.c:3993 -#: rewrite/rewriteHandler.c:4001 +#: rewrite/rewriteHandler.c:4002 rewrite/rewriteHandler.c:4010 +#: rewrite/rewriteHandler.c:4018 #, c-format msgid "Views with conditional DO INSTEAD rules are not automatically updatable." msgstr "Sichten mit DO-INSTEAD-Regeln mit Bedingung sind nicht automatisch aktualisierbar." -#: rewrite/rewriteHandler.c:4106 +#: rewrite/rewriteHandler.c:4123 #, c-format msgid "cannot perform INSERT RETURNING on relation \"%s\"" msgstr "INSERT RETURNING kann in Relation »%s« nicht ausgeführt werden" -#: rewrite/rewriteHandler.c:4108 +#: rewrite/rewriteHandler.c:4125 #, c-format msgid "You need an unconditional ON INSERT DO INSTEAD rule with a RETURNING clause." msgstr "Sie benötigen eine ON INSERT DO INSTEAD Regel ohne Bedingung, mit RETURNING-Klausel." -#: rewrite/rewriteHandler.c:4113 +#: rewrite/rewriteHandler.c:4130 #, c-format msgid "cannot perform UPDATE RETURNING on relation \"%s\"" msgstr "UPDATE RETURNING kann in Relation »%s« nicht ausgeführt werden" -#: rewrite/rewriteHandler.c:4115 +#: rewrite/rewriteHandler.c:4132 #, c-format msgid "You need an unconditional ON UPDATE DO INSTEAD rule with a RETURNING clause." msgstr "Sie benötigen eine ON UPDATE DO INSTEAD Regel ohne Bedingung, mit RETURNING-Klausel." -#: rewrite/rewriteHandler.c:4120 +#: rewrite/rewriteHandler.c:4137 #, c-format msgid "cannot perform DELETE RETURNING on relation \"%s\"" msgstr "DELETE RETURNING kann in Relation »%s« nicht ausgeführt werden" -#: rewrite/rewriteHandler.c:4122 +#: rewrite/rewriteHandler.c:4139 #, c-format msgid "You need an unconditional ON DELETE DO INSTEAD rule with a RETURNING clause." msgstr "Sie benötigen eine ON DELETE DO INSTEAD Regel ohne Bedingung, mit RETURNING-Klausel." -#: rewrite/rewriteHandler.c:4140 +#: rewrite/rewriteHandler.c:4157 #, c-format msgid "INSERT with ON CONFLICT clause cannot be used with table that has INSERT or UPDATE rules" msgstr "INSERT mit ON-CONFLICT-Klausel kann nicht mit Tabelle verwendet werden, die INSERT- oder UPDATE-Regeln hat" -#: rewrite/rewriteHandler.c:4197 +#: rewrite/rewriteHandler.c:4214 #, c-format msgid "WITH cannot be used in a query that is rewritten by rules into multiple queries" msgstr "WITH kann nicht in einer Anfrage verwendet werden, die durch Regeln in mehrere Anfragen umgeschrieben wird" @@ -21625,12 +21658,12 @@ msgstr "synchronisiere Datenverzeichnis (syncfs), abgelaufene Zeit: %ld.%02d s, msgid "could not synchronize file system for file \"%s\": %m" msgstr "konnte Dateisystem für Datei »%s« nicht synchronisieren: %m" -#: storage/file/fd.c:3619 +#: storage/file/fd.c:3614 #, c-format msgid "syncing data directory (pre-fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "synchronisiere Datenverzeichnis (pre-fsync), abgelaufene Zeit: %ld.%02d s, aktueller Pfad: %s" -#: storage/file/fd.c:3651 +#: storage/file/fd.c:3646 #, c-format msgid "syncing data directory (fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "synchronisiere Datenverzeichnis (fsync), abgelaufene Zeit: %ld.%02d s, aktueller Pfad: %s" @@ -21751,10 +21784,10 @@ msgid "invalid message size %zu in shared memory queue" msgstr "ungültige Nachrichtengröße %zu in Shared-Memory-Queue" #: storage/ipc/shm_toc.c:118 storage/ipc/shm_toc.c:200 storage/lmgr/lock.c:997 -#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2855 storage/lmgr/lock.c:4269 -#: storage/lmgr/lock.c:4334 storage/lmgr/lock.c:4684 -#: storage/lmgr/predicate.c:2485 storage/lmgr/predicate.c:2500 -#: storage/lmgr/predicate.c:3990 storage/lmgr/predicate.c:5106 +#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2865 storage/lmgr/lock.c:4279 +#: storage/lmgr/lock.c:4344 storage/lmgr/lock.c:4694 +#: storage/lmgr/predicate.c:2490 storage/lmgr/predicate.c:2505 +#: storage/lmgr/predicate.c:3995 storage/lmgr/predicate.c:5111 #: utils/hash/dynahash.c:1112 #, c-format msgid "out of shared memory" @@ -21849,12 +21882,12 @@ msgstr "Wiederherstellung wartet immer noch nach %ld,%03d ms: %s" msgid "recovery finished waiting after %ld.%03d ms: %s" msgstr "Warten der Wiederherstellung beendet nach %ld,%03d ms: %s" -#: storage/ipc/standby.c:883 tcop/postgres.c:3344 +#: storage/ipc/standby.c:883 tcop/postgres.c:3372 #, c-format msgid "canceling statement due to conflict with recovery" msgstr "storniere Anfrage wegen Konflikt mit der Wiederherstellung" -#: storage/ipc/standby.c:884 tcop/postgres.c:2499 +#: storage/ipc/standby.c:884 tcop/postgres.c:2527 #, c-format msgid "User transaction caused buffer deadlock with recovery." msgstr "Benutzertransaktion hat Verklemmung (Deadlock) mit Wiederherstellung verursacht." @@ -22037,13 +22070,13 @@ msgstr "Sperrmodus %s kann während der Wiederherstellung nicht auf Datenbankobj msgid "Only RowExclusiveLock or less can be acquired on database objects during recovery." msgstr "Nur Sperren gleich oder unter RowExclusiveLock können während der Wiederherstellung auf Datenbankobjekte gesetzt werden." -#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2856 -#: storage/lmgr/lock.c:4270 storage/lmgr/lock.c:4335 storage/lmgr/lock.c:4685 +#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2866 +#: storage/lmgr/lock.c:4280 storage/lmgr/lock.c:4345 storage/lmgr/lock.c:4695 #, c-format msgid "You might need to increase max_locks_per_transaction." msgstr "Sie müssen möglicherweise max_locks_per_transaction erhöhen." -#: storage/lmgr/lock.c:3311 storage/lmgr/lock.c:3379 storage/lmgr/lock.c:3495 +#: storage/lmgr/lock.c:3321 storage/lmgr/lock.c:3389 storage/lmgr/lock.c:3505 #, c-format msgid "cannot PREPARE while holding both session-level and transaction-level locks on the same object" msgstr "PREPARE kann nicht ausgeführt werden, wenn für das selbe Objekt Sperren auf Sitzungsebene und auf Transaktionsebene gehalten werden" @@ -22063,52 +22096,52 @@ msgstr "Sie müssten entweder weniger Transaktionen auf einmal ausführen oder m msgid "not enough elements in RWConflictPool to record a potential read/write conflict" msgstr "nicht genügend Elemente in RWConflictPool, um einen möglichen Lese-/Schreibkonflikt aufzuzeichnen" -#: storage/lmgr/predicate.c:1695 +#: storage/lmgr/predicate.c:1700 #, c-format msgid "\"default_transaction_isolation\" is set to \"serializable\"." msgstr "»default_transaction_isolation« ist auf »serializable« gesetzt." -#: storage/lmgr/predicate.c:1696 +#: storage/lmgr/predicate.c:1701 #, c-format msgid "You can use \"SET default_transaction_isolation = 'repeatable read'\" to change the default." msgstr "Mit »SET default_transaction_isolation = 'repeatable read'« können Sie die Voreinstellung ändern." -#: storage/lmgr/predicate.c:1747 +#: storage/lmgr/predicate.c:1752 #, c-format msgid "a snapshot-importing transaction must not be READ ONLY DEFERRABLE" msgstr "eine Transaktion, die einen Snapshot importiert, must READ ONLY DEFERRABLE sein" -#: storage/lmgr/predicate.c:1826 utils/time/snapmgr.c:569 +#: storage/lmgr/predicate.c:1831 utils/time/snapmgr.c:569 #: utils/time/snapmgr.c:575 #, c-format msgid "could not import the requested snapshot" msgstr "konnte den angeforderten Snapshot nicht importieren" -#: storage/lmgr/predicate.c:1827 utils/time/snapmgr.c:576 +#: storage/lmgr/predicate.c:1832 utils/time/snapmgr.c:576 #, c-format msgid "The source process with PID %d is not running anymore." msgstr "Der Ausgangsprozess mit PID %d läuft nicht mehr." -#: storage/lmgr/predicate.c:2486 storage/lmgr/predicate.c:2501 -#: storage/lmgr/predicate.c:3991 +#: storage/lmgr/predicate.c:2491 storage/lmgr/predicate.c:2506 +#: storage/lmgr/predicate.c:3996 #, c-format msgid "You might need to increase max_pred_locks_per_transaction." msgstr "Sie müssen möglicherweise max_pred_locks_per_transaction erhöhen." -#: storage/lmgr/predicate.c:4122 storage/lmgr/predicate.c:4158 -#: storage/lmgr/predicate.c:4191 storage/lmgr/predicate.c:4199 -#: storage/lmgr/predicate.c:4238 storage/lmgr/predicate.c:4480 -#: storage/lmgr/predicate.c:4817 storage/lmgr/predicate.c:4829 -#: storage/lmgr/predicate.c:4876 storage/lmgr/predicate.c:4914 +#: storage/lmgr/predicate.c:4127 storage/lmgr/predicate.c:4163 +#: storage/lmgr/predicate.c:4196 storage/lmgr/predicate.c:4204 +#: storage/lmgr/predicate.c:4243 storage/lmgr/predicate.c:4485 +#: storage/lmgr/predicate.c:4822 storage/lmgr/predicate.c:4834 +#: storage/lmgr/predicate.c:4881 storage/lmgr/predicate.c:4919 #, c-format msgid "could not serialize access due to read/write dependencies among transactions" msgstr "konnte Zugriff nicht serialisieren wegen Lese-/Schreib-Abhängigkeiten zwischen Transaktionen" -#: storage/lmgr/predicate.c:4124 storage/lmgr/predicate.c:4160 -#: storage/lmgr/predicate.c:4193 storage/lmgr/predicate.c:4201 -#: storage/lmgr/predicate.c:4240 storage/lmgr/predicate.c:4482 -#: storage/lmgr/predicate.c:4819 storage/lmgr/predicate.c:4831 -#: storage/lmgr/predicate.c:4878 storage/lmgr/predicate.c:4916 +#: storage/lmgr/predicate.c:4129 storage/lmgr/predicate.c:4165 +#: storage/lmgr/predicate.c:4198 storage/lmgr/predicate.c:4206 +#: storage/lmgr/predicate.c:4245 storage/lmgr/predicate.c:4487 +#: storage/lmgr/predicate.c:4824 storage/lmgr/predicate.c:4836 +#: storage/lmgr/predicate.c:4883 storage/lmgr/predicate.c:4921 #, c-format msgid "The transaction might succeed if retried." msgstr "Die Transaktion könnte erfolgreich sein, wenn sie erneut versucht würde." @@ -22236,8 +22269,8 @@ msgstr "Funktion »%s« kann nicht via Fastpath-Interface aufgerufen werden" msgid "fastpath function call: \"%s\" (OID %u)" msgstr "Fastpath-Funktionsaufruf: »%s« (OID %u)" -#: tcop/fastpath.c:312 tcop/postgres.c:1341 tcop/postgres.c:1577 -#: tcop/postgres.c:2036 tcop/postgres.c:2280 +#: tcop/fastpath.c:312 tcop/postgres.c:1345 tcop/postgres.c:1581 +#: tcop/postgres.c:2052 tcop/postgres.c:2308 #, c-format msgid "duration: %s ms" msgstr "Dauer: %s ms" @@ -22267,295 +22300,295 @@ msgstr "ungültige Argumentgröße %d in Funktionsaufruf-Message" msgid "incorrect binary data format in function argument %d" msgstr "falsches Binärdatenformat in Funktionsargument %d" -#: tcop/postgres.c:444 tcop/postgres.c:4828 +#: tcop/postgres.c:448 tcop/postgres.c:4916 #, c-format msgid "invalid frontend message type %d" msgstr "ungültiger Frontend-Message-Typ %d" -#: tcop/postgres.c:1051 +#: tcop/postgres.c:1055 #, c-format msgid "statement: %s" msgstr "Anweisung: %s" -#: tcop/postgres.c:1346 +#: tcop/postgres.c:1350 #, c-format msgid "duration: %s ms statement: %s" msgstr "Dauer: %s ms Anweisung: %s" -#: tcop/postgres.c:1452 +#: tcop/postgres.c:1456 #, c-format msgid "cannot insert multiple commands into a prepared statement" msgstr "kann nicht mehrere Befehle in vorbereitete Anweisung einfügen" -#: tcop/postgres.c:1582 +#: tcop/postgres.c:1586 #, c-format msgid "duration: %s ms parse %s: %s" msgstr "Dauer: %s ms Parsen %s: %s" -#: tcop/postgres.c:1648 tcop/postgres.c:2595 +#: tcop/postgres.c:1653 tcop/postgres.c:2623 #, c-format msgid "unnamed prepared statement does not exist" msgstr "unbenannte vorbereitete Anweisung existiert nicht" -#: tcop/postgres.c:1689 +#: tcop/postgres.c:1705 #, c-format msgid "bind message has %d parameter formats but %d parameters" msgstr "Binden-Nachricht hat %d Parameterformate aber %d Parameter" -#: tcop/postgres.c:1695 +#: tcop/postgres.c:1711 #, c-format msgid "bind message supplies %d parameters, but prepared statement \"%s\" requires %d" msgstr "Binden-Nachricht enthält %d Parameter, aber vorbereitete Anweisung »%s« erfordert %d" -#: tcop/postgres.c:1914 +#: tcop/postgres.c:1930 #, c-format msgid "incorrect binary data format in bind parameter %d" msgstr "falsches Binärdatenformat in Binden-Parameter %d" -#: tcop/postgres.c:2041 +#: tcop/postgres.c:2057 #, c-format msgid "duration: %s ms bind %s%s%s: %s" msgstr "Dauer: %s ms Binden %s%s%s: %s" -#: tcop/postgres.c:2091 tcop/postgres.c:2678 +#: tcop/postgres.c:2108 tcop/postgres.c:2706 #, c-format msgid "portal \"%s\" does not exist" msgstr "Portal »%s« existiert nicht" -#: tcop/postgres.c:2160 +#: tcop/postgres.c:2188 #, c-format msgid "%s %s%s%s: %s" msgstr "%s %s%s%s: %s" -#: tcop/postgres.c:2162 tcop/postgres.c:2288 +#: tcop/postgres.c:2190 tcop/postgres.c:2316 msgid "execute fetch from" msgstr "Ausführen Fetch von" -#: tcop/postgres.c:2163 tcop/postgres.c:2289 +#: tcop/postgres.c:2191 tcop/postgres.c:2317 msgid "execute" msgstr "Ausführen" -#: tcop/postgres.c:2285 +#: tcop/postgres.c:2313 #, c-format msgid "duration: %s ms %s %s%s%s: %s" msgstr "Dauer: %s ms %s %s%s%s: %s" -#: tcop/postgres.c:2431 +#: tcop/postgres.c:2459 #, c-format msgid "prepare: %s" msgstr "Vorbereiten: %s" -#: tcop/postgres.c:2456 +#: tcop/postgres.c:2484 #, c-format msgid "parameters: %s" msgstr "Parameter: %s" -#: tcop/postgres.c:2471 +#: tcop/postgres.c:2499 #, c-format msgid "abort reason: recovery conflict" msgstr "Abbruchgrund: Konflikt bei Wiederherstellung" -#: tcop/postgres.c:2487 +#: tcop/postgres.c:2515 #, c-format msgid "User was holding shared buffer pin for too long." msgstr "Benutzer hat Shared-Buffer-Pin zu lange gehalten." -#: tcop/postgres.c:2490 +#: tcop/postgres.c:2518 #, c-format msgid "User was holding a relation lock for too long." msgstr "Benutzer hat Relationssperre zu lange gehalten." -#: tcop/postgres.c:2493 +#: tcop/postgres.c:2521 #, c-format msgid "User was or might have been using tablespace that must be dropped." msgstr "Benutzer hat (möglicherweise) einen Tablespace verwendet, der gelöscht werden muss." -#: tcop/postgres.c:2496 +#: tcop/postgres.c:2524 #, c-format msgid "User query might have needed to see row versions that must be removed." msgstr "Benutzeranfrage hat möglicherweise Zeilenversionen sehen müssen, die entfernt werden müssen." -#: tcop/postgres.c:2502 +#: tcop/postgres.c:2530 #, c-format msgid "User was connected to a database that must be dropped." msgstr "Benutzer war mit einer Datenbank verbunden, die gelöscht werden muss." -#: tcop/postgres.c:2541 +#: tcop/postgres.c:2569 #, c-format msgid "portal \"%s\" parameter $%d = %s" msgstr "Portal »%s« Parameter $%d = %s" -#: tcop/postgres.c:2544 +#: tcop/postgres.c:2572 #, c-format msgid "portal \"%s\" parameter $%d" msgstr "Portal »%s« Parameter $%d" -#: tcop/postgres.c:2550 +#: tcop/postgres.c:2578 #, c-format msgid "unnamed portal parameter $%d = %s" msgstr "unbenanntes Portal Parameter $%d = %s" -#: tcop/postgres.c:2553 +#: tcop/postgres.c:2581 #, c-format msgid "unnamed portal parameter $%d" msgstr "unbenanntes Portal Parameter $%d" -#: tcop/postgres.c:2898 +#: tcop/postgres.c:2926 #, c-format msgid "terminating connection because of unexpected SIGQUIT signal" msgstr "Verbindung wird abgebrochen wegen unerwartetem SIGQUIT-Signal" -#: tcop/postgres.c:2904 +#: tcop/postgres.c:2932 #, c-format msgid "terminating connection because of crash of another server process" msgstr "Verbindung wird abgebrochen wegen Absturz eines anderen Serverprozesses" -#: tcop/postgres.c:2905 +#: tcop/postgres.c:2933 #, c-format msgid "The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory." msgstr "Der Postmaster hat diesen Serverprozess angewiesen, die aktuelle Transaktion zurückzurollen und die Sitzung zu beenden, weil ein anderer Serverprozess abnormal beendet wurde und möglicherweise das Shared Memory verfälscht hat." -#: tcop/postgres.c:2909 tcop/postgres.c:3270 +#: tcop/postgres.c:2937 tcop/postgres.c:3298 #, c-format msgid "In a moment you should be able to reconnect to the database and repeat your command." msgstr "In einem Moment sollten Sie wieder mit der Datenbank verbinden und Ihren Befehl wiederholen können." -#: tcop/postgres.c:2916 +#: tcop/postgres.c:2944 #, c-format msgid "terminating connection due to immediate shutdown command" msgstr "Verbindung wird abgebrochen aufgrund von Befehl für sofortiges Herunterfahren" -#: tcop/postgres.c:3002 +#: tcop/postgres.c:3030 #, c-format msgid "floating-point exception" msgstr "Fließkommafehler" -#: tcop/postgres.c:3003 +#: tcop/postgres.c:3031 #, c-format msgid "An invalid floating-point operation was signaled. This probably means an out-of-range result or an invalid operation, such as division by zero." msgstr "Eine ungültige Fließkommaoperation wurde signalisiert. Das bedeutet wahrscheinlich ein Ergebnis außerhalb des gültigen Bereichs oder eine ungültige Operation, zum Beispiel Division durch null." -#: tcop/postgres.c:3174 +#: tcop/postgres.c:3202 #, c-format msgid "canceling authentication due to timeout" msgstr "storniere Authentifizierung wegen Zeitüberschreitung" -#: tcop/postgres.c:3178 +#: tcop/postgres.c:3206 #, c-format msgid "terminating autovacuum process due to administrator command" msgstr "Autovacuum-Prozess wird abgebrochen aufgrund von Anweisung des Administrators" -#: tcop/postgres.c:3182 +#: tcop/postgres.c:3210 #, c-format msgid "terminating logical replication worker due to administrator command" msgstr "Arbeitsprozess für logische Replikation wird abgebrochen aufgrund von Anweisung des Administrators" -#: tcop/postgres.c:3199 tcop/postgres.c:3209 tcop/postgres.c:3268 +#: tcop/postgres.c:3227 tcop/postgres.c:3237 tcop/postgres.c:3296 #, c-format msgid "terminating connection due to conflict with recovery" msgstr "Verbindung wird abgebrochen wegen Konflikt mit der Wiederherstellung" -#: tcop/postgres.c:3220 +#: tcop/postgres.c:3248 #, c-format msgid "terminating connection due to administrator command" msgstr "Verbindung wird abgebrochen aufgrund von Anweisung des Administrators" -#: tcop/postgres.c:3251 +#: tcop/postgres.c:3279 #, c-format msgid "connection to client lost" msgstr "Verbindung zum Client wurde verloren" -#: tcop/postgres.c:3321 +#: tcop/postgres.c:3349 #, c-format msgid "canceling statement due to lock timeout" msgstr "storniere Anfrage wegen Zeitüberschreitung einer Sperre" -#: tcop/postgres.c:3328 +#: tcop/postgres.c:3356 #, c-format msgid "canceling statement due to statement timeout" msgstr "storniere Anfrage wegen Zeitüberschreitung der Anfrage" -#: tcop/postgres.c:3335 +#: tcop/postgres.c:3363 #, c-format msgid "canceling autovacuum task" msgstr "storniere Autovacuum-Aufgabe" -#: tcop/postgres.c:3358 +#: tcop/postgres.c:3386 #, c-format msgid "canceling statement due to user request" msgstr "storniere Anfrage wegen Benutzeraufforderung" -#: tcop/postgres.c:3372 +#: tcop/postgres.c:3400 #, c-format msgid "terminating connection due to idle-in-transaction timeout" msgstr "Verbindung wird abgebrochen wegen Zeitüberschreitung in inaktiver Transaktion" -#: tcop/postgres.c:3383 +#: tcop/postgres.c:3411 #, c-format msgid "terminating connection due to idle-session timeout" msgstr "Verbindung wird abgebrochen wegen Zeitüberschreitung in inaktiver Sitzung" -#: tcop/postgres.c:3523 +#: tcop/postgres.c:3551 #, c-format msgid "stack depth limit exceeded" msgstr "Grenze für Stacktiefe überschritten" -#: tcop/postgres.c:3524 +#: tcop/postgres.c:3552 #, c-format msgid "Increase the configuration parameter \"max_stack_depth\" (currently %dkB), after ensuring the platform's stack depth limit is adequate." msgstr "Erhöhen Sie den Konfigurationsparameter »max_stack_depth« (aktuell %dkB), nachdem Sie sichergestellt haben, dass die Stacktiefenbegrenzung Ihrer Plattform ausreichend ist." -#: tcop/postgres.c:3587 +#: tcop/postgres.c:3615 #, c-format msgid "\"max_stack_depth\" must not exceed %ldkB." msgstr "»max_stack_depth« darf %ldkB nicht überschreiten." -#: tcop/postgres.c:3589 +#: tcop/postgres.c:3617 #, c-format msgid "Increase the platform's stack depth limit via \"ulimit -s\" or local equivalent." msgstr "Erhöhen Sie die Stacktiefenbegrenzung Ihrer Plattform mit »ulimit -s« oder der lokalen Entsprechung." -#: tcop/postgres.c:3945 +#: tcop/postgres.c:4033 #, c-format msgid "invalid command-line argument for server process: %s" msgstr "ungültiges Kommandozeilenargument für Serverprozess: %s" -#: tcop/postgres.c:3946 tcop/postgres.c:3952 +#: tcop/postgres.c:4034 tcop/postgres.c:4040 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Versuchen Sie »%s --help« für weitere Informationen." -#: tcop/postgres.c:3950 +#: tcop/postgres.c:4038 #, c-format msgid "%s: invalid command-line argument: %s" msgstr "%s: ungültiges Kommandozeilenargument: %s" -#: tcop/postgres.c:4003 +#: tcop/postgres.c:4091 #, c-format msgid "%s: no database nor user name specified" msgstr "%s: weder Datenbankname noch Benutzername angegeben" -#: tcop/postgres.c:4730 +#: tcop/postgres.c:4818 #, c-format msgid "invalid CLOSE message subtype %d" msgstr "ungültiger Subtyp %d von CLOSE-Message" -#: tcop/postgres.c:4765 +#: tcop/postgres.c:4853 #, c-format msgid "invalid DESCRIBE message subtype %d" msgstr "ungültiger Subtyp %d von DESCRIBE-Message" -#: tcop/postgres.c:4849 +#: tcop/postgres.c:4937 #, c-format msgid "fastpath function calls not supported in a replication connection" msgstr "Fastpath-Funktionsaufrufe werden auf einer Replikationsverbindung nicht unterstützt" -#: tcop/postgres.c:4853 +#: tcop/postgres.c:4941 #, c-format msgid "extended query protocol not supported in a replication connection" msgstr "erweitertes Anfrageprotokoll wird nicht auf einer Replikationsverbindung unterstützt" -#: tcop/postgres.c:5030 +#: tcop/postgres.c:5118 #, c-format msgid "disconnection: session time: %d:%02d:%02d.%03d user=%s database=%s host=%s%s%s" msgstr "Verbindungsende: Sitzungszeit: %d:%02d:%02d.%03d Benutzer=%s Datenbank=%s Host=%s%s%s" @@ -22864,37 +22897,37 @@ msgstr "»MaxFragments« sollte >= 0 sein" msgid "could not unlink permanent statistics file \"%s\": %m" msgstr "konnte permanente Statistikdatei »%s« nicht löschen: %m" -#: utils/activity/pgstat.c:1229 +#: utils/activity/pgstat.c:1232 #, c-format msgid "invalid statistics kind: \"%s\"" msgstr "ungültige Statistikart: »%s«" -#: utils/activity/pgstat.c:1309 +#: utils/activity/pgstat.c:1312 #, c-format msgid "could not open temporary statistics file \"%s\": %m" msgstr "konnte temporäre Statistikdatei »%s« nicht öffnen: %m" -#: utils/activity/pgstat.c:1415 +#: utils/activity/pgstat.c:1418 #, c-format msgid "could not write temporary statistics file \"%s\": %m" msgstr "konnte temporäre Statistikdatei »%s« nicht schreiben: %m" -#: utils/activity/pgstat.c:1424 +#: utils/activity/pgstat.c:1427 #, c-format msgid "could not close temporary statistics file \"%s\": %m" msgstr "konnte temporäre Statistikdatei »%s« nicht schließen: %m" -#: utils/activity/pgstat.c:1432 +#: utils/activity/pgstat.c:1435 #, c-format msgid "could not rename temporary statistics file \"%s\" to \"%s\": %m" msgstr "konnte temporäre Statistikdatei »%s« nicht in »%s« umbenennen: %m" -#: utils/activity/pgstat.c:1481 +#: utils/activity/pgstat.c:1484 #, c-format msgid "could not open statistics file \"%s\": %m" msgstr "konnte Statistikdatei »%s« nicht öffnen: %m" -#: utils/activity/pgstat.c:1637 +#: utils/activity/pgstat.c:1640 #, c-format msgid "corrupted statistics file \"%s\"" msgstr "verfälschte Statistikdatei »%s«" @@ -24739,62 +24772,62 @@ msgstr "globaler Tablespace hat niemals Datenbanken" msgid "%u is not a tablespace OID" msgstr "%u ist keine Tablespace-OID" -#: utils/adt/misc.c:457 +#: utils/adt/misc.c:450 msgid "unreserved" msgstr "unreserviert" -#: utils/adt/misc.c:461 +#: utils/adt/misc.c:454 msgid "unreserved (cannot be function or type name)" msgstr "unreserviert (kann nicht Funktions- oder Typname sein)" -#: utils/adt/misc.c:465 +#: utils/adt/misc.c:458 msgid "reserved (can be function or type name)" msgstr "reserviert (kann Funktions- oder Typname sein)" -#: utils/adt/misc.c:469 +#: utils/adt/misc.c:462 msgid "reserved" msgstr "reserviert" -#: utils/adt/misc.c:480 +#: utils/adt/misc.c:473 msgid "can be bare label" msgstr "kann alleinstehendes Label sein" -#: utils/adt/misc.c:485 +#: utils/adt/misc.c:478 msgid "requires AS" msgstr "benötigt AS" -#: utils/adt/misc.c:732 utils/adt/misc.c:746 utils/adt/misc.c:785 -#: utils/adt/misc.c:791 utils/adt/misc.c:797 utils/adt/misc.c:820 +#: utils/adt/misc.c:725 utils/adt/misc.c:739 utils/adt/misc.c:778 +#: utils/adt/misc.c:784 utils/adt/misc.c:790 utils/adt/misc.c:813 #, c-format msgid "string is not a valid identifier: \"%s\"" msgstr "Zeichenkette ist kein gültiger Bezeichner: »%s«" -#: utils/adt/misc.c:734 +#: utils/adt/misc.c:727 #, c-format msgid "String has unclosed double quotes." msgstr "Zeichenkette hat nicht geschlossene doppelte Anführungszeichen." -#: utils/adt/misc.c:748 +#: utils/adt/misc.c:741 #, c-format msgid "Quoted identifier must not be empty." msgstr "Bezeichner in Anführungszeichen darf nicht leer sein." -#: utils/adt/misc.c:787 +#: utils/adt/misc.c:780 #, c-format msgid "No valid identifier before \".\"." msgstr "Kein gültiger Bezeichner vor ».«." -#: utils/adt/misc.c:793 +#: utils/adt/misc.c:786 #, c-format msgid "No valid identifier after \".\"." msgstr "Kein gültiger Bezeichner nach ».«." -#: utils/adt/misc.c:853 +#: utils/adt/misc.c:846 #, c-format msgid "log format \"%s\" is not supported" msgstr "Logformat »%s« wird nicht unterstützt" -#: utils/adt/misc.c:854 +#: utils/adt/misc.c:847 #, c-format msgid "The supported log formats are \"stderr\", \"csvlog\", and \"jsonlog\"." msgstr "Die unterstützten Logformate sind »stderr«, »csvlog« und »jsonlog«." @@ -25270,7 +25303,7 @@ msgstr "Wenn Sie regexp_replace() mit einem Startparameter verwenden wollten, wa #: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 #: utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 #: utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 -#: utils/adt/regexp.c:1857 utils/misc/guc.c:11875 utils/misc/guc.c:11909 +#: utils/adt/regexp.c:1857 utils/misc/guc.c:11893 utils/misc/guc.c:11927 #, c-format msgid "invalid value for parameter \"%s\": %d" msgstr "ungültiger Wert für Parameter »%s«: %d" @@ -25309,7 +25342,7 @@ msgid "more than one operator named %s" msgstr "es gibt mehrere Operatoren namens %s" #: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 -#: utils/adt/ruleutils.c:10029 utils/adt/ruleutils.c:10198 +#: utils/adt/ruleutils.c:10053 utils/adt/ruleutils.c:10222 #, c-format msgid "too many arguments" msgstr "zu viele Argumente" @@ -25510,7 +25543,7 @@ msgstr "Präzision von TIMESTAMP(%d)%s darf nicht negativ sein" msgid "TIMESTAMP(%d)%s precision reduced to maximum allowed, %d" msgstr "Präzision von TIMESTAMP(%d)%s auf erlaubten Höchstwert %d reduziert" -#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12899 +#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12917 #, c-format msgid "timestamp out of range: \"%s\"" msgstr "timestamp ist außerhalb des gültigen Bereichs: »%s«" @@ -26139,22 +26172,22 @@ msgstr "weder Namensraumname noch URI dürfen NULL sein" msgid "could not register XML namespace with name \"%s\" and URI \"%s\"" msgstr "konnte XML-Namensraum mit Namen »%s« und URI »%s« nicht registrieren" -#: utils/adt/xml.c:4503 +#: utils/adt/xml.c:4509 #, c-format msgid "DEFAULT namespace is not supported" msgstr "DEFAULT-Namensraum wird nicht unterstützt" -#: utils/adt/xml.c:4532 +#: utils/adt/xml.c:4538 #, c-format msgid "row path filter must not be empty string" msgstr "Zeilenpfadfilter darf nicht leer sein" -#: utils/adt/xml.c:4563 +#: utils/adt/xml.c:4572 #, c-format msgid "column path filter must not be empty string" msgstr "Spaltenpfadfilter darf nicht leer sein" -#: utils/adt/xml.c:4707 +#: utils/adt/xml.c:4719 #, c-format msgid "more than one value returned by column XPath expression" msgstr "XPath-Ausdruck für Spalte gab mehr als einen Wert zurück" @@ -26190,27 +26223,27 @@ msgstr "in Operatorklasse »%s« für Zugriffsmethode %s fehlt Support-Funktion msgid "cached plan must not change result type" msgstr "gecachter Plan darf den Ergebnistyp nicht ändern" -#: utils/cache/relcache.c:3754 +#: utils/cache/relcache.c:3755 #, c-format msgid "heap relfilenode value not set when in binary upgrade mode" msgstr "Heap-Relfilenode-Wert ist im Binary-Upgrade-Modus nicht gesetzt" -#: utils/cache/relcache.c:3762 +#: utils/cache/relcache.c:3763 #, c-format msgid "unexpected request for new relfilenode in binary upgrade mode" msgstr "unerwartete Anforderung eines neuen Relfilenodes im Binary-Upgrade-Modus" -#: utils/cache/relcache.c:6473 +#: utils/cache/relcache.c:6476 #, c-format msgid "could not create relation-cache initialization file \"%s\": %m" msgstr "konnte Initialisierungsdatei für Relationscache »%s« nicht erzeugen: %m" -#: utils/cache/relcache.c:6475 +#: utils/cache/relcache.c:6478 #, c-format msgid "Continuing anyway, but there's something wrong." msgstr "Setze trotzdem fort, aber irgendwas stimmt nicht." -#: utils/cache/relcache.c:6797 +#: utils/cache/relcache.c:6800 #, c-format msgid "could not remove cache file \"%s\": %m" msgstr "konnte Cache-Datei »%s« nicht löschen: %m" @@ -26523,7 +26556,7 @@ msgstr "Datenverzeichnis »%s« hat ungültige Zugriffsrechte" msgid "Permissions should be u=rwx (0700) or u=rwx,g=rx (0750)." msgstr "Rechte sollten u=rwx (0700) oder u=rwx,g=rx (0750) sein." -#: utils/init/miscinit.c:665 utils/misc/guc.c:7837 +#: utils/init/miscinit.c:665 utils/misc/guc.c:7855 #, c-format msgid "cannot set parameter \"%s\" within security-restricted operation" msgstr "kann Parameter »%s« nicht in einer sicherheitsbeschränkten Operation setzen" @@ -26624,7 +26657,7 @@ msgstr "Die Datei ist anscheinend aus Versehen übrig geblieben, konnte aber nic msgid "could not write lock file \"%s\": %m" msgstr "konnte Sperrdatei »%s« nicht schreiben: %m" -#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10843 +#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10861 #, c-format msgid "could not read from file \"%s\": %m" msgstr "konnte nicht aus Datei »%s« lesen: %m" @@ -26882,1967 +26915,1971 @@ msgstr "ungültige Byte-Sequenz für Kodierung »%s«: %s" msgid "character with byte sequence %s in encoding \"%s\" has no equivalent in encoding \"%s\"" msgstr "Zeichen mit Byte-Folge %s in Kodierung »%s« hat keine Entsprechung in Kodierung »%s«" -#: utils/misc/guc.c:776 +#: utils/misc/guc.c:777 msgid "Ungrouped" msgstr "Ungruppiert" -#: utils/misc/guc.c:778 +#: utils/misc/guc.c:779 msgid "File Locations" msgstr "Dateipfade" -#: utils/misc/guc.c:780 +#: utils/misc/guc.c:781 msgid "Connections and Authentication / Connection Settings" msgstr "Verbindungen und Authentifizierung / Verbindungseinstellungen" -#: utils/misc/guc.c:782 +#: utils/misc/guc.c:783 msgid "Connections and Authentication / Authentication" msgstr "Verbindungen und Authentifizierung / Authentifizierung" -#: utils/misc/guc.c:784 +#: utils/misc/guc.c:785 msgid "Connections and Authentication / SSL" msgstr "Verbindungen und Authentifizierung / SSL" -#: utils/misc/guc.c:786 +#: utils/misc/guc.c:787 msgid "Resource Usage / Memory" msgstr "Resourcenbenutzung / Speicher" -#: utils/misc/guc.c:788 +#: utils/misc/guc.c:789 msgid "Resource Usage / Disk" msgstr "Resourcenbenutzung / Festplatte" -#: utils/misc/guc.c:790 +#: utils/misc/guc.c:791 msgid "Resource Usage / Kernel Resources" msgstr "Resourcenbenutzung / Kernelresourcen" -#: utils/misc/guc.c:792 +#: utils/misc/guc.c:793 msgid "Resource Usage / Cost-Based Vacuum Delay" msgstr "Resourcenbenutzung / Kostenbasierte Vacuum-Verzögerung" -#: utils/misc/guc.c:794 +#: utils/misc/guc.c:795 msgid "Resource Usage / Background Writer" msgstr "Resourcenbenutzung / Background-Writer" -#: utils/misc/guc.c:796 +#: utils/misc/guc.c:797 msgid "Resource Usage / Asynchronous Behavior" msgstr "Resourcenbenutzung / Asynchrones Verhalten" -#: utils/misc/guc.c:798 +#: utils/misc/guc.c:799 msgid "Write-Ahead Log / Settings" msgstr "Write-Ahead-Log / Einstellungen" -#: utils/misc/guc.c:800 +#: utils/misc/guc.c:801 msgid "Write-Ahead Log / Checkpoints" msgstr "Write-Ahead-Log / Checkpoints" -#: utils/misc/guc.c:802 +#: utils/misc/guc.c:803 msgid "Write-Ahead Log / Archiving" msgstr "Write-Ahead-Log / Archivierung" -#: utils/misc/guc.c:804 +#: utils/misc/guc.c:805 msgid "Write-Ahead Log / Recovery" msgstr "Write-Ahead-Log / Wiederherstellung" -#: utils/misc/guc.c:806 +#: utils/misc/guc.c:807 msgid "Write-Ahead Log / Archive Recovery" msgstr "Write-Ahead-Log / Archivwiederherstellung" -#: utils/misc/guc.c:808 +#: utils/misc/guc.c:809 msgid "Write-Ahead Log / Recovery Target" msgstr "Write-Ahead-Log / Wiederherstellungsziele" -#: utils/misc/guc.c:810 +#: utils/misc/guc.c:811 msgid "Replication / Sending Servers" msgstr "Replikation / sendende Server" -#: utils/misc/guc.c:812 +#: utils/misc/guc.c:813 msgid "Replication / Primary Server" msgstr "Replikation / Primärserver" -#: utils/misc/guc.c:814 +#: utils/misc/guc.c:815 msgid "Replication / Standby Servers" msgstr "Replikation / Standby-Server" -#: utils/misc/guc.c:816 +#: utils/misc/guc.c:817 msgid "Replication / Subscribers" msgstr "Replikation / Subskriptionsserver" -#: utils/misc/guc.c:818 +#: utils/misc/guc.c:819 msgid "Query Tuning / Planner Method Configuration" msgstr "Anfragetuning / Planermethoden" -#: utils/misc/guc.c:820 +#: utils/misc/guc.c:821 msgid "Query Tuning / Planner Cost Constants" msgstr "Anfragetuning / Planerkosten" -#: utils/misc/guc.c:822 +#: utils/misc/guc.c:823 msgid "Query Tuning / Genetic Query Optimizer" msgstr "Anfragetuning / Genetischer Anfrageoptimierer" -#: utils/misc/guc.c:824 +#: utils/misc/guc.c:825 msgid "Query Tuning / Other Planner Options" msgstr "Anfragetuning / Andere Planeroptionen" -#: utils/misc/guc.c:826 +#: utils/misc/guc.c:827 msgid "Reporting and Logging / Where to Log" msgstr "Berichte und Logging / Wohin geloggt wird" -#: utils/misc/guc.c:828 +#: utils/misc/guc.c:829 msgid "Reporting and Logging / When to Log" msgstr "Berichte und Logging / Wann geloggt wird" -#: utils/misc/guc.c:830 +#: utils/misc/guc.c:831 msgid "Reporting and Logging / What to Log" msgstr "Berichte und Logging / Was geloggt wird" -#: utils/misc/guc.c:832 +#: utils/misc/guc.c:833 msgid "Reporting and Logging / Process Title" msgstr "Berichte und Logging / Prozesstitel" -#: utils/misc/guc.c:834 +#: utils/misc/guc.c:835 msgid "Statistics / Monitoring" msgstr "Statistiken / Überwachung" -#: utils/misc/guc.c:836 +#: utils/misc/guc.c:837 msgid "Statistics / Cumulative Query and Index Statistics" msgstr "Statistiken / Kumulierte Anfrage- und Indexstatistiken" -#: utils/misc/guc.c:838 +#: utils/misc/guc.c:839 msgid "Autovacuum" msgstr "Autovacuum" -#: utils/misc/guc.c:840 +#: utils/misc/guc.c:841 msgid "Client Connection Defaults / Statement Behavior" msgstr "Standardeinstellungen für Clientverbindungen / Anweisungsverhalten" -#: utils/misc/guc.c:842 +#: utils/misc/guc.c:843 msgid "Client Connection Defaults / Locale and Formatting" msgstr "Standardeinstellungen für Clientverbindungen / Locale und Formatierung" -#: utils/misc/guc.c:844 +#: utils/misc/guc.c:845 msgid "Client Connection Defaults / Shared Library Preloading" msgstr "Standardeinstellungen für Clientverbindungen / Shared Library Preloading" -#: utils/misc/guc.c:846 +#: utils/misc/guc.c:847 msgid "Client Connection Defaults / Other Defaults" msgstr "Standardeinstellungen für Clientverbindungen / Andere" -#: utils/misc/guc.c:848 +#: utils/misc/guc.c:849 msgid "Lock Management" msgstr "Sperrenverwaltung" -#: utils/misc/guc.c:850 +#: utils/misc/guc.c:851 msgid "Version and Platform Compatibility / Previous PostgreSQL Versions" msgstr "Versions- und Plattformkompatibilität / Frühere PostgreSQL-Versionen" -#: utils/misc/guc.c:852 +#: utils/misc/guc.c:853 msgid "Version and Platform Compatibility / Other Platforms and Clients" msgstr "Versions- und Plattformkompatibilität / Andere Plattformen und Clients" -#: utils/misc/guc.c:854 +#: utils/misc/guc.c:855 msgid "Error Handling" msgstr "Fehlerbehandlung" -#: utils/misc/guc.c:856 +#: utils/misc/guc.c:857 msgid "Preset Options" msgstr "Voreingestellte Optionen" -#: utils/misc/guc.c:858 +#: utils/misc/guc.c:859 msgid "Customized Options" msgstr "Angepasste Optionen" -#: utils/misc/guc.c:860 +#: utils/misc/guc.c:861 msgid "Developer Options" msgstr "Entwickleroptionen" -#: utils/misc/guc.c:918 +#: utils/misc/guc.c:919 msgid "Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\"." msgstr "Gültige Einheiten für diesen Parameter sind »B«, »kB«, »MB«, »GB« und »TB«." -#: utils/misc/guc.c:955 +#: utils/misc/guc.c:956 msgid "Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\"." msgstr "Gültige Einheiten für diesen Parameter sind »us«, »ms«, »s«, »min«, »h« und »d«." -#: utils/misc/guc.c:1017 +#: utils/misc/guc.c:1018 msgid "Enables the planner's use of sequential-scan plans." msgstr "Ermöglicht sequenzielle Scans in Planer." -#: utils/misc/guc.c:1027 +#: utils/misc/guc.c:1028 msgid "Enables the planner's use of index-scan plans." msgstr "Ermöglicht Index-Scans im Planer." -#: utils/misc/guc.c:1037 +#: utils/misc/guc.c:1038 msgid "Enables the planner's use of index-only-scan plans." msgstr "Ermöglicht Index-Only-Scans im Planer." -#: utils/misc/guc.c:1047 +#: utils/misc/guc.c:1048 msgid "Enables the planner's use of bitmap-scan plans." msgstr "Ermöglicht Bitmap-Scans im Planer." -#: utils/misc/guc.c:1057 +#: utils/misc/guc.c:1058 msgid "Enables the planner's use of TID scan plans." msgstr "Ermöglicht TID-Scans im Planer." -#: utils/misc/guc.c:1067 +#: utils/misc/guc.c:1068 msgid "Enables the planner's use of explicit sort steps." msgstr "Ermöglicht Sortierschritte im Planer." -#: utils/misc/guc.c:1077 +#: utils/misc/guc.c:1078 msgid "Enables the planner's use of incremental sort steps." msgstr "Ermöglicht inkrementelle Sortierschritte im Planer." -#: utils/misc/guc.c:1087 +#: utils/misc/guc.c:1088 msgid "Enables the planner's use of hashed aggregation plans." msgstr "Ermöglicht Hash-Aggregierung im Planer." -#: utils/misc/guc.c:1097 +#: utils/misc/guc.c:1098 msgid "Enables the planner's use of materialization." msgstr "Ermöglicht Materialisierung im Planer." -#: utils/misc/guc.c:1107 +#: utils/misc/guc.c:1108 msgid "Enables the planner's use of memoization." msgstr "Ermöglicht Memoization im Planer." -#: utils/misc/guc.c:1117 +#: utils/misc/guc.c:1118 msgid "Enables the planner's use of nested-loop join plans." msgstr "Ermöglicht Nested-Loop-Verbunde im Planer." -#: utils/misc/guc.c:1127 +#: utils/misc/guc.c:1128 msgid "Enables the planner's use of merge join plans." msgstr "Ermöglicht Merge-Verbunde im Planer." -#: utils/misc/guc.c:1137 +#: utils/misc/guc.c:1138 msgid "Enables the planner's use of hash join plans." msgstr "Ermöglicht Hash-Verbunde im Planer." -#: utils/misc/guc.c:1147 +#: utils/misc/guc.c:1148 msgid "Enables the planner's use of gather merge plans." msgstr "Ermöglicht Gather-Merge-Pläne im Planer." -#: utils/misc/guc.c:1157 +#: utils/misc/guc.c:1158 msgid "Enables partitionwise join." msgstr "Ermöglicht partitionsweise Verbunde." -#: utils/misc/guc.c:1167 +#: utils/misc/guc.c:1168 msgid "Enables partitionwise aggregation and grouping." msgstr "Ermöglicht partitionsweise Aggregierung und Gruppierung." -#: utils/misc/guc.c:1177 +#: utils/misc/guc.c:1178 msgid "Enables the planner's use of parallel append plans." msgstr "Ermöglicht parallele Append-Pläne im Planer." -#: utils/misc/guc.c:1187 +#: utils/misc/guc.c:1188 msgid "Enables the planner's use of parallel hash plans." msgstr "Ermöglicht parallele Hash-Pläne im Planer." -#: utils/misc/guc.c:1197 +#: utils/misc/guc.c:1198 msgid "Enables plan-time and execution-time partition pruning." msgstr "Ermöglicht Partition-Pruning zur Planzeit und zur Ausführungszeit." -#: utils/misc/guc.c:1198 +#: utils/misc/guc.c:1199 msgid "Allows the query planner and executor to compare partition bounds to conditions in the query to determine which partitions must be scanned." msgstr "Erlaubt es dem Planer und dem Executor, Partitionsbegrenzungen mit Bedingungen in der Anfrage zu vergleichen, um festzustellen, welche Partitionen gelesen werden müssen." -#: utils/misc/guc.c:1209 +#: utils/misc/guc.c:1210 msgid "Enables the planner's use of async append plans." msgstr "Ermöglicht asynchrone Append-Pläne im Planer." -#: utils/misc/guc.c:1219 +#: utils/misc/guc.c:1220 msgid "Enables genetic query optimization." msgstr "Ermöglicht genetische Anfrageoptimierung." -#: utils/misc/guc.c:1220 +#: utils/misc/guc.c:1221 msgid "This algorithm attempts to do planning without exhaustive searching." msgstr "Dieser Algorithmus versucht das Planen ohne erschöpfende Suche durchzuführen." -#: utils/misc/guc.c:1231 +#: utils/misc/guc.c:1232 msgid "Shows whether the current user is a superuser." msgstr "Zeigt, ob der aktuelle Benutzer ein Superuser ist." -#: utils/misc/guc.c:1241 +#: utils/misc/guc.c:1242 msgid "Enables advertising the server via Bonjour." msgstr "Ermöglicht die Bekanntgabe des Servers mit Bonjour." -#: utils/misc/guc.c:1250 +#: utils/misc/guc.c:1251 msgid "Collects transaction commit time." msgstr "Sammelt Commit-Timestamps von Transaktionen." -#: utils/misc/guc.c:1259 +#: utils/misc/guc.c:1260 msgid "Enables SSL connections." msgstr "Ermöglicht SSL-Verbindungen." -#: utils/misc/guc.c:1268 +#: utils/misc/guc.c:1269 msgid "Controls whether ssl_passphrase_command is called during server reload." msgstr "Kontrolliert, ob ssl_passphrase_command beim Neuladen des Servers aufgerufen wird." -#: utils/misc/guc.c:1277 +#: utils/misc/guc.c:1278 msgid "Give priority to server ciphersuite order." msgstr "Der Ciphersuite-Reihenfolge des Servers Vorrang geben." -#: utils/misc/guc.c:1286 +#: utils/misc/guc.c:1287 msgid "Forces synchronization of updates to disk." msgstr "Erzwingt die Synchronisierung von Aktualisierungen auf Festplatte." -#: utils/misc/guc.c:1287 +#: utils/misc/guc.c:1288 msgid "The server will use the fsync() system call in several places to make sure that updates are physically written to disk. This ensures that a database cluster will recover to a consistent state after an operating system or hardware crash." msgstr "Der Server verwendet den Systemaufruf fsync() an mehreren Stellen, um sicherzustellen, dass Datenänderungen physikalisch auf die Festplatte geschrieben werden. Das stellt sicher, dass der Datenbankcluster nach einem Betriebssystemabsturz oder Hardwarefehler in einem korrekten Zustand wiederhergestellt werden kann." -#: utils/misc/guc.c:1298 +#: utils/misc/guc.c:1299 msgid "Continues processing after a checksum failure." msgstr "Setzt die Verarbeitung trotz Prüfsummenfehler fort." -#: utils/misc/guc.c:1299 +#: utils/misc/guc.c:1300 msgid "Detection of a checksum failure normally causes PostgreSQL to report an error, aborting the current transaction. Setting ignore_checksum_failure to true causes the system to ignore the failure (but still report a warning), and continue processing. This behavior could cause crashes or other serious problems. Only has an effect if checksums are enabled." msgstr "Wenn eine fehlerhafte Prüfsumme entdeckt wird, gibt PostgreSQL normalerweise ein Fehler aus und bricht die aktuelle Transaktion ab. Wenn »ignore_checksum_failure« an ist, dann wird der Fehler ignoriert (aber trotzdem eine Warnung ausgegeben) und die Verarbeitung geht weiter. Dieses Verhalten kann Abstürze und andere ernsthafte Probleme verursachen. Es hat keine Auswirkungen, wenn Prüfsummen nicht eingeschaltet sind." -#: utils/misc/guc.c:1313 +#: utils/misc/guc.c:1314 msgid "Continues processing past damaged page headers." msgstr "Setzt die Verarbeitung trotz kaputter Seitenköpfe fort." -#: utils/misc/guc.c:1314 +#: utils/misc/guc.c:1315 msgid "Detection of a damaged page header normally causes PostgreSQL to report an error, aborting the current transaction. Setting zero_damaged_pages to true causes the system to instead report a warning, zero out the damaged page, and continue processing. This behavior will destroy data, namely all the rows on the damaged page." msgstr "Wenn ein kaputter Seitenkopf entdeckt wird, gibt PostgreSQL normalerweise einen Fehler aus und bricht die aktuelle Transaktion ab. Wenn »zero_damaged_pages« an ist, dann wird eine Warnung ausgegeben, die kaputte Seite mit Nullen gefüllt und die Verarbeitung geht weiter. Dieses Verhalten zerstört Daten, nämlich alle Zeilen in der kaputten Seite." -#: utils/misc/guc.c:1327 +#: utils/misc/guc.c:1328 msgid "Continues recovery after an invalid pages failure." msgstr "Setzt die Wiederherstellung trotz Fehler durch ungültige Seiten fort." -#: utils/misc/guc.c:1328 +#: utils/misc/guc.c:1329 msgid "Detection of WAL records having references to invalid pages during recovery causes PostgreSQL to raise a PANIC-level error, aborting the recovery. Setting ignore_invalid_pages to true causes the system to ignore invalid page references in WAL records (but still report a warning), and continue recovery. This behavior may cause crashes, data loss, propagate or hide corruption, or other serious problems. Only has an effect during recovery or in standby mode." msgstr "Wenn WAL-Einträge mit Verweisen auf ungültige Seiten bei der Wiederherstellung erkannt werden, verursacht das einen PANIC-Fehler, wodurch die Wiederherstellung abgebrochen wird. Wenn »ignore_invalid_pages« an ist, dann werden ungültige Seitenverweise in WAL-Einträgen ignoriert (aber trotzen eine Warnung ausgegeben) und die Wiederherstellung wird fortgesetzt. Dieses Verhalten kann Abstürze und Datenverlust verursachen, Datenverfälschung verbreiten oder verstecken sowie andere ernsthafte Probleme verursachen. Es hat nur Auswirkungen im Wiederherstellungs- oder Standby-Modus." -#: utils/misc/guc.c:1346 +#: utils/misc/guc.c:1347 msgid "Writes full pages to WAL when first modified after a checkpoint." msgstr "Schreibt volle Seiten in den WAL, sobald sie nach einem Checkpoint geändert werden." -#: utils/misc/guc.c:1347 +#: utils/misc/guc.c:1348 msgid "A page write in process during an operating system crash might be only partially written to disk. During recovery, the row changes stored in WAL are not enough to recover. This option writes pages when first modified after a checkpoint to WAL so full recovery is possible." msgstr "Ein Seitenschreibvorgang während eines Betriebssystemabsturzes könnte eventuell nur teilweise geschrieben worden sein. Bei der Wiederherstellung sind die im WAL gespeicherten Zeilenänderungen nicht ausreichend. Diese Option schreibt Seiten, sobald sie nach einem Checkpoint geändert worden sind, damit eine volle Wiederherstellung möglich ist." -#: utils/misc/guc.c:1360 +#: utils/misc/guc.c:1361 msgid "Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification." msgstr "Schreibt volle Seiten in den WAL, sobald sie nach einem Checkpoint geändert werden, auch für eine nicht kritische Änderung." -#: utils/misc/guc.c:1370 +#: utils/misc/guc.c:1371 msgid "Writes zeroes to new WAL files before first use." msgstr "Schreibt Nullen in neue WAL-Dateien vor der ersten Verwendung." -#: utils/misc/guc.c:1380 +#: utils/misc/guc.c:1381 msgid "Recycles WAL files by renaming them." msgstr "WAL-Dateien werden durch Umbenennen wiederverwendet." -#: utils/misc/guc.c:1390 +#: utils/misc/guc.c:1391 msgid "Logs each checkpoint." msgstr "Schreibt jeden Checkpoint in den Log." -#: utils/misc/guc.c:1399 +#: utils/misc/guc.c:1400 msgid "Logs each successful connection." msgstr "Schreibt jede erfolgreiche Verbindung in den Log." -#: utils/misc/guc.c:1408 +#: utils/misc/guc.c:1409 msgid "Logs end of a session, including duration." msgstr "Schreibt jedes Verbindungsende mit Sitzungszeit in den Log." -#: utils/misc/guc.c:1417 +#: utils/misc/guc.c:1418 msgid "Logs each replication command." msgstr "Schreibt jeden Replikationsbefehl in den Log." -#: utils/misc/guc.c:1426 +#: utils/misc/guc.c:1427 msgid "Shows whether the running server has assertion checks enabled." msgstr "Zeigt, ob der laufende Server Assertion-Prüfungen aktiviert hat." -#: utils/misc/guc.c:1441 +#: utils/misc/guc.c:1442 msgid "Terminate session on any error." msgstr "Sitzung bei jedem Fehler abbrechen." -#: utils/misc/guc.c:1450 +#: utils/misc/guc.c:1451 msgid "Reinitialize server after backend crash." msgstr "Server nach Absturz eines Serverprozesses reinitialisieren." -#: utils/misc/guc.c:1459 +#: utils/misc/guc.c:1460 msgid "Remove temporary files after backend crash." msgstr "Temporäre Dateien nach Absturz eines Serverprozesses löschen." -#: utils/misc/guc.c:1470 +#: utils/misc/guc.c:1471 msgid "Logs the duration of each completed SQL statement." msgstr "Loggt die Dauer jeder abgeschlossenen SQL-Anweisung." -#: utils/misc/guc.c:1479 +#: utils/misc/guc.c:1480 msgid "Logs each query's parse tree." msgstr "Scheibt den Parsebaum jeder Anfrage in den Log." -#: utils/misc/guc.c:1488 +#: utils/misc/guc.c:1489 msgid "Logs each query's rewritten parse tree." msgstr "Schreibt den umgeschriebenen Parsebaum jeder Anfrage in den Log." -#: utils/misc/guc.c:1497 +#: utils/misc/guc.c:1498 msgid "Logs each query's execution plan." msgstr "Schreibt den Ausführungsplan jeder Anfrage in den Log." -#: utils/misc/guc.c:1506 +#: utils/misc/guc.c:1507 msgid "Indents parse and plan tree displays." msgstr "Rückt die Anzeige von Parse- und Planbäumen ein." -#: utils/misc/guc.c:1515 +#: utils/misc/guc.c:1516 msgid "Writes parser performance statistics to the server log." msgstr "Schreibt Parser-Leistungsstatistiken in den Serverlog." -#: utils/misc/guc.c:1524 +#: utils/misc/guc.c:1525 msgid "Writes planner performance statistics to the server log." msgstr "Schreibt Planer-Leistungsstatistiken in den Serverlog." -#: utils/misc/guc.c:1533 +#: utils/misc/guc.c:1534 msgid "Writes executor performance statistics to the server log." msgstr "Schreibt Executor-Leistungsstatistiken in den Serverlog." -#: utils/misc/guc.c:1542 +#: utils/misc/guc.c:1543 msgid "Writes cumulative performance statistics to the server log." msgstr "Schreibt Gesamtleistungsstatistiken in den Serverlog." -#: utils/misc/guc.c:1552 +#: utils/misc/guc.c:1553 msgid "Logs system resource usage statistics (memory and CPU) on various B-tree operations." msgstr "Loggt Statistiken über Systemressourcen (Speicher und CPU) während diverser B-Baum-Operationen." -#: utils/misc/guc.c:1564 +#: utils/misc/guc.c:1565 msgid "Collects information about executing commands." msgstr "Sammelt Informationen über ausgeführte Befehle." -#: utils/misc/guc.c:1565 +#: utils/misc/guc.c:1566 msgid "Enables the collection of information on the currently executing command of each session, along with the time at which that command began execution." msgstr "Schaltet die Sammlung von Informationen über den aktuell ausgeführten Befehl jeder Sitzung ein, einschließlich der Zeit, and dem die Befehlsausführung begann." -#: utils/misc/guc.c:1575 +#: utils/misc/guc.c:1576 msgid "Collects statistics on database activity." msgstr "Sammelt Statistiken über Datenbankaktivität." -#: utils/misc/guc.c:1584 +#: utils/misc/guc.c:1585 msgid "Collects timing statistics for database I/O activity." msgstr "Sammelt Zeitmessungsstatistiken über Datenbank-I/O-Aktivität." -#: utils/misc/guc.c:1593 +#: utils/misc/guc.c:1594 msgid "Collects timing statistics for WAL I/O activity." msgstr "Sammelt Zeitmessungsstatistiken über WAL-I/O-Aktivität." -#: utils/misc/guc.c:1603 +#: utils/misc/guc.c:1604 msgid "Updates the process title to show the active SQL command." msgstr "Der Prozesstitel wird aktualisiert, um den aktuellen SQL-Befehl anzuzeigen." -#: utils/misc/guc.c:1604 +#: utils/misc/guc.c:1605 msgid "Enables updating of the process title every time a new SQL command is received by the server." msgstr "Ermöglicht das Aktualisieren des Prozesstitels bei jedem von Server empfangenen neuen SQL-Befehl." -#: utils/misc/guc.c:1617 +#: utils/misc/guc.c:1618 msgid "Starts the autovacuum subprocess." msgstr "Startet den Autovacuum-Prozess." -#: utils/misc/guc.c:1627 +#: utils/misc/guc.c:1628 msgid "Generates debugging output for LISTEN and NOTIFY." msgstr "Erzeugt Debug-Ausgabe für LISTEN und NOTIFY." -#: utils/misc/guc.c:1639 +#: utils/misc/guc.c:1640 msgid "Emits information about lock usage." msgstr "Gibt Informationen über Sperrenverwendung aus." -#: utils/misc/guc.c:1649 +#: utils/misc/guc.c:1650 msgid "Emits information about user lock usage." msgstr "Gibt Informationen über Benutzersperrenverwendung aus." -#: utils/misc/guc.c:1659 +#: utils/misc/guc.c:1660 msgid "Emits information about lightweight lock usage." msgstr "Gibt Informationen über die Verwendung von Lightweight Locks aus." -#: utils/misc/guc.c:1669 +#: utils/misc/guc.c:1670 msgid "Dumps information about all current locks when a deadlock timeout occurs." msgstr "Gibt Informationen über alle aktuellen Sperren aus, wenn eine Verklemmung auftritt." -#: utils/misc/guc.c:1681 +#: utils/misc/guc.c:1682 msgid "Logs long lock waits." msgstr "Schreibt Meldungen über langes Warten auf Sperren in den Log." -#: utils/misc/guc.c:1690 +#: utils/misc/guc.c:1691 msgid "Logs standby recovery conflict waits." msgstr "Schreibt Meldungen über Warten wegen Konflikten bei Wiederherstellung in den Log." -#: utils/misc/guc.c:1699 +#: utils/misc/guc.c:1700 msgid "Logs the host name in the connection logs." msgstr "Schreibt den Hostnamen jeder Verbindung in den Log." -#: utils/misc/guc.c:1700 +#: utils/misc/guc.c:1701 msgid "By default, connection logs only show the IP address of the connecting host. If you want them to show the host name you can turn this on, but depending on your host name resolution setup it might impose a non-negligible performance penalty." msgstr "In der Standardeinstellung zeigen die Verbindungslogs nur die IP-Adresse der Clienthosts. Wenn Sie den Hostnamen auch anzeigen wollen, dann können Sie diese Option anschalten, aber je nachdem, wie Ihr DNS eingerichtet ist, kann das die Leistung nicht unerheblich beeinträchtigen." -#: utils/misc/guc.c:1711 +#: utils/misc/guc.c:1712 msgid "Treats \"expr=NULL\" as \"expr IS NULL\"." msgstr "Behandelt »ausdruck=NULL« als »ausdruck IS NULL«." -#: utils/misc/guc.c:1712 +#: utils/misc/guc.c:1713 msgid "When turned on, expressions of the form expr = NULL (or NULL = expr) are treated as expr IS NULL, that is, they return true if expr evaluates to the null value, and false otherwise. The correct behavior of expr = NULL is to always return null (unknown)." msgstr "Wenn an, dann werden Ausdrücke der Form ausdruck = NULL (oder NULL = ausdruck) wie ausdruck IS NULL behandelt, das heißt, sie ergeben wahr, wenn das Ergebnis von ausdruck der NULL-Wert ist, und ansonsten falsch. Das korrekte Verhalten von ausdruck = NULL ist immer den NULL-Wert (für unbekannt) zurückzugeben." -#: utils/misc/guc.c:1724 +#: utils/misc/guc.c:1725 msgid "Enables per-database user names." msgstr "Ermöglicht Datenbank-lokale Benutzernamen." -#: utils/misc/guc.c:1733 +#: utils/misc/guc.c:1734 msgid "Sets the default read-only status of new transactions." msgstr "Setzt den Standardwert für die Read-Only-Einstellung einer neuen Transaktion." -#: utils/misc/guc.c:1743 +#: utils/misc/guc.c:1744 msgid "Sets the current transaction's read-only status." msgstr "Setzt die Read-Only-Einstellung der aktuellen Transaktion." -#: utils/misc/guc.c:1753 +#: utils/misc/guc.c:1754 msgid "Sets the default deferrable status of new transactions." msgstr "Setzt den Standardwert für die Deferrable-Einstellung einer neuen Transaktion." -#: utils/misc/guc.c:1762 +#: utils/misc/guc.c:1763 msgid "Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures." msgstr "Ob eine serialisierbare Read-Only-Transaktion aufgeschoben werden soll, bis sie ohne mögliche Serialisierungsfehler ausgeführt werden kann." -#: utils/misc/guc.c:1772 +#: utils/misc/guc.c:1773 msgid "Enable row security." msgstr "Schaltet Sicherheit auf Zeilenebene ein." -#: utils/misc/guc.c:1773 +#: utils/misc/guc.c:1774 msgid "When enabled, row security will be applied to all users." msgstr "Wenn eingeschaltet, wird Sicherheit auf Zeilenebene auf alle Benutzer angewendet." -#: utils/misc/guc.c:1781 +#: utils/misc/guc.c:1782 msgid "Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE." msgstr "Prüft Funktionskörper bei der Ausführung von CREATE FUNCTION und CREATE PROCEDURE." -#: utils/misc/guc.c:1790 +#: utils/misc/guc.c:1791 msgid "Enable input of NULL elements in arrays." msgstr "Ermöglicht die Eingabe von NULL-Elementen in Arrays." -#: utils/misc/guc.c:1791 +#: utils/misc/guc.c:1792 msgid "When turned on, unquoted NULL in an array input value means a null value; otherwise it is taken literally." msgstr "Wenn dies eingeschaltet ist, wird ein nicht gequotetes NULL in einem Array-Eingabewert als NULL-Wert interpretiert, ansonsten als Zeichenkette." -#: utils/misc/guc.c:1807 +#: utils/misc/guc.c:1808 msgid "WITH OIDS is no longer supported; this can only be false." msgstr "WITH OIDS wird nicht mehr unterstützt; kann nur auf falsch gesetzt werden." -#: utils/misc/guc.c:1817 +#: utils/misc/guc.c:1818 msgid "Start a subprocess to capture stderr output and/or csvlogs into log files." msgstr "Startet einen Subprozess, um die Stderr-Ausgabe und/oder CSV-Logs in Logdateien auszugeben." -#: utils/misc/guc.c:1826 +#: utils/misc/guc.c:1827 msgid "Truncate existing log files of same name during log rotation." msgstr "Kürzt existierende Logdateien mit dem selben Namen beim Rotieren." -#: utils/misc/guc.c:1837 +#: utils/misc/guc.c:1838 msgid "Emit information about resource usage in sorting." msgstr "Gibt Informationen über die Ressourcenverwendung beim Sortieren aus." -#: utils/misc/guc.c:1851 +#: utils/misc/guc.c:1852 msgid "Generate debugging output for synchronized scanning." msgstr "Erzeugt Debug-Ausgabe für synchronisiertes Scannen." -#: utils/misc/guc.c:1866 +#: utils/misc/guc.c:1867 msgid "Enable bounded sorting using heap sort." msgstr "Ermöglicht Bounded Sorting mittels Heap-Sort." -#: utils/misc/guc.c:1879 +#: utils/misc/guc.c:1880 msgid "Emit WAL-related debugging output." msgstr "Gibt diverse Debug-Meldungen über WAL aus." -#: utils/misc/guc.c:1891 +#: utils/misc/guc.c:1892 msgid "Shows whether datetimes are integer based." msgstr "Zeigt ob Datum/Zeit intern ganze Zahlen verwendet." -#: utils/misc/guc.c:1902 +#: utils/misc/guc.c:1903 msgid "Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive." msgstr "Bestimmt, ob Groß-/Kleinschreibung bei Kerberos- und GSSAPI-Benutzernamen ignoriert werden soll." -#: utils/misc/guc.c:1912 +#: utils/misc/guc.c:1913 msgid "Warn about backslash escapes in ordinary string literals." msgstr "Warnt bei Backslash-Escapes in normalen Zeichenkettenkonstanten." -#: utils/misc/guc.c:1922 +#: utils/misc/guc.c:1923 msgid "Causes '...' strings to treat backslashes literally." msgstr "Bewirkt, dass Zeichenketten der Art '...' Backslashes als normales Zeichen behandeln." -#: utils/misc/guc.c:1933 +#: utils/misc/guc.c:1934 msgid "Enable synchronized sequential scans." msgstr "Ermöglicht synchronisierte sequenzielle Scans." -#: utils/misc/guc.c:1943 +#: utils/misc/guc.c:1944 msgid "Sets whether to include or exclude transaction with recovery target." msgstr "Setzt ob die Transaktion mit dem Wiederherstellungsziel einbezogen oder ausgeschlossen wird." -#: utils/misc/guc.c:1953 +#: utils/misc/guc.c:1954 msgid "Allows connections and queries during recovery." msgstr "Erlaubt Verbindungen und Anfragen während der Wiederherstellung." -#: utils/misc/guc.c:1963 +#: utils/misc/guc.c:1964 msgid "Allows feedback from a hot standby to the primary that will avoid query conflicts." msgstr "Erlaubt Rückmeldungen von einem Hot Standby an den Primärserver, um Anfragekonflikte zu vermeiden." -#: utils/misc/guc.c:1973 +#: utils/misc/guc.c:1974 msgid "Shows whether hot standby is currently active." msgstr "Zeigt, ob Hot Standby aktuell aktiv ist." -#: utils/misc/guc.c:1984 +#: utils/misc/guc.c:1985 msgid "Allows modifications of the structure of system tables." msgstr "Erlaubt Änderungen an der Struktur von Systemtabellen." -#: utils/misc/guc.c:1995 +#: utils/misc/guc.c:1996 msgid "Disables reading from system indexes." msgstr "Schaltet das Lesen aus Systemindexen ab." -#: utils/misc/guc.c:1996 +#: utils/misc/guc.c:1997 msgid "It does not prevent updating the indexes, so it is safe to use. The worst consequence is slowness." msgstr "Das Aktualisieren der Indexe wird nicht verhindert, also ist die Verwendung unbedenklich. Schlimmstenfalls wird alles langsamer." -#: utils/misc/guc.c:2007 +#: utils/misc/guc.c:2008 msgid "Allows tablespaces directly inside pg_tblspc, for testing." msgstr "Erlaubt Tablespaces direkt in pg_tblspc, zum Testen." -#: utils/misc/guc.c:2018 +#: utils/misc/guc.c:2019 msgid "Enables backward compatibility mode for privilege checks on large objects." msgstr "Schaltet den rückwärtskompatiblen Modus für Privilegienprüfungen bei Large Objects ein." -#: utils/misc/guc.c:2019 +#: utils/misc/guc.c:2020 msgid "Skips privilege checks when reading or modifying large objects, for compatibility with PostgreSQL releases prior to 9.0." msgstr "Überspringt Privilegienprüfungen beim Lesen oder Ändern von Large Objects, zur Kompatibilität mit PostgreSQL-Versionen vor 9.0." -#: utils/misc/guc.c:2029 +#: utils/misc/guc.c:2030 msgid "When generating SQL fragments, quote all identifiers." msgstr "Wenn SQL-Fragmente erzeugt werden, alle Bezeichner quoten." -#: utils/misc/guc.c:2039 +#: utils/misc/guc.c:2040 msgid "Shows whether data checksums are turned on for this cluster." msgstr "Zeigt, ob Datenprüfsummen in diesem Cluster angeschaltet sind." -#: utils/misc/guc.c:2050 +#: utils/misc/guc.c:2051 msgid "Add sequence number to syslog messages to avoid duplicate suppression." msgstr "Syslog-Nachrichten mit Sequenznummern versehen, um Unterdrückung doppelter Nachrichten zu unterbinden." -#: utils/misc/guc.c:2060 +#: utils/misc/guc.c:2061 msgid "Split messages sent to syslog by lines and to fit into 1024 bytes." msgstr "An Syslog gesendete Nachrichten nach Zeilen und in maximal 1024 Bytes aufteilen." -#: utils/misc/guc.c:2070 +#: utils/misc/guc.c:2071 msgid "Controls whether Gather and Gather Merge also run subplans." msgstr "Kontrolliert, ob Gather und Gather Merge auch Subpläne ausführen." -#: utils/misc/guc.c:2071 +#: utils/misc/guc.c:2072 msgid "Should gather nodes also run subplans or just gather tuples?" msgstr "Sollen Gather-Knoten auch Subpläne ausführen oder nur Tupel sammeln?" -#: utils/misc/guc.c:2081 +#: utils/misc/guc.c:2082 msgid "Allow JIT compilation." msgstr "Erlaubt JIT-Kompilierung." -#: utils/misc/guc.c:2092 +#: utils/misc/guc.c:2093 msgid "Register JIT-compiled functions with debugger." msgstr "JIT-kompilierte Funktionen im Debugger registrieren." -#: utils/misc/guc.c:2109 +#: utils/misc/guc.c:2110 msgid "Write out LLVM bitcode to facilitate JIT debugging." msgstr "LLVM-Bitcode in Dateien schreiben, um Debuggen von JIT zu erleichtern." -#: utils/misc/guc.c:2120 +#: utils/misc/guc.c:2121 msgid "Allow JIT compilation of expressions." msgstr "Erlaubt JIT-Kompilierung von Ausdrücken." -#: utils/misc/guc.c:2131 +#: utils/misc/guc.c:2132 msgid "Register JIT-compiled functions with perf profiler." msgstr "JIT-kompilierte Funktionen im Profiler perf registrieren." -#: utils/misc/guc.c:2148 +#: utils/misc/guc.c:2149 msgid "Allow JIT compilation of tuple deforming." msgstr "Erlaubt JIT-Kompilierung von Tuple-Deforming." -#: utils/misc/guc.c:2159 +#: utils/misc/guc.c:2160 msgid "Whether to continue running after a failure to sync data files." msgstr "Ob nach fehlgeschlagenem Synchronisieren von Datendateien fortgesetzt werden soll." -#: utils/misc/guc.c:2168 +#: utils/misc/guc.c:2169 msgid "Sets whether a WAL receiver should create a temporary replication slot if no permanent slot is configured." msgstr "Bestimmt, ob der WAL-Receiver einen temporären Replikations-Slot erzeugen soll, wenn kein permanenter Slot konfiguriert ist." -#: utils/misc/guc.c:2186 +#: utils/misc/guc.c:2187 msgid "Sets the amount of time to wait before forcing a switch to the next WAL file." msgstr "Setzt die Zeit, die gewartet wird, bevor ein Umschalten auf die nächste WAL-Datei erzwungen wird." -#: utils/misc/guc.c:2197 +#: utils/misc/guc.c:2198 msgid "Sets the amount of time to wait after authentication on connection startup." msgstr "Setzt die Zeit, die nach der Authentifizierung beim Verbindungsstart gewartet wird." -#: utils/misc/guc.c:2199 utils/misc/guc.c:2820 +#: utils/misc/guc.c:2200 utils/misc/guc.c:2821 msgid "This allows attaching a debugger to the process." msgstr "Das ermöglicht es, einen Debugger in den Prozess einzuhängen." -#: utils/misc/guc.c:2208 +#: utils/misc/guc.c:2209 msgid "Sets the default statistics target." msgstr "Setzt das voreingestellte Statistikziel." -#: utils/misc/guc.c:2209 +#: utils/misc/guc.c:2210 msgid "This applies to table columns that have not had a column-specific target set via ALTER TABLE SET STATISTICS." msgstr "Diese Einstellung gilt für Tabellenspalten, für die kein spaltenspezifisches Ziel mit ALTER TABLE SET STATISTICS gesetzt worden ist." -#: utils/misc/guc.c:2218 +#: utils/misc/guc.c:2219 msgid "Sets the FROM-list size beyond which subqueries are not collapsed." msgstr "Setzt die Größe der FROM-Liste, ab der Unteranfragen nicht kollabiert werden." -#: utils/misc/guc.c:2220 +#: utils/misc/guc.c:2221 msgid "The planner will merge subqueries into upper queries if the resulting FROM list would have no more than this many items." msgstr "Der Planer bindet Unteranfragen in die übergeordneten Anfragen ein, wenn die daraus resultierende FROM-Liste nicht mehr als so viele Elemente haben würde." -#: utils/misc/guc.c:2231 +#: utils/misc/guc.c:2232 msgid "Sets the FROM-list size beyond which JOIN constructs are not flattened." msgstr "Setzt die Größe der FROM-Liste, ab der JOIN-Konstrukte nicht aufgelöst werden." -#: utils/misc/guc.c:2233 +#: utils/misc/guc.c:2234 msgid "The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result." msgstr "Der Planer löst ausdrückliche JOIN-Konstrukte in FROM-Listen auf, wenn die daraus resultierende FROM-Liste nicht mehr als so viele Elemente haben würde." -#: utils/misc/guc.c:2244 +#: utils/misc/guc.c:2245 msgid "Sets the threshold of FROM items beyond which GEQO is used." msgstr "Setzt die Anzahl der Elemente in der FROM-Liste, ab der GEQO verwendet wird." -#: utils/misc/guc.c:2254 +#: utils/misc/guc.c:2255 msgid "GEQO: effort is used to set the default for other GEQO parameters." msgstr "GEQO: wird für die Berechnung der Vorgabewerte anderer GEQO-Parameter verwendet." -#: utils/misc/guc.c:2264 +#: utils/misc/guc.c:2265 msgid "GEQO: number of individuals in the population." msgstr "GEQO: Anzahl der Individien in der Bevölkerung." -#: utils/misc/guc.c:2265 utils/misc/guc.c:2275 +#: utils/misc/guc.c:2266 utils/misc/guc.c:2276 msgid "Zero selects a suitable default value." msgstr "Null wählt einen passenden Vorgabewert." -#: utils/misc/guc.c:2274 +#: utils/misc/guc.c:2275 msgid "GEQO: number of iterations of the algorithm." msgstr "GEQO: Anzahl der Iterationen im Algorithmus." -#: utils/misc/guc.c:2286 +#: utils/misc/guc.c:2287 msgid "Sets the time to wait on a lock before checking for deadlock." msgstr "Setzt die Zeit, die gewartet wird, bis auf Verklemmung geprüft wird." -#: utils/misc/guc.c:2297 +#: utils/misc/guc.c:2298 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data." msgstr "Setzt die maximale Verzögerung bevor Anfragen storniert werden, wenn ein Hot-Standby-Server archivierte WAL-Daten verarbeitet." -#: utils/misc/guc.c:2308 +#: utils/misc/guc.c:2309 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data." msgstr "Setzt die maximale Verzögerung bevor Anfragen storniert werden, wenn ein Hot-Standby-Server gestreamte WAL-Daten verarbeitet." -#: utils/misc/guc.c:2319 +#: utils/misc/guc.c:2320 msgid "Sets the minimum delay for applying changes during recovery." msgstr "Setzt die minimale Verzögerung für das Einspielen von Änderungen während der Wiederherstellung." -#: utils/misc/guc.c:2330 +#: utils/misc/guc.c:2331 msgid "Sets the maximum interval between WAL receiver status reports to the sending server." msgstr "Setzt das maximale Intervall zwischen Statusberichten des WAL-Receivers an den sendenden Server." -#: utils/misc/guc.c:2341 +#: utils/misc/guc.c:2342 msgid "Sets the maximum wait time to receive data from the sending server." msgstr "Setzt die maximale Zeit, um auf den Empfang von Daten vom sendenden Server zu warten." -#: utils/misc/guc.c:2352 +#: utils/misc/guc.c:2353 msgid "Sets the maximum number of concurrent connections." msgstr "Setzt die maximale Anzahl gleichzeitiger Verbindungen." -#: utils/misc/guc.c:2363 +#: utils/misc/guc.c:2364 msgid "Sets the number of connection slots reserved for superusers." msgstr "Setzt die Anzahl der für Superuser reservierten Verbindungen." -#: utils/misc/guc.c:2373 +#: utils/misc/guc.c:2374 msgid "Amount of dynamic shared memory reserved at startup." msgstr "Menge des beim Start reservierten dynamischen Shared Memory." -#: utils/misc/guc.c:2388 +#: utils/misc/guc.c:2389 msgid "Sets the number of shared memory buffers used by the server." msgstr "Setzt die Anzahl der vom Server verwendeten Shared-Memory-Puffer." -#: utils/misc/guc.c:2399 +#: utils/misc/guc.c:2400 msgid "Shows the size of the server's main shared memory area (rounded up to the nearest MB)." msgstr "Zeigt die Größe des primären Shared-Memory-Bereichs des Servers (aufgerundet zum nächsten MB)." -#: utils/misc/guc.c:2410 +#: utils/misc/guc.c:2411 msgid "Shows the number of huge pages needed for the main shared memory area." msgstr "Zeigt die Anzahl der Huge Pages, die für den primären Shared-Memory-Bereich benötigt werden." -#: utils/misc/guc.c:2411 +#: utils/misc/guc.c:2412 msgid "-1 indicates that the value could not be determined." msgstr "-1 zeigt an, dass der Wert nicht ermittelt werden konnte." -#: utils/misc/guc.c:2421 +#: utils/misc/guc.c:2422 msgid "Sets the maximum number of temporary buffers used by each session." msgstr "Setzt die maximale Anzahl der von jeder Sitzung verwendeten temporären Puffer." -#: utils/misc/guc.c:2432 +#: utils/misc/guc.c:2433 msgid "Sets the TCP port the server listens on." msgstr "Setzt den TCP-Port, auf dem der Server auf Verbindungen wartet." -#: utils/misc/guc.c:2442 +#: utils/misc/guc.c:2443 msgid "Sets the access permissions of the Unix-domain socket." msgstr "Setzt die Zugriffsrechte für die Unix-Domain-Socket." -#: utils/misc/guc.c:2443 +#: utils/misc/guc.c:2444 msgid "Unix-domain sockets use the usual Unix file system permission set. The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Unix-Domain-Sockets verwenden die üblichen Zugriffsrechte für Unix-Dateisysteme. Der Wert dieser Option muss ein numerischer Wert in der von den Systemaufrufen chmod und umask verwendeten Form sein. (Um das gebräuchliche Oktalformat zu verwenden, muss die Zahl mit 0 (einer Null) anfangen.)" -#: utils/misc/guc.c:2457 +#: utils/misc/guc.c:2458 msgid "Sets the file permissions for log files." msgstr "Setzt die Dateizugriffsrechte für Logdateien." -#: utils/misc/guc.c:2458 +#: utils/misc/guc.c:2459 msgid "The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Der Wert dieser Option muss ein numerischer Wert in der von den Systemaufrufen chmod und umask verwendeten Form sein. (Um das gebräuchliche Oktalformat zu verwenden, muss die Zahl mit 0 (einer Null) anfangen.)" -#: utils/misc/guc.c:2472 +#: utils/misc/guc.c:2473 msgid "Shows the mode of the data directory." msgstr "Zeigt die Zugriffsrechte des Datenverzeichnisses." -#: utils/misc/guc.c:2473 +#: utils/misc/guc.c:2474 msgid "The parameter value is a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Der Wert dieser Option muss ein numerischer Wert in der von den Systemaufrufen chmod und umask verwendeten Form sein. (Um das gebräuchliche Oktalformat zu verwenden, muss die Zahl mit 0 (einer Null) anfangen.)" -#: utils/misc/guc.c:2486 +#: utils/misc/guc.c:2487 msgid "Sets the maximum memory to be used for query workspaces." msgstr "Setzt die maximale Speichergröße für Anfrage-Arbeitsbereiche." -#: utils/misc/guc.c:2487 +#: utils/misc/guc.c:2488 msgid "This much memory can be used by each internal sort operation and hash table before switching to temporary disk files." msgstr "Gibt die Speichermenge an, die für interne Sortiervorgänge und Hashtabellen verwendet werden kann, bevor auf temporäre Dateien umgeschaltet wird." -#: utils/misc/guc.c:2499 +#: utils/misc/guc.c:2500 msgid "Sets the maximum memory to be used for maintenance operations." msgstr "Setzt die maximale Speichergröße für Wartungsoperationen." -#: utils/misc/guc.c:2500 +#: utils/misc/guc.c:2501 msgid "This includes operations such as VACUUM and CREATE INDEX." msgstr "Das schließt Operationen wie VACUUM und CREATE INDEX ein." -#: utils/misc/guc.c:2510 +#: utils/misc/guc.c:2511 msgid "Sets the maximum memory to be used for logical decoding." msgstr "Setzt die maximale Speichergröße für logische Dekodierung." -#: utils/misc/guc.c:2511 +#: utils/misc/guc.c:2512 msgid "This much memory can be used by each internal reorder buffer before spilling to disk." msgstr "Gibt die Speichermenge an, die für jeden internen Reorder-Puffer verwendet werden kann, bevor auf Festplatte ausgelagert wird." -#: utils/misc/guc.c:2527 +#: utils/misc/guc.c:2528 msgid "Sets the maximum stack depth, in kilobytes." msgstr "Setzt die maximale Stackgröße, in Kilobytes." -#: utils/misc/guc.c:2538 +#: utils/misc/guc.c:2539 msgid "Limits the total size of all temporary files used by each process." msgstr "Beschränkt die Gesamtgröße aller temporären Dateien, die von einem Prozess verwendet werden." -#: utils/misc/guc.c:2539 +#: utils/misc/guc.c:2540 msgid "-1 means no limit." msgstr "-1 bedeutet keine Grenze." -#: utils/misc/guc.c:2549 +#: utils/misc/guc.c:2550 msgid "Vacuum cost for a page found in the buffer cache." msgstr "Vacuum-Kosten für eine im Puffer-Cache gefundene Seite." -#: utils/misc/guc.c:2559 +#: utils/misc/guc.c:2560 msgid "Vacuum cost for a page not found in the buffer cache." msgstr "Vacuum-Kosten für eine nicht im Puffer-Cache gefundene Seite." -#: utils/misc/guc.c:2569 +#: utils/misc/guc.c:2570 msgid "Vacuum cost for a page dirtied by vacuum." msgstr "Vacuum-Kosten für eine durch Vacuum schmutzig gemachte Seite." -#: utils/misc/guc.c:2579 +#: utils/misc/guc.c:2580 msgid "Vacuum cost amount available before napping." msgstr "Verfügbare Vacuum-Kosten vor Nickerchen." -#: utils/misc/guc.c:2589 +#: utils/misc/guc.c:2590 msgid "Vacuum cost amount available before napping, for autovacuum." msgstr "Verfügbare Vacuum-Kosten vor Nickerchen, für Autovacuum." -#: utils/misc/guc.c:2599 +#: utils/misc/guc.c:2600 msgid "Sets the maximum number of simultaneously open files for each server process." msgstr "Setzt die maximale Zahl gleichzeitig geöffneter Dateien für jeden Serverprozess." -#: utils/misc/guc.c:2612 +#: utils/misc/guc.c:2613 msgid "Sets the maximum number of simultaneously prepared transactions." msgstr "Setzt die maximale Anzahl von gleichzeitig vorbereiteten Transaktionen." -#: utils/misc/guc.c:2623 +#: utils/misc/guc.c:2624 msgid "Sets the minimum OID of tables for tracking locks." msgstr "Setzt die minimale Tabellen-OID für das Verfolgen von Sperren." -#: utils/misc/guc.c:2624 +#: utils/misc/guc.c:2625 msgid "Is used to avoid output on system tables." msgstr "Wird verwendet, um Ausgabe für Systemtabellen zu vermeiden." -#: utils/misc/guc.c:2633 +#: utils/misc/guc.c:2634 msgid "Sets the OID of the table with unconditionally lock tracing." msgstr "Setzt die OID der Tabelle mit bedingungsloser Sperrenverfolgung." -#: utils/misc/guc.c:2645 +#: utils/misc/guc.c:2646 msgid "Sets the maximum allowed duration of any statement." msgstr "Setzt die maximal erlaubte Dauer jeder Anweisung." -#: utils/misc/guc.c:2646 utils/misc/guc.c:2657 utils/misc/guc.c:2668 -#: utils/misc/guc.c:2679 +#: utils/misc/guc.c:2647 utils/misc/guc.c:2658 utils/misc/guc.c:2669 +#: utils/misc/guc.c:2680 msgid "A value of 0 turns off the timeout." msgstr "Der Wert 0 schaltet die Zeitprüfung aus." -#: utils/misc/guc.c:2656 +#: utils/misc/guc.c:2657 msgid "Sets the maximum allowed duration of any wait for a lock." msgstr "Setzt die maximal erlaubte Dauer, um auf eine Sperre zu warten." -#: utils/misc/guc.c:2667 +#: utils/misc/guc.c:2668 msgid "Sets the maximum allowed idle time between queries, when in a transaction." msgstr "Setzt die maximal erlaubte inaktive Zeit zwischen Anfragen, wenn in einer Transaktion." -#: utils/misc/guc.c:2678 +#: utils/misc/guc.c:2679 msgid "Sets the maximum allowed idle time between queries, when not in a transaction." msgstr "Setzt die maximal erlaubte inaktive Zeit zwischen Anfragen, wenn nicht in einer Transaktion." -#: utils/misc/guc.c:2689 +#: utils/misc/guc.c:2690 msgid "Minimum age at which VACUUM should freeze a table row." msgstr "Mindestalter, bei dem VACUUM eine Tabellenzeile einfrieren soll." -#: utils/misc/guc.c:2699 +#: utils/misc/guc.c:2700 msgid "Age at which VACUUM should scan whole table to freeze tuples." msgstr "Alter, bei dem VACUUM die ganze Tabelle durchsuchen soll, um Zeilen einzufrieren." -#: utils/misc/guc.c:2709 +#: utils/misc/guc.c:2710 msgid "Minimum age at which VACUUM should freeze a MultiXactId in a table row." msgstr "Mindestalter, bei dem VACUUM eine MultiXactId in einer Tabellenzeile einfrieren soll." -#: utils/misc/guc.c:2719 +#: utils/misc/guc.c:2720 msgid "Multixact age at which VACUUM should scan whole table to freeze tuples." msgstr "Multixact-Alter, bei dem VACUUM die ganze Tabelle durchsuchen soll, um Zeilen einzufrieren." -#: utils/misc/guc.c:2729 +#: utils/misc/guc.c:2730 msgid "Number of transactions by which VACUUM and HOT cleanup should be deferred, if any." msgstr "Anzahl Transaktionen, um die VACUUM- und HOT-Aufräumen aufgeschoben werden soll." -#: utils/misc/guc.c:2738 +#: utils/misc/guc.c:2739 msgid "Age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Alter, bei dem VACUUM die Ausfallsicherung auslösen soll, um Ausfall wegen Transaktionsnummernüberlauf zu verhindern." -#: utils/misc/guc.c:2747 +#: utils/misc/guc.c:2748 msgid "Multixact age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Multixact-Alter, bei dem VACUUM die Ausfallsicherung auslösen soll, um Ausfall wegen Transaktionsnummernüberlauf zu verhindern." -#: utils/misc/guc.c:2760 +#: utils/misc/guc.c:2761 msgid "Sets the maximum number of locks per transaction." msgstr "Setzt die maximale Anzahl Sperren pro Transaktion." -#: utils/misc/guc.c:2761 +#: utils/misc/guc.c:2762 msgid "The shared lock table is sized on the assumption that at most max_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "Die globale Sperrentabelle wird mit der Annahme angelegt, das höchstens max_locks_per_transaction * max_connections verschiedene Objekte gleichzeitig gesperrt werden müssen." -#: utils/misc/guc.c:2772 +#: utils/misc/guc.c:2773 msgid "Sets the maximum number of predicate locks per transaction." msgstr "Setzt die maximale Anzahl Prädikatsperren pro Transaktion." -#: utils/misc/guc.c:2773 +#: utils/misc/guc.c:2774 msgid "The shared predicate lock table is sized on the assumption that at most max_pred_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "Die globale Prädikatsperrentabelle wird mit der Annahme angelegt, das höchstens max_pred_locks_per_transaction * max_connections verschiedene Objekte gleichzeitig gesperrt werden müssen." -#: utils/misc/guc.c:2784 +#: utils/misc/guc.c:2785 msgid "Sets the maximum number of predicate-locked pages and tuples per relation." msgstr "Setzt die maximale Anzahl Prädikatsperren für Seiten und Tupel pro Relation." -#: utils/misc/guc.c:2785 +#: utils/misc/guc.c:2786 msgid "If more than this total of pages and tuples in the same relation are locked by a connection, those locks are replaced by a relation-level lock." msgstr "Wenn mehr als diese Gesamtzahl Seiten und Tupel in der selben Relation von einer Verbindung gesperrt sind, werden diese Sperren durch eine Sperre auf Relationsebene ersetzt." -#: utils/misc/guc.c:2795 +#: utils/misc/guc.c:2796 msgid "Sets the maximum number of predicate-locked tuples per page." msgstr "Setzt die maximale Anzahl Prädikatsperren für Tupel pro Seite." -#: utils/misc/guc.c:2796 +#: utils/misc/guc.c:2797 msgid "If more than this number of tuples on the same page are locked by a connection, those locks are replaced by a page-level lock." msgstr "Wenn mehr als diese Anzahl Tupel auf der selben Seite von einer Verbindung gesperrt sind, werden diese Sperren durch eine Sperre auf Seitenebene ersetzt." -#: utils/misc/guc.c:2806 +#: utils/misc/guc.c:2807 msgid "Sets the maximum allowed time to complete client authentication." msgstr "Setzt die maximale Zeit, um die Client-Authentifizierung zu beenden." -#: utils/misc/guc.c:2818 +#: utils/misc/guc.c:2819 msgid "Sets the amount of time to wait before authentication on connection startup." msgstr "Setzt die Zeit, die vor der Authentifizierung beim Verbindungsstart gewartet wird." -#: utils/misc/guc.c:2830 +#: utils/misc/guc.c:2831 msgid "Buffer size for reading ahead in the WAL during recovery." msgstr "Puffergröße für WAL-Read-Ahead während der Wiederherstellung." -#: utils/misc/guc.c:2831 +#: utils/misc/guc.c:2832 msgid "Maximum distance to read ahead in the WAL to prefetch referenced data blocks." msgstr "Maximale Entfernung, die im WAL vorausgelesen wird, um Datenblöcke, auf die verwiesen wird, vorab einzulesen." -#: utils/misc/guc.c:2841 +#: utils/misc/guc.c:2842 msgid "Sets the size of WAL files held for standby servers." msgstr "Setzt die Größe der für Standby-Server vorgehaltenen WAL-Dateien." -#: utils/misc/guc.c:2852 +#: utils/misc/guc.c:2853 msgid "Sets the minimum size to shrink the WAL to." msgstr "Setzt die minimale Größe, auf die der WAL geschrumpft wird." -#: utils/misc/guc.c:2864 +#: utils/misc/guc.c:2865 msgid "Sets the WAL size that triggers a checkpoint." msgstr "Setzt die WAL-Größe, die einen Checkpoint auslöst." -#: utils/misc/guc.c:2876 +#: utils/misc/guc.c:2877 msgid "Sets the maximum time between automatic WAL checkpoints." msgstr "Setzt die maximale Zeit zwischen automatischen WAL-Checkpoints." -#: utils/misc/guc.c:2887 +#: utils/misc/guc.c:2888 msgid "Sets the maximum time before warning if checkpoints triggered by WAL volume happen too frequently." msgstr "Setzt die maximale Zeit, bevor gewarnt wird, wenn durch WAL-Volumen ausgelöste Checkpoints zu häufig passieren." -#: utils/misc/guc.c:2889 +#: utils/misc/guc.c:2890 msgid "Write a message to the server log if checkpoints caused by the filling of WAL segment files happen more frequently than this amount of time. Zero turns off the warning." msgstr "Schreibe Meldung in den Serverlog, wenn Checkpoints, die durch Füllen der WAL-Segmentdateien ausgelöst werden, häufiger als dieser Zeitraum passieren. Null schaltet die Warnung ab." -#: utils/misc/guc.c:2902 utils/misc/guc.c:3120 utils/misc/guc.c:3168 +#: utils/misc/guc.c:2903 utils/misc/guc.c:3121 utils/misc/guc.c:3169 msgid "Number of pages after which previously performed writes are flushed to disk." msgstr "Anzahl der Seiten, nach denen getätigte Schreibvorgänge auf die Festplatte zurückgeschrieben werden." -#: utils/misc/guc.c:2913 +#: utils/misc/guc.c:2914 msgid "Sets the number of disk-page buffers in shared memory for WAL." msgstr "Setzt die Anzahl Diskseitenpuffer für WAL im Shared Memory." -#: utils/misc/guc.c:2924 +#: utils/misc/guc.c:2925 msgid "Time between WAL flushes performed in the WAL writer." msgstr "Zeit zwischen WAL-Flush-Operationen im WAL-Writer." -#: utils/misc/guc.c:2935 +#: utils/misc/guc.c:2936 msgid "Amount of WAL written out by WAL writer that triggers a flush." msgstr "Ein Flush wird ausgelöst, wenn diese Menge WAL vom WAL-Writer geschrieben worden ist." -#: utils/misc/guc.c:2946 +#: utils/misc/guc.c:2947 msgid "Minimum size of new file to fsync instead of writing WAL." msgstr "Mindestgröße ab der neue Datei gefsynct wird statt WAL zu schreiben." -#: utils/misc/guc.c:2957 +#: utils/misc/guc.c:2958 msgid "Sets the maximum number of simultaneously running WAL sender processes." msgstr "Setzt die maximale Anzahl gleichzeitig laufender WAL-Sender-Prozesse." -#: utils/misc/guc.c:2968 +#: utils/misc/guc.c:2969 msgid "Sets the maximum number of simultaneously defined replication slots." msgstr "Setzt die maximale Anzahl von gleichzeitig definierten Replikations-Slots." -#: utils/misc/guc.c:2978 +#: utils/misc/guc.c:2979 msgid "Sets the maximum WAL size that can be reserved by replication slots." msgstr "Setzt die maximale WAL-Größe, die von Replikations-Slots reserviert werden kann." -#: utils/misc/guc.c:2979 +#: utils/misc/guc.c:2980 msgid "Replication slots will be marked as failed, and segments released for deletion or recycling, if this much space is occupied by WAL on disk." msgstr "Replikations-Slots werden als fehlgeschlagen markiert, und Segmente zum Löschen oder Wiederverwenden freigegeben, wenn so viel Platz von WAL auf der Festplatte belegt wird." -#: utils/misc/guc.c:2991 +#: utils/misc/guc.c:2992 msgid "Sets the maximum time to wait for WAL replication." msgstr "Setzt die maximale Zeit, um auf WAL-Replikation zu warten." -#: utils/misc/guc.c:3002 +#: utils/misc/guc.c:3003 msgid "Sets the delay in microseconds between transaction commit and flushing WAL to disk." msgstr "Setzt die Verzögerung in Millisekunden zwischen Transaktionsabschluss und dem Schreiben von WAL auf die Festplatte." -#: utils/misc/guc.c:3014 +#: utils/misc/guc.c:3015 msgid "Sets the minimum number of concurrent open transactions required before performing commit_delay." msgstr "Setzt die notwendige minimale Anzahl gleichzeitig offener Transaktionen bevor »commit_delay« angewendet wird." -#: utils/misc/guc.c:3025 +#: utils/misc/guc.c:3026 msgid "Sets the number of digits displayed for floating-point values." msgstr "Setzt die Anzahl ausgegebener Ziffern für Fließkommawerte." -#: utils/misc/guc.c:3026 +#: utils/misc/guc.c:3027 msgid "This affects real, double precision, and geometric data types. A zero or negative parameter value is added to the standard number of digits (FLT_DIG or DBL_DIG as appropriate). Any value greater than zero selects precise output mode." msgstr "Diese Einstellung betrifft real, double precision und geometrische Datentypen. Null oder ein negativer Parameterwert wird zur Standardziffernanzahl (FLT_DIG bzw. DBL_DIG) hinzuaddiert. Ein Wert größer als Null wählt präzisen Ausgabemodus." -#: utils/misc/guc.c:3038 +#: utils/misc/guc.c:3039 msgid "Sets the minimum execution time above which a sample of statements will be logged. Sampling is determined by log_statement_sample_rate." msgstr "Setzt die minimale Ausführungszeit, über der Stichproben aller Anweisungen geloggt werden. Die Stichproben werden durch log_statement_sample_rate bestimmt." -#: utils/misc/guc.c:3041 +#: utils/misc/guc.c:3042 msgid "Zero logs a sample of all queries. -1 turns this feature off." msgstr "Null loggt eine Stichprobe aller Anfragen. -1 schaltet dieses Feature aus." -#: utils/misc/guc.c:3051 +#: utils/misc/guc.c:3052 msgid "Sets the minimum execution time above which all statements will be logged." msgstr "Setzt die minimale Ausführungszeit, über der alle Anweisungen geloggt werden." -#: utils/misc/guc.c:3053 +#: utils/misc/guc.c:3054 msgid "Zero prints all queries. -1 turns this feature off." msgstr "Null zeigt alle Anfragen. -1 schaltet dieses Feature aus." -#: utils/misc/guc.c:3063 +#: utils/misc/guc.c:3064 msgid "Sets the minimum execution time above which autovacuum actions will be logged." msgstr "Setzt die minimale Ausführungszeit, über der Autovacuum-Aktionen geloggt werden." -#: utils/misc/guc.c:3065 +#: utils/misc/guc.c:3066 msgid "Zero prints all actions. -1 turns autovacuum logging off." msgstr "Null gibt alls Aktionen aus. -1 schaltet die Log-Aufzeichnung über Autovacuum aus." -#: utils/misc/guc.c:3075 +#: utils/misc/guc.c:3076 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements." msgstr "Setzt die maximale Länge in Bytes für geloggte Daten von Bind-Parametern, wenn Anfragen geloggt werden." -#: utils/misc/guc.c:3077 utils/misc/guc.c:3089 +#: utils/misc/guc.c:3078 utils/misc/guc.c:3090 msgid "-1 to print values in full." msgstr "-1 um die Werte vollständig auszugeben." -#: utils/misc/guc.c:3087 +#: utils/misc/guc.c:3088 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements, on error." msgstr "Setzt die maximale Länge in Bytes für bei Fehlern geloggte Daten von Bind-Parametern, wenn Anfragen geloggt werden." -#: utils/misc/guc.c:3099 +#: utils/misc/guc.c:3100 msgid "Background writer sleep time between rounds." msgstr "Schlafzeit zwischen Durchläufen des Background-Writers." -#: utils/misc/guc.c:3110 +#: utils/misc/guc.c:3111 msgid "Background writer maximum number of LRU pages to flush per round." msgstr "Maximale Anzahl der vom Background-Writer pro Durchlauf zu flushenden LRU-Seiten." -#: utils/misc/guc.c:3133 +#: utils/misc/guc.c:3134 msgid "Number of simultaneous requests that can be handled efficiently by the disk subsystem." msgstr "Anzahl simultaner Anfragen, die das Festplattensubsystem effizient bearbeiten kann." -#: utils/misc/guc.c:3151 +#: utils/misc/guc.c:3152 msgid "A variant of effective_io_concurrency that is used for maintenance work." msgstr "Eine Variante von effective_io_concurrency, die für Wartungsarbeiten verwendet wird." -#: utils/misc/guc.c:3181 +#: utils/misc/guc.c:3182 msgid "Maximum number of concurrent worker processes." msgstr "Maximale Anzahl gleichzeitiger Worker-Prozesse." -#: utils/misc/guc.c:3193 +#: utils/misc/guc.c:3194 msgid "Maximum number of logical replication worker processes." msgstr "Maximale Anzahl Arbeitsprozesse für logische Replikation." -#: utils/misc/guc.c:3205 +#: utils/misc/guc.c:3206 msgid "Maximum number of table synchronization workers per subscription." msgstr "Maximale Anzahl Arbeitsprozesse für Tabellensynchronisation pro Subskription." -#: utils/misc/guc.c:3215 +#: utils/misc/guc.c:3216 msgid "Sets the amount of time to wait before forcing log file rotation." msgstr "Setzt die Zeit, die gewartet wird, bevor Logdateirotation erzwungen wird." -#: utils/misc/guc.c:3227 +#: utils/misc/guc.c:3228 msgid "Sets the maximum size a log file can reach before being rotated." msgstr "Setzt die maximale Größe, die eine Logdatei erreichen kann, bevor sie rotiert wird." -#: utils/misc/guc.c:3239 +#: utils/misc/guc.c:3240 msgid "Shows the maximum number of function arguments." msgstr "Setzt die maximale Anzahl von Funktionsargumenten." -#: utils/misc/guc.c:3250 +#: utils/misc/guc.c:3251 msgid "Shows the maximum number of index keys." msgstr "Zeigt die maximale Anzahl von Indexschlüsseln." -#: utils/misc/guc.c:3261 +#: utils/misc/guc.c:3262 msgid "Shows the maximum identifier length." msgstr "Zeigt die maximale Länge von Bezeichnern." -#: utils/misc/guc.c:3272 +#: utils/misc/guc.c:3273 msgid "Shows the size of a disk block." msgstr "Zeigt die Größe eines Diskblocks." -#: utils/misc/guc.c:3283 +#: utils/misc/guc.c:3284 msgid "Shows the number of pages per disk file." msgstr "Zeigt die Anzahl Seiten pro Diskdatei." -#: utils/misc/guc.c:3294 +#: utils/misc/guc.c:3295 msgid "Shows the block size in the write ahead log." msgstr "Zeigt die Blockgröße im Write-Ahead-Log." -#: utils/misc/guc.c:3305 +#: utils/misc/guc.c:3306 msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgstr "Setzt die Zeit, die gewartet wird, bevor nach einem fehlgeschlagenen Versuch neue WAL-Daten angefordert werden." -#: utils/misc/guc.c:3317 +#: utils/misc/guc.c:3318 msgid "Shows the size of write ahead log segments." msgstr "Zeigt die Größe eines Write-Ahead-Log-Segments." -#: utils/misc/guc.c:3330 +#: utils/misc/guc.c:3331 msgid "Time to sleep between autovacuum runs." msgstr "Wartezeit zwischen Autovacuum-Durchläufen." -#: utils/misc/guc.c:3340 +#: utils/misc/guc.c:3341 msgid "Minimum number of tuple updates or deletes prior to vacuum." msgstr "Mindestanzahl an geänderten oder gelöschten Tupeln vor einem Vacuum." -#: utils/misc/guc.c:3349 +#: utils/misc/guc.c:3350 msgid "Minimum number of tuple inserts prior to vacuum, or -1 to disable insert vacuums." msgstr "Mindestanzahl an Einfügeoperationen vor einem Vacuum, oder -1 um auszuschalten." -#: utils/misc/guc.c:3358 +#: utils/misc/guc.c:3359 msgid "Minimum number of tuple inserts, updates, or deletes prior to analyze." msgstr "Mindestanzahl an Einfüge-, Änderungs- oder Löschoperationen vor einem Analyze." -#: utils/misc/guc.c:3368 +#: utils/misc/guc.c:3369 msgid "Age at which to autovacuum a table to prevent transaction ID wraparound." msgstr "Alter, nach dem eine Tabelle automatisch gevacuumt wird, um Transaktionsnummernüberlauf zu verhindern." -#: utils/misc/guc.c:3380 +#: utils/misc/guc.c:3381 msgid "Multixact age at which to autovacuum a table to prevent multixact wraparound." msgstr "Multixact-Alter, nach dem eine Tabelle automatisch gevacuumt wird, um Transaktionsnummernüberlauf zu verhindern." -#: utils/misc/guc.c:3390 +#: utils/misc/guc.c:3391 msgid "Sets the maximum number of simultaneously running autovacuum worker processes." msgstr "Setzt die maximale Anzahl gleichzeitig laufender Autovacuum-Worker-Prozesse." -#: utils/misc/guc.c:3400 +#: utils/misc/guc.c:3401 msgid "Sets the maximum number of parallel processes per maintenance operation." msgstr "Setzt die maximale Anzahl paralleler Prozesse pro Wartungsoperation." -#: utils/misc/guc.c:3410 +#: utils/misc/guc.c:3411 msgid "Sets the maximum number of parallel processes per executor node." msgstr "Setzt die maximale Anzahl paralleler Prozesse pro Executor-Knoten." -#: utils/misc/guc.c:3421 +#: utils/misc/guc.c:3422 msgid "Sets the maximum number of parallel workers that can be active at one time." msgstr "Setzt die maximale Anzahl paralleler Arbeitsprozesse, die gleichzeitig aktiv sein können." -#: utils/misc/guc.c:3432 +#: utils/misc/guc.c:3433 msgid "Sets the maximum memory to be used by each autovacuum worker process." msgstr "Setzt die maximale Speichergröße für jeden Autovacuum-Worker-Prozess." -#: utils/misc/guc.c:3443 +#: utils/misc/guc.c:3444 msgid "Time before a snapshot is too old to read pages changed after the snapshot was taken." msgstr "Zeit bevor ein Snapshot zu alt ist, um Seiten zu lesen, die geändert wurden, nachdem der Snapshot gemacht wurde." -#: utils/misc/guc.c:3444 +#: utils/misc/guc.c:3445 msgid "A value of -1 disables this feature." msgstr "Der Wert -1 schaltet dieses Feature aus." -#: utils/misc/guc.c:3454 +#: utils/misc/guc.c:3455 msgid "Time between issuing TCP keepalives." msgstr "Zeit zwischen TCP-Keepalive-Sendungen." -#: utils/misc/guc.c:3455 utils/misc/guc.c:3466 utils/misc/guc.c:3590 +#: utils/misc/guc.c:3456 utils/misc/guc.c:3467 utils/misc/guc.c:3591 msgid "A value of 0 uses the system default." msgstr "Der Wert 0 verwendet die Systemvoreinstellung." -#: utils/misc/guc.c:3465 +#: utils/misc/guc.c:3466 msgid "Time between TCP keepalive retransmits." msgstr "Zeit zwischen TCP-Keepalive-Neuübertragungen." -#: utils/misc/guc.c:3476 +#: utils/misc/guc.c:3477 msgid "SSL renegotiation is no longer supported; this can only be 0." msgstr "SSL-Renegotiation wird nicht mehr unterstützt; kann nur auf 0 gesetzt werden." -#: utils/misc/guc.c:3487 +#: utils/misc/guc.c:3488 msgid "Maximum number of TCP keepalive retransmits." msgstr "Maximale Anzahl an TCP-Keepalive-Neuübertragungen." -#: utils/misc/guc.c:3488 +#: utils/misc/guc.c:3489 msgid "Number of consecutive keepalive retransmits that can be lost before a connection is considered dead. A value of 0 uses the system default." msgstr "Anzahl von aufeinanderfolgenden Keepalive-Neuübertragungen, die verloren gehen dürfen, bis die Verbindung als tot betrachtet wird. Der Wert 0 verwendet die Betriebssystemvoreinstellung." -#: utils/misc/guc.c:3499 +#: utils/misc/guc.c:3500 msgid "Sets the maximum allowed result for exact search by GIN." msgstr "Setzt die maximal erlaubte Anzahl Ergebnisse für eine genaue Suche mit GIN." -#: utils/misc/guc.c:3510 +#: utils/misc/guc.c:3511 msgid "Sets the planner's assumption about the total size of the data caches." msgstr "Setzt die Annahme des Planers über die Gesamtgröße der Daten-Caches." -#: utils/misc/guc.c:3511 +#: utils/misc/guc.c:3512 msgid "That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. This is measured in disk pages, which are normally 8 kB each." msgstr "Das heißt, die Gesamtgröße der Caches (Kernel-Cache und Shared Buffers), die für Datendateien von PostgreSQL verwendet wird. Das wird in Diskseiten gemessen, welche normalerweise 8 kB groß sind." -#: utils/misc/guc.c:3522 +#: utils/misc/guc.c:3523 msgid "Sets the minimum amount of table data for a parallel scan." msgstr "Setzt die Mindestmenge an Tabellendaten für einen parallelen Scan." -#: utils/misc/guc.c:3523 +#: utils/misc/guc.c:3524 msgid "If the planner estimates that it will read a number of table pages too small to reach this limit, a parallel scan will not be considered." msgstr "Wenn der Planer schätzt, dass zu wenige Tabellenseiten gelesen werden werden um diesen Wert zu erreichen, dann wird kein paralleler Scan in Erwägung gezogen werden." -#: utils/misc/guc.c:3533 +#: utils/misc/guc.c:3534 msgid "Sets the minimum amount of index data for a parallel scan." msgstr "Setzt die Mindestmenge an Indexdaten für einen parallelen Scan." -#: utils/misc/guc.c:3534 +#: utils/misc/guc.c:3535 msgid "If the planner estimates that it will read a number of index pages too small to reach this limit, a parallel scan will not be considered." msgstr "Wenn der Planer schätzt, dass zu wenige Indexseiten gelesen werden werden um diesen Wert zu erreichen, dann wird kein paralleler Scan in Erwägung gezogen werden." -#: utils/misc/guc.c:3545 +#: utils/misc/guc.c:3546 msgid "Shows the server version as an integer." msgstr "Zeigt die Serverversion als Zahl." -#: utils/misc/guc.c:3556 +#: utils/misc/guc.c:3557 msgid "Log the use of temporary files larger than this number of kilobytes." msgstr "Schreibt Meldungen über die Verwendung von temporären Dateien in den Log, wenn sie größer als diese Anzahl an Kilobytes sind." -#: utils/misc/guc.c:3557 +#: utils/misc/guc.c:3558 msgid "Zero logs all files. The default is -1 (turning this feature off)." msgstr "Null loggt alle Dateien. Die Standardeinstellung ist -1 (wodurch dieses Feature ausgeschaltet wird)." -#: utils/misc/guc.c:3567 +#: utils/misc/guc.c:3568 msgid "Sets the size reserved for pg_stat_activity.query, in bytes." msgstr "Setzt die für pg_stat_activity.query reservierte Größe, in Bytes." -#: utils/misc/guc.c:3578 +#: utils/misc/guc.c:3579 msgid "Sets the maximum size of the pending list for GIN index." msgstr "Setzt die maximale Größe der Pending-Liste eines GIN-Index." -#: utils/misc/guc.c:3589 +#: utils/misc/guc.c:3590 msgid "TCP user timeout." msgstr "TCP-User-Timeout." -#: utils/misc/guc.c:3600 +#: utils/misc/guc.c:3601 msgid "The size of huge page that should be requested." msgstr "Huge-Page-Größe, die angefordert werden soll." -#: utils/misc/guc.c:3611 +#: utils/misc/guc.c:3612 msgid "Aggressively flush system caches for debugging purposes." msgstr "System-Caches aggressiv flushen, zum Debuggen." -#: utils/misc/guc.c:3634 +#: utils/misc/guc.c:3635 msgid "Sets the time interval between checks for disconnection while running queries." msgstr "Setzt das Zeitintervall zwischen Prüfungen auf Verbindungsabbruch während Anfragen laufen." -#: utils/misc/guc.c:3645 +#: utils/misc/guc.c:3646 msgid "Time between progress updates for long-running startup operations." msgstr "Zeit zwischen Fortschrittsnachrichten für lange laufende Operationen beim Serverstart." -#: utils/misc/guc.c:3647 +#: utils/misc/guc.c:3648 msgid "0 turns this feature off." msgstr "0 schaltet dieses Feature aus." -#: utils/misc/guc.c:3666 +#: utils/misc/guc.c:3667 msgid "Sets the planner's estimate of the cost of a sequentially fetched disk page." msgstr "Setzt den vom Planer geschätzten Aufwand, um eine sequenzielle Diskseite zu lesen." -#: utils/misc/guc.c:3677 +#: utils/misc/guc.c:3678 msgid "Sets the planner's estimate of the cost of a nonsequentially fetched disk page." msgstr "Setzt den vom Planer geschätzten Aufwand, um eine nichtsequenzielle Diskseite zu lesen." -#: utils/misc/guc.c:3688 +#: utils/misc/guc.c:3689 msgid "Sets the planner's estimate of the cost of processing each tuple (row)." msgstr "Setzt den vom Planer geschätzten Aufwand für die Verarbeitung einer Zeile." -#: utils/misc/guc.c:3699 +#: utils/misc/guc.c:3700 msgid "Sets the planner's estimate of the cost of processing each index entry during an index scan." msgstr "Setzt den vom Planer geschätzten Aufwand für die Verarbeitung eines Indexeintrags während eines Index-Scans." -#: utils/misc/guc.c:3710 +#: utils/misc/guc.c:3711 msgid "Sets the planner's estimate of the cost of processing each operator or function call." msgstr "Setzt den vom Planer geschätzten Aufwand für die Verarbeitung eines Operators oder Funktionsaufrufs." -#: utils/misc/guc.c:3721 +#: utils/misc/guc.c:3722 msgid "Sets the planner's estimate of the cost of passing each tuple (row) from worker to leader backend." msgstr "Setzt den vom Planer geschätzten Aufwand, um eine Zeile vom Arbeitsprozess an das Leader-Backend zu senden." -#: utils/misc/guc.c:3732 +#: utils/misc/guc.c:3733 msgid "Sets the planner's estimate of the cost of starting up worker processes for parallel query." msgstr "Setzt den vom Planer geschätzten Aufwand für das Starten von Arbeitsprozessen für parallele Anfragen." -#: utils/misc/guc.c:3744 +#: utils/misc/guc.c:3745 msgid "Perform JIT compilation if query is more expensive." msgstr "JIT-Kompilierung durchführen, wenn die Anfrage teurer ist." -#: utils/misc/guc.c:3745 +#: utils/misc/guc.c:3746 msgid "-1 disables JIT compilation." msgstr "-1 schaltet JIT-Kompilierung aus." -#: utils/misc/guc.c:3755 +#: utils/misc/guc.c:3756 msgid "Optimize JIT-compiled functions if query is more expensive." msgstr "JIT-kompilierte Funktionen optimieren, wenn die Anfrage teurer ist." -#: utils/misc/guc.c:3756 +#: utils/misc/guc.c:3757 msgid "-1 disables optimization." msgstr "-1 schaltet Optimierung aus." -#: utils/misc/guc.c:3766 +#: utils/misc/guc.c:3767 msgid "Perform JIT inlining if query is more expensive." msgstr "JIT-Inlining durchführen, wenn die Anfrage teurer ist." -#: utils/misc/guc.c:3767 +#: utils/misc/guc.c:3768 msgid "-1 disables inlining." msgstr "-1 schaltet Inlining aus." -#: utils/misc/guc.c:3777 +#: utils/misc/guc.c:3778 msgid "Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved." msgstr "Setzt die Planerschätzung für den Anteil der Cursor-Zeilen, die ausgelesen werden werden." -#: utils/misc/guc.c:3789 +#: utils/misc/guc.c:3790 msgid "Sets the planner's estimate of the average size of a recursive query's working table." msgstr "Setzt die Planerschätzung für die durchschnittliche Größe der Arbeitstabelle einer rekursiven Anfrage." -#: utils/misc/guc.c:3801 +#: utils/misc/guc.c:3802 msgid "GEQO: selective pressure within the population." msgstr "GEQO: selektiver Auswahldruck in der Bevölkerung." -#: utils/misc/guc.c:3812 +#: utils/misc/guc.c:3813 msgid "GEQO: seed for random path selection." msgstr "GEQO: Ausgangswert für die zufällige Pfadauswahl." -#: utils/misc/guc.c:3823 +#: utils/misc/guc.c:3824 msgid "Multiple of work_mem to use for hash tables." msgstr "Vielfaches von work_mem zur Verwendung bei Hash-Tabellen." -#: utils/misc/guc.c:3834 +#: utils/misc/guc.c:3835 msgid "Multiple of the average buffer usage to free per round." msgstr "Vielfaches der durchschnittlichen freizugebenden Pufferverwendung pro Runde." -#: utils/misc/guc.c:3844 +#: utils/misc/guc.c:3845 msgid "Sets the seed for random-number generation." msgstr "Setzt den Ausgangswert für die Zufallszahlenerzeugung." -#: utils/misc/guc.c:3855 +#: utils/misc/guc.c:3856 msgid "Vacuum cost delay in milliseconds." msgstr "Vacuum-Kosten-Verzögerung in Millisekunden." -#: utils/misc/guc.c:3866 +#: utils/misc/guc.c:3867 msgid "Vacuum cost delay in milliseconds, for autovacuum." msgstr "Vacuum-Kosten-Verzögerung in Millisekunden, für Autovacuum." -#: utils/misc/guc.c:3877 +#: utils/misc/guc.c:3878 msgid "Number of tuple updates or deletes prior to vacuum as a fraction of reltuples." msgstr "Anzahl geänderter oder gelöschter Tupel vor einem Vacuum, relativ zu reltuples." -#: utils/misc/guc.c:3887 +#: utils/misc/guc.c:3888 msgid "Number of tuple inserts prior to vacuum as a fraction of reltuples." msgstr "Anzahl eingefügter Tupel vor einem Vacuum, relativ zu reltuples." -#: utils/misc/guc.c:3897 +#: utils/misc/guc.c:3898 msgid "Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples." msgstr "Anzahl eingefügter, geänderter oder gelöschter Tupel vor einem Analyze, relativ zu reltuples." -#: utils/misc/guc.c:3907 +#: utils/misc/guc.c:3908 msgid "Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval." msgstr "Zeit, die damit verbracht wird, modifizierte Puffer während eines Checkpoints zurückzuschreiben, als Bruchteil des Checkpoint-Intervalls." -#: utils/misc/guc.c:3917 +#: utils/misc/guc.c:3918 msgid "Fraction of statements exceeding log_min_duration_sample to be logged." msgstr "Anteil der zu loggenden Anweisungen, die log_min_duration_sample überschreiten." -#: utils/misc/guc.c:3918 +#: utils/misc/guc.c:3919 msgid "Use a value between 0.0 (never log) and 1.0 (always log)." msgstr "Verwenden Sie einen Wert zwischen 0.0 (nie loggen) und 1.0 (immer loggen)." -#: utils/misc/guc.c:3927 +#: utils/misc/guc.c:3928 msgid "Sets the fraction of transactions from which to log all statements." msgstr "Setzt den Bruchteil der Transaktionen, aus denen alle Anweisungen geloggt werden." -#: utils/misc/guc.c:3928 +#: utils/misc/guc.c:3929 msgid "Use a value between 0.0 (never log) and 1.0 (log all statements for all transactions)." msgstr "Verwenden Sie einen Wert zwischen 0.0 (nie loggen) und 1.0 (alle Anweisungen für alle Transaktionen loggen)." -#: utils/misc/guc.c:3947 +#: utils/misc/guc.c:3948 msgid "Sets the shell command that will be called to archive a WAL file." msgstr "Setzt den Shell-Befehl, der aufgerufen wird, um eine WAL-Datei zu archivieren." -#: utils/misc/guc.c:3948 +#: utils/misc/guc.c:3949 msgid "This is used only if \"archive_library\" is not set." msgstr "Dieser wird nur verwendet, wenn »archive_library« nicht gesetzt ist." -#: utils/misc/guc.c:3957 +#: utils/misc/guc.c:3958 msgid "Sets the library that will be called to archive a WAL file." msgstr "Setzt die Bibliothek, die aufgerufen wird, um eine WAL-Datei zu archivieren." -#: utils/misc/guc.c:3958 +#: utils/misc/guc.c:3959 msgid "An empty string indicates that \"archive_command\" should be used." msgstr "Eine leere Zeichenkette bedeutet, dass »archive_command« verwendet werden soll." -#: utils/misc/guc.c:3967 +#: utils/misc/guc.c:3968 msgid "Sets the shell command that will be called to retrieve an archived WAL file." msgstr "Setzt den Shell-Befehl, der aufgerufen wird, um eine archivierte WAL-Datei zurückzuholen." -#: utils/misc/guc.c:3977 +#: utils/misc/guc.c:3978 msgid "Sets the shell command that will be executed at every restart point." msgstr "Setzt den Shell-Befehl, der bei jedem Restart-Punkt ausgeführt wird." -#: utils/misc/guc.c:3987 +#: utils/misc/guc.c:3988 msgid "Sets the shell command that will be executed once at the end of recovery." msgstr "Setzt den Shell-Befehl, der einmal am Ende der Wiederherstellung ausgeführt wird." -#: utils/misc/guc.c:3997 +#: utils/misc/guc.c:3998 msgid "Specifies the timeline to recover into." msgstr "Gibt die Zeitleiste für die Wiederherstellung an." -#: utils/misc/guc.c:4007 +#: utils/misc/guc.c:4008 msgid "Set to \"immediate\" to end recovery as soon as a consistent state is reached." msgstr "Auf »immediate« setzen, um die Wiederherstellung zu beenden, sobald ein konsistenter Zustand erreicht ist." -#: utils/misc/guc.c:4016 +#: utils/misc/guc.c:4017 msgid "Sets the transaction ID up to which recovery will proceed." msgstr "Setzt die Transaktions-ID, bis zu der die Wiederherstellung voranschreiten wird." -#: utils/misc/guc.c:4025 +#: utils/misc/guc.c:4026 msgid "Sets the time stamp up to which recovery will proceed." msgstr "Setzt den Zeitstempel, bis zu dem die Wiederherstellung voranschreiten wird." -#: utils/misc/guc.c:4034 +#: utils/misc/guc.c:4035 msgid "Sets the named restore point up to which recovery will proceed." msgstr "Setzt den benannten Restore-Punkt, bis zu dem die Wiederherstellung voranschreiten wird." -#: utils/misc/guc.c:4043 +#: utils/misc/guc.c:4044 msgid "Sets the LSN of the write-ahead log location up to which recovery will proceed." msgstr "Setzt die LSN der Write-Ahead-Log-Position, bis zu der die Wiederherstellung voranschreiten wird." -#: utils/misc/guc.c:4053 +#: utils/misc/guc.c:4054 msgid "Specifies a file name whose presence ends recovery in the standby." msgstr "Gibt einen Dateinamen an, dessen Präsenz die Wiederherstellung im Standby beendet." -#: utils/misc/guc.c:4063 +#: utils/misc/guc.c:4064 msgid "Sets the connection string to be used to connect to the sending server." msgstr "Setzt die Verbindungszeichenkette zur Verbindung mit dem sendenden Server." -#: utils/misc/guc.c:4074 +#: utils/misc/guc.c:4075 msgid "Sets the name of the replication slot to use on the sending server." msgstr "Setzt den Namen des zu verwendenden Replikations-Slots auf dem sendenden Server." -#: utils/misc/guc.c:4084 +#: utils/misc/guc.c:4085 msgid "Sets the client's character set encoding." msgstr "Setzt die Zeichensatzkodierung des Clients." -#: utils/misc/guc.c:4095 +#: utils/misc/guc.c:4096 msgid "Controls information prefixed to each log line." msgstr "Bestimmt die Informationen, die vor jede Logzeile geschrieben werden." -#: utils/misc/guc.c:4096 +#: utils/misc/guc.c:4097 msgid "If blank, no prefix is used." msgstr "Wenn leer, dann wird kein Präfix verwendet." -#: utils/misc/guc.c:4105 +#: utils/misc/guc.c:4106 msgid "Sets the time zone to use in log messages." msgstr "Setzt die in Logmeldungen verwendete Zeitzone." -#: utils/misc/guc.c:4115 +#: utils/misc/guc.c:4116 msgid "Sets the display format for date and time values." msgstr "Setzt das Ausgabeformat für Datums- und Zeitwerte." -#: utils/misc/guc.c:4116 +#: utils/misc/guc.c:4117 msgid "Also controls interpretation of ambiguous date inputs." msgstr "Kontrolliert auch die Interpretation von zweideutigen Datumseingaben." -#: utils/misc/guc.c:4127 +#: utils/misc/guc.c:4128 msgid "Sets the default table access method for new tables." msgstr "Setzt die Standard-Tabellenzugriffsmethode für neue Tabellen." -#: utils/misc/guc.c:4138 +#: utils/misc/guc.c:4139 msgid "Sets the default tablespace to create tables and indexes in." msgstr "Setzt den Standard-Tablespace für Tabellen und Indexe." -#: utils/misc/guc.c:4139 +#: utils/misc/guc.c:4140 msgid "An empty string selects the database's default tablespace." msgstr "Eine leere Zeichenkette wählt den Standard-Tablespace der Datenbank." -#: utils/misc/guc.c:4149 +#: utils/misc/guc.c:4150 msgid "Sets the tablespace(s) to use for temporary tables and sort files." msgstr "Setzt den oder die Tablespaces für temporäre Tabellen und Sortierdateien." -#: utils/misc/guc.c:4160 +#: utils/misc/guc.c:4161 msgid "Sets the path for dynamically loadable modules." msgstr "Setzt den Pfad für ladbare dynamische Bibliotheken." -#: utils/misc/guc.c:4161 +#: utils/misc/guc.c:4162 msgid "If a dynamically loadable module needs to be opened and the specified name does not have a directory component (i.e., the name does not contain a slash), the system will search this path for the specified file." msgstr "Wenn ein dynamisch ladbares Modul geöffnet werden muss und der angegebene Name keine Verzeichniskomponente hat (das heißt er enthält keinen Schrägstrich), dann sucht das System in diesem Pfad nach der angegebenen Datei." -#: utils/misc/guc.c:4174 +#: utils/misc/guc.c:4175 msgid "Sets the location of the Kerberos server key file." msgstr "Setzt den Ort der Kerberos-Server-Schlüsseldatei." -#: utils/misc/guc.c:4185 +#: utils/misc/guc.c:4186 msgid "Sets the Bonjour service name." msgstr "Setzt den Bonjour-Servicenamen." -#: utils/misc/guc.c:4197 +#: utils/misc/guc.c:4198 msgid "Shows the collation order locale." msgstr "Zeigt die Locale für die Sortierreihenfolge." -#: utils/misc/guc.c:4208 +#: utils/misc/guc.c:4209 msgid "Shows the character classification and case conversion locale." msgstr "Zeigt die Locale für Zeichenklassifizierung und Groß-/Kleinschreibung." -#: utils/misc/guc.c:4219 +#: utils/misc/guc.c:4220 msgid "Sets the language in which messages are displayed." msgstr "Setzt die Sprache, in der Mitteilungen ausgegeben werden." -#: utils/misc/guc.c:4229 +#: utils/misc/guc.c:4230 msgid "Sets the locale for formatting monetary amounts." msgstr "Setzt die Locale für die Formatierung von Geldbeträgen." -#: utils/misc/guc.c:4239 +#: utils/misc/guc.c:4240 msgid "Sets the locale for formatting numbers." msgstr "Setzt die Locale für die Formatierung von Zahlen." -#: utils/misc/guc.c:4249 +#: utils/misc/guc.c:4250 msgid "Sets the locale for formatting date and time values." msgstr "Setzt die Locale für die Formatierung von Datums- und Zeitwerten." -#: utils/misc/guc.c:4259 +#: utils/misc/guc.c:4260 msgid "Lists shared libraries to preload into each backend." msgstr "Listet dynamische Bibliotheken, die vorab in jeden Serverprozess geladen werden." -#: utils/misc/guc.c:4270 +#: utils/misc/guc.c:4271 msgid "Lists shared libraries to preload into server." msgstr "Listet dynamische Bibliotheken, die vorab in den Server geladen werden." -#: utils/misc/guc.c:4281 +#: utils/misc/guc.c:4282 msgid "Lists unprivileged shared libraries to preload into each backend." msgstr "Listet unprivilegierte dynamische Bibliotheken, die vorab in jeden Serverprozess geladen werden." -#: utils/misc/guc.c:4292 +#: utils/misc/guc.c:4293 msgid "Sets the schema search order for names that are not schema-qualified." msgstr "Setzt die Schemasuchreihenfolge für Namen ohne Schemaqualifikation." -#: utils/misc/guc.c:4304 +#: utils/misc/guc.c:4305 msgid "Shows the server (database) character set encoding." msgstr "Zeigt die Zeichensatzkodierung des Servers (der Datenbank)." -#: utils/misc/guc.c:4316 +#: utils/misc/guc.c:4317 msgid "Shows the server version." msgstr "Zeigt die Serverversion." -#: utils/misc/guc.c:4328 +#: utils/misc/guc.c:4329 msgid "Sets the current role." msgstr "Setzt die aktuelle Rolle." -#: utils/misc/guc.c:4340 +#: utils/misc/guc.c:4341 msgid "Sets the session user name." msgstr "Setzt den Sitzungsbenutzernamen." -#: utils/misc/guc.c:4351 +#: utils/misc/guc.c:4352 msgid "Sets the destination for server log output." msgstr "Setzt das Ziel für die Serverlogausgabe." -#: utils/misc/guc.c:4352 +#: utils/misc/guc.c:4353 msgid "Valid values are combinations of \"stderr\", \"syslog\", \"csvlog\", \"jsonlog\", and \"eventlog\", depending on the platform." msgstr "Gültige Werte sind Kombinationen von »stderr«, »syslog«, »csvlog«, »jsonlog« und »eventlog«, je nach Plattform." -#: utils/misc/guc.c:4363 +#: utils/misc/guc.c:4364 msgid "Sets the destination directory for log files." msgstr "Bestimmt das Zielverzeichnis für Logdateien." -#: utils/misc/guc.c:4364 +#: utils/misc/guc.c:4365 msgid "Can be specified as relative to the data directory or as absolute path." msgstr "Kann relativ zum Datenverzeichnis oder als absoluter Pfad angegeben werden." -#: utils/misc/guc.c:4374 +#: utils/misc/guc.c:4375 msgid "Sets the file name pattern for log files." msgstr "Bestimmt das Dateinamenmuster für Logdateien." -#: utils/misc/guc.c:4385 +#: utils/misc/guc.c:4386 msgid "Sets the program name used to identify PostgreSQL messages in syslog." msgstr "Setzt den Programmnamen, mit dem PostgreSQL-Meldungen im Syslog identifiziert werden." -#: utils/misc/guc.c:4396 +#: utils/misc/guc.c:4397 msgid "Sets the application name used to identify PostgreSQL messages in the event log." msgstr "Setzt den Programmnamen, mit dem PostgreSQL-Meldungen im Ereignisprotokoll identifiziert werden." -#: utils/misc/guc.c:4407 +#: utils/misc/guc.c:4408 msgid "Sets the time zone for displaying and interpreting time stamps." msgstr "Setzt die Zeitzone, in der Zeitangaben interpretiert und ausgegeben werden." -#: utils/misc/guc.c:4417 +#: utils/misc/guc.c:4418 msgid "Selects a file of time zone abbreviations." msgstr "Wählt eine Datei mit Zeitzonenabkürzungen." -#: utils/misc/guc.c:4427 +#: utils/misc/guc.c:4428 msgid "Sets the owning group of the Unix-domain socket." msgstr "Setzt die Eigentümergruppe der Unix-Domain-Socket." -#: utils/misc/guc.c:4428 +#: utils/misc/guc.c:4429 msgid "The owning user of the socket is always the user that starts the server." msgstr "Der Eigentümer ist immer der Benutzer, der den Server startet." -#: utils/misc/guc.c:4438 +#: utils/misc/guc.c:4439 msgid "Sets the directories where Unix-domain sockets will be created." msgstr "Setzt die Verzeichnisse, in denen Unix-Domain-Sockets erzeugt werden sollen." -#: utils/misc/guc.c:4453 +#: utils/misc/guc.c:4454 msgid "Sets the host name or IP address(es) to listen to." msgstr "Setzt den Hostnamen oder die IP-Adresse(n), auf der auf Verbindungen gewartet wird." -#: utils/misc/guc.c:4468 +#: utils/misc/guc.c:4469 msgid "Sets the server's data directory." msgstr "Setzt das Datenverzeichnis des Servers." -#: utils/misc/guc.c:4479 +#: utils/misc/guc.c:4480 msgid "Sets the server's main configuration file." msgstr "Setzt die Hauptkonfigurationsdatei des Servers." -#: utils/misc/guc.c:4490 +#: utils/misc/guc.c:4491 msgid "Sets the server's \"hba\" configuration file." msgstr "Setzt die »hba«-Konfigurationsdatei des Servers." -#: utils/misc/guc.c:4501 +#: utils/misc/guc.c:4502 msgid "Sets the server's \"ident\" configuration file." msgstr "Setzt die »ident«-Konfigurationsdatei des Servers." -#: utils/misc/guc.c:4512 +#: utils/misc/guc.c:4513 msgid "Writes the postmaster PID to the specified file." msgstr "Schreibt die Postmaster-PID in die angegebene Datei." -#: utils/misc/guc.c:4523 +#: utils/misc/guc.c:4524 msgid "Shows the name of the SSL library." msgstr "Zeigt den Namen der SSL-Bibliothek." -#: utils/misc/guc.c:4538 +#: utils/misc/guc.c:4539 msgid "Location of the SSL server certificate file." msgstr "Ort der SSL-Serverzertifikatsdatei." -#: utils/misc/guc.c:4548 +#: utils/misc/guc.c:4549 msgid "Location of the SSL server private key file." msgstr "Setzt den Ort der Datei mit dem privaten SSL-Server-Schlüssel." -#: utils/misc/guc.c:4558 +#: utils/misc/guc.c:4559 msgid "Location of the SSL certificate authority file." msgstr "Ort der SSL-Certificate-Authority-Datei." -#: utils/misc/guc.c:4568 +#: utils/misc/guc.c:4569 msgid "Location of the SSL certificate revocation list file." msgstr "Ort der SSL-Certificate-Revocation-List-Datei." -#: utils/misc/guc.c:4578 +#: utils/misc/guc.c:4579 msgid "Location of the SSL certificate revocation list directory." msgstr "Ort des SSL-Certificate-Revocation-List-Verzeichnisses." -#: utils/misc/guc.c:4588 +#: utils/misc/guc.c:4589 msgid "Number of synchronous standbys and list of names of potential synchronous ones." msgstr "Anzahl synchroner Standbys und Liste der Namen der möglichen synchronen Standbys." -#: utils/misc/guc.c:4599 +#: utils/misc/guc.c:4600 msgid "Sets default text search configuration." msgstr "Setzt die vorgegebene Textsuchekonfiguration." -#: utils/misc/guc.c:4609 +#: utils/misc/guc.c:4610 msgid "Sets the list of allowed SSL ciphers." msgstr "Setzt die Liste der erlaubten SSL-Verschlüsselungsalgorithmen." -#: utils/misc/guc.c:4624 +#: utils/misc/guc.c:4625 msgid "Sets the curve to use for ECDH." msgstr "Setzt die für ECDH zu verwendende Kurve." -#: utils/misc/guc.c:4639 +#: utils/misc/guc.c:4640 msgid "Location of the SSL DH parameters file." msgstr "Setzt den Ort der SSL-DH-Parameter-Datei." -#: utils/misc/guc.c:4650 +#: utils/misc/guc.c:4651 msgid "Command to obtain passphrases for SSL." msgstr "Befehl zum Einlesen von Passphrasen für SSL." -#: utils/misc/guc.c:4661 +#: utils/misc/guc.c:4662 msgid "Sets the application name to be reported in statistics and logs." msgstr "Setzt den Anwendungsnamen, der in Statistiken und Logs verzeichnet wird." -#: utils/misc/guc.c:4672 +#: utils/misc/guc.c:4673 msgid "Sets the name of the cluster, which is included in the process title." msgstr "Setzt den Namen des Clusters, welcher im Prozesstitel angezeigt wird." -#: utils/misc/guc.c:4683 +#: utils/misc/guc.c:4684 msgid "Sets the WAL resource managers for which WAL consistency checks are done." msgstr "Setzt die WAL-Resource-Manager, für die WAL-Konsistenzprüfungen durchgeführt werden." -#: utils/misc/guc.c:4684 +#: utils/misc/guc.c:4685 msgid "Full-page images will be logged for all data blocks and cross-checked against the results of WAL replay." msgstr "Volle Seitenabbilder werden für alle Datenblöcke geloggt und gegen die Resultate der WAL-Wiederherstellung geprüft." -#: utils/misc/guc.c:4694 +#: utils/misc/guc.c:4695 msgid "JIT provider to use." msgstr "Zu verwendender JIT-Provider." -#: utils/misc/guc.c:4705 +#: utils/misc/guc.c:4706 msgid "Log backtrace for errors in these functions." msgstr "Backtrace für Fehler in diesen Funktionen loggen." -#: utils/misc/guc.c:4725 +#: utils/misc/guc.c:4717 +msgid "Prohibits access to non-system relations of specified kinds." +msgstr "Verbietet Zugriff auf Nicht-System-Relationen der angegeben Arten." + +#: utils/misc/guc.c:4737 msgid "Sets whether \"\\'\" is allowed in string literals." msgstr "Bestimmt, ob »\\'« in Zeichenkettenkonstanten erlaubt ist." -#: utils/misc/guc.c:4735 +#: utils/misc/guc.c:4747 msgid "Sets the output format for bytea." msgstr "Setzt das Ausgabeformat für bytea." -#: utils/misc/guc.c:4745 +#: utils/misc/guc.c:4757 msgid "Sets the message levels that are sent to the client." msgstr "Setzt die Meldungstypen, die an den Client gesendet werden." -#: utils/misc/guc.c:4746 utils/misc/guc.c:4832 utils/misc/guc.c:4843 -#: utils/misc/guc.c:4919 +#: utils/misc/guc.c:4758 utils/misc/guc.c:4844 utils/misc/guc.c:4855 +#: utils/misc/guc.c:4931 msgid "Each level includes all the levels that follow it. The later the level, the fewer messages are sent." msgstr "Jeder Wert schließt alle ihm folgenden Werte mit ein. Je weiter hinten der Wert steht, desto weniger Meldungen werden gesendet werden." -#: utils/misc/guc.c:4756 +#: utils/misc/guc.c:4768 msgid "Enables in-core computation of query identifiers." msgstr "Schaltet die eingebaute Berechnung von Anfragebezeichnern ein." -#: utils/misc/guc.c:4766 +#: utils/misc/guc.c:4778 msgid "Enables the planner to use constraints to optimize queries." msgstr "Ermöglicht dem Planer die Verwendung von Constraints, um Anfragen zu optimieren." -#: utils/misc/guc.c:4767 +#: utils/misc/guc.c:4779 msgid "Table scans will be skipped if their constraints guarantee that no rows match the query." msgstr "Tabellen-Scans werden übersprungen, wenn deren Constraints garantieren, dass keine Zeile mit der Abfrage übereinstimmt." -#: utils/misc/guc.c:4778 +#: utils/misc/guc.c:4790 msgid "Sets the default compression method for compressible values." msgstr "Setzt die Standard-Komprimierungsmethode für komprimierbare Werte." -#: utils/misc/guc.c:4789 +#: utils/misc/guc.c:4801 msgid "Sets the transaction isolation level of each new transaction." msgstr "Setzt den Transaktionsisolationsgrad neuer Transaktionen." -#: utils/misc/guc.c:4799 +#: utils/misc/guc.c:4811 msgid "Sets the current transaction's isolation level." msgstr "Zeigt den Isolationsgrad der aktuellen Transaktion." -#: utils/misc/guc.c:4810 +#: utils/misc/guc.c:4822 msgid "Sets the display format for interval values." msgstr "Setzt das Ausgabeformat für Intervallwerte." -#: utils/misc/guc.c:4821 +#: utils/misc/guc.c:4833 msgid "Sets the verbosity of logged messages." msgstr "Setzt den Detailgrad von geloggten Meldungen." -#: utils/misc/guc.c:4831 +#: utils/misc/guc.c:4843 msgid "Sets the message levels that are logged." msgstr "Setzt die Meldungstypen, die geloggt werden." -#: utils/misc/guc.c:4842 +#: utils/misc/guc.c:4854 msgid "Causes all statements generating error at or above this level to be logged." msgstr "Schreibt alle Anweisungen, die einen Fehler auf dieser Stufe oder höher verursachen, in den Log." -#: utils/misc/guc.c:4853 +#: utils/misc/guc.c:4865 msgid "Sets the type of statements logged." msgstr "Setzt die Anweisungsarten, die geloggt werden." -#: utils/misc/guc.c:4863 +#: utils/misc/guc.c:4875 msgid "Sets the syslog \"facility\" to be used when syslog enabled." msgstr "Setzt die zu verwendende Syslog-»Facility«, wenn Syslog angeschaltet ist." -#: utils/misc/guc.c:4878 +#: utils/misc/guc.c:4890 msgid "Sets the session's behavior for triggers and rewrite rules." msgstr "Setzt das Sitzungsverhalten für Trigger und Regeln." -#: utils/misc/guc.c:4888 +#: utils/misc/guc.c:4900 msgid "Sets the current transaction's synchronization level." msgstr "Setzt den Synchronisationsgrad der aktuellen Transaktion." -#: utils/misc/guc.c:4898 +#: utils/misc/guc.c:4910 msgid "Allows archiving of WAL files using archive_command." msgstr "Erlaubt die Archivierung von WAL-Dateien mittels archive_command." -#: utils/misc/guc.c:4908 +#: utils/misc/guc.c:4920 msgid "Sets the action to perform upon reaching the recovery target." msgstr "Setzt die Aktion, die beim Erreichen des Wiederherstellungsziels durchgeführt wird." -#: utils/misc/guc.c:4918 +#: utils/misc/guc.c:4930 msgid "Enables logging of recovery-related debugging information." msgstr "Ermöglicht das Loggen von Debug-Informationen über die Wiederherstellung." -#: utils/misc/guc.c:4935 +#: utils/misc/guc.c:4947 msgid "Collects function-level statistics on database activity." msgstr "Sammelt Statistiken auf Funktionsebene über Datenbankaktivität." -#: utils/misc/guc.c:4946 +#: utils/misc/guc.c:4958 msgid "Sets the consistency of accesses to statistics data." msgstr "Setzt die Konsistenz von Zugriffen auf Statistikdaten." -#: utils/misc/guc.c:4956 +#: utils/misc/guc.c:4968 msgid "Compresses full-page writes written in WAL file with specified method." msgstr "Komprimiert in WAL-Dateien geschriebene volle Seiten mit der angegebenen Methode." -#: utils/misc/guc.c:4966 +#: utils/misc/guc.c:4978 msgid "Sets the level of information written to the WAL." msgstr "Setzt den Umfang der in den WAL geschriebenen Informationen." -#: utils/misc/guc.c:4976 +#: utils/misc/guc.c:4988 msgid "Selects the dynamic shared memory implementation used." msgstr "Wählt die zu verwendende Implementierung von dynamischem Shared Memory." -#: utils/misc/guc.c:4986 +#: utils/misc/guc.c:4998 msgid "Selects the shared memory implementation used for the main shared memory region." msgstr "Wählt die Shared-Memory-Implementierung, die für den Haupt-Shared-Memory-Bereich verwendet wird." -#: utils/misc/guc.c:4996 +#: utils/misc/guc.c:5008 msgid "Selects the method used for forcing WAL updates to disk." msgstr "Wählt die Methode, um das Schreiben von WAL-Änderungen auf die Festplatte zu erzwingen." -#: utils/misc/guc.c:5006 +#: utils/misc/guc.c:5018 msgid "Sets how binary values are to be encoded in XML." msgstr "Setzt, wie binäre Werte in XML kodiert werden." -#: utils/misc/guc.c:5016 +#: utils/misc/guc.c:5028 msgid "Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments." msgstr "Setzt, ob XML-Daten in impliziten Parse- und Serialisierungsoperationen als Dokument oder Fragment betrachtet werden sollen." -#: utils/misc/guc.c:5027 +#: utils/misc/guc.c:5039 msgid "Use of huge pages on Linux or Windows." msgstr "Huge Pages auf Linux oder Windows verwenden." -#: utils/misc/guc.c:5037 +#: utils/misc/guc.c:5049 msgid "Prefetch referenced blocks during recovery." msgstr "Während der Wiederherstellung Blöcke, auf die verwiesen wird, vorab einlesen." -#: utils/misc/guc.c:5038 +#: utils/misc/guc.c:5050 msgid "Look ahead in the WAL to find references to uncached data." msgstr "Im WAL vorausschauen, um Verweise auf ungecachte Daten zu finden." -#: utils/misc/guc.c:5047 +#: utils/misc/guc.c:5059 msgid "Forces use of parallel query facilities." msgstr "Verwendung der Einrichtungen für parallele Anfragen erzwingen." -#: utils/misc/guc.c:5048 +#: utils/misc/guc.c:5060 msgid "If possible, run query using a parallel worker and with parallel restrictions." msgstr "Wenn möglich werden Anfragen in einem parallelen Arbeitsprozess und mit parallelen Beschränkungen ausgeführt." -#: utils/misc/guc.c:5058 +#: utils/misc/guc.c:5070 msgid "Chooses the algorithm for encrypting passwords." msgstr "Wählt den Algorithmus zum Verschlüsseln von Passwörtern." -#: utils/misc/guc.c:5068 +#: utils/misc/guc.c:5080 msgid "Controls the planner's selection of custom or generic plan." msgstr "Kontrolliert, ob der Planer einen maßgeschneiderten oder einen allgemeinen Plan verwendet." -#: utils/misc/guc.c:5069 +#: utils/misc/guc.c:5081 msgid "Prepared statements can have custom and generic plans, and the planner will attempt to choose which is better. This can be set to override the default behavior." msgstr "Vorbereitete Anweisungen können maßgeschneiderte oder allgemeine Pläne haben und der Planer wird versuchen, den besseren auszuwählen. Diese Einstellung kann das Standardverhalten außer Kraft setzen." -#: utils/misc/guc.c:5081 +#: utils/misc/guc.c:5093 msgid "Sets the minimum SSL/TLS protocol version to use." msgstr "Setzt die minimale zu verwendende SSL/TLS-Protokollversion." -#: utils/misc/guc.c:5093 +#: utils/misc/guc.c:5105 msgid "Sets the maximum SSL/TLS protocol version to use." msgstr "Setzt die maximale zu verwendende SSL/TLS-Protokollversion." -#: utils/misc/guc.c:5105 +#: utils/misc/guc.c:5117 msgid "Sets the method for synchronizing the data directory before crash recovery." msgstr "Setzt die Methode für das Synchronisieren des Datenverzeichnisses vor der Wiederherstellung nach einem Absturz." -#: utils/misc/guc.c:5680 utils/misc/guc.c:5696 +#: utils/misc/guc.c:5692 utils/misc/guc.c:5708 #, c-format msgid "invalid configuration parameter name \"%s\"" msgstr "ungültiger Konfigurationsparametername »%s«" -#: utils/misc/guc.c:5682 +#: utils/misc/guc.c:5694 #, c-format msgid "Custom parameter names must be two or more simple identifiers separated by dots." msgstr "Selbstdefinierte Parameternamen müssen zwei oder mehr einfache Bezeichner getrennt durch Punkte sein." -#: utils/misc/guc.c:5698 +#: utils/misc/guc.c:5710 #, c-format msgid "\"%s\" is a reserved prefix." msgstr "»%s« ist ein reservierter Präfix." -#: utils/misc/guc.c:5712 +#: utils/misc/guc.c:5724 #, c-format msgid "unrecognized configuration parameter \"%s\"" msgstr "unbekannter Konfigurationsparameter »%s«" -#: utils/misc/guc.c:6104 +#: utils/misc/guc.c:6116 #, c-format msgid "%s: could not access directory \"%s\": %s\n" msgstr "%s: konnte nicht auf Verzeichnis »%s« zugreifen: %s\n" -#: utils/misc/guc.c:6109 +#: utils/misc/guc.c:6121 #, c-format msgid "Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n" msgstr "Führen Sie initdb oder pg_basebackup aus, um ein PostgreSQL-Datenverzeichnis zu initialisieren.\n" -#: utils/misc/guc.c:6129 +#: utils/misc/guc.c:6141 #, c-format msgid "" "%s does not know where to find the server configuration file.\n" @@ -28852,12 +28889,12 @@ msgstr "" "Sie müssen die Kommandozeilenoption --config-file oder -D angegeben oder\n" "die Umgebungsvariable PGDATA setzen.\n" -#: utils/misc/guc.c:6148 +#: utils/misc/guc.c:6160 #, c-format msgid "%s: could not access the server configuration file \"%s\": %s\n" msgstr "%s: konnte nicht auf die Serverkonfigurationsdatei »%s« zugreifen: %s\n" -#: utils/misc/guc.c:6174 +#: utils/misc/guc.c:6186 #, c-format msgid "" "%s does not know where to find the database system data.\n" @@ -28867,7 +28904,7 @@ msgstr "" "zu finden sind. Sie können dies mit »data_directory« in »%s«, mit der\n" "Kommandozeilenoption -D oder der Umgebungsvariable PGDATA angeben.\n" -#: utils/misc/guc.c:6222 +#: utils/misc/guc.c:6234 #, c-format msgid "" "%s does not know where to find the \"hba\" configuration file.\n" @@ -28877,7 +28914,7 @@ msgstr "" "Sie können dies mit »hba_file« in »%s«, mit der\n" "Kommandozeilenoption -D oder der Umgebungsvariable PGDATA angeben.\n" -#: utils/misc/guc.c:6245 +#: utils/misc/guc.c:6257 #, c-format msgid "" "%s does not know where to find the \"ident\" configuration file.\n" @@ -28887,187 +28924,192 @@ msgstr "" "Sie können dies mit »ident_file« in »%s«, mit der\n" "Kommandozeilenoption -D oder der Umgebungsvariable PGDATA angeben.\n" -#: utils/misc/guc.c:7176 +#: utils/misc/guc.c:7188 msgid "Value exceeds integer range." msgstr "Wert überschreitet Bereich für ganze Zahlen." -#: utils/misc/guc.c:7412 +#: utils/misc/guc.c:7424 #, c-format msgid "%d%s%s is outside the valid range for parameter \"%s\" (%d .. %d)" msgstr "%d%s%s ist außerhalb des gültigen Bereichs für Parameter »%s« (%d ... %d)" -#: utils/misc/guc.c:7448 +#: utils/misc/guc.c:7460 #, c-format msgid "%g%s%s is outside the valid range for parameter \"%s\" (%g .. %g)" msgstr "%g%s%s ist außerhalb des gültigen Bereichs für Parameter »%s« (%g ... %g)" -#: utils/misc/guc.c:7649 utils/misc/guc.c:9103 +#: utils/misc/guc.c:7670 #, c-format -msgid "cannot set parameters during a parallel operation" -msgstr "während einer parallelen Operation können keine Parameter gesetzt werden" +msgid "parameter \"%s\" cannot be set during a parallel operation" +msgstr "Parameter »%s« kann nicht während einer parallelen Operation gesetzt werden" -#: utils/misc/guc.c:7668 utils/misc/guc.c:8927 +#: utils/misc/guc.c:7686 utils/misc/guc.c:8945 #, c-format msgid "parameter \"%s\" cannot be changed" msgstr "Parameter »%s« kann nicht geändert werden" -#: utils/misc/guc.c:7701 +#: utils/misc/guc.c:7719 #, c-format msgid "parameter \"%s\" cannot be changed now" msgstr "Parameter »%s« kann jetzt nicht geändert werden" -#: utils/misc/guc.c:7728 utils/misc/guc.c:7790 utils/misc/guc.c:8903 -#: utils/misc/guc.c:11811 +#: utils/misc/guc.c:7746 utils/misc/guc.c:7808 utils/misc/guc.c:8921 +#: utils/misc/guc.c:11829 #, c-format msgid "permission denied to set parameter \"%s\"" msgstr "keine Berechtigung, um Parameter »%s« zu setzen" -#: utils/misc/guc.c:7770 +#: utils/misc/guc.c:7788 #, c-format msgid "parameter \"%s\" cannot be set after connection start" msgstr "Parameter »%s« kann nach Start der Verbindung nicht geändert werden" -#: utils/misc/guc.c:7829 +#: utils/misc/guc.c:7847 #, c-format msgid "cannot set parameter \"%s\" within security-definer function" msgstr "Parameter »%s« kann nicht in einer Security-Definer-Funktion gesetzt werden" -#: utils/misc/guc.c:8482 utils/misc/guc.c:8529 utils/misc/guc.c:10016 +#: utils/misc/guc.c:8500 utils/misc/guc.c:8547 utils/misc/guc.c:10034 #, c-format msgid "must be superuser or have privileges of pg_read_all_settings to examine \"%s\"" msgstr "nur Superuser oder Rollen mit den Privilegien von pg_read_all_settings können »%s« ansehen" -#: utils/misc/guc.c:8613 +#: utils/misc/guc.c:8631 #, c-format msgid "SET %s takes only one argument" msgstr "SET %s darf nur ein Argument haben" -#: utils/misc/guc.c:8893 +#: utils/misc/guc.c:8911 #, c-format msgid "permission denied to perform ALTER SYSTEM RESET ALL" msgstr "keine Berechtigung um ALTER SYSTEM RESET ALL auszuführen" -#: utils/misc/guc.c:8960 +#: utils/misc/guc.c:8978 #, c-format msgid "parameter value for ALTER SYSTEM must not contain a newline" msgstr "Parameterwert für ALTER SYSTEM darf keine Newline enthalten" -#: utils/misc/guc.c:9005 +#: utils/misc/guc.c:9023 #, c-format msgid "could not parse contents of file \"%s\"" msgstr "konnte Inhalt der Datei »%s« nicht parsen" -#: utils/misc/guc.c:9179 +#: utils/misc/guc.c:9121 +#, c-format +msgid "cannot set parameters during a parallel operation" +msgstr "während einer parallelen Operation können keine Parameter gesetzt werden" + +#: utils/misc/guc.c:9197 #, c-format msgid "SET LOCAL TRANSACTION SNAPSHOT is not implemented" msgstr "SET LOCAL TRANSACTION SNAPSHOT ist nicht implementiert" -#: utils/misc/guc.c:9266 +#: utils/misc/guc.c:9284 #, c-format msgid "SET requires parameter name" msgstr "SET benötigt Parameternamen" -#: utils/misc/guc.c:9399 +#: utils/misc/guc.c:9417 #, c-format msgid "attempt to redefine parameter \"%s\"" msgstr "Versuch, den Parameter »%s« zu redefinieren" -#: utils/misc/guc.c:9726 +#: utils/misc/guc.c:9744 #, c-format msgid "invalid configuration parameter name \"%s\", removing it" msgstr "ungültiger Konfigurationsparametername »%s«, wird entfernt" -#: utils/misc/guc.c:9728 +#: utils/misc/guc.c:9746 #, c-format msgid "\"%s\" is now a reserved prefix." msgstr "»%s« ist jetzt ein reservierter Präfix." -#: utils/misc/guc.c:11251 +#: utils/misc/guc.c:11269 #, c-format msgid "while setting parameter \"%s\" to \"%s\"" msgstr "beim Setzen von Parameter »%s« auf »%s«" -#: utils/misc/guc.c:11420 +#: utils/misc/guc.c:11438 #, c-format msgid "parameter \"%s\" could not be set" msgstr "Parameter »%s« kann nicht gesetzt werden" -#: utils/misc/guc.c:11512 +#: utils/misc/guc.c:11530 #, c-format msgid "could not parse setting for parameter \"%s\"" msgstr "konnte Wert von Parameter »%s« nicht lesen" -#: utils/misc/guc.c:11943 +#: utils/misc/guc.c:11961 #, c-format msgid "invalid value for parameter \"%s\": %g" msgstr "ungültiger Wert für Parameter »%s«: %g" -#: utils/misc/guc.c:12256 +#: utils/misc/guc.c:12274 #, c-format msgid "\"temp_buffers\" cannot be changed after any temporary tables have been accessed in the session." msgstr "»temp_buffers« kann nicht geändert werden, nachdem in der Sitzung auf temporäre Tabellen zugriffen wurde." -#: utils/misc/guc.c:12268 +#: utils/misc/guc.c:12286 #, c-format msgid "Bonjour is not supported by this build" msgstr "Bonjour wird von dieser Installation nicht unterstützt" -#: utils/misc/guc.c:12281 +#: utils/misc/guc.c:12299 #, c-format msgid "SSL is not supported by this build" msgstr "SSL wird von dieser Installation nicht unterstützt" -#: utils/misc/guc.c:12293 +#: utils/misc/guc.c:12311 #, c-format msgid "Cannot enable parameter when \"log_statement_stats\" is true." msgstr "Kann Parameter nicht einschalten, wenn »log_statement_stats« an ist." -#: utils/misc/guc.c:12305 +#: utils/misc/guc.c:12323 #, c-format msgid "Cannot enable \"log_statement_stats\" when \"log_parser_stats\", \"log_planner_stats\", or \"log_executor_stats\" is true." msgstr "Kann »log_statement_stats« nicht einschalten, wenn »log_parser_stats«, »log_planner_stats« oder »log_executor_stats« an ist." -#: utils/misc/guc.c:12535 +#: utils/misc/guc.c:12553 #, c-format msgid "effective_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "effective_io_concurrency muss auf Plattformen ohne posix_fadvise() auf 0 gesetzt sein." -#: utils/misc/guc.c:12548 +#: utils/misc/guc.c:12566 #, c-format msgid "maintenance_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "maintenance_io_concurrency muss auf Plattformen ohne posix_fadvise() auf 0 gesetzt sein." -#: utils/misc/guc.c:12562 +#: utils/misc/guc.c:12580 #, c-format msgid "huge_page_size must be 0 on this platform." msgstr "huge_page_size muss auf dieser Plattform 0 sein." -#: utils/misc/guc.c:12574 +#: utils/misc/guc.c:12592 #, c-format msgid "client_connection_check_interval must be set to 0 on this platform." msgstr "client_connection_check_interval muss auf dieser Plattform auf 0 gesetzt sein." -#: utils/misc/guc.c:12686 +#: utils/misc/guc.c:12704 #, c-format msgid "invalid character" msgstr "ungültiges Zeichen" -#: utils/misc/guc.c:12746 +#: utils/misc/guc.c:12764 #, c-format msgid "recovery_target_timeline is not a valid number." msgstr "recovery_target_timeline ist keine gültige Zahl." -#: utils/misc/guc.c:12786 +#: utils/misc/guc.c:12804 #, c-format msgid "multiple recovery targets specified" msgstr "mehrere Wiederherstellungsziele angegeben" -#: utils/misc/guc.c:12787 +#: utils/misc/guc.c:12805 #, c-format msgid "At most one of recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid may be set." msgstr "Höchstens eins aus recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid darf gesetzt sein." -#: utils/misc/guc.c:12795 +#: utils/misc/guc.c:12813 #, c-format msgid "The only allowed value is \"immediate\"." msgstr "Der einzige erlaubte Wert ist »immediate«." @@ -29221,7 +29263,7 @@ msgstr "aktives Portal »%s« kann nicht gelöscht werden" msgid "cannot PREPARE a transaction that has created a cursor WITH HOLD" msgstr "PREPARE kann nicht in einer Transaktion ausgeführt werden, die einen Cursor mit WITH HOLD erzeugt hat" -#: utils/mmgr/portalmem.c:1232 +#: utils/mmgr/portalmem.c:1235 #, c-format msgid "cannot perform transaction commands inside a cursor loop that is not read-only" msgstr "in einer Cursor-Schleife, die nicht nur liest, können keine Transaktionsbefehle ausgeführt werden" diff --git a/src/backend/po/es.po b/src/backend/po/es.po index 5df0e16ffa9..dbe03229798 100644 --- a/src/backend/po/es.po +++ b/src/backend/po/es.po @@ -66,7 +66,7 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL server 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:46+0000\n" +"POT-Creation-Date: 2024-11-09 06:15+0000\n" "PO-Revision-Date: 2024-08-02 19:33-0400\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -132,24 +132,24 @@ msgstr "no se pudo abrir archivo «%s» para lectura: %m" #: ../common/controldata_utils.c:94 ../common/controldata_utils.c:96 #: access/transam/timeline.c:143 access/transam/timeline.c:362 -#: access/transam/twophase.c:1349 access/transam/xlog.c:3209 -#: access/transam/xlog.c:4024 access/transam/xlogrecovery.c:1223 +#: access/transam/twophase.c:1349 access/transam/xlog.c:3210 +#: access/transam/xlog.c:4025 access/transam/xlogrecovery.c:1223 #: access/transam/xlogrecovery.c:1315 access/transam/xlogrecovery.c:1352 -#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1848 +#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1838 #: commands/extension.c:3411 libpq/hba.c:505 replication/logical/origin.c:729 -#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4958 +#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4963 #: replication/logical/snapbuild.c:1879 replication/logical/snapbuild.c:1921 #: replication/logical/snapbuild.c:1948 replication/slot.c:1807 #: replication/slot.c:1848 replication/walsender.c:658 #: storage/file/buffile.c:463 storage/file/copydir.c:195 -#: utils/adt/genfile.c:197 utils/adt/misc.c:863 utils/cache/relmapper.c:816 +#: utils/adt/genfile.c:197 utils/adt/misc.c:856 utils/cache/relmapper.c:816 #, c-format msgid "could not read file \"%s\": %m" msgstr "no se pudo leer el archivo «%s»: %m" #: ../common/controldata_utils.c:102 ../common/controldata_utils.c:105 -#: access/transam/xlog.c:3214 access/transam/xlog.c:4029 -#: backup/basebackup.c:1852 replication/logical/origin.c:734 +#: access/transam/xlog.c:3215 access/transam/xlog.c:4030 +#: backup/basebackup.c:1842 replication/logical/origin.c:734 #: replication/logical/origin.c:773 replication/logical/snapbuild.c:1884 #: replication/logical/snapbuild.c:1926 replication/logical/snapbuild.c:1953 #: replication/slot.c:1811 replication/slot.c:1852 replication/walsender.c:663 @@ -163,17 +163,17 @@ msgstr "no se pudo leer el archivo «%s»: leídos %d de %zu" #: access/heap/rewriteheap.c:1178 access/heap/rewriteheap.c:1281 #: access/transam/timeline.c:392 access/transam/timeline.c:438 #: access/transam/timeline.c:516 access/transam/twophase.c:1361 -#: access/transam/twophase.c:1773 access/transam/xlog.c:3056 -#: access/transam/xlog.c:3249 access/transam/xlog.c:3254 -#: access/transam/xlog.c:3392 access/transam/xlog.c:3994 -#: access/transam/xlog.c:4740 commands/copyfrom.c:1585 commands/copyto.c:327 +#: access/transam/twophase.c:1780 access/transam/xlog.c:3057 +#: access/transam/xlog.c:3250 access/transam/xlog.c:3255 +#: access/transam/xlog.c:3393 access/transam/xlog.c:3995 +#: access/transam/xlog.c:4741 commands/copyfrom.c:1585 commands/copyto.c:327 #: libpq/be-fsstubs.c:455 libpq/be-fsstubs.c:525 #: replication/logical/origin.c:667 replication/logical/origin.c:806 -#: replication/logical/reorderbuffer.c:5016 +#: replication/logical/reorderbuffer.c:5021 #: replication/logical/snapbuild.c:1788 replication/logical/snapbuild.c:1961 #: replication/slot.c:1698 replication/slot.c:1859 replication/walsender.c:673 #: storage/file/copydir.c:218 storage/file/copydir.c:223 storage/file/fd.c:745 -#: storage/file/fd.c:3643 storage/file/fd.c:3749 utils/cache/relmapper.c:831 +#: storage/file/fd.c:3638 storage/file/fd.c:3744 utils/cache/relmapper.c:831 #: utils/cache/relmapper.c:968 #, c-format msgid "could not close file \"%s\": %m" @@ -198,33 +198,33 @@ msgstr "" "directorio de datos." #: ../common/controldata_utils.c:219 ../common/controldata_utils.c:224 -#: ../common/file_utils.c:232 ../common/file_utils.c:291 -#: ../common/file_utils.c:365 access/heap/rewriteheap.c:1264 +#: ../common/file_utils.c:227 ../common/file_utils.c:286 +#: ../common/file_utils.c:360 access/heap/rewriteheap.c:1264 #: access/transam/timeline.c:111 access/transam/timeline.c:251 #: access/transam/timeline.c:348 access/transam/twophase.c:1305 -#: access/transam/xlog.c:2943 access/transam/xlog.c:3125 -#: access/transam/xlog.c:3164 access/transam/xlog.c:3359 -#: access/transam/xlog.c:4014 access/transam/xlogrecovery.c:4243 +#: access/transam/xlog.c:2944 access/transam/xlog.c:3126 +#: access/transam/xlog.c:3165 access/transam/xlog.c:3360 +#: access/transam/xlog.c:4015 access/transam/xlogrecovery.c:4243 #: access/transam/xlogrecovery.c:4346 access/transam/xlogutils.c:852 -#: backup/basebackup.c:522 backup/basebackup.c:1524 postmaster/syslogger.c:1560 -#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3611 -#: replication/logical/reorderbuffer.c:4162 -#: replication/logical/reorderbuffer.c:4938 +#: backup/basebackup.c:522 backup/basebackup.c:1518 postmaster/syslogger.c:1560 +#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3616 +#: replication/logical/reorderbuffer.c:4167 +#: replication/logical/reorderbuffer.c:4943 #: replication/logical/snapbuild.c:1743 replication/logical/snapbuild.c:1850 #: replication/slot.c:1779 replication/walsender.c:631 #: replication/walsender.c:2722 storage/file/copydir.c:161 -#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3630 -#: storage/file/fd.c:3720 storage/smgr/md.c:541 utils/cache/relmapper.c:795 +#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3625 +#: storage/file/fd.c:3715 storage/smgr/md.c:541 utils/cache/relmapper.c:795 #: utils/cache/relmapper.c:912 utils/error/elog.c:1953 #: utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 -#: utils/init/miscinit.c:1585 utils/misc/guc.c:8998 utils/misc/guc.c:9047 +#: utils/init/miscinit.c:1585 utils/misc/guc.c:9016 utils/misc/guc.c:9065 #, c-format msgid "could not open file \"%s\": %m" msgstr "no se pudo abrir el archivo «%s»: %m" #: ../common/controldata_utils.c:240 ../common/controldata_utils.c:243 -#: access/transam/twophase.c:1746 access/transam/twophase.c:1755 -#: access/transam/xlog.c:8685 access/transam/xlogfuncs.c:600 +#: access/transam/twophase.c:1753 access/transam/twophase.c:1762 +#: access/transam/xlog.c:8710 access/transam/xlogfuncs.c:600 #: backup/basebackup_server.c:173 backup/basebackup_server.c:266 #: postmaster/postmaster.c:5633 postmaster/syslogger.c:1571 #: postmaster/syslogger.c:1584 postmaster/syslogger.c:1597 @@ -234,17 +234,17 @@ msgid "could not write file \"%s\": %m" msgstr "no se pudo escribir el archivo «%s»: %m" #: ../common/controldata_utils.c:257 ../common/controldata_utils.c:262 -#: ../common/file_utils.c:303 ../common/file_utils.c:373 +#: ../common/file_utils.c:298 ../common/file_utils.c:368 #: access/heap/rewriteheap.c:960 access/heap/rewriteheap.c:1172 #: access/heap/rewriteheap.c:1275 access/transam/timeline.c:432 -#: access/transam/timeline.c:510 access/transam/twophase.c:1767 -#: access/transam/xlog.c:3049 access/transam/xlog.c:3243 -#: access/transam/xlog.c:3987 access/transam/xlog.c:7988 -#: access/transam/xlog.c:8031 backup/basebackup_server.c:207 +#: access/transam/timeline.c:510 access/transam/twophase.c:1774 +#: access/transam/xlog.c:3050 access/transam/xlog.c:3244 +#: access/transam/xlog.c:3988 access/transam/xlog.c:8013 +#: access/transam/xlog.c:8056 backup/basebackup_server.c:207 #: commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 #: replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 -#: storage/file/fd.c:3741 storage/smgr/md.c:992 storage/smgr/md.c:1033 -#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8767 +#: storage/file/fd.c:3736 storage/smgr/md.c:992 storage/smgr/md.c:1033 +#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8785 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "no se pudo sincronizar (fsync) archivo «%s»: %m" @@ -272,8 +272,8 @@ msgstr "no se pudo sincronizar (fsync) archivo «%s»: %m" #: utils/adt/pg_locale.c:617 utils/adt/regexp.c:224 utils/fmgr/dfmgr.c:229 #: utils/hash/dynahash.c:513 utils/hash/dynahash.c:613 #: utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 -#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5192 -#: utils/misc/guc.c:5208 utils/misc/guc.c:5221 utils/misc/guc.c:8745 +#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5204 +#: utils/misc/guc.c:5220 utils/misc/guc.c:5233 utils/misc/guc.c:8763 #: utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 #: utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 #: utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 @@ -325,8 +325,8 @@ msgstr "no se pudo encontrar un «%s» para ejecutar" msgid "could not change directory to \"%s\": %m" msgstr "no se pudo cambiar al directorio «%s»: %m" -#: ../common/exec.c:299 access/transam/xlog.c:8334 backup/basebackup.c:1344 -#: utils/adt/misc.c:342 +#: ../common/exec.c:299 access/transam/xlog.c:8359 backup/basebackup.c:1338 +#: utils/adt/misc.c:335 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "no se pudo leer el enlace simbólico «%s»: %m" @@ -352,22 +352,22 @@ msgstr "memoria agotada\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "no se puede duplicar un puntero nulo (error interno)\n" -#: ../common/file_utils.c:87 ../common/file_utils.c:451 -#: ../common/file_utils.c:455 access/transam/twophase.c:1317 +#: ../common/file_utils.c:86 ../common/file_utils.c:446 +#: ../common/file_utils.c:450 access/transam/twophase.c:1317 #: access/transam/xlogarchive.c:111 access/transam/xlogarchive.c:237 #: backup/basebackup.c:338 backup/basebackup.c:528 backup/basebackup.c:599 -#: commands/copyfrom.c:1535 commands/copyto.c:725 commands/extension.c:3390 -#: commands/tablespace.c:826 commands/tablespace.c:917 postmaster/pgarch.c:597 +#: commands/copyfrom.c:1535 commands/copyto.c:729 commands/extension.c:3390 +#: commands/tablespace.c:825 commands/tablespace.c:914 postmaster/pgarch.c:597 #: replication/logical/snapbuild.c:1660 storage/file/copydir.c:68 #: storage/file/copydir.c:107 storage/file/fd.c:1951 storage/file/fd.c:2037 -#: storage/file/fd.c:3243 storage/file/fd.c:3450 utils/adt/dbsize.c:92 +#: storage/file/fd.c:3243 storage/file/fd.c:3449 utils/adt/dbsize.c:92 #: utils/adt/dbsize.c:244 utils/adt/dbsize.c:324 utils/adt/genfile.c:413 -#: utils/adt/genfile.c:588 utils/adt/misc.c:327 guc-file.l:1061 +#: utils/adt/genfile.c:588 utils/adt/misc.c:321 guc-file.l:1061 #, c-format msgid "could not stat file \"%s\": %m" msgstr "no se pudo hacer stat al archivo «%s»: %m" -#: ../common/file_utils.c:166 ../common/pgfnames.c:48 commands/tablespace.c:749 +#: ../common/file_utils.c:161 ../common/pgfnames.c:48 commands/tablespace.c:749 #: commands/tablespace.c:759 postmaster/postmaster.c:1579 #: storage/file/fd.c:2812 storage/file/reinit.c:126 utils/adt/misc.c:235 #: utils/misc/tzparser.c:338 @@ -375,12 +375,12 @@ msgstr "no se pudo hacer stat al archivo «%s»: %m" msgid "could not open directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" -#: ../common/file_utils.c:200 ../common/pgfnames.c:69 storage/file/fd.c:2824 +#: ../common/file_utils.c:195 ../common/pgfnames.c:69 storage/file/fd.c:2824 #, c-format msgid "could not read directory \"%s\": %m" msgstr "no se pudo leer el directorio «%s»: %m" -#: ../common/file_utils.c:383 access/transam/xlogarchive.c:426 +#: ../common/file_utils.c:378 access/transam/xlogarchive.c:426 #: postmaster/syslogger.c:1608 replication/logical/snapbuild.c:1800 #: replication/slot.c:721 replication/slot.c:1570 replication/slot.c:1712 #: storage/file/fd.c:755 storage/file/fd.c:853 utils/time/snapmgr.c:1282 @@ -642,22 +642,22 @@ msgstr "no se pudo determinar la codificación para el codeset «%s»" msgid "could not determine encoding for locale \"%s\": codeset is \"%s\"" msgstr "no se pudo determinar la codificación para la configuración regional «%s»: el codeset es «%s»" -#: ../port/dirmod.c:218 +#: ../port/dirmod.c:244 #, c-format msgid "could not set junction for \"%s\": %s" msgstr "no se pudo definir un junction para «%s»: %s" -#: ../port/dirmod.c:221 +#: ../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "no se pudo definir un junction para «%s»: %s\n" -#: ../port/dirmod.c:295 +#: ../port/dirmod.c:321 #, c-format msgid "could not get junction for \"%s\": %s" msgstr "no se pudo obtener junction para «%s»: %s" -#: ../port/dirmod.c:298 +#: ../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "no se pudo obtener junction para «%s»: %s\n" @@ -755,7 +755,7 @@ msgid "could not open parent table of index \"%s\"" msgstr "no se pudo abrir la tabla padre del índice «%s»" #: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 -#: parser/parse_utilcmd.c:2303 +#: parser/parse_utilcmd.c:2331 #, c-format msgid "index \"%s\" is not valid" msgstr "el índice «%s» no es válido" @@ -887,7 +887,7 @@ msgid "index row requires %zu bytes, maximum size is %zu" msgstr "fila de índice requiere %zu bytes, tamaño máximo es %zu" #: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 -#: tcop/postgres.c:1921 +#: tcop/postgres.c:1937 #, c-format msgid "unsupported format code: %d" msgstr "código de formato no soportado: %d" @@ -915,7 +915,7 @@ msgstr "RESET no debe incluir valores de parámetros" msgid "unrecognized parameter namespace \"%s\"" msgstr "espacio de nombre de parámetro «%s» no reconocido" -#: access/common/reloptions.c:1303 utils/misc/guc.c:13002 +#: access/common/reloptions.c:1303 utils/misc/guc.c:13020 #, c-format msgid "tables declared WITH OIDS are not supported" msgstr "las tablas declaradas WITH OIDS no están soportadas" @@ -1109,7 +1109,7 @@ msgstr "no se pudo determinar qué ordenamiento usar para el hashing de cadenas" #: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 #: catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 -#: commands/indexcmds.c:1955 commands/tablecmds.c:17596 commands/view.c:86 +#: commands/indexcmds.c:1955 commands/tablecmds.c:17734 commands/view.c:86 #: regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 #: utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 #: utils/adt/like_support.c:1025 utils/adt/varchar.c:733 @@ -1164,37 +1164,43 @@ msgstr "la familia de operadores «%s» del método de acceso %s no tiene funci msgid "operator family \"%s\" of access method %s is missing cross-type operator(s)" msgstr "faltan operadores entre tipos en la familia de operadores «%s» del método de acceso %s" -#: access/heap/heapam.c:2226 +#: access/heap/heapam.c:2236 #, c-format msgid "cannot insert tuples in a parallel worker" msgstr "no se pueden insertar tuplas en un ayudante paralelo" -#: access/heap/heapam.c:2697 +#: access/heap/heapam.c:2707 #, c-format msgid "cannot delete tuples during a parallel operation" msgstr "no se pueden eliminar tuplas durante una operación paralela" -#: access/heap/heapam.c:2743 +#: access/heap/heapam.c:2753 #, c-format msgid "attempted to delete invisible tuple" msgstr "se intentó eliminar una tupla invisible" -#: access/heap/heapam.c:3188 access/heap/heapam.c:6032 +#: access/heap/heapam.c:3198 access/heap/heapam.c:6405 access/index/genam.c:819 #, c-format msgid "cannot update tuples during a parallel operation" msgstr "no se pueden actualizar tuplas durante una operación paralela" -#: access/heap/heapam.c:3312 +#: access/heap/heapam.c:3326 #, c-format msgid "attempted to update invisible tuple" msgstr "se intentó actualizar una tupla invisible" -#: access/heap/heapam.c:4676 access/heap/heapam.c:4714 -#: access/heap/heapam.c:4979 access/heap/heapam_handler.c:456 +#: access/heap/heapam.c:4812 access/heap/heapam.c:4850 +#: access/heap/heapam.c:5115 access/heap/heapam_handler.c:456 #, c-format msgid "could not obtain lock on row in relation \"%s\"" msgstr "no se pudo bloquear un candado en la fila de la relación «%s»" +#: access/heap/heapam.c:6218 commands/trigger.c:3441 +#: executor/nodeModifyTable.c:2362 executor/nodeModifyTable.c:2453 +#, c-format +msgid "tuple to be updated was already modified by an operation triggered by the current command" +msgstr "el registro a ser actualizado ya fue modificado por una operación disparada por la orden actual" + #: access/heap/heapam_handler.c:401 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update" @@ -1212,8 +1218,8 @@ msgstr "no se pudo escribir al archivo «%s», se escribió %d de %d: %m" #: access/heap/rewriteheap.c:1013 access/heap/rewriteheap.c:1131 #: access/transam/timeline.c:329 access/transam/timeline.c:485 -#: access/transam/xlog.c:2965 access/transam/xlog.c:3178 -#: access/transam/xlog.c:3966 access/transam/xlog.c:8668 +#: access/transam/xlog.c:2966 access/transam/xlog.c:3179 +#: access/transam/xlog.c:3967 access/transam/xlog.c:8693 #: access/transam/xlogfuncs.c:594 backup/basebackup_server.c:149 #: backup/basebackup_server.c:242 commands/dbcommands.c:494 #: postmaster/postmaster.c:4607 postmaster/postmaster.c:5620 @@ -1230,24 +1236,24 @@ msgstr "no se pudo truncar el archivo «%s» a %u: %m" #: access/heap/rewriteheap.c:1159 access/transam/timeline.c:384 #: access/transam/timeline.c:424 access/transam/timeline.c:502 -#: access/transam/xlog.c:3037 access/transam/xlog.c:3234 -#: access/transam/xlog.c:3978 commands/dbcommands.c:506 +#: access/transam/xlog.c:3038 access/transam/xlog.c:3235 +#: access/transam/xlog.c:3979 commands/dbcommands.c:506 #: postmaster/postmaster.c:4617 postmaster/postmaster.c:4627 #: replication/logical/origin.c:599 replication/logical/origin.c:641 #: replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 #: replication/slot.c:1666 storage/file/buffile.c:537 #: storage/file/copydir.c:207 utils/init/miscinit.c:1449 -#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8728 -#: utils/misc/guc.c:8759 utils/misc/guc.c:10757 utils/misc/guc.c:10771 +#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8746 +#: utils/misc/guc.c:8777 utils/misc/guc.c:10775 utils/misc/guc.c:10789 #: utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 #, c-format msgid "could not write to file \"%s\": %m" msgstr "no se pudo escribir a archivo «%s»: %m" -#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1706 +#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1713 #: access/transam/xlogarchive.c:119 access/transam/xlogarchive.c:436 #: postmaster/postmaster.c:1157 postmaster/syslogger.c:1537 -#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4431 +#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4436 #: replication/logical/snapbuild.c:1702 replication/logical/snapbuild.c:2118 #: replication/slot.c:1763 storage/file/fd.c:795 storage/file/fd.c:3263 #: storage/file/fd.c:3325 storage/file/reinit.c:262 storage/ipc/dsm.c:317 @@ -1477,19 +1483,19 @@ msgstr "el método de acceso «%s» no es de tipo %s" msgid "index access method \"%s\" does not have a handler" msgstr "el método de acceso «%s» no tiene manejador" -#: access/index/genam.c:489 +#: access/index/genam.c:490 #, c-format msgid "transaction aborted during system catalog scan" msgstr "transacción abortada durante recorrido de catálogos de sistema" -#: access/index/genam.c:657 access/index/indexam.c:87 +#: access/index/genam.c:658 access/index/indexam.c:87 #, c-format msgid "cannot access index \"%s\" while it is being reindexed" msgstr "no se puede acceder al índice «%s» mientras está siendo reindexado" #: access/index/indexam.c:208 catalog/objectaddress.c:1376 #: commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 -#: commands/tablecmds.c:17282 commands/tablecmds.c:19076 +#: commands/tablecmds.c:17420 commands/tablecmds.c:19270 #, c-format msgid "\"%s\" is not an index" msgstr "«%s» no es un índice" @@ -1515,7 +1521,7 @@ msgid "This may be because of a non-immutable index expression." msgstr "Esto puede deberse a una expresión de índice no inmutable." #: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 -#: parser/parse_utilcmd.c:2349 +#: parser/parse_utilcmd.c:2377 #, c-format msgid "index \"%s\" is not a btree" msgstr "el índice «%s» no es un btree" @@ -1580,14 +1586,14 @@ msgid "operator family \"%s\" of access method %s is missing support function %d msgstr "falta la función de soporte %3$d para el tipo %4$s de la clase de operadores «%1$s» del método de accesso %2$s" #: access/table/table.c:49 access/table/table.c:83 access/table/table.c:112 -#: access/table/table.c:145 catalog/aclchk.c:1835 +#: access/table/table.c:145 catalog/aclchk.c:1836 #, c-format msgid "\"%s\" is an index" msgstr "«%s» es un índice" #: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 -#: access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:13976 -#: commands/tablecmds.c:17291 +#: access/table/table.c:150 catalog/aclchk.c:1843 commands/tablecmds.c:14106 +#: commands/tablecmds.c:17429 #, c-format msgid "\"%s\" is a composite type" msgstr "«%s» es un tipo compuesto" @@ -1602,7 +1608,7 @@ msgstr "el tid (%u, %u) no es válido para la relación «%s»" msgid "%s cannot be empty." msgstr "%s no puede ser vacío." -#: access/table/tableamapi.c:122 utils/misc/guc.c:12926 +#: access/table/tableamapi.c:122 utils/misc/guc.c:12944 #, c-format msgid "%s is too long (maximum %d characters)." msgstr "%s es demasiado largo (máximo %d caracteres)." @@ -1751,36 +1757,36 @@ msgstr "no se puede truncar hasta el MultiXact %u porque no existe en disco, omi msgid "invalid MultiXactId: %u" msgstr "el MultiXactId no es válido: %u" -#: access/transam/parallel.c:718 access/transam/parallel.c:837 +#: access/transam/parallel.c:731 access/transam/parallel.c:850 #, c-format msgid "parallel worker failed to initialize" msgstr "el ayudante paralelo no pudo iniciar" -#: access/transam/parallel.c:719 access/transam/parallel.c:838 +#: access/transam/parallel.c:732 access/transam/parallel.c:851 #, c-format msgid "More details may be available in the server log." msgstr "Puede haber más detalles disponibles en el log del servidor." -#: access/transam/parallel.c:899 +#: access/transam/parallel.c:912 #, c-format msgid "postmaster exited during a parallel transaction" msgstr "postmaster terminó durante una transacción paralela" -#: access/transam/parallel.c:1086 +#: access/transam/parallel.c:1099 #, c-format msgid "lost connection to parallel worker" msgstr "se ha perdido la conexión al ayudante paralelo" -#: access/transam/parallel.c:1152 access/transam/parallel.c:1154 +#: access/transam/parallel.c:1165 access/transam/parallel.c:1167 msgid "parallel worker" msgstr "ayudante paralelo" -#: access/transam/parallel.c:1307 +#: access/transam/parallel.c:1320 #, c-format msgid "could not map dynamic shared memory segment" msgstr "no se pudo mapear el segmento de memoria compartida dinámica" -#: access/transam/parallel.c:1312 +#: access/transam/parallel.c:1325 #, c-format msgid "invalid magic number in dynamic shared memory segment" msgstr "número mágico no válido en segmento de memoria compartida dinámica" @@ -1959,12 +1965,12 @@ msgstr "Defina max_prepared_transactions a un valor distinto de cero." msgid "transaction identifier \"%s\" is already in use" msgstr "identificador de transacción «%s» ya está siendo utilizado" -#: access/transam/twophase.c:422 access/transam/twophase.c:2518 +#: access/transam/twophase.c:422 access/transam/twophase.c:2525 #, c-format msgid "maximum number of prepared transactions reached" msgstr "se alcanzó el número máximo de transacciones preparadas" -#: access/transam/twophase.c:423 access/transam/twophase.c:2519 +#: access/transam/twophase.c:423 access/transam/twophase.c:2526 #, c-format msgid "Increase max_prepared_transactions (currently %d)." msgstr "Incremente max_prepared_transactions (actualmente es %d)." @@ -2057,64 +2063,64 @@ msgstr "no se pudo leer el archivo de estado de dos fases desde WAL en %X/%X" msgid "expected two-phase state data is not present in WAL at %X/%X" msgstr "los datos de estado de dos fases esperados no están presentes en WAL en %X/%X" -#: access/transam/twophase.c:1734 +#: access/transam/twophase.c:1741 #, c-format msgid "could not recreate file \"%s\": %m" msgstr "no se pudo recrear archivo «%s»: %m" -#: access/transam/twophase.c:1861 +#: access/transam/twophase.c:1868 #, c-format msgid "%u two-phase state file was written for a long-running prepared transaction" msgid_plural "%u two-phase state files were written for long-running prepared transactions" msgstr[0] "%u archivo de estado de dos fases fue escrito para transacción de larga duración" msgstr[1] "%u archivos de estado de dos fases fueron escritos para transacciones de larga duración" -#: access/transam/twophase.c:2094 +#: access/transam/twophase.c:2101 #, c-format msgid "recovering prepared transaction %u from shared memory" msgstr "recuperando transacción preparada %u desde memoria compartida" -#: access/transam/twophase.c:2187 +#: access/transam/twophase.c:2194 #, c-format msgid "removing stale two-phase state file for transaction %u" msgstr "eliminando archivo obsoleto de estado de dos fases para transacción %u" -#: access/transam/twophase.c:2194 +#: access/transam/twophase.c:2201 #, c-format msgid "removing stale two-phase state from memory for transaction %u" msgstr "eliminando de memoria estado de dos fases obsoleto para transacción %u" -#: access/transam/twophase.c:2207 +#: access/transam/twophase.c:2214 #, c-format msgid "removing future two-phase state file for transaction %u" msgstr "eliminando archivo futuro de estado de dos fases para transacción %u" -#: access/transam/twophase.c:2214 +#: access/transam/twophase.c:2221 #, c-format msgid "removing future two-phase state from memory for transaction %u" msgstr "eliminando estado de dos fases futuro de memoria para transacción %u" -#: access/transam/twophase.c:2239 +#: access/transam/twophase.c:2246 #, c-format msgid "corrupted two-phase state file for transaction %u" msgstr "archivo de estado de dos fases corrupto para transacción %u" -#: access/transam/twophase.c:2244 +#: access/transam/twophase.c:2251 #, c-format msgid "corrupted two-phase state in memory for transaction %u" msgstr "estado de dos fases en memoria corrupto para transacción %u" -#: access/transam/twophase.c:2501 +#: access/transam/twophase.c:2508 #, c-format msgid "could not recover two-phase state file for transaction %u" msgstr "no se pudo recobrar archivo de estado de dos fases para transacción %u" -#: access/transam/twophase.c:2503 +#: access/transam/twophase.c:2510 #, c-format msgid "Two-phase state file has been found in WAL record %X/%X, but this transaction has already been restored from disk." msgstr "El archivo de estado en dos fases ha sido encontrado en el registro de WAL %X/%X, pero esta transacción ya ha sido restaurada desde disco." -#: access/transam/twophase.c:2511 jit/jit.c:205 utils/fmgr/dfmgr.c:209 +#: access/transam/twophase.c:2518 jit/jit.c:205 utils/fmgr/dfmgr.c:209 #: utils/fmgr/dfmgr.c:415 #, c-format msgid "could not access file \"%s\": %m" @@ -2264,391 +2270,391 @@ msgstr "no se pueden comprometer subtransacciones durante una operación paralel msgid "cannot have more than 2^32-1 subtransactions in a transaction" msgstr "no se pueden tener más de 2^32-1 subtransacciones en una transacción" -#: access/transam/xlog.c:1465 +#: access/transam/xlog.c:1466 #, c-format msgid "request to flush past end of generated WAL; request %X/%X, current position %X/%X" msgstr "petición para sincronizar (flush) más allá del final del WAL generado; petición %X/%X, posición actual %X/%X" -#: access/transam/xlog.c:2226 +#: access/transam/xlog.c:2227 #, c-format msgid "could not write to log file %s at offset %u, length %zu: %m" msgstr "no se pudo escribir archivo de registro %s en la posición %u, largo %zu: %m" -#: access/transam/xlog.c:3473 access/transam/xlogutils.c:847 +#: access/transam/xlog.c:3474 access/transam/xlogutils.c:847 #: replication/walsender.c:2716 #, c-format msgid "requested WAL segment %s has already been removed" msgstr "el segmento de WAL solicitado %s ya ha sido eliminado" -#: access/transam/xlog.c:3758 +#: access/transam/xlog.c:3759 #, c-format msgid "could not rename file \"%s\": %m" msgstr "no se pudo renombrar el archivo «%s»: %m" -#: access/transam/xlog.c:3800 access/transam/xlog.c:3810 +#: access/transam/xlog.c:3801 access/transam/xlog.c:3811 #, c-format msgid "required WAL directory \"%s\" does not exist" msgstr "no existe el directorio WAL «%s»" -#: access/transam/xlog.c:3816 +#: access/transam/xlog.c:3817 #, c-format msgid "creating missing WAL directory \"%s\"" msgstr "creando el directorio WAL faltante «%s»" -#: access/transam/xlog.c:3819 commands/dbcommands.c:3115 +#: access/transam/xlog.c:3820 commands/dbcommands.c:3135 #, c-format msgid "could not create missing directory \"%s\": %m" msgstr "no se pudo crear el directorio faltante «%s»: %m" -#: access/transam/xlog.c:3886 +#: access/transam/xlog.c:3887 #, c-format msgid "could not generate secret authorization token" msgstr "no se pudo generar un token de autorización secreto" -#: access/transam/xlog.c:4045 access/transam/xlog.c:4054 -#: access/transam/xlog.c:4078 access/transam/xlog.c:4085 -#: access/transam/xlog.c:4092 access/transam/xlog.c:4097 -#: access/transam/xlog.c:4104 access/transam/xlog.c:4111 -#: access/transam/xlog.c:4118 access/transam/xlog.c:4125 -#: access/transam/xlog.c:4132 access/transam/xlog.c:4139 -#: access/transam/xlog.c:4148 access/transam/xlog.c:4155 +#: access/transam/xlog.c:4046 access/transam/xlog.c:4055 +#: access/transam/xlog.c:4079 access/transam/xlog.c:4086 +#: access/transam/xlog.c:4093 access/transam/xlog.c:4098 +#: access/transam/xlog.c:4105 access/transam/xlog.c:4112 +#: access/transam/xlog.c:4119 access/transam/xlog.c:4126 +#: access/transam/xlog.c:4133 access/transam/xlog.c:4140 +#: access/transam/xlog.c:4149 access/transam/xlog.c:4156 #: utils/init/miscinit.c:1606 #, c-format msgid "database files are incompatible with server" msgstr "los archivos de base de datos son incompatibles con el servidor" -#: access/transam/xlog.c:4046 +#: access/transam/xlog.c:4047 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d (0x%08x), but the server was compiled with PG_CONTROL_VERSION %d (0x%08x)." msgstr "Los archivos de base de datos fueron inicializados con PG_CONTROL_VERSION %d (0x%08x), pero el servidor fue compilado con PG_CONTROL_VERSION %d (0x%08x)." -#: access/transam/xlog.c:4050 +#: access/transam/xlog.c:4051 #, c-format msgid "This could be a problem of mismatched byte ordering. It looks like you need to initdb." msgstr "Este puede ser un problema de discordancia en el orden de bytes. Parece que necesitará ejecutar initdb." -#: access/transam/xlog.c:4055 +#: access/transam/xlog.c:4056 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d, but the server was compiled with PG_CONTROL_VERSION %d." msgstr "Los archivos de base de datos fueron inicializados con PG_CONTROL_VERSION %d, pero el servidor fue compilado con PG_CONTROL_VERSION %d." -#: access/transam/xlog.c:4058 access/transam/xlog.c:4082 -#: access/transam/xlog.c:4089 access/transam/xlog.c:4094 +#: access/transam/xlog.c:4059 access/transam/xlog.c:4083 +#: access/transam/xlog.c:4090 access/transam/xlog.c:4095 #, c-format msgid "It looks like you need to initdb." msgstr "Parece que necesita ejecutar initdb." -#: access/transam/xlog.c:4069 +#: access/transam/xlog.c:4070 #, c-format msgid "incorrect checksum in control file" msgstr "la suma de verificación es incorrecta en el archivo de control" -#: access/transam/xlog.c:4079 +#: access/transam/xlog.c:4080 #, c-format msgid "The database cluster was initialized with CATALOG_VERSION_NO %d, but the server was compiled with CATALOG_VERSION_NO %d." msgstr "Los archivos de base de datos fueron inicializados con CATALOG_VERSION_NO %d, pero el servidor fue compilado con CATALOG_VERSION_NO %d." -#: access/transam/xlog.c:4086 +#: access/transam/xlog.c:4087 #, c-format msgid "The database cluster was initialized with MAXALIGN %d, but the server was compiled with MAXALIGN %d." msgstr "Los archivos de la base de datos fueron inicializados con MAXALIGN %d, pero el servidor fue compilado con MAXALIGN %d." -#: access/transam/xlog.c:4093 +#: access/transam/xlog.c:4094 #, c-format msgid "The database cluster appears to use a different floating-point number format than the server executable." msgstr "Los archivos de la base de datos parecen usar un formato de número de coma flotante distinto al del ejecutable del servidor." -#: access/transam/xlog.c:4098 +#: access/transam/xlog.c:4099 #, c-format msgid "The database cluster was initialized with BLCKSZ %d, but the server was compiled with BLCKSZ %d." msgstr "Los archivos de base de datos fueron inicializados con BLCKSZ %d, pero el servidor fue compilado con BLCKSZ %d." -#: access/transam/xlog.c:4101 access/transam/xlog.c:4108 -#: access/transam/xlog.c:4115 access/transam/xlog.c:4122 -#: access/transam/xlog.c:4129 access/transam/xlog.c:4136 -#: access/transam/xlog.c:4143 access/transam/xlog.c:4151 -#: access/transam/xlog.c:4158 +#: access/transam/xlog.c:4102 access/transam/xlog.c:4109 +#: access/transam/xlog.c:4116 access/transam/xlog.c:4123 +#: access/transam/xlog.c:4130 access/transam/xlog.c:4137 +#: access/transam/xlog.c:4144 access/transam/xlog.c:4152 +#: access/transam/xlog.c:4159 #, c-format msgid "It looks like you need to recompile or initdb." msgstr "Parece que necesita recompilar o ejecutar initdb." -#: access/transam/xlog.c:4105 +#: access/transam/xlog.c:4106 #, c-format msgid "The database cluster was initialized with RELSEG_SIZE %d, but the server was compiled with RELSEG_SIZE %d." msgstr "Los archivos de la base de datos fueron inicializados con RELSEG_SIZE %d, pero el servidor fue compilado con RELSEG_SIZE %d." -#: access/transam/xlog.c:4112 +#: access/transam/xlog.c:4113 #, c-format msgid "The database cluster was initialized with XLOG_BLCKSZ %d, but the server was compiled with XLOG_BLCKSZ %d." msgstr "Los archivos de base de datos fueron inicializados con XLOG_BLCKSZ %d, pero el servidor fue compilado con XLOG_BLCKSZ %d." -#: access/transam/xlog.c:4119 +#: access/transam/xlog.c:4120 #, c-format msgid "The database cluster was initialized with NAMEDATALEN %d, but the server was compiled with NAMEDATALEN %d." msgstr "Los archivos de la base de datos fueron inicializados con NAMEDATALEN %d, pero el servidor fue compilado con NAMEDATALEN %d." -#: access/transam/xlog.c:4126 +#: access/transam/xlog.c:4127 #, c-format msgid "The database cluster was initialized with INDEX_MAX_KEYS %d, but the server was compiled with INDEX_MAX_KEYS %d." msgstr "Los archivos de la base de datos fueron inicializados con INDEX_MAX_KEYS %d, pero el servidor fue compilado con INDEX_MAX_KEYS %d." -#: access/transam/xlog.c:4133 +#: access/transam/xlog.c:4134 #, c-format msgid "The database cluster was initialized with TOAST_MAX_CHUNK_SIZE %d, but the server was compiled with TOAST_MAX_CHUNK_SIZE %d." msgstr "Los archivos de la base de datos fueron inicializados con TOAST_MAX_CHUNK_SIZE %d, pero el servidor fue compilado con TOAST_MAX_CHUNK_SIZE %d." -#: access/transam/xlog.c:4140 +#: access/transam/xlog.c:4141 #, c-format msgid "The database cluster was initialized with LOBLKSIZE %d, but the server was compiled with LOBLKSIZE %d." msgstr "Los archivos de base de datos fueron inicializados con LOBLKSIZE %d, pero el servidor fue compilado con LOBLKSIZE %d." -#: access/transam/xlog.c:4149 +#: access/transam/xlog.c:4150 #, c-format msgid "The database cluster was initialized without USE_FLOAT8_BYVAL but the server was compiled with USE_FLOAT8_BYVAL." msgstr "Los archivos de base de datos fueron inicializados sin USE_FLOAT8_BYVAL, pero el servidor fue compilado con USE_FLOAT8_BYVAL." -#: access/transam/xlog.c:4156 +#: access/transam/xlog.c:4157 #, c-format msgid "The database cluster was initialized with USE_FLOAT8_BYVAL but the server was compiled without USE_FLOAT8_BYVAL." msgstr "Los archivos de base de datos fueron inicializados con USE_FLOAT8_BYVAL, pero el servidor fue compilado sin USE_FLOAT8_BYVAL." -#: access/transam/xlog.c:4165 +#: access/transam/xlog.c:4166 #, c-format msgid "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d byte" msgid_plural "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d bytes" msgstr[0] "El tamaño del segmento de WAL debe ser una potencia de dos entre 1 MB y 1 GB, pero el archivo de control especifica %d byte" msgstr[1] "El tamaño del segmento de WAL debe ser una potencia de dos entre 1 MB y 1 GB, pero el archivo de control especifica %d bytes" -#: access/transam/xlog.c:4177 +#: access/transam/xlog.c:4178 #, c-format msgid "\"min_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "«min_wal_size» debe ser al menos el doble de «wal_segment_size»" -#: access/transam/xlog.c:4181 +#: access/transam/xlog.c:4182 #, c-format msgid "\"max_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "«max_wal_size» debe ser al menos el doble de «wal_segment_size»" -#: access/transam/xlog.c:4622 +#: access/transam/xlog.c:4623 #, c-format msgid "could not write bootstrap write-ahead log file: %m" msgstr "no se pudo escribir el archivo WAL de boostrap: %m" -#: access/transam/xlog.c:4630 +#: access/transam/xlog.c:4631 #, c-format msgid "could not fsync bootstrap write-ahead log file: %m" msgstr "no se pudo sincronizar (fsync) el archivo WAL de bootstrap: %m" -#: access/transam/xlog.c:4636 +#: access/transam/xlog.c:4637 #, c-format msgid "could not close bootstrap write-ahead log file: %m" msgstr "no se pudo cerrar el archivo WAL de bootstrap: %m" -#: access/transam/xlog.c:4854 +#: access/transam/xlog.c:4855 #, c-format msgid "WAL was generated with wal_level=minimal, cannot continue recovering" msgstr "el WAL fue generado con wal_level=minimal, no se puede continuar con la recuperación" -#: access/transam/xlog.c:4855 +#: access/transam/xlog.c:4856 #, c-format msgid "This happens if you temporarily set wal_level=minimal on the server." msgstr "Esto sucede si temporalmente define wal_level=minimal en el servidor." -#: access/transam/xlog.c:4856 +#: access/transam/xlog.c:4857 #, c-format msgid "Use a backup taken after setting wal_level to higher than minimal." msgstr "Utilice un respaldo tomado después de establecer wal_level a un valor superior a minimal." -#: access/transam/xlog.c:4920 +#: access/transam/xlog.c:4921 #, c-format msgid "control file contains invalid checkpoint location" msgstr "el archivo de control contiene una ubicación no válida de punto de control" -#: access/transam/xlog.c:4931 +#: access/transam/xlog.c:4932 #, c-format msgid "database system was shut down at %s" msgstr "el sistema de bases de datos fue apagado en %s" -#: access/transam/xlog.c:4937 +#: access/transam/xlog.c:4938 #, c-format msgid "database system was shut down in recovery at %s" msgstr "el sistema de bases de datos fue apagado durante la recuperación en %s" -#: access/transam/xlog.c:4943 +#: access/transam/xlog.c:4944 #, c-format msgid "database system shutdown was interrupted; last known up at %s" msgstr "el apagado del sistema de datos fue interrumpido; última vez registrada en funcionamiento en %s" -#: access/transam/xlog.c:4949 +#: access/transam/xlog.c:4950 #, c-format msgid "database system was interrupted while in recovery at %s" msgstr "el sistema de bases de datos fue interrumpido durante la recuperación en %s" -#: access/transam/xlog.c:4951 +#: access/transam/xlog.c:4952 #, c-format msgid "This probably means that some data is corrupted and you will have to use the last backup for recovery." msgstr "Esto probablemente significa que algunos datos están corruptos y tendrá que usar el respaldo más reciente para la recuperación." -#: access/transam/xlog.c:4957 +#: access/transam/xlog.c:4958 #, c-format msgid "database system was interrupted while in recovery at log time %s" msgstr "el sistema de bases de datos fue interrumpido durante la recuperación en el instante de registro %s" -#: access/transam/xlog.c:4959 +#: access/transam/xlog.c:4960 #, c-format msgid "If this has occurred more than once some data might be corrupted and you might need to choose an earlier recovery target." msgstr "Si esto ha ocurrido más de una vez, algunos datos podrían estar corruptos y podría ser necesario escoger un punto de recuperación anterior." -#: access/transam/xlog.c:4965 +#: access/transam/xlog.c:4966 #, c-format msgid "database system was interrupted; last known up at %s" msgstr "el sistema de bases de datos fue interrumpido; última vez en funcionamiento en %s" -#: access/transam/xlog.c:4971 +#: access/transam/xlog.c:4972 #, c-format msgid "control file contains invalid database cluster state" msgstr "el archivo de control contiene un estado no válido del clúster" -#: access/transam/xlog.c:5356 +#: access/transam/xlog.c:5357 #, c-format msgid "WAL ends before end of online backup" msgstr "WAL termina antes del fin del respaldo en línea" -#: access/transam/xlog.c:5357 +#: access/transam/xlog.c:5358 #, c-format msgid "All WAL generated while online backup was taken must be available at recovery." msgstr "Todo el WAL generado durante el respaldo en línea debe estar disponible durante la recuperación." -#: access/transam/xlog.c:5360 +#: access/transam/xlog.c:5361 #, c-format msgid "WAL ends before consistent recovery point" msgstr "WAL termina antes del punto de recuperación consistente" -#: access/transam/xlog.c:5408 +#: access/transam/xlog.c:5409 #, c-format msgid "selected new timeline ID: %u" msgstr "seleccionado nuevo ID de timeline: %u" -#: access/transam/xlog.c:5441 +#: access/transam/xlog.c:5442 #, c-format msgid "archive recovery complete" msgstr "recuperación completa" -#: access/transam/xlog.c:6047 +#: access/transam/xlog.c:6072 #, c-format msgid "shutting down" msgstr "apagando" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6086 +#: access/transam/xlog.c:6111 #, c-format msgid "restartpoint starting:%s%s%s%s%s%s%s%s" msgstr "empezando restartpoint:%s%s%s%s%s%s%s%s" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6098 +#: access/transam/xlog.c:6123 #, c-format msgid "checkpoint starting:%s%s%s%s%s%s%s%s" msgstr "empezando checkpoint:%s%s%s%s%s%s%s%s" -#: access/transam/xlog.c:6158 +#: access/transam/xlog.c:6183 #, c-format msgid "restartpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "restartpoint completado: se escribió %d buffers (%.1f%%); %d archivo(s) WAL añadido(s), %d eliminado(s), %d reciclado(s); escritura=%ld.%03d s, sincronización=%ld.%03d s, total=%ld.%03d s; archivos sincronizados=%d, más largo=%ld.%03d s, promedio=%ld.%03d s; distancia=%d kB, estimado=%d kB" -#: access/transam/xlog.c:6178 +#: access/transam/xlog.c:6203 #, c-format msgid "checkpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "checkpoint completado: se escribió %d buffers (%.1f%%); %d archivo(s) WAL añadido(s), %d eliminado(s), %d reciclado(s); escritura=%ld.%03d s, sincronización=%ld.%03d s, total=%ld.%03d s; archivos sincronizados=%d, más largo=%ld.%03d s, promedio=%ld.%03d s; distancia=%d kB, estimado=%d kB" -#: access/transam/xlog.c:6620 +#: access/transam/xlog.c:6645 #, c-format msgid "concurrent write-ahead log activity while database system is shutting down" msgstr "hay actividad de WAL mientras el sistema se está apagando" -#: access/transam/xlog.c:7177 +#: access/transam/xlog.c:7202 #, c-format msgid "recovery restart point at %X/%X" msgstr "restartpoint de recuperación en %X/%X" -#: access/transam/xlog.c:7179 +#: access/transam/xlog.c:7204 #, c-format msgid "Last completed transaction was at log time %s." msgstr "Última transacción completada al tiempo de registro %s." -#: access/transam/xlog.c:7426 +#: access/transam/xlog.c:7451 #, c-format msgid "restore point \"%s\" created at %X/%X" msgstr "punto de recuperación «%s» creado en %X/%X" -#: access/transam/xlog.c:7633 +#: access/transam/xlog.c:7658 #, c-format msgid "online backup was canceled, recovery cannot continue" msgstr "el respaldo en línea fue cancelado, la recuperación no puede continuar" -#: access/transam/xlog.c:7691 +#: access/transam/xlog.c:7716 #, c-format msgid "unexpected timeline ID %u (should be %u) in shutdown checkpoint record" msgstr "ID de timeline %u inesperado (debería ser %u) en el registro de checkpoint de detención" -#: access/transam/xlog.c:7749 +#: access/transam/xlog.c:7774 #, c-format msgid "unexpected timeline ID %u (should be %u) in online checkpoint record" msgstr "ID de timeline %u inesperado (debería ser %u) en el registro de checkpoint «online»" -#: access/transam/xlog.c:7778 +#: access/transam/xlog.c:7803 #, c-format msgid "unexpected timeline ID %u (should be %u) in end-of-recovery record" msgstr "ID de timeline %u inesperado (debería ser %u) en el registro de fin-de-recuperación" -#: access/transam/xlog.c:8036 +#: access/transam/xlog.c:8061 #, c-format msgid "could not fsync write-through file \"%s\": %m" msgstr "no se pudo sincronizar (fsync write-through) el archivo «%s»: %m" -#: access/transam/xlog.c:8042 +#: access/transam/xlog.c:8067 #, c-format msgid "could not fdatasync file \"%s\": %m" msgstr "no se pudo sincronizar (fdatasync) archivo «%s»: %m" -#: access/transam/xlog.c:8137 access/transam/xlog.c:8504 +#: access/transam/xlog.c:8162 access/transam/xlog.c:8529 #, c-format msgid "WAL level not sufficient for making an online backup" msgstr "el nivel de WAL no es suficiente para hacer un respaldo en línea" -#: access/transam/xlog.c:8138 access/transam/xlog.c:8505 +#: access/transam/xlog.c:8163 access/transam/xlog.c:8530 #: access/transam/xlogfuncs.c:199 #, c-format msgid "wal_level must be set to \"replica\" or \"logical\" at server start." msgstr "wal_level debe ser definido a «replica» o «logical» al inicio del servidor." -#: access/transam/xlog.c:8143 +#: access/transam/xlog.c:8168 #, c-format msgid "backup label too long (max %d bytes)" msgstr "la etiqueta de respaldo es demasiado larga (máximo %d bytes)" -#: access/transam/xlog.c:8259 +#: access/transam/xlog.c:8284 #, c-format msgid "WAL generated with full_page_writes=off was replayed since last restartpoint" msgstr "el WAL generado con full_page_writes=off fue restaurado desde el último restartpoint" -#: access/transam/xlog.c:8261 access/transam/xlog.c:8617 +#: access/transam/xlog.c:8286 access/transam/xlog.c:8642 #, c-format msgid "This means that the backup being taken on the standby is corrupt and should not be used. Enable full_page_writes and run CHECKPOINT on the primary, and then try an online backup again." msgstr "Esto significa que el respaldo que estaba siendo tomado en el standby está corrupto y no debería usarse. Active full_page_writes y ejecute CHECKPOINT en el primario, luego trate de ejecutar un respaldo en línea nuevamente." -#: access/transam/xlog.c:8341 backup/basebackup.c:1349 utils/adt/misc.c:347 +#: access/transam/xlog.c:8366 backup/basebackup.c:1343 utils/adt/misc.c:340 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "la ruta «%s» del enlace simbólico es demasiado larga" -#: access/transam/xlog.c:8391 backup/basebackup.c:1364 -#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:355 +#: access/transam/xlog.c:8416 backup/basebackup.c:1358 +#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:348 #, c-format msgid "tablespaces are not supported on this platform" msgstr "tablespaces no están soportados en esta plataforma" -#: access/transam/xlog.c:8550 access/transam/xlog.c:8563 +#: access/transam/xlog.c:8575 access/transam/xlog.c:8588 #: access/transam/xlogrecovery.c:1237 access/transam/xlogrecovery.c:1244 #: access/transam/xlogrecovery.c:1303 access/transam/xlogrecovery.c:1383 #: access/transam/xlogrecovery.c:1407 @@ -2656,47 +2662,47 @@ msgstr "tablespaces no están soportados en esta plataforma" msgid "invalid data in file \"%s\"" msgstr "datos no válidos en archivo «%s»" -#: access/transam/xlog.c:8567 backup/basebackup.c:1204 +#: access/transam/xlog.c:8592 backup/basebackup.c:1204 #, c-format msgid "the standby was promoted during online backup" msgstr "el standby fue promovido durante el respaldo en línea" -#: access/transam/xlog.c:8568 backup/basebackup.c:1205 +#: access/transam/xlog.c:8593 backup/basebackup.c:1205 #, c-format msgid "This means that the backup being taken is corrupt and should not be used. Try taking another online backup." msgstr "Esto significa que el respaldo que se estaba tomando está corrupto y no debería ser usado. Trate de ejecutar un nuevo respaldo en línea." -#: access/transam/xlog.c:8615 +#: access/transam/xlog.c:8640 #, c-format msgid "WAL generated with full_page_writes=off was replayed during online backup" msgstr "el WAL generado con full_page_writes=off fue restaurado durante el respaldo en línea" -#: access/transam/xlog.c:8740 +#: access/transam/xlog.c:8765 #, c-format msgid "base backup done, waiting for required WAL segments to be archived" msgstr "respaldo base completo, esperando que se archiven los segmentos WAL requeridos" -#: access/transam/xlog.c:8754 +#: access/transam/xlog.c:8779 #, c-format msgid "still waiting for all required WAL segments to be archived (%d seconds elapsed)" msgstr "todavía en espera de que todos los segmentos WAL requeridos sean archivados (han pasado %d segundos)" -#: access/transam/xlog.c:8756 +#: access/transam/xlog.c:8781 #, c-format msgid "Check that your archive_command is executing properly. You can safely cancel this backup, but the database backup will not be usable without all the WAL segments." msgstr "Verifique que su archive_command se esté ejecutando con normalidad. Puede cancelar este respaldo con confianza, pero el respaldo de la base de datos no será utilizable a menos que disponga de todos los segmentos de WAL." -#: access/transam/xlog.c:8763 +#: access/transam/xlog.c:8788 #, c-format msgid "all required WAL segments have been archived" msgstr "todos los segmentos de WAL requeridos han sido archivados" -#: access/transam/xlog.c:8767 +#: access/transam/xlog.c:8792 #, c-format msgid "WAL archiving is not enabled; you must ensure that all required WAL segments are copied through other means to complete the backup" msgstr "el archivado de WAL no está activo; debe asegurarse que todos los segmentos WAL requeridos se copian por algún otro mecanismo para completar el respaldo" -#: access/transam/xlog.c:8816 +#: access/transam/xlog.c:8841 #, c-format msgid "aborting backup due to backend exiting before pg_backup_stop was called" msgstr "abortando el backup porque el proceso servidor terminó antes de que pg_backup_stop fuera invocada" @@ -3571,44 +3577,44 @@ msgstr "el detalle de compresión no se puede especificar a menos que se active msgid "invalid compression specification: %s" msgstr "especificación de compresión no válida: %s" -#: backup/basebackup.c:1435 +#: backup/basebackup.c:1429 #, c-format msgid "skipping special file \"%s\"" msgstr "omitiendo el archivo especial «%s»" -#: backup/basebackup.c:1554 +#: backup/basebackup.c:1548 #, c-format msgid "invalid segment number %d in file \"%s\"" msgstr "número de segmento %d no válido en archivo «%s»" -#: backup/basebackup.c:1586 +#: backup/basebackup.c:1580 #, c-format msgid "could not verify checksum in file \"%s\", block %u: read buffer size %d and page size %d differ" msgstr "no se pudo verificar el checksum en el archivo «%s», bloque %u: el tamaño de búfer de lectura %d y el tamaño de página %d difieren" -#: backup/basebackup.c:1660 +#: backup/basebackup.c:1654 #, c-format msgid "checksum verification failed in file \"%s\", block %u: calculated %X but expected %X" msgstr "verificación de checksums falló en archivo «%s», bloque %u: calculado %X pero se esperaba %X" -#: backup/basebackup.c:1667 +#: backup/basebackup.c:1661 #, c-format msgid "further checksum verification failures in file \"%s\" will not be reported" msgstr "subsiguientes fallas de verificación de checksums en el archivo «%s» no se reportarán" -#: backup/basebackup.c:1723 +#: backup/basebackup.c:1717 #, c-format msgid "file \"%s\" has a total of %d checksum verification failure" msgid_plural "file \"%s\" has a total of %d checksum verification failures" msgstr[0] "el archivo «%s» tiene un total de %d falla de verificación de checksum" msgstr[1] "el archivo «%s» tiene un total de %d fallas de verificación de checksums" -#: backup/basebackup.c:1769 +#: backup/basebackup.c:1763 #, c-format msgid "file name too long for tar format: \"%s\"" msgstr "nombre de archivo demasiado largo para el formato tar: «%s»" -#: backup/basebackup.c:1774 +#: backup/basebackup.c:1768 #, c-format msgid "symbolic link target too long for tar format: file name \"%s\", target \"%s\"" msgstr "destino de enlace simbólico demasiado largo para el formato tar: nombre de archivo «%s», destino «%s»" @@ -3693,12 +3699,12 @@ msgstr "no se pudo definir la cantidad de procesos ayudantes de compresión a %d msgid "-X requires a power of two value between 1 MB and 1 GB" msgstr "-X require un valor potencia de dos entre 1 MB y 1 GB" -#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3906 +#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3994 #, c-format msgid "--%s requires a value" msgstr "--%s requiere un valor" -#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3911 +#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3999 #, c-format msgid "-c %s requires a value" msgstr "-c %s requiere un valor" @@ -3714,726 +3720,726 @@ msgstr "Pruebe «%s --help» para mayor información.\n" msgid "%s: invalid command-line arguments\n" msgstr "%s: argumentos de línea de órdenes no válidos\n" -#: catalog/aclchk.c:185 +#: catalog/aclchk.c:186 #, c-format msgid "grant options can only be granted to roles" msgstr "la opción de grant sólo puede ser otorgada a roles" -#: catalog/aclchk.c:307 +#: catalog/aclchk.c:308 #, c-format msgid "no privileges were granted for column \"%s\" of relation \"%s\"" msgstr "no se otorgaron privilegios para la columna «%s» de la relación «%s»" -#: catalog/aclchk.c:312 +#: catalog/aclchk.c:313 #, c-format msgid "no privileges were granted for \"%s\"" msgstr "no se otorgaron privilegios para «%s»" -#: catalog/aclchk.c:320 +#: catalog/aclchk.c:321 #, c-format msgid "not all privileges were granted for column \"%s\" of relation \"%s\"" msgstr "no todos los privilegios fueron otorgados para la columna «%s» de la relación «%s»" -#: catalog/aclchk.c:325 +#: catalog/aclchk.c:326 #, c-format msgid "not all privileges were granted for \"%s\"" msgstr "no todos los privilegios fueron otorgados para «%s»" -#: catalog/aclchk.c:336 +#: catalog/aclchk.c:337 #, c-format msgid "no privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "ningún privilegio pudo ser revocado para la columna «%s» de la relación «%s»" -#: catalog/aclchk.c:341 +#: catalog/aclchk.c:342 #, c-format msgid "no privileges could be revoked for \"%s\"" msgstr "ningún privilegio pudo ser revocado para «%s»" -#: catalog/aclchk.c:349 +#: catalog/aclchk.c:350 #, c-format msgid "not all privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "no todos los privilegios pudieron ser revocados para la columna «%s» de la relación «%s»" -#: catalog/aclchk.c:354 +#: catalog/aclchk.c:355 #, c-format msgid "not all privileges could be revoked for \"%s\"" msgstr "no todos los privilegios pudieron ser revocados para «%s»" -#: catalog/aclchk.c:386 +#: catalog/aclchk.c:387 #, c-format msgid "grantor must be current user" msgstr "el cedente (grantor) debe ser el usuario actual" -#: catalog/aclchk.c:454 catalog/aclchk.c:1029 +#: catalog/aclchk.c:455 catalog/aclchk.c:1030 #, c-format msgid "invalid privilege type %s for relation" msgstr "el tipo de privilegio %s no es válido para una relación" -#: catalog/aclchk.c:458 catalog/aclchk.c:1033 +#: catalog/aclchk.c:459 catalog/aclchk.c:1034 #, c-format msgid "invalid privilege type %s for sequence" msgstr "el tipo de privilegio %s no es válido para una secuencia" -#: catalog/aclchk.c:462 +#: catalog/aclchk.c:463 #, c-format msgid "invalid privilege type %s for database" msgstr "el tipo de privilegio %s no es válido para una base de datos" -#: catalog/aclchk.c:466 +#: catalog/aclchk.c:467 #, c-format msgid "invalid privilege type %s for domain" msgstr "el tipo de privilegio %s no es válido para un dominio" -#: catalog/aclchk.c:470 catalog/aclchk.c:1037 +#: catalog/aclchk.c:471 catalog/aclchk.c:1038 #, c-format msgid "invalid privilege type %s for function" msgstr "el tipo de privilegio %s no es válido para una función" -#: catalog/aclchk.c:474 +#: catalog/aclchk.c:475 #, c-format msgid "invalid privilege type %s for language" msgstr "el tipo de privilegio %s no es válido para un lenguaje" -#: catalog/aclchk.c:478 +#: catalog/aclchk.c:479 #, c-format msgid "invalid privilege type %s for large object" msgstr "el tipo de privilegio %s no es válido para un objeto grande" -#: catalog/aclchk.c:482 catalog/aclchk.c:1053 +#: catalog/aclchk.c:483 catalog/aclchk.c:1054 #, c-format msgid "invalid privilege type %s for schema" msgstr "el tipo de privilegio %s no es válido para un esquema" -#: catalog/aclchk.c:486 catalog/aclchk.c:1041 +#: catalog/aclchk.c:487 catalog/aclchk.c:1042 #, c-format msgid "invalid privilege type %s for procedure" msgstr "el tipo de privilegio %s no es válido para un procedimiento" -#: catalog/aclchk.c:490 catalog/aclchk.c:1045 +#: catalog/aclchk.c:491 catalog/aclchk.c:1046 #, c-format msgid "invalid privilege type %s for routine" msgstr "el tipo de privilegio %s no es válido para una rutina" -#: catalog/aclchk.c:494 +#: catalog/aclchk.c:495 #, c-format msgid "invalid privilege type %s for tablespace" msgstr "el tipo de privilegio %s no es válido para un tablespace" -#: catalog/aclchk.c:498 catalog/aclchk.c:1049 +#: catalog/aclchk.c:499 catalog/aclchk.c:1050 #, c-format msgid "invalid privilege type %s for type" msgstr "el tipo de privilegio %s no es válido para un tipo" -#: catalog/aclchk.c:502 +#: catalog/aclchk.c:503 #, c-format msgid "invalid privilege type %s for foreign-data wrapper" msgstr "el tipo de privilegio %s no es válido para un conector de datos externos" -#: catalog/aclchk.c:506 +#: catalog/aclchk.c:507 #, c-format msgid "invalid privilege type %s for foreign server" msgstr "el tipo de privilegio %s no es válido para un servidor foráneo" -#: catalog/aclchk.c:510 +#: catalog/aclchk.c:511 #, c-format msgid "invalid privilege type %s for parameter" msgstr "el tipo de privilegio %s no es válido para un parámetro" -#: catalog/aclchk.c:549 +#: catalog/aclchk.c:550 #, c-format msgid "column privileges are only valid for relations" msgstr "los privilegios de columna son sólo válidos para relaciones" -#: catalog/aclchk.c:712 catalog/aclchk.c:4486 catalog/aclchk.c:5333 +#: catalog/aclchk.c:713 catalog/aclchk.c:4491 catalog/aclchk.c:5338 #: catalog/objectaddress.c:1072 catalog/pg_largeobject.c:116 #: storage/large_object/inv_api.c:287 #, c-format msgid "large object %u does not exist" msgstr "no existe el objeto grande %u" -#: catalog/aclchk.c:1086 +#: catalog/aclchk.c:1087 #, c-format msgid "default privileges cannot be set for columns" msgstr "los privilegios por omisión no pueden definirse para columnas" -#: catalog/aclchk.c:1246 +#: catalog/aclchk.c:1247 #, c-format msgid "cannot use IN SCHEMA clause when using GRANT/REVOKE ON SCHEMAS" msgstr "No puede utilizar la cláusula IN SCHEMA cuando se utiliza GRANT / REVOKE ON SCHEMAS" -#: catalog/aclchk.c:1587 catalog/catalog.c:648 catalog/objectaddress.c:1543 +#: catalog/aclchk.c:1588 catalog/catalog.c:657 catalog/objectaddress.c:1543 #: catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 -#: commands/sequence.c:1670 commands/tablecmds.c:7320 commands/tablecmds.c:7476 -#: commands/tablecmds.c:7526 commands/tablecmds.c:7600 -#: commands/tablecmds.c:7670 commands/tablecmds.c:7782 -#: commands/tablecmds.c:7876 commands/tablecmds.c:7935 -#: commands/tablecmds.c:8024 commands/tablecmds.c:8054 -#: commands/tablecmds.c:8182 commands/tablecmds.c:8264 -#: commands/tablecmds.c:8420 commands/tablecmds.c:8542 -#: commands/tablecmds.c:12281 commands/tablecmds.c:12462 -#: commands/tablecmds.c:12622 commands/tablecmds.c:13819 -#: commands/tablecmds.c:16388 commands/trigger.c:954 parser/analyze.c:2517 +#: commands/sequence.c:1673 commands/tablecmds.c:7343 commands/tablecmds.c:7499 +#: commands/tablecmds.c:7549 commands/tablecmds.c:7623 +#: commands/tablecmds.c:7693 commands/tablecmds.c:7805 +#: commands/tablecmds.c:7899 commands/tablecmds.c:7958 +#: commands/tablecmds.c:8047 commands/tablecmds.c:8077 +#: commands/tablecmds.c:8205 commands/tablecmds.c:8287 +#: commands/tablecmds.c:8443 commands/tablecmds.c:8565 +#: commands/tablecmds.c:12400 commands/tablecmds.c:12592 +#: commands/tablecmds.c:12752 commands/tablecmds.c:13949 +#: commands/tablecmds.c:16519 commands/trigger.c:954 parser/analyze.c:2517 #: parser/parse_relation.c:725 parser/parse_target.c:1077 -#: parser/parse_type.c:144 parser/parse_utilcmd.c:3437 -#: parser/parse_utilcmd.c:3473 parser/parse_utilcmd.c:3515 utils/adt/acl.c:2869 +#: parser/parse_type.c:144 parser/parse_utilcmd.c:3465 +#: parser/parse_utilcmd.c:3501 parser/parse_utilcmd.c:3543 utils/adt/acl.c:2869 #: utils/adt/ruleutils.c:2828 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist" msgstr "no existe la columna «%s» en la relación «%s»" -#: catalog/aclchk.c:1850 catalog/objectaddress.c:1383 commands/sequence.c:1179 -#: commands/tablecmds.c:253 commands/tablecmds.c:17255 utils/adt/acl.c:2077 +#: catalog/aclchk.c:1851 catalog/objectaddress.c:1383 commands/sequence.c:1179 +#: commands/tablecmds.c:253 commands/tablecmds.c:17393 utils/adt/acl.c:2077 #: utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 #: utils/adt/acl.c:2199 utils/adt/acl.c:2229 #, c-format msgid "\"%s\" is not a sequence" msgstr "«%s» no es una secuencia" -#: catalog/aclchk.c:1888 +#: catalog/aclchk.c:1889 #, c-format msgid "sequence \"%s\" only supports USAGE, SELECT, and UPDATE privileges" msgstr "la secuencia «%s» sólo soporta los privilegios USAGE, SELECT, y UPDATE" -#: catalog/aclchk.c:1905 +#: catalog/aclchk.c:1906 #, c-format msgid "invalid privilege type %s for table" msgstr "el tipo de privilegio %s no es válido para una tabla" -#: catalog/aclchk.c:2071 +#: catalog/aclchk.c:2075 #, c-format msgid "invalid privilege type %s for column" msgstr "el tipo de privilegio %s no es válido para una columna" -#: catalog/aclchk.c:2084 +#: catalog/aclchk.c:2088 #, c-format msgid "sequence \"%s\" only supports SELECT column privileges" msgstr "la secuencia «%s» sólo soporta el privilegio SELECT" -#: catalog/aclchk.c:2666 +#: catalog/aclchk.c:2671 #, c-format msgid "language \"%s\" is not trusted" msgstr "el lenguaje «%s» no es confiable (trusted)" -#: catalog/aclchk.c:2668 +#: catalog/aclchk.c:2673 #, c-format msgid "GRANT and REVOKE are not allowed on untrusted languages, because only superusers can use untrusted languages." msgstr "GRANT y REVOKE no están permitidos en lenguajes no confiables, porque sólo los superusuarios pueden usar lenguajes no confiables." -#: catalog/aclchk.c:3182 +#: catalog/aclchk.c:3187 #, c-format msgid "cannot set privileges of array types" msgstr "no se puede definir privilegios para tipos de array" -#: catalog/aclchk.c:3183 +#: catalog/aclchk.c:3188 #, c-format msgid "Set the privileges of the element type instead." msgstr "Defina los privilegios del tipo elemento en su lugar." -#: catalog/aclchk.c:3190 catalog/objectaddress.c:1649 +#: catalog/aclchk.c:3195 catalog/objectaddress.c:1649 #, c-format msgid "\"%s\" is not a domain" msgstr "«%s» no es un dominio" -#: catalog/aclchk.c:3462 +#: catalog/aclchk.c:3467 #, c-format msgid "unrecognized privilege type \"%s\"" msgstr "tipo de privilegio «%s» no reconocido" -#: catalog/aclchk.c:3527 +#: catalog/aclchk.c:3532 #, c-format msgid "permission denied for aggregate %s" msgstr "permiso denegado a la función de agregación %s" -#: catalog/aclchk.c:3530 +#: catalog/aclchk.c:3535 #, c-format msgid "permission denied for collation %s" msgstr "permiso denegado al ordenamiento (collation) %s" -#: catalog/aclchk.c:3533 +#: catalog/aclchk.c:3538 #, c-format msgid "permission denied for column %s" msgstr "permiso denegado a la columna %s" -#: catalog/aclchk.c:3536 +#: catalog/aclchk.c:3541 #, c-format msgid "permission denied for conversion %s" msgstr "permiso denegado a la conversión %s" -#: catalog/aclchk.c:3539 +#: catalog/aclchk.c:3544 #, c-format msgid "permission denied for database %s" msgstr "permiso denegado a la base de datos %s" -#: catalog/aclchk.c:3542 +#: catalog/aclchk.c:3547 #, c-format msgid "permission denied for domain %s" msgstr "permiso denegado al dominio %s" -#: catalog/aclchk.c:3545 +#: catalog/aclchk.c:3550 #, c-format msgid "permission denied for event trigger %s" msgstr "permiso denegado al disparador por eventos %s" -#: catalog/aclchk.c:3548 +#: catalog/aclchk.c:3553 #, c-format msgid "permission denied for extension %s" msgstr "permiso denegado a la extensión %s" -#: catalog/aclchk.c:3551 +#: catalog/aclchk.c:3556 #, c-format msgid "permission denied for foreign-data wrapper %s" msgstr "permiso denegado al conector de datos externos %s" -#: catalog/aclchk.c:3554 +#: catalog/aclchk.c:3559 #, c-format msgid "permission denied for foreign server %s" msgstr "permiso denegado al servidor foráneo %s" -#: catalog/aclchk.c:3557 +#: catalog/aclchk.c:3562 #, c-format msgid "permission denied for foreign table %s" msgstr "permiso denegado a la tabla foránea %s" -#: catalog/aclchk.c:3560 +#: catalog/aclchk.c:3565 #, c-format msgid "permission denied for function %s" msgstr "permiso denegado a la función %s" -#: catalog/aclchk.c:3563 +#: catalog/aclchk.c:3568 #, c-format msgid "permission denied for index %s" msgstr "permiso denegado al índice %s" -#: catalog/aclchk.c:3566 +#: catalog/aclchk.c:3571 #, c-format msgid "permission denied for language %s" msgstr "permiso denegado al lenguaje %s" -#: catalog/aclchk.c:3569 +#: catalog/aclchk.c:3574 #, c-format msgid "permission denied for large object %s" msgstr "permiso denegado al objeto grande %s" -#: catalog/aclchk.c:3572 +#: catalog/aclchk.c:3577 #, c-format msgid "permission denied for materialized view %s" msgstr "permiso denegado a la vista materializada %s" -#: catalog/aclchk.c:3575 +#: catalog/aclchk.c:3580 #, c-format msgid "permission denied for operator class %s" msgstr "permiso denegado a la clase de operadores %s" -#: catalog/aclchk.c:3578 +#: catalog/aclchk.c:3583 #, c-format msgid "permission denied for operator %s" msgstr "permiso denegado al operador %s" -#: catalog/aclchk.c:3581 +#: catalog/aclchk.c:3586 #, c-format msgid "permission denied for operator family %s" msgstr "permiso denegado a la familia de operadores %s" -#: catalog/aclchk.c:3584 +#: catalog/aclchk.c:3589 #, c-format msgid "permission denied for parameter %s" msgstr "permiso denegado al parámetro %s" -#: catalog/aclchk.c:3587 +#: catalog/aclchk.c:3592 #, c-format msgid "permission denied for policy %s" msgstr "permiso denegado a la política %s" -#: catalog/aclchk.c:3590 +#: catalog/aclchk.c:3595 #, c-format msgid "permission denied for procedure %s" msgstr "permiso denegado al procedimiento %s" -#: catalog/aclchk.c:3593 +#: catalog/aclchk.c:3598 #, c-format msgid "permission denied for publication %s" msgstr "permiso denegado a la publicación %s" -#: catalog/aclchk.c:3596 +#: catalog/aclchk.c:3601 #, c-format msgid "permission denied for routine %s" msgstr "permiso denegado a la rutina %s" -#: catalog/aclchk.c:3599 +#: catalog/aclchk.c:3604 #, c-format msgid "permission denied for schema %s" msgstr "permiso denegado al esquema %s" -#: catalog/aclchk.c:3602 commands/sequence.c:667 commands/sequence.c:893 -#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1768 -#: commands/sequence.c:1829 +#: catalog/aclchk.c:3607 commands/sequence.c:667 commands/sequence.c:893 +#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1771 +#: commands/sequence.c:1832 #, c-format msgid "permission denied for sequence %s" msgstr "permiso denegado a la secuencia %s" -#: catalog/aclchk.c:3605 +#: catalog/aclchk.c:3610 #, c-format msgid "permission denied for statistics object %s" msgstr "permiso denegado al objeto de estadísticas %s" -#: catalog/aclchk.c:3608 +#: catalog/aclchk.c:3613 #, c-format msgid "permission denied for subscription %s" msgstr "permiso denegado a la suscripción %s" -#: catalog/aclchk.c:3611 +#: catalog/aclchk.c:3616 #, c-format msgid "permission denied for table %s" msgstr "permiso denegado a la tabla %s" -#: catalog/aclchk.c:3614 +#: catalog/aclchk.c:3619 #, c-format msgid "permission denied for tablespace %s" msgstr "permiso denegado al tablespace %s" -#: catalog/aclchk.c:3617 +#: catalog/aclchk.c:3622 #, c-format msgid "permission denied for text search configuration %s" msgstr "permiso denegado a la configuración de búsqueda en texto %s" -#: catalog/aclchk.c:3620 +#: catalog/aclchk.c:3625 #, c-format msgid "permission denied for text search dictionary %s" msgstr "permiso denegado a la configuración de búsqueda en texto %s" -#: catalog/aclchk.c:3623 +#: catalog/aclchk.c:3628 #, c-format msgid "permission denied for type %s" msgstr "permiso denegado al tipo %s" -#: catalog/aclchk.c:3626 +#: catalog/aclchk.c:3631 #, c-format msgid "permission denied for view %s" msgstr "permiso denegado a la vista %s" -#: catalog/aclchk.c:3662 +#: catalog/aclchk.c:3667 #, c-format msgid "must be owner of aggregate %s" msgstr "debe ser dueño de la función de agregación %s" -#: catalog/aclchk.c:3665 +#: catalog/aclchk.c:3670 #, c-format msgid "must be owner of collation %s" msgstr "debe ser dueño del ordenamiento (collation) %s" -#: catalog/aclchk.c:3668 +#: catalog/aclchk.c:3673 #, c-format msgid "must be owner of conversion %s" msgstr "debe ser dueño de la conversión %s" -#: catalog/aclchk.c:3671 +#: catalog/aclchk.c:3676 #, c-format msgid "must be owner of database %s" msgstr "debe ser dueño de la base de datos %s" -#: catalog/aclchk.c:3674 +#: catalog/aclchk.c:3679 #, c-format msgid "must be owner of domain %s" msgstr "debe ser dueño del dominio %s" -#: catalog/aclchk.c:3677 +#: catalog/aclchk.c:3682 #, c-format msgid "must be owner of event trigger %s" msgstr "debe ser dueño del disparador por eventos %s" -#: catalog/aclchk.c:3680 +#: catalog/aclchk.c:3685 #, c-format msgid "must be owner of extension %s" msgstr "debe ser dueño de la extensión %s" -#: catalog/aclchk.c:3683 +#: catalog/aclchk.c:3688 #, c-format msgid "must be owner of foreign-data wrapper %s" msgstr "debe ser dueño del conector de datos externos %s" -#: catalog/aclchk.c:3686 +#: catalog/aclchk.c:3691 #, c-format msgid "must be owner of foreign server %s" msgstr "debe ser dueño del servidor foráneo %s" -#: catalog/aclchk.c:3689 +#: catalog/aclchk.c:3694 #, c-format msgid "must be owner of foreign table %s" msgstr "debe ser dueño de la tabla foránea %s" -#: catalog/aclchk.c:3692 +#: catalog/aclchk.c:3697 #, c-format msgid "must be owner of function %s" msgstr "debe ser dueño de la función %s" -#: catalog/aclchk.c:3695 +#: catalog/aclchk.c:3700 #, c-format msgid "must be owner of index %s" msgstr "debe ser dueño del índice %s" -#: catalog/aclchk.c:3698 +#: catalog/aclchk.c:3703 #, c-format msgid "must be owner of language %s" msgstr "debe ser dueño del lenguaje %s" -#: catalog/aclchk.c:3701 +#: catalog/aclchk.c:3706 #, c-format msgid "must be owner of large object %s" msgstr "debe ser dueño del objeto grande %s" -#: catalog/aclchk.c:3704 +#: catalog/aclchk.c:3709 #, c-format msgid "must be owner of materialized view %s" msgstr "debe ser dueño de la vista materializada %s" -#: catalog/aclchk.c:3707 +#: catalog/aclchk.c:3712 #, c-format msgid "must be owner of operator class %s" msgstr "debe ser dueño de la clase de operadores %s" -#: catalog/aclchk.c:3710 +#: catalog/aclchk.c:3715 #, c-format msgid "must be owner of operator %s" msgstr "debe ser dueño del operador %s" -#: catalog/aclchk.c:3713 +#: catalog/aclchk.c:3718 #, c-format msgid "must be owner of operator family %s" msgstr "debe ser dueño de la familia de operadores %s" -#: catalog/aclchk.c:3716 +#: catalog/aclchk.c:3721 #, c-format msgid "must be owner of procedure %s" msgstr "debe ser dueño del procedimiento %s" -#: catalog/aclchk.c:3719 +#: catalog/aclchk.c:3724 #, c-format msgid "must be owner of publication %s" msgstr "debe ser dueño de la publicación %s" -#: catalog/aclchk.c:3722 +#: catalog/aclchk.c:3727 #, c-format msgid "must be owner of routine %s" msgstr "debe ser dueño de la rutina %s" -#: catalog/aclchk.c:3725 +#: catalog/aclchk.c:3730 #, c-format msgid "must be owner of sequence %s" msgstr "debe ser dueño de la secuencia %s" -#: catalog/aclchk.c:3728 +#: catalog/aclchk.c:3733 #, c-format msgid "must be owner of subscription %s" msgstr "debe ser dueño de la suscripción %s" -#: catalog/aclchk.c:3731 +#: catalog/aclchk.c:3736 #, c-format msgid "must be owner of table %s" msgstr "debe ser dueño de la tabla %s" -#: catalog/aclchk.c:3734 +#: catalog/aclchk.c:3739 #, c-format msgid "must be owner of type %s" msgstr "debe ser dueño del tipo %s" -#: catalog/aclchk.c:3737 +#: catalog/aclchk.c:3742 #, c-format msgid "must be owner of view %s" msgstr "debe ser dueño de la vista %s" -#: catalog/aclchk.c:3740 +#: catalog/aclchk.c:3745 #, c-format msgid "must be owner of schema %s" msgstr "debe ser dueño del esquema %s" -#: catalog/aclchk.c:3743 +#: catalog/aclchk.c:3748 #, c-format msgid "must be owner of statistics object %s" msgstr "debe ser dueño del objeto de estadísticas %s" -#: catalog/aclchk.c:3746 +#: catalog/aclchk.c:3751 #, c-format msgid "must be owner of tablespace %s" msgstr "debe ser dueño del tablespace %s" -#: catalog/aclchk.c:3749 +#: catalog/aclchk.c:3754 #, c-format msgid "must be owner of text search configuration %s" msgstr "debe ser dueño de la configuración de búsqueda en texto %s" -#: catalog/aclchk.c:3752 +#: catalog/aclchk.c:3757 #, c-format msgid "must be owner of text search dictionary %s" msgstr "debe ser dueño del diccionario de búsqueda en texto %s" -#: catalog/aclchk.c:3766 +#: catalog/aclchk.c:3771 #, c-format msgid "must be owner of relation %s" msgstr "debe ser dueño de la relación %s" -#: catalog/aclchk.c:3812 +#: catalog/aclchk.c:3817 #, c-format msgid "permission denied for column \"%s\" of relation \"%s\"" msgstr "permiso denegado a la columna «%s» de la relación «%s»" -#: catalog/aclchk.c:3957 catalog/aclchk.c:3976 +#: catalog/aclchk.c:3962 catalog/aclchk.c:3981 #, c-format msgid "attribute %d of relation with OID %u does not exist" msgstr "no existe el atributo %d de la relación con OID %u" -#: catalog/aclchk.c:4071 catalog/aclchk.c:5184 +#: catalog/aclchk.c:4076 catalog/aclchk.c:5189 #, c-format msgid "relation with OID %u does not exist" msgstr "no existe la relación con OID %u" -#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2615 +#: catalog/aclchk.c:4189 catalog/aclchk.c:5607 commands/dbcommands.c:2635 #, c-format msgid "database with OID %u does not exist" msgstr "no existe la base de datos con OID %u" -#: catalog/aclchk.c:4299 +#: catalog/aclchk.c:4304 #, c-format msgid "parameter ACL with OID %u does not exist" msgstr "no existe el ACL de parámetro con OID %u" -#: catalog/aclchk.c:4353 catalog/aclchk.c:5262 tcop/fastpath.c:141 +#: catalog/aclchk.c:4358 catalog/aclchk.c:5267 tcop/fastpath.c:141 #: utils/fmgr/fmgr.c:2037 #, c-format msgid "function with OID %u does not exist" msgstr "no existe la función con OID %u" -#: catalog/aclchk.c:4407 catalog/aclchk.c:5288 +#: catalog/aclchk.c:4412 catalog/aclchk.c:5293 #, c-format msgid "language with OID %u does not exist" msgstr "no existe el lenguaje con OID %u" -#: catalog/aclchk.c:4571 catalog/aclchk.c:5360 commands/collationcmds.c:595 +#: catalog/aclchk.c:4576 catalog/aclchk.c:5365 commands/collationcmds.c:595 #: commands/publicationcmds.c:1745 #, c-format msgid "schema with OID %u does not exist" msgstr "no existe el esquema con OID %u" -#: catalog/aclchk.c:4635 catalog/aclchk.c:5387 utils/adt/genfile.c:632 +#: catalog/aclchk.c:4640 catalog/aclchk.c:5392 utils/adt/genfile.c:632 #, c-format msgid "tablespace with OID %u does not exist" msgstr "no existe el tablespace con OID %u" -#: catalog/aclchk.c:4694 catalog/aclchk.c:5521 commands/foreigncmds.c:325 +#: catalog/aclchk.c:4699 catalog/aclchk.c:5526 commands/foreigncmds.c:325 #, c-format msgid "foreign-data wrapper with OID %u does not exist" msgstr "no existe el conector de datos externos con OID %u" -#: catalog/aclchk.c:4756 catalog/aclchk.c:5548 commands/foreigncmds.c:462 +#: catalog/aclchk.c:4761 catalog/aclchk.c:5553 commands/foreigncmds.c:462 #, c-format msgid "foreign server with OID %u does not exist" msgstr "no existe el servidor foráneo con OID %u" -#: catalog/aclchk.c:4816 catalog/aclchk.c:5210 utils/cache/typcache.c:390 +#: catalog/aclchk.c:4821 catalog/aclchk.c:5215 utils/cache/typcache.c:390 #: utils/cache/typcache.c:445 #, c-format msgid "type with OID %u does not exist" msgstr "no existe el tipo con OID %u" -#: catalog/aclchk.c:5236 +#: catalog/aclchk.c:5241 #, c-format msgid "operator with OID %u does not exist" msgstr "no existe el operador con OID %u" -#: catalog/aclchk.c:5413 +#: catalog/aclchk.c:5418 #, c-format msgid "operator class with OID %u does not exist" msgstr "no existe la clase de operadores con OID %u" -#: catalog/aclchk.c:5440 +#: catalog/aclchk.c:5445 #, c-format msgid "operator family with OID %u does not exist" msgstr "no existe la familia de operadores con OID %u" -#: catalog/aclchk.c:5467 +#: catalog/aclchk.c:5472 #, c-format msgid "text search dictionary with OID %u does not exist" msgstr "no existe el diccionario de búsqueda en texto con OID %u" -#: catalog/aclchk.c:5494 +#: catalog/aclchk.c:5499 #, c-format msgid "text search configuration with OID %u does not exist" msgstr "no existe la configuración de búsqueda en texto con OID %u" -#: catalog/aclchk.c:5575 commands/event_trigger.c:453 +#: catalog/aclchk.c:5580 commands/event_trigger.c:453 #, c-format msgid "event trigger with OID %u does not exist" msgstr "no existe el disparador por eventos con OID %u" -#: catalog/aclchk.c:5628 commands/collationcmds.c:439 +#: catalog/aclchk.c:5633 commands/collationcmds.c:439 #, c-format msgid "collation with OID %u does not exist" msgstr "no existe el ordenamiento (collation) con OID %u" -#: catalog/aclchk.c:5654 +#: catalog/aclchk.c:5659 #, c-format msgid "conversion with OID %u does not exist" msgstr "no existe la conversión con OID %u" -#: catalog/aclchk.c:5695 +#: catalog/aclchk.c:5700 #, c-format msgid "extension with OID %u does not exist" msgstr "no existe la extensión con OID %u" -#: catalog/aclchk.c:5722 commands/publicationcmds.c:1999 +#: catalog/aclchk.c:5727 commands/publicationcmds.c:1999 #, c-format msgid "publication with OID %u does not exist" msgstr "no existe la publicación con OID %u" -#: catalog/aclchk.c:5748 commands/subscriptioncmds.c:1742 +#: catalog/aclchk.c:5753 commands/subscriptioncmds.c:1742 #, c-format msgid "subscription with OID %u does not exist" msgstr "no existe la suscripción con OID %u" -#: catalog/aclchk.c:5774 +#: catalog/aclchk.c:5779 #, c-format msgid "statistics object with OID %u does not exist" msgstr "no existe el objeto de estadísticas con OID %u" -#: catalog/catalog.c:468 +#: catalog/catalog.c:477 #, c-format msgid "still searching for an unused OID in relation \"%s\"" msgstr "aún se está buscando algún OID sin utilizar en la relación «%s»" -#: catalog/catalog.c:470 +#: catalog/catalog.c:479 #, c-format msgid "OID candidates have been checked %llu time, but no unused OID has been found yet." msgid_plural "OID candidates have been checked %llu times, but no unused OID has been found yet." msgstr[0] "se han revisado los OID candidatos %llu vez, pero aún no se ha encontrado algún OID sin utilizar." msgstr[1] "se han revisado los OID candidatos %llu veces, pero aún no se ha encontrado algún OID sin utilizar." -#: catalog/catalog.c:495 +#: catalog/catalog.c:504 #, c-format msgid "new OID has been assigned in relation \"%s\" after %llu retry" msgid_plural "new OID has been assigned in relation \"%s\" after %llu retries" msgstr[0] "se ha asignado un nuevo OID en la relación «%s» luego de %llu reintento" msgstr[1] "se ha asignado un nuevo OID en la relación «%s» luego de %llu reintentos" -#: catalog/catalog.c:626 catalog/catalog.c:693 +#: catalog/catalog.c:635 catalog/catalog.c:702 #, c-format msgid "must be superuser to call %s()" msgstr "debe ser superusuario para invocar %s()" -#: catalog/catalog.c:635 +#: catalog/catalog.c:644 #, c-format msgid "pg_nextoid() can only be used on system catalogs" msgstr "pg_nextoid() sólo puede usarse en catálogos de sistema" -#: catalog/catalog.c:640 parser/parse_utilcmd.c:2296 +#: catalog/catalog.c:649 parser/parse_utilcmd.c:2324 #, c-format msgid "index \"%s\" does not belong to table \"%s\"" msgstr "el índice «%s» no pertenece a la tabla «%s»" -#: catalog/catalog.c:657 +#: catalog/catalog.c:666 #, c-format msgid "column \"%s\" is not of type oid" msgstr "la columna «%s» no es de tipo oid" -#: catalog/catalog.c:664 +#: catalog/catalog.c:673 #, c-format msgid "index \"%s\" is not the index for column \"%s\"" msgstr "«el índice %s» no es el índice para la columna «%s»" @@ -4484,13 +4490,13 @@ msgid "cannot drop %s because other objects depend on it" msgstr "no se puede eliminar %s porque otros objetos dependen de él" #: catalog/dependency.c:1201 catalog/dependency.c:1208 -#: catalog/dependency.c:1219 commands/tablecmds.c:1325 -#: commands/tablecmds.c:14461 commands/tablespace.c:476 commands/user.c:1008 +#: catalog/dependency.c:1219 commands/tablecmds.c:1342 +#: commands/tablecmds.c:14591 commands/tablespace.c:476 commands/user.c:1008 #: commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 -#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7402 -#: utils/misc/guc.c:7438 utils/misc/guc.c:7508 utils/misc/guc.c:11880 -#: utils/misc/guc.c:11914 utils/misc/guc.c:11948 utils/misc/guc.c:11991 -#: utils/misc/guc.c:12033 +#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7414 +#: utils/misc/guc.c:7450 utils/misc/guc.c:7520 utils/misc/guc.c:11898 +#: utils/misc/guc.c:11932 utils/misc/guc.c:11966 utils/misc/guc.c:12009 +#: utils/misc/guc.c:12051 #, c-format msgid "%s" msgstr "%s" @@ -4533,13 +4539,13 @@ msgstr "se ha denegado el permiso para crear «%s.%s»" msgid "System catalog modifications are currently disallowed." msgstr "Las modificaciones al catálogo del sistema están actualmente deshabilitadas." -#: catalog/heap.c:466 commands/tablecmds.c:2345 commands/tablecmds.c:2982 -#: commands/tablecmds.c:6910 +#: catalog/heap.c:466 commands/tablecmds.c:2362 commands/tablecmds.c:2999 +#: commands/tablecmds.c:6933 #, c-format msgid "tables can have at most %d columns" msgstr "las tablas pueden tener a lo más %d columnas" -#: catalog/heap.c:484 commands/tablecmds.c:7210 +#: catalog/heap.c:484 commands/tablecmds.c:7233 #, c-format msgid "column name \"%s\" conflicts with a system column name" msgstr "el nombre de columna «%s» colisiona con nombre de una columna de sistema" @@ -4577,7 +4583,7 @@ msgid "no collation was derived for column \"%s\" with collatable type %s" msgstr "no se derivó ningún ordenamiento (collate) para la columna «%s» con tipo ordenable %s" #: catalog/heap.c:1151 catalog/index.c:875 commands/createas.c:408 -#: commands/tablecmds.c:3899 +#: commands/tablecmds.c:3921 #, c-format msgid "relation \"%s\" already exists" msgstr "la relación «%s» ya existe" @@ -4621,7 +4627,7 @@ msgid "check constraint \"%s\" already exists" msgstr "la restricción «check» «%s» ya existe" #: catalog/heap.c:2582 catalog/index.c:889 catalog/pg_constraint.c:689 -#: commands/tablecmds.c:8916 +#: commands/tablecmds.c:8939 #, c-format msgid "constraint \"%s\" for relation \"%s\" already exists" msgstr "la restricción «%s» para la relación «%s» ya existe" @@ -4671,14 +4677,14 @@ msgstr "Esto causaría que la columna generada dependa de su propio valor." msgid "generation expression is not immutable" msgstr "la expresión de generación no es inmutable" -#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1290 +#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1291 #, c-format msgid "column \"%s\" is of type %s but default expression is of type %s" msgstr "la columna «%s» es de tipo %s pero la expresión default es de tipo %s" #: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 #: parser/parse_target.c:594 parser/parse_target.c:891 -#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1295 +#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1296 #, c-format msgid "You will need to rewrite or cast the expression." msgstr "Necesitará reescribir la expresión o aplicarle una conversión de tipo." @@ -4713,7 +4719,7 @@ msgstr "La tabla «%s» hace referencia a «%s»." msgid "Truncate table \"%s\" at the same time, or use TRUNCATE ... CASCADE." msgstr "Trunque la tabla «%s» al mismo tiempo, o utilice TRUNCATE ... CASCADE." -#: catalog/index.c:224 parser/parse_utilcmd.c:2201 +#: catalog/index.c:224 parser/parse_utilcmd.c:2229 #, c-format msgid "multiple primary keys for table \"%s\" are not allowed" msgstr "no se permiten múltiples llaves primarias para la tabla «%s»" @@ -4764,7 +4770,7 @@ msgstr "la relación «%s» ya existe, omitiendo" msgid "pg_class index OID value not set when in binary upgrade mode" msgstr "el valor de OID de índice de pg_class no se definió en modo de actualización binaria" -#: catalog/index.c:927 utils/cache/relcache.c:3744 +#: catalog/index.c:927 utils/cache/relcache.c:3745 #, c-format msgid "index relfilenode value not set when in binary upgrade mode" msgstr "el valor de relfilenode de índice no se definió en modo de actualización binaria" @@ -4774,28 +4780,28 @@ msgstr "el valor de relfilenode de índice no se definió en modo de actualizaci msgid "DROP INDEX CONCURRENTLY must be first action in transaction" msgstr "DROP INDEX CONCURRENTLY debe ser la primera acción en una transacción" -#: catalog/index.c:3664 +#: catalog/index.c:3662 #, c-format msgid "cannot reindex temporary tables of other sessions" msgstr "no se puede hacer reindex de tablas temporales de otras sesiones" -#: catalog/index.c:3675 commands/indexcmds.c:3536 +#: catalog/index.c:3673 commands/indexcmds.c:3536 #, c-format msgid "cannot reindex invalid index on TOAST table" msgstr "no es posible reindexar un índice no válido en tabla TOAST" -#: catalog/index.c:3691 commands/indexcmds.c:3416 commands/indexcmds.c:3560 -#: commands/tablecmds.c:3314 +#: catalog/index.c:3689 commands/indexcmds.c:3416 commands/indexcmds.c:3560 +#: commands/tablecmds.c:3331 #, c-format msgid "cannot move system relation \"%s\"" msgstr "no se puede mover la relación de sistema «%s»" -#: catalog/index.c:3835 +#: catalog/index.c:3833 #, c-format msgid "index \"%s\" was reindexed" msgstr "el índice «%s» fue reindexado" -#: catalog/index.c:3972 +#: catalog/index.c:3970 #, c-format msgid "cannot reindex invalid index \"%s.%s\" on TOAST table, skipping" msgstr "no se puede reindexar el índice no válido «%s.%s» en tabla TOAST, omitiendo" @@ -4885,7 +4891,7 @@ msgid "cross-database references are not implemented: %s" msgstr "no están implementadas las referencias entre bases de datos: %s" #: catalog/namespace.c:2889 parser/parse_expr.c:813 parser/parse_target.c:1276 -#: gram.y:18258 gram.y:18298 +#: gram.y:18265 gram.y:18305 #, c-format msgid "improper qualified name (too many dotted names): %s" msgstr "el nombre no es válido (demasiados puntos): %s" @@ -4901,7 +4907,7 @@ msgid "cannot move objects into or out of TOAST schema" msgstr "no se puede mover objetos hacia o desde el esquema TOAST" #: catalog/namespace.c:3098 commands/schemacmds.c:263 commands/schemacmds.c:343 -#: commands/tablecmds.c:1270 +#: commands/tablecmds.c:1287 #, c-format msgid "schema \"%s\" does not exist" msgstr "no existe el esquema «%s»" @@ -4936,33 +4942,33 @@ msgstr "no se pueden crear tablas temporales durante la recuperación" msgid "cannot create temporary tables during a parallel operation" msgstr "no se pueden crear tablas temporales durante una operación paralela" -#: catalog/namespace.c:4338 commands/tablespace.c:1236 commands/variable.c:64 -#: utils/misc/guc.c:12065 utils/misc/guc.c:12167 +#: catalog/namespace.c:4338 commands/tablespace.c:1231 commands/variable.c:64 +#: tcop/postgres.c:3649 utils/misc/guc.c:12083 utils/misc/guc.c:12185 #, c-format msgid "List syntax is invalid." msgstr "La sintaxis de lista no es válida." #: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 -#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2181 -#: commands/tablecmds.c:12398 +#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2198 +#: commands/tablecmds.c:12528 #, c-format msgid "\"%s\" is not a table" msgstr "«%s» no es una tabla" #: catalog/objectaddress.c:1398 commands/tablecmds.c:259 -#: commands/tablecmds.c:17260 commands/view.c:119 +#: commands/tablecmds.c:17398 commands/view.c:119 #, c-format msgid "\"%s\" is not a view" msgstr "«%s» no es una vista" #: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 -#: commands/tablecmds.c:17265 +#: commands/tablecmds.c:17403 #, c-format msgid "\"%s\" is not a materialized view" msgstr "«%s» no es una vista materializada" #: catalog/objectaddress.c:1412 commands/tablecmds.c:283 -#: commands/tablecmds.c:17270 +#: commands/tablecmds.c:17408 #, c-format msgid "\"%s\" is not a foreign table" msgstr "«%s» no es una tabla foránea" @@ -5006,7 +5012,7 @@ msgid "user mapping for user \"%s\" on server \"%s\" does not exist" msgstr "no existe el mapeo para el usuario «%s» en el servidor «%s»" #: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 -#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:691 +#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:701 #, c-format msgid "server \"%s\" does not exist" msgstr "no existe el servidor «%s»" @@ -5722,8 +5728,8 @@ msgstr "no se puede desprender la partición «%s»" msgid "The partition is being detached concurrently or has an unfinished detach." msgstr "La partición está siendo desprendida de forma concurrente o tiene un desprendimiento sin terminar." -#: catalog/pg_inherits.c:596 commands/tablecmds.c:4528 -#: commands/tablecmds.c:15577 +#: catalog/pg_inherits.c:596 commands/tablecmds.c:4551 +#: commands/tablecmds.c:15708 #, c-format msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending detach operation." msgstr "Utilice ALTER TABLE ... DETACH PARTITION ... FINALIZE para completar la operación de desprendimiento pendiente." @@ -6408,7 +6414,7 @@ msgstr "no se pueden reordenar tablas temporales de otras sesiones" msgid "there is no previously clustered index for table \"%s\"" msgstr "no hay un índice de ordenamiento definido para la tabla «%s»" -#: commands/cluster.c:190 commands/tablecmds.c:14275 commands/tablecmds.c:16156 +#: commands/cluster.c:190 commands/tablecmds.c:14405 commands/tablecmds.c:16287 #, c-format msgid "index \"%s\" for table \"%s\" does not exist" msgstr "no existe el índice «%s» en la tabla «%s»" @@ -6423,7 +6429,7 @@ msgstr "no se puede reordenar un catálogo compartido" msgid "cannot vacuum temporary tables of other sessions" msgstr "no se puede hacer vacuum a tablas temporales de otras sesiones" -#: commands/cluster.c:511 commands/tablecmds.c:16166 +#: commands/cluster.c:511 commands/tablecmds.c:16297 #, c-format msgid "\"%s\" is not an index for table \"%s\"" msgstr "«%s» no es un índice de la tabla «%s»" @@ -6483,7 +6489,7 @@ msgid "collation attribute \"%s\" not recognized" msgstr "el atributo de ordenamiento (collation) «%s» no es reconocido" #: commands/collationcmds.c:119 commands/collationcmds.c:125 -#: commands/define.c:389 commands/tablecmds.c:7857 +#: commands/define.c:389 commands/tablecmds.c:7880 #: replication/pgoutput/pgoutput.c:311 replication/pgoutput/pgoutput.c:334 #: replication/pgoutput/pgoutput.c:348 replication/pgoutput/pgoutput.c:358 #: replication/pgoutput/pgoutput.c:368 replication/pgoutput/pgoutput.c:378 @@ -6548,12 +6554,12 @@ msgstr "ya existe un ordenamiento (collation) llamado «%s» para la codificaci msgid "collation \"%s\" already exists in schema \"%s\"" msgstr "ya existe un ordenamiento llamado «%s» en el esquema «%s»" -#: commands/collationcmds.c:395 commands/dbcommands.c:2432 +#: commands/collationcmds.c:395 commands/dbcommands.c:2448 #, c-format msgid "changing version from %s to %s" msgstr "cambiando versión de %s a %s" -#: commands/collationcmds.c:410 commands/dbcommands.c:2445 +#: commands/collationcmds.c:410 commands/dbcommands.c:2461 #, c-format msgid "version has not changed" msgstr "la versión no ha cambiado" @@ -6568,7 +6574,7 @@ msgstr "no se pudo convertir el nombre de configuración regional «%s» a etiqu msgid "must be superuser to import system collations" msgstr "debe ser superusuario para importar ordenamientos del sistema" -#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:679 +#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:683 #: libpq/be-secure-common.c:81 #, c-format msgid "could not execute command \"%s\": %m" @@ -6579,10 +6585,10 @@ msgstr "no se pudo ejecutar la orden «%s»: %m" msgid "no usable system locales were found" msgstr "no se encontraron locales de sistema utilizables" -#: commands/comment.c:61 commands/dbcommands.c:1549 commands/dbcommands.c:1761 -#: commands/dbcommands.c:1874 commands/dbcommands.c:2068 -#: commands/dbcommands.c:2310 commands/dbcommands.c:2405 -#: commands/dbcommands.c:2515 commands/dbcommands.c:3014 +#: commands/comment.c:61 commands/dbcommands.c:1551 commands/dbcommands.c:1769 +#: commands/dbcommands.c:1884 commands/dbcommands.c:2078 +#: commands/dbcommands.c:2322 commands/dbcommands.c:2419 +#: commands/dbcommands.c:2532 commands/dbcommands.c:3034 #: utils/init/postinit.c:947 utils/init/postinit.c:1011 #: utils/init/postinit.c:1083 #, c-format @@ -6695,7 +6701,7 @@ msgstr "el argumento de la opción «%s» debe ser una lista de nombres de colum msgid "argument to option \"%s\" must be a valid encoding name" msgstr "el argumento de la opción «%s» debe ser un nombre válido de codificación" -#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2258 +#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2270 #, c-format msgid "option \"%s\" not recognized" msgstr "no se reconoce la opción «%s»" @@ -6811,14 +6817,14 @@ msgid "Generated columns cannot be used in COPY." msgstr "Las columnas generadas no pueden usarse en COPY." #: commands/copy.c:784 commands/indexcmds.c:1826 commands/statscmds.c:243 -#: commands/tablecmds.c:2376 commands/tablecmds.c:3032 -#: commands/tablecmds.c:3538 parser/parse_relation.c:3669 +#: commands/tablecmds.c:2393 commands/tablecmds.c:3049 +#: commands/tablecmds.c:3558 parser/parse_relation.c:3669 #: parser/parse_relation.c:3689 utils/adt/tsvector_op.c:2688 #, c-format msgid "column \"%s\" does not exist" msgstr "no existe la columna «%s»" -#: commands/copy.c:791 commands/tablecmds.c:2402 commands/trigger.c:963 +#: commands/copy.c:791 commands/tablecmds.c:2419 commands/trigger.c:963 #: parser/parse_target.c:1093 parser/parse_target.c:1104 #, c-format msgid "column \"%s\" specified more than once" @@ -6889,12 +6895,12 @@ msgstr "no se puede ejecutar COPY FREEZE debido a actividad anterior en la trans msgid "cannot perform COPY FREEZE because the table was not created or truncated in the current subtransaction" msgstr "no se puede ejecutar COPY FREEZE porque la tabla no fue creada ni truncada en la subtransacción en curso" -#: commands/copyfrom.c:1270 commands/copyto.c:611 +#: commands/copyfrom.c:1270 commands/copyto.c:615 #, c-format msgid "FORCE_NOT_NULL column \"%s\" not referenced by COPY" msgstr "la columna FORCE_NOT_NULL «%s» no es referenciada en COPY" -#: commands/copyfrom.c:1293 commands/copyto.c:634 +#: commands/copyfrom.c:1293 commands/copyto.c:638 #, c-format msgid "FORCE_NULL column \"%s\" not referenced by COPY" msgstr "la columna FORCE_NULL «%s» no es referenciada en COPY" @@ -6909,7 +6915,7 @@ msgstr "no existe el procedimiento por omisión de conversión desde la codifica msgid "COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \\copy." msgstr "COPY FROM indica al proceso servidor de PostgreSQL leer un archivo. Puede desear usar una facilidad del lado del cliente como \\copy de psql." -#: commands/copyfrom.c:1541 commands/copyto.c:731 +#: commands/copyfrom.c:1541 commands/copyto.c:735 #, c-format msgid "\"%s\" is a directory" msgstr "«%s» es un directorio" @@ -6960,7 +6966,7 @@ msgid "could not read from COPY file: %m" msgstr "no se pudo leer desde archivo COPY: %m" #: commands/copyfromparse.c:278 commands/copyfromparse.c:303 -#: tcop/postgres.c:358 +#: tcop/postgres.c:362 #, c-format msgid "unexpected EOF on client connection with an open transaction" msgstr "se encontró fin de archivo inesperado en una conexión con una transacción abierta" @@ -7139,7 +7145,7 @@ msgstr "las reglas DO INSTEAD condicionales no están soportadas para COPY" #: commands/copyto.c:468 #, c-format -msgid "DO ALSO rules are not supported for the COPY" +msgid "DO ALSO rules are not supported for COPY" msgstr "las reglas DO ALSO no están soportadas para COPY" #: commands/copyto.c:473 @@ -7152,32 +7158,37 @@ msgstr "las reglas DO INSTEAD de múltiples sentencias no están soportadas para msgid "COPY (SELECT INTO) is not supported" msgstr "COPY (SELECT INTO) no está soportado" -#: commands/copyto.c:500 +#: commands/copyto.c:489 +#, c-format +msgid "COPY query must not be a utility command" +msgstr "la consulta COPY no debe ser una sentencia de utilidad" + +#: commands/copyto.c:504 #, c-format msgid "COPY query must have a RETURNING clause" msgstr "la consulta COPY debe tener una cláusula RETURNING" -#: commands/copyto.c:529 +#: commands/copyto.c:533 #, c-format msgid "relation referenced by COPY statement has changed" msgstr "la relación referenciada por la sentencia COPY ha cambiado" -#: commands/copyto.c:588 +#: commands/copyto.c:592 #, c-format msgid "FORCE_QUOTE column \"%s\" not referenced by COPY" msgstr "la columna FORCE_QUOTE «%s» no es referenciada en COPY" -#: commands/copyto.c:696 +#: commands/copyto.c:700 #, c-format msgid "relative path not allowed for COPY to file" msgstr "no se permiten rutas relativas para COPY hacia un archivo" -#: commands/copyto.c:715 +#: commands/copyto.c:719 #, c-format msgid "could not open file \"%s\" for writing: %m" msgstr "no se pudo abrir el archivo «%s» para escritura: %m" -#: commands/copyto.c:718 +#: commands/copyto.c:722 #, c-format msgid "COPY TO instructs the PostgreSQL server process to write a file. You may want a client-side facility such as psql's \\copy." msgstr "COPY TO indica al proceso servidor PostgreSQL escribir a un archivo. Puede desear usar facilidades del lado del cliente, como \\copy de psql." @@ -7222,7 +7233,7 @@ msgstr "%s no es un nombre válido de codificación" msgid "unrecognized locale provider: %s" msgstr "proveedor de configuración regional no reconocido: %s" -#: commands/dbcommands.c:920 commands/dbcommands.c:2291 commands/user.c:237 +#: commands/dbcommands.c:920 commands/dbcommands.c:2303 commands/user.c:237 #: commands/user.c:611 #, c-format msgid "invalid connection limit: %d" @@ -7243,7 +7254,7 @@ msgstr "no existe la base de datos patrón «%s»" msgid "cannot use invalid database \"%s\" as template" msgstr "no se puede usar base de datos «%s» no válida como patrón" -#: commands/dbcommands.c:976 commands/dbcommands.c:2320 +#: commands/dbcommands.c:976 commands/dbcommands.c:2333 #: utils/init/postinit.c:1026 #, c-format msgid "Use DROP DATABASE to drop invalid databases." @@ -7359,7 +7370,7 @@ msgstr "La base de datos patrón fue creada usando la versión %s, pero el siste msgid "Rebuild all objects in the template database that use the default collation and run ALTER DATABASE %s REFRESH COLLATION VERSION, or build PostgreSQL with the right library version." msgstr "Reconstruya todos los objetos de la base de datos patrón afectados por este ordenamiento y ejecute ALTER DATABASE %s REFRESH COLLATION VERSION, o construya PostgreSQL con la versión correcta de la biblioteca." -#: commands/dbcommands.c:1186 commands/dbcommands.c:1920 +#: commands/dbcommands.c:1186 commands/dbcommands.c:1930 #, c-format msgid "pg_global cannot be used as default tablespace" msgstr "no puede usarse pg_global como tablespace por omisión" @@ -7374,7 +7385,7 @@ msgstr "no se puede asignar el nuevo tablespace por omisión «%s»" msgid "There is a conflict because database \"%s\" already has some tables in this tablespace." msgstr "Hay un conflicto puesto que la base de datos «%s» ya tiene algunas tablas en este tablespace." -#: commands/dbcommands.c:1244 commands/dbcommands.c:1790 +#: commands/dbcommands.c:1244 commands/dbcommands.c:1798 #, c-format msgid "database \"%s\" already exists" msgstr "la base de datos «%s» ya existe" @@ -7409,132 +7420,132 @@ msgstr "El parámetro LC_CTYPE escogido requiere la codificación «%s»." msgid "The chosen LC_COLLATE setting requires encoding \"%s\"." msgstr "El parámetro LC_COLLATE escogido requiere la codificación «%s»." -#: commands/dbcommands.c:1556 +#: commands/dbcommands.c:1558 #, c-format msgid "database \"%s\" does not exist, skipping" msgstr "no existe la base de datos «%s», omitiendo" -#: commands/dbcommands.c:1580 +#: commands/dbcommands.c:1582 #, c-format msgid "cannot drop a template database" msgstr "no se puede borrar una base de datos patrón" -#: commands/dbcommands.c:1586 +#: commands/dbcommands.c:1588 #, c-format msgid "cannot drop the currently open database" msgstr "no se puede eliminar la base de datos activa" -#: commands/dbcommands.c:1599 +#: commands/dbcommands.c:1601 #, c-format msgid "database \"%s\" is used by an active logical replication slot" msgstr "la base de datos «%s» está en uso por un slot de replicación activo" -#: commands/dbcommands.c:1601 +#: commands/dbcommands.c:1603 #, c-format msgid "There is %d active slot." msgid_plural "There are %d active slots." msgstr[0] "Hay %d slot activo." msgstr[1] "Hay %d slots activos." -#: commands/dbcommands.c:1615 +#: commands/dbcommands.c:1617 #, c-format msgid "database \"%s\" is being used by logical replication subscription" msgstr "la base de datos «%s» está siendo utilizada por suscripciones de replicación lógica" -#: commands/dbcommands.c:1617 +#: commands/dbcommands.c:1619 #, c-format msgid "There is %d subscription." msgid_plural "There are %d subscriptions." msgstr[0] "Hay %d suscripción." msgstr[1] "Hay %d suscripciones." -#: commands/dbcommands.c:1638 commands/dbcommands.c:1812 -#: commands/dbcommands.c:1942 +#: commands/dbcommands.c:1640 commands/dbcommands.c:1820 +#: commands/dbcommands.c:1952 #, c-format msgid "database \"%s\" is being accessed by other users" msgstr "la base de datos «%s» está siendo utilizada por otros usuarios" -#: commands/dbcommands.c:1772 +#: commands/dbcommands.c:1780 #, c-format msgid "permission denied to rename database" msgstr "se ha denegado el permiso para renombrar la base de datos" -#: commands/dbcommands.c:1801 +#: commands/dbcommands.c:1809 #, c-format msgid "current database cannot be renamed" msgstr "no se puede renombrar la base de datos activa" -#: commands/dbcommands.c:1898 +#: commands/dbcommands.c:1908 #, c-format msgid "cannot change the tablespace of the currently open database" msgstr "no se puede cambiar el tablespace de la base de datos activa" -#: commands/dbcommands.c:2004 +#: commands/dbcommands.c:2014 #, c-format msgid "some relations of database \"%s\" are already in tablespace \"%s\"" msgstr "algunas relaciones de la base de datos «%s» ya están en el tablespace «%s»" -#: commands/dbcommands.c:2006 +#: commands/dbcommands.c:2016 #, c-format msgid "You must move them back to the database's default tablespace before using this command." msgstr "Debe moverlas de vuelta al tablespace por omisión de la base de datos antes de ejecutar esta orden." -#: commands/dbcommands.c:2133 commands/dbcommands.c:2852 -#: commands/dbcommands.c:3152 commands/dbcommands.c:3266 +#: commands/dbcommands.c:2145 commands/dbcommands.c:2872 +#: commands/dbcommands.c:3172 commands/dbcommands.c:3286 #, c-format msgid "some useless files may be left behind in old database directory \"%s\"" msgstr "algunos archivos inútiles pueden haber quedado en el directorio \"%s\"" -#: commands/dbcommands.c:2194 +#: commands/dbcommands.c:2206 #, c-format msgid "unrecognized DROP DATABASE option \"%s\"" msgstr "opción de DROP DATABASE «%s» no reconocida" -#: commands/dbcommands.c:2272 +#: commands/dbcommands.c:2284 #, c-format msgid "option \"%s\" cannot be specified with other options" msgstr "la opción «%s» no puede ser especificada con otras opciones" -#: commands/dbcommands.c:2319 +#: commands/dbcommands.c:2332 #, c-format msgid "cannot alter invalid database \"%s\"" msgstr "no se puede alterar la base de datos no válida «%s»" -#: commands/dbcommands.c:2336 +#: commands/dbcommands.c:2349 #, c-format msgid "cannot disallow connections for current database" msgstr "no se pueden prohibir las conexiones para la base de datos actual" -#: commands/dbcommands.c:2555 +#: commands/dbcommands.c:2572 #, c-format msgid "permission denied to change owner of database" msgstr "se ha denegado el permiso para cambiar el dueño de la base de datos" -#: commands/dbcommands.c:2958 +#: commands/dbcommands.c:2978 #, c-format msgid "There are %d other session(s) and %d prepared transaction(s) using the database." msgstr "Hay otras %d sesiones y %d transacciones preparadas usando la base de datos." -#: commands/dbcommands.c:2961 +#: commands/dbcommands.c:2981 #, c-format msgid "There is %d other session using the database." msgid_plural "There are %d other sessions using the database." msgstr[0] "Hay %d otra sesión usando la base de datos." msgstr[1] "Hay otras %d sesiones usando la base de datos." -#: commands/dbcommands.c:2966 storage/ipc/procarray.c:3859 +#: commands/dbcommands.c:2986 storage/ipc/procarray.c:3859 #, c-format msgid "There is %d prepared transaction using the database." msgid_plural "There are %d prepared transactions using the database." msgstr[0] "Hay %d otra transacción preparada usando la base de datos." msgstr[1] "Hay otras %d transacciones preparadas usando la base de datos." -#: commands/dbcommands.c:3108 +#: commands/dbcommands.c:3128 #, c-format msgid "missing directory \"%s\"" msgstr "directorio «%s» faltante" -#: commands/dbcommands.c:3168 commands/tablespace.c:190 +#: commands/dbcommands.c:3188 commands/tablespace.c:190 #: commands/tablespace.c:654 #, c-format msgid "could not stat directory \"%s\": %m" @@ -7588,14 +7599,14 @@ msgstr "«%s» es una función de agregación" msgid "Use DROP AGGREGATE to drop aggregate functions." msgstr "Use DROP AGGREGATE para eliminar funciones de agregación." -#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3622 -#: commands/tablecmds.c:3780 commands/tablecmds.c:3832 -#: commands/tablecmds.c:16583 tcop/utility.c:1332 +#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3642 +#: commands/tablecmds.c:3800 commands/tablecmds.c:3852 +#: commands/tablecmds.c:16714 tcop/utility.c:1332 #, c-format msgid "relation \"%s\" does not exist, skipping" msgstr "no existe la relación «%s», omitiendo" -#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1275 +#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1292 #, c-format msgid "schema \"%s\" does not exist, skipping" msgstr "el esquema «%s» no existe, omitiendo" @@ -7905,7 +7916,7 @@ msgid "parameter \"%s\" cannot be set in a secondary extension control file" msgstr "el parámetro «%s» no se puede cambiar en un archivo control secundario de extensión" #: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 -#: utils/misc/guc.c:7380 +#: utils/misc/guc.c:7392 #, c-format msgid "parameter \"%s\" requires a Boolean value" msgstr "el parámetro «%s» requiere un valor lógico (booleano)" @@ -8115,7 +8126,7 @@ msgstr "Debe ser superusuario para cambiar el dueño de un conector de datos ext msgid "The owner of a foreign-data wrapper must be a superuser." msgstr "El dueño de un conector de datos externos debe ser un superusuario." -#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:669 +#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:679 #, c-format msgid "foreign-data wrapper \"%s\" does not exist" msgstr "no existe el conector de datos externos «%s»" @@ -8175,7 +8186,7 @@ msgstr "no existe el mapeo de usuario «%s» para el servidor «%s»" msgid "user mapping for \"%s\" does not exist for server \"%s\", skipping" msgstr "no existe el mapeo de usuario «%s» para el servidor «%s», omitiendo" -#: commands/foreigncmds.c:1507 foreign/foreign.c:390 +#: commands/foreigncmds.c:1507 foreign/foreign.c:400 #, c-format msgid "foreign-data wrapper \"%s\" has no handler" msgstr "el conector de datos externos «%s» no tiene manejador" @@ -8583,12 +8594,12 @@ msgstr "no se pueden create restricciones de exclusión en la tabla particionada msgid "cannot create indexes on temporary tables of other sessions" msgstr "no se pueden crear índices en tablas temporales de otras sesiones" -#: commands/indexcmds.c:760 commands/tablecmds.c:782 commands/tablespace.c:1204 +#: commands/indexcmds.c:760 commands/tablecmds.c:799 commands/tablespace.c:1199 #, c-format msgid "cannot specify default tablespace for partitioned relations" msgstr "no se puede especificar el tablespace por omisión para las relaciones particionadas" -#: commands/indexcmds.c:792 commands/tablecmds.c:813 commands/tablecmds.c:3321 +#: commands/indexcmds.c:792 commands/tablecmds.c:830 commands/tablecmds.c:3338 #, c-format msgid "only shared relations can be placed in pg_global tablespace" msgstr "sólo relaciones compartidas pueden ser puestas en el tablespace pg_global" @@ -8663,13 +8674,13 @@ msgstr "La tabla «%s» contiene particiones que son tablas foráneas." msgid "functions in index predicate must be marked IMMUTABLE" msgstr "las funciones utilizadas en predicados de índice deben estar marcadas IMMUTABLE" -#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2545 -#: parser/parse_utilcmd.c:2680 +#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2573 +#: parser/parse_utilcmd.c:2708 #, c-format msgid "column \"%s\" named in key does not exist" msgstr "no existe la columna «%s» en la llave" -#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1831 +#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1859 #, c-format msgid "expressions are not supported in included columns" msgstr "las expresiones no están soportadas en columnas incluidas" @@ -8704,9 +8715,9 @@ msgstr "la columna incluida no permite las opciones NULLS FIRST/LAST" msgid "could not determine which collation to use for index expression" msgstr "no se pudo determinar qué ordenamiento (collation) usar para la expresión de índice" -#: commands/indexcmds.c:1962 commands/tablecmds.c:17603 commands/typecmds.c:807 -#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3795 -#: utils/adt/misc.c:601 +#: commands/indexcmds.c:1962 commands/tablecmds.c:17741 commands/typecmds.c:807 +#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3823 +#: utils/adt/misc.c:594 #, c-format msgid "collations are not supported by type %s" msgstr "los ordenamientos (collation) no están soportados por el tipo %s" @@ -8741,8 +8752,8 @@ msgstr "el método de acceso «%s» no soporta las opciones ASC/DESC" msgid "access method \"%s\" does not support NULLS FIRST/LAST options" msgstr "el método de acceso «%s» no soporta las opciones NULLS FIRST/LAST" -#: commands/indexcmds.c:2144 commands/tablecmds.c:17628 -#: commands/tablecmds.c:17634 commands/typecmds.c:2302 +#: commands/indexcmds.c:2144 commands/tablecmds.c:17766 +#: commands/tablecmds.c:17772 commands/typecmds.c:2302 #, c-format msgid "data type %s has no default operator class for access method \"%s\"" msgstr "el tipo de dato %s no tiene una clase de operadores por omisión para el método de acceso «%s»" @@ -8859,7 +8870,7 @@ msgstr "no se puede bloquear la relación «%s»" msgid "CONCURRENTLY cannot be used when the materialized view is not populated" msgstr "no se puede usar CONCURRENTLY cuando la vista materializada no contiene datos" -#: commands/matview.c:199 gram.y:17995 +#: commands/matview.c:199 gram.y:18002 #, c-format msgid "%s and %s options cannot be used together" msgstr "las opciones %s y %s no pueden usarse juntas" @@ -9157,10 +9168,10 @@ msgid "operator attribute \"%s\" cannot be changed" msgstr "el atributo de operador «%s» no puede ser cambiado" #: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 -#: commands/tablecmds.c:1606 commands/tablecmds.c:2194 -#: commands/tablecmds.c:3432 commands/tablecmds.c:6354 -#: commands/tablecmds.c:9197 commands/tablecmds.c:17181 -#: commands/tablecmds.c:17216 commands/trigger.c:328 commands/trigger.c:1378 +#: commands/tablecmds.c:1623 commands/tablecmds.c:2211 +#: commands/tablecmds.c:3452 commands/tablecmds.c:6377 +#: commands/tablecmds.c:9220 commands/tablecmds.c:17319 +#: commands/tablecmds.c:17354 commands/trigger.c:328 commands/trigger.c:1378 #: commands/trigger.c:1488 rewrite/rewriteDefine.c:279 #: rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 #, c-format @@ -9509,98 +9520,98 @@ msgstr "lastval no está definido en esta sesión" msgid "setval: value %lld is out of bounds for sequence \"%s\" (%lld..%lld)" msgstr "setval: el valor %lld está fuera del rango de la secuencia «%s» (%lld..%lld)" -#: commands/sequence.c:1372 +#: commands/sequence.c:1375 #, c-format msgid "invalid sequence option SEQUENCE NAME" msgstr "opción de secuencia no válida SEQUENCE NAME" -#: commands/sequence.c:1398 +#: commands/sequence.c:1401 #, c-format msgid "identity column type must be smallint, integer, or bigint" msgstr "el tipo de columna de identidad debe ser smallint, integer o bigint" -#: commands/sequence.c:1399 +#: commands/sequence.c:1402 #, c-format msgid "sequence type must be smallint, integer, or bigint" msgstr "el tipo de secuencia debe ser smallint, integer o bigint" -#: commands/sequence.c:1433 +#: commands/sequence.c:1436 #, c-format msgid "INCREMENT must not be zero" msgstr "INCREMENT no debe ser cero" -#: commands/sequence.c:1481 +#: commands/sequence.c:1484 #, c-format msgid "MAXVALUE (%lld) is out of range for sequence data type %s" msgstr "MAXVALUE (%lld) está fuera de rango para el tipo de dato de la secuencia %s" -#: commands/sequence.c:1513 +#: commands/sequence.c:1516 #, c-format msgid "MINVALUE (%lld) is out of range for sequence data type %s" msgstr "MINVALUE (%lld) está fuera de rango para el tipo de dato de la secuencia %s" -#: commands/sequence.c:1521 +#: commands/sequence.c:1524 #, c-format msgid "MINVALUE (%lld) must be less than MAXVALUE (%lld)" msgstr "MINVALUE (%lld) debe ser menor que MAXVALUE (%lld)" -#: commands/sequence.c:1542 +#: commands/sequence.c:1545 #, c-format msgid "START value (%lld) cannot be less than MINVALUE (%lld)" msgstr "el valor START (%lld) debe ser menor que MINVALUE (%lld)" -#: commands/sequence.c:1548 +#: commands/sequence.c:1551 #, c-format msgid "START value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "el valor START (%lld) no puede ser mayor que MAXVALUE (%lld)" -#: commands/sequence.c:1572 +#: commands/sequence.c:1575 #, c-format msgid "RESTART value (%lld) cannot be less than MINVALUE (%lld)" msgstr "el valor RESTART (%lld) no puede ser menos que MINVALUE (%lld)" -#: commands/sequence.c:1578 +#: commands/sequence.c:1581 #, c-format msgid "RESTART value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "el valor RESTART (%lld) no puede ser mayor que MAXVALUE (%lld)" -#: commands/sequence.c:1589 +#: commands/sequence.c:1592 #, c-format msgid "CACHE (%lld) must be greater than zero" msgstr "CACHE (%lld) debe ser mayor que cero" -#: commands/sequence.c:1625 +#: commands/sequence.c:1628 #, c-format msgid "invalid OWNED BY option" msgstr "opción OWNED BY no válida" -#: commands/sequence.c:1626 +#: commands/sequence.c:1629 #, c-format msgid "Specify OWNED BY table.column or OWNED BY NONE." msgstr "Especifique OWNED BY tabla.columna o OWNED BY NONE." -#: commands/sequence.c:1651 +#: commands/sequence.c:1654 #, c-format msgid "sequence cannot be owned by relation \"%s\"" msgstr "la secuencia no puede ser poseída por la relación «%s»" -#: commands/sequence.c:1659 +#: commands/sequence.c:1662 #, c-format msgid "sequence must have same owner as table it is linked to" msgstr "la secuencia debe tener el mismo dueño que la tabla a la que está enlazada" -#: commands/sequence.c:1663 +#: commands/sequence.c:1666 #, c-format msgid "sequence must be in same schema as table it is linked to" msgstr "la secuencia debe estar en el mismo esquema que la tabla a la que está enlazada" -#: commands/sequence.c:1685 +#: commands/sequence.c:1688 #, c-format msgid "cannot change ownership of identity sequence" msgstr "no se puede cambiar el dueño de la secuencia de identidad" -#: commands/sequence.c:1686 commands/tablecmds.c:13966 -#: commands/tablecmds.c:16603 +#: commands/sequence.c:1689 commands/tablecmds.c:14096 +#: commands/tablecmds.c:16734 #, c-format msgid "Sequence \"%s\" is linked to table \"%s\"." msgstr "La secuencia «%s» está enlazada a la tabla «%s»." @@ -9670,12 +9681,12 @@ msgstr "nombre de columna duplicado en definición de estadísticas" msgid "duplicate expression in statistics definition" msgstr "expresión duplicada en definición de estadísticas" -#: commands/statscmds.c:620 commands/tablecmds.c:8161 +#: commands/statscmds.c:620 commands/tablecmds.c:8184 #, c-format msgid "statistics target %d is too low" msgstr "el valor de estadísticas %d es demasiado bajo" -#: commands/statscmds.c:628 commands/tablecmds.c:8169 +#: commands/statscmds.c:628 commands/tablecmds.c:8192 #, c-format msgid "lowering statistics target to %d" msgstr "bajando el valor de estadísticas a %d" @@ -9933,8 +9944,8 @@ msgstr "la vista materializada «%s» no existe, omitiendo" msgid "Use DROP MATERIALIZED VIEW to remove a materialized view." msgstr "Use DROP MATERIALIZED VIEW para eliminar una vista materializada." -#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19119 -#: parser/parse_utilcmd.c:2277 +#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19313 +#: parser/parse_utilcmd.c:2305 #, c-format msgid "index \"%s\" does not exist" msgstr "no existe el índice «%s»" @@ -9957,8 +9968,8 @@ msgstr "«%s» no es un tipo" msgid "Use DROP TYPE to remove a type." msgstr "Use DROP TYPE para eliminar un tipo." -#: commands/tablecmds.c:281 commands/tablecmds.c:13805 -#: commands/tablecmds.c:16306 +#: commands/tablecmds.c:281 commands/tablecmds.c:13935 +#: commands/tablecmds.c:16437 #, c-format msgid "foreign table \"%s\" does not exist" msgstr "no existe la tabla foránea «%s»" @@ -9972,130 +9983,130 @@ msgstr "la tabla foránea «%s» no existe, omitiendo" msgid "Use DROP FOREIGN TABLE to remove a foreign table." msgstr "Use DROP FOREIGN TABLE para eliminar una tabla foránea." -#: commands/tablecmds.c:698 +#: commands/tablecmds.c:715 #, c-format msgid "ON COMMIT can only be used on temporary tables" msgstr "ON COMMIT sólo puede ser usado en tablas temporales" -#: commands/tablecmds.c:729 +#: commands/tablecmds.c:746 #, c-format msgid "cannot create temporary table within security-restricted operation" msgstr "no se puede crear una tabla temporal dentro una operación restringida por seguridad" -#: commands/tablecmds.c:765 commands/tablecmds.c:15113 +#: commands/tablecmds.c:782 commands/tablecmds.c:15244 #, c-format msgid "relation \"%s\" would be inherited from more than once" msgstr "se heredaría de la relación «%s» más de una vez" -#: commands/tablecmds.c:946 +#: commands/tablecmds.c:963 #, c-format msgid "specifying a table access method is not supported on a partitioned table" msgstr "especificar un método de acceso de tablas no está soportado en tablas particionadas" -#: commands/tablecmds.c:1039 +#: commands/tablecmds.c:1056 #, c-format msgid "\"%s\" is not partitioned" msgstr "«%s» no está particionada" -#: commands/tablecmds.c:1134 +#: commands/tablecmds.c:1151 #, c-format msgid "cannot partition using more than %d columns" msgstr "no se puede particionar usando más de %d columnas" -#: commands/tablecmds.c:1190 +#: commands/tablecmds.c:1207 #, c-format msgid "cannot create foreign partition of partitioned table \"%s\"" msgstr "no se puede crear una partición foránea en la tabla particionada «%s»" -#: commands/tablecmds.c:1192 +#: commands/tablecmds.c:1209 #, c-format msgid "Table \"%s\" contains indexes that are unique." msgstr "La tabla «%s» contiene índices que son únicos." -#: commands/tablecmds.c:1355 +#: commands/tablecmds.c:1372 #, c-format msgid "DROP INDEX CONCURRENTLY does not support dropping multiple objects" msgstr "DROP INDEX CONCURRENTLY no soporta eliminar múltiples objetos" -#: commands/tablecmds.c:1359 +#: commands/tablecmds.c:1376 #, c-format msgid "DROP INDEX CONCURRENTLY does not support CASCADE" msgstr "DROP INDEX CONCURRENTLY no soporta CASCADE" -#: commands/tablecmds.c:1463 +#: commands/tablecmds.c:1480 #, c-format msgid "cannot drop partitioned index \"%s\" concurrently" msgstr "no se puede eliminar el índice particionado «%s» concurrentemente" -#: commands/tablecmds.c:1751 +#: commands/tablecmds.c:1768 #, c-format msgid "cannot truncate only a partitioned table" msgstr "no se puede truncar ONLY una tabla particionada" -#: commands/tablecmds.c:1752 +#: commands/tablecmds.c:1769 #, c-format msgid "Do not specify the ONLY keyword, or use TRUNCATE ONLY on the partitions directly." msgstr "No especifique la opción ONLY, o ejecute TRUNCATE ONLY en las particiones directamente." -#: commands/tablecmds.c:1824 +#: commands/tablecmds.c:1841 #, c-format msgid "truncate cascades to table \"%s\"" msgstr "truncando además la tabla «%s»" -#: commands/tablecmds.c:2174 +#: commands/tablecmds.c:2191 #, c-format msgid "cannot truncate foreign table \"%s\"" msgstr "no se puede truncar la tabla foránea «%s»" -#: commands/tablecmds.c:2231 +#: commands/tablecmds.c:2248 #, c-format msgid "cannot truncate temporary tables of other sessions" msgstr "no se pueden truncar tablas temporales de otras sesiones" -#: commands/tablecmds.c:2459 commands/tablecmds.c:15010 +#: commands/tablecmds.c:2476 commands/tablecmds.c:15141 #, c-format msgid "cannot inherit from partitioned table \"%s\"" msgstr "no se puede heredar de la tabla particionada «%s»" -#: commands/tablecmds.c:2464 +#: commands/tablecmds.c:2481 #, c-format msgid "cannot inherit from partition \"%s\"" msgstr "no se puede heredar de la partición «%s»" -#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2507 -#: parser/parse_utilcmd.c:2649 +#: commands/tablecmds.c:2489 parser/parse_utilcmd.c:2535 +#: parser/parse_utilcmd.c:2677 #, c-format msgid "inherited relation \"%s\" is not a table or foreign table" msgstr "la relación heredada «%s» no es una tabla o tabla foránea" -#: commands/tablecmds.c:2484 +#: commands/tablecmds.c:2501 #, c-format msgid "cannot create a temporary relation as partition of permanent relation \"%s\"" msgstr "no se puede crear una relación temporal como partición de la relación permanente «%s»" -#: commands/tablecmds.c:2493 commands/tablecmds.c:14989 +#: commands/tablecmds.c:2510 commands/tablecmds.c:15120 #, c-format msgid "cannot inherit from temporary relation \"%s\"" msgstr "no se puede heredar de la tabla temporal «%s»" -#: commands/tablecmds.c:2503 commands/tablecmds.c:14997 +#: commands/tablecmds.c:2520 commands/tablecmds.c:15128 #, c-format msgid "cannot inherit from temporary relation of another session" msgstr "no se puede heredar de una tabla temporal de otra sesión" -#: commands/tablecmds.c:2557 +#: commands/tablecmds.c:2574 #, c-format msgid "merging multiple inherited definitions of column \"%s\"" msgstr "mezclando múltiples definiciones heredadas de la columna «%s»" -#: commands/tablecmds.c:2565 +#: commands/tablecmds.c:2582 #, c-format msgid "inherited column \"%s\" has a type conflict" msgstr "columna heredada «%s» tiene conflicto de tipos" -#: commands/tablecmds.c:2567 commands/tablecmds.c:2590 -#: commands/tablecmds.c:2607 commands/tablecmds.c:2863 -#: commands/tablecmds.c:2893 commands/tablecmds.c:2907 +#: commands/tablecmds.c:2584 commands/tablecmds.c:2607 +#: commands/tablecmds.c:2624 commands/tablecmds.c:2880 +#: commands/tablecmds.c:2910 commands/tablecmds.c:2924 #: parser/parse_coerce.c:2155 parser/parse_coerce.c:2175 #: parser/parse_coerce.c:2195 parser/parse_coerce.c:2216 #: parser/parse_coerce.c:2271 parser/parse_coerce.c:2305 @@ -10106,1235 +10117,1246 @@ msgstr "columna heredada «%s» tiene conflicto de tipos" msgid "%s versus %s" msgstr "%s versus %s" -#: commands/tablecmds.c:2576 +#: commands/tablecmds.c:2593 #, c-format msgid "inherited column \"%s\" has a collation conflict" msgstr "columna heredada «%s» tiene conflicto de ordenamiento (collation)" -#: commands/tablecmds.c:2578 commands/tablecmds.c:2875 -#: commands/tablecmds.c:6837 +#: commands/tablecmds.c:2595 commands/tablecmds.c:2892 +#: commands/tablecmds.c:6860 #, c-format msgid "\"%s\" versus \"%s\"" msgstr "«%s» versus «%s»" -#: commands/tablecmds.c:2588 +#: commands/tablecmds.c:2605 #, c-format msgid "inherited column \"%s\" has a storage parameter conflict" msgstr "columna heredada «%s» tiene conflicto de parámetros de almacenamiento" -#: commands/tablecmds.c:2605 commands/tablecmds.c:2905 +#: commands/tablecmds.c:2622 commands/tablecmds.c:2922 #, c-format msgid "column \"%s\" has a compression method conflict" msgstr "la columna «%s» tiene conflicto de método de compresión" -#: commands/tablecmds.c:2620 +#: commands/tablecmds.c:2637 #, c-format msgid "inherited column \"%s\" has a generation conflict" msgstr "columna heredada «%s» tiene conflicto de generación" -#: commands/tablecmds.c:2714 commands/tablecmds.c:2769 -#: commands/tablecmds.c:12496 parser/parse_utilcmd.c:1269 -#: parser/parse_utilcmd.c:1312 parser/parse_utilcmd.c:1759 -#: parser/parse_utilcmd.c:1867 +#: commands/tablecmds.c:2731 commands/tablecmds.c:2786 +#: commands/tablecmds.c:12626 parser/parse_utilcmd.c:1297 +#: parser/parse_utilcmd.c:1340 parser/parse_utilcmd.c:1787 +#: parser/parse_utilcmd.c:1895 #, c-format msgid "cannot convert whole-row table reference" msgstr "no se puede convertir una referencia a la fila completa (whole-row)" -#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1270 +#: commands/tablecmds.c:2732 parser/parse_utilcmd.c:1298 #, c-format msgid "Generation expression for column \"%s\" contains a whole-row reference to table \"%s\"." msgstr "La expresión de generación para la columna «%s» contiene una referencia a la fila completa (whole-row) de la tabla «%s»." -#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1313 +#: commands/tablecmds.c:2787 parser/parse_utilcmd.c:1341 #, c-format msgid "Constraint \"%s\" contains a whole-row reference to table \"%s\"." msgstr "La restricción «%s» contiene una referencia a la fila completa (whole-row) de la tabla «%s»." -#: commands/tablecmds.c:2849 +#: commands/tablecmds.c:2866 #, c-format msgid "merging column \"%s\" with inherited definition" msgstr "mezclando la columna «%s» con la definición heredada" -#: commands/tablecmds.c:2853 +#: commands/tablecmds.c:2870 #, c-format msgid "moving and merging column \"%s\" with inherited definition" msgstr "moviendo y mezclando la columna «%s» con la definición heredada" -#: commands/tablecmds.c:2854 +#: commands/tablecmds.c:2871 #, c-format msgid "User-specified column moved to the position of the inherited column." msgstr "La columna especificada por el usuario fue movida a la posición de la columna heredada." -#: commands/tablecmds.c:2861 +#: commands/tablecmds.c:2878 #, c-format msgid "column \"%s\" has a type conflict" msgstr "la columna «%s» tiene conflicto de tipos" -#: commands/tablecmds.c:2873 +#: commands/tablecmds.c:2890 #, c-format msgid "column \"%s\" has a collation conflict" msgstr "la columna «%s» tiene conflicto de ordenamientos (collation)" -#: commands/tablecmds.c:2891 +#: commands/tablecmds.c:2908 #, c-format msgid "column \"%s\" has a storage parameter conflict" msgstr "la columna «%s» tiene conflicto de parámetros de almacenamiento" -#: commands/tablecmds.c:2932 +#: commands/tablecmds.c:2949 #, c-format msgid "child column \"%s\" specifies generation expression" msgstr "la columna hija «%s» especifica una expresión de generación de columna" -#: commands/tablecmds.c:2934 +#: commands/tablecmds.c:2951 #, c-format msgid "Omit the generation expression in the definition of the child table column to inherit the generation expression from the parent table." msgstr "Omita la expresión de generación en la definición de la columna en la tabla hija para heredar la expresión de generación de la tabla padre." -#: commands/tablecmds.c:2938 +#: commands/tablecmds.c:2955 #, c-format msgid "column \"%s\" inherits from generated column but specifies default" msgstr "la columna «%s» hereda de una columna generada pero especifica un valor por omisión" -#: commands/tablecmds.c:2943 +#: commands/tablecmds.c:2960 #, c-format msgid "column \"%s\" inherits from generated column but specifies identity" msgstr "la columna «%s» hereda de una columna generada pero especifica una identidad" -#: commands/tablecmds.c:3052 +#: commands/tablecmds.c:3069 #, c-format msgid "column \"%s\" inherits conflicting generation expressions" msgstr "la columna «%s» hereda expresiones de generación en conflicto" -#: commands/tablecmds.c:3057 +#: commands/tablecmds.c:3074 #, c-format msgid "column \"%s\" inherits conflicting default values" msgstr "la columna «%s» hereda valores por omisión no coincidentes" -#: commands/tablecmds.c:3059 +#: commands/tablecmds.c:3076 #, c-format msgid "To resolve the conflict, specify a default explicitly." msgstr "Para resolver el conflicto, indique explícitamente un valor por omisión." -#: commands/tablecmds.c:3105 +#: commands/tablecmds.c:3122 #, c-format msgid "check constraint name \"%s\" appears multiple times but with different expressions" msgstr "la restricción «check» «%s» aparece más de una vez con diferentes expresiones" -#: commands/tablecmds.c:3330 +#: commands/tablecmds.c:3347 #, c-format msgid "cannot move temporary tables of other sessions" msgstr "no se pueden mover tablas temporales de otras sesiones" -#: commands/tablecmds.c:3400 +#: commands/tablecmds.c:3420 #, c-format msgid "cannot rename column of typed table" msgstr "no se puede renombrar una columna de una tabla tipada" -#: commands/tablecmds.c:3419 +#: commands/tablecmds.c:3439 #, c-format msgid "cannot rename columns of relation \"%s\"" msgstr "no se puede renombrar las columnas de la relación «%s»" -#: commands/tablecmds.c:3514 +#: commands/tablecmds.c:3534 #, c-format msgid "inherited column \"%s\" must be renamed in child tables too" msgstr "debe renombrar la columna heredada «%s» en las tablas hijas también" -#: commands/tablecmds.c:3546 +#: commands/tablecmds.c:3566 #, c-format msgid "cannot rename system column \"%s\"" msgstr "no se puede renombrar la columna de sistema «%s»" -#: commands/tablecmds.c:3561 +#: commands/tablecmds.c:3581 #, c-format msgid "cannot rename inherited column \"%s\"" msgstr "no se puede renombrar la columna heredada «%s»" -#: commands/tablecmds.c:3713 +#: commands/tablecmds.c:3733 #, c-format msgid "inherited constraint \"%s\" must be renamed in child tables too" msgstr "debe renombrar la restricción heredada «%s» en las tablas hijas también" -#: commands/tablecmds.c:3720 +#: commands/tablecmds.c:3740 #, c-format msgid "cannot rename inherited constraint \"%s\"" msgstr "no se puede renombrar la restricción heredada «%s»" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4017 +#: commands/tablecmds.c:4040 #, c-format msgid "cannot %s \"%s\" because it is being used by active queries in this session" msgstr "no se puede hacer %s en «%s» porque está siendo usada por consultas activas en esta sesión" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4026 +#: commands/tablecmds.c:4049 #, c-format msgid "cannot %s \"%s\" because it has pending trigger events" msgstr "no se puede hacer %s en «%s» porque tiene eventos de disparador pendientes" -#: commands/tablecmds.c:4052 +#: commands/tablecmds.c:4075 #, c-format msgid "cannot alter temporary tables of other sessions" msgstr "no se puede alterar tablas temporales de otras sesiones" -#: commands/tablecmds.c:4526 +#: commands/tablecmds.c:4549 #, c-format msgid "cannot alter partition \"%s\" with an incomplete detach" msgstr "no se puede modificar la partición «%s» teniendo un desprendimiento incompleto" -#: commands/tablecmds.c:4719 commands/tablecmds.c:4734 +#: commands/tablecmds.c:4742 commands/tablecmds.c:4757 #, c-format msgid "cannot change persistence setting twice" msgstr "no se puede cambiar la opción de persistencia dos veces" -#: commands/tablecmds.c:4755 +#: commands/tablecmds.c:4778 #, c-format msgid "cannot change access method of a partitioned table" msgstr "no se puede cambiar el método de acceso de una tabla particionada" -#: commands/tablecmds.c:4761 +#: commands/tablecmds.c:4784 #, c-format msgid "cannot have multiple SET ACCESS METHOD subcommands" msgstr "no se pueden tener múltiples subórdenes SET ACCESS METHOD" -#: commands/tablecmds.c:5516 +#: commands/tablecmds.c:5539 #, c-format msgid "cannot rewrite system relation \"%s\"" msgstr "no se puede reescribir la relación de sistema «%s»" -#: commands/tablecmds.c:5522 +#: commands/tablecmds.c:5545 #, c-format msgid "cannot rewrite table \"%s\" used as a catalog table" msgstr "no se puede reescribir la tabla «%s» que es usada como tabla de catálogo" -#: commands/tablecmds.c:5534 +#: commands/tablecmds.c:5557 #, c-format msgid "cannot rewrite temporary tables of other sessions" msgstr "no se puede reescribir tablas temporales de otras sesiones" -#: commands/tablecmds.c:6028 +#: commands/tablecmds.c:6051 #, c-format msgid "column \"%s\" of relation \"%s\" contains null values" msgstr "la columna «%s» de la relación «%s» contiene valores null" -#: commands/tablecmds.c:6045 +#: commands/tablecmds.c:6068 #, c-format msgid "check constraint \"%s\" of relation \"%s\" is violated by some row" msgstr "la restricción check «%s» de la relación «%s» es violada por alguna fila" -#: commands/tablecmds.c:6064 partitioning/partbounds.c:3404 +#: commands/tablecmds.c:6087 partitioning/partbounds.c:3404 #, c-format msgid "updated partition constraint for default partition \"%s\" would be violated by some row" msgstr "la restricción de partición actualizada para la partición default «%s» sería violada por alguna fila" -#: commands/tablecmds.c:6070 +#: commands/tablecmds.c:6093 #, c-format msgid "partition constraint of relation \"%s\" is violated by some row" msgstr "la restricción de partición de la relación «%s» es violada por alguna fila" #. translator: %s is a group of some SQL keywords -#: commands/tablecmds.c:6337 +#: commands/tablecmds.c:6360 #, c-format msgid "ALTER action %s cannot be performed on relation \"%s\"" msgstr "la acción ALTER %s no puede ejecutarse en la relación «%s»" -#: commands/tablecmds.c:6592 commands/tablecmds.c:6599 +#: commands/tablecmds.c:6615 commands/tablecmds.c:6622 #, c-format msgid "cannot alter type \"%s\" because column \"%s.%s\" uses it" msgstr "no se puede alterar el tipo «%s» porque la columna «%s.%s» lo usa" -#: commands/tablecmds.c:6606 +#: commands/tablecmds.c:6629 #, c-format msgid "cannot alter foreign table \"%s\" because column \"%s.%s\" uses its row type" msgstr "no se puede alterar la tabla foránea «%s» porque la columna «%s.%s» usa su tipo de registro" -#: commands/tablecmds.c:6613 +#: commands/tablecmds.c:6636 #, c-format msgid "cannot alter table \"%s\" because column \"%s.%s\" uses its row type" msgstr "no se puede alterar la tabla «%s» porque la columna «%s.%s» usa su tipo de registro" -#: commands/tablecmds.c:6669 +#: commands/tablecmds.c:6692 #, c-format msgid "cannot alter type \"%s\" because it is the type of a typed table" msgstr "no se puede cambiar el tipo «%s» porque es el tipo de una tabla tipada" -#: commands/tablecmds.c:6671 +#: commands/tablecmds.c:6694 #, c-format msgid "Use ALTER ... CASCADE to alter the typed tables too." msgstr "Use ALTER ... CASCADE para eliminar además las tablas tipadas." -#: commands/tablecmds.c:6717 +#: commands/tablecmds.c:6740 #, c-format msgid "type %s is not a composite type" msgstr "el tipo %s no es un tipo compuesto" -#: commands/tablecmds.c:6744 +#: commands/tablecmds.c:6767 #, c-format msgid "cannot add column to typed table" msgstr "no se puede agregar una columna a una tabla tipada" -#: commands/tablecmds.c:6800 +#: commands/tablecmds.c:6823 #, c-format msgid "cannot add column to a partition" msgstr "no se puede agregar una columna a una partición" -#: commands/tablecmds.c:6829 commands/tablecmds.c:15240 +#: commands/tablecmds.c:6852 commands/tablecmds.c:15371 #, c-format msgid "child table \"%s\" has different type for column \"%s\"" msgstr "la tabla hija «%s» tiene un tipo diferente para la columna «%s»" -#: commands/tablecmds.c:6835 commands/tablecmds.c:15247 +#: commands/tablecmds.c:6858 commands/tablecmds.c:15378 #, c-format msgid "child table \"%s\" has different collation for column \"%s\"" msgstr "la tabla hija «%s» tiene un ordenamiento (collation) diferente para la columna «%s»" -#: commands/tablecmds.c:6849 +#: commands/tablecmds.c:6872 #, c-format msgid "merging definition of column \"%s\" for child \"%s\"" msgstr "mezclando la definición de la columna «%s» en la tabla hija «%s»" -#: commands/tablecmds.c:6896 +#: commands/tablecmds.c:6919 #, c-format msgid "cannot recursively add identity column to table that has child tables" msgstr "no se puede agregar una columna de identidad recursivamente a una tabla que tiene tablas hijas" -#: commands/tablecmds.c:7140 +#: commands/tablecmds.c:7163 #, c-format msgid "column must be added to child tables too" msgstr "la columna debe ser agregada a las tablas hijas también" -#: commands/tablecmds.c:7218 +#: commands/tablecmds.c:7241 #, c-format msgid "column \"%s\" of relation \"%s\" already exists, skipping" msgstr "la columna «%s» de la relación «%s» ya existe, omitiendo" -#: commands/tablecmds.c:7225 +#: commands/tablecmds.c:7248 #, c-format msgid "column \"%s\" of relation \"%s\" already exists" msgstr "ya existe la columna «%s» en la relación «%s»" -#: commands/tablecmds.c:7291 commands/tablecmds.c:12135 +#: commands/tablecmds.c:7314 commands/tablecmds.c:12254 #, c-format msgid "cannot remove constraint from only the partitioned table when partitions exist" msgstr "no se pueden eliminar restricciones sólo de la tabla particionada cuando existen particiones" -#: commands/tablecmds.c:7292 commands/tablecmds.c:7609 -#: commands/tablecmds.c:8610 commands/tablecmds.c:12136 +#: commands/tablecmds.c:7315 commands/tablecmds.c:7632 +#: commands/tablecmds.c:8633 commands/tablecmds.c:12255 #, c-format msgid "Do not specify the ONLY keyword." msgstr "No especifique la opción ONLY." -#: commands/tablecmds.c:7329 commands/tablecmds.c:7535 -#: commands/tablecmds.c:7677 commands/tablecmds.c:7791 -#: commands/tablecmds.c:7885 commands/tablecmds.c:7944 -#: commands/tablecmds.c:8063 commands/tablecmds.c:8202 -#: commands/tablecmds.c:8272 commands/tablecmds.c:8428 -#: commands/tablecmds.c:12290 commands/tablecmds.c:13828 -#: commands/tablecmds.c:16397 +#: commands/tablecmds.c:7352 commands/tablecmds.c:7558 +#: commands/tablecmds.c:7700 commands/tablecmds.c:7814 +#: commands/tablecmds.c:7908 commands/tablecmds.c:7967 +#: commands/tablecmds.c:8086 commands/tablecmds.c:8225 +#: commands/tablecmds.c:8295 commands/tablecmds.c:8451 +#: commands/tablecmds.c:12409 commands/tablecmds.c:13958 +#: commands/tablecmds.c:16528 #, c-format msgid "cannot alter system column \"%s\"" msgstr "no se puede alterar columna de sistema «%s»" -#: commands/tablecmds.c:7335 commands/tablecmds.c:7683 +#: commands/tablecmds.c:7358 commands/tablecmds.c:7706 #, c-format msgid "column \"%s\" of relation \"%s\" is an identity column" msgstr "la columna «%s» en la relación «%s» es una columna de identidad" -#: commands/tablecmds.c:7378 +#: commands/tablecmds.c:7401 #, c-format msgid "column \"%s\" is in a primary key" msgstr "la columna «%s» está en la llave primaria" -#: commands/tablecmds.c:7383 +#: commands/tablecmds.c:7406 #, c-format msgid "column \"%s\" is in index used as replica identity" msgstr "la columna «%s» se encuentra en un índice utilizado como identidad de réplica" -#: commands/tablecmds.c:7406 +#: commands/tablecmds.c:7429 #, c-format msgid "column \"%s\" is marked NOT NULL in parent table" msgstr "columna «%s» está marcada NOT NULL en la tabla padre" -#: commands/tablecmds.c:7606 commands/tablecmds.c:9093 +#: commands/tablecmds.c:7629 commands/tablecmds.c:9116 #, c-format msgid "constraint must be added to child tables too" msgstr "la restricción debe ser agregada a las tablas hijas también" -#: commands/tablecmds.c:7607 +#: commands/tablecmds.c:7630 #, c-format msgid "Column \"%s\" of relation \"%s\" is not already NOT NULL." msgstr "La columna «%s» de la relación «%s» no está previamente marcada NOT NULL." -#: commands/tablecmds.c:7685 +#: commands/tablecmds.c:7708 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY instead." msgstr "Use ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY en su lugar." -#: commands/tablecmds.c:7690 +#: commands/tablecmds.c:7713 #, c-format msgid "column \"%s\" of relation \"%s\" is a generated column" msgstr "la columna «%s» en la relación «%s» es una columna generada" -#: commands/tablecmds.c:7693 +#: commands/tablecmds.c:7716 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION instead." msgstr "Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION en su lugar." -#: commands/tablecmds.c:7802 +#: commands/tablecmds.c:7825 #, c-format msgid "column \"%s\" of relation \"%s\" must be declared NOT NULL before identity can be added" msgstr "la columna «%s» en la relación «%s» debe ser declarada NOT NULL antes de que una identidad pueda agregarse" -#: commands/tablecmds.c:7808 +#: commands/tablecmds.c:7831 #, c-format msgid "column \"%s\" of relation \"%s\" is already an identity column" msgstr "la columna «%s» en la relación «%s» ya es una columna de identidad" -#: commands/tablecmds.c:7814 +#: commands/tablecmds.c:7837 #, c-format msgid "column \"%s\" of relation \"%s\" already has a default value" msgstr "la columna «%s» en la relación «%s» ya tiene un valor por omisión" -#: commands/tablecmds.c:7891 commands/tablecmds.c:7952 +#: commands/tablecmds.c:7914 commands/tablecmds.c:7975 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column" msgstr "la columna «%s» en la relación «%s» no es una columna identidad" -#: commands/tablecmds.c:7957 +#: commands/tablecmds.c:7980 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column, skipping" msgstr "la columna «%s» de la relación «%s» no es una columna identidad, omitiendo" -#: commands/tablecmds.c:8010 +#: commands/tablecmds.c:8033 #, c-format msgid "ALTER TABLE / DROP EXPRESSION must be applied to child tables too" msgstr "ALTER TABLE / DROP EXPRESSION se debe aplicar a las tablas hijas también" -#: commands/tablecmds.c:8032 +#: commands/tablecmds.c:8055 #, c-format msgid "cannot drop generation expression from inherited column" msgstr "no se puede eliminar la expresión de generación de una columna heredada" -#: commands/tablecmds.c:8071 +#: commands/tablecmds.c:8094 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column" msgstr "la columna «%s» en la relación «%s» no es una columna generada almacenada" -#: commands/tablecmds.c:8076 +#: commands/tablecmds.c:8099 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column, skipping" msgstr "la columna «%s» de la relación «%s» no es una columna generada almacenada, omitiendo" -#: commands/tablecmds.c:8149 +#: commands/tablecmds.c:8172 #, c-format msgid "cannot refer to non-index column by number" msgstr "no se puede referir a columnas que no son de índice por número" -#: commands/tablecmds.c:8192 +#: commands/tablecmds.c:8215 #, c-format msgid "column number %d of relation \"%s\" does not exist" msgstr "no existe la columna número %d en la relación «%s»" -#: commands/tablecmds.c:8211 +#: commands/tablecmds.c:8234 #, c-format msgid "cannot alter statistics on included column \"%s\" of index \"%s\"" msgstr "no se puede alterar estadísticas en la columna incluida «%s» del índice «%s»" -#: commands/tablecmds.c:8216 +#: commands/tablecmds.c:8239 #, c-format msgid "cannot alter statistics on non-expression column \"%s\" of index \"%s\"" msgstr "no se puede alterar estadísticas en la columna no-de-expresión «%s» del índice «%s»" -#: commands/tablecmds.c:8218 +#: commands/tablecmds.c:8241 #, c-format msgid "Alter statistics on table column instead." msgstr "Altere las estadísticas en la columna de la tabla en su lugar." -#: commands/tablecmds.c:8408 +#: commands/tablecmds.c:8431 #, c-format msgid "invalid storage type \"%s\"" msgstr "tipo de almacenamiento no válido «%s»" -#: commands/tablecmds.c:8440 +#: commands/tablecmds.c:8463 #, c-format msgid "column data type %s can only have storage PLAIN" msgstr "el tipo de datos %s de la columna sólo puede tener almacenamiento PLAIN" -#: commands/tablecmds.c:8485 +#: commands/tablecmds.c:8508 #, c-format msgid "cannot drop column from typed table" msgstr "no se pueden eliminar columnas de una tabla tipada" -#: commands/tablecmds.c:8548 +#: commands/tablecmds.c:8571 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist, skipping" msgstr "no existe la columna «%s» en la relación «%s», omitiendo" -#: commands/tablecmds.c:8561 +#: commands/tablecmds.c:8584 #, c-format msgid "cannot drop system column \"%s\"" msgstr "no se puede eliminar la columna de sistema «%s»" -#: commands/tablecmds.c:8571 +#: commands/tablecmds.c:8594 #, c-format msgid "cannot drop inherited column \"%s\"" msgstr "no se puede eliminar la columna heredada «%s»" -#: commands/tablecmds.c:8584 +#: commands/tablecmds.c:8607 #, c-format msgid "cannot drop column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "no se puede eliminar la columna «%s» porque es parte de la llave de partición de la relación «%s»" -#: commands/tablecmds.c:8609 +#: commands/tablecmds.c:8632 #, c-format msgid "cannot drop column from only the partitioned table when partitions exist" msgstr "no se pueden eliminar columnas sólo de una tabla particionada cuando existe particiones" -#: commands/tablecmds.c:8813 +#: commands/tablecmds.c:8836 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX is not supported on partitioned tables" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX no está soportado en tablas particionadas" -#: commands/tablecmds.c:8838 +#: commands/tablecmds.c:8861 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX will rename index \"%s\" to \"%s\"" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX renombrará el índice «%s» a «%s»" -#: commands/tablecmds.c:9175 +#: commands/tablecmds.c:9198 #, c-format msgid "cannot use ONLY for foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "no se puede usar ONLY para una llave foránea en la tabla particionada «%s» haciendo referencia a la relación «%s»" -#: commands/tablecmds.c:9181 +#: commands/tablecmds.c:9204 #, c-format msgid "cannot add NOT VALID foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "no se puede agregar una llave foránea NOT VALID a la tabla particionada «%s» haciendo referencia a la relación «%s»" -#: commands/tablecmds.c:9184 +#: commands/tablecmds.c:9207 #, c-format msgid "This feature is not yet supported on partitioned tables." msgstr "Esta característica no está aún soportada en tablas particionadas." -#: commands/tablecmds.c:9191 commands/tablecmds.c:9657 +#: commands/tablecmds.c:9214 commands/tablecmds.c:9685 #, c-format msgid "referenced relation \"%s\" is not a table" msgstr "la relación referida «%s» no es una tabla" -#: commands/tablecmds.c:9214 +#: commands/tablecmds.c:9237 #, c-format msgid "constraints on permanent tables may reference only permanent tables" msgstr "las restricciones en tablas permanentes sólo pueden hacer referencia a tablas permanentes" -#: commands/tablecmds.c:9221 +#: commands/tablecmds.c:9244 #, c-format msgid "constraints on unlogged tables may reference only permanent or unlogged tables" msgstr "las restricciones en tablas «unlogged» sólo pueden hacer referencia a tablas permanentes o «unlogged»" -#: commands/tablecmds.c:9227 +#: commands/tablecmds.c:9250 #, c-format msgid "constraints on temporary tables may reference only temporary tables" msgstr "las restricciones en tablas temporales sólo pueden hacer referencia a tablas temporales" -#: commands/tablecmds.c:9231 +#: commands/tablecmds.c:9254 #, c-format msgid "constraints on temporary tables must involve temporary tables of this session" msgstr "las restricciones en tablas temporales sólo pueden hacer referencia a tablas temporales de esta sesión" -#: commands/tablecmds.c:9305 commands/tablecmds.c:9311 +#: commands/tablecmds.c:9328 commands/tablecmds.c:9334 #, c-format msgid "invalid %s action for foreign key constraint containing generated column" msgstr "acción %s no válida para restricción de llave foránea que contiene columnas generadas" -#: commands/tablecmds.c:9327 +#: commands/tablecmds.c:9350 #, c-format msgid "number of referencing and referenced columns for foreign key disagree" msgstr "el número de columnas referidas en la llave foránea no coincide con el número de columnas de referencia" -#: commands/tablecmds.c:9434 +#: commands/tablecmds.c:9457 #, c-format msgid "foreign key constraint \"%s\" cannot be implemented" msgstr "la restricción de llave foránea «%s» no puede ser implementada" -#: commands/tablecmds.c:9436 +#: commands/tablecmds.c:9459 #, c-format msgid "Key columns \"%s\" and \"%s\" are of incompatible types: %s and %s." msgstr "Las columnas llave «%s» y «%s» son de tipos incompatibles: %s y %s" -#: commands/tablecmds.c:9593 +#: commands/tablecmds.c:9628 #, c-format msgid "column \"%s\" referenced in ON DELETE SET action must be part of foreign key" msgstr "la columna «%s» referenciada en la acción ON DELETE SET debe ser parte de la llave foránea" -#: commands/tablecmds.c:9866 commands/tablecmds.c:10334 -#: parser/parse_utilcmd.c:799 parser/parse_utilcmd.c:928 +#: commands/tablecmds.c:9984 commands/tablecmds.c:10422 +#: parser/parse_utilcmd.c:827 parser/parse_utilcmd.c:956 #, c-format msgid "foreign key constraints are not supported on foreign tables" msgstr "las restricciones de llave foránea no están soportadas en tablas foráneas" -#: commands/tablecmds.c:10886 commands/tablecmds.c:11167 -#: commands/tablecmds.c:12092 commands/tablecmds.c:12167 +#: commands/tablecmds.c:10405 +#, c-format +msgid "cannot attach table \"%s\" as a partition because it is referenced by foreign key \"%s\"" +msgstr "no se puede adjuntar como partición la tabla «%s» porque es referida por la llave foránea «%s»" + +#: commands/tablecmds.c:11005 commands/tablecmds.c:11286 +#: commands/tablecmds.c:12211 commands/tablecmds.c:12286 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist" msgstr "no existe la restricción «%s» en la relación «%s»" -#: commands/tablecmds.c:10893 +#: commands/tablecmds.c:11012 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key constraint" msgstr "la restricción «%s» de la relación «%s» no es una restricción de llave foránea" -#: commands/tablecmds.c:10931 +#: commands/tablecmds.c:11050 #, c-format msgid "cannot alter constraint \"%s\" on relation \"%s\"" msgstr "no se puede modificar la restricción «%s» en la relación «%s»" -#: commands/tablecmds.c:10934 +#: commands/tablecmds.c:11053 #, c-format msgid "Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\"." msgstr "La restricción «%s» deriva de la restricción «%s» de la relación «%s»." -#: commands/tablecmds.c:10936 +#: commands/tablecmds.c:11055 #, c-format msgid "You may alter the constraint it derives from, instead." msgstr "En su lugar, puede modificar la restricción de la cual deriva." -#: commands/tablecmds.c:11175 +#: commands/tablecmds.c:11294 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key or check constraint" msgstr "la restricción «%s» de la relación «%s» no es una llave foránea o restricción «check»" -#: commands/tablecmds.c:11253 +#: commands/tablecmds.c:11372 #, c-format msgid "constraint must be validated on child tables too" msgstr "la restricción debe ser validada en las tablas hijas también" -#: commands/tablecmds.c:11343 +#: commands/tablecmds.c:11462 #, c-format msgid "column \"%s\" referenced in foreign key constraint does not exist" msgstr "no existe la columna «%s» referida en la llave foránea" -#: commands/tablecmds.c:11349 +#: commands/tablecmds.c:11468 #, c-format msgid "system columns cannot be used in foreign keys" msgstr "las columnas de sistema no pueden usarse en llaves foráneas" -#: commands/tablecmds.c:11353 +#: commands/tablecmds.c:11472 #, c-format msgid "cannot have more than %d keys in a foreign key" msgstr "no se puede tener más de %d columnas en una llave foránea" -#: commands/tablecmds.c:11419 +#: commands/tablecmds.c:11538 #, c-format msgid "cannot use a deferrable primary key for referenced table \"%s\"" msgstr "no se puede usar una llave primaria postergable para la tabla referenciada «%s»" -#: commands/tablecmds.c:11436 +#: commands/tablecmds.c:11555 #, c-format msgid "there is no primary key for referenced table \"%s\"" msgstr "no hay llave primaria para la tabla referida «%s»" -#: commands/tablecmds.c:11505 +#: commands/tablecmds.c:11624 #, c-format msgid "foreign key referenced-columns list must not contain duplicates" msgstr "la lista de columnas referidas en una llave foránea no debe contener duplicados" -#: commands/tablecmds.c:11599 +#: commands/tablecmds.c:11718 #, c-format msgid "cannot use a deferrable unique constraint for referenced table \"%s\"" msgstr "no se puede usar una restricción unique postergable para la tabla referenciada «%s»" -#: commands/tablecmds.c:11604 +#: commands/tablecmds.c:11723 #, c-format msgid "there is no unique constraint matching given keys for referenced table \"%s\"" msgstr "no hay restricción unique que coincida con las columnas dadas en la tabla referida «%s»" -#: commands/tablecmds.c:12048 +#: commands/tablecmds.c:12167 #, c-format msgid "cannot drop inherited constraint \"%s\" of relation \"%s\"" msgstr "no se puede eliminar la restricción «%s» heredada de la relación «%s»" -#: commands/tablecmds.c:12098 +#: commands/tablecmds.c:12217 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist, skipping" msgstr "no existe la restricción «%s» en la relación «%s», omitiendo" -#: commands/tablecmds.c:12274 +#: commands/tablecmds.c:12393 #, c-format msgid "cannot alter column type of typed table" msgstr "no se puede cambiar el tipo de una columna de una tabla tipada" -#: commands/tablecmds.c:12301 +#: commands/tablecmds.c:12419 +#, c-format +msgid "cannot specify USING when altering type of generated column" +msgstr "no se puede especificar USING al alterar el tipo de una columna generada" + +#: commands/tablecmds.c:12420 commands/tablecmds.c:17584 +#: commands/tablecmds.c:17674 commands/trigger.c:668 +#: rewrite/rewriteHandler.c:930 rewrite/rewriteHandler.c:965 +#, c-format +msgid "Column \"%s\" is a generated column." +msgstr "La columna «%s» es una columna generada." + +#: commands/tablecmds.c:12430 #, c-format msgid "cannot alter inherited column \"%s\"" msgstr "no se puede alterar la columna heredada «%s»" -#: commands/tablecmds.c:12310 +#: commands/tablecmds.c:12439 #, c-format msgid "cannot alter column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "no se puede alterar la columna «%s» porque es parte de la llave de partición de la relación «%s»" -#: commands/tablecmds.c:12360 +#: commands/tablecmds.c:12489 #, c-format msgid "result of USING clause for column \"%s\" cannot be cast automatically to type %s" msgstr "el resultado de la cláusula USING para la columna «%s» no puede ser convertido automáticamente al tipo %s" -#: commands/tablecmds.c:12363 +#: commands/tablecmds.c:12492 #, c-format msgid "You might need to add an explicit cast." msgstr "Puede ser necesario agregar un cast explícito." -#: commands/tablecmds.c:12367 +#: commands/tablecmds.c:12496 #, c-format msgid "column \"%s\" cannot be cast automatically to type %s" msgstr "la columna «%s» no puede convertirse automáticamente al tipo %s" #. translator: USING is SQL, don't translate it -#: commands/tablecmds.c:12370 +#: commands/tablecmds.c:12500 #, c-format msgid "You might need to specify \"USING %s::%s\"." msgstr "Puede ser necesario especificar «USING %s::%s»." -#: commands/tablecmds.c:12469 +#: commands/tablecmds.c:12599 #, c-format msgid "cannot alter inherited column \"%s\" of relation \"%s\"" msgstr "no se puede alterar la columna heredada «%s» de la relación «%s»" -#: commands/tablecmds.c:12497 +#: commands/tablecmds.c:12627 #, c-format msgid "USING expression contains a whole-row table reference." msgstr "La expresión USING contiene una referencia a la fila completa (whole-row)." -#: commands/tablecmds.c:12508 +#: commands/tablecmds.c:12638 #, c-format msgid "type of inherited column \"%s\" must be changed in child tables too" msgstr "debe cambiar el tipo a la columna heredada «%s» en las tablas hijas también" -#: commands/tablecmds.c:12633 +#: commands/tablecmds.c:12763 #, c-format msgid "cannot alter type of column \"%s\" twice" msgstr "no se puede alterar el tipo de la columna «%s» dos veces" -#: commands/tablecmds.c:12671 +#: commands/tablecmds.c:12801 #, c-format msgid "generation expression for column \"%s\" cannot be cast automatically to type %s" msgstr "la expresión de generación para la columna «%s» no puede ser convertido automáticamente al tipo %s" -#: commands/tablecmds.c:12676 +#: commands/tablecmds.c:12806 #, c-format msgid "default for column \"%s\" cannot be cast automatically to type %s" msgstr "el valor por omisión para la columna «%s» no puede ser convertido automáticamente al tipo %s" -#: commands/tablecmds.c:12764 +#: commands/tablecmds.c:12894 #, c-format msgid "cannot alter type of a column used by a function or procedure" msgstr "no se puede alterar el tipo de una columna usada en una función o procedimiento" -#: commands/tablecmds.c:12765 commands/tablecmds.c:12779 -#: commands/tablecmds.c:12798 commands/tablecmds.c:12816 -#: commands/tablecmds.c:12874 +#: commands/tablecmds.c:12895 commands/tablecmds.c:12909 +#: commands/tablecmds.c:12928 commands/tablecmds.c:12946 +#: commands/tablecmds.c:13004 #, c-format msgid "%s depends on column \"%s\"" msgstr "%s depende de la columna «%s»" -#: commands/tablecmds.c:12778 +#: commands/tablecmds.c:12908 #, c-format msgid "cannot alter type of a column used by a view or rule" msgstr "no se puede alterar el tipo de una columna usada en una regla o vista" -#: commands/tablecmds.c:12797 +#: commands/tablecmds.c:12927 #, c-format msgid "cannot alter type of a column used in a trigger definition" msgstr "no se puede alterar el tipo de una columna usada en una definición de trigger" -#: commands/tablecmds.c:12815 +#: commands/tablecmds.c:12945 #, c-format msgid "cannot alter type of a column used in a policy definition" msgstr "no se puede alterar el tipo de una columna usada en una definición de política" -#: commands/tablecmds.c:12846 +#: commands/tablecmds.c:12976 #, c-format msgid "cannot alter type of a column used by a generated column" msgstr "no se puede alterar el tipo de una columna usada por una columna generada" -#: commands/tablecmds.c:12847 +#: commands/tablecmds.c:12977 #, c-format msgid "Column \"%s\" is used by generated column \"%s\"." msgstr "La columna «%s» es usada por la columna generada «%s»." -#: commands/tablecmds.c:12873 +#: commands/tablecmds.c:13003 #, c-format msgid "cannot alter type of a column used by a publication WHERE clause" msgstr "no se puede alterar el tipo de una columna usada la cláusula WHERE de una publicación" -#: commands/tablecmds.c:13936 commands/tablecmds.c:13948 +#: commands/tablecmds.c:14066 commands/tablecmds.c:14078 #, c-format msgid "cannot change owner of index \"%s\"" msgstr "no se puede cambiar el dueño del índice «%s»" -#: commands/tablecmds.c:13938 commands/tablecmds.c:13950 +#: commands/tablecmds.c:14068 commands/tablecmds.c:14080 #, c-format msgid "Change the ownership of the index's table, instead." msgstr "Considere cambiar el dueño de la tabla en vez de cambiar el dueño del índice." -#: commands/tablecmds.c:13964 +#: commands/tablecmds.c:14094 #, c-format msgid "cannot change owner of sequence \"%s\"" msgstr "no se puede cambiar el dueño de la secuencia «%s»" -#: commands/tablecmds.c:13978 commands/tablecmds.c:17292 -#: commands/tablecmds.c:17311 +#: commands/tablecmds.c:14108 commands/tablecmds.c:17430 +#: commands/tablecmds.c:17449 #, c-format msgid "Use ALTER TYPE instead." msgstr "Considere usar ALTER TYPE." -#: commands/tablecmds.c:13987 +#: commands/tablecmds.c:14117 #, c-format msgid "cannot change owner of relation \"%s\"" msgstr "no se puede cambiar el dueño de la relación «%s»" -#: commands/tablecmds.c:14349 +#: commands/tablecmds.c:14479 #, c-format msgid "cannot have multiple SET TABLESPACE subcommands" msgstr "no se pueden tener múltiples subórdenes SET TABLESPACE" -#: commands/tablecmds.c:14426 +#: commands/tablecmds.c:14556 #, c-format msgid "cannot set options for relation \"%s\"" msgstr "no se puede definir opciones para la relación «%s»" -#: commands/tablecmds.c:14460 commands/view.c:521 +#: commands/tablecmds.c:14590 commands/view.c:521 #, c-format msgid "WITH CHECK OPTION is supported only on automatically updatable views" msgstr "WITH CHECK OPTION sólo puede usarse en vistas automáticamente actualizables" -#: commands/tablecmds.c:14710 +#: commands/tablecmds.c:14841 #, c-format msgid "only tables, indexes, and materialized views exist in tablespaces" msgstr "solamente tablas, índices y vistas materializadas existen en tablespaces" -#: commands/tablecmds.c:14722 +#: commands/tablecmds.c:14853 #, c-format msgid "cannot move relations in to or out of pg_global tablespace" msgstr "no se puede mover objetos hacia o desde el tablespace pg_global" -#: commands/tablecmds.c:14814 +#: commands/tablecmds.c:14945 #, c-format msgid "aborting because lock on relation \"%s.%s\" is not available" msgstr "cancelando porque el lock en la relación «%s.%s» no está disponible" -#: commands/tablecmds.c:14830 +#: commands/tablecmds.c:14961 #, c-format msgid "no matching relations in tablespace \"%s\" found" msgstr "no se encontraron relaciones coincidentes en el tablespace «%s»" -#: commands/tablecmds.c:14948 +#: commands/tablecmds.c:15079 #, c-format msgid "cannot change inheritance of typed table" msgstr "no se puede cambiar la herencia de una tabla tipada" -#: commands/tablecmds.c:14953 commands/tablecmds.c:15509 +#: commands/tablecmds.c:15084 commands/tablecmds.c:15640 #, c-format msgid "cannot change inheritance of a partition" msgstr "no puede cambiar la herencia de una partición" -#: commands/tablecmds.c:14958 +#: commands/tablecmds.c:15089 #, c-format msgid "cannot change inheritance of partitioned table" msgstr "no se puede cambiar la herencia de una tabla particionada" -#: commands/tablecmds.c:15004 +#: commands/tablecmds.c:15135 #, c-format msgid "cannot inherit to temporary relation of another session" msgstr "no se puede agregar herencia a tablas temporales de otra sesión" -#: commands/tablecmds.c:15017 +#: commands/tablecmds.c:15148 #, c-format msgid "cannot inherit from a partition" msgstr "no se puede heredar de una partición" -#: commands/tablecmds.c:15039 commands/tablecmds.c:17947 +#: commands/tablecmds.c:15170 commands/tablecmds.c:18085 #, c-format msgid "circular inheritance not allowed" msgstr "la herencia circular no está permitida" -#: commands/tablecmds.c:15040 commands/tablecmds.c:17948 +#: commands/tablecmds.c:15171 commands/tablecmds.c:18086 #, c-format msgid "\"%s\" is already a child of \"%s\"." msgstr "«%s» ya es un hijo de «%s»." -#: commands/tablecmds.c:15053 +#: commands/tablecmds.c:15184 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming an inheritance child" msgstr "el trigger «%s» impide a la tabla «%s» convertirse en hija de herencia" -#: commands/tablecmds.c:15055 +#: commands/tablecmds.c:15186 #, c-format msgid "ROW triggers with transition tables are not supported in inheritance hierarchies." msgstr "Los triggers ROW con tablas de transición no están permitidos en jerarquías de herencia." -#: commands/tablecmds.c:15258 +#: commands/tablecmds.c:15389 #, c-format msgid "column \"%s\" in child table must be marked NOT NULL" msgstr "columna «%s» en tabla hija debe marcarse como NOT NULL" -#: commands/tablecmds.c:15267 +#: commands/tablecmds.c:15398 #, c-format msgid "column \"%s\" in child table must be a generated column" msgstr "columna «%s» en tabla hija debe ser una columna generada" -#: commands/tablecmds.c:15317 +#: commands/tablecmds.c:15448 #, c-format msgid "column \"%s\" in child table has a conflicting generation expression" msgstr "la columna «%s» en tabla hija tiene una expresión de generación en conflicto" -#: commands/tablecmds.c:15345 +#: commands/tablecmds.c:15476 #, c-format msgid "child table is missing column \"%s\"" msgstr "tabla hija no tiene la columna «%s»" -#: commands/tablecmds.c:15433 +#: commands/tablecmds.c:15564 #, c-format msgid "child table \"%s\" has different definition for check constraint \"%s\"" msgstr "la tabla hija «%s» tiene una definición diferente para la restricción «check» «%s»" -#: commands/tablecmds.c:15441 +#: commands/tablecmds.c:15572 #, c-format msgid "constraint \"%s\" conflicts with non-inherited constraint on child table \"%s\"" msgstr "la restricción «%s» está en conflicto con la restricción no heredada en la tabla hija «%s»" -#: commands/tablecmds.c:15452 +#: commands/tablecmds.c:15583 #, c-format msgid "constraint \"%s\" conflicts with NOT VALID constraint on child table \"%s\"" msgstr "la restricción «%s» está en conflicto con la restricción NOT VALID en la tabla hija «%s»" -#: commands/tablecmds.c:15487 +#: commands/tablecmds.c:15618 #, c-format msgid "child table is missing constraint \"%s\"" msgstr "tabla hija no tiene la restricción «%s»" -#: commands/tablecmds.c:15573 +#: commands/tablecmds.c:15704 #, c-format msgid "partition \"%s\" already pending detach in partitioned table \"%s.%s\"" msgstr "la partición «%s» ya tiene un desprendimiento pendiente en la tabla particionada «%s.%s»" -#: commands/tablecmds.c:15602 commands/tablecmds.c:15650 +#: commands/tablecmds.c:15733 commands/tablecmds.c:15781 #, c-format msgid "relation \"%s\" is not a partition of relation \"%s\"" msgstr "relación «%s» no es una partición de la relación «%s»" -#: commands/tablecmds.c:15656 +#: commands/tablecmds.c:15787 #, c-format msgid "relation \"%s\" is not a parent of relation \"%s\"" msgstr "relación «%s» no es un padre de la relación «%s»" -#: commands/tablecmds.c:15884 +#: commands/tablecmds.c:16015 #, c-format msgid "typed tables cannot inherit" msgstr "las tablas tipadas no pueden heredar" -#: commands/tablecmds.c:15914 +#: commands/tablecmds.c:16045 #, c-format msgid "table is missing column \"%s\"" msgstr "la tabla no tiene la columna «%s»" -#: commands/tablecmds.c:15925 +#: commands/tablecmds.c:16056 #, c-format msgid "table has column \"%s\" where type requires \"%s\"" msgstr "la tabla tiene columna «%s» en la posición en que el tipo requiere «%s»." -#: commands/tablecmds.c:15934 +#: commands/tablecmds.c:16065 #, c-format msgid "table \"%s\" has different type for column \"%s\"" msgstr "la tabla «%s» tiene un tipo diferente para la columna «%s»" -#: commands/tablecmds.c:15948 +#: commands/tablecmds.c:16079 #, c-format msgid "table has extra column \"%s\"" msgstr "tabla tiene la columna extra «%s»" -#: commands/tablecmds.c:16000 +#: commands/tablecmds.c:16131 #, c-format msgid "\"%s\" is not a typed table" msgstr "«%s» no es una tabla tipada" -#: commands/tablecmds.c:16174 +#: commands/tablecmds.c:16305 #, c-format msgid "cannot use non-unique index \"%s\" as replica identity" msgstr "no se puede usar el índice no-único «%s» como identidad de réplica" -#: commands/tablecmds.c:16180 +#: commands/tablecmds.c:16311 #, c-format msgid "cannot use non-immediate index \"%s\" as replica identity" msgstr "no puede usar el índice no-inmediato «%s» como identidad de réplica" -#: commands/tablecmds.c:16186 +#: commands/tablecmds.c:16317 #, c-format msgid "cannot use expression index \"%s\" as replica identity" msgstr "no se puede usar el índice funcional «%s» como identidad de réplica" -#: commands/tablecmds.c:16192 +#: commands/tablecmds.c:16323 #, c-format msgid "cannot use partial index \"%s\" as replica identity" msgstr "no se puede usar el índice parcial «%s» como identidad de réplica" -#: commands/tablecmds.c:16209 +#: commands/tablecmds.c:16340 #, c-format msgid "index \"%s\" cannot be used as replica identity because column %d is a system column" msgstr "el índice «%s» no puede usarse como identidad de réplica porque la column %d es una columna de sistema" -#: commands/tablecmds.c:16216 +#: commands/tablecmds.c:16347 #, c-format msgid "index \"%s\" cannot be used as replica identity because column \"%s\" is nullable" msgstr "el índice «%s» no puede usarse como identidad de réplica porque la column «%s» acepta valores nulos" -#: commands/tablecmds.c:16463 +#: commands/tablecmds.c:16594 #, c-format msgid "cannot change logged status of table \"%s\" because it is temporary" msgstr "no se puede cambiar la condición de «logged» de la tabla «%s» porque es temporal" -#: commands/tablecmds.c:16487 +#: commands/tablecmds.c:16618 #, c-format msgid "cannot change table \"%s\" to unlogged because it is part of a publication" msgstr "no se pudo cambiar la tabla «%s» a «unlogged» porque es parte de una publicación" -#: commands/tablecmds.c:16489 +#: commands/tablecmds.c:16620 #, c-format msgid "Unlogged relations cannot be replicated." msgstr "Las tablas «unlogged» no pueden replicarse." -#: commands/tablecmds.c:16534 +#: commands/tablecmds.c:16665 #, c-format msgid "could not change table \"%s\" to logged because it references unlogged table \"%s\"" msgstr "no se pudo cambiar la tabla «%s» a «logged» porque hace referencia a la tabla «unlogged» «%s»" -#: commands/tablecmds.c:16544 +#: commands/tablecmds.c:16675 #, c-format msgid "could not change table \"%s\" to unlogged because it references logged table \"%s\"" msgstr "no se pudo cambiar la tabla «%s» a «unlogged» porque hace referencia a la tabla «logged» «%s»" -#: commands/tablecmds.c:16602 +#: commands/tablecmds.c:16733 #, c-format msgid "cannot move an owned sequence into another schema" msgstr "no se puede mover una secuencia enlazada a una tabla hacia otro esquema" -#: commands/tablecmds.c:16704 +#: commands/tablecmds.c:16838 #, c-format msgid "relation \"%s\" already exists in schema \"%s\"" msgstr "ya existe una relación llamada «%s» en el esquema «%s»" -#: commands/tablecmds.c:17125 +#: commands/tablecmds.c:17263 #, c-format msgid "\"%s\" is not a table or materialized view" msgstr "«%s» no es una tabla o vista materializada" -#: commands/tablecmds.c:17275 +#: commands/tablecmds.c:17413 #, c-format msgid "\"%s\" is not a composite type" msgstr "«%s» no es un tipo compuesto" -#: commands/tablecmds.c:17303 +#: commands/tablecmds.c:17441 #, c-format msgid "cannot change schema of index \"%s\"" msgstr "no se puede cambiar el esquema del índice «%s»" -#: commands/tablecmds.c:17305 commands/tablecmds.c:17317 +#: commands/tablecmds.c:17443 commands/tablecmds.c:17455 #, c-format msgid "Change the schema of the table instead." msgstr "Considere cambiar el esquema de la tabla en su lugar." -#: commands/tablecmds.c:17309 +#: commands/tablecmds.c:17447 #, c-format msgid "cannot change schema of composite type \"%s\"" msgstr "no se puede cambiar el esquema del el tipo compuesto «%s»" -#: commands/tablecmds.c:17315 +#: commands/tablecmds.c:17453 #, c-format msgid "cannot change schema of TOAST table \"%s\"" msgstr "no se puede cambiar el esquema de la tabla TOAST «%s»" -#: commands/tablecmds.c:17352 +#: commands/tablecmds.c:17490 #, c-format msgid "unrecognized partitioning strategy \"%s\"" msgstr "estrategia de particionamiento «%s» no reconocida" -#: commands/tablecmds.c:17360 +#: commands/tablecmds.c:17498 #, c-format msgid "cannot use \"list\" partition strategy with more than one column" msgstr "no se puede usar la estrategia de particionamiento «list» con más de una columna" -#: commands/tablecmds.c:17426 +#: commands/tablecmds.c:17564 #, c-format msgid "column \"%s\" named in partition key does not exist" msgstr "la columna «%s» nombrada en llave de particionamiento no existe" -#: commands/tablecmds.c:17434 +#: commands/tablecmds.c:17572 #, c-format msgid "cannot use system column \"%s\" in partition key" msgstr "no se puede usar la columna de sistema «%s» en llave de particionamiento" -#: commands/tablecmds.c:17445 commands/tablecmds.c:17535 +#: commands/tablecmds.c:17583 commands/tablecmds.c:17673 #, c-format msgid "cannot use generated column in partition key" msgstr "no se puede usar una columna generada en llave de particionamiento" -#: commands/tablecmds.c:17446 commands/tablecmds.c:17536 commands/trigger.c:668 -#: rewrite/rewriteHandler.c:929 rewrite/rewriteHandler.c:964 -#, c-format -msgid "Column \"%s\" is a generated column." -msgstr "La columna «%s» es una columna generada." - -#: commands/tablecmds.c:17518 +#: commands/tablecmds.c:17656 #, c-format msgid "partition key expressions cannot contain system column references" msgstr "las expresiones en la llave de particionamiento no pueden contener referencias a columnas de sistema" -#: commands/tablecmds.c:17565 +#: commands/tablecmds.c:17703 #, c-format msgid "functions in partition key expression must be marked IMMUTABLE" msgstr "las funciones utilizadas en expresiones de la llave de particionamiento deben estar marcadas IMMUTABLE" -#: commands/tablecmds.c:17574 +#: commands/tablecmds.c:17712 #, c-format msgid "cannot use constant expression as partition key" msgstr "no se pueden usar expresiones constantes como llave de particionamiento" -#: commands/tablecmds.c:17595 +#: commands/tablecmds.c:17733 #, c-format msgid "could not determine which collation to use for partition expression" msgstr "no se pudo determinar qué ordenamiento (collation) usar para la expresión de particionamiento" -#: commands/tablecmds.c:17630 +#: commands/tablecmds.c:17768 #, c-format msgid "You must specify a hash operator class or define a default hash operator class for the data type." msgstr "Debe especificar una clase de operadores hash, o definir una clase de operadores por omisión para hash para el tipo de datos." -#: commands/tablecmds.c:17636 +#: commands/tablecmds.c:17774 #, c-format msgid "You must specify a btree operator class or define a default btree operator class for the data type." msgstr "Debe especificar una clase de operadores btree, o definir una clase de operadores por omisión para btree para el tipo de datos." -#: commands/tablecmds.c:17887 +#: commands/tablecmds.c:18025 #, c-format msgid "\"%s\" is already a partition" msgstr "«%s» ya es una partición" -#: commands/tablecmds.c:17893 +#: commands/tablecmds.c:18031 #, c-format msgid "cannot attach a typed table as partition" msgstr "no puede adjuntar tabla tipada como partición" -#: commands/tablecmds.c:17909 +#: commands/tablecmds.c:18047 #, c-format msgid "cannot attach inheritance child as partition" msgstr "no puede adjuntar hija de herencia como partición" -#: commands/tablecmds.c:17923 +#: commands/tablecmds.c:18061 #, c-format msgid "cannot attach inheritance parent as partition" msgstr "no puede adjuntar ancestro de herencia como partición" -#: commands/tablecmds.c:17957 +#: commands/tablecmds.c:18095 #, c-format msgid "cannot attach a temporary relation as partition of permanent relation \"%s\"" msgstr "no se puede adjuntar una relación temporal como partición de la relación permanente «%s»" -#: commands/tablecmds.c:17965 +#: commands/tablecmds.c:18103 #, c-format msgid "cannot attach a permanent relation as partition of temporary relation \"%s\"" msgstr "no se puede adjuntar una relación permanente como partición de la relación temporal «%s»" -#: commands/tablecmds.c:17973 +#: commands/tablecmds.c:18111 #, c-format msgid "cannot attach as partition of temporary relation of another session" msgstr "no se puede adjuntar como partición de una relación temporal de otra sesión" -#: commands/tablecmds.c:17980 +#: commands/tablecmds.c:18118 #, c-format msgid "cannot attach temporary relation of another session as partition" msgstr "no se adjuntar una relación temporal de otra sesión como partición" -#: commands/tablecmds.c:18000 +#: commands/tablecmds.c:18138 #, c-format msgid "table \"%s\" contains column \"%s\" not found in parent \"%s\"" msgstr "la tabla «%s» contiene la columna «%s» no encontrada en el padre «%s»" -#: commands/tablecmds.c:18003 +#: commands/tablecmds.c:18141 #, c-format msgid "The new partition may contain only the columns present in parent." msgstr "La nueva partición sólo puede contener las columnas presentes en el padre." -#: commands/tablecmds.c:18015 +#: commands/tablecmds.c:18153 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming a partition" msgstr "el trigger «%s» impide a la tabla «%s» devenir partición" -#: commands/tablecmds.c:18017 +#: commands/tablecmds.c:18155 #, c-format msgid "ROW triggers with transition tables are not supported on partitions." msgstr "Los triggers ROW con tablas de transición no están soportados en particiones." -#: commands/tablecmds.c:18196 +#: commands/tablecmds.c:18334 #, c-format msgid "cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"" msgstr "no se puede adjuntar la tabla foránea «%s» como partición de la tabla particionada «%s»" -#: commands/tablecmds.c:18199 +#: commands/tablecmds.c:18337 #, c-format msgid "Partitioned table \"%s\" contains unique indexes." msgstr "La tabla particionada «%s» contiene índices únicos." -#: commands/tablecmds.c:18514 +#: commands/tablecmds.c:18652 #, c-format msgid "cannot detach partitions concurrently when a default partition exists" msgstr "no se puede desprender particiones concurrentemente cuando existe una partición por omisión" -#: commands/tablecmds.c:18623 +#: commands/tablecmds.c:18761 #, c-format msgid "partitioned table \"%s\" was removed concurrently" msgstr "la tabla particionada «%s» fue eliminada concurrentemente" -#: commands/tablecmds.c:18629 +#: commands/tablecmds.c:18767 #, c-format msgid "partition \"%s\" was removed concurrently" msgstr "la partición «%s» fue eliminada concurrentemente" -#: commands/tablecmds.c:19153 commands/tablecmds.c:19173 -#: commands/tablecmds.c:19193 commands/tablecmds.c:19212 -#: commands/tablecmds.c:19254 +#: commands/tablecmds.c:19347 commands/tablecmds.c:19367 +#: commands/tablecmds.c:19387 commands/tablecmds.c:19406 +#: commands/tablecmds.c:19448 #, c-format msgid "cannot attach index \"%s\" as a partition of index \"%s\"" msgstr "no se puede adjuntar el índice «%s» como partición del índice «%s»" -#: commands/tablecmds.c:19156 +#: commands/tablecmds.c:19350 #, c-format msgid "Index \"%s\" is already attached to another index." msgstr "El índice «%s» ya está adjunto a otro índice." -#: commands/tablecmds.c:19176 +#: commands/tablecmds.c:19370 #, c-format msgid "Index \"%s\" is not an index on any partition of table \"%s\"." msgstr "El índice «%s» no es un índice en una partición de la tabla «%s»." -#: commands/tablecmds.c:19196 +#: commands/tablecmds.c:19390 #, c-format msgid "The index definitions do not match." msgstr "Las definiciones de los índices no coinciden." -#: commands/tablecmds.c:19215 +#: commands/tablecmds.c:19409 #, c-format msgid "The index \"%s\" belongs to a constraint in table \"%s\" but no constraint exists for index \"%s\"." msgstr "El índice «%s» pertenece a una restricción en la tabla «%s», pero no existe una restricción para el índice «%s»." -#: commands/tablecmds.c:19257 +#: commands/tablecmds.c:19451 #, c-format msgid "Another index is already attached for partition \"%s\"." msgstr "Otro índice ya está adjunto para la partición «%s»." -#: commands/tablecmds.c:19494 +#: commands/tablecmds.c:19688 #, c-format msgid "column data type %s does not support compression" msgstr "el tipo de dato de columna %s no soporta compresión" -#: commands/tablecmds.c:19501 +#: commands/tablecmds.c:19695 #, c-format msgid "invalid compression method \"%s\"" msgstr "método de compresión «%s» no válido" @@ -11374,17 +11396,17 @@ msgstr "la ruta «%s» del tablespace es demasiado larga" msgid "tablespace location should not be inside the data directory" msgstr "la ubicación del tablespace no debe estar dentro del directorio de datos" -#: commands/tablespace.c:290 commands/tablespace.c:996 +#: commands/tablespace.c:290 commands/tablespace.c:991 #, c-format msgid "unacceptable tablespace name \"%s\"" msgstr "el nombre de tablespace «%s» es inaceptable" -#: commands/tablespace.c:292 commands/tablespace.c:997 +#: commands/tablespace.c:292 commands/tablespace.c:992 #, c-format msgid "The prefix \"pg_\" is reserved for system tablespaces." msgstr "El prefijo «pg_» está reservado para tablespaces del sistema." -#: commands/tablespace.c:311 commands/tablespace.c:1018 +#: commands/tablespace.c:311 commands/tablespace.c:1013 #, c-format msgid "tablespace \"%s\" already exists" msgstr "el tablespace «%s» ya existe" @@ -11394,9 +11416,9 @@ msgstr "el tablespace «%s» ya existe" msgid "pg_tablespace OID value not set when in binary upgrade mode" msgstr "el valor de OID de pg_tablespace no se definió en modo de actualización binaria" -#: commands/tablespace.c:441 commands/tablespace.c:979 -#: commands/tablespace.c:1068 commands/tablespace.c:1137 -#: commands/tablespace.c:1283 commands/tablespace.c:1486 +#: commands/tablespace.c:441 commands/tablespace.c:974 +#: commands/tablespace.c:1063 commands/tablespace.c:1132 +#: commands/tablespace.c:1278 commands/tablespace.c:1481 #, c-format msgid "tablespace \"%s\" does not exist" msgstr "no existe el tablespace «%s»" @@ -11437,33 +11459,33 @@ msgid "directory \"%s\" already in use as a tablespace" msgstr "el directorio «%s» ya está siendo usado como tablespace" #: commands/tablespace.c:788 commands/tablespace.c:801 -#: commands/tablespace.c:837 commands/tablespace.c:929 storage/file/fd.c:3255 -#: storage/file/fd.c:3669 +#: commands/tablespace.c:836 commands/tablespace.c:926 storage/file/fd.c:3255 +#: storage/file/fd.c:3664 #, c-format msgid "could not remove directory \"%s\": %m" msgstr "no se pudo eliminar el directorio «%s»: %m" -#: commands/tablespace.c:850 commands/tablespace.c:938 +#: commands/tablespace.c:848 commands/tablespace.c:934 #, c-format msgid "could not remove symbolic link \"%s\": %m" msgstr "no se pudo eliminar el enlace simbólico «%s»: %m" -#: commands/tablespace.c:860 commands/tablespace.c:947 +#: commands/tablespace.c:857 commands/tablespace.c:942 #, c-format msgid "\"%s\" is not a directory or symbolic link" msgstr "«%s» no es un directorio o enlace simbólico" -#: commands/tablespace.c:1142 +#: commands/tablespace.c:1137 #, c-format msgid "Tablespace \"%s\" does not exist." msgstr "No existe el tablespace «%s»." -#: commands/tablespace.c:1588 +#: commands/tablespace.c:1583 #, c-format msgid "directories for tablespace %u could not be removed" msgstr "algunos directorios para el tablespace %u no pudieron eliminarse" -#: commands/tablespace.c:1590 +#: commands/tablespace.c:1585 #, c-format msgid "You can remove the directories manually if necessary." msgstr "Puede eliminar los directorios manualmente, si es necesario." @@ -11715,31 +11737,25 @@ msgstr "mover registros a otra partición durante un trigger BEFORE FOR EACH ROW msgid "Before executing trigger \"%s\", the row was to be in partition \"%s.%s\"." msgstr "Antes de ejecutar el trigger «%s», la fila iba a estar en la partición «%s.%s»." -#: commands/trigger.c:3441 executor/nodeModifyTable.c:2359 -#: executor/nodeModifyTable.c:2442 -#, c-format -msgid "tuple to be updated was already modified by an operation triggered by the current command" -msgstr "el registro a ser actualizado ya fue modificado por una operación disparada por la orden actual" - #: commands/trigger.c:3442 executor/nodeModifyTable.c:1522 -#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2360 -#: executor/nodeModifyTable.c:2443 executor/nodeModifyTable.c:2980 -#: executor/nodeModifyTable.c:3107 +#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2363 +#: executor/nodeModifyTable.c:2454 executor/nodeModifyTable.c:3015 +#: executor/nodeModifyTable.c:3154 #, c-format msgid "Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows." msgstr "Considere usar un disparador AFTER en lugar de un disparador BEFORE para propagar cambios a otros registros." #: commands/trigger.c:3483 executor/nodeLockRows.c:229 #: executor/nodeLockRows.c:238 executor/nodeModifyTable.c:316 -#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2377 -#: executor/nodeModifyTable.c:2585 +#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2380 +#: executor/nodeModifyTable.c:2604 #, c-format msgid "could not serialize access due to concurrent update" msgstr "no se pudo serializar el acceso debido a un update concurrente" #: commands/trigger.c:3491 executor/nodeModifyTable.c:1628 -#: executor/nodeModifyTable.c:2460 executor/nodeModifyTable.c:2609 -#: executor/nodeModifyTable.c:2998 +#: executor/nodeModifyTable.c:2471 executor/nodeModifyTable.c:2628 +#: executor/nodeModifyTable.c:3033 #, c-format msgid "could not serialize access due to concurrent delete" msgstr "no se pudo serializar el acceso debido a un delete concurrente" @@ -12221,7 +12237,7 @@ msgid "permission denied to create role" msgstr "se ha denegado el permiso para crear el rol" #: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 -#: utils/adt/acl.c:5331 utils/adt/acl.c:5337 gram.y:16437 gram.y:16483 +#: utils/adt/acl.c:5331 utils/adt/acl.c:5337 gram.y:16444 gram.y:16490 #, c-format msgid "role name \"%s\" is reserved" msgstr "el nombre de rol «%s» está reservado" @@ -12517,32 +12533,32 @@ msgstr "multixact más antiguo es demasiado antiguo" msgid "Close open transactions with multixacts soon to avoid wraparound problems." msgstr "Cierre transacciones con multixact pronto para prevenir problemas por reciclaje del contador." -#: commands/vacuum.c:1811 +#: commands/vacuum.c:1821 #, c-format msgid "some databases have not been vacuumed in over 2 billion transactions" msgstr "algunas bases de datos no han tenido VACUUM en más de 2 mil millones de transacciones" -#: commands/vacuum.c:1812 +#: commands/vacuum.c:1822 #, c-format msgid "You might have already suffered transaction-wraparound data loss." msgstr "Puede haber sufrido ya problemas de pérdida de datos por reciclaje del contador de transacciones." -#: commands/vacuum.c:1980 +#: commands/vacuum.c:1990 #, c-format msgid "skipping \"%s\" --- cannot vacuum non-tables or special system tables" msgstr "omitiendo «%s»: no se puede aplicar VACUUM a objetos que no son tablas o a tablas especiales de sistema" -#: commands/vacuum.c:2358 +#: commands/vacuum.c:2368 #, c-format msgid "scanned index \"%s\" to remove %d row versions" msgstr "se recorrió el índice «%s» para eliminar %d versiones de filas" -#: commands/vacuum.c:2377 +#: commands/vacuum.c:2387 #, c-format msgid "index \"%s\" now contains %.0f row versions in %u pages" msgstr "el índice «%s» ahora contiene %.0f versiones de filas en %u páginas" -#: commands/vacuum.c:2381 +#: commands/vacuum.c:2391 #, c-format msgid "" "%.0f index row versions were removed.\n" @@ -12567,7 +12583,8 @@ msgid_plural "launched %d parallel vacuum workers for index cleanup (planned: %d msgstr[0] "se lanzó %d proceso asistente para «cleanup» de índices (planeados: %d)" msgstr[1] "se lanzaron %d procesos asistentes para «cleanup» de índices (planeados: %d)" -#: commands/variable.c:165 utils/misc/guc.c:12115 utils/misc/guc.c:12193 +#: commands/variable.c:165 tcop/postgres.c:3665 utils/misc/guc.c:12133 +#: utils/misc/guc.c:12211 #, c-format msgid "Unrecognized key word: \"%s\"." msgstr "Palabra clave no reconocida: «%s»." @@ -12627,7 +12644,7 @@ msgstr "SET TRANSACTION ISOLATION LEVEL debe ser llamado antes de cualquier cons msgid "SET TRANSACTION ISOLATION LEVEL must not be called in a subtransaction" msgstr "SET TRANSACTION ISOLATION LEVEL no debe ser llamado en una subtransacción" -#: commands/variable.c:548 storage/lmgr/predicate.c:1694 +#: commands/variable.c:548 storage/lmgr/predicate.c:1699 #, c-format msgid "cannot use serializable mode in a hot standby" msgstr "no se puede utilizar el modo serializable en un hot standby" @@ -12793,7 +12810,7 @@ msgstr "La consulta entrega un valor para una columna eliminada en la posición msgid "Table has type %s at ordinal position %d, but query expects %s." msgstr "La tabla tiene tipo %s en posición ordinal %d, pero la consulta esperaba %s." -#: executor/execExpr.c:1098 parser/parse_agg.c:837 +#: executor/execExpr.c:1098 parser/parse_agg.c:835 #, c-format msgid "window function calls cannot be nested" msgstr "no se pueden anidar llamadas a funciones de ventana deslizante" @@ -12960,175 +12977,175 @@ msgstr "La llave %s está en conflicto con la llave existente %s." msgid "Key conflicts with existing key." msgstr "La llave está en conflicto con una llave existente." -#: executor/execMain.c:1009 +#: executor/execMain.c:1016 #, c-format msgid "cannot change sequence \"%s\"" msgstr "no se puede cambiar la secuencia «%s»" -#: executor/execMain.c:1015 +#: executor/execMain.c:1022 #, c-format msgid "cannot change TOAST relation \"%s\"" msgstr "no se puede cambiar la relación TOAST «%s»" -#: executor/execMain.c:1033 rewrite/rewriteHandler.c:3103 -#: rewrite/rewriteHandler.c:3983 +#: executor/execMain.c:1040 rewrite/rewriteHandler.c:3112 +#: rewrite/rewriteHandler.c:4000 #, c-format msgid "cannot insert into view \"%s\"" msgstr "no se puede insertar en la vista «%s»" -#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3106 -#: rewrite/rewriteHandler.c:3986 +#: executor/execMain.c:1042 rewrite/rewriteHandler.c:3115 +#: rewrite/rewriteHandler.c:4003 #, c-format msgid "To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule." msgstr "Para posibilitar las inserciones en la vista, provea un disparador INSTEAD OF INSERT o una regla incodicional ON INSERT DO INSTEAD." -#: executor/execMain.c:1041 rewrite/rewriteHandler.c:3111 -#: rewrite/rewriteHandler.c:3991 +#: executor/execMain.c:1048 rewrite/rewriteHandler.c:3120 +#: rewrite/rewriteHandler.c:4008 #, c-format msgid "cannot update view \"%s\"" msgstr "no se puede actualizar la vista «%s»" -#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3114 -#: rewrite/rewriteHandler.c:3994 +#: executor/execMain.c:1050 rewrite/rewriteHandler.c:3123 +#: rewrite/rewriteHandler.c:4011 #, c-format msgid "To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule." msgstr "Para posibilitar las actualizaciones en la vista, provea un disparador INSTEAD OF UPDATE o una regla incondicional ON UPDATE DO INSTEAD." -#: executor/execMain.c:1049 rewrite/rewriteHandler.c:3119 -#: rewrite/rewriteHandler.c:3999 +#: executor/execMain.c:1056 rewrite/rewriteHandler.c:3128 +#: rewrite/rewriteHandler.c:4016 #, c-format msgid "cannot delete from view \"%s\"" msgstr "no se puede eliminar de la vista «%s»" -#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3122 -#: rewrite/rewriteHandler.c:4002 +#: executor/execMain.c:1058 rewrite/rewriteHandler.c:3131 +#: rewrite/rewriteHandler.c:4019 #, c-format msgid "To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule." msgstr "Para posibilitar las eliminaciones en la vista, provea un disparador INSTEAD OF DELETE o una regla incondicional ON DELETE DO INSTEAD." -#: executor/execMain.c:1062 +#: executor/execMain.c:1069 #, c-format msgid "cannot change materialized view \"%s\"" msgstr "no se puede cambiar la vista materializada «%s»" -#: executor/execMain.c:1074 +#: executor/execMain.c:1081 #, c-format msgid "cannot insert into foreign table \"%s\"" msgstr "no se puede insertar en la tabla foránea «%s»" -#: executor/execMain.c:1080 +#: executor/execMain.c:1087 #, c-format msgid "foreign table \"%s\" does not allow inserts" msgstr "la tabla foránea «%s» no permite inserciones" -#: executor/execMain.c:1087 +#: executor/execMain.c:1094 #, c-format msgid "cannot update foreign table \"%s\"" msgstr "no se puede actualizar la tabla foránea «%s»" -#: executor/execMain.c:1093 +#: executor/execMain.c:1100 #, c-format msgid "foreign table \"%s\" does not allow updates" msgstr "la tabla foránea «%s» no permite actualizaciones" -#: executor/execMain.c:1100 +#: executor/execMain.c:1107 #, c-format msgid "cannot delete from foreign table \"%s\"" msgstr "no se puede eliminar desde la tabla foránea «%s»" -#: executor/execMain.c:1106 +#: executor/execMain.c:1113 #, c-format msgid "foreign table \"%s\" does not allow deletes" msgstr "la tabla foránea «%s» no permite eliminaciones" -#: executor/execMain.c:1117 +#: executor/execMain.c:1124 #, c-format msgid "cannot change relation \"%s\"" msgstr "no se puede cambiar la relación «%s»" -#: executor/execMain.c:1144 +#: executor/execMain.c:1151 #, c-format msgid "cannot lock rows in sequence \"%s\"" msgstr "no se puede bloquear registros de la secuencia «%s»" -#: executor/execMain.c:1151 +#: executor/execMain.c:1158 #, c-format msgid "cannot lock rows in TOAST relation \"%s\"" msgstr "no se puede bloquear registros en la relación TOAST «%s»" -#: executor/execMain.c:1158 +#: executor/execMain.c:1165 #, c-format msgid "cannot lock rows in view \"%s\"" msgstr "no se puede bloquear registros en la vista «%s»" -#: executor/execMain.c:1166 +#: executor/execMain.c:1173 #, c-format msgid "cannot lock rows in materialized view \"%s\"" msgstr "no se puede bloquear registros en la vista materializada «%s»" -#: executor/execMain.c:1175 executor/execMain.c:2685 +#: executor/execMain.c:1182 executor/execMain.c:2694 #: executor/nodeLockRows.c:136 #, c-format msgid "cannot lock rows in foreign table \"%s\"" msgstr "no se puede bloquear registros en la tabla foránea «%s»" -#: executor/execMain.c:1181 +#: executor/execMain.c:1188 #, c-format msgid "cannot lock rows in relation \"%s\"" msgstr "no se puede bloquear registros en la tabla «%s»" -#: executor/execMain.c:1888 +#: executor/execMain.c:1897 #, c-format msgid "new row for relation \"%s\" violates partition constraint" msgstr "el nuevo registro para la relación «%s» viola la restricción de partición" -#: executor/execMain.c:1890 executor/execMain.c:1973 executor/execMain.c:2023 -#: executor/execMain.c:2132 +#: executor/execMain.c:1899 executor/execMain.c:1982 executor/execMain.c:2032 +#: executor/execMain.c:2141 #, c-format msgid "Failing row contains %s." msgstr "La fila que falla contiene %s." -#: executor/execMain.c:1970 +#: executor/execMain.c:1979 #, c-format msgid "null value in column \"%s\" of relation \"%s\" violates not-null constraint" msgstr "el valor nulo en la columna «%s» de la relación «%s» viola la restricción de no nulo" -#: executor/execMain.c:2021 +#: executor/execMain.c:2030 #, c-format msgid "new row for relation \"%s\" violates check constraint \"%s\"" msgstr "el nuevo registro para la relación «%s» viola la restricción «check» «%s»" -#: executor/execMain.c:2130 +#: executor/execMain.c:2139 #, c-format msgid "new row violates check option for view \"%s\"" msgstr "el nuevo registro para la vista «%s» viola la opción check" -#: executor/execMain.c:2140 +#: executor/execMain.c:2149 #, c-format msgid "new row violates row-level security policy \"%s\" for table \"%s\"" msgstr "el nuevo registro viola la política de seguridad de registros «%s» para la tabla «%s»" -#: executor/execMain.c:2145 +#: executor/execMain.c:2154 #, c-format msgid "new row violates row-level security policy for table \"%s\"" msgstr "el nuevo registro viola la política de seguridad de registros para la tabla «%s»" -#: executor/execMain.c:2153 +#: executor/execMain.c:2162 #, c-format msgid "target row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "el registro destino viola la política de seguridad de registros «%s» (expresión USING) para la tabla «%s»" -#: executor/execMain.c:2158 +#: executor/execMain.c:2167 #, c-format msgid "target row violates row-level security policy (USING expression) for table \"%s\"" msgstr "el registro destino viola la política de seguridad de registros (expresión USING) para la tabla «%s»" -#: executor/execMain.c:2165 +#: executor/execMain.c:2174 #, c-format msgid "new row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "el nuevo registro viola la política de seguridad de registros «%s» (expresión USING) para la tabla «%s»" -#: executor/execMain.c:2170 +#: executor/execMain.c:2179 #, c-format msgid "new row violates row-level security policy (USING expression) for table \"%s\"" msgstr "el nuevo registro viola la política de seguridad de registros (expresión USING) para la tabla «%s»" @@ -13143,22 +13160,22 @@ msgstr "no se encontró una partición de «%s» para el registro" msgid "Partition key of the failing row contains %s." msgstr "La llave de particionamiento de la fila que falla contiene %s." -#: executor/execReplication.c:196 executor/execReplication.c:380 +#: executor/execReplication.c:197 executor/execReplication.c:381 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update, retrying" msgstr "el registro a ser bloqueado ya fue movido a otra partición debido a un update concurrente, reintentando" -#: executor/execReplication.c:200 executor/execReplication.c:384 +#: executor/execReplication.c:201 executor/execReplication.c:385 #, c-format msgid "concurrent update, retrying" msgstr "actualización simultánea, reintentando" -#: executor/execReplication.c:206 executor/execReplication.c:390 +#: executor/execReplication.c:207 executor/execReplication.c:391 #, c-format msgid "concurrent delete, retrying" msgstr "eliminacón concurrente, reintentando" -#: executor/execReplication.c:276 parser/parse_cte.c:308 +#: executor/execReplication.c:277 parser/parse_cte.c:308 #: parser/parse_oper.c:233 utils/adt/array_userfuncs.c:724 #: utils/adt/array_userfuncs.c:867 utils/adt/arrayfuncs.c:3709 #: utils/adt/arrayfuncs.c:4264 utils/adt/arrayfuncs.c:6256 @@ -13167,47 +13184,47 @@ msgstr "eliminacón concurrente, reintentando" msgid "could not identify an equality operator for type %s" msgstr "no se pudo identificar un operador de igualdad para el tipo %s" -#: executor/execReplication.c:606 executor/execReplication.c:612 +#: executor/execReplication.c:611 executor/execReplication.c:617 #, c-format msgid "cannot update table \"%s\"" msgstr "no se puede actualizar la tabla «%s»" -#: executor/execReplication.c:608 executor/execReplication.c:620 +#: executor/execReplication.c:613 executor/execReplication.c:625 #, c-format msgid "Column used in the publication WHERE expression is not part of the replica identity." msgstr "La columna usada en la expresión WHERE de la publicación no es parte de la identidad de replicación." -#: executor/execReplication.c:614 executor/execReplication.c:626 +#: executor/execReplication.c:619 executor/execReplication.c:631 #, c-format msgid "Column list used by the publication does not cover the replica identity." msgstr "La lista de columnas usada por la publicación no incluye la identidad de replicación." -#: executor/execReplication.c:618 executor/execReplication.c:624 +#: executor/execReplication.c:623 executor/execReplication.c:629 #, c-format msgid "cannot delete from table \"%s\"" msgstr "no se puede eliminar desde la tabla «%s»" -#: executor/execReplication.c:644 +#: executor/execReplication.c:649 #, c-format msgid "cannot update table \"%s\" because it does not have a replica identity and publishes updates" msgstr "no se puede actualizar la tabla «%s» porque no tiene identidad de replicación y publica updates" -#: executor/execReplication.c:646 +#: executor/execReplication.c:651 #, c-format msgid "To enable updating the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "Para habilitar la actualización de la tabla, configure REPLICA IDENTITY utilizando ALTER TABLE." -#: executor/execReplication.c:650 +#: executor/execReplication.c:655 #, c-format msgid "cannot delete from table \"%s\" because it does not have a replica identity and publishes deletes" msgstr "no se puede eliminar de la tabla «%s» porque no tiene una identidad de replicación y publica deletes" -#: executor/execReplication.c:652 +#: executor/execReplication.c:657 #, c-format msgid "To enable deleting from the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "para habilitar la eliminación en la tabla, configure REPLICA IDENTITY utilizando ALTER TABLE." -#: executor/execReplication.c:668 +#: executor/execReplication.c:673 #, c-format msgid "cannot use relation \"%s.%s\" as logical replication target" msgstr "no se puede usar la relación «%s.%s» como destino de replicación lógica" @@ -13287,7 +13304,7 @@ msgid "%s is not allowed in an SQL function" msgstr "%s no está permitido en una función SQL" #. translator: %s is a SQL statement name -#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2648 +#: executor/functions.c:528 executor/spi.c:1745 executor/spi.c:2656 #, c-format msgid "%s is not allowed in a non-volatile function" msgstr "%s no está permitido en una función no-«volatile»" @@ -13354,7 +13371,7 @@ msgstr "el tipo de retorno %s no es soportado en funciones SQL" msgid "aggregate %u needs to have compatible input type and transition type" msgstr "la función de agregación %u necesita tener tipos de entrada y transición compatibles" -#: executor/nodeAgg.c:3952 parser/parse_agg.c:679 parser/parse_agg.c:707 +#: executor/nodeAgg.c:3952 parser/parse_agg.c:677 parser/parse_agg.c:705 #, c-format msgid "aggregate function calls cannot be nested" msgstr "no se pueden anidar llamadas a funciones de agregación" @@ -13435,28 +13452,28 @@ msgid "Consider defining the foreign key on table \"%s\"." msgstr "Considere definir la llave foránea en la tabla «%s»." #. translator: %s is a SQL command name -#: executor/nodeModifyTable.c:2563 executor/nodeModifyTable.c:2986 -#: executor/nodeModifyTable.c:3113 +#: executor/nodeModifyTable.c:2582 executor/nodeModifyTable.c:3021 +#: executor/nodeModifyTable.c:3160 #, c-format msgid "%s command cannot affect row a second time" msgstr "la orden %s no puede afectar una fila por segunda vez" -#: executor/nodeModifyTable.c:2565 +#: executor/nodeModifyTable.c:2584 #, c-format msgid "Ensure that no rows proposed for insertion within the same command have duplicate constrained values." msgstr "Asegúrese de que ningún registro propuesto para inserción dentro de la misma orden tenga valores duplicados restringidos." -#: executor/nodeModifyTable.c:2979 executor/nodeModifyTable.c:3106 +#: executor/nodeModifyTable.c:3014 executor/nodeModifyTable.c:3153 #, c-format msgid "tuple to be updated or deleted was already modified by an operation triggered by the current command" msgstr "el registro a ser actualizado o eliminado ya fue modificado por una operación disparada por la orden actual" -#: executor/nodeModifyTable.c:2988 executor/nodeModifyTable.c:3115 +#: executor/nodeModifyTable.c:3023 executor/nodeModifyTable.c:3162 #, c-format msgid "Ensure that not more than one source row matches any one target row." msgstr "Asegúrese que no más de un registro de origen coincide con cada registro de destino." -#: executor/nodeModifyTable.c:3070 +#: executor/nodeModifyTable.c:3112 #, c-format msgid "tuple to be deleted was already moved to another partition due to concurrent update" msgstr "el registro a ser eliminado ya fue movido a otra partición por un update concurrente" @@ -13562,49 +13579,49 @@ msgstr "Revise llamadas a «SPI_finish» faltantes." msgid "subtransaction left non-empty SPI stack" msgstr "subtransacción dejó un stack SPI no vacío" -#: executor/spi.c:1600 +#: executor/spi.c:1603 #, c-format msgid "cannot open multi-query plan as cursor" msgstr "no se puede abrir plan de varias consultas como cursor" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:1610 +#: executor/spi.c:1613 #, c-format msgid "cannot open %s query as cursor" msgstr "no se puede abrir consulta %s como cursor" -#: executor/spi.c:1716 +#: executor/spi.c:1719 #, c-format msgid "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE is not supported" msgstr "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE no está soportado" -#: executor/spi.c:1717 parser/analyze.c:2910 +#: executor/spi.c:1720 parser/analyze.c:2910 #, c-format msgid "Scrollable cursors must be READ ONLY." msgstr "Los cursores declarados SCROLL deben ser READ ONLY." -#: executor/spi.c:2487 +#: executor/spi.c:2495 #, c-format msgid "empty query does not return tuples" msgstr "la consulta vacía no retorna tuplas" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:2561 +#: executor/spi.c:2569 #, c-format msgid "%s query does not return tuples" msgstr "la consulta «%s» no retorna tuplas" -#: executor/spi.c:2975 +#: executor/spi.c:2983 #, c-format msgid "SQL expression \"%s\"" msgstr "expresión SQL «%s»" -#: executor/spi.c:2980 +#: executor/spi.c:2988 #, c-format msgid "PL/pgSQL assignment \"%s\"" msgstr "asignación PL/pgSQL «%s»" -#: executor/spi.c:2983 +#: executor/spi.c:2991 #, c-format msgid "SQL statement \"%s\"" msgstr "sentencia SQL: «%s»" @@ -13614,22 +13631,28 @@ msgstr "sentencia SQL: «%s»" msgid "could not send tuple to shared-memory queue" msgstr "no se pudo enviar la tupla a la cola en memoria compartida" -#: foreign/foreign.c:221 +#: foreign/foreign.c:222 #, c-format msgid "user mapping not found for \"%s\"" msgstr "no se encontró un mapeo para el usuario «%s»" -#: foreign/foreign.c:638 +#: foreign/foreign.c:332 optimizer/plan/createplan.c:7123 +#: optimizer/util/plancat.c:477 +#, c-format +msgid "access to non-system foreign table is restricted" +msgstr "el acceso tablas foráneas que no son de sistema está restringido" + +#: foreign/foreign.c:648 #, c-format msgid "invalid option \"%s\"" msgstr "el nombre de opción «%s» no es válido" -#: foreign/foreign.c:640 +#: foreign/foreign.c:650 #, c-format msgid "Valid options in this context are: %s" msgstr "Las opciones aceptables en este contexto son: %s" -#: foreign/foreign.c:642 +#: foreign/foreign.c:652 #, c-format msgid "There are no valid options in this context." msgstr "No hay operaciones aceptables en este contexto." @@ -14550,152 +14573,152 @@ msgstr "no se pudo definir el rango de versión de protocolo SSL" msgid "\"%s\" cannot be higher than \"%s\"" msgstr "«%s» no puede ser más alto que «%s»" -#: libpq/be-secure-openssl.c:294 +#: libpq/be-secure-openssl.c:293 #, c-format msgid "could not set the cipher list (no valid ciphers available)" msgstr "no se pudo establecer la lista de cifrado (no hay cifradores disponibles)" -#: libpq/be-secure-openssl.c:314 +#: libpq/be-secure-openssl.c:313 #, c-format msgid "could not load root certificate file \"%s\": %s" msgstr "no se pudo cargar el archivo del certificado raíz «%s»: %s" -#: libpq/be-secure-openssl.c:363 +#: libpq/be-secure-openssl.c:362 #, c-format msgid "could not load SSL certificate revocation list file \"%s\": %s" msgstr "no se pudo cargar el archivo de lista de revocación de certificados SSL «%s»: %s" -#: libpq/be-secure-openssl.c:371 +#: libpq/be-secure-openssl.c:370 #, c-format msgid "could not load SSL certificate revocation list directory \"%s\": %s" msgstr "no se pudo cargar el directorio de lista de revocación de certificados SSL «%s»: %s" -#: libpq/be-secure-openssl.c:379 +#: libpq/be-secure-openssl.c:378 #, c-format msgid "could not load SSL certificate revocation list file \"%s\" or directory \"%s\": %s" msgstr "no se pudo cargar el archivo de lista de revocación de certificados SSL «%s» o directorio «%s»: %s" -#: libpq/be-secure-openssl.c:437 +#: libpq/be-secure-openssl.c:436 #, c-format msgid "could not initialize SSL connection: SSL context not set up" msgstr "no se pudo inicializar la conexión SSL: el contexto SSL no está instalado" -#: libpq/be-secure-openssl.c:448 +#: libpq/be-secure-openssl.c:447 #, c-format msgid "could not initialize SSL connection: %s" msgstr "no se pudo inicializar la conexión SSL: %s" -#: libpq/be-secure-openssl.c:456 +#: libpq/be-secure-openssl.c:455 #, c-format msgid "could not set SSL socket: %s" msgstr "no se definir un socket SSL: %s" -#: libpq/be-secure-openssl.c:512 +#: libpq/be-secure-openssl.c:511 #, c-format msgid "could not accept SSL connection: %m" msgstr "no se pudo aceptar una conexión SSL: %m" -#: libpq/be-secure-openssl.c:516 libpq/be-secure-openssl.c:569 +#: libpq/be-secure-openssl.c:515 libpq/be-secure-openssl.c:568 #, c-format msgid "could not accept SSL connection: EOF detected" msgstr "no se pudo aceptar una conexión SSL: se detectó EOF" -#: libpq/be-secure-openssl.c:555 +#: libpq/be-secure-openssl.c:554 #, c-format msgid "could not accept SSL connection: %s" msgstr "no se pudo aceptar una conexión SSL: %s" -#: libpq/be-secure-openssl.c:558 +#: libpq/be-secure-openssl.c:557 #, c-format msgid "This may indicate that the client does not support any SSL protocol version between %s and %s." msgstr "Esto puede indicar que el cliente no soporta ninguna versión del protocolo SSL entre %s y %s." -#: libpq/be-secure-openssl.c:574 libpq/be-secure-openssl.c:763 -#: libpq/be-secure-openssl.c:833 +#: libpq/be-secure-openssl.c:573 libpq/be-secure-openssl.c:762 +#: libpq/be-secure-openssl.c:832 #, c-format msgid "unrecognized SSL error code: %d" msgstr "código de error SSL no reconocido: %d" -#: libpq/be-secure-openssl.c:620 +#: libpq/be-secure-openssl.c:619 #, c-format msgid "SSL certificate's common name contains embedded null" msgstr "el «common name» del certificado SSL contiene un carácter null" -#: libpq/be-secure-openssl.c:666 +#: libpq/be-secure-openssl.c:665 #, c-format msgid "SSL certificate's distinguished name contains embedded null" msgstr "el elemento de nombre distinguido en el certificado SSL contiene un carácter null" -#: libpq/be-secure-openssl.c:752 libpq/be-secure-openssl.c:817 +#: libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:816 #, c-format msgid "SSL error: %s" msgstr "error de SSL: %s" -#: libpq/be-secure-openssl.c:994 +#: libpq/be-secure-openssl.c:993 #, c-format msgid "could not open DH parameters file \"%s\": %m" msgstr "no se pudo abrir el archivo de parámetros DH «%s»: %m" -#: libpq/be-secure-openssl.c:1006 +#: libpq/be-secure-openssl.c:1005 #, c-format msgid "could not load DH parameters file: %s" msgstr "no se pudo cargar el archivo de parámetros DH: %s" -#: libpq/be-secure-openssl.c:1016 +#: libpq/be-secure-openssl.c:1015 #, c-format msgid "invalid DH parameters: %s" msgstr "parámetros DH no válidos: %s" -#: libpq/be-secure-openssl.c:1025 +#: libpq/be-secure-openssl.c:1024 #, c-format msgid "invalid DH parameters: p is not prime" msgstr "parámetros DH no válidos: p no es primo" -#: libpq/be-secure-openssl.c:1034 +#: libpq/be-secure-openssl.c:1033 #, c-format msgid "invalid DH parameters: neither suitable generator or safe prime" msgstr "parámetros DH no válidos: no hay generador apropiado o primo seguro" -#: libpq/be-secure-openssl.c:1195 +#: libpq/be-secure-openssl.c:1194 #, c-format msgid "DH: could not load DH parameters" msgstr "DH: no se pudo cargar los parámetros DH" -#: libpq/be-secure-openssl.c:1203 +#: libpq/be-secure-openssl.c:1202 #, c-format msgid "DH: could not set DH parameters: %s" msgstr "DH: no se pudo definir los parámetros DH: %s" -#: libpq/be-secure-openssl.c:1230 +#: libpq/be-secure-openssl.c:1229 #, c-format msgid "ECDH: unrecognized curve name: %s" msgstr "ECDH: nombre de curva no reconocida: %s" -#: libpq/be-secure-openssl.c:1239 +#: libpq/be-secure-openssl.c:1238 #, c-format msgid "ECDH: could not create key" msgstr "ECDH: no se pudo crear la llave" -#: libpq/be-secure-openssl.c:1267 +#: libpq/be-secure-openssl.c:1266 msgid "no SSL error reported" msgstr "código de error SSL no reportado" -#: libpq/be-secure-openssl.c:1285 +#: libpq/be-secure-openssl.c:1284 #, c-format msgid "SSL error code %lu" msgstr "código de error SSL %lu" -#: libpq/be-secure-openssl.c:1444 +#: libpq/be-secure-openssl.c:1443 #, c-format msgid "could not create BIO" msgstr "no se pudo crear BIO" -#: libpq/be-secure-openssl.c:1454 +#: libpq/be-secure-openssl.c:1453 #, c-format msgid "could not get NID for ASN1_OBJECT object" msgstr "no se pudo obtener NID para objeto ASN1_OBJECT" -#: libpq/be-secure-openssl.c:1462 +#: libpq/be-secure-openssl.c:1461 #, c-format msgid "could not convert NID %d to an ASN1_OBJECT structure" msgstr "no se pudo convertir NID %d en una estructura ASN1_OBJECT" @@ -15235,7 +15258,7 @@ msgstr "no hay conexión de cliente" msgid "could not receive data from client: %m" msgstr "no se pudo recibir datos del cliente: %m" -#: libpq/pqcomm.c:1179 tcop/postgres.c:4373 +#: libpq/pqcomm.c:1179 tcop/postgres.c:4461 #, c-format msgid "terminating connection because protocol synchronization was lost" msgstr "terminando la conexión por pérdida de sincronía del protocolo" @@ -15626,7 +15649,7 @@ msgstr "portal sin nombre con parámetros: %s" msgid "FULL JOIN is only supported with merge-joinable or hash-joinable join conditions" msgstr "FULL JOIN sólo está soportado con condiciones que se pueden usar con merge join o hash join" -#: optimizer/plan/createplan.c:7101 parser/parse_merge.c:187 +#: optimizer/plan/createplan.c:7102 parser/parse_merge.c:187 #: parser/parse_merge.c:194 #, c-format msgid "cannot execute MERGE on relation \"%s\"" @@ -15645,38 +15668,38 @@ msgstr "%s no puede ser aplicado al lado nulable de un outer join" msgid "%s is not allowed with UNION/INTERSECT/EXCEPT" msgstr "%s no está permitido con UNION/INTERSECT/EXCEPT" -#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3702 +#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3703 #, c-format msgid "could not implement GROUP BY" msgstr "no se pudo implementar GROUP BY" -#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3703 -#: optimizer/plan/planner.c:4346 optimizer/prep/prepunion.c:1046 +#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3704 +#: optimizer/plan/planner.c:4347 optimizer/prep/prepunion.c:1046 #, c-format msgid "Some of the datatypes only support hashing, while others only support sorting." msgstr "Algunos de los tipos sólo soportan hashing, mientras que otros sólo soportan ordenamiento." -#: optimizer/plan/planner.c:4345 +#: optimizer/plan/planner.c:4346 #, c-format msgid "could not implement DISTINCT" msgstr "no se pudo implementar DISTINCT" -#: optimizer/plan/planner.c:5466 +#: optimizer/plan/planner.c:5467 #, c-format msgid "could not implement window PARTITION BY" msgstr "No se pudo implementar PARTITION BY de ventana" -#: optimizer/plan/planner.c:5467 +#: optimizer/plan/planner.c:5468 #, c-format msgid "Window partitioning columns must be of sortable datatypes." msgstr "Las columnas de particionamiento de ventana deben de tipos que se puedan ordenar." -#: optimizer/plan/planner.c:5471 +#: optimizer/plan/planner.c:5472 #, c-format msgid "could not implement window ORDER BY" msgstr "no se pudo implementar ORDER BY de ventana" -#: optimizer/plan/planner.c:5472 +#: optimizer/plan/planner.c:5473 #, c-format msgid "Window ordering columns must be of sortable datatypes." msgstr "Las columnas de ordenamiento de ventana debe ser de tipos que se puedan ordenar." @@ -15702,32 +15725,32 @@ msgstr "no se pudo implementar %s" msgid "SQL function \"%s\" during inlining" msgstr "función SQL «%s», durante expansión en línea" -#: optimizer/util/plancat.c:142 +#: optimizer/util/plancat.c:143 #, c-format msgid "cannot open relation \"%s\"" msgstr "no se puede abrir la relación «%s»" -#: optimizer/util/plancat.c:151 +#: optimizer/util/plancat.c:152 #, c-format msgid "cannot access temporary or unlogged relations during recovery" msgstr "no se puede acceder a tablas temporales o «unlogged» durante la recuperación" -#: optimizer/util/plancat.c:693 +#: optimizer/util/plancat.c:705 #, c-format msgid "whole row unique index inference specifications are not supported" msgstr "no están soportadas las especificaciones de inferencia de índice único de registro completo" -#: optimizer/util/plancat.c:710 +#: optimizer/util/plancat.c:722 #, c-format msgid "constraint in ON CONFLICT clause has no associated index" msgstr "la restricción en la cláusula ON CONFLICT no tiene un índice asociado" -#: optimizer/util/plancat.c:760 +#: optimizer/util/plancat.c:772 #, c-format msgid "ON CONFLICT DO UPDATE not supported with exclusion constraints" msgstr "ON CONFLICT DO UPDATE no está soportado con restricciones de exclusión" -#: optimizer/util/plancat.c:870 +#: optimizer/util/plancat.c:882 #, c-format msgid "there is no unique or exclusion constraint matching the ON CONFLICT specification" msgstr "no hay restricción única o de exclusión que coincida con la especificación ON CONFLICT" @@ -15970,308 +15993,308 @@ msgstr "no se permiten funciones de agregación en las condiciones de JOIN" msgid "grouping operations are not allowed in JOIN conditions" msgstr "no se permiten las operaciones «grouping» en condiciones JOIN" -#: parser/parse_agg.c:385 +#: parser/parse_agg.c:383 msgid "aggregate functions are not allowed in FROM clause of their own query level" msgstr "las funciones de agregación no están permitidas en la cláusula FROM de su mismo nivel de consulta" -#: parser/parse_agg.c:387 +#: parser/parse_agg.c:385 msgid "grouping operations are not allowed in FROM clause of their own query level" msgstr "las operaciones «grouping» no están permitidas en la cláusula FROM de su mismo nivel de consulta" -#: parser/parse_agg.c:392 +#: parser/parse_agg.c:390 msgid "aggregate functions are not allowed in functions in FROM" msgstr "no se permiten funciones de agregación en una función en FROM" -#: parser/parse_agg.c:394 +#: parser/parse_agg.c:392 msgid "grouping operations are not allowed in functions in FROM" msgstr "no se permiten operaciones «grouping» en funciones en FROM" -#: parser/parse_agg.c:402 +#: parser/parse_agg.c:400 msgid "aggregate functions are not allowed in policy expressions" msgstr "no se permiten funciones de agregación en expresiones de políticas" -#: parser/parse_agg.c:404 +#: parser/parse_agg.c:402 msgid "grouping operations are not allowed in policy expressions" msgstr "no se permiten operaciones «grouping» en expresiones de políticas" -#: parser/parse_agg.c:421 +#: parser/parse_agg.c:419 msgid "aggregate functions are not allowed in window RANGE" msgstr "no se permiten funciones de agregación en RANGE de ventana deslizante" -#: parser/parse_agg.c:423 +#: parser/parse_agg.c:421 msgid "grouping operations are not allowed in window RANGE" msgstr "no se permiten operaciones «grouping» en RANGE de ventana deslizante" -#: parser/parse_agg.c:428 +#: parser/parse_agg.c:426 msgid "aggregate functions are not allowed in window ROWS" msgstr "no se permiten funciones de agregación en ROWS de ventana deslizante" -#: parser/parse_agg.c:430 +#: parser/parse_agg.c:428 msgid "grouping operations are not allowed in window ROWS" msgstr "no se permiten operaciones «grouping» en ROWS de ventana deslizante" -#: parser/parse_agg.c:435 +#: parser/parse_agg.c:433 msgid "aggregate functions are not allowed in window GROUPS" msgstr "no se permiten funciones de agregación en GROUPS de ventana deslizante" -#: parser/parse_agg.c:437 +#: parser/parse_agg.c:435 msgid "grouping operations are not allowed in window GROUPS" msgstr "no se permiten operaciones «grouping» en GROUPS de ventana deslizante" -#: parser/parse_agg.c:450 +#: parser/parse_agg.c:448 msgid "aggregate functions are not allowed in MERGE WHEN conditions" msgstr "no se permiten funciones de agregación en condiciones MERGE WHEN" -#: parser/parse_agg.c:452 +#: parser/parse_agg.c:450 msgid "grouping operations are not allowed in MERGE WHEN conditions" msgstr "no se permiten operaciones «grouping» en condiciones MERGE WHEN" -#: parser/parse_agg.c:478 +#: parser/parse_agg.c:476 msgid "aggregate functions are not allowed in check constraints" msgstr "no se permiten funciones de agregación en restricciones «check»" -#: parser/parse_agg.c:480 +#: parser/parse_agg.c:478 msgid "grouping operations are not allowed in check constraints" msgstr "no se permiten operaciones «grouping» en restricciones «check»" -#: parser/parse_agg.c:487 +#: parser/parse_agg.c:485 msgid "aggregate functions are not allowed in DEFAULT expressions" msgstr "no se permiten funciones de agregación en expresiones DEFAULT" -#: parser/parse_agg.c:489 +#: parser/parse_agg.c:487 msgid "grouping operations are not allowed in DEFAULT expressions" msgstr "no se permiten operaciones «grouping» en expresiones DEFAULT" -#: parser/parse_agg.c:494 +#: parser/parse_agg.c:492 msgid "aggregate functions are not allowed in index expressions" msgstr "no se permiten funciones de agregación en una expresión de índice" -#: parser/parse_agg.c:496 +#: parser/parse_agg.c:494 msgid "grouping operations are not allowed in index expressions" msgstr "no se permiten operaciones «grouping» en expresiones de índice" -#: parser/parse_agg.c:501 +#: parser/parse_agg.c:499 msgid "aggregate functions are not allowed in index predicates" msgstr "no se permiten funciones de agregación en predicados de índice" -#: parser/parse_agg.c:503 +#: parser/parse_agg.c:501 msgid "grouping operations are not allowed in index predicates" msgstr "no se permiten operaciones «grouping» en predicados de índice" -#: parser/parse_agg.c:508 +#: parser/parse_agg.c:506 msgid "aggregate functions are not allowed in statistics expressions" msgstr "no se permiten funciones de agregación en expresiones de estadísticas" -#: parser/parse_agg.c:510 +#: parser/parse_agg.c:508 msgid "grouping operations are not allowed in statistics expressions" msgstr "no se permiten operaciones «grouping» en expresiones de estadísticas" -#: parser/parse_agg.c:515 +#: parser/parse_agg.c:513 msgid "aggregate functions are not allowed in transform expressions" msgstr "no se permiten funciones de agregación en una expresión de transformación" -#: parser/parse_agg.c:517 +#: parser/parse_agg.c:515 msgid "grouping operations are not allowed in transform expressions" msgstr "no se permiten operaciones «grouping» en expresiones de transformación" -#: parser/parse_agg.c:522 +#: parser/parse_agg.c:520 msgid "aggregate functions are not allowed in EXECUTE parameters" msgstr "no se permiten funciones de agregación en un parámetro a EXECUTE" -#: parser/parse_agg.c:524 +#: parser/parse_agg.c:522 msgid "grouping operations are not allowed in EXECUTE parameters" msgstr "no se permiten operaciones «grouping» en parámetros a EXECUTE" -#: parser/parse_agg.c:529 +#: parser/parse_agg.c:527 msgid "aggregate functions are not allowed in trigger WHEN conditions" msgstr "no se permiten funciones de agregación en condición WHEN de un disparador" -#: parser/parse_agg.c:531 +#: parser/parse_agg.c:529 msgid "grouping operations are not allowed in trigger WHEN conditions" msgstr "no se permiten operaciones «grouping» en condiciones WHEN de un disparador" -#: parser/parse_agg.c:536 +#: parser/parse_agg.c:534 msgid "aggregate functions are not allowed in partition bound" msgstr "no se permiten funciones de agregación en borde de partición" -#: parser/parse_agg.c:538 +#: parser/parse_agg.c:536 msgid "grouping operations are not allowed in partition bound" msgstr "no se permiten operaciones «grouping» en borde de partición" -#: parser/parse_agg.c:543 +#: parser/parse_agg.c:541 msgid "aggregate functions are not allowed in partition key expressions" msgstr "no se permiten funciones de agregación en una expresión de llave de particionamiento" -#: parser/parse_agg.c:545 +#: parser/parse_agg.c:543 msgid "grouping operations are not allowed in partition key expressions" msgstr "no se permiten operaciones «grouping» en expresiones de llave de particionamiento" -#: parser/parse_agg.c:551 +#: parser/parse_agg.c:549 msgid "aggregate functions are not allowed in column generation expressions" msgstr "no se permiten funciones de agregación en expresiones de generación de columna" -#: parser/parse_agg.c:553 +#: parser/parse_agg.c:551 msgid "grouping operations are not allowed in column generation expressions" msgstr "no se permiten operaciones «grouping» en expresiones de generación de columna" -#: parser/parse_agg.c:559 +#: parser/parse_agg.c:557 msgid "aggregate functions are not allowed in CALL arguments" msgstr "no se permiten funciones de agregación en argumentos de CALL" -#: parser/parse_agg.c:561 +#: parser/parse_agg.c:559 msgid "grouping operations are not allowed in CALL arguments" msgstr "no se permiten operaciones «grouping» en argumentos de CALL" -#: parser/parse_agg.c:567 +#: parser/parse_agg.c:565 msgid "aggregate functions are not allowed in COPY FROM WHERE conditions" msgstr "no se permiten funciones de agregación en las condiciones WHERE de COPY FROM" -#: parser/parse_agg.c:569 +#: parser/parse_agg.c:567 msgid "grouping operations are not allowed in COPY FROM WHERE conditions" msgstr "no se permiten las operaciones «grouping» en condiciones WHERE de COPY FROM" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:596 parser/parse_clause.c:1836 +#: parser/parse_agg.c:594 parser/parse_clause.c:1836 #, c-format msgid "aggregate functions are not allowed in %s" msgstr "no se permiten funciones de agregación en %s" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:599 +#: parser/parse_agg.c:597 #, c-format msgid "grouping operations are not allowed in %s" msgstr "no se permiten operaciones «grouping» en %s" -#: parser/parse_agg.c:700 +#: parser/parse_agg.c:698 #, c-format msgid "outer-level aggregate cannot contain a lower-level variable in its direct arguments" msgstr "una función de agregación de nivel exterior no puede contener una variable de nivel inferior en sus argumentos directos" -#: parser/parse_agg.c:778 +#: parser/parse_agg.c:776 #, c-format msgid "aggregate function calls cannot contain set-returning function calls" msgstr "las llamadas a funciones de agregación no pueden contener llamadas a funciones que retornan conjuntos" -#: parser/parse_agg.c:779 parser/parse_expr.c:1674 parser/parse_expr.c:2156 +#: parser/parse_agg.c:777 parser/parse_expr.c:1674 parser/parse_expr.c:2156 #: parser/parse_func.c:883 #, c-format msgid "You might be able to move the set-returning function into a LATERAL FROM item." msgstr "Puede intentar mover la función que retorna conjuntos a un elemento LATERAL FROM." -#: parser/parse_agg.c:784 +#: parser/parse_agg.c:782 #, c-format msgid "aggregate function calls cannot contain window function calls" msgstr "las llamadas a funciones de agregación no pueden contener llamadas a funciones de ventana deslizante" -#: parser/parse_agg.c:863 +#: parser/parse_agg.c:861 msgid "window functions are not allowed in JOIN conditions" msgstr "no se permiten funciones de ventana deslizante en condiciones JOIN" -#: parser/parse_agg.c:870 +#: parser/parse_agg.c:868 msgid "window functions are not allowed in functions in FROM" msgstr "no se permiten funciones de ventana deslizante en funciones en FROM" -#: parser/parse_agg.c:876 +#: parser/parse_agg.c:874 msgid "window functions are not allowed in policy expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de políticas" -#: parser/parse_agg.c:889 +#: parser/parse_agg.c:887 msgid "window functions are not allowed in window definitions" msgstr "no se permiten funciones de ventana deslizante en definiciones de ventana deslizante" -#: parser/parse_agg.c:900 +#: parser/parse_agg.c:898 msgid "window functions are not allowed in MERGE WHEN conditions" msgstr "no se permiten funciones de ventana deslizante en condiciones MERGE WHEN" -#: parser/parse_agg.c:924 +#: parser/parse_agg.c:922 msgid "window functions are not allowed in check constraints" msgstr "no se permiten funciones de ventana deslizante en restricciones «check»" -#: parser/parse_agg.c:928 +#: parser/parse_agg.c:926 msgid "window functions are not allowed in DEFAULT expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones DEFAULT" -#: parser/parse_agg.c:931 +#: parser/parse_agg.c:929 msgid "window functions are not allowed in index expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de índice" -#: parser/parse_agg.c:934 +#: parser/parse_agg.c:932 msgid "window functions are not allowed in statistics expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de estadísticas" -#: parser/parse_agg.c:937 +#: parser/parse_agg.c:935 msgid "window functions are not allowed in index predicates" msgstr "no se permiten funciones de ventana deslizante en predicados de índice" -#: parser/parse_agg.c:940 +#: parser/parse_agg.c:938 msgid "window functions are not allowed in transform expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de transformación" -#: parser/parse_agg.c:943 +#: parser/parse_agg.c:941 msgid "window functions are not allowed in EXECUTE parameters" msgstr "no se permiten funciones de ventana deslizante en parámetros a EXECUTE" -#: parser/parse_agg.c:946 +#: parser/parse_agg.c:944 msgid "window functions are not allowed in trigger WHEN conditions" msgstr "no se permiten funciones de ventana deslizante en condiciones WHEN de un disparador" -#: parser/parse_agg.c:949 +#: parser/parse_agg.c:947 msgid "window functions are not allowed in partition bound" msgstr "no se permiten funciones de ventana deslizante en borde de partición" -#: parser/parse_agg.c:952 +#: parser/parse_agg.c:950 msgid "window functions are not allowed in partition key expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de llave de particionamiento" -#: parser/parse_agg.c:955 +#: parser/parse_agg.c:953 msgid "window functions are not allowed in CALL arguments" msgstr "no se permiten funciones de ventana deslizante en argumentos de CALL" -#: parser/parse_agg.c:958 +#: parser/parse_agg.c:956 msgid "window functions are not allowed in COPY FROM WHERE conditions" msgstr "no se permiten funciones de ventana deslizante en las condiciones WHERE de COPY FROM" -#: parser/parse_agg.c:961 +#: parser/parse_agg.c:959 msgid "window functions are not allowed in column generation expressions" msgstr "no se permiten funciones de ventana deslizante en expresiones de generación de columna" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:984 parser/parse_clause.c:1845 +#: parser/parse_agg.c:982 parser/parse_clause.c:1845 #, c-format msgid "window functions are not allowed in %s" msgstr "no se permiten funciones de ventana deslizante en %s" -#: parser/parse_agg.c:1018 parser/parse_clause.c:2678 +#: parser/parse_agg.c:1016 parser/parse_clause.c:2678 #, c-format msgid "window \"%s\" does not exist" msgstr "la ventana «%s» no existe" -#: parser/parse_agg.c:1102 +#: parser/parse_agg.c:1100 #, c-format msgid "too many grouping sets present (maximum 4096)" msgstr "demasiados conjuntos «grouping» presentes (máximo 4096)" -#: parser/parse_agg.c:1242 +#: parser/parse_agg.c:1240 #, c-format msgid "aggregate functions are not allowed in a recursive query's recursive term" msgstr "no se permiten funciones de agregación en el término recursivo de una consulta recursiva" -#: parser/parse_agg.c:1435 +#: parser/parse_agg.c:1433 #, c-format msgid "column \"%s.%s\" must appear in the GROUP BY clause or be used in an aggregate function" msgstr "la columna «%s.%s» debe aparecer en la cláusula GROUP BY o ser usada en una función de agregación" -#: parser/parse_agg.c:1438 +#: parser/parse_agg.c:1436 #, c-format msgid "Direct arguments of an ordered-set aggregate must use only grouped columns." msgstr "Argumentos directos de una función de agregación de conjuntos ordenados debe usar sólo columnas agrupadas." -#: parser/parse_agg.c:1443 +#: parser/parse_agg.c:1441 #, c-format msgid "subquery uses ungrouped column \"%s.%s\" from outer query" msgstr "la subconsulta usa la columna «%s.%s» no agrupada de una consulta exterior" -#: parser/parse_agg.c:1607 +#: parser/parse_agg.c:1605 #, c-format msgid "arguments to GROUPING must be grouping expressions of the associated query level" msgstr "los argumentos de GROUPING deben ser expresiones agrupantes del nivel de consulta asociado" @@ -17554,7 +17577,7 @@ msgstr "op ANY/ALL (array) requiere un operador que no retorne un conjunto" msgid "inconsistent types deduced for parameter $%d" msgstr "para el parámetro $%d se dedujeron tipos de dato inconsistentes" -#: parser/parse_param.c:313 tcop/postgres.c:709 +#: parser/parse_param.c:313 tcop/postgres.c:713 #, c-format msgid "could not determine data type of parameter $%d" msgstr "no se pudo determinar el tipo del parámetro $%d" @@ -17791,330 +17814,335 @@ msgstr "el nombre de tipo «%s» no es válido" msgid "cannot create partitioned table as inheritance child" msgstr "no se puede crear una tabla particionada como hija de herencia" -#: parser/parse_utilcmd.c:583 +#: parser/parse_utilcmd.c:475 +#, c-format +msgid "cannot set logged status of a temporary sequence" +msgstr "no se puede cambiar el estado «logged» de una secuencia temporal" + +#: parser/parse_utilcmd.c:611 #, c-format msgid "array of serial is not implemented" msgstr "array de serial no está implementado" -#: parser/parse_utilcmd.c:662 parser/parse_utilcmd.c:674 -#: parser/parse_utilcmd.c:733 +#: parser/parse_utilcmd.c:690 parser/parse_utilcmd.c:702 +#: parser/parse_utilcmd.c:761 #, c-format msgid "conflicting NULL/NOT NULL declarations for column \"%s\" of table \"%s\"" msgstr "las declaraciones NULL/NOT NULL no son coincidentes para la columna «%s» de la tabla «%s»" -#: parser/parse_utilcmd.c:686 +#: parser/parse_utilcmd.c:714 #, c-format msgid "multiple default values specified for column \"%s\" of table \"%s\"" msgstr "múltiples valores default especificados para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:703 +#: parser/parse_utilcmd.c:731 #, c-format msgid "identity columns are not supported on typed tables" msgstr "las columnas identidad no está soportadas en tablas tipadas" -#: parser/parse_utilcmd.c:707 +#: parser/parse_utilcmd.c:735 #, c-format msgid "identity columns are not supported on partitions" msgstr "las columnas identidad no están soportadas en particiones" -#: parser/parse_utilcmd.c:716 +#: parser/parse_utilcmd.c:744 #, c-format msgid "multiple identity specifications for column \"%s\" of table \"%s\"" msgstr "múltiples especificaciones de identidad para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:746 +#: parser/parse_utilcmd.c:774 #, c-format msgid "generated columns are not supported on typed tables" msgstr "las columnas generadas no están soportadas en tablas tipadas" -#: parser/parse_utilcmd.c:750 +#: parser/parse_utilcmd.c:778 #, c-format msgid "generated columns are not supported on partitions" msgstr "las columnas generadas no están soportadas en particiones" -#: parser/parse_utilcmd.c:755 +#: parser/parse_utilcmd.c:783 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" msgstr "múltiples cláusulas de generación especificadas para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:773 parser/parse_utilcmd.c:888 +#: parser/parse_utilcmd.c:801 parser/parse_utilcmd.c:916 #, c-format msgid "primary key constraints are not supported on foreign tables" msgstr "las restricciones de llave primaria no están soportadas en tablas foráneas" -#: parser/parse_utilcmd.c:782 parser/parse_utilcmd.c:898 +#: parser/parse_utilcmd.c:810 parser/parse_utilcmd.c:926 #, c-format msgid "unique constraints are not supported on foreign tables" msgstr "las restricciones unique no están soportadas en tablas foráneas" -#: parser/parse_utilcmd.c:827 +#: parser/parse_utilcmd.c:855 #, c-format msgid "both default and identity specified for column \"%s\" of table \"%s\"" msgstr "tanto el valor por omisión como identidad especificados para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:835 +#: parser/parse_utilcmd.c:863 #, c-format msgid "both default and generation expression specified for column \"%s\" of table \"%s\"" msgstr "tanto el valor por omisión como expresión de generación especificados para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:843 +#: parser/parse_utilcmd.c:871 #, c-format msgid "both identity and generation expression specified for column \"%s\" of table \"%s\"" msgstr "tanto identidad como expresión de generación especificados para columna «%s» de tabla «%s»" -#: parser/parse_utilcmd.c:908 +#: parser/parse_utilcmd.c:936 #, c-format msgid "exclusion constraints are not supported on foreign tables" msgstr "las restricciones de exclusión no están soportadas en tablas foráneas" -#: parser/parse_utilcmd.c:914 +#: parser/parse_utilcmd.c:942 #, c-format msgid "exclusion constraints are not supported on partitioned tables" msgstr "las restricciones de exclusión no están soportadas en tablas particionadas" -#: parser/parse_utilcmd.c:979 +#: parser/parse_utilcmd.c:1007 #, c-format msgid "LIKE is not supported for creating foreign tables" msgstr "LIKE no está soportado para la creación de tablas foráneas" -#: parser/parse_utilcmd.c:992 +#: parser/parse_utilcmd.c:1020 #, c-format msgid "relation \"%s\" is invalid in LIKE clause" msgstr "la relación «%s» no es válida en la cláusula LIKE" -#: parser/parse_utilcmd.c:1760 parser/parse_utilcmd.c:1868 +#: parser/parse_utilcmd.c:1788 parser/parse_utilcmd.c:1896 #, c-format msgid "Index \"%s\" contains a whole-row table reference." msgstr "El índice «%s» contiene una referencia a la fila completa (whole-row)." -#: parser/parse_utilcmd.c:2268 +#: parser/parse_utilcmd.c:2296 #, c-format msgid "cannot use an existing index in CREATE TABLE" msgstr "no se puede usar un índice existente en CREATE TABLE" -#: parser/parse_utilcmd.c:2288 +#: parser/parse_utilcmd.c:2316 #, c-format msgid "index \"%s\" is already associated with a constraint" msgstr "el índice «%s» ya está asociado a una restricción" -#: parser/parse_utilcmd.c:2309 +#: parser/parse_utilcmd.c:2337 #, c-format msgid "\"%s\" is not a unique index" msgstr "«%s» no es un índice único" -#: parser/parse_utilcmd.c:2310 parser/parse_utilcmd.c:2317 -#: parser/parse_utilcmd.c:2324 parser/parse_utilcmd.c:2401 +#: parser/parse_utilcmd.c:2338 parser/parse_utilcmd.c:2345 +#: parser/parse_utilcmd.c:2352 parser/parse_utilcmd.c:2429 #, c-format msgid "Cannot create a primary key or unique constraint using such an index." msgstr "No se puede crear una restricción de llave primaria o única usando un índice así." -#: parser/parse_utilcmd.c:2316 +#: parser/parse_utilcmd.c:2344 #, c-format msgid "index \"%s\" contains expressions" msgstr "el índice «%s» contiene expresiones" -#: parser/parse_utilcmd.c:2323 +#: parser/parse_utilcmd.c:2351 #, c-format msgid "\"%s\" is a partial index" msgstr "«%s» es un índice parcial" -#: parser/parse_utilcmd.c:2335 +#: parser/parse_utilcmd.c:2363 #, c-format msgid "\"%s\" is a deferrable index" msgstr "«%s» no es un índice postergable (deferrable)" -#: parser/parse_utilcmd.c:2336 +#: parser/parse_utilcmd.c:2364 #, c-format msgid "Cannot create a non-deferrable constraint using a deferrable index." msgstr "No se puede crear una restricción no postergable usando un índice postergable." -#: parser/parse_utilcmd.c:2400 +#: parser/parse_utilcmd.c:2428 #, c-format msgid "index \"%s\" column number %d does not have default sorting behavior" msgstr "el índice «%s» columna número %d no tiene comportamiento de ordenamiento por omisión" -#: parser/parse_utilcmd.c:2557 +#: parser/parse_utilcmd.c:2585 #, c-format msgid "column \"%s\" appears twice in primary key constraint" msgstr "la columna «%s» aparece dos veces en llave primaria" -#: parser/parse_utilcmd.c:2563 +#: parser/parse_utilcmd.c:2591 #, c-format msgid "column \"%s\" appears twice in unique constraint" msgstr "la columna «%s» aparece dos veces en restricción unique" -#: parser/parse_utilcmd.c:2897 +#: parser/parse_utilcmd.c:2925 #, c-format msgid "index expressions and predicates can refer only to the table being indexed" msgstr "las expresiones y predicados de índice sólo pueden referirse a la tabla en indexación" -#: parser/parse_utilcmd.c:2969 +#: parser/parse_utilcmd.c:2997 #, c-format msgid "statistics expressions can refer only to the table being referenced" msgstr "las expresiones estadísticas sólo pueden referirse a la tabla que está siendo referida" -#: parser/parse_utilcmd.c:3012 +#: parser/parse_utilcmd.c:3040 #, c-format msgid "rules on materialized views are not supported" msgstr "las reglas en vistas materializadas no están soportadas" -#: parser/parse_utilcmd.c:3075 +#: parser/parse_utilcmd.c:3103 #, c-format msgid "rule WHERE condition cannot contain references to other relations" msgstr "la condición WHERE de la regla no puede contener referencias a otras relaciones" -#: parser/parse_utilcmd.c:3148 +#: parser/parse_utilcmd.c:3176 #, c-format msgid "rules with WHERE conditions can only have SELECT, INSERT, UPDATE, or DELETE actions" msgstr "las reglas con condiciones WHERE sólo pueden tener acciones SELECT, INSERT, UPDATE o DELETE" -#: parser/parse_utilcmd.c:3166 parser/parse_utilcmd.c:3267 -#: rewrite/rewriteHandler.c:532 rewrite/rewriteManip.c:1021 +#: parser/parse_utilcmd.c:3194 parser/parse_utilcmd.c:3295 +#: rewrite/rewriteHandler.c:533 rewrite/rewriteManip.c:1021 #, c-format msgid "conditional UNION/INTERSECT/EXCEPT statements are not implemented" msgstr "las sentencias UNION/INTERSECT/EXCEPT condicionales no están implementadas" -#: parser/parse_utilcmd.c:3184 +#: parser/parse_utilcmd.c:3212 #, c-format msgid "ON SELECT rule cannot use OLD" msgstr "una regla ON SELECT no puede usar OLD" -#: parser/parse_utilcmd.c:3188 +#: parser/parse_utilcmd.c:3216 #, c-format msgid "ON SELECT rule cannot use NEW" msgstr "una regla ON SELECT no puede usar NEW" -#: parser/parse_utilcmd.c:3197 +#: parser/parse_utilcmd.c:3225 #, c-format msgid "ON INSERT rule cannot use OLD" msgstr "una regla ON INSERT no puede usar OLD" -#: parser/parse_utilcmd.c:3203 +#: parser/parse_utilcmd.c:3231 #, c-format msgid "ON DELETE rule cannot use NEW" msgstr "una regla ON DELETE no puede usar NEW" -#: parser/parse_utilcmd.c:3231 +#: parser/parse_utilcmd.c:3259 #, c-format msgid "cannot refer to OLD within WITH query" msgstr "no se puede hacer referencia a OLD dentro de una consulta WITH" -#: parser/parse_utilcmd.c:3238 +#: parser/parse_utilcmd.c:3266 #, c-format msgid "cannot refer to NEW within WITH query" msgstr "no se puede hacer referencia a NEW dentro de una consulta WITH" -#: parser/parse_utilcmd.c:3688 +#: parser/parse_utilcmd.c:3716 #, c-format msgid "misplaced DEFERRABLE clause" msgstr "cláusula DEFERRABLE mal puesta" -#: parser/parse_utilcmd.c:3693 parser/parse_utilcmd.c:3708 +#: parser/parse_utilcmd.c:3721 parser/parse_utilcmd.c:3736 #, c-format msgid "multiple DEFERRABLE/NOT DEFERRABLE clauses not allowed" msgstr "no se permiten múltiples cláusulas DEFERRABLE/NOT DEFERRABLE" -#: parser/parse_utilcmd.c:3703 +#: parser/parse_utilcmd.c:3731 #, c-format msgid "misplaced NOT DEFERRABLE clause" msgstr "la cláusula NOT DEFERRABLE está mal puesta" -#: parser/parse_utilcmd.c:3716 parser/parse_utilcmd.c:3742 gram.y:5937 +#: parser/parse_utilcmd.c:3744 parser/parse_utilcmd.c:3770 gram.y:5944 #, c-format msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" msgstr "una restricción declarada INITIALLY DEFERRED debe ser DEFERRABLE" -#: parser/parse_utilcmd.c:3724 +#: parser/parse_utilcmd.c:3752 #, c-format msgid "misplaced INITIALLY DEFERRED clause" msgstr "la cláusula INITIALLY DEFERRED está mal puesta" -#: parser/parse_utilcmd.c:3729 parser/parse_utilcmd.c:3755 +#: parser/parse_utilcmd.c:3757 parser/parse_utilcmd.c:3783 #, c-format msgid "multiple INITIALLY IMMEDIATE/DEFERRED clauses not allowed" msgstr "no se permiten múltiples cláusulas INITIALLY IMMEDIATE/DEFERRED" -#: parser/parse_utilcmd.c:3750 +#: parser/parse_utilcmd.c:3778 #, c-format msgid "misplaced INITIALLY IMMEDIATE clause" msgstr "la cláusula INITIALLY IMMEDIATE está mal puesta" -#: parser/parse_utilcmd.c:3943 +#: parser/parse_utilcmd.c:3971 #, c-format msgid "CREATE specifies a schema (%s) different from the one being created (%s)" msgstr "CREATE especifica un esquema (%s) diferente del que se está creando (%s)" -#: parser/parse_utilcmd.c:3978 +#: parser/parse_utilcmd.c:4006 #, c-format msgid "\"%s\" is not a partitioned table" msgstr "«%s» no es una tabla particionada" -#: parser/parse_utilcmd.c:3985 +#: parser/parse_utilcmd.c:4013 #, c-format msgid "table \"%s\" is not partitioned" -msgstr "«la tabla %s» no está particionada" +msgstr "la tabla «%s» no está particionada" -#: parser/parse_utilcmd.c:3992 +#: parser/parse_utilcmd.c:4020 #, c-format msgid "index \"%s\" is not partitioned" msgstr "el índice «%s» no está particionado" -#: parser/parse_utilcmd.c:4032 +#: parser/parse_utilcmd.c:4060 #, c-format msgid "a hash-partitioned table may not have a default partition" msgstr "una tabla particionada por hash no puede tener una partición default" -#: parser/parse_utilcmd.c:4049 +#: parser/parse_utilcmd.c:4077 #, c-format msgid "invalid bound specification for a hash partition" msgstr "especificación de borde no válida para partición de hash" -#: parser/parse_utilcmd.c:4055 partitioning/partbounds.c:4824 +#: parser/parse_utilcmd.c:4083 partitioning/partbounds.c:4824 #, c-format msgid "modulus for hash partition must be an integer value greater than zero" msgstr "el módulo para una partición hash debe ser un valor entero mayor que cero" -#: parser/parse_utilcmd.c:4062 partitioning/partbounds.c:4832 +#: parser/parse_utilcmd.c:4090 partitioning/partbounds.c:4832 #, c-format msgid "remainder for hash partition must be less than modulus" msgstr "remanente en partición hash debe ser menor que el módulo" -#: parser/parse_utilcmd.c:4075 +#: parser/parse_utilcmd.c:4103 #, c-format msgid "invalid bound specification for a list partition" msgstr "especificación de borde no válida para partición de lista" -#: parser/parse_utilcmd.c:4128 +#: parser/parse_utilcmd.c:4156 #, c-format msgid "invalid bound specification for a range partition" msgstr "especificación de borde no válida para partición de rango" -#: parser/parse_utilcmd.c:4134 +#: parser/parse_utilcmd.c:4162 #, c-format msgid "FROM must specify exactly one value per partitioning column" msgstr "FROM debe especificar exactamente un valor por cada columna de particionado" -#: parser/parse_utilcmd.c:4138 +#: parser/parse_utilcmd.c:4166 #, c-format msgid "TO must specify exactly one value per partitioning column" msgstr "TO debe especificar exactamente un valor por cada columna de particionado" -#: parser/parse_utilcmd.c:4252 +#: parser/parse_utilcmd.c:4280 #, c-format msgid "cannot specify NULL in range bound" msgstr "no se puede especificar NULL en borde de rango" -#: parser/parse_utilcmd.c:4301 +#: parser/parse_utilcmd.c:4329 #, c-format msgid "every bound following MAXVALUE must also be MAXVALUE" msgstr "cada borde que sigue a un MAXVALUE debe ser también MAXVALUE" -#: parser/parse_utilcmd.c:4308 +#: parser/parse_utilcmd.c:4336 #, c-format msgid "every bound following MINVALUE must also be MINVALUE" msgstr "cada borde que siga a un MINVALUE debe ser también MINVALUE" -#: parser/parse_utilcmd.c:4351 +#: parser/parse_utilcmd.c:4379 #, c-format msgid "specified value cannot be cast to type %s for column \"%s\"" msgstr "el valor especificado no puede ser convertido al tipo %s para la columna «%s»" @@ -18507,7 +18535,7 @@ msgstr "proceso ayudante «%s»: intervalo de reinicio no válido" msgid "background worker \"%s\": parallel workers may not be configured for restart" msgstr "proceso ayudante «%s»: los ayudantes paralelos no pueden ser configurados «restart»" -#: postmaster/bgworker.c:730 tcop/postgres.c:3215 +#: postmaster/bgworker.c:730 tcop/postgres.c:3243 #, c-format msgid "terminating background worker \"%s\" due to administrator command" msgstr "terminando el proceso ayudante «%s» debido a una orden del administrador" @@ -18789,9 +18817,9 @@ msgstr "se recibieron datos no cifrados después de petición de cifrado GSSAPI" msgid "unsupported frontend protocol %u.%u: server supports %u.0 to %u.%u" msgstr "el protocolo %u.%u no está soportado: servidor soporta %u.0 hasta %u.%u" -#: postmaster/postmaster.c:2264 utils/misc/guc.c:7400 utils/misc/guc.c:7436 -#: utils/misc/guc.c:7506 utils/misc/guc.c:8944 utils/misc/guc.c:11986 -#: utils/misc/guc.c:12027 +#: postmaster/postmaster.c:2264 utils/misc/guc.c:7412 utils/misc/guc.c:7448 +#: utils/misc/guc.c:7518 utils/misc/guc.c:8962 utils/misc/guc.c:12004 +#: utils/misc/guc.c:12045 #, c-format msgid "invalid value for parameter \"%s\": \"%s\"" msgstr "valor no válido para el parámetro «%s»: «%s»" @@ -19669,30 +19697,30 @@ msgstr "la relación de destino de replicación lógica «%s.%s» usa columnas d msgid "logical replication target relation \"%s.%s\" does not exist" msgstr "la relación destino de replicación lógica «%s.%s» no existe" -#: replication/logical/reorderbuffer.c:3841 +#: replication/logical/reorderbuffer.c:3846 #, c-format msgid "could not write to data file for XID %u: %m" msgstr "no se pudo escribir al archivo de datos para el XID %u: %m" -#: replication/logical/reorderbuffer.c:4187 -#: replication/logical/reorderbuffer.c:4212 +#: replication/logical/reorderbuffer.c:4192 +#: replication/logical/reorderbuffer.c:4217 #, c-format msgid "could not read from reorderbuffer spill file: %m" msgstr "no se pudo leer desde el archivo de desborde de reorderbuffer: %m" -#: replication/logical/reorderbuffer.c:4191 -#: replication/logical/reorderbuffer.c:4216 +#: replication/logical/reorderbuffer.c:4196 +#: replication/logical/reorderbuffer.c:4221 #, c-format msgid "could not read from reorderbuffer spill file: read %d instead of %u bytes" msgstr "no se pudo leer desde el archivo de desborde de reorderbuffer: se leyeron sólo %d en ve de %u bytes" -#: replication/logical/reorderbuffer.c:4466 +#: replication/logical/reorderbuffer.c:4471 #, c-format msgid "could not remove file \"%s\" during removal of pg_replslot/%s/xid*: %m" msgstr "no se pudo borrar el archivo «%s» durante la eliminación de pg_replslot/%s/xid*: %m" # FIXME almost duplicated again!? -#: replication/logical/reorderbuffer.c:4965 +#: replication/logical/reorderbuffer.c:4970 #, c-format msgid "could not read from file \"%s\": read %d instead of %d bytes" msgstr "no se pudo leer del archivo «%s»: se leyeron %d en lugar de %d bytes" @@ -20387,9 +20415,9 @@ msgstr "no puede ejecutar órdenes SQL en el «WAL sender» para replicación f msgid "received replication command: %s" msgstr "se recibió orden de replicación: %s" -#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1114 -#: tcop/postgres.c:1472 tcop/postgres.c:1712 tcop/postgres.c:2181 -#: tcop/postgres.c:2614 tcop/postgres.c:2692 +#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1118 +#: tcop/postgres.c:1476 tcop/postgres.c:1728 tcop/postgres.c:2209 +#: tcop/postgres.c:2642 tcop/postgres.c:2720 #, c-format msgid "current transaction is aborted, commands ignored until end of transaction block" msgstr "transacción abortada, las órdenes serán ignoradas hasta el fin de bloque de transacción" @@ -20635,200 +20663,205 @@ msgstr "no existe la regla «%s» para la relación «%s»" msgid "renaming an ON SELECT rule is not allowed" msgstr "no se permite cambiar el nombre de una regla ON SELECT" -#: rewrite/rewriteHandler.c:576 +#: rewrite/rewriteHandler.c:577 #, c-format msgid "WITH query name \"%s\" appears in both a rule action and the query being rewritten" msgstr "el nombre de consulta WITH «%s» aparece tanto en una acción de regla y en la consulta que está siendo reescrita" -#: rewrite/rewriteHandler.c:603 +#: rewrite/rewriteHandler.c:604 #, c-format msgid "INSERT...SELECT rule actions are not supported for queries having data-modifying statements in WITH" msgstr "las acciones de reglas INSERT...SELECT no están soportadas para consultas que tengan sentencias que modifiquen datos en WITH" -#: rewrite/rewriteHandler.c:656 +#: rewrite/rewriteHandler.c:657 #, c-format msgid "cannot have RETURNING lists in multiple rules" msgstr "no se puede usar RETURNING en múltiples reglas" -#: rewrite/rewriteHandler.c:888 rewrite/rewriteHandler.c:927 +#: rewrite/rewriteHandler.c:889 rewrite/rewriteHandler.c:928 #, c-format msgid "cannot insert a non-DEFAULT value into column \"%s\"" msgstr "no se puede insertar un valor no-predeterminado en la columna «%s»" -#: rewrite/rewriteHandler.c:890 rewrite/rewriteHandler.c:956 +#: rewrite/rewriteHandler.c:891 rewrite/rewriteHandler.c:957 #, c-format msgid "Column \"%s\" is an identity column defined as GENERATED ALWAYS." msgstr "La columna \"%s\" es una columna de identidad definida como GENERATED ALWAYS." -#: rewrite/rewriteHandler.c:892 +#: rewrite/rewriteHandler.c:893 #, c-format msgid "Use OVERRIDING SYSTEM VALUE to override." msgstr "Use OVERRIDING SYSTEM VALUE para controlar manualmente." -#: rewrite/rewriteHandler.c:954 rewrite/rewriteHandler.c:962 +#: rewrite/rewriteHandler.c:955 rewrite/rewriteHandler.c:963 #, c-format msgid "column \"%s\" can only be updated to DEFAULT" msgstr "la columna «%s» sólo puede actualizarse a DEFAULT" -#: rewrite/rewriteHandler.c:1109 rewrite/rewriteHandler.c:1127 +#: rewrite/rewriteHandler.c:1110 rewrite/rewriteHandler.c:1128 #, c-format msgid "multiple assignments to same column \"%s\"" msgstr "hay múltiples asignaciones a la misma columna «%s»" -#: rewrite/rewriteHandler.c:2143 rewrite/rewriteHandler.c:4057 +#: rewrite/rewriteHandler.c:1743 rewrite/rewriteHandler.c:3145 +#, c-format +msgid "access to non-system view \"%s\" is restricted" +msgstr "el acceso a la vista «%s» que no son de sistema está restringido" + +#: rewrite/rewriteHandler.c:2152 rewrite/rewriteHandler.c:4074 #, c-format msgid "infinite recursion detected in rules for relation \"%s\"" msgstr "se detectó recursión infinita en las reglas de la relación «%s»" -#: rewrite/rewriteHandler.c:2228 +#: rewrite/rewriteHandler.c:2237 #, c-format msgid "infinite recursion detected in policy for relation \"%s\"" msgstr "se detectó recursión infinita en la política para la relación «%s»" -#: rewrite/rewriteHandler.c:2548 +#: rewrite/rewriteHandler.c:2557 msgid "Junk view columns are not updatable." msgstr "Las columnas «basura» de vistas no son actualizables." -#: rewrite/rewriteHandler.c:2553 +#: rewrite/rewriteHandler.c:2562 msgid "View columns that are not columns of their base relation are not updatable." msgstr "Las columnas de vistas que no son columnas de su relación base no son actualizables." -#: rewrite/rewriteHandler.c:2556 +#: rewrite/rewriteHandler.c:2565 msgid "View columns that refer to system columns are not updatable." msgstr "Las columnas de vistas que se refieren a columnas de sistema no son actualizables." -#: rewrite/rewriteHandler.c:2559 +#: rewrite/rewriteHandler.c:2568 msgid "View columns that return whole-row references are not updatable." msgstr "Las columnas de vistas que retornan referencias a la fila completa no son actualizables." # XXX a %s here would be nice ... -#: rewrite/rewriteHandler.c:2620 +#: rewrite/rewriteHandler.c:2629 msgid "Views containing DISTINCT are not automatically updatable." msgstr "Las vistas que contienen DISTINCT no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2623 +#: rewrite/rewriteHandler.c:2632 msgid "Views containing GROUP BY are not automatically updatable." msgstr "Las vistas que contienen GROUP BY no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2626 +#: rewrite/rewriteHandler.c:2635 msgid "Views containing HAVING are not automatically updatable." msgstr "Las vistas que contienen HAVING no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2629 +#: rewrite/rewriteHandler.c:2638 msgid "Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable." msgstr "Las vistas que contienen UNION, INTERSECT o EXCEPT no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2632 +#: rewrite/rewriteHandler.c:2641 msgid "Views containing WITH are not automatically updatable." msgstr "Las vistas que contienen WITH no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2635 +#: rewrite/rewriteHandler.c:2644 msgid "Views containing LIMIT or OFFSET are not automatically updatable." msgstr "Las vistas que contienen LIMIT u OFFSET no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2647 +#: rewrite/rewriteHandler.c:2656 msgid "Views that return aggregate functions are not automatically updatable." msgstr "Las vistas que retornan funciones de agregación no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2650 +#: rewrite/rewriteHandler.c:2659 msgid "Views that return window functions are not automatically updatable." msgstr "Las vistas que retornan funciones ventana no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2653 +#: rewrite/rewriteHandler.c:2662 msgid "Views that return set-returning functions are not automatically updatable." msgstr "Las vistas que retornan funciones-que-retornan-conjuntos no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2660 rewrite/rewriteHandler.c:2664 -#: rewrite/rewriteHandler.c:2672 +#: rewrite/rewriteHandler.c:2669 rewrite/rewriteHandler.c:2673 +#: rewrite/rewriteHandler.c:2681 msgid "Views that do not select from a single table or view are not automatically updatable." msgstr "Las vistas que no extraen desde una única tabla o vista no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2675 +#: rewrite/rewriteHandler.c:2684 msgid "Views containing TABLESAMPLE are not automatically updatable." msgstr "Las vistas que contienen TABLESAMPLE no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:2699 +#: rewrite/rewriteHandler.c:2708 msgid "Views that have no updatable columns are not automatically updatable." msgstr "Las vistas que no tienen columnas actualizables no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:3188 +#: rewrite/rewriteHandler.c:3205 #, c-format msgid "cannot insert into column \"%s\" of view \"%s\"" msgstr "no se puede insertar en la columna «%s» de la vista «%s»" -#: rewrite/rewriteHandler.c:3196 +#: rewrite/rewriteHandler.c:3213 #, c-format msgid "cannot update column \"%s\" of view \"%s\"" msgstr "no se puede actualizar la columna «%s» vista «%s»" -#: rewrite/rewriteHandler.c:3684 +#: rewrite/rewriteHandler.c:3701 #, c-format msgid "DO INSTEAD NOTIFY rules are not supported for data-modifying statements in WITH" msgstr "las reglas DO INSTEAD NOTIFY no están soportadas para sentencias que modifiquen datos en WITH" -#: rewrite/rewriteHandler.c:3695 +#: rewrite/rewriteHandler.c:3712 #, c-format msgid "DO INSTEAD NOTHING rules are not supported for data-modifying statements in WITH" msgstr "las reglas DO INSTEAD NOTHING no están soportadas para sentencias que modifiquen datos en WITH" -#: rewrite/rewriteHandler.c:3709 +#: rewrite/rewriteHandler.c:3726 #, c-format msgid "conditional DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "las reglas DO INSTEAD condicionales no están soportadas para sentencias que modifiquen datos en WITH" -#: rewrite/rewriteHandler.c:3713 +#: rewrite/rewriteHandler.c:3730 #, c-format msgid "DO ALSO rules are not supported for data-modifying statements in WITH" msgstr "las reglas DO ALSO no están soportadas para sentencias que modifiquen datos en WITH" -#: rewrite/rewriteHandler.c:3718 +#: rewrite/rewriteHandler.c:3735 #, c-format msgid "multi-statement DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "las reglas DO INSTEAD de múltiples sentencias no están soportadas para sentencias que modifiquen datos en WITH" # XXX a %s here would be nice ... -#: rewrite/rewriteHandler.c:3985 rewrite/rewriteHandler.c:3993 -#: rewrite/rewriteHandler.c:4001 +#: rewrite/rewriteHandler.c:4002 rewrite/rewriteHandler.c:4010 +#: rewrite/rewriteHandler.c:4018 #, c-format msgid "Views with conditional DO INSTEAD rules are not automatically updatable." msgstr "Las vistas con reglas DO INSTEAD condicionales no son automáticamente actualizables." -#: rewrite/rewriteHandler.c:4106 +#: rewrite/rewriteHandler.c:4123 #, c-format msgid "cannot perform INSERT RETURNING on relation \"%s\"" msgstr "no se puede hacer INSERT RETURNING a la relación «%s»" -#: rewrite/rewriteHandler.c:4108 +#: rewrite/rewriteHandler.c:4125 #, c-format msgid "You need an unconditional ON INSERT DO INSTEAD rule with a RETURNING clause." msgstr "Necesita un regla incondicional ON INSERT DO INSTEAD con una cláusula RETURNING." -#: rewrite/rewriteHandler.c:4113 +#: rewrite/rewriteHandler.c:4130 #, c-format msgid "cannot perform UPDATE RETURNING on relation \"%s\"" msgstr "no se puede hacer UPDATE RETURNING a la relación «%s»" -#: rewrite/rewriteHandler.c:4115 +#: rewrite/rewriteHandler.c:4132 #, c-format msgid "You need an unconditional ON UPDATE DO INSTEAD rule with a RETURNING clause." msgstr "Necesita un regla incondicional ON UPDATE DO INSTEAD con una cláusula RETURNING." -#: rewrite/rewriteHandler.c:4120 +#: rewrite/rewriteHandler.c:4137 #, c-format msgid "cannot perform DELETE RETURNING on relation \"%s\"" msgstr "no se puede hacer DELETE RETURNING a la relación «%s»" -#: rewrite/rewriteHandler.c:4122 +#: rewrite/rewriteHandler.c:4139 #, c-format msgid "You need an unconditional ON DELETE DO INSTEAD rule with a RETURNING clause." msgstr "Necesita un regla incondicional ON DELETE DO INSTEAD con una clásula RETURNING." -#: rewrite/rewriteHandler.c:4140 +#: rewrite/rewriteHandler.c:4157 #, c-format msgid "INSERT with ON CONFLICT clause cannot be used with table that has INSERT or UPDATE rules" msgstr "INSERT con una cláusula ON CONFLICT no puede usarse con una tabla que tiene reglas INSERT o UPDATE" -#: rewrite/rewriteHandler.c:4197 +#: rewrite/rewriteHandler.c:4214 #, c-format msgid "WITH cannot be used in a query that is rewritten by rules into multiple queries" msgstr "WITH no puede ser usado en una consulta que está siendo convertida en múltiples consultas a través de reglas" @@ -21075,12 +21108,12 @@ msgstr "sincronizando el directorio de datos (syncfs), transcurrido: %ld.%02d s, msgid "could not synchronize file system for file \"%s\": %m" msgstr "no se pudo sincronizar el sistema de archivos para el archivo «%s»: %m" -#: storage/file/fd.c:3619 +#: storage/file/fd.c:3614 #, c-format msgid "syncing data directory (pre-fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "sincronizando el directorio de datos (pre-fsync), transcurrido: %ld.%02d s, ruta actual: %s" -#: storage/file/fd.c:3651 +#: storage/file/fd.c:3646 #, c-format msgid "syncing data directory (fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "sincronizando el directorio de datos (fsync), transcurrido: %ld.%02d s, ruta actual: %s" @@ -21201,10 +21234,10 @@ msgid "invalid message size %zu in shared memory queue" msgstr "tamaño no válido de mensaje %zu en cola de memoria compartida" #: storage/ipc/shm_toc.c:118 storage/ipc/shm_toc.c:200 storage/lmgr/lock.c:997 -#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2855 storage/lmgr/lock.c:4269 -#: storage/lmgr/lock.c:4334 storage/lmgr/lock.c:4684 -#: storage/lmgr/predicate.c:2485 storage/lmgr/predicate.c:2500 -#: storage/lmgr/predicate.c:3990 storage/lmgr/predicate.c:5106 +#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2865 storage/lmgr/lock.c:4279 +#: storage/lmgr/lock.c:4344 storage/lmgr/lock.c:4694 +#: storage/lmgr/predicate.c:2490 storage/lmgr/predicate.c:2505 +#: storage/lmgr/predicate.c:3995 storage/lmgr/predicate.c:5111 #: utils/hash/dynahash.c:1112 #, c-format msgid "out of shared memory" @@ -21299,12 +21332,12 @@ msgstr "la recuperación aún está esperando después de %ld.%03d ms: %s" msgid "recovery finished waiting after %ld.%03d ms: %s" msgstr "la recuperación terminó de esperar después de %ld.%03d ms: %s" -#: storage/ipc/standby.c:883 tcop/postgres.c:3344 +#: storage/ipc/standby.c:883 tcop/postgres.c:3372 #, c-format msgid "canceling statement due to conflict with recovery" msgstr "cancelando la sentencia debido a un conflicto con la recuperación" -#: storage/ipc/standby.c:884 tcop/postgres.c:2499 +#: storage/ipc/standby.c:884 tcop/postgres.c:2527 #, c-format msgid "User transaction caused buffer deadlock with recovery." msgstr "La transacción del usuario causó un «deadlock» con la recuperación." @@ -21488,13 +21521,13 @@ msgstr "no se puede adquirir candado en modo %s en objetos de la base de datos m msgid "Only RowExclusiveLock or less can be acquired on database objects during recovery." msgstr "Sólo candados RowExclusiveLock o menor pueden ser adquiridos en objetos de la base de datos durante la recuperación." -#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2856 -#: storage/lmgr/lock.c:4270 storage/lmgr/lock.c:4335 storage/lmgr/lock.c:4685 +#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2866 +#: storage/lmgr/lock.c:4280 storage/lmgr/lock.c:4345 storage/lmgr/lock.c:4695 #, c-format msgid "You might need to increase max_locks_per_transaction." msgstr "Puede ser necesario incrementar max_locks_per_transaction." -#: storage/lmgr/lock.c:3311 storage/lmgr/lock.c:3379 storage/lmgr/lock.c:3495 +#: storage/lmgr/lock.c:3321 storage/lmgr/lock.c:3389 storage/lmgr/lock.c:3505 #, c-format msgid "cannot PREPARE while holding both session-level and transaction-level locks on the same object" msgstr "no se puede hacer PREPARE mientras se mantienen candados a nivel de sesión y transacción simultáneamente sobre el mismo objeto" @@ -21514,52 +21547,52 @@ msgstr "Puede ser necesario ejecutar menos transacciones al mismo tiempo, o incr msgid "not enough elements in RWConflictPool to record a potential read/write conflict" msgstr "no hay suficientes elementos en RWConflictPool para registrar un potencial conflicto read/write" -#: storage/lmgr/predicate.c:1695 +#: storage/lmgr/predicate.c:1700 #, c-format msgid "\"default_transaction_isolation\" is set to \"serializable\"." msgstr "«default_transaction_isolation» está definido a «serializable»." -#: storage/lmgr/predicate.c:1696 +#: storage/lmgr/predicate.c:1701 #, c-format msgid "You can use \"SET default_transaction_isolation = 'repeatable read'\" to change the default." msgstr "Puede usar «SET default_transaction_isolation = 'repeatable read'» para cambiar el valor por omisión." -#: storage/lmgr/predicate.c:1747 +#: storage/lmgr/predicate.c:1752 #, c-format msgid "a snapshot-importing transaction must not be READ ONLY DEFERRABLE" msgstr "una transacción que importa un snapshot no debe ser READ ONLY DEFERRABLE" -#: storage/lmgr/predicate.c:1826 utils/time/snapmgr.c:569 +#: storage/lmgr/predicate.c:1831 utils/time/snapmgr.c:569 #: utils/time/snapmgr.c:575 #, c-format msgid "could not import the requested snapshot" msgstr "no se pudo importar el snapshot solicitado" -#: storage/lmgr/predicate.c:1827 utils/time/snapmgr.c:576 +#: storage/lmgr/predicate.c:1832 utils/time/snapmgr.c:576 #, c-format msgid "The source process with PID %d is not running anymore." msgstr "El proceso de origen con PID %d ya no está en ejecución." -#: storage/lmgr/predicate.c:2486 storage/lmgr/predicate.c:2501 -#: storage/lmgr/predicate.c:3991 +#: storage/lmgr/predicate.c:2491 storage/lmgr/predicate.c:2506 +#: storage/lmgr/predicate.c:3996 #, c-format msgid "You might need to increase max_pred_locks_per_transaction." msgstr "Puede ser necesario incrementar max_pred_locks_per_transaction." -#: storage/lmgr/predicate.c:4122 storage/lmgr/predicate.c:4158 -#: storage/lmgr/predicate.c:4191 storage/lmgr/predicate.c:4199 -#: storage/lmgr/predicate.c:4238 storage/lmgr/predicate.c:4480 -#: storage/lmgr/predicate.c:4817 storage/lmgr/predicate.c:4829 -#: storage/lmgr/predicate.c:4876 storage/lmgr/predicate.c:4914 +#: storage/lmgr/predicate.c:4127 storage/lmgr/predicate.c:4163 +#: storage/lmgr/predicate.c:4196 storage/lmgr/predicate.c:4204 +#: storage/lmgr/predicate.c:4243 storage/lmgr/predicate.c:4485 +#: storage/lmgr/predicate.c:4822 storage/lmgr/predicate.c:4834 +#: storage/lmgr/predicate.c:4881 storage/lmgr/predicate.c:4919 #, c-format msgid "could not serialize access due to read/write dependencies among transactions" msgstr "no se pudo serializar el acceso debido a dependencias read/write entre transacciones" -#: storage/lmgr/predicate.c:4124 storage/lmgr/predicate.c:4160 -#: storage/lmgr/predicate.c:4193 storage/lmgr/predicate.c:4201 -#: storage/lmgr/predicate.c:4240 storage/lmgr/predicate.c:4482 -#: storage/lmgr/predicate.c:4819 storage/lmgr/predicate.c:4831 -#: storage/lmgr/predicate.c:4878 storage/lmgr/predicate.c:4916 +#: storage/lmgr/predicate.c:4129 storage/lmgr/predicate.c:4165 +#: storage/lmgr/predicate.c:4198 storage/lmgr/predicate.c:4206 +#: storage/lmgr/predicate.c:4245 storage/lmgr/predicate.c:4487 +#: storage/lmgr/predicate.c:4824 storage/lmgr/predicate.c:4836 +#: storage/lmgr/predicate.c:4883 storage/lmgr/predicate.c:4921 #, c-format msgid "The transaction might succeed if retried." msgstr "La transacción podría tener éxito si es reintentada." @@ -21687,8 +21720,8 @@ msgstr "no se puede llamar a la función «%s» mediante la interfaz fastpath" msgid "fastpath function call: \"%s\" (OID %u)" msgstr "llamada a función fastpath: «%s» (OID %u)" -#: tcop/fastpath.c:312 tcop/postgres.c:1341 tcop/postgres.c:1577 -#: tcop/postgres.c:2036 tcop/postgres.c:2280 +#: tcop/fastpath.c:312 tcop/postgres.c:1345 tcop/postgres.c:1581 +#: tcop/postgres.c:2052 tcop/postgres.c:2308 #, c-format msgid "duration: %s ms" msgstr "duración: %s ms" @@ -21718,295 +21751,295 @@ msgstr "el tamaño de argumento %d no es válido en el mensaje de llamada a func msgid "incorrect binary data format in function argument %d" msgstr "el formato de datos binarios es incorrecto en argumento %d a función" -#: tcop/postgres.c:444 tcop/postgres.c:4828 +#: tcop/postgres.c:448 tcop/postgres.c:4916 #, c-format msgid "invalid frontend message type %d" msgstr "el tipo de mensaje de frontend %d no es válido" -#: tcop/postgres.c:1051 +#: tcop/postgres.c:1055 #, c-format msgid "statement: %s" msgstr "sentencia: %s" -#: tcop/postgres.c:1346 +#: tcop/postgres.c:1350 #, c-format msgid "duration: %s ms statement: %s" msgstr "duración: %s ms sentencia: %s" -#: tcop/postgres.c:1452 +#: tcop/postgres.c:1456 #, c-format msgid "cannot insert multiple commands into a prepared statement" msgstr "no se pueden insertar múltiples órdenes en una sentencia preparada" -#: tcop/postgres.c:1582 +#: tcop/postgres.c:1586 #, c-format msgid "duration: %s ms parse %s: %s" msgstr "duración: %s ms parse: %s: %s" -#: tcop/postgres.c:1648 tcop/postgres.c:2595 +#: tcop/postgres.c:1653 tcop/postgres.c:2623 #, c-format msgid "unnamed prepared statement does not exist" msgstr "no existe una sentencia preparada sin nombre" -#: tcop/postgres.c:1689 +#: tcop/postgres.c:1705 #, c-format msgid "bind message has %d parameter formats but %d parameters" msgstr "el mensaje de «bind» tiene %d formatos de parámetro pero %d parámetros" -#: tcop/postgres.c:1695 +#: tcop/postgres.c:1711 #, c-format msgid "bind message supplies %d parameters, but prepared statement \"%s\" requires %d" msgstr "el mensaje de «bind» entrega %d parámetros, pero la sentencia preparada «%s» requiere %d" -#: tcop/postgres.c:1914 +#: tcop/postgres.c:1930 #, c-format msgid "incorrect binary data format in bind parameter %d" msgstr "el formato de datos binarios es incorrecto en el parámetro de «bind» %d" -#: tcop/postgres.c:2041 +#: tcop/postgres.c:2057 #, c-format msgid "duration: %s ms bind %s%s%s: %s" msgstr "duración: %s ms bind %s%s%s: %s" -#: tcop/postgres.c:2091 tcop/postgres.c:2678 +#: tcop/postgres.c:2108 tcop/postgres.c:2706 #, c-format msgid "portal \"%s\" does not exist" msgstr "no existe el portal «%s»" -#: tcop/postgres.c:2160 +#: tcop/postgres.c:2188 #, c-format msgid "%s %s%s%s: %s" msgstr "%s %s%s%s: %s" -#: tcop/postgres.c:2162 tcop/postgres.c:2288 +#: tcop/postgres.c:2190 tcop/postgres.c:2316 msgid "execute fetch from" msgstr "ejecutar fetch desde" -#: tcop/postgres.c:2163 tcop/postgres.c:2289 +#: tcop/postgres.c:2191 tcop/postgres.c:2317 msgid "execute" msgstr "ejecutar" -#: tcop/postgres.c:2285 +#: tcop/postgres.c:2313 #, c-format msgid "duration: %s ms %s %s%s%s: %s" msgstr "duración: %s ms %s %s%s%s: %s" -#: tcop/postgres.c:2431 +#: tcop/postgres.c:2459 #, c-format msgid "prepare: %s" msgstr "prepare: %s" -#: tcop/postgres.c:2456 +#: tcop/postgres.c:2484 #, c-format msgid "parameters: %s" msgstr "parámetros: %s" -#: tcop/postgres.c:2471 +#: tcop/postgres.c:2499 #, c-format msgid "abort reason: recovery conflict" msgstr "razón para abortar: conflicto en la recuperación" -#: tcop/postgres.c:2487 +#: tcop/postgres.c:2515 #, c-format msgid "User was holding shared buffer pin for too long." msgstr "El usuario mantuvo el búfer compartido «clavado» por demasiado tiempo." -#: tcop/postgres.c:2490 +#: tcop/postgres.c:2518 #, c-format msgid "User was holding a relation lock for too long." msgstr "El usuario mantuvo una relación bloqueada por demasiado tiempo." -#: tcop/postgres.c:2493 +#: tcop/postgres.c:2521 #, c-format msgid "User was or might have been using tablespace that must be dropped." msgstr "El usuario estaba o pudo haber estado usando un tablespace que debía ser eliminado." -#: tcop/postgres.c:2496 +#: tcop/postgres.c:2524 #, c-format msgid "User query might have needed to see row versions that must be removed." msgstr "La consulta del usuario pudo haber necesitado examinar versiones de tuplas que debían eliminarse." -#: tcop/postgres.c:2502 +#: tcop/postgres.c:2530 #, c-format msgid "User was connected to a database that must be dropped." msgstr "El usuario estaba conectado a una base de datos que debía ser eliminada." -#: tcop/postgres.c:2541 +#: tcop/postgres.c:2569 #, c-format msgid "portal \"%s\" parameter $%d = %s" msgstr "portal «%s» parámetro $%d = %s" -#: tcop/postgres.c:2544 +#: tcop/postgres.c:2572 #, c-format msgid "portal \"%s\" parameter $%d" msgstr "portal «%s» parámetro $%d" -#: tcop/postgres.c:2550 +#: tcop/postgres.c:2578 #, c-format msgid "unnamed portal parameter $%d = %s" msgstr "portal sin nombre, parámetro %d = %s" -#: tcop/postgres.c:2553 +#: tcop/postgres.c:2581 #, c-format msgid "unnamed portal parameter $%d" msgstr "portal sin nombre, parámetro %d" -#: tcop/postgres.c:2898 +#: tcop/postgres.c:2926 #, c-format msgid "terminating connection because of unexpected SIGQUIT signal" msgstr "terminando la conexión debido a una señal SIGQUIT inesperada" -#: tcop/postgres.c:2904 +#: tcop/postgres.c:2932 #, c-format msgid "terminating connection because of crash of another server process" msgstr "terminando la conexión debido a una falla en otro proceso servidor" -#: tcop/postgres.c:2905 +#: tcop/postgres.c:2933 #, c-format msgid "The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory." msgstr "Postmaster ha ordenado que este proceso servidor cancele la transacción en curso y finalice la conexión, porque otro proceso servidor ha terminado anormalmente y podría haber corrompido la memoria compartida." -#: tcop/postgres.c:2909 tcop/postgres.c:3270 +#: tcop/postgres.c:2937 tcop/postgres.c:3298 #, c-format msgid "In a moment you should be able to reconnect to the database and repeat your command." msgstr "Dentro de un momento debería poder reconectarse y repetir la consulta." -#: tcop/postgres.c:2916 +#: tcop/postgres.c:2944 #, c-format msgid "terminating connection due to immediate shutdown command" msgstr "terminando la conexión debido a una orden de apagado inmediato" -#: tcop/postgres.c:3002 +#: tcop/postgres.c:3030 #, c-format msgid "floating-point exception" msgstr "excepción de coma flotante" -#: tcop/postgres.c:3003 +#: tcop/postgres.c:3031 #, c-format msgid "An invalid floating-point operation was signaled. This probably means an out-of-range result or an invalid operation, such as division by zero." msgstr "Se ha recibido una señal de una operación de coma flotante no válida. Esto puede significar un resultado fuera de rango o una operación no válida, como una división por cero." -#: tcop/postgres.c:3174 +#: tcop/postgres.c:3202 #, c-format msgid "canceling authentication due to timeout" msgstr "cancelando la autentificación debido a que se agotó el tiempo de espera" -#: tcop/postgres.c:3178 +#: tcop/postgres.c:3206 #, c-format msgid "terminating autovacuum process due to administrator command" msgstr "terminando el proceso autovacuum debido a una orden del administrador" -#: tcop/postgres.c:3182 +#: tcop/postgres.c:3210 #, c-format msgid "terminating logical replication worker due to administrator command" msgstr "terminando el proceso de replicación lógica debido a una orden del administrador" -#: tcop/postgres.c:3199 tcop/postgres.c:3209 tcop/postgres.c:3268 +#: tcop/postgres.c:3227 tcop/postgres.c:3237 tcop/postgres.c:3296 #, c-format msgid "terminating connection due to conflict with recovery" msgstr "terminando la conexión debido a un conflicto con la recuperación" -#: tcop/postgres.c:3220 +#: tcop/postgres.c:3248 #, c-format msgid "terminating connection due to administrator command" msgstr "terminando la conexión debido a una orden del administrador" -#: tcop/postgres.c:3251 +#: tcop/postgres.c:3279 #, c-format msgid "connection to client lost" msgstr "se ha perdido la conexión al cliente" -#: tcop/postgres.c:3321 +#: tcop/postgres.c:3349 #, c-format msgid "canceling statement due to lock timeout" msgstr "cancelando la sentencia debido a que se agotó el tiempo de espera de candados (locks)" -#: tcop/postgres.c:3328 +#: tcop/postgres.c:3356 #, c-format msgid "canceling statement due to statement timeout" msgstr "cancelando la sentencia debido a que se agotó el tiempo de espera de sentencias" -#: tcop/postgres.c:3335 +#: tcop/postgres.c:3363 #, c-format msgid "canceling autovacuum task" msgstr "cancelando tarea de autovacuum" -#: tcop/postgres.c:3358 +#: tcop/postgres.c:3386 #, c-format msgid "canceling statement due to user request" msgstr "cancelando la sentencia debido a una petición del usuario" -#: tcop/postgres.c:3372 +#: tcop/postgres.c:3400 #, c-format msgid "terminating connection due to idle-in-transaction timeout" msgstr "terminando la conexión debido a que se agotó el tiempo de espera para transacciones abiertas inactivas" -#: tcop/postgres.c:3383 +#: tcop/postgres.c:3411 #, c-format msgid "terminating connection due to idle-session timeout" msgstr "terminando la conexión debido a que se agotó el tiempo de espera para sesiones abiertas inactivas" -#: tcop/postgres.c:3523 +#: tcop/postgres.c:3551 #, c-format msgid "stack depth limit exceeded" msgstr "límite de profundidad de stack alcanzado" -#: tcop/postgres.c:3524 +#: tcop/postgres.c:3552 #, c-format msgid "Increase the configuration parameter \"max_stack_depth\" (currently %dkB), after ensuring the platform's stack depth limit is adequate." msgstr "Incremente el parámetro de configuración «max_stack_depth» (actualmente %dkB), después de asegurarse que el límite de profundidad de stack de la plataforma es adecuado." -#: tcop/postgres.c:3587 +#: tcop/postgres.c:3615 #, c-format msgid "\"max_stack_depth\" must not exceed %ldkB." msgstr "«max_stack_depth» no debe exceder %ldkB." -#: tcop/postgres.c:3589 +#: tcop/postgres.c:3617 #, c-format msgid "Increase the platform's stack depth limit via \"ulimit -s\" or local equivalent." msgstr "Incremente el límite de profundidad del stack del sistema usando «ulimit -s» o el equivalente de su sistema." -#: tcop/postgres.c:3945 +#: tcop/postgres.c:4033 #, c-format msgid "invalid command-line argument for server process: %s" msgstr "argumentos de línea de órdenes no válidos para proceso servidor: %s" -#: tcop/postgres.c:3946 tcop/postgres.c:3952 +#: tcop/postgres.c:4034 tcop/postgres.c:4040 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Pruebe «%s --help» para mayor información." -#: tcop/postgres.c:3950 +#: tcop/postgres.c:4038 #, c-format msgid "%s: invalid command-line argument: %s" msgstr "%s: argumento de línea de órdenes no válido: %s" -#: tcop/postgres.c:4003 +#: tcop/postgres.c:4091 #, c-format msgid "%s: no database nor user name specified" msgstr "%s: no se ha especificado base de datos ni usuario" -#: tcop/postgres.c:4730 +#: tcop/postgres.c:4818 #, c-format msgid "invalid CLOSE message subtype %d" msgstr "subtipo %d de mensaje CLOSE no válido" -#: tcop/postgres.c:4765 +#: tcop/postgres.c:4853 #, c-format msgid "invalid DESCRIBE message subtype %d" msgstr "subtipo %d de mensaje DESCRIBE no válido" -#: tcop/postgres.c:4849 +#: tcop/postgres.c:4937 #, c-format msgid "fastpath function calls not supported in a replication connection" msgstr "la invocación «fastpath» de funciones no está soportada en conexiones de replicación" -#: tcop/postgres.c:4853 +#: tcop/postgres.c:4941 #, c-format msgid "extended query protocol not supported in a replication connection" msgstr "el protocolo extendido de consultas no está soportado en conexiones de replicación" -#: tcop/postgres.c:5030 +#: tcop/postgres.c:5118 #, c-format msgid "disconnection: session time: %d:%02d:%02d.%03d user=%s database=%s host=%s%s%s" msgstr "desconexión: duración de sesión: %d:%02d:%02d.%03d usuario=%s base=%s host=%s%s%s" @@ -22216,7 +22249,7 @@ msgid "invalid regular expression: %s" msgstr "la expresión regular no es válida: %s" #: tsearch/spell.c:983 tsearch/spell.c:1000 tsearch/spell.c:1017 -#: tsearch/spell.c:1034 tsearch/spell.c:1099 gram.y:17812 gram.y:17829 +#: tsearch/spell.c:1034 tsearch/spell.c:1099 gram.y:17819 gram.y:17836 #, c-format msgid "syntax error" msgstr "error de sintaxis" @@ -22324,37 +22357,37 @@ msgstr "MaxFragments debería ser >= 0" msgid "could not unlink permanent statistics file \"%s\": %m" msgstr "no se pudo eliminar el archivo permanente de estadísticas «%s»: %m" -#: utils/activity/pgstat.c:1229 +#: utils/activity/pgstat.c:1232 #, c-format msgid "invalid statistics kind: \"%s\"" msgstr "tipo de estadísticas no válido: «%s»" -#: utils/activity/pgstat.c:1309 +#: utils/activity/pgstat.c:1312 #, c-format msgid "could not open temporary statistics file \"%s\": %m" msgstr "no se pudo abrir el archivo temporal de estadísticas «%s»: %m" -#: utils/activity/pgstat.c:1415 +#: utils/activity/pgstat.c:1418 #, c-format msgid "could not write temporary statistics file \"%s\": %m" msgstr "no se pudo escribir el archivo temporal de estadísticas «%s»: %m" -#: utils/activity/pgstat.c:1424 +#: utils/activity/pgstat.c:1427 #, c-format msgid "could not close temporary statistics file \"%s\": %m" msgstr "no se pudo cerrar el archivo temporal de estadísticas «%s»: %m" -#: utils/activity/pgstat.c:1432 +#: utils/activity/pgstat.c:1435 #, c-format msgid "could not rename temporary statistics file \"%s\" to \"%s\": %m" msgstr "no se pudo renombrar el archivo temporal de estadísticas de «%s» a «%s»: %m" -#: utils/activity/pgstat.c:1481 +#: utils/activity/pgstat.c:1484 #, c-format msgid "could not open statistics file \"%s\": %m" msgstr "no se pudo abrir el archivo de estadísticas «%s»: %m" -#: utils/activity/pgstat.c:1637 +#: utils/activity/pgstat.c:1640 #, c-format msgid "corrupted statistics file \"%s\"" msgstr "el archivo de estadísticas «%s» está corrupto" @@ -24212,62 +24245,62 @@ msgstr "el tablespace global nunca tiene bases de datos" msgid "%u is not a tablespace OID" msgstr "%u no es un OID de tablespace" -#: utils/adt/misc.c:457 +#: utils/adt/misc.c:450 msgid "unreserved" msgstr "no reservado" -#: utils/adt/misc.c:461 +#: utils/adt/misc.c:454 msgid "unreserved (cannot be function or type name)" msgstr "no reservado (no puede ser nombre de función o de tipo)" -#: utils/adt/misc.c:465 +#: utils/adt/misc.c:458 msgid "reserved (can be function or type name)" msgstr "reservado (puede ser nombre de función o de tipo)" -#: utils/adt/misc.c:469 +#: utils/adt/misc.c:462 msgid "reserved" msgstr "reservado" -#: utils/adt/misc.c:480 +#: utils/adt/misc.c:473 msgid "can be bare label" msgstr "puede ser una etiqueta sola" -#: utils/adt/misc.c:485 +#: utils/adt/misc.c:478 msgid "requires AS" msgstr "requiere AS" -#: utils/adt/misc.c:732 utils/adt/misc.c:746 utils/adt/misc.c:785 -#: utils/adt/misc.c:791 utils/adt/misc.c:797 utils/adt/misc.c:820 +#: utils/adt/misc.c:725 utils/adt/misc.c:739 utils/adt/misc.c:778 +#: utils/adt/misc.c:784 utils/adt/misc.c:790 utils/adt/misc.c:813 #, c-format msgid "string is not a valid identifier: \"%s\"" msgstr "la cadena no es un identificador válido: «%s»" -#: utils/adt/misc.c:734 +#: utils/adt/misc.c:727 #, c-format msgid "String has unclosed double quotes." msgstr "La cadena tiene comillas dobles sin cerrar." -#: utils/adt/misc.c:748 +#: utils/adt/misc.c:741 #, c-format msgid "Quoted identifier must not be empty." msgstr "El identificador en comillas no debe ser vacío." -#: utils/adt/misc.c:787 +#: utils/adt/misc.c:780 #, c-format msgid "No valid identifier before \".\"." msgstr "No hay un identificador válido antes de «.»." -#: utils/adt/misc.c:793 +#: utils/adt/misc.c:786 #, c-format msgid "No valid identifier after \".\"." msgstr "No hay un identificador válido después de «.»." -#: utils/adt/misc.c:853 +#: utils/adt/misc.c:846 #, c-format msgid "log format \"%s\" is not supported" msgstr "el formato de log «%s» no está soportado" -#: utils/adt/misc.c:854 +#: utils/adt/misc.c:847 #, c-format msgid "The supported log formats are \"stderr\", \"csvlog\", and \"jsonlog\"." msgstr "Los formatos de log soportados son «stderr», «csvlog» y «jsonlog»." @@ -24743,7 +24776,7 @@ msgstr "Si su intención era usar regexp_replace() con un parámetro de inicio, #: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 #: utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 #: utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 -#: utils/adt/regexp.c:1857 utils/misc/guc.c:11875 utils/misc/guc.c:11909 +#: utils/adt/regexp.c:1857 utils/misc/guc.c:11893 utils/misc/guc.c:11927 #, c-format msgid "invalid value for parameter \"%s\": %d" msgstr "valor no válido para el parámetro «%s»: %d" @@ -24781,18 +24814,18 @@ msgstr "existe más de una función llamada «%s»" msgid "more than one operator named %s" msgstr "existe más de un operador llamado %s" -#: utils/adt/regproc.c:710 utils/adt/regproc.c:751 gram.y:8771 +#: utils/adt/regproc.c:710 utils/adt/regproc.c:751 gram.y:8778 #, c-format msgid "missing argument" msgstr "falta un argumento" -#: utils/adt/regproc.c:711 utils/adt/regproc.c:752 gram.y:8772 +#: utils/adt/regproc.c:711 utils/adt/regproc.c:752 gram.y:8779 #, c-format msgid "Use NONE to denote the missing argument of a unary operator." msgstr "Use NONE para denotar el argumento faltante de un operador unario." #: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 -#: utils/adt/ruleutils.c:10029 utils/adt/ruleutils.c:10198 +#: utils/adt/ruleutils.c:10053 utils/adt/ruleutils.c:10222 #, c-format msgid "too many arguments" msgstr "demasiados argumentos" @@ -24998,7 +25031,7 @@ msgstr "la precisión de TIMESTAMP(%d)%s no debe ser negativa" msgid "TIMESTAMP(%d)%s precision reduced to maximum allowed, %d" msgstr "la precisión de TIMESTAMP(%d)%s fue reducida al máximo permitido, %d" -#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12899 +#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12917 #, c-format msgid "timestamp out of range: \"%s\"" msgstr "timestamp fuera de rango: «%s»" @@ -25627,22 +25660,22 @@ msgstr "ni el espacio de nombres ni la URI pueden ser vacíos" msgid "could not register XML namespace with name \"%s\" and URI \"%s\"" msgstr "no se pudo registrar un espacio de nombres XML llamado «%s» con URI «%s»" -#: utils/adt/xml.c:4503 +#: utils/adt/xml.c:4509 #, c-format msgid "DEFAULT namespace is not supported" msgstr "el espacio de nombres DEFAULT no está soportado" -#: utils/adt/xml.c:4532 +#: utils/adt/xml.c:4538 #, c-format msgid "row path filter must not be empty string" msgstr "el «path» de filtro de registros no debe ser la cadena vacía" -#: utils/adt/xml.c:4563 +#: utils/adt/xml.c:4572 #, c-format msgid "column path filter must not be empty string" msgstr "el «path» de filtro de columna no debe ser la cadena vacía" -#: utils/adt/xml.c:4707 +#: utils/adt/xml.c:4719 #, c-format msgid "more than one value returned by column XPath expression" msgstr "la expresión XPath de columna retornó más de un valor" @@ -25678,27 +25711,27 @@ msgstr "falta la función de soporte %3$d para el tipo %4$s de la clase de opera msgid "cached plan must not change result type" msgstr "el plan almacenado no debe cambiar el tipo de resultado" -#: utils/cache/relcache.c:3754 +#: utils/cache/relcache.c:3755 #, c-format msgid "heap relfilenode value not set when in binary upgrade mode" msgstr "el valor de relfilende del “heap” no se definió en modo de actualización binaria" -#: utils/cache/relcache.c:3762 +#: utils/cache/relcache.c:3763 #, c-format msgid "unexpected request for new relfilenode in binary upgrade mode" msgstr "petición inesperada de un nuevo relfilenode en modo de actualización binaria" -#: utils/cache/relcache.c:6473 +#: utils/cache/relcache.c:6476 #, c-format msgid "could not create relation-cache initialization file \"%s\": %m" msgstr "no se pudo crear el archivo de cache de catálogos de sistema «%s»: %m" -#: utils/cache/relcache.c:6475 +#: utils/cache/relcache.c:6478 #, c-format msgid "Continuing anyway, but there's something wrong." msgstr "Prosiguiendo de todas maneras, pero hay algo mal." -#: utils/cache/relcache.c:6797 +#: utils/cache/relcache.c:6800 #, c-format msgid "could not remove cache file \"%s\": %m" msgstr "no se pudo eliminar el archivo de cache «%s»: %m" @@ -26011,7 +26044,7 @@ msgstr "el directorio de datos «%s» tiene permisos no válidos" msgid "Permissions should be u=rwx (0700) or u=rwx,g=rx (0750)." msgstr "Los permisos deberían ser u=rwx (0700) o u=rwx,g=rx (0750)." -#: utils/init/miscinit.c:665 utils/misc/guc.c:7837 +#: utils/init/miscinit.c:665 utils/misc/guc.c:7855 #, c-format msgid "cannot set parameter \"%s\" within security-restricted operation" msgstr "no se puede definir el parámetro «%s» dentro de una operación restringida por seguridad" @@ -26112,7 +26145,7 @@ msgstr "El archivo parece accidentalmente abandonado, pero no pudo ser eliminado msgid "could not write lock file \"%s\": %m" msgstr "no se pudo escribir el archivo de bloqueo «%s»: %m" -#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10843 +#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10861 #, c-format msgid "could not read from file \"%s\": %m" msgstr "no se pudo leer el archivo «%s»: %m" @@ -26370,1967 +26403,1971 @@ msgstr "secuencia de bytes no válida para codificación «%s»: %s" msgid "character with byte sequence %s in encoding \"%s\" has no equivalent in encoding \"%s\"" msgstr "carácter con secuencia de bytes %s en codificación «%s» no tiene equivalente en la codificación «%s»" -#: utils/misc/guc.c:776 +#: utils/misc/guc.c:777 msgid "Ungrouped" msgstr "Sin Grupo" -#: utils/misc/guc.c:778 +#: utils/misc/guc.c:779 msgid "File Locations" msgstr "Ubicaciones de Archivos" -#: utils/misc/guc.c:780 +#: utils/misc/guc.c:781 msgid "Connections and Authentication / Connection Settings" msgstr "Conexiones y Autentificación / Parámetros de Conexión" -#: utils/misc/guc.c:782 +#: utils/misc/guc.c:783 msgid "Connections and Authentication / Authentication" msgstr "Conexiones y Autentificación / Autentificación" -#: utils/misc/guc.c:784 +#: utils/misc/guc.c:785 msgid "Connections and Authentication / SSL" msgstr "Conexiones y Autentificación / SSL" -#: utils/misc/guc.c:786 +#: utils/misc/guc.c:787 msgid "Resource Usage / Memory" msgstr "Uso de Recursos / Memoria" -#: utils/misc/guc.c:788 +#: utils/misc/guc.c:789 msgid "Resource Usage / Disk" msgstr "Uso de Recursos / Disco" -#: utils/misc/guc.c:790 +#: utils/misc/guc.c:791 msgid "Resource Usage / Kernel Resources" msgstr "Uso de Recursos / Recursos del Kernel" -#: utils/misc/guc.c:792 +#: utils/misc/guc.c:793 msgid "Resource Usage / Cost-Based Vacuum Delay" msgstr "Uso de Recursos / Retardo de Vacuum por Costos" -#: utils/misc/guc.c:794 +#: utils/misc/guc.c:795 msgid "Resource Usage / Background Writer" msgstr "Uso de Recursos / Escritor en Segundo Plano" -#: utils/misc/guc.c:796 +#: utils/misc/guc.c:797 msgid "Resource Usage / Asynchronous Behavior" msgstr "Uso de Recursos / Comportamiento Asíncrono" -#: utils/misc/guc.c:798 +#: utils/misc/guc.c:799 msgid "Write-Ahead Log / Settings" msgstr "Write-Ahead Log / Configuraciones" -#: utils/misc/guc.c:800 +#: utils/misc/guc.c:801 msgid "Write-Ahead Log / Checkpoints" msgstr "Write-Ahead Log / Puntos de Control (Checkpoints)" -#: utils/misc/guc.c:802 +#: utils/misc/guc.c:803 msgid "Write-Ahead Log / Archiving" msgstr "Write-Ahead Log / Archivado" -#: utils/misc/guc.c:804 +#: utils/misc/guc.c:805 msgid "Write-Ahead Log / Recovery" msgstr "Write-Ahead Log / Recuperación" -#: utils/misc/guc.c:806 +#: utils/misc/guc.c:807 msgid "Write-Ahead Log / Archive Recovery" msgstr "Write-Ahead Log / Recuperación desde Archivo" -#: utils/misc/guc.c:808 +#: utils/misc/guc.c:809 msgid "Write-Ahead Log / Recovery Target" msgstr "Write-Ahead Log / Destino de Recuperación" -#: utils/misc/guc.c:810 +#: utils/misc/guc.c:811 msgid "Replication / Sending Servers" msgstr "Replicación / Servidores de Envío" -#: utils/misc/guc.c:812 +#: utils/misc/guc.c:813 msgid "Replication / Primary Server" msgstr "Replicación / Servidor Primario" -#: utils/misc/guc.c:814 +#: utils/misc/guc.c:815 msgid "Replication / Standby Servers" msgstr "Replicación / Servidores Standby" -#: utils/misc/guc.c:816 +#: utils/misc/guc.c:817 msgid "Replication / Subscribers" msgstr "Replicación / Suscriptores" -#: utils/misc/guc.c:818 +#: utils/misc/guc.c:819 msgid "Query Tuning / Planner Method Configuration" msgstr "Afinamiento de Consultas / Configuración de Métodos del Planner" -#: utils/misc/guc.c:820 +#: utils/misc/guc.c:821 msgid "Query Tuning / Planner Cost Constants" msgstr "Afinamiento de Consultas / Constantes de Costo del Planner" -#: utils/misc/guc.c:822 +#: utils/misc/guc.c:823 msgid "Query Tuning / Genetic Query Optimizer" msgstr "Afinamiento de Consultas / Optimizador Genético de Consultas" -#: utils/misc/guc.c:824 +#: utils/misc/guc.c:825 msgid "Query Tuning / Other Planner Options" msgstr "Afinamiento de Consultas / Otras Opciones del Planner" -#: utils/misc/guc.c:826 +#: utils/misc/guc.c:827 msgid "Reporting and Logging / Where to Log" msgstr "Reporte y Registro / Dónde Registrar" -#: utils/misc/guc.c:828 +#: utils/misc/guc.c:829 msgid "Reporting and Logging / When to Log" msgstr "Reporte y Registro / Cuándo Registrar" -#: utils/misc/guc.c:830 +#: utils/misc/guc.c:831 msgid "Reporting and Logging / What to Log" msgstr "Reporte y Registro / Qué Registrar" -#: utils/misc/guc.c:832 +#: utils/misc/guc.c:833 msgid "Reporting and Logging / Process Title" msgstr "Reporte y Registro / Título del Proceso" -#: utils/misc/guc.c:834 +#: utils/misc/guc.c:835 msgid "Statistics / Monitoring" msgstr "Estadísticas / Monitoreo" -#: utils/misc/guc.c:836 +#: utils/misc/guc.c:837 msgid "Statistics / Cumulative Query and Index Statistics" msgstr "Estadísticas / Acumuladores de Consultas e Índices" -#: utils/misc/guc.c:838 +#: utils/misc/guc.c:839 msgid "Autovacuum" msgstr "Autovacuum" -#: utils/misc/guc.c:840 +#: utils/misc/guc.c:841 msgid "Client Connection Defaults / Statement Behavior" msgstr "Valores por Omisión de Conexiones / Comportamiento de Sentencias" -#: utils/misc/guc.c:842 +#: utils/misc/guc.c:843 msgid "Client Connection Defaults / Locale and Formatting" msgstr "Valores por Omisión de Conexiones / Configuraciones Regionales y Formateo" -#: utils/misc/guc.c:844 +#: utils/misc/guc.c:845 msgid "Client Connection Defaults / Shared Library Preloading" msgstr "Valores por Omisión de Conexiones / Precargado de Bibliotecas Compartidas" -#: utils/misc/guc.c:846 +#: utils/misc/guc.c:847 msgid "Client Connection Defaults / Other Defaults" msgstr "Valores por Omisión de Conexiones / Otros Valores" -#: utils/misc/guc.c:848 +#: utils/misc/guc.c:849 msgid "Lock Management" msgstr "Manejo de Bloqueos" -#: utils/misc/guc.c:850 +#: utils/misc/guc.c:851 msgid "Version and Platform Compatibility / Previous PostgreSQL Versions" msgstr "Compatibilidad de Versión y Plataforma / Versiones Anteriores de PostgreSQL" -#: utils/misc/guc.c:852 +#: utils/misc/guc.c:853 msgid "Version and Platform Compatibility / Other Platforms and Clients" msgstr "Compatibilidad de Versión y Plataforma / Otras Plataformas y Clientes" -#: utils/misc/guc.c:854 +#: utils/misc/guc.c:855 msgid "Error Handling" msgstr "Gestión de Errores" -#: utils/misc/guc.c:856 +#: utils/misc/guc.c:857 msgid "Preset Options" msgstr "Opciones Predefinidas" -#: utils/misc/guc.c:858 +#: utils/misc/guc.c:859 msgid "Customized Options" msgstr "Opciones Personalizadas" -#: utils/misc/guc.c:860 +#: utils/misc/guc.c:861 msgid "Developer Options" msgstr "Opciones de Desarrollador" -#: utils/misc/guc.c:918 +#: utils/misc/guc.c:919 msgid "Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\"." msgstr "Unidades aceptables para este parámetro son «B», «kB», «MB», «GB» y «TB»." -#: utils/misc/guc.c:955 +#: utils/misc/guc.c:956 msgid "Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\"." msgstr "Unidades aceptables son para este parámetro son «us», «ms», «s», «min», «h» y «d»." -#: utils/misc/guc.c:1017 +#: utils/misc/guc.c:1018 msgid "Enables the planner's use of sequential-scan plans." msgstr "Permitir el uso de planes de recorrido secuencial." -#: utils/misc/guc.c:1027 +#: utils/misc/guc.c:1028 msgid "Enables the planner's use of index-scan plans." msgstr "Permitir el uso de planes de recorrido de índice." -#: utils/misc/guc.c:1037 +#: utils/misc/guc.c:1038 msgid "Enables the planner's use of index-only-scan plans." msgstr "Permitir el uso de planes de recorrido de sólo-índice." -#: utils/misc/guc.c:1047 +#: utils/misc/guc.c:1048 msgid "Enables the planner's use of bitmap-scan plans." msgstr "Permitir el uso de planes de recorrido de índice por mapas de bits." -#: utils/misc/guc.c:1057 +#: utils/misc/guc.c:1058 msgid "Enables the planner's use of TID scan plans." msgstr "Permitir el uso de planes de recorrido por TID." -#: utils/misc/guc.c:1067 +#: utils/misc/guc.c:1068 msgid "Enables the planner's use of explicit sort steps." msgstr "Permitir el uso de pasos explícitos de ordenamiento." -#: utils/misc/guc.c:1077 +#: utils/misc/guc.c:1078 msgid "Enables the planner's use of incremental sort steps." msgstr "Permitir el uso de pasos incrementales de ordenamiento." -#: utils/misc/guc.c:1087 +#: utils/misc/guc.c:1088 msgid "Enables the planner's use of hashed aggregation plans." msgstr "Permitir el uso de planes de agregación a través de hash." -#: utils/misc/guc.c:1097 +#: utils/misc/guc.c:1098 msgid "Enables the planner's use of materialization." msgstr "Permitir el uso de materialización de planes." -#: utils/misc/guc.c:1107 +#: utils/misc/guc.c:1108 msgid "Enables the planner's use of memoization." msgstr "Permitir el uso de memoización de planes." -#: utils/misc/guc.c:1117 +#: utils/misc/guc.c:1118 msgid "Enables the planner's use of nested-loop join plans." msgstr "Permitir el uso de planes «nested-loop join»." -#: utils/misc/guc.c:1127 +#: utils/misc/guc.c:1128 msgid "Enables the planner's use of merge join plans." msgstr "Permitir el uso de planes «merge join»." -#: utils/misc/guc.c:1137 +#: utils/misc/guc.c:1138 msgid "Enables the planner's use of hash join plans." msgstr "Permitir el uso de planes «hash join»." -#: utils/misc/guc.c:1147 +#: utils/misc/guc.c:1148 msgid "Enables the planner's use of gather merge plans." msgstr "Permitir el uso de planes «gather merge»." -#: utils/misc/guc.c:1157 +#: utils/misc/guc.c:1158 msgid "Enables partitionwise join." msgstr "Permitir el uso de joins por particiones." -#: utils/misc/guc.c:1167 +#: utils/misc/guc.c:1168 msgid "Enables partitionwise aggregation and grouping." msgstr "Permitir el uso de agregación y agrupamiento por particiones." -#: utils/misc/guc.c:1177 +#: utils/misc/guc.c:1178 msgid "Enables the planner's use of parallel append plans." msgstr "Permitir el uso de planes «append» paralelos." -#: utils/misc/guc.c:1187 +#: utils/misc/guc.c:1188 msgid "Enables the planner's use of parallel hash plans." msgstr "Permitir el uso de planes «hash join» paralelos." -#: utils/misc/guc.c:1197 +#: utils/misc/guc.c:1198 msgid "Enables plan-time and execution-time partition pruning." msgstr "Permitir el uso de poda de particiones en tiempo de plan y ejecución." -#: utils/misc/guc.c:1198 +#: utils/misc/guc.c:1199 msgid "Allows the query planner and executor to compare partition bounds to conditions in the query to determine which partitions must be scanned." msgstr "Permite al optimizador de consultas y al ejecutor a comparar bordes de particiones a condiciones en las consultas para determinar qué particiones deben recorrerse." -#: utils/misc/guc.c:1209 +#: utils/misc/guc.c:1210 msgid "Enables the planner's use of async append plans." msgstr "Permitir el uso de planes «append» asíncronos." -#: utils/misc/guc.c:1219 +#: utils/misc/guc.c:1220 msgid "Enables genetic query optimization." msgstr "Permitir el uso del optimizador genético de consultas." -#: utils/misc/guc.c:1220 +#: utils/misc/guc.c:1221 msgid "This algorithm attempts to do planning without exhaustive searching." msgstr "Este algoritmo intenta planear las consultas sin hacer búsqueda exhaustiva." -#: utils/misc/guc.c:1231 +#: utils/misc/guc.c:1232 msgid "Shows whether the current user is a superuser." msgstr "Indica si el usuario actual es superusuario." -#: utils/misc/guc.c:1241 +#: utils/misc/guc.c:1242 msgid "Enables advertising the server via Bonjour." msgstr "Permitir la publicación del servidor vía Bonjour." -#: utils/misc/guc.c:1250 +#: utils/misc/guc.c:1251 msgid "Collects transaction commit time." msgstr "Recolectar tiempo de compromiso de transacciones." -#: utils/misc/guc.c:1259 +#: utils/misc/guc.c:1260 msgid "Enables SSL connections." msgstr "Permitir conexiones SSL." -#: utils/misc/guc.c:1268 +#: utils/misc/guc.c:1269 msgid "Controls whether ssl_passphrase_command is called during server reload." msgstr "Controla si ssl_passphrase_command se invoca durante un «reload» del servidor." -#: utils/misc/guc.c:1277 +#: utils/misc/guc.c:1278 msgid "Give priority to server ciphersuite order." msgstr "Da prioridad al orden de algoritmos de cifrado especificado por el servidor." -#: utils/misc/guc.c:1286 +#: utils/misc/guc.c:1287 msgid "Forces synchronization of updates to disk." msgstr "Forzar la sincronización de escrituras a disco." -#: utils/misc/guc.c:1287 +#: utils/misc/guc.c:1288 msgid "The server will use the fsync() system call in several places to make sure that updates are physically written to disk. This ensures that a database cluster will recover to a consistent state after an operating system or hardware crash." msgstr "El servidor usará la llamada a sistema fsync() en varios lugares para asegurarse que las actualizaciones son escritas físicamente a disco. Esto asegura que las bases de datos se recuperarán a un estado consistente después de una caída de hardware o sistema operativo." -#: utils/misc/guc.c:1298 +#: utils/misc/guc.c:1299 msgid "Continues processing after a checksum failure." msgstr "Continuar procesando después de una falla de suma de verificación." -#: utils/misc/guc.c:1299 +#: utils/misc/guc.c:1300 msgid "Detection of a checksum failure normally causes PostgreSQL to report an error, aborting the current transaction. Setting ignore_checksum_failure to true causes the system to ignore the failure (but still report a warning), and continue processing. This behavior could cause crashes or other serious problems. Only has an effect if checksums are enabled." msgstr "La detección de una suma de verificación que no coincide normalmente hace que PostgreSQL reporte un error, abortando la transacción en curso. Definiendo ignore_checksum_failure a true hace que el sistema ignore la falla (pero aún así reporta un mensaje de warning), y continúe el procesamiento. Este comportamiento podría causar caídas del sistema u otros problemas serios. Sólo tiene efecto si las sumas de verificación están activadas." -#: utils/misc/guc.c:1313 +#: utils/misc/guc.c:1314 msgid "Continues processing past damaged page headers." msgstr "Continuar procesando después de detectar encabezados de página dañados." -#: utils/misc/guc.c:1314 +#: utils/misc/guc.c:1315 msgid "Detection of a damaged page header normally causes PostgreSQL to report an error, aborting the current transaction. Setting zero_damaged_pages to true causes the system to instead report a warning, zero out the damaged page, and continue processing. This behavior will destroy data, namely all the rows on the damaged page." msgstr "La detección de un encabezado de página dañado normalmente hace que PostgreSQL reporte un error, abortando la transacción en curso. Definiendo zero_damaged_pages a true hace que el sistema reporte un mensaje de warning, escriba ceros en toda la página, y continúe el procesamiento. Este comportamiento destruirá datos; en particular, todas las tuplas en la página dañada." -#: utils/misc/guc.c:1327 +#: utils/misc/guc.c:1328 msgid "Continues recovery after an invalid pages failure." msgstr "Continuar procesando después de una falla de páginas no válidas." -#: utils/misc/guc.c:1328 +#: utils/misc/guc.c:1329 msgid "Detection of WAL records having references to invalid pages during recovery causes PostgreSQL to raise a PANIC-level error, aborting the recovery. Setting ignore_invalid_pages to true causes the system to ignore invalid page references in WAL records (but still report a warning), and continue recovery. This behavior may cause crashes, data loss, propagate or hide corruption, or other serious problems. Only has an effect during recovery or in standby mode." msgstr "La detección de que registros de WAL tengan referencias a páginas no válidas durante la recuperación hace que PostgreSQL produzca un error de nivel PANIC, abortando la recuperación. Establecer el valor de ignore_invalid_pages a true hace que el sistema ignore las referencias a páginas no válidas en registros de WAL (pero aún así reporta un mensaje de warning), y continúe la recuperación. Este comportamiento podría causar caídas del sistema, pérdida de datos, propagar u ocultar corrupción, u otros problemas serios. Sólo tiene efecto durante la recuperación o en modo standby." -#: utils/misc/guc.c:1346 +#: utils/misc/guc.c:1347 msgid "Writes full pages to WAL when first modified after a checkpoint." msgstr "Escribe páginas completas a WAL cuando son modificadas después de un punto de control." -#: utils/misc/guc.c:1347 +#: utils/misc/guc.c:1348 msgid "A page write in process during an operating system crash might be only partially written to disk. During recovery, the row changes stored in WAL are not enough to recover. This option writes pages when first modified after a checkpoint to WAL so full recovery is possible." msgstr "Una escritura de página que está siendo procesada durante una caída del sistema operativo puede ser completada sólo parcialmente. Durante la recuperación, los cambios de registros (tuplas) almacenados en WAL no son suficientes para la recuperación. Esta opción activa la escritura de las páginas a WAL cuando son modificadas por primera vez después de un punto de control, de manera que una recuperación total es posible." -#: utils/misc/guc.c:1360 +#: utils/misc/guc.c:1361 msgid "Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification." msgstr "Escribir páginas completas al WAL cuando son modificadas después de un punto de control, incluso para una modificación no crítica." -#: utils/misc/guc.c:1370 +#: utils/misc/guc.c:1371 msgid "Writes zeroes to new WAL files before first use." msgstr "Escribir ceros a nuevos archivos WAL antes del primer uso." -#: utils/misc/guc.c:1380 +#: utils/misc/guc.c:1381 msgid "Recycles WAL files by renaming them." msgstr "Reciclar archivos WAL cambiándoles de nombre." -#: utils/misc/guc.c:1390 +#: utils/misc/guc.c:1391 msgid "Logs each checkpoint." msgstr "Registrar cada punto de control." -#: utils/misc/guc.c:1399 +#: utils/misc/guc.c:1400 msgid "Logs each successful connection." msgstr "Registrar cada conexión exitosa." -#: utils/misc/guc.c:1408 +#: utils/misc/guc.c:1409 msgid "Logs end of a session, including duration." msgstr "Registrar el fin de una sesión, incluyendo su duración." -#: utils/misc/guc.c:1417 +#: utils/misc/guc.c:1418 msgid "Logs each replication command." msgstr "Registrar cada orden de replicación." -#: utils/misc/guc.c:1426 +#: utils/misc/guc.c:1427 msgid "Shows whether the running server has assertion checks enabled." msgstr "Indica si el servidor actual tiene activas las aseveraciones (asserts) activas." -#: utils/misc/guc.c:1441 +#: utils/misc/guc.c:1442 msgid "Terminate session on any error." msgstr "Terminar sesión ante cualquier error." -#: utils/misc/guc.c:1450 +#: utils/misc/guc.c:1451 msgid "Reinitialize server after backend crash." msgstr "Reinicializar el servidor después de una caída de un proceso servidor." -#: utils/misc/guc.c:1459 +#: utils/misc/guc.c:1460 msgid "Remove temporary files after backend crash." msgstr "Eliminar archivos temporales después de una caída de un proceso servidor." -#: utils/misc/guc.c:1470 +#: utils/misc/guc.c:1471 msgid "Logs the duration of each completed SQL statement." msgstr "Registrar la duración de cada sentencia SQL ejecutada." -#: utils/misc/guc.c:1479 +#: utils/misc/guc.c:1480 msgid "Logs each query's parse tree." msgstr "Registrar cada arbol analizado de consulta." -#: utils/misc/guc.c:1488 +#: utils/misc/guc.c:1489 msgid "Logs each query's rewritten parse tree." msgstr "Registrar cada reescritura del arból analizado de consulta" -#: utils/misc/guc.c:1497 +#: utils/misc/guc.c:1498 msgid "Logs each query's execution plan." msgstr "Registrar el plan de ejecución de cada consulta." -#: utils/misc/guc.c:1506 +#: utils/misc/guc.c:1507 msgid "Indents parse and plan tree displays." msgstr "Indentar los árboles de parse y plan." -#: utils/misc/guc.c:1515 +#: utils/misc/guc.c:1516 msgid "Writes parser performance statistics to the server log." msgstr "Escribir estadísticas de parser al registro del servidor." -#: utils/misc/guc.c:1524 +#: utils/misc/guc.c:1525 msgid "Writes planner performance statistics to the server log." msgstr "Escribir estadísticas de planner al registro del servidor." -#: utils/misc/guc.c:1533 +#: utils/misc/guc.c:1534 msgid "Writes executor performance statistics to the server log." msgstr "Escribir estadísticas del executor al registro del servidor." -#: utils/misc/guc.c:1542 +#: utils/misc/guc.c:1543 msgid "Writes cumulative performance statistics to the server log." msgstr "Escribir estadísticas acumulativas al registro del servidor." -#: utils/misc/guc.c:1552 +#: utils/misc/guc.c:1553 msgid "Logs system resource usage statistics (memory and CPU) on various B-tree operations." msgstr "Registrar uso de recursos de sistema (memoria y CPU) en varias operaciones B-tree." -#: utils/misc/guc.c:1564 +#: utils/misc/guc.c:1565 msgid "Collects information about executing commands." msgstr "Recolectar estadísticas sobre órdenes en ejecución." -#: utils/misc/guc.c:1565 +#: utils/misc/guc.c:1566 msgid "Enables the collection of information on the currently executing command of each session, along with the time at which that command began execution." msgstr "Activa la recolección de información sobre la orden actualmente en ejecución en cada sesión, junto con el momento en el cual esa orden comenzó la ejecución." -#: utils/misc/guc.c:1575 +#: utils/misc/guc.c:1576 msgid "Collects statistics on database activity." msgstr "Recolectar estadísticas de actividad de la base de datos." -#: utils/misc/guc.c:1584 +#: utils/misc/guc.c:1585 msgid "Collects timing statistics for database I/O activity." msgstr "Recolectar estadísticas de tiempos en las operaciones de I/O de la base de datos." -#: utils/misc/guc.c:1593 +#: utils/misc/guc.c:1594 msgid "Collects timing statistics for WAL I/O activity." msgstr "Recolectar estadísticas de tiempos en las operaciones de I/O del WAL." -#: utils/misc/guc.c:1603 +#: utils/misc/guc.c:1604 msgid "Updates the process title to show the active SQL command." msgstr "Actualiza el título del proceso para mostrar la orden SQL activo." -#: utils/misc/guc.c:1604 +#: utils/misc/guc.c:1605 msgid "Enables updating of the process title every time a new SQL command is received by the server." msgstr "Habilita que se actualice el título del proceso cada vez que una orden SQL es recibido por el servidor." -#: utils/misc/guc.c:1617 +#: utils/misc/guc.c:1618 msgid "Starts the autovacuum subprocess." msgstr "Iniciar el subproceso de autovacuum." -#: utils/misc/guc.c:1627 +#: utils/misc/guc.c:1628 msgid "Generates debugging output for LISTEN and NOTIFY." msgstr "Generar salida de depuración para LISTEN y NOTIFY." -#: utils/misc/guc.c:1639 +#: utils/misc/guc.c:1640 msgid "Emits information about lock usage." msgstr "Emitir información acerca del uso de locks." -#: utils/misc/guc.c:1649 +#: utils/misc/guc.c:1650 msgid "Emits information about user lock usage." msgstr "Emitir información acerca del uso de locks de usuario." -#: utils/misc/guc.c:1659 +#: utils/misc/guc.c:1660 msgid "Emits information about lightweight lock usage." msgstr "Emitir información acerca del uso de «lightweight locks»." -#: utils/misc/guc.c:1669 +#: utils/misc/guc.c:1670 msgid "Dumps information about all current locks when a deadlock timeout occurs." msgstr "Volcar información acerca de los locks existentes cuando se agota el tiempo de deadlock." -#: utils/misc/guc.c:1681 +#: utils/misc/guc.c:1682 msgid "Logs long lock waits." msgstr "Registrar esperas largas de bloqueos." -#: utils/misc/guc.c:1690 +#: utils/misc/guc.c:1691 msgid "Logs standby recovery conflict waits." msgstr "Registrar esperas por conflictos en recuperación de standby" -#: utils/misc/guc.c:1699 +#: utils/misc/guc.c:1700 msgid "Logs the host name in the connection logs." msgstr "Registrar el nombre del host en la conexión." -#: utils/misc/guc.c:1700 +#: utils/misc/guc.c:1701 msgid "By default, connection logs only show the IP address of the connecting host. If you want them to show the host name you can turn this on, but depending on your host name resolution setup it might impose a non-negligible performance penalty." msgstr "Por omisión, los registros de conexión sólo muestran la dirección IP del host que establece la conexión. Si desea que se despliegue el nombre del host puede activar esta opción, pero dependiendo de su configuración de resolución de nombres esto puede imponer una penalización de rendimiento no despreciable." -#: utils/misc/guc.c:1711 +#: utils/misc/guc.c:1712 msgid "Treats \"expr=NULL\" as \"expr IS NULL\"." msgstr "Tratar expr=NULL como expr IS NULL." -#: utils/misc/guc.c:1712 +#: utils/misc/guc.c:1713 msgid "When turned on, expressions of the form expr = NULL (or NULL = expr) are treated as expr IS NULL, that is, they return true if expr evaluates to the null value, and false otherwise. The correct behavior of expr = NULL is to always return null (unknown)." msgstr "Cuando está activado, expresiones de la forma expr = NULL (o NULL = expr) son tratadas como expr IS NULL, esto es, retornarán verdadero si expr es evaluada al valor nulo, y falso en caso contrario. El comportamiento correcto de expr = NULL es retornar siempre null (desconocido)." -#: utils/misc/guc.c:1724 +#: utils/misc/guc.c:1725 msgid "Enables per-database user names." msgstr "Activar el uso de nombre de usuario locales a cada base de datos." -#: utils/misc/guc.c:1733 +#: utils/misc/guc.c:1734 msgid "Sets the default read-only status of new transactions." msgstr "Estado por omisión de sólo lectura de nuevas transacciones." -#: utils/misc/guc.c:1743 +#: utils/misc/guc.c:1744 msgid "Sets the current transaction's read-only status." msgstr "Activa el estado de sólo lectura de la transacción en curso." -#: utils/misc/guc.c:1753 +#: utils/misc/guc.c:1754 msgid "Sets the default deferrable status of new transactions." msgstr "Estado por omisión de postergable de nuevas transacciones." -#: utils/misc/guc.c:1762 +#: utils/misc/guc.c:1763 msgid "Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures." msgstr "Si está activo, las transacciones serializables de sólo lectura serán pausadas hasta que puedan ejecutarse sin posibles fallas de serialización." -#: utils/misc/guc.c:1772 +#: utils/misc/guc.c:1773 msgid "Enable row security." msgstr "Activar seguridad de registros." -#: utils/misc/guc.c:1773 +#: utils/misc/guc.c:1774 msgid "When enabled, row security will be applied to all users." msgstr "Cuando está activada, la seguridad de registros se aplicará a todos los usuarios." -#: utils/misc/guc.c:1781 +#: utils/misc/guc.c:1782 msgid "Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE." msgstr "Verificar definición de rutinas durante CREATE FUNCTION y CREATE PROCEDURE." -#: utils/misc/guc.c:1790 +#: utils/misc/guc.c:1791 msgid "Enable input of NULL elements in arrays." msgstr "Habilita el ingreso de elementos nulos en arrays." -#: utils/misc/guc.c:1791 +#: utils/misc/guc.c:1792 msgid "When turned on, unquoted NULL in an array input value means a null value; otherwise it is taken literally." msgstr "Cuando está activo, un valor NULL sin comillas en la entrada de un array significa un valor nulo; en caso contrario es tomado literalmente." -#: utils/misc/guc.c:1807 +#: utils/misc/guc.c:1808 msgid "WITH OIDS is no longer supported; this can only be false." msgstr "WITH OIDS ya no está soportado; esto sólo puede ser false." -#: utils/misc/guc.c:1817 +#: utils/misc/guc.c:1818 msgid "Start a subprocess to capture stderr output and/or csvlogs into log files." msgstr "Lanzar un subproceso para capturar stderr y/o logs CSV en archivos de log." -#: utils/misc/guc.c:1826 +#: utils/misc/guc.c:1827 msgid "Truncate existing log files of same name during log rotation." msgstr "Truncar archivos de log del mismo nombre durante la rotación." -#: utils/misc/guc.c:1837 +#: utils/misc/guc.c:1838 msgid "Emit information about resource usage in sorting." msgstr "Emitir información acerca de uso de recursos durante los ordenamientos." -#: utils/misc/guc.c:1851 +#: utils/misc/guc.c:1852 msgid "Generate debugging output for synchronized scanning." msgstr "Generar salida de depuración para recorrido sincronizado." -#: utils/misc/guc.c:1866 +#: utils/misc/guc.c:1867 msgid "Enable bounded sorting using heap sort." msgstr "Activar ordenamiento acotado usando «heap sort»." -#: utils/misc/guc.c:1879 +#: utils/misc/guc.c:1880 msgid "Emit WAL-related debugging output." msgstr "Activar salida de depuración de WAL." -#: utils/misc/guc.c:1891 +#: utils/misc/guc.c:1892 msgid "Shows whether datetimes are integer based." msgstr "Mostrar si las fechas y horas se basan en tipos enteros." -#: utils/misc/guc.c:1902 +#: utils/misc/guc.c:1903 msgid "Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive." msgstr "Define que los nombres de usuario Kerberos y GSSAPI deberían ser tratados sin distinción de mayúsculas." -#: utils/misc/guc.c:1912 +#: utils/misc/guc.c:1913 msgid "Warn about backslash escapes in ordinary string literals." msgstr "Avisa acerca de escapes de backslash en literales de cadena corrientes." -#: utils/misc/guc.c:1922 +#: utils/misc/guc.c:1923 msgid "Causes '...' strings to treat backslashes literally." msgstr "Provoca que las cadenas '...' traten las barras inclinadas inversas (\\) en forma literal." -#: utils/misc/guc.c:1933 +#: utils/misc/guc.c:1934 msgid "Enable synchronized sequential scans." msgstr "Permitir la sincronización de recorridos secuenciales." -#: utils/misc/guc.c:1943 +#: utils/misc/guc.c:1944 msgid "Sets whether to include or exclude transaction with recovery target." msgstr "Define si incluir o excluir la transacción con el destino de recuperación." -#: utils/misc/guc.c:1953 +#: utils/misc/guc.c:1954 msgid "Allows connections and queries during recovery." msgstr "Permite conexiones y consultas durante la recuperación." -#: utils/misc/guc.c:1963 +#: utils/misc/guc.c:1964 msgid "Allows feedback from a hot standby to the primary that will avoid query conflicts." msgstr "Permite retroalimentación desde un hot standby hacia el primario que evitará conflictos en consultas." -#: utils/misc/guc.c:1973 +#: utils/misc/guc.c:1974 msgid "Shows whether hot standby is currently active." msgstr "Muestra si hot standby está activo actualmente." -#: utils/misc/guc.c:1984 +#: utils/misc/guc.c:1985 msgid "Allows modifications of the structure of system tables." msgstr "Permite modificaciones de la estructura de las tablas del sistema." -#: utils/misc/guc.c:1995 +#: utils/misc/guc.c:1996 msgid "Disables reading from system indexes." msgstr "Deshabilita lectura de índices del sistema." -#: utils/misc/guc.c:1996 +#: utils/misc/guc.c:1997 msgid "It does not prevent updating the indexes, so it is safe to use. The worst consequence is slowness." msgstr "No evita la actualización de índices, así que es seguro. Lo peor que puede ocurrir es lentitud del sistema." -#: utils/misc/guc.c:2007 +#: utils/misc/guc.c:2008 msgid "Allows tablespaces directly inside pg_tblspc, for testing." msgstr "Permite tablespaces directamente dentro de pg_tblspc, para pruebas." -#: utils/misc/guc.c:2018 +#: utils/misc/guc.c:2019 msgid "Enables backward compatibility mode for privilege checks on large objects." msgstr "Activa el modo de compatibilidad con versiones anteriores de las comprobaciones de privilegios de objetos grandes." -#: utils/misc/guc.c:2019 +#: utils/misc/guc.c:2020 msgid "Skips privilege checks when reading or modifying large objects, for compatibility with PostgreSQL releases prior to 9.0." msgstr "Omite las comprobaciones de privilegios cuando se leen o modifican los objetos grandes, para compatibilidad con versiones de PostgreSQL anteriores a 9.0." -#: utils/misc/guc.c:2029 +#: utils/misc/guc.c:2030 msgid "When generating SQL fragments, quote all identifiers." msgstr "Al generar fragmentos SQL, entrecomillar todos los identificadores." -#: utils/misc/guc.c:2039 +#: utils/misc/guc.c:2040 msgid "Shows whether data checksums are turned on for this cluster." msgstr "Indica si las sumas de verificación están activas en este cluster." -#: utils/misc/guc.c:2050 +#: utils/misc/guc.c:2051 msgid "Add sequence number to syslog messages to avoid duplicate suppression." msgstr "Agregar número de secuencia a mensajes syslog para evitar supresión de duplicados." -#: utils/misc/guc.c:2060 +#: utils/misc/guc.c:2061 msgid "Split messages sent to syslog by lines and to fit into 1024 bytes." msgstr "Dividir mensajes enviados a syslog en líneas y que quepan en 1024 bytes." -#: utils/misc/guc.c:2070 +#: utils/misc/guc.c:2071 msgid "Controls whether Gather and Gather Merge also run subplans." msgstr "Controla si los Gather y Gather Merge también ejecutan subplanes." -#: utils/misc/guc.c:2071 +#: utils/misc/guc.c:2072 msgid "Should gather nodes also run subplans or just gather tuples?" msgstr "¿Deben los nodos de recolección ejecutar subplanes o sólo recolectar tuplas?" -#: utils/misc/guc.c:2081 +#: utils/misc/guc.c:2082 msgid "Allow JIT compilation." msgstr "Permitir compilación JIT." -#: utils/misc/guc.c:2092 +#: utils/misc/guc.c:2093 msgid "Register JIT-compiled functions with debugger." msgstr "Registrar las funciones JIT compiladas con el depurador." -#: utils/misc/guc.c:2109 +#: utils/misc/guc.c:2110 msgid "Write out LLVM bitcode to facilitate JIT debugging." msgstr "Escribe el bitcode LLVM para facilitar depuración de JIT." -#: utils/misc/guc.c:2120 +#: utils/misc/guc.c:2121 msgid "Allow JIT compilation of expressions." msgstr "Permitir compilación JIT de expresiones." -#: utils/misc/guc.c:2131 +#: utils/misc/guc.c:2132 msgid "Register JIT-compiled functions with perf profiler." msgstr "Registrar las funciones JIT compiladas con el analizador «perf»." -#: utils/misc/guc.c:2148 +#: utils/misc/guc.c:2149 msgid "Allow JIT compilation of tuple deforming." msgstr "Permitir compilación JIT de deformación de tuplas." -#: utils/misc/guc.c:2159 +#: utils/misc/guc.c:2160 msgid "Whether to continue running after a failure to sync data files." msgstr "Si continuar ejecutando después de una falla al sincronizar archivos de datos." -#: utils/misc/guc.c:2168 +#: utils/misc/guc.c:2169 msgid "Sets whether a WAL receiver should create a temporary replication slot if no permanent slot is configured." msgstr "Definir si un receptor de WAL debe crear un slot de replicación temporal en caso de no haber configurado un slot permanente." -#: utils/misc/guc.c:2186 +#: utils/misc/guc.c:2187 msgid "Sets the amount of time to wait before forcing a switch to the next WAL file." msgstr "Define el tiempo a esperar antes de forzar un cambio al siguiente archivo WAL." -#: utils/misc/guc.c:2197 +#: utils/misc/guc.c:2198 msgid "Sets the amount of time to wait after authentication on connection startup." msgstr "Define el tiempo máximo a esperar la autentificación durante el establecimiento de una conexión." -#: utils/misc/guc.c:2199 utils/misc/guc.c:2820 +#: utils/misc/guc.c:2200 utils/misc/guc.c:2821 msgid "This allows attaching a debugger to the process." msgstr "Esto permite adjuntar un depurador al proceso." -#: utils/misc/guc.c:2208 +#: utils/misc/guc.c:2209 msgid "Sets the default statistics target." msgstr "Definir el valor por omisión de toma de estadísticas." -#: utils/misc/guc.c:2209 +#: utils/misc/guc.c:2210 msgid "This applies to table columns that have not had a column-specific target set via ALTER TABLE SET STATISTICS." msgstr "Esto se aplica a columnas de tablas que no tienen un valor definido a través de ALTER TABLE SET STATISTICS." -#: utils/misc/guc.c:2218 +#: utils/misc/guc.c:2219 msgid "Sets the FROM-list size beyond which subqueries are not collapsed." msgstr "Tamaño de lista de FROM a partir del cual subconsultas no serán colapsadas." -#: utils/misc/guc.c:2220 +#: utils/misc/guc.c:2221 msgid "The planner will merge subqueries into upper queries if the resulting FROM list would have no more than this many items." msgstr "El planner mezclará subconsultas en consultas de nivel superior si la lista FROM resultante es menor que esta cantidad de ítems." -#: utils/misc/guc.c:2231 +#: utils/misc/guc.c:2232 msgid "Sets the FROM-list size beyond which JOIN constructs are not flattened." msgstr "Tamaño de lista de FROM a partir del cual constructos JOIN no serán aplanados." -#: utils/misc/guc.c:2233 +#: utils/misc/guc.c:2234 msgid "The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result." msgstr "El planner aplanará constructos JOIN explícitos en listas de ítems FROM siempre que la lista resultante no tenga más que esta cantidad de ítems." -#: utils/misc/guc.c:2244 +#: utils/misc/guc.c:2245 msgid "Sets the threshold of FROM items beyond which GEQO is used." msgstr "Umbral de ítems en FROM a partir del cual se usará GEQO." -#: utils/misc/guc.c:2254 +#: utils/misc/guc.c:2255 msgid "GEQO: effort is used to set the default for other GEQO parameters." msgstr "GEQO: effort se usa para determinar los valores por defecto para otros parámetros." -#: utils/misc/guc.c:2264 +#: utils/misc/guc.c:2265 msgid "GEQO: number of individuals in the population." msgstr "GEQO: número de individuos en una población." -#: utils/misc/guc.c:2265 utils/misc/guc.c:2275 +#: utils/misc/guc.c:2266 utils/misc/guc.c:2276 msgid "Zero selects a suitable default value." msgstr "Cero selecciona un valor por omisión razonable." -#: utils/misc/guc.c:2274 +#: utils/misc/guc.c:2275 msgid "GEQO: number of iterations of the algorithm." msgstr "GEQO: número de iteraciones del algoritmo." -#: utils/misc/guc.c:2286 +#: utils/misc/guc.c:2287 msgid "Sets the time to wait on a lock before checking for deadlock." msgstr "Define el tiempo a esperar un lock antes de buscar un deadlock." -#: utils/misc/guc.c:2297 +#: utils/misc/guc.c:2298 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data." msgstr "Define el máximo retardo antes de cancelar consultas cuando un servidor hot standby está procesando datos de WAL archivado." -#: utils/misc/guc.c:2308 +#: utils/misc/guc.c:2309 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data." msgstr "Define el máximo retardo antes de cancelar consultas cuando un servidor hot standby está procesando datos de WAL en flujo." -#: utils/misc/guc.c:2319 +#: utils/misc/guc.c:2320 msgid "Sets the minimum delay for applying changes during recovery." msgstr "Define el retraso mínimo para aplicar cambios durante la recuperación." -#: utils/misc/guc.c:2330 +#: utils/misc/guc.c:2331 msgid "Sets the maximum interval between WAL receiver status reports to the sending server." msgstr "Define el intervalo máximo entre reportes de estado que el receptor de WAL envía al servidor origen." -#: utils/misc/guc.c:2341 +#: utils/misc/guc.c:2342 msgid "Sets the maximum wait time to receive data from the sending server." msgstr "Define el máximo tiempo de espera para recibir datos desde el servidor origen." -#: utils/misc/guc.c:2352 +#: utils/misc/guc.c:2353 msgid "Sets the maximum number of concurrent connections." msgstr "Número máximo de conexiones concurrentes." -#: utils/misc/guc.c:2363 +#: utils/misc/guc.c:2364 msgid "Sets the number of connection slots reserved for superusers." msgstr "Número de conexiones reservadas para superusuarios." -#: utils/misc/guc.c:2373 +#: utils/misc/guc.c:2374 msgid "Amount of dynamic shared memory reserved at startup." msgstr "Cantidad de memoria compartida dinámica reservada al iniciar." -#: utils/misc/guc.c:2388 +#: utils/misc/guc.c:2389 msgid "Sets the number of shared memory buffers used by the server." msgstr "Número de búfers de memoria compartida usados por el servidor." -#: utils/misc/guc.c:2399 +#: utils/misc/guc.c:2400 msgid "Shows the size of the server's main shared memory area (rounded up to the nearest MB)." msgstr "Muestra el tamaño del área principal de memoria compartida del servidor (redondeado al número de MB más cercano)." -#: utils/misc/guc.c:2410 +#: utils/misc/guc.c:2411 msgid "Shows the number of huge pages needed for the main shared memory area." msgstr "Muestra la cantidad de “huge pages” necesarias para el área de memoria compartida principal." -#: utils/misc/guc.c:2411 +#: utils/misc/guc.c:2412 msgid "-1 indicates that the value could not be determined." msgstr "-1 indica que el valor no pudo ser determinado." -#: utils/misc/guc.c:2421 +#: utils/misc/guc.c:2422 msgid "Sets the maximum number of temporary buffers used by each session." msgstr "Número de búfers de memoria temporal usados por cada sesión." -#: utils/misc/guc.c:2432 +#: utils/misc/guc.c:2433 msgid "Sets the TCP port the server listens on." msgstr "Puerto TCP en el cual escuchará el servidor." -#: utils/misc/guc.c:2442 +#: utils/misc/guc.c:2443 msgid "Sets the access permissions of the Unix-domain socket." msgstr "Privilegios de acceso al socket Unix." -#: utils/misc/guc.c:2443 +#: utils/misc/guc.c:2444 msgid "Unix-domain sockets use the usual Unix file system permission set. The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Los sockets de dominio Unix usan la funcionalidad de permisos de archivos estándar de Unix. Se espera que el valor de esta opción sea una especificación numérica de modo, en la forma aceptada por las llamadas a sistema chmod y umask. Para usar el modo octal acostumbrado, comience el número con un 0 (cero)." -#: utils/misc/guc.c:2457 +#: utils/misc/guc.c:2458 msgid "Sets the file permissions for log files." msgstr "Define los privilegios para los archivos del registro del servidor." -#: utils/misc/guc.c:2458 +#: utils/misc/guc.c:2459 msgid "The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Se espera que el valor de esta opción sea una especificación numérica de modo, en la forma aceptada por las llamadas a sistema chmod y umask. Para usar el modo octal acostumbrado, comience el número con un 0 (cero)." -#: utils/misc/guc.c:2472 +#: utils/misc/guc.c:2473 msgid "Shows the mode of the data directory." msgstr "Muestra el modo del directorio de datos." -#: utils/misc/guc.c:2473 +#: utils/misc/guc.c:2474 msgid "The parameter value is a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "El valor del parámetro es una especificación numérica de modo, en la forma aceptada por las llamadas a sistema chmod y umask. (Para usar el modo octal acostumbrado, comience el número con un 0 (cero).)" -#: utils/misc/guc.c:2486 +#: utils/misc/guc.c:2487 msgid "Sets the maximum memory to be used for query workspaces." msgstr "Establece el límite de memoria que se usará para espacios de trabajo de consultas." -#: utils/misc/guc.c:2487 +#: utils/misc/guc.c:2488 msgid "This much memory can be used by each internal sort operation and hash table before switching to temporary disk files." msgstr "Esta es la cantidad máxima de memoria que se usará para operaciones internas de ordenamiento y tablas de hashing, antes de comenzar a usar archivos temporales en disco." -#: utils/misc/guc.c:2499 +#: utils/misc/guc.c:2500 msgid "Sets the maximum memory to be used for maintenance operations." msgstr "Establece el límite de memoria que se usará para operaciones de mantención." -#: utils/misc/guc.c:2500 +#: utils/misc/guc.c:2501 msgid "This includes operations such as VACUUM and CREATE INDEX." msgstr "Esto incluye operaciones como VACUUM y CREATE INDEX." -#: utils/misc/guc.c:2510 +#: utils/misc/guc.c:2511 msgid "Sets the maximum memory to be used for logical decoding." msgstr "Establece el límite de memoria que se usará para decodificación lógica." -#: utils/misc/guc.c:2511 +#: utils/misc/guc.c:2512 msgid "This much memory can be used by each internal reorder buffer before spilling to disk." msgstr "Esta es la cantidad máxima de memoria que puede ser usada para cada búfer interno de ordenamiento, antes de comenzar a usar disco." -#: utils/misc/guc.c:2527 +#: utils/misc/guc.c:2528 msgid "Sets the maximum stack depth, in kilobytes." msgstr "Establece el tamaño máximo del stack, en kilobytes." -#: utils/misc/guc.c:2538 +#: utils/misc/guc.c:2539 msgid "Limits the total size of all temporary files used by each process." msgstr "Limita el tamaño total de todos los archivos temporales usados en cada proceso." -#: utils/misc/guc.c:2539 +#: utils/misc/guc.c:2540 msgid "-1 means no limit." msgstr "-1 significa sin límite." -#: utils/misc/guc.c:2549 +#: utils/misc/guc.c:2550 msgid "Vacuum cost for a page found in the buffer cache." msgstr "Costo de Vacuum de una página encontrada en el buffer." -#: utils/misc/guc.c:2559 +#: utils/misc/guc.c:2560 msgid "Vacuum cost for a page not found in the buffer cache." msgstr "Costo de Vacuum de una página no encontrada en el cache." -#: utils/misc/guc.c:2569 +#: utils/misc/guc.c:2570 msgid "Vacuum cost for a page dirtied by vacuum." msgstr "Costo de Vacuum de una página ensuciada por vacuum." -#: utils/misc/guc.c:2579 +#: utils/misc/guc.c:2580 msgid "Vacuum cost amount available before napping." msgstr "Costo de Vacuum disponible antes de descansar." -#: utils/misc/guc.c:2589 +#: utils/misc/guc.c:2590 msgid "Vacuum cost amount available before napping, for autovacuum." msgstr "Costo de Vacuum disponible antes de descansar, para autovacuum." -#: utils/misc/guc.c:2599 +#: utils/misc/guc.c:2600 msgid "Sets the maximum number of simultaneously open files for each server process." msgstr "Define la cantidad máxima de archivos abiertos por cada subproceso." -#: utils/misc/guc.c:2612 +#: utils/misc/guc.c:2613 msgid "Sets the maximum number of simultaneously prepared transactions." msgstr "Define la cantidad máxima de transacciones preparadas simultáneas." -#: utils/misc/guc.c:2623 +#: utils/misc/guc.c:2624 msgid "Sets the minimum OID of tables for tracking locks." msgstr "Define el OID mínimo para hacer seguimiento de locks." -#: utils/misc/guc.c:2624 +#: utils/misc/guc.c:2625 msgid "Is used to avoid output on system tables." msgstr "Se usa para evitar salida excesiva por tablas de sistema." -#: utils/misc/guc.c:2633 +#: utils/misc/guc.c:2634 msgid "Sets the OID of the table with unconditionally lock tracing." msgstr "Define el OID de una tabla con trazado incondicional de locks." -#: utils/misc/guc.c:2645 +#: utils/misc/guc.c:2646 msgid "Sets the maximum allowed duration of any statement." msgstr "Define la duración máxima permitida de sentencias." -#: utils/misc/guc.c:2646 utils/misc/guc.c:2657 utils/misc/guc.c:2668 -#: utils/misc/guc.c:2679 +#: utils/misc/guc.c:2647 utils/misc/guc.c:2658 utils/misc/guc.c:2669 +#: utils/misc/guc.c:2680 msgid "A value of 0 turns off the timeout." msgstr "Un valor de 0 desactiva el máximo." -#: utils/misc/guc.c:2656 +#: utils/misc/guc.c:2657 msgid "Sets the maximum allowed duration of any wait for a lock." msgstr "Define la duración máxima permitida de cualquier espera por un lock." -#: utils/misc/guc.c:2667 +#: utils/misc/guc.c:2668 msgid "Sets the maximum allowed idle time between queries, when in a transaction." msgstr "Define el tiempo máximo permitido de inactividad entre consultas, cuando están dentro de una transacción." -#: utils/misc/guc.c:2678 +#: utils/misc/guc.c:2679 msgid "Sets the maximum allowed idle time between queries, when not in a transaction." msgstr "Define el tiempo máximo permitido de inactividad entre consultas, cuando no están dentro de una transacción." -#: utils/misc/guc.c:2689 +#: utils/misc/guc.c:2690 msgid "Minimum age at which VACUUM should freeze a table row." msgstr "Mínima edad a la cual VACUUM debería congelar (freeze) una fila de una tabla." -#: utils/misc/guc.c:2699 +#: utils/misc/guc.c:2700 msgid "Age at which VACUUM should scan whole table to freeze tuples." msgstr "Edad a la cual VACUUM debería recorrer una tabla completa para congelar (freeze) las filas." -#: utils/misc/guc.c:2709 +#: utils/misc/guc.c:2710 msgid "Minimum age at which VACUUM should freeze a MultiXactId in a table row." msgstr "Mínima edad a la cual VACUUM debería congelar (freeze) el multixact en una fila." -#: utils/misc/guc.c:2719 +#: utils/misc/guc.c:2720 msgid "Multixact age at which VACUUM should scan whole table to freeze tuples." msgstr "Edad de multixact a la cual VACUUM debería recorrer una tabla completa para congelar (freeze) las filas." -#: utils/misc/guc.c:2729 +#: utils/misc/guc.c:2730 msgid "Number of transactions by which VACUUM and HOT cleanup should be deferred, if any." msgstr "Número de transacciones por las cuales VACUUM y la limpieza HOT deberían postergarse." -#: utils/misc/guc.c:2738 +#: utils/misc/guc.c:2739 msgid "Age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Edad a la cual VACUUM debería activar el modo failsafe para evitar pérdida de servicio por reciclaje (wraparound)." -#: utils/misc/guc.c:2747 +#: utils/misc/guc.c:2748 msgid "Multixact age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Edad de multixact a la cual VACUUM debería activar el modo failsafe para evitar pérdida de servicio por reciclaje (wraparound)." -#: utils/misc/guc.c:2760 +#: utils/misc/guc.c:2761 msgid "Sets the maximum number of locks per transaction." msgstr "Cantidad máxima de candados (locks) por transacción." -#: utils/misc/guc.c:2761 +#: utils/misc/guc.c:2762 msgid "The shared lock table is sized on the assumption that at most max_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "El tamaño de la tabla compartida de candados se calcula usando la suposición de que a lo más max_locks_per_transaction * max_connections objetos necesitarán ser bloqueados simultáneamente." -#: utils/misc/guc.c:2772 +#: utils/misc/guc.c:2773 msgid "Sets the maximum number of predicate locks per transaction." msgstr "Cantidad máxima de candados (locks) de predicado por transacción." -#: utils/misc/guc.c:2773 +#: utils/misc/guc.c:2774 msgid "The shared predicate lock table is sized on the assumption that at most max_pred_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "El tamaño de la tabla compartida de candados se calcula usando la suposición de que a lo más max_pred_locks_per_transaction * max_connections objetos necesitarán ser bloqueados simultáneamente." -#: utils/misc/guc.c:2784 +#: utils/misc/guc.c:2785 msgid "Sets the maximum number of predicate-locked pages and tuples per relation." msgstr "Cantidad máxima de páginas y tuplas bloqueadas por predicado." -#: utils/misc/guc.c:2785 +#: utils/misc/guc.c:2786 msgid "If more than this total of pages and tuples in the same relation are locked by a connection, those locks are replaced by a relation-level lock." msgstr "Si más que este total de páginas y tuplas en la misma relación están bloqueadas por una conexión, esos locks son reemplazados por un lock a nivel de relación." -#: utils/misc/guc.c:2795 +#: utils/misc/guc.c:2796 msgid "Sets the maximum number of predicate-locked tuples per page." msgstr "Cantidad máxima de locks de predicado por página." -#: utils/misc/guc.c:2796 +#: utils/misc/guc.c:2797 msgid "If more than this number of tuples on the same page are locked by a connection, those locks are replaced by a page-level lock." msgstr "Si más que este número de tuplas de la misma página están bloqueadas por una conexión, esos locks son reemplazados por un lock a nivel de página." -#: utils/misc/guc.c:2806 +#: utils/misc/guc.c:2807 msgid "Sets the maximum allowed time to complete client authentication." msgstr "Define el tiempo máximo para completar proceso de autentificación." -#: utils/misc/guc.c:2818 +#: utils/misc/guc.c:2819 msgid "Sets the amount of time to wait before authentication on connection startup." msgstr "Define el tiempo máximo a esperar antes de la autentificación al establecer una conexión." -#: utils/misc/guc.c:2830 +#: utils/misc/guc.c:2831 msgid "Buffer size for reading ahead in the WAL during recovery." msgstr "Tamaño de búfer para lectura adelantada de WAL durante la recuperación." -#: utils/misc/guc.c:2831 +#: utils/misc/guc.c:2832 msgid "Maximum distance to read ahead in the WAL to prefetch referenced data blocks." msgstr "Máxima distancia que leer adelantado en el WAL para pre-cargar bloques de datos referenciados." -#: utils/misc/guc.c:2841 +#: utils/misc/guc.c:2842 msgid "Sets the size of WAL files held for standby servers." msgstr "Establece el tamaño de los archivos WAL retenidos para los servidores standby." -#: utils/misc/guc.c:2852 +#: utils/misc/guc.c:2853 msgid "Sets the minimum size to shrink the WAL to." msgstr "Define el tamaño mínimo al cual reducir el WAL." -#: utils/misc/guc.c:2864 +#: utils/misc/guc.c:2865 msgid "Sets the WAL size that triggers a checkpoint." msgstr "Define el tamaño de WAL que desencadena un checkpoint." -#: utils/misc/guc.c:2876 +#: utils/misc/guc.c:2877 msgid "Sets the maximum time between automatic WAL checkpoints." msgstr "Define el tiempo máximo entre puntos de control de WAL automáticos." -#: utils/misc/guc.c:2887 +#: utils/misc/guc.c:2888 msgid "Sets the maximum time before warning if checkpoints triggered by WAL volume happen too frequently." msgstr "Define el máximo tiempo antes de emitir un advertencia si los checkpoints iniciados a causa del volumen de WAL ocurren con demasiada frecuencia." -#: utils/misc/guc.c:2889 +#: utils/misc/guc.c:2890 msgid "Write a message to the server log if checkpoints caused by the filling of WAL segment files happen more frequently than this amount of time. Zero turns off the warning." msgstr "Escribe una advertencia al log del servidor si los checkpoints causados por el llenado de segmentos de WAL occur más frecuentemente que esta cantidad de tiempo. Cero inhabilita la advertencia." -#: utils/misc/guc.c:2902 utils/misc/guc.c:3120 utils/misc/guc.c:3168 +#: utils/misc/guc.c:2903 utils/misc/guc.c:3121 utils/misc/guc.c:3169 msgid "Number of pages after which previously performed writes are flushed to disk." msgstr "Número de páginas después del cual las escrituras previamente ejecutadas se sincronizan a disco." -#: utils/misc/guc.c:2913 +#: utils/misc/guc.c:2914 msgid "Sets the number of disk-page buffers in shared memory for WAL." msgstr "Búfers en memoria compartida para páginas de WAL." -#: utils/misc/guc.c:2924 +#: utils/misc/guc.c:2925 msgid "Time between WAL flushes performed in the WAL writer." msgstr "Tiempo entre sincronizaciones de WAL ejecutadas por el proceso escritor de WAL." -#: utils/misc/guc.c:2935 +#: utils/misc/guc.c:2936 msgid "Amount of WAL written out by WAL writer that triggers a flush." msgstr "Cantidad de WAL escrito por el proceso escritor de WAL que desencadena una sincronización (flush)." -#: utils/misc/guc.c:2946 +#: utils/misc/guc.c:2947 msgid "Minimum size of new file to fsync instead of writing WAL." msgstr "Tamaño mínimo del nuevo archivo para hacer fsync en lugar de escribir WAL." -#: utils/misc/guc.c:2957 +#: utils/misc/guc.c:2958 msgid "Sets the maximum number of simultaneously running WAL sender processes." msgstr "Define la cantidad máxima de procesos «WAL sender» simultáneos." -#: utils/misc/guc.c:2968 +#: utils/misc/guc.c:2969 msgid "Sets the maximum number of simultaneously defined replication slots." msgstr "Define la cantidad máxima de slots de replicación definidos simultáneamente." -#: utils/misc/guc.c:2978 +#: utils/misc/guc.c:2979 msgid "Sets the maximum WAL size that can be reserved by replication slots." msgstr "Define el tamaño máximo de WAL que puede ser reservado por slots de replicación." -#: utils/misc/guc.c:2979 +#: utils/misc/guc.c:2980 msgid "Replication slots will be marked as failed, and segments released for deletion or recycling, if this much space is occupied by WAL on disk." msgstr "Los slots de replicación serán invalidados, y los segmentos de WAL eliminados o reciclados, si se usa esta cantidad de espacio de disco en WAL." -#: utils/misc/guc.c:2991 +#: utils/misc/guc.c:2992 msgid "Sets the maximum time to wait for WAL replication." msgstr "Define el tiempo máximo a esperar la replicación de WAL." -#: utils/misc/guc.c:3002 +#: utils/misc/guc.c:3003 msgid "Sets the delay in microseconds between transaction commit and flushing WAL to disk." msgstr "Retardo en microsegundos entre completar una transacción y escribir WAL a disco." -#: utils/misc/guc.c:3014 +#: utils/misc/guc.c:3015 msgid "Sets the minimum number of concurrent open transactions required before performing commit_delay." msgstr "Cantidad mínima de transacciones concurrentemente abiertas para ejecutar commit_delay." -#: utils/misc/guc.c:3025 +#: utils/misc/guc.c:3026 msgid "Sets the number of digits displayed for floating-point values." msgstr "Ajustar el número de dígitos mostrados para valores de coma flotante." -#: utils/misc/guc.c:3026 +#: utils/misc/guc.c:3027 msgid "This affects real, double precision, and geometric data types. A zero or negative parameter value is added to the standard number of digits (FLT_DIG or DBL_DIG as appropriate). Any value greater than zero selects precise output mode." msgstr "Esto afecta los tipos real, de doble precisión, y geométricos. Un valor del parámetro cero o negativo se agrega a la cantidad estándar de dígitos (FLT_DIG o DBL_DIG, según sea apropiado). Cualquier valor mayor que cero selecciona el modo de salida preciso." -#: utils/misc/guc.c:3038 +#: utils/misc/guc.c:3039 msgid "Sets the minimum execution time above which a sample of statements will be logged. Sampling is determined by log_statement_sample_rate." msgstr "Establece el tiempo mínimo de ejecución a partir del cual se registra una muestra de la sentencia. El muestreo es determinado por log_statement_sample_rate." -#: utils/misc/guc.c:3041 +#: utils/misc/guc.c:3042 msgid "Zero logs a sample of all queries. -1 turns this feature off." msgstr "Cero registra una muestra de todas las consultas. -1 desactiva esta funcionalidad." -#: utils/misc/guc.c:3051 +#: utils/misc/guc.c:3052 msgid "Sets the minimum execution time above which all statements will be logged." msgstr "Establece el tiempo mínimo de ejecución a partir del cual se registran todas las sentencias." -#: utils/misc/guc.c:3053 +#: utils/misc/guc.c:3054 msgid "Zero prints all queries. -1 turns this feature off." msgstr "Cero imprime todas las consultas. -1 desactiva esta funcionalidad." -#: utils/misc/guc.c:3063 +#: utils/misc/guc.c:3064 msgid "Sets the minimum execution time above which autovacuum actions will be logged." msgstr "Tiempo mínimo de ejecución a partir del cual se registran las acciones de autovacuum." -#: utils/misc/guc.c:3065 +#: utils/misc/guc.c:3066 msgid "Zero prints all actions. -1 turns autovacuum logging off." msgstr "Cero registra todas las acciones. -1 desactiva el registro de autovacuum." -#: utils/misc/guc.c:3075 +#: utils/misc/guc.c:3076 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements." msgstr "Define el largo máximo en bytes de valores de parámetros «bind» enviados al log al registrar sentencias." -#: utils/misc/guc.c:3077 utils/misc/guc.c:3089 +#: utils/misc/guc.c:3078 utils/misc/guc.c:3090 msgid "-1 to print values in full." msgstr "-1 para mostrar los valores completos." -#: utils/misc/guc.c:3087 +#: utils/misc/guc.c:3088 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements, on error." msgstr "Define el largo máximo en bytes de valores de parámetros «bind» enviados al log, en caso de error." -#: utils/misc/guc.c:3099 +#: utils/misc/guc.c:3100 msgid "Background writer sleep time between rounds." msgstr "Tiempo de descanso entre rondas del background writer" -#: utils/misc/guc.c:3110 +#: utils/misc/guc.c:3111 msgid "Background writer maximum number of LRU pages to flush per round." msgstr "Número máximo de páginas LRU a escribir en cada ronda del background writer" -#: utils/misc/guc.c:3133 +#: utils/misc/guc.c:3134 msgid "Number of simultaneous requests that can be handled efficiently by the disk subsystem." msgstr "Cantidad máxima de peticiones simultáneas que pueden ser manejadas eficientemente por el sistema de disco." -#: utils/misc/guc.c:3151 +#: utils/misc/guc.c:3152 msgid "A variant of effective_io_concurrency that is used for maintenance work." msgstr "Una variante de effective_io_concurrency que se usa para tareas de mantención." -#: utils/misc/guc.c:3181 +#: utils/misc/guc.c:3182 msgid "Maximum number of concurrent worker processes." msgstr "Número máximo de procesos ayudantes concurrentes." -#: utils/misc/guc.c:3193 +#: utils/misc/guc.c:3194 msgid "Maximum number of logical replication worker processes." msgstr "Número máximo de procesos ayudantes de replicación lógica." -#: utils/misc/guc.c:3205 +#: utils/misc/guc.c:3206 msgid "Maximum number of table synchronization workers per subscription." msgstr "Número máximo de procesos ayudantes de sincronización por suscripción." -#: utils/misc/guc.c:3215 +#: utils/misc/guc.c:3216 msgid "Sets the amount of time to wait before forcing log file rotation." msgstr "Define el tiempo máximo a esperar antes de forzar el rotado de un archivo de log." -#: utils/misc/guc.c:3227 +#: utils/misc/guc.c:3228 msgid "Sets the maximum size a log file can reach before being rotated." msgstr "Define el tamaño máximo que puede alcanzar un archivo de log antes de ser rotado." -#: utils/misc/guc.c:3239 +#: utils/misc/guc.c:3240 msgid "Shows the maximum number of function arguments." msgstr "Muestra la cantidad máxima de argumentos de funciones." -#: utils/misc/guc.c:3250 +#: utils/misc/guc.c:3251 msgid "Shows the maximum number of index keys." msgstr "Muestra la cantidad máxima de claves de índices." -#: utils/misc/guc.c:3261 +#: utils/misc/guc.c:3262 msgid "Shows the maximum identifier length." msgstr "Muestra el largo máximo de identificadores." -#: utils/misc/guc.c:3272 +#: utils/misc/guc.c:3273 msgid "Shows the size of a disk block." msgstr "Muestra el tamaño de un bloque de disco." -#: utils/misc/guc.c:3283 +#: utils/misc/guc.c:3284 msgid "Shows the number of pages per disk file." msgstr "Muestra el número de páginas por archivo en disco." -#: utils/misc/guc.c:3294 +#: utils/misc/guc.c:3295 msgid "Shows the block size in the write ahead log." msgstr "Muestra el tamaño de bloque en el write-ahead log." -#: utils/misc/guc.c:3305 +#: utils/misc/guc.c:3306 msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgstr "Define el tiempo a esperar antes de reintentar obtener WAL después de un intento fallido." -#: utils/misc/guc.c:3317 +#: utils/misc/guc.c:3318 msgid "Shows the size of write ahead log segments." msgstr "Muestra el tamaño de los segmentos de WAL." -#: utils/misc/guc.c:3330 +#: utils/misc/guc.c:3331 msgid "Time to sleep between autovacuum runs." msgstr "Tiempo de descanso entre ejecuciones de autovacuum." -#: utils/misc/guc.c:3340 +#: utils/misc/guc.c:3341 msgid "Minimum number of tuple updates or deletes prior to vacuum." msgstr "Número mínimo de updates o deletes antes de ejecutar vacuum." -#: utils/misc/guc.c:3349 +#: utils/misc/guc.c:3350 msgid "Minimum number of tuple inserts prior to vacuum, or -1 to disable insert vacuums." msgstr "Número mínimo de inserciones de tuplas antes de ejecutar vacuum, o -1 para desactivar vacuums por inserciones." -#: utils/misc/guc.c:3358 +#: utils/misc/guc.c:3359 msgid "Minimum number of tuple inserts, updates, or deletes prior to analyze." msgstr "Número mínimo de inserciones, actualizaciones y eliminaciones de tuplas antes de ejecutar analyze." -#: utils/misc/guc.c:3368 +#: utils/misc/guc.c:3369 msgid "Age at which to autovacuum a table to prevent transaction ID wraparound." msgstr "Edad a la cual aplicar VACUUM automáticamente a una tabla para prevenir problemas por reciclaje de ID de transacción." -#: utils/misc/guc.c:3380 +#: utils/misc/guc.c:3381 msgid "Multixact age at which to autovacuum a table to prevent multixact wraparound." msgstr "Edad de multixact a la cual aplicar VACUUM automáticamente a una tabla para prevenir problemas por reciclaje de ID de multixacts." -#: utils/misc/guc.c:3390 +#: utils/misc/guc.c:3391 msgid "Sets the maximum number of simultaneously running autovacuum worker processes." msgstr "Define la cantidad máxima de procesos «autovacuum worker» simultáneos." -#: utils/misc/guc.c:3400 +#: utils/misc/guc.c:3401 msgid "Sets the maximum number of parallel processes per maintenance operation." msgstr "Cantidad máxima de procesos ayudantes paralelos por operación de mantención." -#: utils/misc/guc.c:3410 +#: utils/misc/guc.c:3411 msgid "Sets the maximum number of parallel processes per executor node." msgstr "Cantidad máxima de locks de predicado por nodo de ejecución." -#: utils/misc/guc.c:3421 +#: utils/misc/guc.c:3422 msgid "Sets the maximum number of parallel workers that can be active at one time." msgstr "Define la cantidad máxima de procesos ayudantes que pueden estar activos en un momento dado." -#: utils/misc/guc.c:3432 +#: utils/misc/guc.c:3433 msgid "Sets the maximum memory to be used by each autovacuum worker process." msgstr "Establece el límite de memoria que cada proceso «autovacuum worker» usará." -#: utils/misc/guc.c:3443 +#: utils/misc/guc.c:3444 msgid "Time before a snapshot is too old to read pages changed after the snapshot was taken." msgstr "Tiempo antes de que un snapshot sea demasiado antiguo para leer páginas después de que el snapshot fue tomado." -#: utils/misc/guc.c:3444 +#: utils/misc/guc.c:3445 msgid "A value of -1 disables this feature." msgstr "El valor -1 desactiva esta característica." -#: utils/misc/guc.c:3454 +#: utils/misc/guc.c:3455 msgid "Time between issuing TCP keepalives." msgstr "Tiempo entre cada emisión de TCP keepalive." -#: utils/misc/guc.c:3455 utils/misc/guc.c:3466 utils/misc/guc.c:3590 +#: utils/misc/guc.c:3456 utils/misc/guc.c:3467 utils/misc/guc.c:3591 msgid "A value of 0 uses the system default." msgstr "Un valor 0 usa el valor por omisión del sistema." -#: utils/misc/guc.c:3465 +#: utils/misc/guc.c:3466 msgid "Time between TCP keepalive retransmits." msgstr "Tiempo entre retransmisiones TCP keepalive." -#: utils/misc/guc.c:3476 +#: utils/misc/guc.c:3477 msgid "SSL renegotiation is no longer supported; this can only be 0." msgstr "La renegociación SSL ya no está soportada; esto sólo puede ser 0." -#: utils/misc/guc.c:3487 +#: utils/misc/guc.c:3488 msgid "Maximum number of TCP keepalive retransmits." msgstr "Cantidad máxima de retransmisiones TCP keepalive." -#: utils/misc/guc.c:3488 +#: utils/misc/guc.c:3489 msgid "Number of consecutive keepalive retransmits that can be lost before a connection is considered dead. A value of 0 uses the system default." msgstr "Número de retransmisiones consecutivas de keepalive que pueden ser perdidas antes que una conexión se considere muerta. Cero usa el valor por omisión del sistema." -#: utils/misc/guc.c:3499 +#: utils/misc/guc.c:3500 msgid "Sets the maximum allowed result for exact search by GIN." msgstr "Define el máximo de resultados permitidos por búsquedas exactas con GIN." -#: utils/misc/guc.c:3510 +#: utils/misc/guc.c:3511 msgid "Sets the planner's assumption about the total size of the data caches." msgstr "Define la suposición del optimizador sobre el tamaño total de los caches de datos." -#: utils/misc/guc.c:3511 +#: utils/misc/guc.c:3512 msgid "That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. This is measured in disk pages, which are normally 8 kB each." msgstr "Esto es, el tamaño total de caches (cache del kernel y búfers compartidos) usados por archivos de datos de PostgreSQL. Esto se mide en páginas de disco, que normalmente son de 8 kB cada una." -#: utils/misc/guc.c:3522 +#: utils/misc/guc.c:3523 msgid "Sets the minimum amount of table data for a parallel scan." msgstr "Define la cantidad mínima de datos en una tabla para un recorrido paralelo." -#: utils/misc/guc.c:3523 +#: utils/misc/guc.c:3524 msgid "If the planner estimates that it will read a number of table pages too small to reach this limit, a parallel scan will not be considered." msgstr "Si el planificador estima que leerá un número de páginas de tabla demasiado pequeñas para alcanzar este límite, no se considerará una búsqueda paralela." -#: utils/misc/guc.c:3533 +#: utils/misc/guc.c:3534 msgid "Sets the minimum amount of index data for a parallel scan." msgstr "Define la cantidad mínima de datos en un índice para un recorrido paralelo." -#: utils/misc/guc.c:3534 +#: utils/misc/guc.c:3535 msgid "If the planner estimates that it will read a number of index pages too small to reach this limit, a parallel scan will not be considered." msgstr "Si el planificador estima que leerá un número de páginas de índice demasiado pequeñas para alcanzar este límite, no se considerará una búsqueda paralela." -#: utils/misc/guc.c:3545 +#: utils/misc/guc.c:3546 msgid "Shows the server version as an integer." msgstr "Muestra la versión del servidor como un número entero." -#: utils/misc/guc.c:3556 +#: utils/misc/guc.c:3557 msgid "Log the use of temporary files larger than this number of kilobytes." msgstr "Registra el uso de archivos temporales que crezcan más allá de este número de kilobytes." -#: utils/misc/guc.c:3557 +#: utils/misc/guc.c:3558 msgid "Zero logs all files. The default is -1 (turning this feature off)." msgstr "Cero registra todos los archivos. El valor por omisión es -1 (lo cual desactiva el registro)." -#: utils/misc/guc.c:3567 +#: utils/misc/guc.c:3568 msgid "Sets the size reserved for pg_stat_activity.query, in bytes." msgstr "Tamaño reservado para pg_stat_activity.query, en bytes." -#: utils/misc/guc.c:3578 +#: utils/misc/guc.c:3579 msgid "Sets the maximum size of the pending list for GIN index." msgstr "Define el tamaño máximo de la lista de pendientes de un índice GIN." -#: utils/misc/guc.c:3589 +#: utils/misc/guc.c:3590 msgid "TCP user timeout." msgstr "Tiempo de expiración de TCP." -#: utils/misc/guc.c:3600 +#: utils/misc/guc.c:3601 msgid "The size of huge page that should be requested." msgstr "El tamaño de huge page que se debería solicitar." -#: utils/misc/guc.c:3611 +#: utils/misc/guc.c:3612 msgid "Aggressively flush system caches for debugging purposes." msgstr "Escribir cachés de sistema de forma agresiva para propósitos de depuración." -#: utils/misc/guc.c:3634 +#: utils/misc/guc.c:3635 msgid "Sets the time interval between checks for disconnection while running queries." msgstr "Establece el intervalo entre revisiones de desconexión mientras se ejecutan consultas." -#: utils/misc/guc.c:3645 +#: utils/misc/guc.c:3646 msgid "Time between progress updates for long-running startup operations." msgstr "Tiempo a esperar entre actualizaciones para operaciones largas durante el inicio." -#: utils/misc/guc.c:3647 +#: utils/misc/guc.c:3648 msgid "0 turns this feature off." msgstr "Cero desactiva esta funcionalidad." -#: utils/misc/guc.c:3666 +#: utils/misc/guc.c:3667 msgid "Sets the planner's estimate of the cost of a sequentially fetched disk page." msgstr "Estimación del costo de una página leída secuencialmente." -#: utils/misc/guc.c:3677 +#: utils/misc/guc.c:3678 msgid "Sets the planner's estimate of the cost of a nonsequentially fetched disk page." msgstr "Estimación del costo de una página leída no secuencialmente." -#: utils/misc/guc.c:3688 +#: utils/misc/guc.c:3689 msgid "Sets the planner's estimate of the cost of processing each tuple (row)." msgstr "Estimación del costo de procesar cada tupla (fila)." -#: utils/misc/guc.c:3699 +#: utils/misc/guc.c:3700 msgid "Sets the planner's estimate of the cost of processing each index entry during an index scan." msgstr "Estimación del costo de procesar cada fila de índice durante un recorrido de índice." -#: utils/misc/guc.c:3710 +#: utils/misc/guc.c:3711 msgid "Sets the planner's estimate of the cost of processing each operator or function call." msgstr "Estimación del costo de procesar cada operador o llamada a función." -#: utils/misc/guc.c:3721 +#: utils/misc/guc.c:3722 msgid "Sets the planner's estimate of the cost of passing each tuple (row) from worker to leader backend." msgstr "Estimación del costo de pasar cada tupla (fila) desde un proceso ayudante al proceso servidor principal." -#: utils/misc/guc.c:3732 +#: utils/misc/guc.c:3733 msgid "Sets the planner's estimate of the cost of starting up worker processes for parallel query." msgstr "Estimación del costo de lanzar procesos ayudantes para consultas en paralelo." -#: utils/misc/guc.c:3744 +#: utils/misc/guc.c:3745 msgid "Perform JIT compilation if query is more expensive." msgstr "Ejecutar compilación JIT si la consulta es más cara." -#: utils/misc/guc.c:3745 +#: utils/misc/guc.c:3746 msgid "-1 disables JIT compilation." msgstr "-1 inhabilita compilación JIT." -#: utils/misc/guc.c:3755 +#: utils/misc/guc.c:3756 msgid "Optimize JIT-compiled functions if query is more expensive." msgstr "Optimizar funciones compiladas en tiempo de ejecución (JIT) si la consulta es más cara." -#: utils/misc/guc.c:3756 +#: utils/misc/guc.c:3757 msgid "-1 disables optimization." msgstr "-1 inhabilita la optimización." -#: utils/misc/guc.c:3766 +#: utils/misc/guc.c:3767 msgid "Perform JIT inlining if query is more expensive." msgstr "Ejecutar «inlining» JIT si la consulta es más cara." -#: utils/misc/guc.c:3767 +#: utils/misc/guc.c:3768 msgid "-1 disables inlining." msgstr "-1 inhabilita el «inlining»." -#: utils/misc/guc.c:3777 +#: utils/misc/guc.c:3778 msgid "Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved." msgstr "Estimación de la fracción de filas de un cursor que serán extraídas." -#: utils/misc/guc.c:3789 +#: utils/misc/guc.c:3790 msgid "Sets the planner's estimate of the average size of a recursive query's working table." msgstr "Estimación del tamaño promedio de la tabla de trabajo de una consulta recursiva." -#: utils/misc/guc.c:3801 +#: utils/misc/guc.c:3802 msgid "GEQO: selective pressure within the population." msgstr "GEQO: presión selectiva dentro de la población." -#: utils/misc/guc.c:3812 +#: utils/misc/guc.c:3813 msgid "GEQO: seed for random path selection." msgstr "GEQO: semilla para la selección aleatoria de caminos." -#: utils/misc/guc.c:3823 +#: utils/misc/guc.c:3824 msgid "Multiple of work_mem to use for hash tables." msgstr "Múltiplo de work_mem para el uso de tablas de hash." -#: utils/misc/guc.c:3834 +#: utils/misc/guc.c:3835 msgid "Multiple of the average buffer usage to free per round." msgstr "Múltiplo del uso promedio de búfers que liberar en cada ronda." -#: utils/misc/guc.c:3844 +#: utils/misc/guc.c:3845 msgid "Sets the seed for random-number generation." msgstr "Semilla para la generación de números aleatorios." -#: utils/misc/guc.c:3855 +#: utils/misc/guc.c:3856 msgid "Vacuum cost delay in milliseconds." msgstr "Tiempo de descanso de vacuum en milisegundos." -#: utils/misc/guc.c:3866 +#: utils/misc/guc.c:3867 msgid "Vacuum cost delay in milliseconds, for autovacuum." msgstr "Tiempo de descanso de vacuum en milisegundos, para autovacuum." -#: utils/misc/guc.c:3877 +#: utils/misc/guc.c:3878 msgid "Number of tuple updates or deletes prior to vacuum as a fraction of reltuples." msgstr "Número de updates o deletes de tuplas antes de ejecutar un vacuum, como fracción de reltuples." -#: utils/misc/guc.c:3887 +#: utils/misc/guc.c:3888 msgid "Number of tuple inserts prior to vacuum as a fraction of reltuples." msgstr "Número de inserts de tuplas antes de ejecutar un vacuum, como fracción de reltuples." -#: utils/misc/guc.c:3897 +#: utils/misc/guc.c:3898 msgid "Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples." msgstr "Número mínimo de inserciones, actualizaciones y eliminaciones de tuplas antes de ejecutar analyze, como fracción de reltuples." -#: utils/misc/guc.c:3907 +#: utils/misc/guc.c:3908 msgid "Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval." msgstr "Tiempo utilizado en escribir páginas «sucias» durante los puntos de control, medido como fracción del intervalo del punto de control." -#: utils/misc/guc.c:3917 +#: utils/misc/guc.c:3918 msgid "Fraction of statements exceeding log_min_duration_sample to be logged." msgstr "Fracción de sentencias que duren más de log_min_duration_sample a ser registradas." -#: utils/misc/guc.c:3918 +#: utils/misc/guc.c:3919 msgid "Use a value between 0.0 (never log) and 1.0 (always log)." msgstr "Use un valor entre 0.0 (no registrar nunca) y 1.0 (registrar siempre)." -#: utils/misc/guc.c:3927 +#: utils/misc/guc.c:3928 msgid "Sets the fraction of transactions from which to log all statements." msgstr "Define la fracción de transacciones desde la cual registrar en el log todas las sentencias." -#: utils/misc/guc.c:3928 +#: utils/misc/guc.c:3929 msgid "Use a value between 0.0 (never log) and 1.0 (log all statements for all transactions)." msgstr "Use un valor entre 0.0 (nunca registrar) y 1.0 (registrar todas las sentencias de todas las transacciones)." -#: utils/misc/guc.c:3947 +#: utils/misc/guc.c:3948 msgid "Sets the shell command that will be called to archive a WAL file." msgstr "Orden de shell que se invocará para archivar un archivo WAL." -#: utils/misc/guc.c:3948 +#: utils/misc/guc.c:3949 msgid "This is used only if \"archive_library\" is not set." msgstr "Esto sólo se utiliza si «archive_library» no está definido." -#: utils/misc/guc.c:3957 +#: utils/misc/guc.c:3958 msgid "Sets the library that will be called to archive a WAL file." msgstr "Define la biblioteca que se invocará para archivar un archivo WAL." -#: utils/misc/guc.c:3958 +#: utils/misc/guc.c:3959 msgid "An empty string indicates that \"archive_command\" should be used." msgstr "Una cadena vacía indica que «archive_command» debería usarse." -#: utils/misc/guc.c:3967 +#: utils/misc/guc.c:3968 msgid "Sets the shell command that will be called to retrieve an archived WAL file." msgstr "Orden de shell que se invocará para recuperar un archivo WAL archivado." -#: utils/misc/guc.c:3977 +#: utils/misc/guc.c:3978 msgid "Sets the shell command that will be executed at every restart point." msgstr "Orden de shell que se invocará en cada «restart point»." -#: utils/misc/guc.c:3987 +#: utils/misc/guc.c:3988 msgid "Sets the shell command that will be executed once at the end of recovery." msgstr "Orden de shell que se invocará una vez al terminar la recuperación." -#: utils/misc/guc.c:3997 +#: utils/misc/guc.c:3998 msgid "Specifies the timeline to recover into." msgstr "Especifica la línea de tiempo a la cual recuperar." -#: utils/misc/guc.c:4007 +#: utils/misc/guc.c:4008 msgid "Set to \"immediate\" to end recovery as soon as a consistent state is reached." msgstr "Defina a «immediate» para terminar la recuperación en cuando se alcance el estado consistente." -#: utils/misc/guc.c:4016 +#: utils/misc/guc.c:4017 msgid "Sets the transaction ID up to which recovery will proceed." msgstr "Define el ID de transacción hasta el cual se ejecutará la recuperación." -#: utils/misc/guc.c:4025 +#: utils/misc/guc.c:4026 msgid "Sets the time stamp up to which recovery will proceed." msgstr "Define la marca de tiempo hasta la cual se ejecutará la recuperación." -#: utils/misc/guc.c:4034 +#: utils/misc/guc.c:4035 msgid "Sets the named restore point up to which recovery will proceed." msgstr "Define el nombre del punto de restauración hasta el cual se ejecutará la recuperación." -#: utils/misc/guc.c:4043 +#: utils/misc/guc.c:4044 msgid "Sets the LSN of the write-ahead log location up to which recovery will proceed." msgstr "Define el LSN de la ubicación de WAL hasta la cual se ejecutará la recuperación." -#: utils/misc/guc.c:4053 +#: utils/misc/guc.c:4054 msgid "Specifies a file name whose presence ends recovery in the standby." msgstr "Especifica un nombre de archivo cuya presencia termina la recuperación en el standby." -#: utils/misc/guc.c:4063 +#: utils/misc/guc.c:4064 msgid "Sets the connection string to be used to connect to the sending server." msgstr "Define la cadena de conexión que se usará para conectarse al servidor de origen." -#: utils/misc/guc.c:4074 +#: utils/misc/guc.c:4075 msgid "Sets the name of the replication slot to use on the sending server." msgstr "Define el nombre del slot de replicación a utilizar en el servidor de origen." -#: utils/misc/guc.c:4084 +#: utils/misc/guc.c:4085 msgid "Sets the client's character set encoding." msgstr "Codificación del juego de caracteres del cliente." -#: utils/misc/guc.c:4095 +#: utils/misc/guc.c:4096 msgid "Controls information prefixed to each log line." msgstr "Controla el prefijo que antecede cada línea registrada." -#: utils/misc/guc.c:4096 +#: utils/misc/guc.c:4097 msgid "If blank, no prefix is used." msgstr "si está en blanco, no se usa prefijo." -#: utils/misc/guc.c:4105 +#: utils/misc/guc.c:4106 msgid "Sets the time zone to use in log messages." msgstr "Define el huso horario usando en los mensajes registrados." -#: utils/misc/guc.c:4115 +#: utils/misc/guc.c:4116 msgid "Sets the display format for date and time values." msgstr "Formato de salida para valores de horas y fechas." -#: utils/misc/guc.c:4116 +#: utils/misc/guc.c:4117 msgid "Also controls interpretation of ambiguous date inputs." msgstr "También controla la interpretación de entradas ambiguas de fechas" -#: utils/misc/guc.c:4127 +#: utils/misc/guc.c:4128 msgid "Sets the default table access method for new tables." msgstr "Define el método de acceso a tablas por omisión para nuevas tablas." -#: utils/misc/guc.c:4138 +#: utils/misc/guc.c:4139 msgid "Sets the default tablespace to create tables and indexes in." msgstr "Define el tablespace en el cual crear tablas e índices." -#: utils/misc/guc.c:4139 +#: utils/misc/guc.c:4140 msgid "An empty string selects the database's default tablespace." msgstr "Una cadena vacía especifica el tablespace por omisión de la base de datos." -#: utils/misc/guc.c:4149 +#: utils/misc/guc.c:4150 msgid "Sets the tablespace(s) to use for temporary tables and sort files." msgstr "Define el/los tablespace/s en el cual crear tablas temporales y archivos de ordenamiento." -#: utils/misc/guc.c:4160 +#: utils/misc/guc.c:4161 msgid "Sets the path for dynamically loadable modules." msgstr "Ruta para módulos dinámicos." -#: utils/misc/guc.c:4161 +#: utils/misc/guc.c:4162 msgid "If a dynamically loadable module needs to be opened and the specified name does not have a directory component (i.e., the name does not contain a slash), the system will search this path for the specified file." msgstr "Si se necesita abrir un módulo dinámico y el nombre especificado no tiene un componente de directorio (es decir, no contiene un slash), el sistema buscará el archivo especificado en esta ruta." -#: utils/misc/guc.c:4174 +#: utils/misc/guc.c:4175 msgid "Sets the location of the Kerberos server key file." msgstr "Ubicación del archivo de llave del servidor Kerberos." -#: utils/misc/guc.c:4185 +#: utils/misc/guc.c:4186 msgid "Sets the Bonjour service name." msgstr "Nombre del servicio Bonjour." -#: utils/misc/guc.c:4197 +#: utils/misc/guc.c:4198 msgid "Shows the collation order locale." msgstr "Configuración regional de ordenamiento de cadenas (collation)." -#: utils/misc/guc.c:4208 +#: utils/misc/guc.c:4209 msgid "Shows the character classification and case conversion locale." msgstr "Configuración regional de clasificación de caracteres y conversión de mayúsculas." -#: utils/misc/guc.c:4219 +#: utils/misc/guc.c:4220 msgid "Sets the language in which messages are displayed." msgstr "Idioma en el que se despliegan los mensajes." -#: utils/misc/guc.c:4229 +#: utils/misc/guc.c:4230 msgid "Sets the locale for formatting monetary amounts." msgstr "Configuración regional para formatos de moneda." -#: utils/misc/guc.c:4239 +#: utils/misc/guc.c:4240 msgid "Sets the locale for formatting numbers." msgstr "Configuración regional para formatos de números." -#: utils/misc/guc.c:4249 +#: utils/misc/guc.c:4250 msgid "Sets the locale for formatting date and time values." msgstr "Configuración regional para formatos de horas y fechas." -#: utils/misc/guc.c:4259 +#: utils/misc/guc.c:4260 msgid "Lists shared libraries to preload into each backend." msgstr "Bibliotecas compartidas a precargar en cada proceso." -#: utils/misc/guc.c:4270 +#: utils/misc/guc.c:4271 msgid "Lists shared libraries to preload into server." msgstr "Bibliotecas compartidas a precargar en el servidor." -#: utils/misc/guc.c:4281 +#: utils/misc/guc.c:4282 msgid "Lists unprivileged shared libraries to preload into each backend." msgstr "Bibliotecas compartidas no privilegiadas a precargar en cada proceso." -#: utils/misc/guc.c:4292 +#: utils/misc/guc.c:4293 msgid "Sets the schema search order for names that are not schema-qualified." msgstr "Orden de búsqueda en schemas para nombres que no especifican schema." -#: utils/misc/guc.c:4304 +#: utils/misc/guc.c:4305 msgid "Shows the server (database) character set encoding." msgstr "Muestra la codificación de caracteres del servidor (base de datos)." -#: utils/misc/guc.c:4316 +#: utils/misc/guc.c:4317 msgid "Shows the server version." msgstr "Versión del servidor." -#: utils/misc/guc.c:4328 +#: utils/misc/guc.c:4329 msgid "Sets the current role." msgstr "Define el rol actual." -#: utils/misc/guc.c:4340 +#: utils/misc/guc.c:4341 msgid "Sets the session user name." msgstr "Define el nombre del usuario de sesión." -#: utils/misc/guc.c:4351 +#: utils/misc/guc.c:4352 msgid "Sets the destination for server log output." msgstr "Define el destino de la salida del registro del servidor." -#: utils/misc/guc.c:4352 +#: utils/misc/guc.c:4353 msgid "Valid values are combinations of \"stderr\", \"syslog\", \"csvlog\", \"jsonlog\", and \"eventlog\", depending on the platform." msgstr "Son aceptables combinaciones de «stderr», «syslog», «csvlog», «jsonlog» y «eventlog», dependendiendo de la plataforma." -#: utils/misc/guc.c:4363 +#: utils/misc/guc.c:4364 msgid "Sets the destination directory for log files." msgstr "Define el directorio de destino de los archivos del registro del servidor." -#: utils/misc/guc.c:4364 +#: utils/misc/guc.c:4365 msgid "Can be specified as relative to the data directory or as absolute path." msgstr "Puede ser una ruta relativa al directorio de datos o una ruta absoluta." -#: utils/misc/guc.c:4374 +#: utils/misc/guc.c:4375 msgid "Sets the file name pattern for log files." msgstr "Define el patrón para los nombres de archivo del registro del servidor." -#: utils/misc/guc.c:4385 +#: utils/misc/guc.c:4386 msgid "Sets the program name used to identify PostgreSQL messages in syslog." msgstr "Nombre de programa para identificar PostgreSQL en mensajes de syslog." -#: utils/misc/guc.c:4396 +#: utils/misc/guc.c:4397 msgid "Sets the application name used to identify PostgreSQL messages in the event log." msgstr "Nombre de programa para identificar PostgreSQL en mensajes del log de eventos." -#: utils/misc/guc.c:4407 +#: utils/misc/guc.c:4408 msgid "Sets the time zone for displaying and interpreting time stamps." msgstr "Huso horario para desplegar e interpretar valores de tiempo." -#: utils/misc/guc.c:4417 +#: utils/misc/guc.c:4418 msgid "Selects a file of time zone abbreviations." msgstr "Selecciona un archivo de abreviaciones de huso horario." -#: utils/misc/guc.c:4427 +#: utils/misc/guc.c:4428 msgid "Sets the owning group of the Unix-domain socket." msgstr "Grupo dueño del socket de dominio Unix." -#: utils/misc/guc.c:4428 +#: utils/misc/guc.c:4429 msgid "The owning user of the socket is always the user that starts the server." msgstr "El usuario dueño del socket siempre es el usuario que inicia el servidor." -#: utils/misc/guc.c:4438 +#: utils/misc/guc.c:4439 msgid "Sets the directories where Unix-domain sockets will be created." msgstr "Directorios donde se crearán los sockets de dominio Unix." -#: utils/misc/guc.c:4453 +#: utils/misc/guc.c:4454 msgid "Sets the host name or IP address(es) to listen to." msgstr "Define el nombre de anfitrión o dirección IP en la cual escuchar." -#: utils/misc/guc.c:4468 +#: utils/misc/guc.c:4469 msgid "Sets the server's data directory." msgstr "Define la ubicación del directorio de datos." -#: utils/misc/guc.c:4479 +#: utils/misc/guc.c:4480 msgid "Sets the server's main configuration file." msgstr "Define la ubicación del archivo principal de configuración del servidor." -#: utils/misc/guc.c:4490 +#: utils/misc/guc.c:4491 msgid "Sets the server's \"hba\" configuration file." msgstr "Define la ubicación del archivo de configuración «hba» del servidor." -#: utils/misc/guc.c:4501 +#: utils/misc/guc.c:4502 msgid "Sets the server's \"ident\" configuration file." msgstr "Define la ubicación del archivo de configuración «ident» del servidor." -#: utils/misc/guc.c:4512 +#: utils/misc/guc.c:4513 msgid "Writes the postmaster PID to the specified file." msgstr "Registra el PID de postmaster en el archivo especificado." -#: utils/misc/guc.c:4523 +#: utils/misc/guc.c:4524 msgid "Shows the name of the SSL library." msgstr "Muestra el nombre de la biblioteca SSL." -#: utils/misc/guc.c:4538 +#: utils/misc/guc.c:4539 msgid "Location of the SSL server certificate file." msgstr "Ubicación del archivo de certificado SSL del servidor." -#: utils/misc/guc.c:4548 +#: utils/misc/guc.c:4549 msgid "Location of the SSL server private key file." msgstr "Ubicación del archivo de la llave SSL privada del servidor." -#: utils/misc/guc.c:4558 +#: utils/misc/guc.c:4559 msgid "Location of the SSL certificate authority file." msgstr "Ubicación del archivo de autoridad certificadora SSL." -#: utils/misc/guc.c:4568 +#: utils/misc/guc.c:4569 msgid "Location of the SSL certificate revocation list file." msgstr "Ubicación del archivo de lista de revocación de certificados SSL" -#: utils/misc/guc.c:4578 +#: utils/misc/guc.c:4579 msgid "Location of the SSL certificate revocation list directory." msgstr "Ubicación del directorio de lista de revocación de certificados SSL" -#: utils/misc/guc.c:4588 +#: utils/misc/guc.c:4589 msgid "Number of synchronous standbys and list of names of potential synchronous ones." msgstr "Número de standbys sincrónicos y lista de nombres de los potenciales sincrónicos." -#: utils/misc/guc.c:4599 +#: utils/misc/guc.c:4600 msgid "Sets default text search configuration." msgstr "Define la configuración de búsqueda en texto por omisión." -#: utils/misc/guc.c:4609 +#: utils/misc/guc.c:4610 msgid "Sets the list of allowed SSL ciphers." msgstr "Define la lista de cifrados SSL permitidos." -#: utils/misc/guc.c:4624 +#: utils/misc/guc.c:4625 msgid "Sets the curve to use for ECDH." msgstr "Define la curva a usar para ECDH." -#: utils/misc/guc.c:4639 +#: utils/misc/guc.c:4640 msgid "Location of the SSL DH parameters file." msgstr "Ubicación del archivo de parámetros DH para SSL." -#: utils/misc/guc.c:4650 +#: utils/misc/guc.c:4651 msgid "Command to obtain passphrases for SSL." msgstr "Orden para obtener frases clave para SSL." -#: utils/misc/guc.c:4661 +#: utils/misc/guc.c:4662 msgid "Sets the application name to be reported in statistics and logs." msgstr "Define el nombre de aplicación a reportarse en estadísticas y logs." -#: utils/misc/guc.c:4672 +#: utils/misc/guc.c:4673 msgid "Sets the name of the cluster, which is included in the process title." msgstr "Define el nombre del clúster, el cual se incluye en el título de proceso." -#: utils/misc/guc.c:4683 +#: utils/misc/guc.c:4684 msgid "Sets the WAL resource managers for which WAL consistency checks are done." msgstr "Define los gestores de recursos WAL para los cuales hacer verificaciones de consistencia WAL." -#: utils/misc/guc.c:4684 +#: utils/misc/guc.c:4685 msgid "Full-page images will be logged for all data blocks and cross-checked against the results of WAL replay." msgstr "Se registrarán imágenes de página completa para todos los bloques de datos, y comparados con los resultados de la aplicación de WAL." -#: utils/misc/guc.c:4694 +#: utils/misc/guc.c:4695 msgid "JIT provider to use." msgstr "Proveedor JIT a usar." -#: utils/misc/guc.c:4705 +#: utils/misc/guc.c:4706 msgid "Log backtrace for errors in these functions." msgstr "Registrar el backtrace para errores que se produzcan en estas funciones." -#: utils/misc/guc.c:4725 +#: utils/misc/guc.c:4717 +msgid "Prohibits access to non-system relations of specified kinds." +msgstr "Prohibir acceso a relaciones que no son de sistema de tipos especificados." + +#: utils/misc/guc.c:4737 msgid "Sets whether \"\\'\" is allowed in string literals." msgstr "Define si «\\'» está permitido en literales de cadena." -#: utils/misc/guc.c:4735 +#: utils/misc/guc.c:4747 msgid "Sets the output format for bytea." msgstr "Formato de salida para bytea." -#: utils/misc/guc.c:4745 +#: utils/misc/guc.c:4757 msgid "Sets the message levels that are sent to the client." msgstr "Nivel de mensajes enviados al cliente." -#: utils/misc/guc.c:4746 utils/misc/guc.c:4832 utils/misc/guc.c:4843 -#: utils/misc/guc.c:4919 +#: utils/misc/guc.c:4758 utils/misc/guc.c:4844 utils/misc/guc.c:4855 +#: utils/misc/guc.c:4931 msgid "Each level includes all the levels that follow it. The later the level, the fewer messages are sent." msgstr "Cada nivel incluye todos los niveles que lo siguen. Mientras más posterior el nivel, menos mensajes se enviarán." -#: utils/misc/guc.c:4756 +#: utils/misc/guc.c:4768 msgid "Enables in-core computation of query identifiers." msgstr "Habilita el cálculo de identificadores de consulta." -#: utils/misc/guc.c:4766 +#: utils/misc/guc.c:4778 msgid "Enables the planner to use constraints to optimize queries." msgstr "Permitir el uso de restricciones para limitar los accesos a tablas." -#: utils/misc/guc.c:4767 +#: utils/misc/guc.c:4779 msgid "Table scans will be skipped if their constraints guarantee that no rows match the query." msgstr "Las tablas no serán recorridas si sus restricciones garantizan que ninguna fila coincidirá con la consulta." -#: utils/misc/guc.c:4778 +#: utils/misc/guc.c:4790 msgid "Sets the default compression method for compressible values." msgstr "Define el método de compresión por omisión para valores comprimibles." -#: utils/misc/guc.c:4789 +#: utils/misc/guc.c:4801 msgid "Sets the transaction isolation level of each new transaction." msgstr "Nivel de aislación (isolation level) de transacciones nuevas." -#: utils/misc/guc.c:4799 +#: utils/misc/guc.c:4811 msgid "Sets the current transaction's isolation level." msgstr "Define el nivel de aislación de la transacción en curso." -#: utils/misc/guc.c:4810 +#: utils/misc/guc.c:4822 msgid "Sets the display format for interval values." msgstr "Formato de salida para valores de intervalos." -#: utils/misc/guc.c:4821 +#: utils/misc/guc.c:4833 msgid "Sets the verbosity of logged messages." msgstr "Verbosidad de los mensajes registrados." -#: utils/misc/guc.c:4831 +#: utils/misc/guc.c:4843 msgid "Sets the message levels that are logged." msgstr "Nivel de mensajes registrados." -#: utils/misc/guc.c:4842 +#: utils/misc/guc.c:4854 msgid "Causes all statements generating error at or above this level to be logged." msgstr "Registrar sentencias que generan error de nivel superior o igual a éste." -#: utils/misc/guc.c:4853 +#: utils/misc/guc.c:4865 msgid "Sets the type of statements logged." msgstr "Define el tipo de sentencias que se registran." -#: utils/misc/guc.c:4863 +#: utils/misc/guc.c:4875 msgid "Sets the syslog \"facility\" to be used when syslog enabled." msgstr "«Facility» de syslog que se usará cuando syslog esté habilitado." -#: utils/misc/guc.c:4878 +#: utils/misc/guc.c:4890 msgid "Sets the session's behavior for triggers and rewrite rules." msgstr "Define el comportamiento de la sesión con respecto a disparadores y reglas de reescritura." -#: utils/misc/guc.c:4888 +#: utils/misc/guc.c:4900 msgid "Sets the current transaction's synchronization level." msgstr "Define el nivel de sincronización de la transacción en curso." -#: utils/misc/guc.c:4898 +#: utils/misc/guc.c:4910 msgid "Allows archiving of WAL files using archive_command." msgstr "Permite el archivado de WAL usando archive_command." -#: utils/misc/guc.c:4908 +#: utils/misc/guc.c:4920 msgid "Sets the action to perform upon reaching the recovery target." msgstr "Acción a ejecutar al alcanzar el destino de recuperación." -#: utils/misc/guc.c:4918 +#: utils/misc/guc.c:4930 msgid "Enables logging of recovery-related debugging information." msgstr "Recolectar información de depuración relacionada con la recuperación." -#: utils/misc/guc.c:4935 +#: utils/misc/guc.c:4947 msgid "Collects function-level statistics on database activity." msgstr "Recolectar estadísticas de actividad de funciones en la base de datos." -#: utils/misc/guc.c:4946 +#: utils/misc/guc.c:4958 msgid "Sets the consistency of accesses to statistics data." msgstr "Definir la consistencia de accesos a datos de estadísticas." -#: utils/misc/guc.c:4956 +#: utils/misc/guc.c:4968 msgid "Compresses full-page writes written in WAL file with specified method." msgstr "Comprime las páginas completas escritas a WAL (FPI) con el método especificado." -#: utils/misc/guc.c:4966 +#: utils/misc/guc.c:4978 msgid "Sets the level of information written to the WAL." msgstr "Establece el nivel de información escrita al WAL." -#: utils/misc/guc.c:4976 +#: utils/misc/guc.c:4988 msgid "Selects the dynamic shared memory implementation used." msgstr "Escoge la implementación de memoria compartida dinámica que se usará." -#: utils/misc/guc.c:4986 +#: utils/misc/guc.c:4998 msgid "Selects the shared memory implementation used for the main shared memory region." msgstr "Escoge la implementación de memoria compartida dinámica que se usará para la región principal de memoria compartida." -#: utils/misc/guc.c:4996 +#: utils/misc/guc.c:5008 msgid "Selects the method used for forcing WAL updates to disk." msgstr "Selecciona el método usado para forzar escritura de WAL a disco." -#: utils/misc/guc.c:5006 +#: utils/misc/guc.c:5018 msgid "Sets how binary values are to be encoded in XML." msgstr "Define cómo se codificarán los valores binarios en XML." -#: utils/misc/guc.c:5016 +#: utils/misc/guc.c:5028 msgid "Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments." msgstr "Define si los datos XML implícitos en operaciones de análisis y serialización serán considerados documentos o fragmentos de contenido." -#: utils/misc/guc.c:5027 +#: utils/misc/guc.c:5039 msgid "Use of huge pages on Linux or Windows." msgstr "Usar páginas grandes (huge) en Linux o Windows." -#: utils/misc/guc.c:5037 +#: utils/misc/guc.c:5049 msgid "Prefetch referenced blocks during recovery." msgstr "Pre-cargar bloques referenciados durante la recuperación." -#: utils/misc/guc.c:5038 +#: utils/misc/guc.c:5050 msgid "Look ahead in the WAL to find references to uncached data." msgstr "Busca adelantadamente en el WAL para encontrar referencias a datos que no están en cache." -#: utils/misc/guc.c:5047 +#: utils/misc/guc.c:5059 msgid "Forces use of parallel query facilities." msgstr "Obliga al uso de la funcionalidad de consultas paralelas." -#: utils/misc/guc.c:5048 +#: utils/misc/guc.c:5060 msgid "If possible, run query using a parallel worker and with parallel restrictions." msgstr "Si es posible, ejecuta cada consulta en un ayudante paralelo y con restricciones de paralelismo." -#: utils/misc/guc.c:5058 +#: utils/misc/guc.c:5070 msgid "Chooses the algorithm for encrypting passwords." msgstr "Escoge el algoritmo para cifrar contraseñas." -#: utils/misc/guc.c:5068 +#: utils/misc/guc.c:5080 msgid "Controls the planner's selection of custom or generic plan." msgstr "Controla la selección del optimizador de planes genéricos o «custom»." -#: utils/misc/guc.c:5069 +#: utils/misc/guc.c:5081 msgid "Prepared statements can have custom and generic plans, and the planner will attempt to choose which is better. This can be set to override the default behavior." msgstr "Las sentencias preparadas pueden tener planes genéricos y «custom», y el optimizador intentará escoger cuál es mejor. Esto puede usarse para controlar manualmente el comportamiento." -#: utils/misc/guc.c:5081 +#: utils/misc/guc.c:5093 msgid "Sets the minimum SSL/TLS protocol version to use." msgstr "Define la versión mínima del protocolo SSL/TLS a usar." -#: utils/misc/guc.c:5093 +#: utils/misc/guc.c:5105 msgid "Sets the maximum SSL/TLS protocol version to use." msgstr "Define la versión máxima del protocolo SSL/TLS a usar." -#: utils/misc/guc.c:5105 +#: utils/misc/guc.c:5117 msgid "Sets the method for synchronizing the data directory before crash recovery." msgstr "Establece el método para sincronizar el directorio de datos antes de la recuperación ante una caída." -#: utils/misc/guc.c:5680 utils/misc/guc.c:5696 +#: utils/misc/guc.c:5692 utils/misc/guc.c:5708 #, c-format msgid "invalid configuration parameter name \"%s\"" msgstr "nombre de parámetro de configuración «%s» no válido" -#: utils/misc/guc.c:5682 +#: utils/misc/guc.c:5694 #, c-format msgid "Custom parameter names must be two or more simple identifiers separated by dots." msgstr "Los nombres de los parámetros personalizados deben ser dos o más identificadores sencillos separados por puntos." -#: utils/misc/guc.c:5698 +#: utils/misc/guc.c:5710 #, c-format msgid "\"%s\" is a reserved prefix." msgstr "«%s» es un prefijo reservado." -#: utils/misc/guc.c:5712 +#: utils/misc/guc.c:5724 #, c-format msgid "unrecognized configuration parameter \"%s\"" msgstr "parámetro de configuración «%s» no reconocido" -#: utils/misc/guc.c:6104 +#: utils/misc/guc.c:6116 #, c-format msgid "%s: could not access directory \"%s\": %s\n" msgstr "%s: no se pudo acceder al directorio «%s»: %s\n" -#: utils/misc/guc.c:6109 +#: utils/misc/guc.c:6121 #, c-format msgid "Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n" msgstr "Ejecute initdb o pg_basebackup para inicializar un directorio de datos de PostgreSQL.\n" -#: utils/misc/guc.c:6129 +#: utils/misc/guc.c:6141 #, c-format msgid "" "%s does not know where to find the server configuration file.\n" @@ -28339,12 +28376,12 @@ msgstr "" "%s no sabe dónde encontrar el archivo de configuración del servidor.\n" "Debe especificar la opción --config-file o -D o definir la variable de ambiente PGDATA.\n" -#: utils/misc/guc.c:6148 +#: utils/misc/guc.c:6160 #, c-format msgid "%s: could not access the server configuration file \"%s\": %s\n" msgstr "%s: no se pudo acceder al archivo de configuración «%s»: %s\n" -#: utils/misc/guc.c:6174 +#: utils/misc/guc.c:6186 #, c-format msgid "" "%s does not know where to find the database system data.\n" @@ -28353,7 +28390,7 @@ msgstr "" "%s no sabe dónde encontrar los archivos de sistema de la base de datos.\n" "Esto puede especificarse como «data_directory» en «%s», o usando la opción -D, o a través de la variable de ambiente PGDATA.\n" -#: utils/misc/guc.c:6222 +#: utils/misc/guc.c:6234 #, c-format msgid "" "%s does not know where to find the \"hba\" configuration file.\n" @@ -28362,7 +28399,7 @@ msgstr "" "%s no sabe dónde encontrar el archivo de configuración «hba».\n" "Esto puede especificarse como «hba_file» en «%s», o usando la opción -D, o a través de la variable de ambiente PGDATA.\n" -#: utils/misc/guc.c:6245 +#: utils/misc/guc.c:6257 #, c-format msgid "" "%s does not know where to find the \"ident\" configuration file.\n" @@ -28371,194 +28408,199 @@ msgstr "" "%s no sabe dónde encontrar el archivo de configuración «ident».\n" "Esto puede especificarse como «ident_file» en «%s», o usando la opción -D, o a través de la variable de ambiente PGDATA.\n" -#: utils/misc/guc.c:7176 +#: utils/misc/guc.c:7188 msgid "Value exceeds integer range." msgstr "El valor excede el rango para enteros." -#: utils/misc/guc.c:7412 +#: utils/misc/guc.c:7424 #, c-format msgid "%d%s%s is outside the valid range for parameter \"%s\" (%d .. %d)" msgstr "%d%s%s está fuera del rango aceptable para el parámetro «%s» (%d .. %d)" -#: utils/misc/guc.c:7448 +#: utils/misc/guc.c:7460 #, c-format msgid "%g%s%s is outside the valid range for parameter \"%s\" (%g .. %g)" msgstr "%g%s%s está fuera del rango aceptable para el parámetro «%s» (%g .. %g)" -#: utils/misc/guc.c:7649 utils/misc/guc.c:9103 +#: utils/misc/guc.c:7670 #, c-format -msgid "cannot set parameters during a parallel operation" -msgstr "no se puede definir parámetros durante una operación paralela" +msgid "parameter \"%s\" cannot be set during a parallel operation" +msgstr "no se puede definir el parámetro «%s» durante una operación paralela" -#: utils/misc/guc.c:7668 utils/misc/guc.c:8927 +#: utils/misc/guc.c:7686 utils/misc/guc.c:8945 #, c-format msgid "parameter \"%s\" cannot be changed" msgstr "no se puede cambiar el parámetro «%s»" -#: utils/misc/guc.c:7691 utils/misc/guc.c:7915 utils/misc/guc.c:8013 -#: utils/misc/guc.c:8111 utils/misc/guc.c:8235 utils/misc/guc.c:8338 +#: utils/misc/guc.c:7709 utils/misc/guc.c:7933 utils/misc/guc.c:8031 +#: utils/misc/guc.c:8129 utils/misc/guc.c:8253 utils/misc/guc.c:8356 #: guc-file.l:353 #, c-format msgid "parameter \"%s\" cannot be changed without restarting the server" msgstr "el parámetro «%s» no se puede cambiar sin reiniciar el servidor" -#: utils/misc/guc.c:7701 +#: utils/misc/guc.c:7719 #, c-format msgid "parameter \"%s\" cannot be changed now" msgstr "el parámetro «%s» no se puede cambiar en este momento" -#: utils/misc/guc.c:7728 utils/misc/guc.c:7790 utils/misc/guc.c:8903 -#: utils/misc/guc.c:11811 +#: utils/misc/guc.c:7746 utils/misc/guc.c:7808 utils/misc/guc.c:8921 +#: utils/misc/guc.c:11829 #, c-format msgid "permission denied to set parameter \"%s\"" msgstr "se ha denegado el permiso para cambiar la opción «%s»" -#: utils/misc/guc.c:7770 +#: utils/misc/guc.c:7788 #, c-format msgid "parameter \"%s\" cannot be set after connection start" msgstr "el parámetro «%s» no se puede cambiar después de efectuar la conexión" -#: utils/misc/guc.c:7829 +#: utils/misc/guc.c:7847 #, c-format msgid "cannot set parameter \"%s\" within security-definer function" msgstr "no se puede definir el parámetro «%s» dentro una función security-definer" -#: utils/misc/guc.c:8482 utils/misc/guc.c:8529 utils/misc/guc.c:10016 +#: utils/misc/guc.c:8500 utils/misc/guc.c:8547 utils/misc/guc.c:10034 #, c-format msgid "must be superuser or have privileges of pg_read_all_settings to examine \"%s\"" msgstr "debe ser superusuario o tener privilegios de pg_read_all_settings para examinar «%s»" -#: utils/misc/guc.c:8613 +#: utils/misc/guc.c:8631 #, c-format msgid "SET %s takes only one argument" msgstr "SET %s lleva sólo un argumento" -#: utils/misc/guc.c:8893 +#: utils/misc/guc.c:8911 #, c-format msgid "permission denied to perform ALTER SYSTEM RESET ALL" msgstr "permiso denegado a ejecutar ALTER SYSTEM RESET ALL" -#: utils/misc/guc.c:8960 +#: utils/misc/guc.c:8978 #, c-format msgid "parameter value for ALTER SYSTEM must not contain a newline" msgstr "los valores de parámetros para ALTER SYSTEM no deben contener saltos de línea" -#: utils/misc/guc.c:9005 +#: utils/misc/guc.c:9023 #, c-format msgid "could not parse contents of file \"%s\"" msgstr "no se pudo interpretar el contenido del archivo «%s»" -#: utils/misc/guc.c:9179 +#: utils/misc/guc.c:9121 +#, c-format +msgid "cannot set parameters during a parallel operation" +msgstr "no se puede definir parámetros durante una operación paralela" + +#: utils/misc/guc.c:9197 #, c-format msgid "SET LOCAL TRANSACTION SNAPSHOT is not implemented" msgstr "SET LOCAL TRANSACTION SNAPSHOT no está implementado" -#: utils/misc/guc.c:9266 +#: utils/misc/guc.c:9284 #, c-format msgid "SET requires parameter name" msgstr "SET requiere el nombre de un parámetro" -#: utils/misc/guc.c:9399 +#: utils/misc/guc.c:9417 #, c-format msgid "attempt to redefine parameter \"%s\"" msgstr "intento de cambiar la opción «%s»" -#: utils/misc/guc.c:9726 +#: utils/misc/guc.c:9744 #, c-format msgid "invalid configuration parameter name \"%s\", removing it" msgstr "nombre de parámetro de configuración «%s» no válido, eliminándolo" -#: utils/misc/guc.c:9728 +#: utils/misc/guc.c:9746 #, c-format msgid "\"%s\" is now a reserved prefix." msgstr "«%s» es ahora un prefijo reservado." -#: utils/misc/guc.c:11251 +#: utils/misc/guc.c:11269 #, c-format msgid "while setting parameter \"%s\" to \"%s\"" msgstr "al establecer el parámetro «%s» a «%s»" -#: utils/misc/guc.c:11420 +#: utils/misc/guc.c:11438 #, c-format msgid "parameter \"%s\" could not be set" msgstr "no se pudo cambiar el parámetro «%s»" -#: utils/misc/guc.c:11512 +#: utils/misc/guc.c:11530 #, c-format msgid "could not parse setting for parameter \"%s\"" msgstr "no se pudo interpretar el valor de para el parámetro «%s»" -#: utils/misc/guc.c:11943 +#: utils/misc/guc.c:11961 #, c-format msgid "invalid value for parameter \"%s\": %g" msgstr "valor no válido para el parámetro «%s»: %g" -#: utils/misc/guc.c:12256 +#: utils/misc/guc.c:12274 #, c-format msgid "\"temp_buffers\" cannot be changed after any temporary tables have been accessed in the session." msgstr "«temp_buffers» no puede ser cambiado después de que cualquier tabla temporal haya sido accedida en la sesión." -#: utils/misc/guc.c:12268 +#: utils/misc/guc.c:12286 #, c-format msgid "Bonjour is not supported by this build" msgstr "Bonjour no está soportado en este servidor" -#: utils/misc/guc.c:12281 +#: utils/misc/guc.c:12299 #, c-format msgid "SSL is not supported by this build" msgstr "SSL no está soportado en este servidor" -#: utils/misc/guc.c:12293 +#: utils/misc/guc.c:12311 #, c-format msgid "Cannot enable parameter when \"log_statement_stats\" is true." msgstr "No se puede activar el parámetro cuando «log_statement_stats» está activo." -#: utils/misc/guc.c:12305 +#: utils/misc/guc.c:12323 #, c-format msgid "Cannot enable \"log_statement_stats\" when \"log_parser_stats\", \"log_planner_stats\", or \"log_executor_stats\" is true." msgstr "No se puede activar «log_statement_stats» cuando «log_parser_stats», «log_planner_stats» o «log_executor_stats» están activos." -#: utils/misc/guc.c:12535 +#: utils/misc/guc.c:12553 #, c-format msgid "effective_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "effective_io_concurrency debe ser 0 en plataformas que no tienen posix_fadvise()." -#: utils/misc/guc.c:12548 +#: utils/misc/guc.c:12566 #, c-format msgid "maintenance_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "maintenance_io_concurrency debe ser 0 en plataformas que no tienen posix_fadvise()." -#: utils/misc/guc.c:12562 +#: utils/misc/guc.c:12580 #, c-format msgid "huge_page_size must be 0 on this platform." msgstr "huge_page_size debe ser 0 en esta plataforma." -#: utils/misc/guc.c:12574 +#: utils/misc/guc.c:12592 #, c-format msgid "client_connection_check_interval must be set to 0 on this platform." msgstr "client_connection_check_interval debe ser 0 en esta plataforma." -#: utils/misc/guc.c:12686 +#: utils/misc/guc.c:12704 #, c-format msgid "invalid character" msgstr "carácter no válido" -#: utils/misc/guc.c:12746 +#: utils/misc/guc.c:12764 #, c-format msgid "recovery_target_timeline is not a valid number." msgstr "recovery_target_timeline no es un número válido." -#: utils/misc/guc.c:12786 +#: utils/misc/guc.c:12804 #, c-format msgid "multiple recovery targets specified" msgstr "múltiples valores de destino de recuperación especificados" -#: utils/misc/guc.c:12787 +#: utils/misc/guc.c:12805 #, c-format msgid "At most one of recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid may be set." msgstr "A lo más uno de recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid puede estar definido." -#: utils/misc/guc.c:12795 +#: utils/misc/guc.c:12813 #, c-format msgid "The only allowed value is \"immediate\"." msgstr "El único valor permitido es «immediate»." @@ -28712,7 +28754,7 @@ msgstr "no se puede eliminar el portal activo «%s»" msgid "cannot PREPARE a transaction that has created a cursor WITH HOLD" msgstr "no se puede hacer PREPARE de una transacción que ha creado un cursor WITH HOLD" -#: utils/mmgr/portalmem.c:1232 +#: utils/mmgr/portalmem.c:1235 #, c-format msgid "cannot perform transaction commands inside a cursor loop that is not read-only" msgstr "no se pueden ejecutar órdenes de transacción dentro de un bucle de cursor que no es de sólo lectura" @@ -28909,7 +28951,7 @@ msgstr "STDIN/STDOUT no están permitidos con PROGRAM" msgid "WHERE clause not allowed with COPY TO" msgstr "la cláusula WHERE no está permitida con COPY TO" -#: gram.y:3609 gram.y:3616 gram.y:12759 gram.y:12767 +#: gram.y:3609 gram.y:3616 gram.y:12766 gram.y:12774 #, c-format msgid "GLOBAL is deprecated in temporary table creation" msgstr "GLOBAL está obsoleto para la creación de tablas temporales" @@ -28924,283 +28966,283 @@ msgstr "para una columna generada, GENERATED ALWAYS debe ser especificado" msgid "a column list with %s is only supported for ON DELETE actions" msgstr "una lista de columnas con %s sólo está permitida para acciones ON DELETE" -#: gram.y:4974 +#: gram.y:4981 #, c-format msgid "CREATE EXTENSION ... FROM is no longer supported" msgstr "CREATE EXTENSION ... FROM ya no está soportado" -#: gram.y:5672 +#: gram.y:5679 #, c-format msgid "unrecognized row security option \"%s\"" msgstr "opción de seguridad de registro «%s» no reconocida" -#: gram.y:5673 +#: gram.y:5680 #, c-format msgid "Only PERMISSIVE or RESTRICTIVE policies are supported currently." msgstr "sólo se admiten actualmente políticas PERMISSIVE o RESTRICTIVE." -#: gram.y:5758 +#: gram.y:5765 #, c-format msgid "CREATE OR REPLACE CONSTRAINT TRIGGER is not supported" msgstr "CREATE OR REPLACE CONSTRAINT TRIGGER no está soportado" -#: gram.y:5795 +#: gram.y:5802 msgid "duplicate trigger events specified" msgstr "se han especificado eventos de disparador duplicados" -#: gram.y:5944 +#: gram.y:5951 #, c-format msgid "conflicting constraint properties" msgstr "propiedades de restricción contradictorias" -#: gram.y:6043 +#: gram.y:6050 #, c-format msgid "CREATE ASSERTION is not yet implemented" msgstr "CREATE ASSERTION no está implementado" -#: gram.y:6451 +#: gram.y:6458 #, c-format msgid "RECHECK is no longer required" msgstr "RECHECK ya no es requerido" -#: gram.y:6452 +#: gram.y:6459 #, c-format msgid "Update your data type." msgstr "Actualice su tipo de datos." -#: gram.y:8308 +#: gram.y:8315 #, c-format msgid "aggregates cannot have output arguments" msgstr "las funciones de agregación no pueden tener argumentos de salida" -#: gram.y:10993 gram.y:11012 +#: gram.y:11000 gram.y:11019 #, c-format msgid "WITH CHECK OPTION not supported on recursive views" msgstr "WITH CHECK OPTION no está soportado con vistas recursivas" -#: gram.y:12898 +#: gram.y:12905 #, c-format msgid "LIMIT #,# syntax is not supported" msgstr "la sintaxis LIMIT #,# no está soportada" -#: gram.y:12899 +#: gram.y:12906 #, c-format msgid "Use separate LIMIT and OFFSET clauses." msgstr "Use cláusulas LIMIT y OFFSET separadas." -#: gram.y:13252 gram.y:13278 +#: gram.y:13259 gram.y:13285 #, c-format msgid "VALUES in FROM must have an alias" msgstr "VALUES en FROM debe tener un alias" -#: gram.y:13253 gram.y:13279 +#: gram.y:13260 gram.y:13286 #, c-format msgid "For example, FROM (VALUES ...) [AS] foo." msgstr "Por ejemplo, FROM (VALUES ...) [AS] foo." -#: gram.y:13258 gram.y:13284 +#: gram.y:13265 gram.y:13291 #, c-format msgid "subquery in FROM must have an alias" msgstr "las subconsultas en FROM deben tener un alias" -#: gram.y:13259 gram.y:13285 +#: gram.y:13266 gram.y:13292 #, c-format msgid "For example, FROM (SELECT ...) [AS] foo." msgstr "Por ejemplo, FROM (SELECT ...) [AS] foo." -#: gram.y:13803 +#: gram.y:13810 #, c-format msgid "only one DEFAULT value is allowed" msgstr "Sólo se permite un valor DEFAULT" -#: gram.y:13812 +#: gram.y:13819 #, c-format msgid "only one PATH value per column is allowed" msgstr "sólo se permite un valor de PATH por columna" -#: gram.y:13821 +#: gram.y:13828 #, c-format msgid "conflicting or redundant NULL / NOT NULL declarations for column \"%s\"" msgstr "declaraciones NULL/NOT NULL en conflicto o redundantes para la columna «%s»" -#: gram.y:13830 +#: gram.y:13837 #, c-format msgid "unrecognized column option \"%s\"" msgstr "opción de columna «%s» no reconocida" -#: gram.y:14084 +#: gram.y:14091 #, c-format msgid "precision for type float must be at least 1 bit" msgstr "la precisión para el tipo float debe ser al menos 1 bit" -#: gram.y:14093 +#: gram.y:14100 #, c-format msgid "precision for type float must be less than 54 bits" msgstr "la precisión para el tipo float debe ser menor de 54 bits" -#: gram.y:14596 +#: gram.y:14603 #, c-format msgid "wrong number of parameters on left side of OVERLAPS expression" msgstr "el número de parámetros es incorrecto al lado izquierdo de la expresión OVERLAPS" -#: gram.y:14601 +#: gram.y:14608 #, c-format msgid "wrong number of parameters on right side of OVERLAPS expression" msgstr "el número de parámetros es incorrecto al lado derecho de la expresión OVERLAPS" -#: gram.y:14778 +#: gram.y:14785 #, c-format msgid "UNIQUE predicate is not yet implemented" msgstr "el predicado UNIQUE no está implementado" -#: gram.y:15156 +#: gram.y:15163 #, c-format msgid "cannot use multiple ORDER BY clauses with WITHIN GROUP" msgstr "no se permiten múltiples cláusulas ORDER BY con WITHIN GROUP" -#: gram.y:15161 +#: gram.y:15168 #, c-format msgid "cannot use DISTINCT with WITHIN GROUP" msgstr "no se permite DISTINCT con WITHIN GROUP" -#: gram.y:15166 +#: gram.y:15173 #, c-format msgid "cannot use VARIADIC with WITHIN GROUP" msgstr "no se permite VARIADIC con WITHIN GROUP" -#: gram.y:15703 gram.y:15727 +#: gram.y:15710 gram.y:15734 #, c-format msgid "frame start cannot be UNBOUNDED FOLLOWING" msgstr "el inicio de «frame» no puede ser UNBOUNDED FOLLOWING" -#: gram.y:15708 +#: gram.y:15715 #, c-format msgid "frame starting from following row cannot end with current row" msgstr "el «frame» que se inicia desde la siguiente fila no puede terminar en la fila actual" -#: gram.y:15732 +#: gram.y:15739 #, c-format msgid "frame end cannot be UNBOUNDED PRECEDING" msgstr "el fin de «frame» no puede ser UNBOUNDED PRECEDING" -#: gram.y:15738 +#: gram.y:15745 #, c-format msgid "frame starting from current row cannot have preceding rows" msgstr "el «frame» que se inicia desde la fila actual no puede tener filas precedentes" -#: gram.y:15745 +#: gram.y:15752 #, c-format msgid "frame starting from following row cannot have preceding rows" msgstr "el «frame» que se inicia desde la fila siguiente no puede tener filas precedentes" -#: gram.y:16370 +#: gram.y:16377 #, c-format msgid "type modifier cannot have parameter name" msgstr "el modificador de tipo no puede tener nombre de parámetro" -#: gram.y:16376 +#: gram.y:16383 #, c-format msgid "type modifier cannot have ORDER BY" msgstr "el modificador de tipo no puede tener ORDER BY" -#: gram.y:16444 gram.y:16451 gram.y:16458 +#: gram.y:16451 gram.y:16458 gram.y:16465 #, c-format msgid "%s cannot be used as a role name here" msgstr "%s no puede ser usado como nombre de rol aquí" -#: gram.y:16548 gram.y:17983 +#: gram.y:16555 gram.y:17990 #, c-format msgid "WITH TIES cannot be specified without ORDER BY clause" msgstr "la opción WITH TIES no puede ser especificada sin una cláusula ORDER BY" -#: gram.y:17662 gram.y:17849 +#: gram.y:17669 gram.y:17856 msgid "improper use of \"*\"" msgstr "uso impropio de «*»" -#: gram.y:17913 +#: gram.y:17920 #, c-format msgid "an ordered-set aggregate with a VARIADIC direct argument must have one VARIADIC aggregated argument of the same data type" msgstr "una agregación de conjunto-ordenado con un argumento directo VARIADIC debe tener al menos un argumento agregado VARIADIC del mismo tipo de datos" -#: gram.y:17950 +#: gram.y:17957 #, c-format msgid "multiple ORDER BY clauses not allowed" msgstr "no se permiten múltiples cláusulas ORDER BY" -#: gram.y:17961 +#: gram.y:17968 #, c-format msgid "multiple OFFSET clauses not allowed" msgstr "no se permiten múltiples cláusulas OFFSET" -#: gram.y:17970 +#: gram.y:17977 #, c-format msgid "multiple LIMIT clauses not allowed" msgstr "no se permiten múltiples cláusulas LIMIT" -#: gram.y:17979 +#: gram.y:17986 #, c-format msgid "multiple limit options not allowed" msgstr "no se permiten múltiples opciones limit" -#: gram.y:18006 +#: gram.y:18013 #, c-format msgid "multiple WITH clauses not allowed" msgstr "no se permiten múltiples cláusulas WITH" -#: gram.y:18199 +#: gram.y:18206 #, c-format msgid "OUT and INOUT arguments aren't allowed in TABLE functions" msgstr "los argumentos OUT e INOUT no están permitidos en funciones TABLE" -#: gram.y:18332 +#: gram.y:18339 #, c-format msgid "multiple COLLATE clauses not allowed" msgstr "no se permiten múltiples cláusulas COLLATE" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18370 gram.y:18383 +#: gram.y:18377 gram.y:18390 #, c-format msgid "%s constraints cannot be marked DEFERRABLE" msgstr "las restricciones %s no pueden ser marcadas DEFERRABLE" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18396 +#: gram.y:18403 #, c-format msgid "%s constraints cannot be marked NOT VALID" msgstr "las restricciones %s no pueden ser marcadas NOT VALID" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18409 +#: gram.y:18416 #, c-format msgid "%s constraints cannot be marked NO INHERIT" msgstr "las restricciones %s no pueden ser marcadas NO INHERIT" -#: gram.y:18433 +#: gram.y:18440 #, c-format msgid "invalid publication object list" msgstr "lista de objetos de publicación no válida" -#: gram.y:18434 +#: gram.y:18441 #, c-format msgid "One of TABLE or TABLES IN SCHEMA must be specified before a standalone table or schema name." msgstr "Uno de TABLE o TABLES IN SCHEMA debe ser especificado antes de un nombre de tabla o esquema." -#: gram.y:18450 +#: gram.y:18457 #, c-format msgid "invalid table name" msgstr "nombre de tabla no válido" -#: gram.y:18471 +#: gram.y:18478 #, c-format msgid "WHERE clause not allowed for schema" msgstr "la cláusula WHERE no está permitida para esquemas" -#: gram.y:18478 +#: gram.y:18485 #, c-format msgid "column specification not allowed for schema" msgstr "no se permiten especificaciones de columna para esquemas" -#: gram.y:18492 +#: gram.y:18499 #, c-format msgid "invalid schema name" msgstr "nombre de esquema no válido" diff --git a/src/backend/po/fr.po b/src/backend/po/fr.po index c2a77c6f94f..ee9c5a3fa74 100644 --- a/src/backend/po/fr.po +++ b/src/backend/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2024-05-02 07:16+0000\n" -"PO-Revision-Date: 2024-05-02 09:49+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.5\n" #: ../common/compression.c:130 ../common/compression.c:139 ../common/compression.c:148 #, c-format @@ -3353,7 +3353,7 @@ msgstr[1] "%lld erreurs de vérifications des sommes de contrôle au total" #: backup/basebackup.c:637 #, c-format msgid "checksum verification failure during base backup" -msgstr "échec de la véffication de somme de controle durant la sauvegarde de base" +msgstr "échec de la vérification de somme de contrôle durant la sauvegarde de base" #: backup/basebackup.c:706 backup/basebackup.c:715 backup/basebackup.c:726 backup/basebackup.c:743 backup/basebackup.c:752 backup/basebackup.c:763 backup/basebackup.c:780 backup/basebackup.c:789 backup/basebackup.c:801 backup/basebackup.c:825 backup/basebackup.c:839 backup/basebackup.c:850 backup/basebackup.c:861 backup/basebackup.c:874 #, c-format @@ -3762,7 +3762,7 @@ msgstr "type de droit « %s » non reconnu" #: catalog/aclchk.c:3527 #, c-format msgid "permission denied for aggregate %s" -msgstr "droit refusé pour l'aggrégat %s" +msgstr "droit refusé pour l'agrégat %s" #: catalog/aclchk.c:3530 #, c-format @@ -3932,7 +3932,7 @@ msgstr "droit refusé pour la vue %s" #: catalog/aclchk.c:3662 #, c-format msgid "must be owner of aggregate %s" -msgstr "doit être le propriétaire de l'aggrégat %s" +msgstr "doit être le propriétaire de l'agrégat %s" #: catalog/aclchk.c:3665 #, c-format @@ -4430,7 +4430,7 @@ msgstr "la contrainte « %s » de la relation « %s » existe déjà" #: catalog/heap.c:2582 #, c-format msgid "constraint \"%s\" conflicts with non-inherited constraint on relation \"%s\"" -msgstr "la contrainte « %s » entre en conflit avec la constrainte non héritée sur la relation « %s »" +msgstr "la contrainte « %s » entre en conflit avec la contrainte non héritée sur la relation « %s »" #: catalog/heap.c:2593 #, c-format @@ -5279,7 +5279,7 @@ msgstr "utilisation non sûre des pseudo-types « INTERNAL »" #: catalog/pg_aggregate.c:567 #, c-format msgid "moving-aggregate implementation returns type %s, but plain implementation returns type %s" -msgstr "l'impémentation d'aggrégat glissant retourne le type %s, mais l'implémentation standard retourne le type %s" +msgstr "l'implémentation d'agrégat glissant retourne le type %s, mais l'implémentation standard retourne le type %s" #: catalog/pg_aggregate.c:578 #, c-format @@ -5967,7 +5967,7 @@ msgstr "le type de données de transition de l'agrégat ne peut pas être %s" #: commands/aggregatecmds.c:362 #, c-format msgid "serialization functions may be specified only when the aggregate transition data type is %s" -msgstr "les fonctions de sérialisation ne peuvent être spécifiées que quand le type de données des transitions d'aggrégat est %s" +msgstr "les fonctions de sérialisation ne peuvent être spécifiées que quand le type de données des transitions d'agrégat est %s" #: commands/aggregatecmds.c:372 #, c-format @@ -6111,7 +6111,7 @@ msgstr "analyse « %s.%s »" #: commands/analyze.c:396 #, c-format msgid "column \"%s\" of relation \"%s\" appears more than once" -msgstr "la colonne « %s » de la relation « %s » apparait plus d'une fois" +msgstr "la colonne « %s » de la relation « %s » apparaît plus d'une fois" #: commands/analyze.c:787 #, c-format @@ -6321,7 +6321,7 @@ msgstr "l'encodage de la base de données courante n'est pas supporté avec ce f #: commands/collationcmds.c:334 #, c-format msgid "collation \"%s\" for encoding \"%s\" already exists in schema \"%s\"" -msgstr "le collationnament « %s » pour l'encodage « %s » existe déjà dans le schéma « %s »" +msgstr "le collationnement « %s » pour l'encodage « %s » existe déjà dans le schéma « %s »" #: commands/collationcmds.c:345 #, c-format @@ -8600,7 +8600,7 @@ msgstr "option de REINDEX « %s » non reconnue" #: commands/indexcmds.c:2839 #, c-format msgid "table \"%s\" has no indexes that can be reindexed concurrently" -msgstr "la table « %s » n'a pas d'index qui puisse être réindexé concuremment" +msgstr "la table « %s » n'a pas d'index qui puisse être réindexé concurremment" #: commands/indexcmds.c:2853 #, c-format @@ -8997,7 +8997,7 @@ msgstr "droit refusé : « %s » est un catalogue système" #: commands/policy.c:172 #, c-format msgid "ignoring specified roles other than PUBLIC" -msgstr "ingore les rôles spécifiés autre que PUBLIC" +msgstr "ignore les rôles spécifiés autre que PUBLIC" #: commands/policy.c:173 #, c-format @@ -12790,7 +12790,7 @@ msgstr "" #: executor/execIndexing.c:571 #, c-format msgid "ON CONFLICT does not support deferrable unique constraints/exclusion constraints as arbiters" -msgstr "ON CONFLICT ne supporte pas les contraintes uniques diferrables et les contraintes d'exclusion différables comme arbitres" +msgstr "ON CONFLICT ne supporte pas les contraintes uniques différables et les contraintes d'exclusion différables comme arbitres" #: executor/execIndexing.c:848 #, c-format @@ -14476,7 +14476,7 @@ msgstr "conversation PAM %d/\"%s\" non supportée" #: libpq/auth.c:2068 #, c-format msgid "could not create PAM authenticator: %s" -msgstr "n'a pas pu créer l'authenticateur PAM : %s" +msgstr "n'a pas pu créer le processus d'authentification PAM : %s" #: libpq/auth.c:2079 #, c-format @@ -14506,7 +14506,7 @@ msgstr "pam_acct_mgmt a échoué : %s" #: libpq/auth.c:2160 #, c-format msgid "could not release PAM authenticator: %s" -msgstr "n'a pas pu fermer l'authenticateur PAM : %s" +msgstr "n'a pas pu fermer le processus d'authentification PAM : %s" #: libpq/auth.c:2240 #, c-format @@ -15099,7 +15099,7 @@ msgstr "n'a pas pu convertir le NID %d en une structure ASN1_OBJECT" #: libpq/be-secure.c:209 libpq/be-secure.c:305 #, c-format msgid "terminating connection due to unexpected postmaster exit" -msgstr "arrêt des connexions suite à un arrêt inatendu du postmaster" +msgstr "arrêt des connexions suite à un arrêt inattendu du postmaster" #: libpq/crypt.c:49 #, c-format @@ -16565,7 +16565,7 @@ msgstr "les fonctions de regroupement ne sont pas autorisés dans %s" #: parser/parse_agg.c:700 #, c-format msgid "outer-level aggregate cannot contain a lower-level variable in its direct arguments" -msgstr "un aggrégat de niveau externe ne peut pas contenir de variable de niveau inférieur dans ses arguments directs" +msgstr "un agrégat de niveau externe ne peut pas contenir de variable de niveau inférieur dans ses arguments directs" #: parser/parse_agg.c:778 #, c-format @@ -16685,7 +16685,7 @@ msgstr "la colonne « %s.%s » doit apparaître dans la clause GROUP BY ou doit #: parser/parse_agg.c:1438 #, c-format msgid "Direct arguments of an ordered-set aggregate must use only grouped columns." -msgstr "Les arguments directs d'un agégat par ensemble ordonné doivent seulement utiliser des colonnes groupées." +msgstr "Les arguments directs d'un agrégat par ensemble ordonné doivent seulement utiliser des colonnes groupées." #: parser/parse_agg.c:1443 #, c-format @@ -17217,7 +17217,7 @@ msgstr "Convertissez la sortie du terme non récursif dans le bon type." #: parser/parse_cte.c:401 #, c-format msgid "recursive query \"%s\" column %d has collation \"%s\" in non-recursive term but collation \"%s\" overall" -msgstr "requête récursive « %s » : la colonne %d a le collationnement « %s » dans un terme non récursifet un collationnement « %s » global" +msgstr "requête récursive « %s » : la colonne %d a le collationnement « %s » dans un terme non récursif et un collationnement « %s » global" #: parser/parse_cte.c:405 #, c-format @@ -17377,7 +17377,7 @@ msgstr "ne peut pas utiliser une référence de colonne dans une expression de l #: parser/parse_expr.c:784 parser/parse_relation.c:818 parser/parse_relation.c:900 parser/parse_target.c:1248 #, c-format msgid "column reference \"%s\" is ambiguous" -msgstr "la référence à la colonne « %s » est ambigüe" +msgstr "la référence à la colonne « %s » est ambiguë" #: parser/parse_expr.c:840 parser/parse_param.c:110 parser/parse_param.c:142 parser/parse_param.c:208 parser/parse_param.c:307 #, c-format @@ -17556,7 +17556,7 @@ msgstr "" #: parser/parse_expr.c:2876 #, c-format msgid "There are multiple equally-plausible candidates." -msgstr "Il existe de nombreus candidats également plausibles." +msgstr "Il existe de nombreux candidats également plausibles." #: parser/parse_expr.c:2969 #, c-format @@ -17805,7 +17805,7 @@ msgstr "n'a pas pu trouver une procédure nommée « %s »" #: parser/parse_func.c:2421 #, c-format msgid "could not find an aggregate named \"%s\"" -msgstr "n'a pas pu trouver un aggrégat nommé « %s »" +msgstr "n'a pas pu trouver un agrégat nommé « %s »" #: parser/parse_func.c:2426 #, c-format @@ -18316,7 +18316,7 @@ msgstr "les colonnes générées ne sont pas supportées sur les partitions" #: parser/parse_utilcmd.c:761 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" -msgstr "plusieurs expressions de géénration sont spécifiées pour la colonne « %s » de la table « %s »" +msgstr "plusieurs expressions de génération sont spécifiées pour la colonne « %s » de la table « %s »" #: parser/parse_utilcmd.c:779 parser/parse_utilcmd.c:894 #, c-format @@ -18600,7 +18600,7 @@ msgstr "la valeur spécifiée ne peut pas être convertie vers le type %s pour l #: parser/parser.c:247 msgid "UESCAPE must be followed by a simple string literal" -msgstr "UESCAPE doit être suivi par une simple chaîne litérale" +msgstr "UESCAPE doit être suivi par une simple chaîne littérale" #: parser/parser.c:252 msgid "invalid Unicode escape character" @@ -19260,7 +19260,7 @@ msgstr "longueur invalide du paquet de démarrage" #: postmaster/postmaster.c:2114 #, c-format msgid "failed to send SSL negotiation response: %m" -msgstr "échec lors de l'envoi de la réponse de négotiation SSL : %m" +msgstr "échec lors de l'envoi de la réponse de négociation SSL : %m" #: postmaster/postmaster.c:2132 #, c-format @@ -20070,7 +20070,7 @@ msgstr "le plugin de sortie « %s » pour le décodage logique produit une sorti #: replication/logical/origin.c:189 #, c-format msgid "cannot query or manipulate replication origin when max_replication_slots = 0" -msgstr "ne peut pas lire ou manipuler une originie de réplication logique quand max_replication_slots = 0" +msgstr "ne peut pas lire ou manipuler une origine de réplication logique quand max_replication_slots = 0" #: replication/logical/origin.c:194 #, c-format @@ -21577,7 +21577,7 @@ msgstr "" #, c-format msgid "This has been seen to occur with buggy kernels; consider updating your system." msgstr "" -"Ceci s'est déjà vu avec des noyaux buggés ; pensez à mettre à jour votre\n" +"Ceci s'est déjà vu avec des noyaux bugués ; pensez à mettre à jour votre\n" "système." #: storage/buffer/bufmgr.c:1039 @@ -23223,7 +23223,7 @@ msgstr "la position initiale ne doit pas être NULL" #: utils/adt/arrayfuncs.c:272 utils/adt/arrayfuncs.c:286 utils/adt/arrayfuncs.c:297 utils/adt/arrayfuncs.c:319 utils/adt/arrayfuncs.c:334 utils/adt/arrayfuncs.c:348 utils/adt/arrayfuncs.c:354 utils/adt/arrayfuncs.c:361 utils/adt/arrayfuncs.c:494 utils/adt/arrayfuncs.c:510 utils/adt/arrayfuncs.c:521 utils/adt/arrayfuncs.c:536 utils/adt/arrayfuncs.c:557 utils/adt/arrayfuncs.c:587 utils/adt/arrayfuncs.c:594 utils/adt/arrayfuncs.c:602 utils/adt/arrayfuncs.c:636 utils/adt/arrayfuncs.c:659 utils/adt/arrayfuncs.c:679 utils/adt/arrayfuncs.c:791 utils/adt/arrayfuncs.c:800 utils/adt/arrayfuncs.c:830 utils/adt/arrayfuncs.c:845 utils/adt/arrayfuncs.c:898 #, c-format msgid "malformed array literal: \"%s\"" -msgstr "tableau litéral mal formé : « %s »" +msgstr "tableau littéral mal formé : « %s »" #: utils/adt/arrayfuncs.c:273 #, c-format @@ -24121,7 +24121,7 @@ msgstr "nombre de points invalide dans la valeur externe de « polygon »" #: utils/adt/geo_ops.c:4425 #, c-format msgid "open path cannot be converted to polygon" -msgstr "le chemin ouvert ne peut être converti en polygône" +msgstr "le chemin ouvert ne peut être converti en polygone" #: utils/adt/geo_ops.c:4675 #, c-format @@ -24131,7 +24131,7 @@ msgstr "diamètre invalide pour la valeur externe de « circle »" #: utils/adt/geo_ops.c:5196 #, c-format msgid "cannot convert circle with radius zero to polygon" -msgstr "ne peut pas convertir le cercle avec un diamètre zéro en un polygône" +msgstr "ne peut pas convertir le cercle avec un diamètre zéro en un polygone" #: utils/adt/geo_ops.c:5201 #, c-format @@ -24297,7 +24297,7 @@ msgstr "le type d'indice %s n'est pas supporté" #: utils/adt/jsonbsubs.c:104 #, c-format msgid "jsonb subscript must be coercible to only one type, integer or text." -msgstr "l'indice jsonb doit être onvertible en un seul type, entier ou texte." +msgstr "l'indice jsonb doit être convertible en un seul type, entier ou texte." #: utils/adt/jsonbsubs.c:118 #, c-format @@ -24763,7 +24763,7 @@ msgstr "la chaîne n'est pas un identifiant valide : « %s »" #: utils/adt/misc.c:734 #, c-format msgid "String has unclosed double quotes." -msgstr "La chaîne des guillements doubles non fermés." +msgstr "La chaîne des guillemets doubles non fermés." #: utils/adt/misc.c:748 #, c-format @@ -24794,7 +24794,7 @@ msgstr "Les formats de traces supportés sont « stderr » et « csvlog »." #: utils/adt/multirangetypes.c:149 utils/adt/multirangetypes.c:162 utils/adt/multirangetypes.c:191 utils/adt/multirangetypes.c:261 utils/adt/multirangetypes.c:285 #, c-format msgid "malformed multirange literal: \"%s\"" -msgstr "litéral multirange mal formé : « %s »" +msgstr "littéral multirange mal formé : « %s »" #: utils/adt/multirangetypes.c:151 #, c-format @@ -25197,7 +25197,7 @@ msgstr "le résultat de la différence d'intervalle de valeur ne sera pas contig #: utils/adt/rangetypes.c:1064 #, c-format msgid "result of range union would not be contiguous" -msgstr "le résultat de l'union d'intervalle pourrait ne pas être contigü" +msgstr "le résultat de l'union d'intervalle pourrait ne pas être contigu" #: utils/adt/rangetypes.c:1689 #, c-format @@ -25219,7 +25219,7 @@ msgstr "Les valeurs valides sont entre « [] », « [) », « (] » et « () ». #: utils/adt/rangetypes.c:2205 utils/adt/rangetypes.c:2222 utils/adt/rangetypes.c:2235 utils/adt/rangetypes.c:2253 utils/adt/rangetypes.c:2264 utils/adt/rangetypes.c:2308 utils/adt/rangetypes.c:2316 #, c-format msgid "malformed range literal: \"%s\"" -msgstr "intervalle litéral mal formé : « %s »" +msgstr "intervalle littéral mal formé : « %s »" #: utils/adt/rangetypes.c:2207 #, c-format @@ -25280,7 +25280,7 @@ msgstr "%s ne supporte pas l'option « global »" #: utils/adt/regexp.c:1298 #, c-format msgid "Use the regexp_matches function instead." -msgstr "Utilisez la foncction regexp_matches à la place." +msgstr "Utilisez la fonction regexp_matches à la place." #: utils/adt/regexp.c:1486 #, c-format @@ -25421,7 +25421,7 @@ msgstr "l'ajout de colonnes ayant un type composé n'est pas implémenté" #: utils/adt/rowtypes.c:157 utils/adt/rowtypes.c:186 utils/adt/rowtypes.c:209 utils/adt/rowtypes.c:217 utils/adt/rowtypes.c:269 utils/adt/rowtypes.c:277 #, c-format msgid "malformed record literal: \"%s\"" -msgstr "enregistrement litéral invalide : « %s »" +msgstr "enregistrement littéral invalide : « %s »" #: utils/adt/rowtypes.c:158 #, c-format @@ -27051,7 +27051,7 @@ msgstr "Valeurs par défaut pour les connexions client / Comportement des instru #: utils/misc/guc.c:842 msgid "Client Connection Defaults / Locale and Formatting" -msgstr "Valeurs par défaut pour les connexions client / Locale et formattage" +msgstr "Valeurs par défaut pour les connexions client / Locale et formatage" #: utils/misc/guc.c:844 msgid "Client Connection Defaults / Shared Library Preloading" @@ -27607,7 +27607,7 @@ msgstr "Sépare les messages envoyés à syslog par lignes afin de les faire ten #: utils/misc/guc.c:2070 msgid "Controls whether Gather and Gather Merge also run subplans." -msgstr "Controle si les nœuds Gather et Gather Merge doivent également exécuter des sous-plans." +msgstr "Contrôle si les nœuds Gather et Gather Merge doivent également exécuter des sous-plans." #: utils/misc/guc.c:2071 msgid "Should gather nodes also run subplans or just gather tuples?" @@ -27623,7 +27623,7 @@ msgstr "Enregistre les fonctions compilées avec JIT avec le debugger." #: utils/misc/guc.c:2109 msgid "Write out LLVM bitcode to facilitate JIT debugging." -msgstr "Écrire le bitcode LLVM pour faciliter de débugage JIT." +msgstr "Écrire le bitcode LLVM pour faciliter de débogage JIT." #: utils/misc/guc.c:2120 msgid "Allow JIT compilation of expressions." @@ -27649,7 +27649,7 @@ msgstr "Configure si un wal receiver doit créer un slot de réplication tempora #, fuzzy #| msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgid "Sets the amount of time to wait before forcing a switch to the next WAL file." -msgstr "Initalise le temps à attendre avant de retenter de récupérer un WAL après une tentative infructueuse." +msgstr "Initialise le temps à attendre avant de retenter de récupérer un WAL après une tentative infructueuse." #: utils/misc/guc.c:2197 #, fuzzy @@ -27692,7 +27692,7 @@ msgstr "" #: utils/misc/guc.c:2233 msgid "The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result." msgstr "" -"La planificateur applanira les constructions JOIN explicites dans des listes\n" +"La planificateur aplanira les constructions JOIN explicites dans des listes\n" "d'éléments FROM lorsqu'une liste d'au plus ce nombre d'éléments en\n" "résulterait." @@ -27997,7 +27997,7 @@ msgstr "" #| msgid "Set the amount of traffic to send and receive before renegotiating the encryption keys." msgid "Sets the amount of time to wait before authentication on connection startup." msgstr "" -"Configure la quantité de trafic à envoyer et recevoir avant la renégotiation\n" +"Configure la quantité de trafic à envoyer et recevoir avant la renégociation\n" "des clés d'enchiffrement." #: utils/misc/guc.c:2830 @@ -28210,7 +28210,7 @@ msgstr "Affiche la taille du bloc dans les journaux de transactions." #: utils/misc/guc.c:3305 msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." -msgstr "Initalise le temps à attendre avant de retenter de récupérer un WAL après une tentative infructueuse." +msgstr "Initialise le temps à attendre avant de retenter de récupérer un WAL après une tentative infructueuse." #: utils/misc/guc.c:3317 msgid "Shows the size of write ahead log segments." @@ -28605,7 +28605,7 @@ msgstr "Initialise le format d'affichage des valeurs date et time." #: utils/misc/guc.c:4116 msgid "Also controls interpretation of ambiguous date inputs." -msgstr "Contrôle aussi l'interprétation des dates ambigües en entrée." +msgstr "Contrôle aussi l'interprétation des dates ambiguës en entrée." #: utils/misc/guc.c:4127 msgid "Sets the default table access method for new tables." @@ -28638,7 +28638,7 @@ msgstr "" #: utils/misc/guc.c:4174 msgid "Sets the location of the Kerberos server key file." -msgstr "Initalise l'emplacement du fichier de la clé serveur pour Kerberos." +msgstr "Initialise l'emplacement du fichier de la clé serveur pour Kerberos." #: utils/misc/guc.c:4185 msgid "Sets the Bonjour service name." @@ -28658,7 +28658,7 @@ msgstr "Initialise le langage dans lequel les messages sont affichés." #: utils/misc/guc.c:4229 msgid "Sets the locale for formatting monetary amounts." -msgstr "Initialise la locale pour le formattage des montants monétaires." +msgstr "Initialise la locale pour le formatage des montants monétaires." #: utils/misc/guc.c:4239 msgid "Sets the locale for formatting numbers." @@ -29572,4031 +29572,3 @@ msgstr "une transaction sérialisable en écriture ne peut pas importer un snaps #, c-format msgid "cannot import a snapshot from a different database" msgstr "ne peut pas importer un snapshot à partir d'une base de données différente" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide, puis quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version, puis quitte\n" - -#~ msgid " -A 1|0 enable/disable run-time assert checking\n" -#~ msgstr "" -#~ " -A 1|0 active/désactive la vérification des limites (assert) à\n" -#~ " l'exécution\n" - -#~ msgid " -o OPTIONS pass \"OPTIONS\" to each server process (obsolete)\n" -#~ msgstr " -o OPTIONS passe « OPTIONS » à chaque processus serveur (obsolète)\n" - -#, c-format -#~ msgid " -x NUM internal use\n" -#~ msgstr " -x NUM utilisation interne\n" - -#~ msgid " in schema %s" -#~ msgstr " dans le schéma %s" - -#~ msgid "\"%s\" has now caught up with upstream server" -#~ msgstr "« %s » a maintenant rattrapé le serveur en amont" - -#, c-format -#~ msgid "\"%s\" is a system table" -#~ msgstr "« %s » est une table système" - -#~ msgid "\"%s\" is already an attribute of type %s" -#~ msgstr "« %s » est déjà un attribut du type %s" - -#~ msgid "\"%s\" is not a table or a view" -#~ msgstr "« %s » n'est pas une table ou une vue" - -#, c-format -#~ msgid "\"%s\" is not a table or foreign table" -#~ msgstr "« %s » n'est ni une table ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table or partitioned index" -#~ msgstr "« %s » n'est ni une table ni un index partitionné" - -#, c-format -#~ msgid "\"%s\" is not a table or view" -#~ msgstr "« %s » n'est ni une table ni une vue" - -#, c-format -#~ msgid "\"%s\" is not a table, composite type, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni un type composite, ni une table distante" - -#~ msgid "\"%s\" is not a table, materialized view, composite type, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni un type composite, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, materialized view, index, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni un index, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, materialized view, index, or partitioned index" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni un index, ni un index partitionné" - -#, c-format -#~ msgid "\"%s\" is not a table, materialized view, index, partitioned index, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni un index, ni un index partitionné, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, materialized view, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, materialized view, or index" -#~ msgstr "« %s » n'est ni une table, ni une vue matérialisée, ni un index" - -#, c-format -#~ msgid "\"%s\" is not a table, view, materialized view, composite type, index, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une vue matérialisée, ni un type composite, ni un index, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, view, materialized view, composite type, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une vue matérialisée, ni un type composite, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, view, materialized view, index, or TOAST table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une vue matérialisée, ni un index, ni une table TOAST" - -#, c-format -#~ msgid "\"%s\" is not a table, view, materialized view, or index" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une vue matérialisée, ni une séquence, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, view, materialized view, sequence, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une vue matérialisée, ni une séquence, ni une table distante" - -#~ msgid "\"%s\" is not a table, view, or composite type" -#~ msgstr "« %s » n'est pas une table, une vue ou un type composite" - -#, c-format -#~ msgid "\"%s\" is not a table, view, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is not a table, view, sequence, or foreign table" -#~ msgstr "« %s » n'est ni une table, ni une vue, ni une séquence, ni une table distante" - -#, c-format -#~ msgid "\"%s\" is of the wrong type" -#~ msgstr "« %s » est du mauvais type" - -#~ msgid "\"%s\": moved %u row versions, truncated %u to %u pages" -#~ msgstr "« %s » : %u versions de ligne déplacées, %u pages tronquées sur %u" - -#~ msgid "\"%s\": removed %.0f row versions in %u pages" -#~ msgstr "« %s » : %.0f versions de ligne supprimées dans %u pages" - -#~ msgid "\"%s\": removed %d dead item identifiers in %u pages" -#~ msgstr "« %s »: %d versions de lignes mortes supprimées dans %u blocs" - -#, c-format -#~ msgid "\"%s.%s\" is a foreign table." -#~ msgstr "« %s.%s » est une table distante." - -#~ msgid "\"%s.%s\" is a partitioned table." -#~ msgstr "« %s.%s » est une table partitionnée." - -#, c-format -#~ msgid "\"%s.%s\" is not a table." -#~ msgstr "« %s.%s » n'est pas une table." - -#~ msgid "\"TZ\"/\"tz\" not supported" -#~ msgstr "« TZ »/« tz » non supporté" - -#~ msgid "\"TZ\"/\"tz\"/\"OF\" format patterns are not supported in to_date" -#~ msgstr "les motifs de format « TZ »/« tz »/« OF » ne sont pas supportés dans to_date" - -#~ msgid "\"interval\" time zone \"%s\" not valid" -#~ msgstr "le fuseau horaire « %s » n'est pas valide pour le type « interval »" - -#, c-format -#~ msgid "\"time with time zone\" units \"%s\" not recognized" -#~ msgstr "unités « %s » non reconnues pour le type « time with time zone »" - -#, c-format -#~ msgid "\"time\" units \"%s\" not recognized" -#~ msgstr "unités « %s » non reconnues pour le type « time »" - -#~ msgid "\"timeout\" must not be negative or zero" -#~ msgstr "« timeout » ne doit pas être négatif ou nul" - -#~ msgid "" -#~ "%.0f dead row versions cannot be removed yet.\n" -#~ "Nonremovable row versions range from %lu to %lu bytes long.\n" -#~ "There were %.0f unused item pointers.\n" -#~ "Total free space (including removable row versions) is %.0f bytes.\n" -#~ "%u pages are or will become empty, including %u at the end of the table.\n" -#~ "%u pages containing %.0f free bytes are potential move destinations.\n" -#~ "%s." -#~ msgstr "" -#~ "%.0f versions de lignes mortes ne peuvent pas encore être supprimées.\n" -#~ "Les versions non supprimables de ligne vont de %lu to %lu octets.\n" -#~ "Il existait %.0f pointeurs d'éléments inutilisés.\n" -#~ "L'espace libre total (incluant les versions supprimables de ligne) est de\n" -#~ "%.0f octets.\n" -#~ "%u pages sont ou deviendront vides, ceci incluant %u pages en fin de la\n" -#~ "table.\n" -#~ "%u pages contenant %.0f octets libres sont des destinations de déplacement\n" -#~ "disponibles.\n" -#~ "%s." - -#~ msgid "" -#~ "%.0f dead row versions cannot be removed yet.\n" -#~ "There were %.0f unused item pointers.\n" -#~ "%u pages are entirely empty.\n" -#~ "%s." -#~ msgstr "" -#~ "%.0f versions de lignes mortes ne peuvent pas encore être supprimées.\n" -#~ "Il y avait %.0f pointeurs d'éléments inutilisés.\n" -#~ "%u pages sont entièrement vides.\n" -#~ "%s." - -#, c-format -#~ msgid "%lld dead row versions cannot be removed yet, oldest xmin: %u\n" -#~ msgstr "%lld versions de lignes mortes ne peuvent pas encore être supprimées, plus ancien xmin : %u\n" - -#~ msgid "%s \"%s\": return code %d" -#~ msgstr "%s « %s » : code de retour %d" - -#~ msgid "%s %s will create implicit index \"%s\" for table \"%s\"" -#~ msgstr "%s %s créera un index implicite « %s » pour la table « %s »" - -#~ msgid "%s (%x)" -#~ msgstr "%s (%x)" - -#~ msgid "%s (PID %d) was terminated by signal %d" -#~ msgstr "%s (PID %d) a été arrêté par le signal %d" - -#~ msgid "%s already exists in schema \"%s\"" -#~ msgstr "%s existe déjà dans le schéma « %s »" - -#~ msgid "%s cannot be executed from a function or multi-command string" -#~ msgstr "" -#~ "%s ne peut pas être exécuté à partir d'une fonction ou d'une chaîne\n" -#~ "contenant plusieurs commandes" - -#~ msgid "%s failed: %m" -#~ msgstr "échec de %s : %m" - -#~ msgid "%s in publication %s" -#~ msgstr "%s dans la publication %s" - -#~ msgid "%s is already in schema \"%s\"" -#~ msgstr "%s existe déjà dans le schéma « %s »" - -#~ msgid "%s will create implicit sequence \"%s\" for serial column \"%s.%s\"" -#~ msgstr "%s créera des séquences implicites « %s » pour la colonne serial « %s.%s »" - -#~ msgid "%s: WARNING: cannot create restricted tokens on this platform\n" -#~ msgstr "%s : ATTENTION : ne peut pas créer les jetons restreints sur cette plateforme\n" - -#~ msgid "%s: could not allocate SIDs: error code %lu\n" -#~ msgstr "%s : n'a pas pu allouer les SID : code d'erreur %lu\n" - -#~ msgid "%s: could not create restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu créer le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not determine user name (GetUserName failed)\n" -#~ msgstr "%s : n'a pas pu déterminer le nom de l'utilisateur (GetUserName a échoué)\n" - -#~ msgid "%s: could not dissociate from controlling TTY: %s\n" -#~ msgstr "%s : n'a pas pu se dissocier du TTY contrôlant : %s\n" - -#~ msgid "%s: could not fork background process: %s\n" -#~ msgstr "%s : n'a pas pu créer un processus fils : %s\n" - -#~ msgid "%s: could not fsync file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu synchroniser sur disque le fichier « %s » : %s\n" - -#~ msgid "%s: could not get exit code from subprocess: error code %lu\n" -#~ msgstr "%s : n'a pas pu récupérer le code de statut du sous-processus : code d'erreur %lu\n" - -#~ msgid "%s: could not open directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "%s: could not open file \"%s\" for reading: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » en lecture : %s\n" - -#~ msgid "%s: could not open file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "%s: could not open log file \"%s/%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le journal applicatif « %s/%s » : %s\n" - -#~ msgid "%s: could not open process token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ouvrir le jeton du processus : code d'erreur %lu\n" - -#~ msgid "%s: could not re-execute with restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ré-exécuter le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not read directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "%s: could not read file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le fichier « %s » : %s\n" - -#~ msgid "%s: could not read file \"%s\": read %d of %d\n" -#~ msgstr "%s : n'a pas pu lire le fichier « %s » : a lu %d sur %d\n" - -#~ msgid "%s: could not rename file \"%s\" to \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu renommer le fichier « %s » en « %s » : %s\n" - -#~ msgid "%s: could not start process for command \"%s\": error code %lu\n" -#~ msgstr "%s : n'a pas pu démarrer le processus pour la commande « %s » : code d'erreur %lu\n" - -#~ msgid "%s: could not stat file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu récupérer les informations sur le fichier « %s » : %s\n" - -#~ msgid "%s: invalid effective UID: %d\n" -#~ msgstr "%s : UID effectif invalide : %d\n" - -#~ msgid "%s: max_wal_senders must be less than max_connections\n" -#~ msgstr "%s : max_wal_senders doit être inférieur à max_connections\n" - -#~ msgid "%s: setsysinfo failed: %s\n" -#~ msgstr "%s : setsysinfo a échoué : %s\n" - -#~ msgid "%s: the number of buffers (-B) must be at least twice the number of allowed connections (-N) and at least 16\n" -#~ msgstr "" -#~ "%s : le nombre de tampons (-B) doit être au moins deux fois le nombre de\n" -#~ "connexions disponibles (-N) et au moins 16\n" - -#, c-format -#~ msgid "%u frozen page.\n" -#~ msgid_plural "%u frozen pages.\n" -#~ msgstr[0] "%u page gelée.\n" -#~ msgstr[1] "%u pages gelées.\n" - -#~ msgid "%u page is entirely empty.\n" -#~ msgid_plural "%u pages are entirely empty.\n" -#~ msgstr[0] "%u page est entièrement vide.\n" -#~ msgstr[1] "%u pages sont entièrement vides.\n" - -#~ msgid "%u page removed.\n" -#~ msgid_plural "%u pages removed.\n" -#~ msgstr[0] "%u bloc supprimé.\n" -#~ msgstr[1] "%u blocs supprimés.\n" - -#~ msgid "%u transaction needs to finish." -#~ msgid_plural "%u transactions need to finish." -#~ msgstr[0] "La transaction %u doit se terminer." -#~ msgstr[1] "Les transactions %u doivent se terminer." - -#~ msgid "=> is deprecated as an operator name" -#~ msgstr "=> est un nom d'opérateur obsolète" - -#~ msgid "@@ operator does not support lexeme weight restrictions in GIN index searches" -#~ msgstr "" -#~ "l'opérateur @@ ne supporte pas les restrictions de poids de lexeme dans les\n" -#~ "recherches par index GIN" - -#~ msgid "A function returning \"anyrange\" must have at least one \"anyrange\" argument." -#~ msgstr "Une fonction renvoyant « anyrange » doit avoir au moins un argument du type « anyrange »." - -#~ msgid "A function returning \"internal\" must have at least one \"internal\" argument." -#~ msgstr "Une fonction renvoyant « internal » doit avoir au moins un argument du type « internal »." - -#~ msgid "A function returning ANYRANGE must have at least one ANYRANGE argument." -#~ msgstr "" -#~ "Une fonction renvoyant ANYRANGE doit avoir au moins un argument du type\n" -#~ "ANYRANGE." - -#~ msgid "A function returning a polymorphic type must have at least one polymorphic argument." -#~ msgstr "Une fonction renvoyant un type polymorphique doit avoir au moins un argument de type polymorphique." - -#~ msgid "" -#~ "A total of %.0f page slots are in use (including overhead).\n" -#~ "%.0f page slots are required to track all free space.\n" -#~ "Current limits are: %d page slots, %d relations, using %.0f kB." -#~ msgstr "" -#~ "Un total de %.0f emplacements de pages est utilisé (ceci incluant la\n" -#~ "surcharge).\n" -#~ "%.0f emplacements de pages sont requis pour tracer tout l'espace libre.\n" -#~ "Les limites actuelles sont : %d emplacements de pages, %d relations,\n" -#~ "utilisant %.0f Ko." - -#~ msgid "ALTER TYPE USING is only supported on plain tables" -#~ msgstr "ALTER TYPE USING est seulement supportés sur les tables standards" - -#~ msgid "AM/PM hour must be between 1 and 12" -#~ msgstr "l'heure AM/PM doit être compris entre 1 et 12" - -#~ msgid "Adding partitioned tables to publications is not supported." -#~ msgstr "Ajouter des tables partitionnées à des publications n'est pas supporté." - -#~ msgid "All SQL statements that cause an error of the specified level or a higher level are logged." -#~ msgstr "" -#~ "Toutes les instructions SQL causant une erreur du niveau spécifié ou d'un\n" -#~ "niveau supérieur sont tracées." - -#~ msgid "An aggregate returning a polymorphic type must have at least one polymorphic argument." -#~ msgstr "Un agrégat renvoyant un type polymorphique doit avoir au moins un argument de type polymorphique." - -#~ msgid "An aggregate using a polymorphic transition type must have at least one polymorphic argument." -#~ msgstr "Un agrégat utilisant un type de transition polymorphique doit avoir au moins un argument polymorphique." - -#~ msgid "Anyone can use the client-side lo_export() provided by libpq." -#~ msgstr "Tout le monde peut utiliser lo_export(), fournie par libpq, du côté client." - -#~ msgid "Anyone can use the client-side lo_import() provided by libpq." -#~ msgstr "Tout le monde peut utiliser lo_import(), fourni par libpq, du côté client." - -#~ msgid "Apr" -#~ msgstr "Avr" - -#~ msgid "April" -#~ msgstr "Avril" - -#~ msgid "Aug" -#~ msgstr "Aoû" - -#~ msgid "August" -#~ msgstr "Août" - -#~ msgid "Automatic log file rotation will occur after N kilobytes." -#~ msgstr "La rotation automatique des journaux applicatifs s'effectuera après N kilooctets." - -#~ msgid "Automatic log file rotation will occur after N minutes." -#~ msgstr "La rotation automatique des journaux applicatifs s'effectuera toutes les N minutes." - -#~ msgid "Automatically adds missing table references to FROM clauses." -#~ msgstr "" -#~ "Ajoute automatiquement les références à la table manquant dans les clauses\n" -#~ "FROM." - -#, c-format -#~ msgid "BKPIMAGE_IS_COMPRESSED set, but block image length %u at %X/%X" -#~ msgstr "BKPIMAGE_IS_COMPRESSED configuré, mais la longueur de l'image du bloc est %u à %X/%X" - -#~ msgid "COPY BINARY is not supported to stdout or from stdin" -#~ msgstr "COPY BINARY n'est pas supporté vers stdout ou à partir de stdin" - -#, c-format -#~ msgid "COPY HEADER available only in CSV mode" -#~ msgstr "COPY HEADER disponible uniquement en mode CSV" - -#~ msgid "CREATE TABLE AS cannot specify INTO" -#~ msgstr "CREATE TABLE AS ne peut pas spécifier INTO" - -#~ msgid "CREATE TABLE AS specifies too many column names" -#~ msgstr "CREATE TABLE AS spécifie trop de noms de colonnes" - -#~ msgid "CREATE_REPLICATION_SLOT ... EXPORT_SNAPSHOT must not be called inside a transaction" -#~ msgstr "CREATE_REPLICATION_SLOT ... EXPORT_SNAPSHOT ne doit pas être appelé dans une sous-transaction" - -#~ msgid "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT must be called before any query" -#~ msgstr "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT doit être appelé avant toute requête" - -#~ msgid "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT must be called inside a transaction" -#~ msgstr "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT doit être appelé dans une transaction" - -#~ msgid "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT must not be called in a subtransaction" -#~ msgstr "CREATE_REPLICATION_SLOT ... USE_SNAPSHOT ne doit pas être appelé dans une sous-transaction" - -#~ msgid "Causes subtables to be included by default in various commands." -#~ msgstr "" -#~ "Fait que les sous-tables soient incluses par défaut dans les différentes\n" -#~ "commandes." - -#~ msgid "Certificates will not be checked against revocation list." -#~ msgstr "Les certificats ne seront pas vérifiés avec la liste de révocation." - -#~ msgid "Client Connection Defaults" -#~ msgstr "Valeurs par défaut pour les connexions client" - -#~ msgid "Close open transactions soon to avoid wraparound problems." -#~ msgstr "" -#~ "Fermez les transactions ouvertes rapidement pour éviter des problèmes de\n" -#~ "réinitialisation." - -#, c-format -#~ msgid "Compile with --with-gssapi to use GSSAPI connections." -#~ msgstr "Compilez avec --with-gssapi pour utiliser les connexions GSSAPI." - -#, c-format -#~ msgid "Compile with --with-ssl to use SSL connections." -#~ msgstr "Compilez avec --with-ssl pour utiliser les connexions SSL." - -#~ msgid "Connections and Authentication" -#~ msgstr "Connexions et authentification" - -#~ msgid "Consider increasing the configuration parameter \"checkpoint_segments\"." -#~ msgstr "Considèrez l'augmentation du paramètre « checkpoint_segments »." - -#~ msgid "Consider increasing the configuration parameter \"max_fsm_pages\" to a value over %.0f." -#~ msgstr "" -#~ "Considérez l'augmentation du paramètre de configuration « max_fsm_pages »\n" -#~ "à une valeur supérieure à %.0f." - -#~ msgid "Consider using VACUUM FULL on this relation or increasing the configuration parameter \"max_fsm_pages\"." -#~ msgstr "" -#~ "Pensez à compacter cette relation en utilisant VACUUM FULL ou à augmenter le\n" -#~ "paramètre de configuration « max_fsm_pages »." - -#~ msgid "Consider using pg_logfile_rotate(), which is part of core, instead." -#~ msgstr "Considérer l'utilisation de pg_logfile_rotate(), qui est présent par défaut, à la place." - -#~ msgid "Create new tables with OIDs by default." -#~ msgstr "Crée des nouvelles tables avec des OID par défaut." - -#~ msgid "DECLARE CURSOR cannot specify INTO" -#~ msgstr "DECLARE CURSOR ne peut pas spécifier INTO" - -#~ msgid "DEFAULT can only appear in a VALUES list within INSERT" -#~ msgstr "DEFAULT peut seulement apparaître dans la liste VALUES comprise dans un INSERT" - -#~ msgid "DISTINCT is supported only for single-argument aggregates" -#~ msgstr "DISTINCT est seulement supporté pour les agrégats à un seul argument" - -#~ msgid "DROP ASSERTION is not yet implemented" -#~ msgstr "DROP ASSERTION n'est pas encore implémenté" - -#~ msgid "Dec" -#~ msgstr "Déc" - -#~ msgid "December" -#~ msgstr "Décembre" - -#, c-format -#~ msgid "Did you mean to use pg_stop_backup('t')?" -#~ msgstr "Souhaitiez-vous utiliser pg_stop_backup('t') ?" - -#~ msgid "During recovery, allows connections and queries. During normal running, causes additional info to be written to WAL to enable hot standby mode on WAL standby nodes." -#~ msgstr "" -#~ "Lors de la restauration, autorise les connexions et les requêtes. Lors d'une\n" -#~ "exécution normale, fait que des informations supplémentaires sont écrites dans\n" -#~ "les journaux de transactions pour activer le mode Hot Standby sur les nœuds\n" -#~ "en attente." - -#~ msgid "EXPLAIN option BUFFERS requires ANALYZE" -#~ msgstr "l'option BUFFERS d'EXPLAIN nécessite ANALYZE" - -#~ msgid "Each SQL transaction has an isolation level, which can be either \"read uncommitted\", \"read committed\", \"repeatable read\", or \"serializable\"." -#~ msgstr "" -#~ "Chaque transaction SQL a un niveau d'isolation qui peut être soit « read\n" -#~ "uncommitted », soit « read committed », soit « repeatable read », soit\n" -#~ "« serializable »." - -#~ msgid "Each session can be either \"origin\", \"replica\", or \"local\"." -#~ msgstr "Chaque session peut valoir soit « origin » soit « replica » soit « local »." - -#~ msgid "Either set wal_level to \"replica\" on the master, or turn off hot_standby here." -#~ msgstr "" -#~ "Vous devez soit positionner le paramètre wal_level à « replica » sur le maître,\n" -#~ "soit désactiver le hot_standby ici." - -#~ msgid "Emit a warning for constructs that changed meaning since PostgreSQL 9.4." -#~ msgstr "Émet un avertissement pour les constructions dont la signification a changé depuis PostgreSQL 9.4." - -#~ msgid "Enables the planner's use of result caching." -#~ msgstr "Active l'utilisation du cache de résultat par le planificateur." - -#~ msgid "Enables warnings if checkpoint segments are filled more frequently than this." -#~ msgstr "" -#~ "Active des messages d'avertissement si les segments des points de\n" -#~ "vérifications se remplissent plus fréquemment que cette durée." - -#~ msgid "Encrypt passwords." -#~ msgstr "Chiffre les mots de passe." - -#~ msgid "EnumValuesCreate() can only set a single OID" -#~ msgstr "EnumValuesCreate() peut seulement initialiser un seul OID" - -#~ msgid "Expected 1 tuple with 3 fields, got %d tuples with %d fields." -#~ msgstr "Attendait 1 ligne avec 3 champs, a obtenu %d lignes avec %d champs." - -#~ msgid "Expected a transaction log switchpoint location." -#~ msgstr "Attendait un emplacement de bascule dans le journal de transactions." - -#~ msgid "FROM version must be different from installation target version \"%s\"" -#~ msgstr "la version FROM doit être différente de la version cible d'installation « %s »" - -#~ msgid "Feb" -#~ msgstr "Fév" - -#~ msgid "February" -#~ msgstr "Février" - -#, c-format -#~ msgid "File \"%s\" could not be renamed to \"%s\": %m." -#~ msgstr "Le fichier « %s » n'a pas pu être renommé en « %s » : %m." - -#, c-format -#~ msgid "File \"%s\" was renamed to \"%s\", but file \"%s\" could not be renamed to \"%s\": %m." -#~ msgstr "Le fichier « %s » a été renommé en « %s », mais le fichier « %s » n'a pas pu être renommé en « %s » : %m." - -#~ msgid "File must be owned by the database user and must have no permissions for \"group\" or \"other\"." -#~ msgstr "" -#~ "Le fichier doit appartenir au propriétaire de la base de données et ne doit\n" -#~ "pas avoir de droits pour un groupe ou pour les autres." - -#, c-format -#~ msgid "Files \"%s\" and \"%s\" were renamed to \"%s\" and \"%s\", respectively." -#~ msgstr "Les fichiers « %s » et « %s » sont renommés respectivement « %s » et « %s »." - -#~ msgid "For RAID arrays, this should be approximately the number of drive spindles in the array." -#~ msgstr "" -#~ "Pour les systèmes RAID, cela devrait être approximativement le nombre de\n" -#~ "têtes de lecture du système." - -#~ msgid "Forces a switch to the next WAL file if a new file has not been started within N seconds." -#~ msgstr "" -#~ "Force un changement du journal de transaction si un nouveau fichier n'a pas\n" -#~ "été créé depuis N secondes." - -#~ msgid "Found referenced table's DELETE trigger." -#~ msgstr "Trigger DELETE de la table référencée trouvé." - -#~ msgid "Found referenced table's UPDATE trigger." -#~ msgstr "Trigger UPDATE de la table référencée trouvé." - -#~ msgid "Found referencing table's trigger." -#~ msgstr "Trigger de la table référencée trouvé." - -#~ msgid "Fri" -#~ msgstr "Ven" - -#~ msgid "Friday" -#~ msgstr "Vendredi" - -#~ msgid "GIN index does not support search with void query" -#~ msgstr "les index GIN ne supportent pas la recherche avec des requêtes vides" - -#~ msgid "GSSAPI encryption can only be used with gss, trust, or reject authentication methods" -#~ msgstr "le chiffrement GSSAPI ne peut être utilisé qu'avec les méthodes d'authentification gss, trust ou reject" - -#~ msgid "GSSAPI encryption only supports gss, trust, or reject authentication" -#~ msgstr "le chiffrement GSSAPI ne supporte que l'authentification gss, trust ou reject" - -#~ msgid "GSSAPI is not supported in protocol version 2" -#~ msgstr "GSSAPI n'est pas supporté dans le protocole de version 2" - -#~ msgid "GSSAPI not implemented on this server" -#~ msgstr "GSSAPI non implémenté sur ce serveur" - -#, c-format -#~ msgid "IDENTIFY_SYSTEM has not been run before START_REPLICATION" -#~ msgstr "IDENTIFY_SYSTEM n'a pas été exécuté avant START_REPLICATION" - -#~ msgid "INOUT arguments are permitted." -#~ msgstr "les arguments INOUT ne sont pas autorisés." - -#~ msgid "INSERT ... SELECT cannot specify INTO" -#~ msgstr "INSERT ... SELECT ne peut pas avoir INTO" - -#~ msgid "IS DISTINCT FROM does not support set arguments" -#~ msgstr "IS DISTINCT FROM ne supporte pas les arguments d'ensemble" - -#~ msgid "Ident authentication is not supported on local connections on this platform" -#~ msgstr "l'authentification Ident n'est pas supportée sur les connexions locales sur cette plateforme" - -#~ msgid "Ident protocol identifies remote user as \"%s\"" -#~ msgstr "le protocole Ident identifie l'utilisateur distant comme « %s »" - -#~ msgid "If this parameter is set, the server will automatically run in the background and any controlling terminals are dissociated." -#~ msgstr "" -#~ "Si ce paramètre est initialisé, le serveur sera exécuté automatiquement en\n" -#~ "tâche de fond et les terminaux de contrôles seront dés-associés." - -#~ msgid "If you are not restoring from a backup, try removing the file \"%s/backup_label\"." -#~ msgstr "" -#~ "Si vous n'avez pas pu restaurer une sauvegarde, essayez de supprimer le\n" -#~ "fichier « %s/backup_label »." - -#~ msgid "If you're sure there are no old server processes still running, remove the shared memory block or just delete the file \"%s\"." -#~ msgstr "" -#~ "Si vous êtes sûr qu'aucun processus serveur n'est toujours en cours\n" -#~ "d'exécution, supprimez le bloc de mémoire partagée\n" -#~ "ou supprimez simplement le fichier « %s »." - -#, c-format -#~ msgid "If you're sure there is no backup in progress, remove file \"%s\" and try again." -#~ msgstr "" -#~ "Si vous êtes certain qu'aucune sauvegarde n'est en cours, supprimez le\n" -#~ "fichier « %s » et recommencez de nouveau." - -#~ msgid "Incomplete insertion detected during crash replay." -#~ msgstr "" -#~ "Insertion incomplète détectée lors de la ré-exécution des requêtes suite à\n" -#~ "l'arrêt brutal." - -#~ msgid "Incorrect XLOG_BLCKSZ in page header." -#~ msgstr "XLOG_BLCKSZ incorrect dans l'en-tête de page." - -#~ msgid "Incorrect XLOG_SEG_SIZE in page header." -#~ msgstr "XLOG_SEG_SIZE incorrecte dans l'en-tête de page." - -#~ msgid "Is another postmaster already running on port %d? If not, remove socket file \"%s\" and retry." -#~ msgstr "Un autre postmaster fonctionne-t'il déjà sur le port %d ?Sinon, supprimez le fichier socket « %s » et réessayez." - -#~ msgid "It looks like you need to initdb or install locale support." -#~ msgstr "" -#~ "Il semble que vous avez besoin d'exécuter initdb ou d'installer le support\n" -#~ "des locales." - -#~ msgid "It's just here so that we won't choke on SET AUTOCOMMIT TO ON from 7.3-vintage clients." -#~ msgstr "" -#~ "C'est ici uniquement pour ne pas avoir de problèmes avec le SET AUTOCOMMIT\n" -#~ "TO ON des clients 7.3." - -#~ msgid "JOIN/ON clause refers to \"%s\", which is not part of JOIN" -#~ msgstr "la clause JOIN/ON se réfère à « %s », qui ne fait pas partie du JOIN" - -#~ msgid "JSON does not support infinite date values." -#~ msgstr "JSON ne supporte pas les valeurs infinies de date." - -#~ msgid "JSON does not support infinite timestamp values." -#~ msgstr "JSON ne supporte pas les valeurs infinies de timestamp." - -#~ msgid "Jan" -#~ msgstr "Jan" - -#~ msgid "January" -#~ msgstr "Janvier" - -#~ msgid "Jul" -#~ msgstr "Juil" - -#~ msgid "July" -#~ msgstr "Juillet" - -#~ msgid "Jun" -#~ msgstr "Juin" - -#~ msgid "June" -#~ msgstr "Juin" - -#~ msgid "Kerberos 5 authentication failed for user \"%s\"" -#~ msgstr "authentification Kerberos 5 échouée pour l'utilisateur « %s »" - -#~ msgid "Kerberos 5 not implemented on this server" -#~ msgstr "Kerberos 5 non implémenté sur ce serveur" - -#~ msgid "Kerberos initialization returned error %d" -#~ msgstr "l'initialisation de Kerberos a retourné l'erreur %d" - -#~ msgid "Kerberos keytab resolving returned error %d" -#~ msgstr "la résolution keytab de Kerberos a renvoyé l'erreur %d" - -#~ msgid "Kerberos recvauth returned error %d" -#~ msgstr "recvauth de Kerberos a renvoyé l'erreur %d" - -#~ msgid "Kerberos sname_to_principal(\"%s\", \"%s\") returned error %d" -#~ msgstr "sname_to_principal(« %s », « %s ») de Kerberos a renvoyé l'erreur %d" - -#~ msgid "Kerberos unparse_name returned error %d" -#~ msgstr "unparse_name de Kerberos a renvoyé l'erreur %d" - -#~ msgid "LDAP search failed for filter \"%s\" on server \"%s\": user is not unique (%ld matches)" -#~ msgstr "" -#~ "échec de la recherche LDAP pour le filtre « %s » sur le serveur « %s » :\n" -#~ "utilisateur non unique (%ld correspondances)" - -#~ msgid "Lines should have the format parameter = 'value'." -#~ msgstr "Les lignes devraient avoir le format paramètre = 'valeur'" - -#~ msgid "Lower bound of dimension array must be one." -#~ msgstr "La limite inférieure du tableau doit valoir un." - -#~ msgid "Make sure the root.crt file is present and readable." -#~ msgstr "Assurez-vous que le certificat racine (root.crt) est présent et lisible" - -#~ msgid "Mar" -#~ msgstr "Mar" - -#~ msgid "March" -#~ msgstr "Mars" - -#~ msgid "May" -#~ msgstr "Mai" - -#~ msgid "Mon" -#~ msgstr "Lun" - -#~ msgid "Monday" -#~ msgstr "Lundi" - -#~ msgid "MultiXact member stop limit is now %u based on MultiXact %u" -#~ msgstr "La limite d'arrêt d'un membre MultiXact est maintenant %u, basée sur le MultiXact %u" - -#~ msgid "MultiXactId wrap limit is %u, limited by database with OID %u" -#~ msgstr "La limite de réinitialisation MultiXactId est %u, limité par la base de données d'OID %u" - -#~ msgid "Must be superuser to drop a foreign-data wrapper." -#~ msgstr "Doit être super-utilisateur pour supprimer un wrapper de données distantes." - -#~ msgid "NEW used in query that is not in a rule" -#~ msgstr "NEW utilisé dans une requête qui ne fait pas partie d'une règle" - -#~ msgid "NULLIF does not support set arguments" -#~ msgstr "NULLIF ne supporte pas les arguments d'ensemble" - -#~ msgid "No description available." -#~ msgstr "Aucune description disponible." - -#~ msgid "No rows were found in \"%s\"." -#~ msgstr "Aucune ligne trouvée dans « %s »." - -#~ msgid "Not enough memory for reassigning the prepared transaction's locks." -#~ msgstr "Pas assez de mémoire pour réaffecter les verrous des transactions préparées." - -#~ msgid "Not safe to send CSV data\n" -#~ msgstr "Envoi non sûr des données CSV\n" - -#~ msgid "Nov" -#~ msgstr "Nov" - -#~ msgid "November" -#~ msgstr "Novembre" - -#~ msgid "Number of tuple inserts prior to index cleanup as a fraction of reltuples." -#~ msgstr "" -#~ "Nombre de lignes insérées avant d'effectuer un nettoyage des index\n" -#~ "(fraction de reltuples)." - -#~ msgid "OLD used in query that is not in a rule" -#~ msgstr "OLD utilisé dans une requête qui n'est pas une règle" - -#~ msgid "ON CONFLICT clause is not supported with partitioned tables" -#~ msgstr "la clause ON CONFLICT n'est pas supporté avec les tables partitionnées" - -#~ msgid "ORIGIN message sent out of order" -#~ msgstr "message ORIGIN en désordre" - -#~ msgid "Oct" -#~ msgstr "Oct" - -#~ msgid "October" -#~ msgstr "Octobre" - -#, c-format -#~ msgid "Online backup started with pg_start_backup() must be ended with pg_stop_backup(), and all WAL up to that point must be available at recovery." -#~ msgstr "" -#~ "Une sauvegarde en ligne commencée avec pg_start_backup() doit se terminer avec\n" -#~ "pg_stop_backup() et tous les journaux de transactions générés entre les deux\n" -#~ "doivent être disponibles pour la restauration." - -#~ msgid "Only superusers can use untrusted languages." -#~ msgstr "" -#~ "Seuls les super-utilisateurs peuvent utiliser des langages qui ne sont pas\n" -#~ "de confiance." - -#, c-format -#~ msgid "Only tables can be added to publications." -#~ msgstr "Seules des tables peuvent être ajoutées aux publications." - -#~ msgid "PID %d is among the slowest backends." -#~ msgstr "Le PID %d est parmi les processus serveur les plus lents." - -#~ msgid "Partitioned tables cannot have BEFORE / FOR EACH ROW triggers." -#~ msgstr "Les tables partitionnées ne peuvent pas avoir de triggers BEFORE / FOR EACH ROW." - -#~ msgid "Perhaps out of disk space?" -#~ msgstr "Peut-être manquez-vous de place disque ?" - -#~ msgid "Permissions should be u=rw (0600) or less." -#~ msgstr "Les droits devraient être u=rwx (0600) ou inférieures." - -#~ msgid "Please report this to ." -#~ msgstr "Veuillez rapporter ceci à ." - -#~ msgid "Prints the execution plan to server log." -#~ msgstr "Affiche le plan d'exécution dans les journaux applicatifs du serveur." - -#~ msgid "Prints the parse tree after rewriting to server log." -#~ msgstr "Affiche l'arbre d'analyse après ré-écriture dans les journaux applicatifs du serveur." - -#~ msgid "Prints the parse tree to the server log." -#~ msgstr "Affiche l'arbre d'analyse dans les journaux applicatifs du serveur." - -#~ msgid "Proceeding with relation creation anyway." -#~ msgstr "Poursuit malgré tout la création de la relation." - -#~ msgid "Process %d waits for %s on %s." -#~ msgstr "Le processus %d attend %s sur %s." - -#~ msgid "Process Title" -#~ msgstr "Titre du processus" - -#~ msgid "Query Tuning" -#~ msgstr "Optimisation des requêtes" - -#~ msgid "RANGE FOLLOWING is only supported with UNBOUNDED" -#~ msgstr "RANGE FOLLOWING est seulement supporté avec UNBOUNDED" - -#~ msgid "RANGE PRECEDING is only supported with UNBOUNDED" -#~ msgstr "RANGE PRECEDING est seulement supporté avec UNBOUNDED" - -#~ msgid "REINDEX is not yet implemented for partitioned indexes" -#~ msgstr "REINDEX n'est pas implémenté pour des index partitionnés" - -#~ msgid "REINDEX of partitioned tables is not yet implemented, skipping \"%s\"" -#~ msgstr "REINDEX n'est pas encore implémenté pour les tables partitionnées, « %s » ignoré" - -#~ msgid "RETURNING cannot contain references to other relations" -#~ msgstr "RETURNING ne doit pas contenir de références à d'autres relations" - -#~ msgid "Rebuild the index with REINDEX." -#~ msgstr "Reconstruisez l'index avec REINDEX." - -#~ msgid "Replication" -#~ msgstr "Réplication" - -#~ msgid "Reporting and Logging" -#~ msgstr "Rapports et traces" - -#~ msgid "Resource Usage" -#~ msgstr "Utilisation des ressources" - -#, c-format -#~ msgid "Run pg_stop_backup() and try again." -#~ msgstr "Exécutez pg_stop_backup() et tentez de nouveau." - -#~ msgid "Runs the server silently." -#~ msgstr "Lance le serveur de manière silencieuse." - -#~ msgid "S:May" -#~ msgstr "S:Mai" - -#~ msgid "SASL authentication is not supported in protocol version 2" -#~ msgstr "l'authentification SASL n'est pas supportée dans le protocole de version 2" - -#~ msgid "SELECT FOR UPDATE/SHARE cannot be used with foreign table \"%s\"" -#~ msgstr "SELECT FOR UPDATE/SHARE ne peut pas être utilisé avec une table distante « %s »" - -#~ msgid "SELECT FOR UPDATE/SHARE is not allowed in subqueries" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas autorisé dans les sous-requêtes" - -#~ msgid "SELECT FOR UPDATE/SHARE is not allowed with GROUP BY clause" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas autorisé avec la clause GROUP BY" - -#~ msgid "SELECT FOR UPDATE/SHARE is not allowed with HAVING clause" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas autorisé avec la clause HAVING" - -#~ msgid "SELECT FOR UPDATE/SHARE is not allowed with aggregate functions" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas autorisé avec les fonctions d'agrégats" - -#~ msgid "SELECT FOR UPDATE/SHARE is not allowed with window functions" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas autorisé avec les fonctions window" - -#~ msgid "SELECT FOR UPDATE/SHARE is not supported for inheritance queries" -#~ msgstr "SELECT FOR UPDATE/SHARE n'est pas supporté pour les requêtes d'héritage" - -#~ msgid "SELECT FOR UPDATE/SHARE is not supported within a query with multiple result relations" -#~ msgstr "" -#~ "SELECT FOR UPDATE/SHARE n'est pas supporté dans une requête avec plusieurs\n" -#~ "relations" - -#~ msgid "SSL certificate revocation list file \"%s\" ignored" -#~ msgstr "liste de révocation des certificats SSL « %s » ignorée" - -#~ msgid "SSL certificate revocation list file \"%s\" not found, skipping: %s" -#~ msgstr "liste de révocation des certificats SSL « %s » introuvable, continue : %s" - -#~ msgid "SSL connection from \"%s\"" -#~ msgstr "connexion SSL de « %s »" - -#~ msgid "SSL failed to renegotiate connection before limit expired" -#~ msgstr "SSL a échoué à renégotier la connexion avant l'expiration du délai" - -#~ msgid "SSL failure during renegotiation start" -#~ msgstr "échec SSL au début de la re-négotiation" - -#~ msgid "SSL handshake failure on renegotiation, retrying" -#~ msgstr "échec du handshake SSL lors de la renégotiation, nouvelle tentative" - -#~ msgid "SSL library does not support certificate revocation lists." -#~ msgstr "La bibliothèque SSL ne supporte pas les listes de révocation des certificats." - -#~ msgid "SSL off" -#~ msgstr "SSL inactif" - -#~ msgid "SSL on" -#~ msgstr "SSL actif" - -#~ msgid "SSL renegotiation failure" -#~ msgstr "échec lors de la re-négotiation SSL" - -#~ msgid "SSPI error %x" -#~ msgstr "erreur SSPI : %x" - -#~ msgid "SSPI is not supported in protocol version 2" -#~ msgstr "SSPI n'est pas supporté dans le protocole de version 2" - -#~ msgid "Sat" -#~ msgstr "Sam" - -#~ msgid "Saturday" -#~ msgstr "Samedi" - -#~ msgid "Security-barrier views are not automatically updatable." -#~ msgstr "Les vues avec barrière de sécurité ne sont pas automatiquement disponibles en écriture." - -#~ msgid "See server log for details." -#~ msgstr "Voir les journaux applicatifs du serveur pour plus de détails." - -#~ msgid "Sep" -#~ msgstr "Sep" - -#~ msgid "September" -#~ msgstr "Septembre" - -#~ msgid "Server has FLOAT4PASSBYVAL = %s, library has %s." -#~ msgstr "Le serveur a FLOAT4PASSBYVAL = %s, la bibliothèque a %s." - -#~ msgid "Set dynamic_shared_memory_type to a value other than \"none\"." -#~ msgstr "Configurez dynamic_shared_memory_type à une valeur autre que « none »." - -#~ msgid "Sets immediate fsync at commit." -#~ msgstr "Configure un fsync immédiat lors du commit." - -#~ msgid "Sets realm to match Kerberos and GSSAPI users against." -#~ msgstr "" -#~ "Indique le royaume pour l'authentification des utilisateurs via Kerberos et\n" -#~ "GSSAPI." - -#~ msgid "Sets the hostname of the Kerberos server." -#~ msgstr "Initalise le nom d'hôte du serveur Kerberos." - -#~ msgid "Sets the language used in DO statement if LANGUAGE is not specified." -#~ msgstr "" -#~ "Configure le langage utilisé dans une instruction DO si la clause LANGUAGE n'est\n" -#~ "pas spécifiée." - -#~ msgid "Sets the list of known custom variable classes." -#~ msgstr "Initialise la liste des classes variables personnalisées connues." - -#~ msgid "Sets the maximum distance in log segments between automatic WAL checkpoints." -#~ msgstr "" -#~ "Initialise la distance maximale dans les journaux de transaction entre chaque\n" -#~ "point de vérification (checkpoints) des journaux." - -#~ msgid "Sets the maximum number of tables and indexes for which free space is tracked." -#~ msgstr "" -#~ "Initialise le nombre maximum de tables et index pour lesquels l'espace libre\n" -#~ "est tracé." - -#~ msgid "Sets the maximum number of tuples to be sorted using replacement selection." -#~ msgstr "Configure le nombre maximum de lignes à trier en utilisant la sélection de remplacement." - -#~ msgid "Sets the name of the Kerberos service." -#~ msgstr "Initialise le nom du service Kerberos." - -#~ msgid "Sets the regular expression \"flavor\"." -#~ msgstr "Initialise l'expression rationnelle « flavor »." - -#, c-format -#~ msgid "Skipped %u page due to buffer pins, " -#~ msgid_plural "Skipped %u pages due to buffer pins, " -#~ msgstr[0] "Ignore %u page à cause des verrous de blocs, " -#~ msgstr[1] "Ignore %u pages à cause des verrous de blocs, " - -#~ msgid "Specify a USING expression to perform the conversion." -#~ msgstr "Donnez une expression USING pour réaliser la conversion." - -#~ msgid "Specify a relation name as well as a rule name." -#~ msgstr "Spécifier un nom de relation ainsi qu'un nom de règle." - -#~ msgid "Statistics" -#~ msgstr "Statistiques" - -#~ msgid "Sun" -#~ msgstr "Dim" - -#~ msgid "Sunday" -#~ msgstr "Dimanche" - -#, c-format -#~ msgid "System tables cannot be added to publications." -#~ msgstr "Les tables systèmes ne peuvent pas être ajoutées à une publication." - -#~ msgid "Table contains duplicated values." -#~ msgstr "La table contient des valeurs dupliquées." - -#~ msgid "The arguments of jsonb_build_object() must consist of alternating keys and values." -#~ msgstr "Les arguments de jsonb_build_object() doivent consister en des clés et valeurs alternées" - -#~ msgid "The cast requires a non-immutable conversion." -#~ msgstr "Cette conversion requiert une conversion non immutable." - -#~ msgid "The database cluster was initialized with HAVE_INT64_TIMESTAMP but the server was compiled without HAVE_INT64_TIMESTAMP." -#~ msgstr "" -#~ "Le cluster de bases de données a été initialisé avec HAVE_INT64_TIMESTAMP\n" -#~ "alors que le serveur a été compilé sans." - -#~ msgid "The database cluster was initialized with LOCALE_NAME_BUFLEN %d, but the server was compiled with LOCALE_NAME_BUFLEN %d." -#~ msgstr "" -#~ "Le cluster de bases de données a été initialisé avec un LOCALE_NAME_BUFLEN\n" -#~ "à %d alors que le serveur a été compilé avec un LOCALE_NAME_BUFLEN à %d." - -#~ msgid "The database cluster was initialized with USE_FLOAT4_BYVAL but the server was compiled without USE_FLOAT4_BYVAL." -#~ msgstr "" -#~ "Le cluster de base de données a été initialisé avec USE_FLOAT4_BYVAL\n" -#~ "alors que le serveur a été compilé sans USE_FLOAT4_BYVAL." - -#~ msgid "The database cluster was initialized with XLOG_SEG_SIZE %d, but the server was compiled with XLOG_SEG_SIZE %d." -#~ msgstr "" -#~ "Le cluster de bases de données a été initialisé avec un XLOG_SEG_SIZE à %d\n" -#~ "alors que le serveur a été compilé avec un XLOG_SEG_SIZE à %d." - -#~ msgid "The database cluster was initialized without HAVE_INT64_TIMESTAMP but the server was compiled with HAVE_INT64_TIMESTAMP." -#~ msgstr "Le cluster de bases de données a été initialisé sans HAVE_INT64_TIMESTAMPalors que le serveur a été compilé avec." - -#~ msgid "The database cluster was initialized without USE_FLOAT4_BYVAL but the server was compiled with USE_FLOAT4_BYVAL." -#~ msgstr "" -#~ "Le cluster de base de données a été initialisé sans USE_FLOAT4_BYVAL\n" -#~ "alors que le serveur a été compilé avec USE_FLOAT4_BYVAL." - -#~ msgid "The error was: %s" -#~ msgstr "L'erreur était : %s" - -#~ msgid "The supported languages are listed in the pg_pltemplate system catalog." -#~ msgstr "Les langages supportés sont listés dans le catalogue système pg_pltemplate." - -#~ msgid "There might be an idle transaction or a forgotten prepared transaction causing this." -#~ msgstr "" -#~ "Il pourait y avoir une transaction en attente ou une transaction préparée\n" -#~ "oubliée causant cela." - -#~ msgid "There were %.0f unused item identifiers.\n" -#~ msgstr "Il y avait %.0f identifiants d'éléments inutilisés.\n" - -#~ msgid "This can be caused by having a publisher with a higher PostgreSQL major version than the subscriber." -#~ msgstr "Ceci peut avoir pour cause un publieur ayant une version majeure de PostgreSQL supérieure à l'abonné" - -#~ msgid "This can be set to advanced, extended, or basic." -#~ msgstr "" -#~ "Ceci peut être initialisé avec advanced (avancé), extended (étendu) ou\n" -#~ "basic (basique)." - -#~ msgid "This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by \"client_encoding\"." -#~ msgstr "" -#~ "Cette erreur peut aussi survenir si la séquence d'octets ne correspond pas\n" -#~ "au jeu de caractères attendu par le serveur, le jeu étant contrôlé par\n" -#~ "« client_encoding »." - -#~ msgid "" -#~ "This error usually means that PostgreSQL's request for a shared memory segment exceeded your kernel's SHMMAX parameter. You can either reduce the request size or reconfigure the kernel with larger SHMMAX. To reduce the request size (currently %lu bytes), reduce PostgreSQL's shared memory usage, perhaps by reducing shared_buffers or max_connections.\n" -#~ "If the request size is already small, it's possible that it is less than your kernel's SHMMIN parameter, in which case raising the request size or reconfiguring SHMMIN is called for.\n" -#~ "The PostgreSQL documentation contains more information about shared memory configuration." -#~ msgstr "" -#~ "Cette erreur signifie habituellement que la demande de PostgreSQL pour un\n" -#~ "segment de mémoire partagée a dépassé le paramètre SHMMAX de votre noyau.\n" -#~ "Vous pouvez soit réduire la taille de la requête soit reconfigurer le noyau\n" -#~ "avec un SHMMAX plus important. Pour réduire la taille de la requête\n" -#~ "(actuellement %lu octets), réduisez l'utilisation de la mémoire partagée par PostgreSQL,par exemple en réduisant shared_buffers ou max_connections\n" -#~ "Si la taille de la requête est déjà petite, il est possible qu'elle soit\n" -#~ "moindre que le paramètre SHMMIN de votre noyau, auquel cas, augmentez la\n" -#~ "taille de la requête ou reconfigurez SHMMIN.\n" -#~ "La documentation de PostgreSQL contient plus d'informations sur la\n" -#~ "configuration de la mémoire partagée." - -#~ msgid "This is a debugging aid." -#~ msgstr "C'est une aide de débogage." - -#~ msgid "This name may be disallowed altogether in future versions of PostgreSQL." -#~ msgstr "Ce nom pourrait être interdit dans les prochaines versions de PostgreSQL." - -#~ msgid "This parameter cannot be changed after server start." -#~ msgstr "Ce paramètre ne peut pas être modifié après le lancement du serveur" - -#~ msgid "This parameter doesn't do anything." -#~ msgstr "Ce paramètre ne fait rien." - -#~ msgid "Thu" -#~ msgstr "Jeu" - -#~ msgid "Thursday" -#~ msgstr "Jeudi" - -#~ msgid "Transaction ID %u finished; no more running transactions." -#~ msgstr "Identifiant de transaction %u terminé ; plus de transactions en cours." - -#, c-format -#~ msgid "Triggers on partitioned tables cannot have transition tables." -#~ msgstr "Les triggers sur les tables partitionnées ne peuvent pas avoir de tables de transition." - -#~ msgid "Try putting the literal value in single quotes." -#~ msgstr "Placer la valeur littérale en guillemets simples." - -#~ msgid "Tue" -#~ msgstr "Mar" - -#~ msgid "Tuesday" -#~ msgstr "Mardi" - -#~ msgid "Turns on various assertion checks." -#~ msgstr "Active les différentes vérifications des assertions." - -#~ msgid "UTF-16 to UTF-8 translation failed: %lu" -#~ msgstr "échec de la conversion d'UTF16 vers UTF8 : %lu" - -#~ msgid "Unicode escape values cannot be used for code point values above 007F when the server encoding is not UTF8" -#~ msgstr "" -#~ "Les valeurs d'échappement unicode ne peuvent pas être utilisées pour les\n" -#~ "valeurs de point de code au-dessus de 007F quand l'encodage serveur n'est\n" -#~ "pas UTF8" - -#~ msgid "Unicode escape values cannot be used for code point values above 007F when the server encoding is not UTF8." -#~ msgstr "" -#~ "Les valeurs d'échappement unicode ne peuvent pas être utilisées pour les valeurs de point de code\n" -#~ "au-dessus de 007F quand l'encodage serveur n'est pas UTF8." - -#~ msgid "Use ALTER AGGREGATE to change owner of aggregate functions." -#~ msgstr "Utiliser ALTER AGGREGATE pour changer le propriétaire des fonctions d'agrégat." - -#~ msgid "Use ALTER AGGREGATE to rename aggregate functions." -#~ msgstr "Utiliser ALTER AGGREGATE pour renommer les fonctions d'agrégat." - -#~ msgid "Use ALTER FOREIGN TABLE instead." -#~ msgstr "Utilisez ALTER FOREIGN TABLE à la place." - -#~ msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the detach operation." -#~ msgstr "Utiliser ALTER TABLE ... DETACH PARTITION ... FINALIZE pour terminer l'opération de détachement." - -#~ msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending detach operation" -#~ msgstr "Utilisez ALTER TABLE ... DETACH PARTITION ... FINALIZE pour terminer l'opération de détachement en attente" - -#~ msgid "Use SELECT ... UNION ALL ... instead." -#~ msgstr "Utilisez à la place SELECT ... UNION ALL ..." - -#~ msgid "User \"%s\" has an empty password." -#~ msgstr "L'utilisateur « %s » a un mot de passe vide." - -#~ msgid "Uses the indented output format for EXPLAIN VERBOSE." -#~ msgstr "Utilise le format de sortie indenté pour EXPLAIN VERBOSE." - -#~ msgid "VALUES must not contain OLD or NEW references" -#~ msgstr "VALUES ne doit pas contenir des références à OLD et NEW" - -#~ msgid "VALUES must not contain table references" -#~ msgstr "VALUES ne doit pas contenir de références de table" - -#~ msgid "Valid values are \"pause\", \"promote\", and \"shutdown\"." -#~ msgstr "Les valeurs valides sont « pause », « promote » et « shutdown »." - -#~ msgid "Valid values are '[]', '[)', '(]', and '()'." -#~ msgstr "Les valeurs valides sont « [] », « [) », « (] » et « () »." - -#~ msgid "Valid values are DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1, INFO, NOTICE, WARNING, ERROR, LOG, FATAL, and PANIC. Each level includes all the levels that follow it." -#~ msgstr "" -#~ "Les valeurs valides sont DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1, INFO,\n" -#~ "NOTICE, WARNING, ERROR, LOG, FATAL et PANIC. Chaque niveau incut tous les\n" -#~ "niveaux qui le suit." - -#~ msgid "Valid values are DOCUMENT and CONTENT." -#~ msgstr "Les valeurs valides sont DOCUMENT et CONTENT." - -#~ msgid "Valid values are LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7." -#~ msgstr "" -#~ "Les valeurs valides sont LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5,\n" -#~ "LOCAL6, LOCAL7." - -#~ msgid "Valid values are ON, OFF, and SAFE_ENCODING." -#~ msgstr "Les valeurs valides sont ON, OFF et SAFE_ENCODING." - -#~ msgid "Version and Platform Compatibility" -#~ msgstr "Compatibilité des versions et des plateformes" - -#~ msgid "Views that return the same column more than once are not automatically updatable." -#~ msgstr "Les vues qui renvoient la même colonne plus d'une fois ne sont pas automatiquement disponibles en écriture." - -#~ msgid "WAL archival (archive_mode=on) requires wal_level \"archive\", \"hot_standby\", or \"logical\"" -#~ msgstr "" -#~ "l'archivage des journaux de transactions (archive_mode=on) nécessite que\n" -#~ "le paramètre wal_level soit initialisé avec « archive », « hot_standby » ou « logical »" - -#~ msgid "WAL archiving is not active" -#~ msgstr "l'archivage des journaux de transactions n'est pas actif" - -#~ msgid "WAL file SYSID is %s, pg_control SYSID is %s" -#~ msgstr "le SYSID du journal de transactions WAL est %s, celui de pg_control est %s" - -#~ msgid "WAL file is from different database system: Incorrect XLOG_BLCKSZ in page header." -#~ msgstr "" -#~ "le journal de transactions provient d'un système de bases de données différent :\n" -#~ "XLOG_BLCKSZ incorrect dans l'en-tête de page." - -#~ msgid "WAL file is from different database system: Incorrect XLOG_SEG_SIZE in page header." -#~ msgstr "" -#~ "le journal de transactions provient d'un système de bases de données différent :\n" -#~ "XLOG_SEG_SIZE incorrect dans l'en-tête de page." - -#~ msgid "WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s" -#~ msgstr "le fichier WAL provient d'une instance différente : l'identifiant système de la base dans le fichier WAL est %s, alors que l'identifiant système de l'instance dans pg_control est %s" - -#~ msgid "WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s." -#~ msgstr "" -#~ "L'identifiant du journal de transactions du système de base de données est %s,\n" -#~ "l'identifiant pg_control du système de base de données dans pg_control est %s." - -#~ msgid "WAL file is from different database system: incorrect XLOG_SEG_SIZE in page header" -#~ msgstr "le fichier WAL provient d'un système différent : XLOG_SEG_SIZE invalide dans l'en-tête de page" - -#~ msgid "WAL sender sleep time between WAL replications." -#~ msgstr "" -#~ "Temps d'endormissement du processus d'envoi des journaux de transactions entre\n" -#~ "les réplications des journaux de transactions." - -#~ msgid "WAL writer sleep time between WAL flushes." -#~ msgstr "" -#~ "Temps d'endormissement du processus d'écriture pendant le vidage des\n" -#~ "journaux de transactions en millisecondes." - -#~ msgid "" -#~ "WARNING: Calculated CRC checksum does not match value stored in file.\n" -#~ "Either the file is corrupt, or it has a different layout than this program\n" -#~ "is expecting. The results below are untrustworthy.\n" -#~ "\n" -#~ msgstr "" -#~ "ATTENTION : Les sommes de contrôle (CRC) calculées ne correspondent pas aux\n" -#~ "valeurs stockées dans le fichier.\n" -#~ "Soit le fichier est corrompu, soit son organisation diffère de celle\n" -#~ "attendue par le programme.\n" -#~ "Les résultats ci-dessous ne sont pas dignes de confiance.\n" -#~ "\n" - -#~ msgid "" -#~ "WARNING: possible byte ordering mismatch\n" -#~ "The byte ordering used to store the pg_control file might not match the one\n" -#~ "used by this program. In that case the results below would be incorrect, and\n" -#~ "the PostgreSQL installation would be incompatible with this data directory.\n" -#~ msgstr "" -#~ "ATTENTION : possible incohérence dans l'ordre des octets\n" -#~ "L'ordre des octets utilisé pour enregistrer le fichier pg_control peut ne\n" -#~ "pas correspondre à celui utilisé par ce programme. Dans ce cas, les\n" -#~ "résultats ci-dessous sont incorrects, et l'installation PostgreSQL\n" -#~ "incompatible avec ce répertoire des données.\n" - -#~ msgid "WHERE CURRENT OF is not supported on a view with grouping or aggregation" -#~ msgstr "WHERE CURRENT OF n'est pas supporté pour une vue avec regroupement ou agrégat" - -#~ msgid "WHERE CURRENT OF is not supported on a view with more than one underlying relation" -#~ msgstr "WHERE CURRENT OF n'est pas supporté pour une vue avec plus d'une table sous-jacente" - -#~ msgid "WHERE CURRENT OF is not supported on a view with no underlying relation" -#~ msgstr "WHERE CURRENT OF n'est pas supporté pour une vue sans table sous-jacente" - -#~ msgid "Waits N seconds on connection startup after authentication." -#~ msgstr "Attends N secondes après l'authentification." - -#~ msgid "Waits N seconds on connection startup before authentication." -#~ msgstr "Attends N secondes au lancement de la connexion avant l'authentification." - -#~ msgid "Wed" -#~ msgstr "Mer" - -#~ msgid "Wednesday" -#~ msgstr "Mercredi" - -#~ msgid "When a password is specified in CREATE USER or ALTER USER without writing either ENCRYPTED or UNENCRYPTED, this parameter determines whether the password is to be encrypted." -#~ msgstr "" -#~ "Lorsqu'un mot de passe est spécifié dans CREATE USER ou ALTER USER sans\n" -#~ "indiquer ENCRYPTED ou UNENCRYPTED, ce paramètre détermine si le mot de passe\n" -#~ "doit être chiffré." - -#~ msgid "When logging statements, limit logged parameter values to first N bytes." -#~ msgstr "Lors de la trace des requêtes, limite les valeurs des paramètres tracés aux N premiers octets." - -#~ msgid "When more tuples than this are present, quicksort will be used." -#~ msgstr "Quand plus de lignes que ça sont présentes, quicksort sera utilisé." - -#~ msgid "When reporting an error, limit logged parameter values to first N bytes." -#~ msgstr "Lors de la trace d'une erreur, limite les valeurs des paramètres tracés aux N premiers octets." - -#~ msgid "Write-Ahead Log" -#~ msgstr "Write-Ahead Log" - -#~ msgid "Write-Ahead Log / Streaming Replication" -#~ msgstr "Write-Ahead Log / Réplication en flux" - -#~ msgid "Writes temporary statistics files to the specified directory." -#~ msgstr "Écrit les fichiers statistiques temporaires dans le répertoire indiqué." - -#~ msgid "You can add the table partitions individually." -#~ msgstr "Vous pouvez ajouter les partitions de table individuellement." - -#~ msgid "You have at least %d relations. Consider increasing the configuration parameter \"max_fsm_relations\"." -#~ msgstr "" -#~ "Vous avez au moins %d relations.Considèrez l'augmentation du paramètre de\n" -#~ "configuration « max_fsm_relations »." - -#~ msgid "You might be able to work around this by marking column \"%s\" NOT NULL, or use ALTER TABLE ... SET WITHOUT CLUSTER to remove the cluster specification from the table." -#~ msgstr "" -#~ "Vous pourriez contourner ceci en marquant la colonne « %s » avec la\n" -#~ "contrainte NOT NULL ou en utilisant ALTER TABLE ... SET WITHOUT CLUSTER pour\n" -#~ "supprimer la spécification CLUSTER de la table." - -#~ msgid "You might be able to work around this by marking column \"%s\" NOT NULL." -#~ msgstr "Vous pouvez contourner ceci en marquant la colonne « %s » comme NOT NULL." - -#~ msgid "You need an unconditional ON DELETE DO INSTEAD rule or an INSTEAD OF DELETE trigger." -#~ msgstr "Vous avez besoin d'une règle inconditionnelle ON DELETE DO INSTEAD ou d'un trigger INSTEAD OF DELETE." - -#~ msgid "You need an unconditional ON INSERT DO INSTEAD rule or an INSTEAD OF INSERT trigger." -#~ msgstr "Vous avez besoin d'une règle ON INSERT DO INSTEAD sans condition ou d'un trigger INSTEAD OF INSERT." - -#~ msgid "You need an unconditional ON UPDATE DO INSTEAD rule or an INSTEAD OF UPDATE trigger." -#~ msgstr "Vous avez besoin d'une règle non conditionnelle ON UPDATE DO INSTEAD ou d'un trigger INSTEAD OF UPDATE." - -#, c-format -#~ msgid "You need to rebuild PostgreSQL using %s." -#~ msgstr "Vous devez recompiler PostgreSQL en utilisant %s." - -#~ msgid "You need to rebuild PostgreSQL using --with-icu." -#~ msgstr "Vous devez recompiler PostgreSQL en utilisant --with-icu." - -#~ msgid "You need to rebuild PostgreSQL using --with-libxml." -#~ msgstr "Vous devez recompiler PostgreSQL en utilisant --with-libxml." - -#, c-format -#~ msgid "a backup is already in progress" -#~ msgstr "une sauvegarde est déjà en cours" - -#~ msgid "aborted" -#~ msgstr "annulé" - -#~ msgid "abstime out of range for date" -#~ msgstr "abstime en dehors des limites pour une date" - -#~ msgid "access method name cannot be qualified" -#~ msgstr "le nom de la méthode d'accès ne peut pas être qualifiée" - -#~ msgid "added subscription for table %s.%s" -#~ msgstr "souscription ajoutée pour la table %s.%s" - -#~ msgid "adding missing FROM-clause entry for table \"%s\"" -#~ msgstr "ajout d'une entrée manquante dans FROM (table « %s »)" - -#~ msgid "adding missing FROM-clause entry in subquery for table \"%s\"" -#~ msgstr "entrée manquante de la clause FROM dans la sous-requête pour la table « %s »" - -#~ msgid "aggregates not allowed in WHERE clause" -#~ msgstr "agrégats non autorisés dans une clause WHERE" - -#~ msgid "archive command was terminated by signal %d" -#~ msgstr "la commande d'archivage a été terminée par le signal %d" - -#~ msgid "archive member \"%s\" too large for tar format" -#~ msgstr "membre « %s » de l'archive trop volumineux pour le format tar" - -#~ msgid "archive_command must be defined before online backups can be made safely." -#~ msgstr "" -#~ "archive_command doit être défini avant que les sauvegardes à chaud puissent\n" -#~ "s'effectuer correctement." - -#~ msgid "archive_mode must be enabled at server start." -#~ msgstr "archive_mode doit être activé au lancement du serveur." - -#~ msgid "archived transaction log file \"%s\"" -#~ msgstr "journal des transactions archivé « %s »" - -#~ msgid "argument %d: could not determine data type" -#~ msgstr "argument %d : n'a pas pu déterminer le type de données" - -#~ msgid "argument declared \"anyrange\" is not consistent with argument declared \"anyelement\"" -#~ msgstr "" -#~ "l'argument déclaré « anyrange » n'est pas cohérent avec l'argument déclaré\n" -#~ "« anyelement »" - -#~ msgid "argument for function \"exp\" too big" -#~ msgstr "l'argument de la fonction « exp » est trop gros" - -#~ msgid "argument number is out of range" -#~ msgstr "le nombre en argument est en dehors des limites" - -#~ msgid "argument of %s must be type boolean, not type %s" -#~ msgstr "l'argument de %s doit être de type booléen, et non du type %s" - -#~ msgid "argument of %s must not contain aggregate functions" -#~ msgstr "l'argument de %s ne doit pas contenir de fonctions d'agrégats" - -#~ msgid "argument of %s must not contain window functions" -#~ msgstr "l'argument de %s ne doit pas contenir des fonctions window" - -#~ msgid "argument to pg_get_expr() must come from system catalogs" -#~ msgstr "l'argument de pg_get_expr() doit provenir des catalogues systèmes" - -#~ msgid "arguments declared \"anycompatiblemultirange\" are not all alike" -#~ msgstr "les arguments déclarés « anycompatiblemultirange » ne sont pas tous identiques" - -#~ msgid "arguments declared \"anycompatiblerange\" are not all alike" -#~ msgstr "les arguments déclarés « anycompatiblerange » ne sont pas tous identiques" - -#~ msgid "arguments declared \"anyelement\" are not all alike" -#~ msgstr "les arguments déclarés « anyelement » ne sont pas tous identiques" - -#~ msgid "arguments declared \"anymultirange\" are not all alike" -#~ msgstr "les arguments déclarés « anymultirange » ne sont pas tous identiques" - -#~ msgid "arguments declared \"anyrange\" are not all alike" -#~ msgstr "les arguments déclarés « anyrange » ne sont pas tous identiques" - -#~ msgid "arguments of row IN must all be row expressions" -#~ msgstr "les arguments de la ligne IN doivent tous être des expressions de ligne" - -#~ msgid "array assignment requires type %s but expression is of type %s" -#~ msgstr "l'affectation de tableaux requiert le type %s mais l'expression est de type %s" - -#~ msgid "at least one of leftarg or rightarg must be specified" -#~ msgstr "au moins un des arguments (le gauche ou le droit) doit être spécifié" - -#~ msgid "attempted change of parameter \"%s\" ignored" -#~ msgstr "tentative de modification du paramètre « %s » ignoré" - -#~ msgid "authentication file line too long" -#~ msgstr "ligne du fichier d'authentification trop longue" - -#~ msgid "automatic analyze of table \"%s.%s.%s\" system usage: %s" -#~ msgstr "ANALYZE automatique de la table « %s.%s.%s » ; utilisation système : %s" - -#~ msgid "automatic vacuum of table \"%s.%s.%s\": cannot (re)acquire exclusive lock for truncate scan" -#~ msgstr "vacuum automatique de la table « %s.%s.%s » : ne peut pas acquérir le verrou exclusif pour la tronquer" - -#~ msgid "" -#~ "automatic vacuum of table \"%s.%s.%s\": index scans: %d\n" -#~ "pages: %d removed, %d remain\n" -#~ "tuples: %.0f removed, %.0f remain, %.0f are dead but not yet removable\n" -#~ "buffer usage: %d hits, %d misses, %d dirtied\n" -#~ "avg read rate: %.3f MB/s, avg write rate: %.3f MB/s\n" -#~ "system usage: %s" -#~ msgstr "" -#~ "VACUUM automatique de la table « %s.%s.%s » : parcours d'index : %d\n" -#~ "pages : %d supprimées, %d restantes\n" -#~ "lignes : %.0f supprimées, %.0f restantes, %.0f sont mortes mais non supprimables\n" -#~ "utilisation des tampons : %d lus dans le cache, %d lus hors du cache, %d modifiés\n" -#~ "taux moyen de lecture : %.3f Mo/s, taux moyen d'écriture : %.3f Mo/s\n" -#~ "utilisation système : %s" - -#~ msgid "autovacuum launcher shutting down" -#~ msgstr "arrêt du processus de lancement de l'autovacuum" - -#~ msgid "autovacuum launcher started" -#~ msgstr "démarrage du processus de lancement de l'autovacuum" - -#~ msgid "autovacuum: found orphan temp table \"%s\".\"%s\" in database \"%s\"" -#~ msgstr "" -#~ "autovacuum : a trouvé la table temporaire orpheline « %s.%s » dans la base de\n" -#~ "données « %s »" - -#~ msgid "autovacuum: processing database \"%s\"" -#~ msgstr "autovacuum : traitement de la base de données « %s »" - -#, c-format -#~ msgid "background worker \"%s\": must attach to shared memory in order to request a database connection" -#~ msgstr "processus en tâche de fond « %s » : doit se lier à la mémoire partagée pour pouvoir demander une connexion à une base" - -#~ msgid "backup label %s in file \"%s\"" -#~ msgstr "label de sauvegarde %s dans le fichier « %s »" - -#~ msgid "backup time %s in file \"%s\"" -#~ msgstr "heure de sauvegarde %s dans le fichier « %s »" - -#~ msgid "backup timeline %u in file \"%s\"" -#~ msgstr "timeline de sauvegarde %u dans le fichier « %s »" - -#, c-format -#~ msgid "base backup could not send data, aborting backup" -#~ msgstr "la sauvegarde de base n'a pas pu envoyer les données, annulation de la sauvegarde" - -#~ msgid "binary value is out of range for type bigint" -#~ msgstr "la valeur binaire est en dehors des limites du type bigint" - -#~ msgid "bind %s to %s" -#~ msgstr "lie %s à %s" - -#~ msgid "brin operator family \"%s\" contains function %s with invalid support number %d" -#~ msgstr "" -#~ "la famille d'opérateur brin « %s » contient la fonction %s\n" -#~ "avec le numéro de support %d invalide" - -#~ msgid "brin operator family \"%s\" contains function %s with wrong signature for support number %d" -#~ msgstr "" -#~ "la famille d'opérateur brin « %s » contient la fonction %s\n" -#~ "avec une mauvaise signature pour le numéro de support %d" - -#~ msgid "brin operator family \"%s\" contains invalid ORDER BY specification for operator %s" -#~ msgstr "" -#~ "la famille d'opérateur brin « %s » contient une spécification\n" -#~ "ORDER BY invalide pour l'opérateur %s" - -#~ msgid "brin operator family \"%s\" contains operator %s with invalid strategy number %d" -#~ msgstr "" -#~ "la famille d'opérateur brin « %s » contient l'opérateur %s\n" -#~ "avec le numéro de stratégie %d invalide" - -#~ msgid "brin operator family \"%s\" contains operator %s with wrong signature" -#~ msgstr "la famille d'opérateur brin « %s » contient l'opérateur %s avec une mauvaise signature" - -#~ msgid "btree operator class \"%s\" is missing operator(s)" -#~ msgstr "il manque des opérateurs pour la classe d'opérateur btree « %s »" - -#~ msgid "btree operator family \"%s\" contains function %s with invalid support number %d" -#~ msgstr "" -#~ "la famille d'opérateur btree « %s » contient la fonction %s\n" -#~ "avec le numéro de support invalide %d" - -#~ msgid "btree operator family \"%s\" contains function %s with wrong signature for support number %d" -#~ msgstr "" -#~ "la famille d'opérateur btree « %s » contient la fonction %s\n" -#~ "avec une mauvaise signature pour le numéro de support %d" - -#~ msgid "btree operator family \"%s\" contains invalid ORDER BY specification for operator %s" -#~ msgstr "" -#~ "la famille d'opérateur btree « %s » contient une spécification\n" -#~ "ORDER BY invalide pour l'opérateur %s" - -#~ msgid "btree operator family \"%s\" contains operator %s with invalid strategy number %d" -#~ msgstr "" -#~ "la famille d'opérateur btree « %s » contient l'opérateur %s\n" -#~ "avec le numéro de stratégie invalide %d" - -#~ msgid "btree operator family \"%s\" contains operator %s with wrong signature" -#~ msgstr "la famille d'opérateur btree « %s » contient l'opérateur %s avec une mauvaise signature" - -#~ msgid "btree operator family \"%s\" is missing cross-type operator(s)" -#~ msgstr "il manque des opérateurs inter-type pour la famille d'opérateur btree « %s »" - -#~ msgid "btree operator family \"%s\" is missing operator(s) for types %s and %s" -#~ msgstr "" -#~ "la famille d'opérateur btree « %s » nécessite des opérateurs supplémentaires\n" -#~ "pour les types %s et %s" - -#~ msgid "building index \"%s\" on table \"%s\" serially" -#~ msgstr "construction de l'index « %s » sur la table « %s » séquentiellement" - -#~ msgid "building index \"%s\" on table \"%s\" with request for %d parallel worker" -#~ msgid_plural "building index \"%s\" on table \"%s\" with request for %d parallel workers" -#~ msgstr[0] "construction de l'index « %s » sur la table « %s » avec une demande de %d processus parallèle" -#~ msgstr[1] "construction de l'index « %s » sur la table « %s » avec une demande de %d processus parallèles" - -#~ msgid "built-in type %u not found" -#~ msgstr "type interne %u non trouvé" - -#~ msgid "cannot PREPARE a transaction that has manipulated logical replication workers" -#~ msgstr "" -#~ "ne peut pas préparer (PREPARE) une transaction qui a travaillé sur des\n" -#~ "workers de réplication logique" - -#~ msgid "cannot PREPARE a transaction that has operated on temporary namespace" -#~ msgstr "" -#~ "ne peut pas préparer (PREPARE) une transaction qui a travaillé sur un\n" -#~ "schéma temporaire" - -#~ msgid "cannot PREPARE a transaction that has operated on temporary tables" -#~ msgstr "" -#~ "ne peut pas préparer (PREPARE) une transaction qui a travaillé sur des\n" -#~ "tables temporaires" - -#~ msgid "cannot accept a value of type any" -#~ msgstr "ne peut pas accepter une valeur de type any" - -#~ msgid "cannot accept a value of type anyarray" -#~ msgstr "ne peut pas accepter une valeur de type anyarray" - -#~ msgid "cannot accept a value of type anyelement" -#~ msgstr "ne peut pas accepter une valeur de type anyelement" - -#~ msgid "cannot accept a value of type anyenum" -#~ msgstr "ne peut pas accepter une valeur de type anyenum" - -#~ msgid "cannot accept a value of type anynonarray" -#~ msgstr "ne peut pas accepter une valeur de type anynonarray" - -#~ msgid "cannot accept a value of type anyrange" -#~ msgstr "ne peut pas accepter une valeur de type anyrange" - -#~ msgid "cannot accept a value of type event_trigger" -#~ msgstr "ne peut pas accepter une valeur de type event_trigger" - -#~ msgid "cannot accept a value of type fdw_handler" -#~ msgstr "ne peut pas accepter une valeur de type fdw_handler" - -#~ msgid "cannot accept a value of type index_am_handler" -#~ msgstr "ne peut pas accepter une valeur de type index_am_handler" - -#~ msgid "cannot accept a value of type internal" -#~ msgstr "ne peut pas accepter une valeur de type internal" - -#~ msgid "cannot accept a value of type language_handler" -#~ msgstr "ne peut pas accepter une valeur de type language_handler" - -#~ msgid "cannot accept a value of type opaque" -#~ msgstr "ne peut pas accepter une valeur de type opaque" - -#~ msgid "cannot accept a value of type pg_node_tree" -#~ msgstr "ne peut pas accepter une valeur de type pg_node_tree" - -#~ msgid "cannot accept a value of type trigger" -#~ msgstr "ne peut pas accepter une valeur de type trigger" - -#~ msgid "cannot accept a value of type tsm_handler" -#~ msgstr "ne peut pas accepter une valeur de type tsm_handler" - -#~ msgid "cannot advance replication slot that has not previously reserved WAL" -#~ msgstr "impossible d'avancer un slot de réplication qui n'a pas auparavant réservé de WAL" - -#~ msgid "cannot alter type of column named in partition key" -#~ msgstr "ne peut pas modifier le type d'une colonne nommée dans une clé de partitionnement" - -#~ msgid "cannot alter type of column referenced in partition key expression" -#~ msgstr "ne peut pas utiliser le type d'une colonne référencée dans l'expression d'une clé de partitionnement" - -#~ msgid "cannot attach table \"%s\" with OIDs as partition of table \"%s\" without OIDs" -#~ msgstr "ne peut pas attacher la table « %s » avec OID comme partition de la table « %s » sans OID" - -#~ msgid "cannot attach table \"%s\" without OIDs as partition of table \"%s\" with OIDs" -#~ msgstr "ne peut pas attacher la table « %s » sans OID comme partition de la table « %s » avec OID" - -#~ msgid "cannot calculate week number without year information" -#~ msgstr "ne peut pas calculer le numéro de la semaine sans informations sur l'année" - -#~ msgid "cannot call json_array_elements on a non-array" -#~ msgstr "ne peut pas appeler json_array_elements sur un objet qui n'est pas un tableau" - -#~ msgid "cannot call json_array_elements on a scalar" -#~ msgstr "ne peut pas appeler json_array_elements sur un scalaire" - -#~ msgid "cannot call json_object_keys on an array" -#~ msgstr "ne peut pas appeler json_object_keys sur un tableau" - -#~ msgid "cannot call json_populate_recordset on a nested object" -#~ msgstr "ne peut pas appeler json_populate_recordset sur un objet imbriqué" - -#~ msgid "cannot call json_populate_recordset on a scalar" -#~ msgstr "ne peut pas appeler json_populate_recordset sur un scalaire" - -#~ msgid "cannot call json_populate_recordset on an object" -#~ msgstr "ne peut pas appeler json_populate_recordset sur un objet" - -#~ msgid "cannot call json_populate_recordset with nested arrays" -#~ msgstr "ne peut pas appeler json_populate_recordset avec des tableaux imbriqués" - -#~ msgid "cannot call json_populate_recordset with nested objects" -#~ msgstr "ne peut pas appeler json_populate_recordset sur des objets imbriqués" - -#~ msgid "cannot change number of columns in view" -#~ msgstr "ne peut pas modifier le nombre de colonnes dans la vue" - -#~ msgid "cannot cluster on expressional index \"%s\" because its index access method does not handle null values" -#~ msgstr "" -#~ "ne peut pas exécuter CLUSTER sur l'index à expression « %s » car sa méthode\n" -#~ "d'accès ne gère pas les valeurs NULL" - -#~ msgid "cannot cluster on index \"%s\" because access method does not handle null values" -#~ msgstr "" -#~ "ne peut pas créer un cluster sur l'index « %s » car la méthode d'accès de\n" -#~ "l'index ne gère pas les valeurs NULL" - -#~ msgid "cannot convert NaN to bigint" -#~ msgstr "ne peut pas convertir NaN en un entier de type bigint" - -#~ msgid "cannot convert NaN to integer" -#~ msgstr "ne peut pas convertir NaN en un entier" - -#~ msgid "cannot convert NaN to smallint" -#~ msgstr "ne peut pas convertir NaN en un entier de type smallint" - -#~ msgid "cannot convert abstime \"invalid\" to timestamp" -#~ msgstr "ne peut pas convertir un abstime « invalid » en timestamp" - -#~ msgid "cannot convert empty polygon to circle" -#~ msgstr "ne peut pas convertir un polygône vide en cercle" - -#~ msgid "cannot convert infinity to bigint" -#~ msgstr "ne peut pas convertir infinity en bigint" - -#~ msgid "cannot convert infinity to integer" -#~ msgstr "ne peut pas convertir infinity en integer" - -#~ msgid "cannot convert infinity to smallint" -#~ msgstr "ne peut pas convertir infinity en smallint" - -#~ msgid "cannot convert reltime \"invalid\" to interval" -#~ msgstr "ne peut pas convertir reltime « invalid » en interval" - -#~ msgid "cannot convert reserved abstime value to date" -#~ msgstr "ne peut pas convertir la valeur réservée abstime en date" - -#~ msgid "cannot copy to foreign table \"%s\"" -#~ msgstr "ne peut pas copier vers la table distante « %s »" - -#~ msgid "cannot create bounding box for empty polygon" -#~ msgstr "ne peut pas créer une boîte entourée pour un polygône vide" - -#~ msgid "cannot create range partition with empty range" -#~ msgstr "ne peut pas créer une partition par intervalle avec un intervalle vide" - -#~ msgid "cannot create restricted tokens on this platform" -#~ msgstr "ne peut pas créer les jetons restreints sur cette plateforme" - -#~ msgid "cannot create table with OIDs as partition of table without OIDs" -#~ msgstr "ne peut pas créer une table avec OID comme partition d'une table sans OID" - -#~ msgid "cannot display a value of type anyelement" -#~ msgstr "ne peut pas afficher une valeur de type anyelement" - -#~ msgid "cannot display a value of type anynonarray" -#~ msgstr "ne peut pas afficher une valeur de type anynonarray" - -#~ msgid "cannot display a value of type event_trigger" -#~ msgstr "ne peut pas afficher une valeur de type event_trigger" - -#~ msgid "cannot display a value of type fdw_handler" -#~ msgstr "ne peut pas afficher une valeur de type fdw_handler" - -#~ msgid "cannot display a value of type index_am_handler" -#~ msgstr "ne peut pas afficher une valeur de type index_am_handler" - -#~ msgid "cannot display a value of type internal" -#~ msgstr "ne peut pas afficher une valeur de type internal" - -#~ msgid "cannot display a value of type language_handler" -#~ msgstr "ne peut pas afficher une valeur de type language_handler" - -#~ msgid "cannot display a value of type opaque" -#~ msgstr "ne peut pas afficher une valeur de type opaque" - -#~ msgid "cannot display a value of type trigger" -#~ msgstr "ne peut pas afficher une valeur de type trigger" - -#~ msgid "cannot display a value of type tsm_handler" -#~ msgstr "ne peut pas afficher une valeur de type tsm_handler" - -#~ msgid "cannot drop \"%s\" because it is being used by active queries in this session" -#~ msgstr "" -#~ "ne peut pas supprimer « %s » car cet objet est en cours d'utilisation par\n" -#~ "des requêtes actives dans cette session" - -#~ msgid "cannot drop column named in partition key" -#~ msgstr "ne peut pas supprimer une colonne nommée dans une clé de partitionnement" - -#~ msgid "cannot extract array element from a non-array" -#~ msgstr "ne peut pas extraire un élément du tableau à partir d'un objet qui n'est pas un tableau" - -#~ msgid "cannot extract field from a non-object" -#~ msgstr "ne peut pas extraire le chemin à partir d'un non-objet" - -#~ msgid "cannot output a value of type %s" -#~ msgstr "ne peut pas afficher une valeur de type %s" - -#~ msgid "cannot override frame clause of window \"%s\"" -#~ msgstr "ne peut pas surcharger la frame clause du window « %s »" - -#~ msgid "cannot reference permanent table from temporary table constraint" -#~ msgstr "" -#~ "ne peut pas référencer une table permanente à partir de la contrainte de\n" -#~ "table temporaire" - -#~ msgid "cannot reference temporary table from permanent table constraint" -#~ msgstr "" -#~ "ne peut pas référencer une table temporaire à partir d'une contrainte de\n" -#~ "table permanente" - -#~ msgid "cannot reindex invalid index on TOAST table concurrently" -#~ msgstr "ne peut pas réindexer un index invalide sur une table TOAST de manière concurrente" - -#~ msgid "cannot route inserted tuples to a foreign table" -#~ msgstr "ne peut pas envoyer les lignes insérées dans une table distante" - -#~ msgid "cannot set session authorization within security-definer function" -#~ msgstr "ne peut pas exécuter SESSION AUTHORIZATION sur la fonction SECURITY DEFINER" - -#~ msgid "cannot specify CSV in BINARY mode" -#~ msgstr "ne peut pas spécifier CSV en mode binaire (BINARY)" - -#~ msgid "cannot truncate system relation \"%s\"" -#~ msgstr "ne peut pas tronquer la relation système « %s »" - -#~ msgid "cannot use Ident authentication without usermap field" -#~ msgstr "n'a pas pu utiliser l'authentication Ident sans le champ usermap" - -#~ msgid "cannot use advisory locks during a parallel operation" -#~ msgstr "ne peut pas utiliser les verrous informatifs lors d'une opération parallèle" - -#~ msgid "cannot use aggregate function in RETURNING" -#~ msgstr "ne peut pas utiliser une fonction d'agrégat dans RETURNING" - -#~ msgid "cannot use aggregate function in UPDATE" -#~ msgstr "ne peut pas utiliser une fonction d'agrégat dans un UPDATE" - -#~ msgid "cannot use aggregate function in VALUES" -#~ msgstr "ne peut pas utiliser la fonction d'agrégat dans un VALUES" - -#~ msgid "cannot use aggregate function in parameter default value" -#~ msgstr "" -#~ "ne peut pas utiliser une fonction d'agrégat dans la valeur par défaut d'un\n" -#~ "paramètre" - -#~ msgid "cannot use aggregate function in rule WHERE condition" -#~ msgstr "ne peut pas utiliser la fonction d'agrégat dans la condition d'une règle WHERE" - -#~ msgid "cannot use aggregate in index predicate" -#~ msgstr "ne peut pas utiliser un agrégat dans un prédicat d'index" - -#~ msgid "cannot use authentication method \"crypt\" because password is MD5-encrypted" -#~ msgstr "" -#~ "n'a pas pu utiliser la méthode d'authentification « crypt » car le mot de\n" -#~ "passe est chiffré avec MD5" - -#~ msgid "cannot use subquery in parameter default value" -#~ msgstr "ne peut pas utiliser une sous-requête dans une valeur par défaut d'un paramètre" - -#~ msgid "cannot use window function in EXECUTE parameter" -#~ msgstr "ne peut pas utiliser une fonction window dans le paramètre EXECUTE" - -#~ msgid "cannot use window function in RETURNING" -#~ msgstr "ne peut pas utiliser une fonction window dans RETURNING" - -#~ msgid "cannot use window function in UPDATE" -#~ msgstr "ne peut pas utiliser une fonction window dans un UPDATE" - -#~ msgid "cannot use window function in VALUES" -#~ msgstr "ne peut pas utiliser la fonction window dans un VALUES" - -#~ msgid "cannot use window function in check constraint" -#~ msgstr "ne peut pas utiliser une fonction window dans une contrainte de vérification" - -#~ msgid "cannot use window function in default expression" -#~ msgstr "ne peut pas utiliser une fonction window dans une expression par défaut" - -#~ msgid "cannot use window function in function expression in FROM" -#~ msgstr "" -#~ "ne peut pas utiliser la fonction window dans l'expression de la fonction\n" -#~ "du FROM" - -#~ msgid "cannot use window function in parameter default value" -#~ msgstr "ne peut pas utiliser la fonction window dans la valeur par défaut d'un paramètre" - -#~ msgid "cannot use window function in rule WHERE condition" -#~ msgstr "ne peut pas utiliser la fonction window dans la condition d'une règle WHERE" - -#~ msgid "cannot use window function in transform expression" -#~ msgstr "ne peut pas utiliser la fonction window dans l'expression de la transformation" - -#~ msgid "cannot use window function in trigger WHEN condition" -#~ msgstr "ne peut pas utiliser la fonction window dans la condition WHEN d'un trigger" - -#~ msgid "changing argument type of function %s from \"opaque\" to \"cstring\"" -#~ msgstr "changement du type d'argument de la fonction %s d'« opaque » à « cstring »" - -#~ msgid "changing argument type of function %s from \"opaque\" to %s" -#~ msgstr "changement du type d'argument de la fonction %s d'« opaque » à %s" - -#~ msgid "changing return type of function %s from \"opaque\" to \"cstring\"" -#~ msgstr "changement du type de retour de la fonction %s d'« opaque » vers « cstring »" - -#~ msgid "changing return type of function %s from \"opaque\" to \"language_handler\"" -#~ msgstr "" -#~ "changement du type du code retour de la fonction %s d'« opaque » à\n" -#~ "« language_handler »" - -#~ msgid "changing return type of function %s from \"opaque\" to \"trigger\"" -#~ msgstr "changement du type de retour de la fonction %s de « opaque » vers « trigger »" - -#~ msgid "changing return type of function %s from %s to %s" -#~ msgstr "changement du type de retour de la fonction %s de %s vers %s" - -#~ msgid "checkpoint record is at %X/%X" -#~ msgstr "l'enregistrement du point de vérification est à %X/%X" - -#~ msgid "checkpoint skipped because system is idle" -#~ msgstr "checkpoint ignoré car le système est inactif" - -#~ msgid "child process was terminated by signal %d" -#~ msgstr "le processus fils a été terminé par le signal %d" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "child table \"%s\" has a conflicting \"%s\" column" -#~ msgstr "la table fille « %s » a une colonne conflictuelle, « %s »" - -#~ msgid "client requires SCRAM channel binding, but it is not supported" -#~ msgstr "le client requiert le lien de canal SCRAM mais ceci n'est pas supporté" - -#~ msgid "clustering \"%s.%s\"" -#~ msgstr "exécution de CLUSTER sur « %s.%s »" - -#~ msgid "collation of partition bound value for column \"%s\" does not match partition key collation \"%s\"" -#~ msgstr "le collationnement de la valeur limite de partition de la colonne « %s » ne correspond pas à celui de la clé de partition « %s »" - -#, c-format -#~ msgid "collations with different collate and ctype values are not supported by ICU" -#~ msgstr "les collationnements avec des valeurs différentes pour le tri (collate) et le jeu de caractères (ctype) ne sont pas supportés par ICU" - -#~ msgid "column \"%s\" appears more than once in partition key" -#~ msgstr "la colonne « %s » apparaît plus d'une fois dans la clé de partitionnement" - -#~ msgid "column \"%s\" contains null values" -#~ msgstr "la colonne « %s » contient des valeurs NULL" - -#~ msgid "column \"%s\" has type \"unknown\"" -#~ msgstr "la colonne « %s » est de type « unknown »" - -#, c-format -#~ msgid "column alias list for \"%s\" has too many entries" -#~ msgstr "la liste d'alias de colonnes pour « %s » a beaucoup trop d'entrées" - -#~ msgid "column name list not allowed in CREATE TABLE / AS EXECUTE" -#~ msgstr "la liste de noms de colonnes n'est pas autorisée dans CREATE TABLE / AS EXECUTE" - -#~ msgid "combine function for aggregate %u must be declared as STRICT" -#~ msgstr "la fonction d'unification pour l'aggrégat %u doit être déclarée comme STRICT" - -#~ msgid "committed" -#~ msgstr "validé" - -#~ msgid "compacted fsync request queue from %d entries to %d entries" -#~ msgstr "a compacté la queue de requêtes fsync de %d entrées à %d" - -#~ msgid "composite type must have at least one attribute" -#~ msgstr "le type composite doit avoir au moins un attribut" - -#~ msgid "connect = false and copy_data = true are mutually exclusive options" -#~ msgstr "connect = false et copy_data = true sont des options mutuellement exclusives" - -#~ msgid "connect = false and create_slot = true are mutually exclusive options" -#~ msgstr "connect = false et create_slot = true sont des options mutuellement exclusives" - -#~ msgid "connection authorized: user=%s database=%s" -#~ msgstr "connexion autorisée : utilisateur=%s, base de données=%s" - -#~ msgid "connection authorized: user=%s database=%s SSL enabled (protocol=%s, cipher=%s, bits=%d, compression=%s)" -#~ msgstr "connexion autorisée : utilisateur=%s, base de données=%s, SSL activé (protocole=%s, chiffrement=%s, bits=%d, compression=%s)" - -#~ msgid "connection authorized: user=%s database=%s application_name=%s" -#~ msgstr "connexion autorisée : utilisateur=%s base de données=%s nom d'application=%s" - -#~ msgid "connection authorized: user=%s database=%s application_name=%s SSL enabled (protocol=%s, cipher=%s, bits=%d, compression=%s)" -#~ msgstr "connexion autorisée : utilisateur=%s base de données=%s nom d'application=%s SSL activé (protocole=%s, chiffrement=%s, bits=%d, compression=%s)" - -#~ msgid "connection limit exceeded for non-superusers" -#~ msgstr "limite de connexions dépassée pour les utilisateurs standards" - -#~ msgid "connection lost during COPY to stdout" -#~ msgstr "connexion perdue lors de l'opération COPY vers stdout" - -#~ msgid "connection was re-authenticated" -#~ msgstr "la connexion a été ré-authentifiée" - -#~ msgid "consistent state delayed because recovery snapshot incomplete" -#~ msgstr "état de cohérence pas encore atteint à cause d'un snapshot de restauration incomplet" - -#~ msgid "constraint definition for check constraint \"%s\" does not match" -#~ msgstr "" -#~ "la définition de la contrainte « %s » pour la contrainte de vérification ne\n" -#~ "correspond pas" - -#~ msgid "constraints on foreign tables are not supported" -#~ msgstr "les contraintes sur les tables distantes ne sont pas supportées" - -#~ msgid "converting trigger group into constraint \"%s\" %s" -#~ msgstr "conversion du groupe de trigger en une contrainte « %s » %s" - -#~ msgid "corrupted item pointer: offset = %u, length = %u" -#~ msgstr "pointeur d'élément corrompu : décalage = %u, longueur = %u" - -#~ msgid "could not access root certificate file \"%s\": %m" -#~ msgstr "n'a pas pu accéder au fichier du certificat racine « %s » : %m" - -#, c-format -#~ msgid "could not bind socket for statistics collector: %m" -#~ msgstr "n'a pas pu lier la socket au récupérateur de statistiques : %m" - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu changer le répertoire par « %s » : %s" - -#~ msgid "could not close control file: %m" -#~ msgstr "n'a pas pu fermer le fichier de contrôle : %m" - -#~ msgid "could not close directory \"%s\": %s\n" -#~ msgstr "n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "could not close log file %s: %m" -#~ msgstr "n'a pas pu fermer le fichier de transactions « %s » : %m" - -#~ msgid "could not close relation mapping file \"%s\": %m" -#~ msgstr "n'a pas pu fermer le fichier de correspondance des relations « %s » : %m" - -#~ msgid "could not close two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu fermer le fichier d'état de la validation en deux phases nommé\n" -#~ "« %s » : %m" - -#~ msgid "could not close two-phase state file: %m" -#~ msgstr "n'a pas pu fermer le fichier d'état de la validation en deux phases : %m" - -#~ msgid "could not complete SSL handshake on renegotiation, too many failures" -#~ msgstr "n'a pas pu terminer la poignée de main de renégotiation, trop d'échecs" - -#, c-format -#~ msgid "could not connect socket for statistics collector: %m" -#~ msgstr "n'a pas pu connecter la socket au récupérateur de statistiques : %m" - -#~ msgid "could not create %s socket: %m" -#~ msgstr "n'a pas pu créer le socket %s : %m" - -#~ msgid "could not create XPath object" -#~ msgstr "n'a pas pu créer l'objet XPath" - -#~ msgid "could not create control file \"%s\": %m" -#~ msgstr "n'a pas pu créer le fichier de contrôle « %s » : %m" - -#~ msgid "could not create log file \"%s\": %m" -#~ msgstr "n'a pas pu créer le journal applicatif « %s » : %m" - -#~ msgid "could not create signal dispatch thread: error code %lu\n" -#~ msgstr "n'a pas pu créer le thread de répartition des signaux : code d'erreur %lu\n" - -#, c-format -#~ msgid "could not create socket for statistics collector: %m" -#~ msgstr "n'a pas pu créer la socket pour le récupérateur de statistiques : %m" - -#~ msgid "could not create two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu créer le fichier de statut de la validation en deux phases nommé\n" -#~ "« %s » : %m" - -#, c-format -#~ msgid "could not delete shared fileset \"%s\": %m" -#~ msgstr "n'a pas pu supprimer l'ensemble de fichiers partagés « %s » : %m" - -#~ msgid "could not determine actual result type for function declared to return type %s" -#~ msgstr "" -#~ "n'a pas pu déterminer le type du résultat actuel pour la fonction déclarant\n" -#~ "renvoyer le type %s" - -#~ msgid "could not determine data type for argument 1" -#~ msgstr "n'a pas pu déterminer le type de données pour l'argument 1" - -#~ msgid "could not determine data type for argument 2" -#~ msgstr "n'a pas pu déterminer le type de données pour l'argument 2" - -#~ msgid "could not determine input data types" -#~ msgstr "n'a pas pu déterminer les types de données en entrée" - -#~ msgid "could not determine which collation to use for initcap() function" -#~ msgstr "n'a pas pu déterminer le collationnement à utiliser pour la fonction initcap()" - -#~ msgid "could not determine which collation to use for partition bound expression" -#~ msgstr "n'a pas pu déterminer le collationnement à utiliser pour l'expression de limites de partitionnement" - -#~ msgid "could not determine which collation to use for upper() function" -#~ msgstr "n'a pas pu déterminer le collationnement à utiliser pour la fonction upper()" - -#~ msgid "could not enable Lock Pages in Memory user right" -#~ msgstr "n'a pas pu activer le Lock Pages in Memory user right" - -#~ msgid "could not enable Lock Pages in Memory user right: error code %lu" -#~ msgstr "n'a pas pu activer le Lock Pages in Memory user right : code d'erreur %lu" - -#~ msgid "could not enable credential reception: %m" -#~ msgstr "n'a pas pu activer la réception de lettres de créance : %m" - -#~ msgid "could not extend relation %s: %m" -#~ msgstr "n'a pas pu étendre la relation %s : %m" - -#~ msgid "could not fdatasync log file %s: %m" -#~ msgstr "n'a pas pu synchroniser sur disque (fdatasync) le journal de transactions %s : %m" - -#~ msgid "could not fetch table info for table \"%s.%s\": %s" -#~ msgstr "n'a pas pu récupérer les informations sur la table « %s.%s » : %s" - -#~ msgid "could not fork archiver: %m" -#~ msgstr "n'a pas pu lancer le processus fils correspondant au processus d'archivage : %m" - -#, c-format -#~ msgid "could not fork statistics collector: %m" -#~ msgstr "" -#~ "n'a pas pu lancer le processus fils correspondant au récupérateur de\n" -#~ "statistiques : %m" - -#~ msgid "could not format \"circle\" value" -#~ msgstr "n'a pas pu formater la valeur « circle »" - -#~ msgid "could not format \"path\" value" -#~ msgstr "n'a pas pu formater la valeur « path »" - -#~ msgid "could not forward fsync request because request queue is full" -#~ msgstr "n'a pas pu envoyer la requête fsync car la queue des requêtes est pleine" - -#~ msgid "could not fseek in file \"%s\": %m" -#~ msgstr "n'a pas pu effectuer de fseek dans le fichier « %s » : %m" - -#~ msgid "could not fsync control file: %m" -#~ msgstr "n'a pas pu synchroniser sur disque (fsync) le fichier de contrôle : %m" - -#~ msgid "could not fsync file \"%s\" but retrying: %m" -#~ msgstr "" -#~ "n'a pas pu synchroniser sur disque (fsync) le fichier « %s », nouvelle\n" -#~ "tentative : %m" - -#~ msgid "could not fsync log file %s: %m" -#~ msgstr "n'a pas pu synchroniser sur disque (fsync) le fichier de transactions « %s » : %m" - -#~ msgid "could not fsync log segment %s: %m" -#~ msgstr "n'a pas pu synchroniser sur disque (fsync) le segment du journal des transactions %s : %m" - -#~ msgid "could not fsync relation mapping file \"%s\": %m" -#~ msgstr "n'a pas pu synchroniser (fsync) le fichier de correspondance des relations « %s » : %m" - -#~ msgid "could not fsync segment %u of relation %s but retrying: %m" -#~ msgstr "" -#~ "n'a pas pu synchroniser sur disque (fsync) le segment %u de la relation\n" -#~ "%s, nouvelle tentative : %m" - -#~ msgid "could not fsync segment %u of relation %s: %m" -#~ msgstr "" -#~ "n'a pas pu synchroniser sur disque (fsync) le segment %u de la relation\n" -#~ "%s : %m" - -#~ msgid "could not fsync two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu synchroniser sur disque (fsync) le fichier d'état de la\n" -#~ "validation en deux phases nommé « %s » : %m" - -#~ msgid "could not fsync two-phase state file: %m" -#~ msgstr "" -#~ "n'a pas pu synchroniser sur disque (fsync) le fichier d'état de la\n" -#~ "validation en deux phases : %m" - -#, c-format -#~ msgid "could not get address of socket for statistics collector: %m" -#~ msgstr "n'a pas pu obtenir l'adresse de la socket du récupérateur de statistiques : %m" - -#~ msgid "could not get effective UID from peer credentials: %m" -#~ msgstr "n'a pas pu obtenir l'UID réel à partir des pièces d'identité de l'autre : %m" - -#~ msgid "could not get keyword values for locale \"%s\": %s" -#~ msgstr "n'a pas pu obtenir les valeurs des mots clés pour la locale « %s » : %s" - -#~ msgid "could not get security token from context" -#~ msgstr "n'a pas pu récupérer le jeton de sécurité à partir du contexte" - -#~ msgid "could not identify current directory: %s" -#~ msgstr "n'a pas pu identifier le répertoire courant : %s" - -#~ msgid "could not link file \"%s\" to \"%s\" (initialization of log file): %m" -#~ msgstr "n'a pas pu lier le fichier « %s » à « %s » (initialisation du journal de transactions) : %m" - -#~ msgid "could not load wldap32.dll" -#~ msgstr "n'a pas pu charger wldap32.dll" - -#~ msgid "could not open %s: %m" -#~ msgstr "n'a pas pu ouvrir %s : %m" - -#~ msgid "could not open BufFile \"%s\"" -#~ msgstr "n'a pas pu ouvrir le BufFile « %s »" - -#~ msgid "could not open archive status directory \"%s\": %m" -#~ msgstr "n'a pas pu accéder au répertoire du statut des archives « %s » : %m" - -#~ msgid "could not open control file \"%s\": %m" -#~ msgstr "n'a pas pu ouvrir le fichier de contrôle « %s » : %m" - -#~ msgid "could not open directory \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "could not open directory \"pg_tblspc\": %m" -#~ msgstr "n'a pas pu ouvrir le répertoire « pg_tblspc » : %m" - -#~ msgid "could not open file \"%s\" (log file %u, segment %u): %m" -#~ msgstr "n'a pas pu ouvrir le fichier « %s » (journal de transactions %u, segment %u) : %m" - -#~ msgid "could not open new log file \"%s\": %m" -#~ msgstr "n'a pas pu ouvrir le nouveau journal applicatif « %s » : %m" - -#~ msgid "could not open recovery command file \"%s\": %m" -#~ msgstr "n'a pas pu ouvrir le fichier de restauration « %s » : %m" - -#~ msgid "could not open relation %s: %m" -#~ msgstr "n'a pas pu ouvrir la relation %s : %m" - -#~ msgid "could not open segment %u of relation %s: %m" -#~ msgstr "n'a pas pu ouvrir le segment %u de la relation %s : %m" - -#~ msgid "could not open tablespace directory \"%s\": %m" -#~ msgstr "n'a pas pu ouvrir le répertoire du tablespace « %s » : %m" - -#~ msgid "could not open two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu ouvrir le fichier d'état de la validation en deux phases nommé\n" -#~ "« %s » : %m" - -#~ msgid "could not open write-ahead log directory \"%s\": %m" -#~ msgstr "n'a pas pu ouvrir le répertoire des journaux de transactions « %s » : %m" - -#~ msgid "could not open write-ahead log file \"%s\": %m" -#~ msgstr "n'a pas pu écrire dans le journal de transactions « %s » : %m" - -#~ msgid "could not parse transaction log location \"%s\"" -#~ msgstr "n'a pas pu analyser l'emplacement du journal des transactions « %s »" - -#, c-format -#~ msgid "could not poll socket: %m" -#~ msgstr "n'a pas pu interroger la socket : %m" - -#~ msgid "could not read block %u of relation %s: %m" -#~ msgstr "n'a pas pu lire le bloc %u de la relation %s : %m" - -#~ msgid "could not read directory \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "could not read file \"%s\", read %d of %d: %m" -#~ msgstr "n'a pas pu lire le fichier « %s », lu %d sur %d : %m" - -#~ msgid "could not read file \"%s\", read %d of %u: %m" -#~ msgstr "n'a pas pu lire le fichier « %s », a lu %d sur %u : %m" - -#~ msgid "could not read file \"%s\": read %d of %d" -#~ msgstr "n'a pas pu lire le fichier « %s » : a lu %d sur %d" - -#~ msgid "could not read from control file: %m" -#~ msgstr "n'a pas pu lire le fichier de contrôle : %m" - -#~ msgid "could not read from control file: read %d bytes, expected %d" -#~ msgstr "n'a pas pu lire le fichier de contrôle : lu %d octets, %d attendus" - -#~ msgid "could not read from file \"%s\"" -#~ msgstr "n'a pas pu lire à partir du fichier « %s »" - -#~ msgid "could not read from log segment %s, offset %u, length %lu: %m" -#~ msgstr "n'a pas pu lire le journal de transactions %s, décalage %u, longueur %lu : %m" - -#~ msgid "could not read from log segment %s, offset %u, length %zu: %m" -#~ msgstr "n'a pas pu lire le segment %s du journal de transactions, décalage %u, longueur %zu : %m" - -#, c-format -#~ msgid "could not read from temporary file: %m" -#~ msgstr "n'a pas pu lire le fichier temporaire : %m" - -#~ msgid "could not read relation mapping file \"%s\": %m" -#~ msgstr "n'a pas pu lire le fichier de correspondance des relations « %s » : %m" - -#, c-format -#~ msgid "could not read statistics message: %m" -#~ msgstr "n'a pas pu lire le message des statistiques : %m" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "could not read two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu lire le fichier d'état de la validation en deux phases nommé\n" -#~ "« %s » : %m" - -#, c-format -#~ msgid "could not receive test message on socket for statistics collector: %m" -#~ msgstr "" -#~ "n'a pas pu recevoir le message de tests sur la socket du récupérateur de\n" -#~ "statistiques : %m" - -#~ msgid "could not recreate two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu re-créer le fichier d'état de la validation en deux phases nommé\n" -#~ "« %s » : %m" - -#~ msgid "could not remove database directory \"%s\"" -#~ msgstr "n'a pas pu supprimer le répertoire de bases de données « %s »" - -#~ msgid "could not remove file or directory \"%s\": %s\n" -#~ msgstr "n'a pas pu supprimer le fichier ou répertoire « %s » : %s\n" - -#~ msgid "could not remove old transaction log file \"%s\": %m" -#~ msgstr "n'a pas pu supprimer l'ancien journal de transaction « %s » : %m" - -#~ msgid "could not remove relation %s: %m" -#~ msgstr "n'a pas pu supprimer la relation %s : %m" - -#~ msgid "could not remove segment %u of relation %s: %m" -#~ msgstr "n'a pas pu supprimer le segment %u de la relation %s : %m" - -#~ msgid "could not remove two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu supprimer le fichier d'état de la validation en deux phases\n" -#~ "« %s » : %m" - -#~ msgid "could not rename file \"%s\" to \"%s\" (initialization of log file): %m" -#~ msgstr "n'a pas pu renommer le fichier « %s » en « %s » (initialisation du journal de transactions) : %m" - -#~ msgid "could not rename old write-ahead log file \"%s\": %m" -#~ msgstr "n'a pas pu renommer l'ancien journal de transactions « %s » : %m" - -#~ msgid "could not reposition held cursor" -#~ msgstr "n'a pas pu repositionner le curseur détenu" - -#~ msgid "could not reread block %d of file \"%s\": %m" -#~ msgstr "n'a pas pu relire le bloc %d dans le fichier « %s » : %m" - -#, c-format -#~ msgid "could not resolve \"localhost\": %s" -#~ msgstr "n'a pas pu résoudre « localhost » : %s" - -#~ msgid "could not rmdir directory \"%s\": %m" -#~ msgstr "n'a pas pu supprimer le répertoire « %s » : %m" - -#~ msgid "could not seek in log file %s to offset %u: %m" -#~ msgstr "n'a pas pu se déplacer dans le fichier de transactions « %s » au décalage %u : %m" - -#~ msgid "could not seek in log segment %s to offset %u: %m" -#~ msgstr "n'a pas pu se déplacer dans le journal de transactions %s au décalage %u : %m" - -#~ msgid "could not seek in two-phase state file: %m" -#~ msgstr "" -#~ "n'a pas pu se déplacer dans le fichier de statut de la validation en deux\n" -#~ "phases : %m" - -#~ msgid "could not seek to block %u in file \"%s\": %m" -#~ msgstr "n'a pas pu trouver le bloc %u dans le fichier « %s » : %m" - -#~ msgid "could not seek to block %u of relation %s: %m" -#~ msgstr "n'a pas pu se positionner sur le bloc %u de la relation %s : %m" - -#~ msgid "could not seek to end of segment %u of relation %s: %m" -#~ msgstr "n'a pas pu se déplacer à la fin du segment %u de la relation %s : %m" - -#, c-format -#~ msgid "could not send test message on socket for statistics collector: %m" -#~ msgstr "" -#~ "n'a pas pu envoyer le message de tests sur la socket du récupérateur de\n" -#~ "statistiques : %m" - -#~ msgid "could not set socket to blocking mode: %m" -#~ msgstr "n'a pas pu activer le mode bloquant pour la socket : %m" - -#, c-format -#~ msgid "could not set statistics collector socket to nonblocking mode: %m" -#~ msgstr "" -#~ "n'a pas pu initialiser la socket du récupérateur de statistiques dans le mode\n" -#~ "non bloquant : %m" - -#~ msgid "could not set statistics collector timer: %m" -#~ msgstr "n'a pas pu configurer le timer du récupérateur de statistiques : %m" - -#~ msgid "could not stat control file \"%s\": %m" -#~ msgstr "n'a pas pu récupérer des informations sur le fichier de contrôle « %s » : %m" - -#~ msgid "could not stat file or directory \"%s\": %s\n" -#~ msgstr "" -#~ "n'a pas pu récupérer les informations sur le fichier ou répertoire\n" -#~ "« %s » : %s\n" - -#~ msgid "could not stat two-phase state file \"%s\": %m" -#~ msgstr "" -#~ "n'a pas pu récupérer des informations sur le fichier d'état de la validation\n" -#~ "en deux phases nommé « %s » : %m" - -#~ msgid "could not write block %ld of temporary file: %m" -#~ msgstr "n'a pas pu écrire le bloc %ld du fichier temporaire : %m" - -#~ msgid "could not write block %u of relation %s: %m" -#~ msgstr "n'a pas pu écrire le bloc %u de la relation %s : %m" - -#~ msgid "could not write to control file: %m" -#~ msgstr "n'a pas pu écrire le fichier de contrôle : %m" - -#~ msgid "could not write to hash-join temporary file: %m" -#~ msgstr "n'a pas pu écrire le fichier temporaire de la jointure hâchée : %m" - -#~ msgid "could not write to relation mapping file \"%s\": %m" -#~ msgstr "n'a pas pu écrire le fichier de correspondance des relations « %s » : %m" - -#~ msgid "could not write to temporary file: %m" -#~ msgstr "n'a pas pu écrire dans le fichier temporaire : %m" - -#~ msgid "could not write to tuplestore temporary file: %m" -#~ msgstr "n'a pas pu écrire le fichier temporaire tuplestore : %m" - -#~ msgid "could not write two-phase state file: %m" -#~ msgstr "n'a pas pu écrire dans le fichier d'état de la validation en deux phases : %m" - -#, fuzzy -#~ msgid "couldn't put socket to blocking mode: %m" -#~ msgstr "n'a pas pu activer le mode bloquant pour la socket : %s\n" - -#, fuzzy -#~ msgid "couldn't put socket to non-blocking mode: %m" -#~ msgstr "n'a pas pu activer le mode non-bloquant pour la socket : %s\n" - -#~ msgid "data directory \"%s\" has group or world access" -#~ msgstr "" -#~ "le répertoire des données « %s » est accessible par le groupe et/ou par les\n" -#~ "autres" - -#~ msgid "data type \"%s.%s\" required for logical replication does not exist" -#~ msgstr "le type de données « %s/%s » requis par la réplication logique n'existe pas" - -#~ msgid "data type %s has no default btree operator class" -#~ msgstr "le type de données %s n'a pas de classe d'opérateurs btree par défaut" - -#~ msgid "data type %s has no default hash operator class" -#~ msgstr "le type de données %s n'a pas de classe d'opérateurs hash par défaut" - -#~ msgid "database \"%s\" not found" -#~ msgstr "base de données « %s » non trouvée" - -#, c-format -#~ msgid "database hash table corrupted during cleanup --- abort" -#~ msgstr "" -#~ "corruption de la table hachée de la base de données lors du lancement\n" -#~ "--- annulation" - -#~ msgid "database name cannot be qualified" -#~ msgstr "le nom de la base de donnée ne peut être qualifié" - -#~ msgid "database system is in consistent recovery mode" -#~ msgstr "le système de bases de données est dans un mode de restauration cohérent" - -#~ msgid "date/time value \"%s\" is no longer supported" -#~ msgstr "la valeur date/time « %s » n'est plus supportée" - -#~ msgid "date/time value \"current\" is no longer supported" -#~ msgstr "la valeur « current » pour la date et heure n'est plus supportée" - -#~ msgid "default expression must not return a set" -#~ msgstr "l'expression par défaut ne doit pas renvoyer un ensemble" - -#~ msgid "default values on foreign tables are not supported" -#~ msgstr "les valeurs par défaut ne sont pas supportées sur les tables distantes" - -#~ msgid "deferrable snapshot was unsafe; trying a new one" -#~ msgstr "l'image déferrable est non sûre ; tentative avec une nouvelle image" - -#~ msgid "directory \"%s\" is not empty" -#~ msgstr "le répertoire « %s » n'est pas vide" - -#~ msgid "disabling huge pages" -#~ msgstr "désactivation des Huge Pages" - -#, c-format -#~ msgid "disabling statistics collector for lack of working socket" -#~ msgstr "" -#~ "désactivation du récupérateur de statistiques à cause du manque de socket\n" -#~ "fonctionnel" - -#~ msgid "distance in phrase operator should be non-negative and less than %d" -#~ msgstr "la distance dans l'opérateur de phrase devrait être non négative et inférieure à %d" - -#~ msgid "domain %s has multiple constraints named \"%s\"" -#~ msgstr "le domaine %s a plusieurs contraintes nommées « %s »" - -#~ msgid "drop auto-cascades to %s" -#~ msgstr "DROP cascade automatiquement sur %s" - -#~ msgid "encoding name too long" -#~ msgstr "nom d'encodage trop long" - -#~ msgid "epoll_ctl() failed: %m" -#~ msgstr "échec de epoll_ctl() : %m" - -#~ msgid "epoll_wait() failed: %m" -#~ msgstr "échec de epoll_wait() : %m" - -#~ msgid "event trigger name cannot be qualified" -#~ msgstr "le nom du trigger sur événement ne peut pas être qualifié" - -#, c-format -#~ msgid "exclusive backup not in progress" -#~ msgstr "une sauvegarde exclusive n'est pas en cours" - -#~ msgid "existing constraints on column \"%s.%s\" are sufficient to prove that it does not contain nulls" -#~ msgstr "les contraintes existantes sur la colonne « %s.%s » sont suffisantes pour prouver qu'elle ne contient aucun NULL" - -#~ msgid "extension name cannot be qualified" -#~ msgstr "le nom de l'extension ne peut pas être qualifié" - -#~ msgid "failed to create BIO" -#~ msgstr "échec pour la création de BIO" - -#~ msgid "failed to drop all objects depending on %s" -#~ msgstr "échec lors de la suppression de tous les objets dépendant de %s" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "fillfactor=%d is out of range (should be between %d and 100)" -#~ msgstr "le facteur de remplissage (%d) est en dehors des limites (il devrait être entre %d et 100)" - -#~ msgid "first argument of json_populate_record must be a row type" -#~ msgstr "le premier argument de json_populate_record doit être un type ROW" - -#~ msgid "first argument of json_populate_recordset must be a row type" -#~ msgstr "le premier argument de json_populate_recordset doit être un type ROW" - -#~ msgid "foreign key constraint \"%s\" of relation \"%s\" does not exist" -#~ msgstr "la clé étrangère « %s » de la relation « %s » n'existe pas" - -#~ msgid "foreign key constraints are not supported on partitioned tables" -#~ msgstr "les clés étrangères ne sont pas supportées sur les tables partitionnées" - -#~ msgid "foreign key referencing partitioned table \"%s\" must not be ONLY" -#~ msgstr "la clé étrangère référençant la table partitionnée « %s » ne doit pas être ONLY" - -#~ msgid "foreign-data wrapper name cannot be qualified" -#~ msgstr "le nom du wrapper de données distantes ne peut pas être qualifié" - -#~ msgid "frame start at CURRENT ROW is not implemented" -#~ msgstr "début du frame à CURRENT ROW n'est pas implémenté" - -#~ msgid "free space map contains %d pages in %d relations" -#~ msgstr "la structure FSM contient %d pages dans %d relations" - -#~ msgid "function \"%s\" already exists in schema \"%s\"" -#~ msgstr "la fonction « %s » existe déjà dans le schéma « %s »" - -#~ msgid "function \"%s\" is an aggregate function" -#~ msgstr "la fonction « %s » est une fonction d'agrégat" - -#~ msgid "function \"%s\" is not an aggregate function" -#~ msgstr "la fonction « %s » n'est pas une fonction d'agrégat" - -#~ msgid "function \"%s\" must return type \"event_trigger\"" -#~ msgstr "la fonction « %s » doit renvoyer le type « event_trigger »" - -#, c-format -#~ msgid "function \"close_lb\" not implemented" -#~ msgstr "la fonction « close_lb » n'est pas implémentée" - -#, c-format -#~ msgid "function \"close_sl\" not implemented" -#~ msgstr "la fonction « close_sl » n'est pas implémentée" - -#, c-format -#~ msgid "function \"dist_bl\" not implemented" -#~ msgstr "fonction « dist_lb » non implémentée" - -#, c-format -#~ msgid "function \"dist_lb\" not implemented" -#~ msgstr "la fonction « dist_lb » n'est pas implémentée" - -#, c-format -#~ msgid "function \"path_center\" not implemented" -#~ msgstr "la fonction « path_center » n'est pas implémentée" - -#, c-format -#~ msgid "function \"poly_distance\" not implemented" -#~ msgstr "la fonction « poly_distance » n'est pas implémentée" - -#~ msgid "function %s must return type \"fdw_handler\"" -#~ msgstr "la fonction %s doit renvoyer le type « fdw_handler »" - -#~ msgid "function %s must return type \"language_handler\"" -#~ msgstr "la fonction %s doit renvoyer le type « language_handler »" - -#~ msgid "function %s must return type \"trigger\"" -#~ msgstr "la fonction %s doit renvoyer le type « trigger »" - -#~ msgid "function %s must return type \"tsm_handler\"" -#~ msgstr "la fonction %s doit renvoyer le type « tsm_handler »" - -#~ msgid "function %u has too many arguments (%d, maximum is %d)" -#~ msgstr "la fonction %u a trop d'arguments (%d, le maximum étant %d)" - -#~ msgid "function expression in FROM cannot refer to other relations of same query level" -#~ msgstr "" -#~ "l'expression de la fonction du FROM ne peut pas faire référence à d'autres\n" -#~ "relations sur le même niveau de la requête" - -#~ msgid "function returning set of rows cannot return null value" -#~ msgstr "" -#~ "la fonction renvoyant un ensemble de lignes ne peut pas renvoyer une valeur\n" -#~ "NULL" - -#~ msgid "functions and operators can take at most one set argument" -#~ msgstr "les fonctions et opérateurs peuvent prendre au plus un argument d'ensemble" - -#~ msgid "gist operator family \"%s\" contains function %s with invalid support number %d" -#~ msgstr "" -#~ "la famille d'opérateur gist « %s » contient la fonction %s avec\n" -#~ "le numéro de support invalide %d" - -#~ msgid "gist operator family \"%s\" contains function %s with wrong signature for support number %d" -#~ msgstr "" -#~ "la famille d'opérateur gist « %s » contient la fonction %s avec une mauvaise\n" -#~ "signature pour le numéro de support %d" - -#~ msgid "gist operator family \"%s\" contains operator %s with invalid strategy number %d" -#~ msgstr "" -#~ "la famille d'opérateur gist « %s » contient l'opérateur %s avec le numéro\n" -#~ "de stratégie invalide %d" - -#~ msgid "gist operator family \"%s\" contains operator %s with wrong signature" -#~ msgstr "la famille d'opérateur gist « %s » contient l'opérateur %s avec une mauvaise signature" - -#~ msgid "gist operator family \"%s\" contains support procedure %s with cross-type registration" -#~ msgstr "" -#~ "la famille d'opérateur gist « %s » contient la procédure de support\n" -#~ "%s avec un enregistrement inter-type" - -#~ msgid "hash indexes are not WAL-logged and their use is discouraged" -#~ msgstr "les index hash ne sont pas journalisés, leur utilisation est donc déconseillée" - -#~ msgid "hash operator class \"%s\" is missing operator(s)" -#~ msgstr "il manque des opérateurs pour la classe d'opérateur hash « %s »" - -#~ msgid "hash operator family \"%s\" contains function %s with invalid support number %d" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » contient la fonction %s avec\n" -#~ "le numéro de support invalide %d" - -#~ msgid "hash operator family \"%s\" contains function %s with wrong signature for support number %d" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » contient la fonction %s avec une mauvaise\n" -#~ "signature pour le numéro de support %d" - -#~ msgid "hash operator family \"%s\" contains invalid ORDER BY specification for operator %s" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » contient la spécification ORDER BY\n" -#~ "non supportée pour l'opérateur %s" - -#~ msgid "hash operator family \"%s\" contains operator %s with invalid strategy number %d" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » contient l'opérateur %s avec le numéro\n" -#~ "de stratégie invalide %d" - -#~ msgid "hash operator family \"%s\" contains operator %s with wrong signature" -#~ msgstr "la famille d'opérateur hash « %s » contient l'opérateur %s avec une mauvaise signature" - -#~ msgid "hash operator family \"%s\" contains support procedure %s with cross-type registration" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » contient la procédure de support\n" -#~ "%s avec un enregistrement inter-type" - -#~ msgid "hash operator family \"%s\" is missing operator(s) for types %s and %s" -#~ msgstr "" -#~ "la famille d'opérateur hash « %s » nécessite des opérateurs supplémentaires\n" -#~ "pour les types %s et %s" - -#~ msgid "hostssl requires SSL to be turned on" -#~ msgstr "hostssl requiert que SSL soit activé" - -#~ msgid "huge TLB pages not supported on this platform" -#~ msgstr "Huge Pages TLB non supporté sur cette plateforme." - -#~ msgid "hurrying in-progress restartpoint" -#~ msgstr "accélération du restartpoint en cours" - -#~ msgid "ignoring \"%s\" file because no \"%s\" file exists" -#~ msgstr "ignore le fichier « %s » parce que le fichier « %s » n'existe pas" - -#~ msgid "ignoring incomplete trigger group for constraint \"%s\" %s" -#~ msgstr "ignore le groupe de trigger incomplet pour la contrainte « %s » %s" - -#~ msgid "in progress" -#~ msgstr "en cours" - -#~ msgid "inconsistent use of year %04d and \"BC\"" -#~ msgstr "utilisation non cohérente de l'année %04d et de « BC »" - -#~ msgid "incorrect hole size in record at %X/%X" -#~ msgstr "taille du trou incorrect à l'enregistrement %X/%X" - -#, c-format -#~ msgid "incorrect test message transmission on socket for statistics collector" -#~ msgstr "" -#~ "transmission incorrecte du message de tests sur la socket du récupérateur de\n" -#~ "statistiques" - -#~ msgid "incorrect total length in record at %X/%X" -#~ msgstr "longueur totale incorrecte à l'enregistrement %X/%X" - -#~ msgid "index \"%s\" is not a b-tree" -#~ msgstr "l'index « %s » n'est pas un btree" - -#~ msgid "index \"%s\" is not ready" -#~ msgstr "l'index « %s » n'est pas prêt" - -#~ msgid "index \"%s\" needs VACUUM FULL or REINDEX to finish crash recovery" -#~ msgstr "" -#~ "l'index « %s » a besoin d'un VACUUM FULL ou d'un REINDEX pour terminer la\n" -#~ "récupération suite à un arrêt brutal" - -#~ msgid "index \"%s\" needs VACUUM or REINDEX to finish crash recovery" -#~ msgstr "" -#~ "l'index « %s » a besoin d'un VACUUM ou d'un REINDEX pour terminer la\n" -#~ "récupération suite à un arrêt brutal" - -#~ msgid "index \"%s\" now contains %.0f row versions in %u pages as reported by parallel vacuum worker" -#~ msgstr "l'index « %s » contient maintenant %.0f versions de lignes dans %u pages, comme indiqué par le worker parallélisé du VACUUM" - -#~ msgid "index %u/%u/%u needs VACUUM FULL or REINDEX to finish crash recovery" -#~ msgstr "" -#~ "l'index %u/%u/%u a besoin d'un VACUUM FULL ou d'un REINDEX pour terminer la\n" -#~ "récupération suite à un arrêt brutal" - -#~ msgid "index expression cannot return a set" -#~ msgstr "l'expression de l'index ne peut pas renvoyer un ensemble" - -#~ msgid "index row size %lu exceeds btree maximum, %lu" -#~ msgstr "la taille de la ligne index %lu dépasse le maximum de btree, %lu" - -#~ msgid "index row size %lu exceeds maximum %lu for index \"%s\"" -#~ msgstr "la taille de la ligne index, %lu, dépasse le maximum, %lu, pour l'index « %s »" - -#~ msgid "initializing for hot standby" -#~ msgstr "initialisation pour « Hot Standby »" - -#~ msgid "insufficient columns in %s constraint definition" -#~ msgstr "colonnes infuffisantes dans la définition de contrainte de %s" - -#~ msgid "insufficient shared memory for free space map" -#~ msgstr "mémoire partagée insuffisante pour la structure FSM" - -#, c-format -#~ msgid "int2vector has too many elements" -#~ msgstr "int2vector a trop d'éléments" - -#~ msgid "interval precision specified twice" -#~ msgstr "précision d'intervalle spécifiée deux fois" - -#, c-format -#~ msgid "interval units \"%s\" not recognized" -#~ msgstr "les unités « %s » ne sont pas reconnues pour le type interval" - -#, c-format -#~ msgid "interval units \"%s\" not supported" -#~ msgstr "les unités « %s » ne sont pas supportées pour le type interval" - -#~ msgid "invalid LC_CTYPE setting" -#~ msgstr "paramètre LC_CTYPE invalide" - -#~ msgid "invalid MVNDistinct size %zd (expected at least %zd)" -#~ msgstr "taille MVNDistinct %zd invalide (attendue au moins %zd)" - -#~ msgid "invalid OID in COPY data" -#~ msgstr "OID invalide dans les données du COPY" - -#, fuzzy -#~ msgid "invalid WAL message received from primary" -#~ msgstr "format du message invalide" - -#~ msgid "invalid backup block size in record at %X/%X" -#~ msgstr "taille du bloc de sauvegarde invalide dans l'enregistrement à %X/%X" - -#, c-format -#~ msgid "invalid compressed image at %X/%X, block %d" -#~ msgstr "image compressée invalide à %X/%X, bloc %d" - -#~ msgid "invalid concatenation of jsonb objects" -#~ msgstr "concaténation invalide d'objets jsonb" - -#~ msgid "invalid contrecord length %u at %X/%X reading %X/%X, expected %u" -#~ msgstr "longueur %u invalide du contrecord à %X/%X en lisant %X/%X, attendait %u" - -#~ msgid "invalid contrecord length %u in log file %u, segment %u, offset %u" -#~ msgstr "" -#~ "longueur invalide du « contrecord » %u dans le journal de tranasctions %u,\n" -#~ "segment %u, décalage %u" - -#~ msgid "invalid entry in file \"%s\" at line %d, token \"%s\"" -#~ msgstr "entrée invalide dans le fichier « %s » à la ligne %d, jeton « %s »" - -#~ msgid "invalid hexadecimal digit" -#~ msgstr "chiffre hexadécimal invalide" - -#~ msgid "invalid input syntax for %s: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type %s : « %s »" - -#~ msgid "invalid input syntax for integer: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour l'entier : « %s »" - -#~ msgid "invalid input syntax for numeric time zone: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le fuseau horaire numérique : « %s »" - -#~ msgid "invalid input syntax for transaction log location: \"%s\"" -#~ msgstr "syntaxe invalide en entrée pour l'emplacement du journal de transactions : « %s »" - -#~ msgid "invalid input syntax for type boolean: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type booléen : « %s »" - -#~ msgid "invalid input syntax for type box: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type box : « %s »" - -#~ msgid "invalid input syntax for type bytea" -#~ msgstr "syntaxe en entrée invalide pour le type bytea" - -#~ msgid "invalid input syntax for type circle: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type circle : « %s »" - -#~ msgid "invalid input syntax for type double precision: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type double precision : « %s »" - -#~ msgid "invalid input syntax for type line: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type line: « %s »" - -#~ msgid "invalid input syntax for type lseg: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type lseg : « %s »" - -#~ msgid "invalid input syntax for type macaddr: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type macaddr : « %s »" - -#~ msgid "invalid input syntax for type money: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type money : « %s »" - -#~ msgid "invalid input syntax for type numeric: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type numeric : « %s »" - -#~ msgid "invalid input syntax for type oid: \"%s\"" -#~ msgstr "syntaxe invalide en entrée pour le type oid : « %s »" - -#~ msgid "invalid input syntax for type path: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type path : « %s »" - -#~ msgid "invalid input syntax for type pg_lsn: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type pg_lsn : « %s »" - -#~ msgid "invalid input syntax for type point: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type point : « %s »" - -#~ msgid "invalid input syntax for type polygon: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type polygon : « %s »" - -#~ msgid "invalid input syntax for type real: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type real : « %s »" - -#~ msgid "invalid input syntax for type tid: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type tid : « %s »" - -#~ msgid "invalid input syntax for type tinterval: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type tinterval : « %s »" - -#~ msgid "invalid input syntax for type txid_snapshot: \"%s\"" -#~ msgstr "syntaxe en entrée invalide pour le type txid_snapshot : « %s »" - -#~ msgid "invalid input syntax for uuid: \"%s\"" -#~ msgstr "syntaxe invalide en entrée pour l'uuid : « %s »" - -#~ msgid "invalid interval value for time zone: day not allowed" -#~ msgstr "valeur d'intervalle invalide pour le fuseau horaire : jour non autorisé" - -#~ msgid "invalid interval value for time zone: month not allowed" -#~ msgstr "valeur d'intervalle invalide pour le fuseau horaire : les mois ne sont pas autorisés" - -#~ msgid "invalid length in external \"numeric\" value" -#~ msgstr "longueur invalide dans la valeur externe « numeric »" - -#~ msgid "invalid length of secondary checkpoint record" -#~ msgstr "longueur invalide de l'enregistrement secondaire du point de vérification" - -#, c-format -#~ msgid "invalid list syntax for \"publish\" option" -#~ msgstr "syntaxe de liste invalide pour l'option « publish »" - -#~ msgid "invalid list syntax for \"unix_socket_directories\"" -#~ msgstr "syntaxe de liste invalide pour le paramètre « unix_socket_directories »" - -#~ msgid "invalid list syntax for parameter \"datestyle\"" -#~ msgstr "syntaxe de liste invalide pour le paramètre « datestyle »" - -#~ msgid "invalid list syntax for parameter \"log_destination\"" -#~ msgstr "syntaxe de liste invalide pour le paramètre « log_destination »" - -#~ msgid "invalid ndistinct magic %08x (expected %08x)" -#~ msgstr "nombre magique ndistinct invalide %08x (attendu %08x)" - -#~ msgid "invalid ndistinct type %d (expected %d)" -#~ msgstr "type ndistinct invalide %d (%d attendu)" - -#~ msgid "invalid number of arguments: object must be matched key value pairs" -#~ msgstr "nombre d'arguments invalide : l'objet doit correspond aux paires clé/valeur" - -#~ msgid "invalid privilege type USAGE for table" -#~ msgstr "droit USAGE invalide pour la table" - -#~ msgid "invalid procedure number %d, must be between 1 and %d" -#~ msgstr "numéro de procédure %d invalide, doit être compris entre 1 et %d" - -#~ msgid "invalid publish list" -#~ msgstr "liste de publication invalide" - -#~ msgid "invalid record length at %X/%X" -#~ msgstr "longueur invalide de l'enregistrement à %X/%X" - -#~ msgid "invalid regexp option: \"%c\"" -#~ msgstr "option invalide de l'expression rationnelle : « %c »" - -#~ msgid "invalid resource manager ID in secondary checkpoint record" -#~ msgstr "identifiant du gestionnaire de ressource invalide dans l'enregistrement secondaire du point de vérification" - -#~ msgid "invalid role name \"%s\"" -#~ msgstr "nom de rôle « %s » invalide" - -#~ msgid "invalid role password \"%s\"" -#~ msgstr "mot de passe « %s » de l'utilisateur invalide" - -#~ msgid "invalid secondary checkpoint link in control file" -#~ msgstr "lien du point de vérification secondaire invalide dans le fichier de contrôle" - -#~ msgid "invalid secondary checkpoint record" -#~ msgstr "enregistrement du point de vérification secondaire invalide" - -#~ msgid "invalid socket: %s" -#~ msgstr "socket invalide : %s" - -#~ msgid "invalid standby handshake message type %d" -#~ msgstr "type %d du message de handshake du serveur en attente invalide" - -#~ msgid "invalid standby query string: %s" -#~ msgstr "chaîne de requête invalide sur le serveur en attente : %s" - -#~ msgid "invalid status in external \"tinterval\" value" -#~ msgstr "statut invalide dans la valeur externe « tinterval »" - -#~ msgid "invalid symbol" -#~ msgstr "symbole invalide" - -#~ msgid "invalid time zone name: \"%s\"" -#~ msgstr "nom du fuseau horaire invalide : « %s »" - -#~ msgid "invalid value for \"buffering\" option" -#~ msgstr "valeur invalide pour l'option « buffering »" - -#~ msgid "invalid value for \"check_option\" option" -#~ msgstr "valeur invalide pour l'option « check_option »" - -#~ msgid "invalid value for parameter \"replication\"" -#~ msgstr "valeur invalide pour le paramètre « replication »" - -#~ msgid "invalid value for recovery parameter \"%s\": \"%s\"" -#~ msgstr "valeur invalide pour le paramètre de restauration « %s » : « %s »" - -#~ msgid "invalid value for recovery parameter \"recovery_target\"" -#~ msgstr "valeur invalide pour le paramètre de restauration « recovery_target »" - -#~ msgid "invalid xl_info in secondary checkpoint record" -#~ msgstr "xl_info invalide dans l'enregistrement du point de vérification secondaire" - -#~ msgid "invalid xlog switch record at %X/%X" -#~ msgstr "enregistrement de basculement du journal de transaction invalide à %X/%X" - -#~ msgid "invalid zero-length item array in MVDependencies" -#~ msgstr "tableau d'éléments de longueur zéro invalide dans MVDependencies" - -#~ msgid "invalid zero-length item array in MVNDistinct" -#~ msgstr "tableau d'élément de longueur zéro invalide dans MVNDistinct" - -#~ msgid "krb5 authentication is not supported on local sockets" -#~ msgstr "" -#~ "l'authentification krb5 n'est pas supportée sur les connexions locales par\n" -#~ "socket" - -#~ msgid "language name cannot be qualified" -#~ msgstr "le nom du langage ne peut pas être qualifié" - -#~ msgid "large object %u was already dropped" -#~ msgstr "le « Large Object » %u a déjà été supprimé" - -#~ msgid "large object %u was not opened for writing" -#~ msgstr "le « Large Object » %u n'a pas été ouvert en écriture" - -#~ msgid "leftover placeholder tuple detected in BRIN index \"%s\", deleting" -#~ msgstr "reste d'espace de ligne réservé dans l'index BRIN « %s », suppression" - -#~ msgid "loaded library \"%s\"" -#~ msgstr "bibliothèque « %s » chargée" - -#~ msgid "log_restartpoints = %s" -#~ msgstr "log_restartpoints = %s" - -#~ msgid "logger shutting down" -#~ msgstr "arrêt en cours des journaux applicatifs" - -#~ msgid "logical replication apply worker for subscription \"%s\" will restart because subscription's publications were changed" -#~ msgstr "le processus apply de réplication logique pour la souscription « %s » redémarrera car les publications ont été modifiées" - -#~ msgid "logical replication apply worker for subscription \"%s\" will restart because the connection information was changed" -#~ msgstr "le processus apply de réplication logique pour la souscription « %s » redémarrera car la souscription a été modifiée" - -#~ msgid "logical replication apply worker for subscription \"%s\" will restart because the replication slot name was changed" -#~ msgstr "le processus apply de réplication logique pour la souscription « %s » redémarrera car le nom du slot de réplication a été modifiée" - -#~ msgid "logical replication at prepare time requires begin_prepare_cb callback" -#~ msgstr "la réplication logique lors de la préparation requiert la fonction begin_prepare_cb" - -#~ msgid "logical replication at prepare time requires commit_prepared_cb callback" -#~ msgstr "la réplication logique lors de la préparation requiert la fonction commit_prepared_cb" - -#~ msgid "logical replication at prepare time requires rollback_prepared_cb callback" -#~ msgstr "la réplication logique lors de la préparation requiert la fonction rollback_prepared_cb" - -#~ msgid "logical replication could not find row for delete in replication target relation \"%s\"" -#~ msgstr "la réplication logique n'a pas pu trouver la ligne à supprimer dans la relation cible de réplication %s" - -#~ msgid "logical replication launcher shutting down" -#~ msgstr "arrêt du processus de lancement de la réplication logique" - -#~ msgid "logical replication launcher started" -#~ msgstr "lancement du processus de lancement de la réplication logique" - -#~ msgid "logical replication target relation \"%s.%s\" is not a table" -#~ msgstr "la relation cible de la réplication logique « %s.%s » n'est pas une table" - -#~ msgid "logical streaming requires a stream_abort_cb callback" -#~ msgstr "le flux logique requiert une fonction stream_abort_cb" - -#~ msgid "logical streaming requires a stream_change_cb callback" -#~ msgstr "le flux logique requiert une fonction stream_change_cb" - -#~ msgid "logical streaming requires a stream_commit_cb callback" -#~ msgstr "la réplication logique requiert la fonction stream_commit_cb" - -#~ msgid "logical streaming requires a stream_start_cb callback" -#~ msgstr "le flux logique requiert une fonction stream_start_cb" - -#~ msgid "mapped win32 error code %lu to %d" -#~ msgstr "correspondance du code d'erreur win32 %lu en %d" - -#~ msgid "max_fsm_pages must exceed max_fsm_relations * %d" -#~ msgstr "max_fsm_pages doit excéder max_fsm_relations * %d" - -#~ msgid "max_fsm_relations(%d) equals the number of relations checked" -#~ msgstr "max_fsm_relations(%d) équivaut au nombre de relations tracées" - -#~ msgid "memory for serializable conflict tracking is nearly exhausted" -#~ msgstr "la mémoire pour tracer les conflits sérialisables est pratiquement pleine" - -#~ msgid "missing FROM-clause entry in subquery for table \"%s\"" -#~ msgstr "entrée manquante de la clause FROM dans la sous-requête de la table « %s »" - -#~ msgid "missing assignment operator" -#~ msgstr "opérateur d'affectation manquant" - -#, c-format -#~ msgid "missing contrecord at %X/%X" -#~ msgstr "contrecord manquant à %X/%X" - -#~ msgid "missing data for OID column" -#~ msgstr "données manquantes pour la colonne OID" - -#~ msgid "missing field in file \"%s\" at end of line %d" -#~ msgstr "champ manquant dans le fichier « %s » à la fin de la ligne %d" - -#~ msgid "missing or erroneous pg_hba.conf file" -#~ msgstr "fichier pg_hba.conf manquant ou erroné" - -#~ msgid "moving row to another partition during a BEFORE trigger is not supported" -#~ msgstr "déplacer une ligne vers une autre partition lors de l'exécution d'un trigger BEFORE n'est pas supporté" - -#~ msgid "multibyte flag character is not allowed" -#~ msgstr "un caractère drapeau multi-octet n'est pas autorisé" - -#~ msgid "multiple DELETE events specified" -#~ msgstr "multiples événements DELETE spécifiés" - -#~ msgid "multiple TRUNCATE events specified" -#~ msgstr "multiples événements TRUNCATE spécifiés" - -#~ msgid "multiple constraints named \"%s\" were dropped" -#~ msgstr "les contraintes multiples nommées « %s » ont été supprimées" - -#, c-format -#~ msgid "must be a superuser to log memory contexts" -#~ msgstr "doit être super-utilisateur pour tracer les contextes mémoires" - -#~ msgid "must be superuser or have the same role to cancel queries running in other server processes" -#~ msgstr "" -#~ "doit être super-utilisateur ou avoir le même rôle pour annuler des requêtes\n" -#~ "exécutées dans les autres processus serveur" - -#~ msgid "must be superuser or have the same role to terminate other server processes" -#~ msgstr "" -#~ "doit être super-utilisateur ou avoir le même rôle pour fermer les connexions\n" -#~ "exécutées dans les autres processus serveur" - -#~ msgid "must be superuser or replication role to run a backup" -#~ msgstr "doit être super-utilisateur ou avoir l'attribut de réplication pour exécuter une sauvegarde" - -#~ msgid "must be superuser to COPY to or from a file" -#~ msgstr "doit être super-utilisateur pour utiliser COPY à partir ou vers un fichier" - -#~ msgid "must be superuser to alter replication users" -#~ msgstr "doit être super-utilisateur pour modifier des utilisateurs ayant l'attribut réplication" - -#, c-format -#~ msgid "must be superuser to call pg_nextoid()" -#~ msgstr "doit être un super-utilisateur pour appeller pg_nextoid()" - -#~ msgid "must be superuser to comment on procedural language" -#~ msgstr "" -#~ "doit être super-utilisateur pour ajouter un commentaire sur un langage de\n" -#~ "procédures" - -#~ msgid "must be superuser to comment on text search parser" -#~ msgstr "" -#~ "doit être super-utilisateur pour ajouter un commentaire sur l'analyseur de\n" -#~ "recherche plein texte" - -#~ msgid "must be superuser to comment on text search template" -#~ msgstr "" -#~ "doit être super-utilisateur pour ajouter un commentaire sur un modèle de\n" -#~ "recherche plein texte" - -#, c-format -#~ msgid "must be superuser to connect during database shutdown" -#~ msgstr "" -#~ "doit être super-utilisateur pour se connecter pendant un arrêt de la base de\n" -#~ "données" - -#~ msgid "must be superuser to control recovery" -#~ msgstr "doit être super-utilisateur pour contrôler la restauration" - -#~ msgid "must be superuser to create a restore point" -#~ msgstr "doit être super-utilisateur pour créer un point de restauration" - -#~ msgid "must be superuser to create procedural language \"%s\"" -#~ msgstr "doit être super-utilisateur pour créer le langage de procédures « %s »" - -#~ msgid "must be superuser to drop access methods" -#~ msgstr "doit être super-utilisateur pour supprimer des méthodes d'accès" - -#~ msgid "must be superuser to drop text search parsers" -#~ msgstr "" -#~ "doit être super-utilisateur pour supprimer des analyseurs de recherche plein\n" -#~ "texte" - -#~ msgid "must be superuser to drop text search templates" -#~ msgstr "doit être super-utilisateur pour supprimer des modèles de recherche plein texte" - -#, c-format -#~ msgid "must be superuser to execute ALTER SYSTEM command" -#~ msgstr "doit être super-utilisateur pour exécuter la commande ALTER SYSTEM" - -#~ msgid "must be superuser to get directory listings" -#~ msgstr "doit être super-utilisateur pour obtenir le contenu du répertoire" - -#~ msgid "must be superuser to get file information" -#~ msgstr "doit être super-utilisateur pour obtenir des informations sur le fichier" - -#~ msgid "must be superuser to rename text search parsers" -#~ msgstr "" -#~ "doit être super-utilisateur pour renommer les analyseurs de recherche plein\n" -#~ "texte" - -#~ msgid "must be superuser to rename text search templates" -#~ msgstr "doit être super-utilisateur pour renommer les modèles de recherche plein texte" - -#~ msgid "must be superuser to reset statistics counters" -#~ msgstr "doit être super-utilisateur pour réinitialiser les compteurs statistiques" - -#~ msgid "must be superuser to signal the postmaster" -#~ msgstr "doit être super-utilisateur pour envoyer un signal au postmaster" - -#~ msgid "must be superuser to use server-side lo_export()" -#~ msgstr "doit être super-utilisateur pour utiliser lo_export() du côté serveur" - -#~ msgid "must be superuser to use server-side lo_import()" -#~ msgstr "doit être super-utilisateur pour utiliser lo_import() du côté serveur" - -#~ msgid "must call json_populate_recordset on an array of objects" -#~ msgstr "doit appeler json_populate_recordset sur un tableau d'objets" - -#, c-format -#~ msgid "neither BKPIMAGE_HAS_HOLE nor BKPIMAGE_IS_COMPRESSED set, but block image length is %u at %X/%X" -#~ msgstr "ni BKPIMAGE_HAS_HOLE ni BKPIMAGE_IS_COMPRESSED configuré, mais la longueur de l'image du bloc est %u à %X/%X" - -#~ msgid "neither input type is an array" -#~ msgstr "aucun type de données n'est un tableau" - -#, c-format -#~ msgid "new replication connections are not allowed during database shutdown" -#~ msgstr "" -#~ "les nouvelles connexions pour la réplication ne sont pas autorisées pendant\n" -#~ "l'arrêt du serveur de base de données" - -#~ msgid "next MultiXactId: %u; next MultiXactOffset: %u" -#~ msgstr "prochain MultiXactId : %u ; prochain MultiXactOffset : %u" - -#~ msgid "next transaction ID: %u/%u; next OID: %u" -#~ msgstr "prochain identifiant de transaction : %u/%u ; prochain OID : %u" - -#~ msgid "no pg_hba.conf entry for host \"%s\", user \"%s\", database \"%s\"" -#~ msgstr "" -#~ "aucune entrée dans pg_hba.conf pour l'hôte « %s », utilisateur « %s »,\n" -#~ "base de données « %s »" - -#~ msgid "no pg_hba.conf entry for replication connection from host \"%s\", user \"%s\"" -#~ msgstr "" -#~ "aucune entrée dans pg_hba.conf pour la connexion de la réplication à partir de\n" -#~ "l'hôte « %s », utilisateur « %s »" - -#~ msgid "no such savepoint" -#~ msgstr "aucun point de sauvegarde" - -#, c-format -#~ msgid "non-exclusive backup in progress" -#~ msgstr "une sauvegarde non exclusive est en cours" - -#, c-format -#~ msgid "non-exclusive backup is not in progress" -#~ msgstr "une sauvegarde non exclusive n'est pas en cours" - -#~ msgid "not enough data in file \"%s\"" -#~ msgstr "données insuffisantes dans le fichier « %s »" - -#~ msgid "not enough shared memory for background writer" -#~ msgstr "pas assez de mémoire partagée pour le processus d'écriture en tâche de fond" - -#~ msgid "not enough shared memory for elements of data structure \"%s\" (%zu bytes requested)" -#~ msgstr "" -#~ "pas assez de mémoire partagée pour les éléments de la structure de données\n" -#~ "« %s » (%zu octets demandés)" - -#~ msgid "not enough shared memory for walreceiver" -#~ msgstr "" -#~ "pas assez de mémoire partagée pour le processus de réception des journaux de\n" -#~ "transactions" - -#~ msgid "not enough shared memory for walsender" -#~ msgstr "pas assez de mémoire partagée pour le processus d'envoi des journaux de transactions" - -#~ msgid "not unique \"S\"" -#~ msgstr "« S » non unique" - -#~ msgid "null OID in COPY data" -#~ msgstr "OID NULL dans les données du COPY" - -#~ msgid "number of distinct values %g is too low" -#~ msgstr "le nombre de valeurs distinctes %g est trop basse" - -#~ msgid "number of page slots needed (%.0f) exceeds max_fsm_pages (%d)" -#~ msgstr "le nombre d'emplacements de pages nécessaires (%.0f) dépasse max_fsm_pages (%d)" - -#~ msgid "off" -#~ msgstr "désactivé" - -#, c-format -#~ msgid "oidvector has too many elements" -#~ msgstr "oidvector a trop d'éléments" - -#~ msgid "oldest MultiXactId member is at offset %u" -#~ msgstr "le membre le plus ancien du MultiXactId est au décalage %u" - -#~ msgid "oldest unfrozen transaction ID: %u, in database %u" -#~ msgstr "" -#~ "identifiant de transaction non gelé le plus ancien : %u, dans la base de\n" -#~ "données %u" - -#~ msgid "on" -#~ msgstr "activé" - -#, c-format -#~ msgid "online backup mode canceled" -#~ msgstr "mode de sauvegarde en ligne annulé" - -#, c-format -#~ msgid "online backup mode was not canceled" -#~ msgstr "le mode de sauvegarde en ligne n'a pas été annulé" - -#~ msgid "only simple column references and expressions are allowed in CREATE STATISTICS" -#~ msgstr "seules des références et expressions à une seule colonne sont acceptées dans CREATE STATISTICS" - -#~ msgid "only superusers can query or manipulate replication origins" -#~ msgstr "seuls les super-utilisateurs peuvent lire ou manipuler les origines de réplication" - -#~ msgid "op ANY/ALL (array) does not support set arguments" -#~ msgstr "" -#~ "l'opérateur ANY/ALL (pour les types array) ne supporte pas les arguments\n" -#~ "d'ensemble" - -#~ msgid "operator precedence change: %s is now lower precedence than %s" -#~ msgstr "la précédence d'opérateur change : %s a maintenant une précédence inférieure à %s" - -#~ msgid "operator procedure must be specified" -#~ msgstr "la procédure de l'opérateur doit être spécifiée" - -#, c-format -#~ msgid "out of memory while trying to decode a record of length %u" -#~ msgstr "manque mémoire lors de la tentative de décodage d'un enregistrement de longueur %u" - -#~ msgid "overflow of destination buffer in hex encoding" -#~ msgstr "Calcule les identifiants de requête" - -#~ msgid "parameter \"%s\" requires a numeric value" -#~ msgstr "le paramètre « %s » requiert une valeur numérique" - -#~ msgid "parameter \"recovery_target_inclusive\" requires a Boolean value" -#~ msgstr "le paramètre « recovery_target_inclusive » requiert une valeur booléenne" - -#~ msgid "parameter \"standby_mode\" requires a Boolean value" -#~ msgstr "le paramètre « standby_mode » requiert une valeur booléenne" - -#~ msgid "parse %s: %s" -#~ msgstr "analyse %s : %s" - -#~ msgid "parser stack overflow" -#~ msgstr "saturation de la pile de l'analyseur" - -#~ msgid "partition constraint for table \"%s\" is implied by existing constraints" -#~ msgstr "la contrainte de partitionnement pour la table « %s » provient des contraintes existantes" - -#~ msgid "partition key expressions cannot contain whole-row references" -#~ msgstr "les expressions de clé de partitionnement ne peuvent pas contenir des références à des lignes complètes" - -#~ msgid "password too long" -#~ msgstr "mot de passe trop long" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" - -#~ msgid "permission denied to drop foreign-data wrapper \"%s\"" -#~ msgstr "droit refusé pour supprimer le wrapper de données distantes « %s »" - -#~ msgid "pg_hba.conf rejects connection for host \"%s\", user \"%s\", database \"%s\"" -#~ msgstr "" -#~ "pg_hba.conf rejette la connexion pour l'hôte « %s », utilisateur « %s », base\n" -#~ "de données « %s »" - -#~ msgid "pg_hba.conf rejects replication connection for host \"%s\", user \"%s\"" -#~ msgstr "" -#~ "pg_hba.conf rejette la connexion de la réplication pour l'hôte « %s »,\n" -#~ "utilisateur « %s »" - -#~ msgid "pg_ident.conf was not reloaded" -#~ msgstr "pg_ident.conf n'a pas été rechargé" - -#~ msgid "pg_walfile_name() cannot be executed during recovery." -#~ msgstr "pg_walfile_name() ne peut pas être exécuté lors de la restauration." - -#~ msgid "pg_walfile_name_offset() cannot be executed during recovery." -#~ msgstr "pg_walfile_name_offset() ne peut pas être exécuté lors de la restauration." - -#~ msgid "poll() failed in statistics collector: %m" -#~ msgstr "échec du poll() dans le récupérateur de statistiques : %m" - -#~ msgid "poll() failed: %m" -#~ msgstr "échec de poll() : %m" - -#~ msgid "postmaster became multithreaded" -#~ msgstr "le postmaster est devenu multithreadé" - -#~ msgid "procedure number %d for (%s,%s) appears more than once" -#~ msgstr "le numéro de procédure %d pour (%s, %s) apparaît plus d'une fois" - -#~ msgid "procedures cannot have OUT arguments" -#~ msgstr "les procédures ne peuvent pas avoir d'argument OUT" - -#~ msgid "query requires full scan, which is not supported by GIN indexes" -#~ msgstr "" -#~ "la requête nécessite un parcours complet, ce qui n'est pas supporté par les\n" -#~ "index GIN" - -#, c-format -#~ msgid "query-specified return tuple and function return type are not compatible" -#~ msgstr "une ligne de sortie spécifiée à la requête et un type de sortie de fonction ne sont pas compatibles" - -#, c-format -#~ msgid "range_agg must be called with a range" -#~ msgstr "range_agg doit être appelé avec un intervalle" - -#, c-format -#~ msgid "range_intersect_agg must be called with a multirange" -#~ msgstr "range_intersect_agg doit être appelé avec un multirange" - -#, c-format -#~ msgid "range_intersect_agg must be called with a range" -#~ msgstr "range_intersect_agg doit être appelé avec un range" - -#~ msgid "received password packet" -#~ msgstr "paquet du mot de passe reçu" - -#, c-format -#~ msgid "record length %u at %X/%X too long" -#~ msgstr "longueur trop importante de l'enregistrement %u à %X/%X" - -#~ msgid "record with zero length at %X/%X" -#~ msgstr "enregistrement de longueur nulle à %X/%X" - -#~ msgid "recovery is still in progress, can't accept WAL streaming connections" -#~ msgstr "la restauration est en cours, ne peut pas accepter les connexions de flux WAL" - -#~ msgid "recovery restart point at %X/%X with latest known log time %s" -#~ msgstr "" -#~ "point de relancement de la restauration sur %X/%X avec %s comme dernière\n" -#~ "date connue du journal" - -#~ msgid "recovery_target_time is not a valid timestamp: \"%s\"" -#~ msgstr "recovery_target_timeline n'est pas un horodatage valide : « %s »" - -#~ msgid "recovery_target_xid is not a valid number: \"%s\"" -#~ msgstr "recovery_target_xid n'est pas un nombre valide : « %s »" - -#~ msgid "recycled write-ahead log file \"%s\"" -#~ msgstr "recyclage du journal de transactions « %s »" - -#~ msgid "redo record is at %X/%X; shutdown %s" -#~ msgstr "l'enregistrement à ré-exécuter se trouve à %X/%X ; arrêt %s" - -#~ msgid "redo starts at %X/%X, consistency will be reached at %X/%X" -#~ msgstr "la restauration comme à %X/%X, la cohérence sera atteinte à %X/%X" - -#, c-format -#~ msgid "reference to parent directory (\"..\") not allowed" -#~ msgstr "référence non autorisée au répertoire parent (« .. »)" - -#, c-format -#~ msgid "referenced relation \"%s\" is not a table or foreign table" -#~ msgstr "la relation référencée « %s » n'est ni une table ni une table distante" - -#~ msgid "regexp_split_to_array does not support the global option" -#~ msgstr "regexp_split_to_array ne supporte pas l'option globale" - -#~ msgid "regexp_split_to_table does not support the global option" -#~ msgstr "regexp_split_to_table ne supporte pas l'option globale" - -#~ msgid "registering background worker \"%s\"" -#~ msgstr "enregistrement du processus en tâche de fond « %s »" - -#~ msgid "relation \"%s\" TID %u/%u: DeleteTransactionInProgress %u --- cannot shrink relation" -#~ msgstr "" -#~ "relation « %s », TID %u/%u : DeleteTransactionInProgress %u --- n'a pas pu\n" -#~ "diminuer la taille de la relation" - -#~ msgid "relation \"%s\" TID %u/%u: InsertTransactionInProgress %u --- cannot shrink relation" -#~ msgstr "" -#~ "relation « %s », TID %u/%u : InsertTransactionInProgress %u --- n'a pas pu\n" -#~ "diminuer la taille de la relation" - -#~ msgid "relation \"%s\" TID %u/%u: XMIN_COMMITTED not set for transaction %u --- cannot shrink relation" -#~ msgstr "" -#~ "relation « %s », TID %u/%u : XMIN_COMMITTED non configuré pour la\n" -#~ "transaction %u --- n'a pas pu diminuer la taille de la relation" - -#~ msgid "relation \"%s\" TID %u/%u: dead HOT-updated tuple --- cannot shrink relation" -#~ msgstr "" -#~ "relation « %s », TID %u/%u : ligne morte mise à jour par HOT --- n'a pas pu\n" -#~ "diminuer la taille de la relation" - -#, c-format -#~ msgid "relation \"%s\" is not a table, foreign table, or materialized view" -#~ msgstr "la relation « %s » n'est pas une table, une table distante ou une vue matérialisée" - -#~ msgid "relation \"%s\" page %u is uninitialized --- fixing" -#~ msgstr "relation « %s » : la page %u n'est pas initialisée --- correction en cours" - -#~ msgid "relation \"%s.%s\" contains more than \"max_fsm_pages\" pages with useful free space" -#~ msgstr "" -#~ "la relation « %s.%s » contient plus de « max_fsm_pages » pages d'espace\n" -#~ "libre utile" - -#~ msgid "relation \"pg_statistic\" does not have a composite type" -#~ msgstr "la relation « pg_statistic » n'a pas un type composite" - -#~ msgid "removed subscription for table %s.%s" -#~ msgstr "a supprimé une souscription pour la table %s.%s" - -#~ msgid "removing built-in function \"%s\"" -#~ msgstr "suppression de la fonction interne « %s »" - -#~ msgid "removing file \"%s\"" -#~ msgstr "suppression du fichier « %s »" - -#~ msgid "removing transaction log backup history file \"%s\"" -#~ msgstr "suppression du fichier historique des journaux de transaction « %s »" - -#~ msgid "removing write-ahead log file \"%s\"" -#~ msgstr "suppression du journal de transactions « %s »" - -#~ msgid "replication connection authorized: user=%s SSL enabled (protocol=%s, cipher=%s, bits=%d, compression=%s)" -#~ msgstr "connexion autorisée : utilisateur=%s, SSL activé (protocole=%s, chiffrement=%s, bits=%d, compression=%s)" - -#~ msgid "replication connection authorized: user=%s application_name=%s" -#~ msgstr "connexion de réplication autorisée : utilisateur=%s nom d'application=%s" - -#~ msgid "replication connection authorized: user=%s application_name=%s SSL enabled (protocol=%s, cipher=%s, bits=%d, compression=%s)" -#~ msgstr "connexion de réplication autorisée : utilisateur=%s, nom d'application=%s, SSL activé (protocole=%s, chiffrement=%s, bits=%d, compression=%s)" - -#~ msgid "replication identifier %d is already active for PID %d" -#~ msgstr "l'identificateur de réplication %d est déjà actif pour le PID %d" - -#~ msgid "replication origin %d is already active for PID %d" -#~ msgstr "l'origine de réplication %d est déjà active pour le PID %d" - -#~ msgid "restartpoint_command = '%s'" -#~ msgstr "restartpoint_command = '%s'" - -#~ msgid "rewriting table \"%s\"" -#~ msgstr "ré-écriture de la table « %s »" - -#~ msgid "role \"%s\" could not be removed from policy \"%s\" on \"%s\"" -#~ msgstr "le rôle « %s » n'a pas pu être supprimé de la politique « %s » sur « %s »" - -#~ msgid "role \"%s\" is reserved" -#~ msgstr "le rôle « %s » est réservé" - -#~ msgid "role name cannot be qualified" -#~ msgstr "le nom du rôle ne peut pas être qualifié" - -#~ msgid "rule \"%s\" does not exist" -#~ msgstr "la règle « %s » n'existe pas" - -#~ msgid "scanned index \"%s\" to remove %d row versions by parallel vacuum worker" -#~ msgstr "a parcouru l'index « %s » pour supprimer %d versions de lignes par le worker parallélisé du VACUUM" - -#~ msgid "schema name cannot be qualified" -#~ msgstr "le nom du schéma ne peut pas être qualifié" - -#~ msgid "select() failed in logger process: %m" -#~ msgstr "échec de select() dans le processus des journaux applicatifs : %m" - -#, c-format -#~ msgid "select() failed in statistics collector: %m" -#~ msgstr "échec du select() dans le récupérateur de statistiques : %m" - -#~ msgid "select() failed: %m" -#~ msgstr "échec de select() : %m" - -#~ msgid "sending cancel to blocking autovacuum PID %d" -#~ msgstr "envoi de l'annulation pour bloquer le PID %d de l'autovacuum" - -#~ msgid "server does not exist, skipping" -#~ msgstr "le serveur n'existe pas, poursuite du traitement" - -#~ msgid "server name cannot be qualified" -#~ msgstr "le nom du serveur ne peut pas être qualifié" - -#~ msgid "setsockopt(SO_REUSEADDR) failed for %s address \"%s\": %m" -#~ msgstr "setsockopt(SO_REUSEADDR) a échoué pour %s, adresse « %s » : %m" - -#~ msgid "shared index \"%s\" can only be reindexed in stand-alone mode" -#~ msgstr "un index partagé « %s » peut seulement être réindexé en mode autonome" - -#~ msgid "shared table \"%s\" can only be reindexed in stand-alone mode" -#~ msgstr "la table partagée « %s » peut seulement être réindexé en mode autonome" - -#~ msgid "shared tables cannot be toasted after initdb" -#~ msgstr "" -#~ "les tables partagées ne peuvent pas avoir une table TOAST après la commande\n" -#~ "initdb" - -#~ msgid "shutdown requested, aborting active base backup" -#~ msgstr "arrêt demandé, annulation de la sauvegarde active de base" - -#~ msgid "skipping redundant vacuum to prevent wraparound of table \"%s.%s.%s\"" -#~ msgstr "ignore un VACUUM redondant pour éviter le rebouclage des identifiants dans la table \"%s.%s.%s\"" - -#~ msgid "skipping restartpoint, already performed at %X/%X" -#~ msgstr "ignore le point de redémarrage, déjà réalisé à %X/%X" - -#~ msgid "skipping restartpoint, recovery has already ended" -#~ msgstr "restartpoint ignoré, la récupération est déjà terminée" - -#~ msgid "slot_name = NONE and create_slot = true are mutually exclusive options" -#~ msgstr "slot_name = NONE et create_slot = true sont des options mutuellement exclusives" - -#~ msgid "slot_name = NONE and enabled = true are mutually exclusive options" -#~ msgstr "slot_name = NONE et enabled = true sont des options mutuellement exclusives" - -#~ msgid "socket not open" -#~ msgstr "socket non ouvert" - -#, fuzzy -#~ msgid "sorry, too many standbys already" -#~ msgstr "désolé, trop de clients sont déjà connectés" - -#~ msgid "spgist operator class \"%s\" is missing operator(s)" -#~ msgstr "il manque des opérateurs pour la classe d'opérateur spgist « %s »" - -#~ msgid "spgist operator family \"%s\" contains function %s with invalid support number %d" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » contient la fonction %s\n" -#~ "avec le numéro de support %d invalide" - -#~ msgid "spgist operator family \"%s\" contains function %s with wrong signature for support number %d" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » contient la fonction %s\n" -#~ "avec une mauvaise signature pour le numéro de support %d" - -#~ msgid "spgist operator family \"%s\" contains invalid ORDER BY specification for operator %s" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » contient une spécification\n" -#~ "ORDER BY invalide pour l'opérateur %s" - -#~ msgid "spgist operator family \"%s\" contains operator %s with invalid strategy number %d" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » contient l'opérateur %s\n" -#~ "avec le numéro de stratégie invalide %d" - -#~ msgid "spgist operator family \"%s\" contains operator %s with wrong signature" -#~ msgstr "la famille d'opérateur spgist « %s » contient l'opérateur %s avec une mauvaise signature" - -#~ msgid "spgist operator family \"%s\" contains support procedure %s with cross-type registration" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » contient la procédure de support\n" -#~ "%s avec un enregistrement inter-type" - -#~ msgid "spgist operator family \"%s\" is missing operator(s) for types %s and %s" -#~ msgstr "" -#~ "la famille d'opérateur spgist « %s » nécessite des opérateurs supplémentaires\n" -#~ "pour les types %s et %s" - -#~ msgid "standby \"%s\" now has synchronous standby priority %u" -#~ msgstr "" -#~ "le serveur « %s » en standby a maintenant une priorité %u en tant que standby\n" -#~ "synchrone" - -#~ msgid "standby connections not allowed because wal_level=minimal" -#~ msgstr "connexions standby non autorisées car wal_level=minimal" - -#~ msgid "starting background worker process \"%s\"" -#~ msgstr "démarrage du processus d'écriture en tâche de fond « %s »" - -#~ msgid "starting logical replication worker for subscription \"%s\"" -#~ msgstr "lancement du processus worker de réplication logique pour la souscription « %s »" - -#~ msgid "statistics collector process" -#~ msgstr "processus de récupération des statistiques" - -#, c-format -#~ msgid "statistics collector's time %s is later than backend local time %s" -#~ msgstr "l'heure du collecteur de statistiques %s est plus avancé que l'heure locale du processus serveur %s" - -#, c-format -#~ msgid "stats_timestamp %s is later than collector's time %s for database %u" -#~ msgstr "stats_timestamp %s est plus avancé que l'heure du collecteur %s pour la base de données %u" - -#~ msgid "streaming replication successfully connected to primary" -#~ msgstr "réplication de flux connecté avec succès au serveur principal" - -#~ msgid "subquery cannot have SELECT INTO" -#~ msgstr "la sous-requête ne peut pas avoir de SELECT INTO" - -#~ msgid "subquery in FROM cannot have SELECT INTO" -#~ msgstr "la sous-requête du FROM ne peut pas avoir de SELECT INTO" - -#~ msgid "subquery in FROM cannot refer to other relations of same query level" -#~ msgstr "" -#~ "la sous-requête du FROM ne peut pas faire référence à d'autres relations\n" -#~ "dans le même niveau de la requête" - -#~ msgid "subquery in WITH cannot have SELECT INTO" -#~ msgstr "la sous-requête du WITH ne peut pas avoir de SELECT INTO" - -#~ msgid "subquery must return a column" -#~ msgstr "la sous-requête doit renvoyer une colonne" - -#~ msgid "subscription must contain at least one publication" -#~ msgstr "la souscription doit contenir au moins une publication" - -#~ msgid "subscription with slot_name = NONE must also set create_slot = false" -#~ msgstr "la souscription avec slot_name = NONE doit aussi être configurée avec create_slot = false" - -#~ msgid "syntax error in recovery command file: %s" -#~ msgstr "erreur de syntaxe dans le fichier de restauration : %s" - -#~ msgid "syntax error: cannot back up" -#~ msgstr "erreur de syntaxe : n'a pas pu revenir" - -#~ msgid "syntax error: unexpected character \"%s\"" -#~ msgstr "erreur de syntaxe : caractère « %s » inattendu" - -#~ msgid "syntax error; also virtual memory exhausted" -#~ msgstr "erreur de syntaxe ; de plus, mémoire virtuelle saturée" - -#~ msgid "system usage: %s\n" -#~ msgstr "utilisation du système : %s\n" - -#, c-format -#~ msgid "table \"%s\" cannot be replicated" -#~ msgstr "la table « %s » ne peut pas être répliquée" - -#~ msgid "table \"%s\" does not have OIDs" -#~ msgstr "la table « %s » n'a pas d'OID" - -#~ msgid "table \"%s\" has multiple constraints named \"%s\"" -#~ msgstr "la table « %s » a de nombreuses contraintes nommées « %s »" - -#~ msgid "table \"%s\" without OIDs cannot inherit from table \"%s\" with OIDs" -#~ msgstr "la table « %s » qui n'a pas d'OID ne peut pas hériter de la table « %s » qui en a" - -#, c-format -#~ msgid "table \"%s\": found %lld removable, %lld nonremovable row versions in %u out of %u pages" -#~ msgstr "table « %s » : trouvé %lld versions de ligne supprimables, %lld non supprimables, dans %u blocs sur %u" - -#, c-format -#~ msgid "table \"%s\": index scan bypassed: %u pages from table (%.2f%% of total) have %lld dead item identifiers" -#~ msgstr "table \"%s\" : parcours d'index ignoré : %u pages de la table (%.2f%% au total) ont %lld identifiants de ligne morte" - -#~ msgid "table \"%s.%s\" added to subscription \"%s\"" -#~ msgstr "table « %s.%s » ajoutée à la souscription « %s »" - -#~ msgid "table \"%s.%s\" removed from subscription \"%s\"" -#~ msgstr "table « %s.%s » supprimée de la souscription « %s »" - -#~ msgid "tablespace %u is not empty" -#~ msgstr "le tablespace %u n'est pas vide" - -#~ msgid "tablespace name cannot be qualified" -#~ msgstr "le nom du tablespace ne peut pas être qualifié" - -#~ msgid "terminating all walsender processes to force cascaded standby(s) to update timeline and reconnect" -#~ msgstr "" -#~ "arrêt de tous les processus walsender pour forcer les serveurs standby en\n" -#~ "cascade à mettre à jour la timeline et à se reconnecter" - -#~ msgid "terminating walsender process to force cascaded standby to update timeline and reconnect" -#~ msgstr "" -#~ "arrêt du processus walreceiver pour forcer le serveur standby en cascade à\n" -#~ "mettre à jour la timeline et à se reconnecter" - -#, c-format -#~ msgid "test message did not get through on socket for statistics collector" -#~ msgstr "" -#~ "le message de test n'a pas pu arriver sur la socket du récupérateur de\n" -#~ "statistiques : %m" - -#~ msgid "there are multiple rules named \"%s\"" -#~ msgstr "il existe de nombreuses règles nommées « %s »" - -#~ msgid "there are objects dependent on %s" -#~ msgstr "des objets dépendent de %s" - -#~ msgid "there is no contrecord flag at %X/%X reading %X/%X" -#~ msgstr "il n'existe pas de drapeau contrecord à %X/%X en lisant %X/%X" - -#~ msgid "there is no contrecord flag in log file %u, segment %u, offset %u" -#~ msgstr "" -#~ "il n'y a pas de drapeaux « contrecord » dans le journal de transactions %u,\n" -#~ "segment %u, décalage %u" - -#~ msgid "time to inline: %.3fs, opt: %.3fs, emit: %.3fs" -#~ msgstr "temps pour inliner: %.3fs, opt: %.3fs, emit: %.3fs" - -#~ msgid "time zone abbreviation \"%s\" is not used in time zone \"%s\"" -#~ msgstr "l'abréviation « %s » du fuseau horaire n'est pas utilisée dans le fuseau horaire « %s »" - -#~ msgid "time zone offset %d is not a multiple of 900 sec (15 min) in time zone file \"%s\", line %d" -#~ msgstr "" -#~ "le décalage %d du fuseau horaire n'est pas un multiples de 900 secondes\n" -#~ "(15 minutes) dans le fichier des fuseaux horaires « %s », ligne %d" - -#, c-format -#~ msgid "timestamp units \"%s\" not recognized" -#~ msgstr "les unité « %s » ne sont pas reconnues pour le type timestamp" - -#, c-format -#~ msgid "timestamp units \"%s\" not supported" -#~ msgstr "les unités timestamp « %s » ne sont pas supportées" - -#, c-format -#~ msgid "timestamp with time zone units \"%s\" not recognized" -#~ msgstr "les unités « %s » ne sont pas reconnues pour le type « timestamp with time zone »" - -#, c-format -#~ msgid "timestamp with time zone units \"%s\" not supported" -#~ msgstr "les unités « %s » ne sont pas supportées pour le type « timestamp with time zone »" - -#~ msgid "too few arguments for format" -#~ msgstr "trop peu d'arguments pour le format" - -#, c-format -#~ msgid "too many range table entries" -#~ msgstr "trop d'enregistrements dans la table range" - -#~ msgid "transaction ID " -#~ msgstr "ID de transaction " - -#~ msgid "transaction ID wrap limit is %u, limited by database with OID %u" -#~ msgstr "" -#~ "la limite de réinitialisation de l'identifiant de transaction est %u,\n" -#~ "limité par la base de données d'OID %u" - -#~ msgid "transaction is read-only" -#~ msgstr "la transaction est en lecture seule" - -#~ msgid "transaction log switch forced (archive_timeout=%d)" -#~ msgstr "changement forcé du journal de transaction (archive_timeout=%d)" - -#~ msgid "transform expression must not return a set" -#~ msgstr "l'expression de transformation ne doit pas renvoyer un ensemble" - -#~ msgid "transform function must not be an aggregate function" -#~ msgstr "la fonction de transformation ne doit pas être une fonction d'agrégat" - -#~ msgid "trigger \"%s\" for table \"%s\" does not exist, skipping" -#~ msgstr "le trigger « %s » pour la table « %s » n'existe pas, poursuite du traitement" - -#, c-format -#~ msgid "trying another address for the statistics collector" -#~ msgstr "nouvelle tentative avec une autre adresse pour le récupérateur de statistiques" - -#~ msgid "tuple to be updated was already moved to another partition due to concurrent update" -#~ msgstr "la ligne à mettre à jour était déjà déplacée vers une autre partition du fait d'une mise à jour concurrente, nouvelle tentative" - -#~ msgid "two-phase state file for transaction %u is corrupt" -#~ msgstr "" -#~ "le fichier d'état de la validation en deux phases est corrompu pour la\n" -#~ "transaction %u" - -#~ msgid "type %u does not match constructor type" -#~ msgstr "le type %u ne correspond pas un type constructeur" - -#~ msgid "type output function %s must return type \"cstring\"" -#~ msgstr "le type de sortie de la fonction %s doit être « cstring »" - -#~ msgid "type send function %s must return type \"bytea\"" -#~ msgstr "la fonction send du type %s doit renvoyer le type « bytea »" - -#~ msgid "typmod_in function %s must return type \"integer\"" -#~ msgstr "la fonction typmod_in %s doit renvoyer le type « entier »" - -#~ msgid "ucnv_fromUChars failed: %s" -#~ msgstr "échec de ucnv_fromUChars : %s" - -#~ msgid "ucnv_toUChars failed: %s" -#~ msgstr "échec de ucnv_toUChars : %s" - -#~ msgid "unable to open directory pg_tblspc: %m" -#~ msgstr "impossible d'ouvrir le répertoire p_tblspc : %m" - -#~ msgid "unable to read symbolic link %s: %m" -#~ msgstr "incapable de lire le lien symbolique %s : %m" - -#~ msgid "uncataloged table %s" -#~ msgstr "table %s sans catalogue" - -#~ msgid "unexpected \"=\"" -#~ msgstr "« = » inattendu" - -#~ msgid "unexpected EOF on client connection" -#~ msgstr "fin de fichier (EOF) inattendue de la connexion du client" - -#~ msgid "unexpected Kerberos user name received from client (received \"%s\", expected \"%s\")" -#~ msgstr "" -#~ "nom d'utilisateur Kerberos inattendu reçu à partir du client (reçu « %s »,\n" -#~ "attendu « %s »)" - -#~ msgid "unexpected delimiter at line %d of thesaurus file \"%s\"" -#~ msgstr "délimiteur inattendu sur la ligne %d du thesaurus « %s »" - -#~ msgid "unexpected end of line at line %d of thesaurus file \"%s\"" -#~ msgstr "fin de ligne inattendue à la ligne %d du thésaurus « %s »" - -#~ msgid "unexpected end of line or lexeme at line %d of thesaurus file \"%s\"" -#~ msgstr "fin de ligne ou de lexeme inattendu sur la ligne %d du thesaurus « %s »" - -#~ msgid "unexpected standby message type \"%c\", after receiving CopyDone" -#~ msgstr "type de message standby « %c » inattendu, après avoir reçu CopyDone" - -#~ msgid "unlogged GiST indexes are not supported" -#~ msgstr "les index GiST non tracés ne sont pas supportés" - -#~ msgid "unlogged operation performed, data may be missing" -#~ msgstr "opération réalisée non tracée, les données pourraient manquer" - -#, c-format -#~ msgid "unlogged sequences are not supported" -#~ msgstr "les séquences non tracées ne sont pas supportées" - -#~ msgid "unrecognized \"datestyle\" key word: \"%s\"" -#~ msgstr "mot clé « datestyle » non reconnu : « %s »" - -#~ msgid "unrecognized \"log_destination\" key word: \"%s\"" -#~ msgstr "mot clé « log_destination » non reconnu : « %s »" - -#, c-format -#~ msgid "unrecognized \"publish\" value: \"%s\"" -#~ msgstr "type « publish » non reconnu : « %s »" - -#~ msgid "unrecognized error %d" -#~ msgstr "erreur %d non reconnue" - -#~ msgid "unrecognized function attribute \"%s\" ignored" -#~ msgstr "l'attribut « %s » non reconnu de la fonction a été ignoré" - -#~ msgid "unrecognized recovery parameter \"%s\"" -#~ msgstr "paramètre de restauration « %s » non reconnu" - -#~ msgid "unrecognized win32 error code: %lu" -#~ msgstr "code d'erreur win32 non reconnu : %lu" - -#~ msgid "unregistering background worker \"%s\"" -#~ msgstr "désenregistrement du processus en tâche de fond « %s »" - -#~ msgid "unsafe permissions on private key file \"%s\"" -#~ msgstr "droits non sûrs sur le fichier de la clé privée « %s »" - -#~ msgid "unsupported LZ4 compression method" -#~ msgstr "méthode compression LZ4 non supportée" - -#~ msgid "unsupported language \"%s\"" -#~ msgstr "langage non supporté « %s »" - -#~ msgid "updated partition constraint for default partition \"%s\" is implied by existing constraints" -#~ msgstr "la contrainte de partitionnement pour la partition par défaut « %s » est implicite du fait de contraintes existantes" - -#~ msgid "updated partition constraint for default partition would be violated by some row" -#~ msgstr "la contrainte de partition mise à jour pour la partition par défaut serait transgressée par des lignes" - -#~ msgid "usermap \"%s\"" -#~ msgstr "correspondance utilisateur « %s »" - -#~ msgid "using pg_pltemplate information instead of CREATE LANGUAGE parameters" -#~ msgstr "" -#~ "utilisation des informations de pg_pltemplate au lieu des paramètres de\n" -#~ "CREATE LANGUAGE" - -#~ msgid "using previous checkpoint record at %X/%X" -#~ msgstr "utilisation du précédent enregistrement d'un point de vérification à %X/%X" - -#, c-format -#~ msgid "using stale statistics instead of current ones because stats collector is not responding" -#~ msgstr "" -#~ "utilise de vieilles statistiques à la place des actuelles car le collecteur de\n" -#~ "statistiques ne répond pas" - -#, c-format -#~ msgid "utility statements cannot be prepared" -#~ msgstr "les instructions utilitaires ne peuvent pas être préparées" - -#~ msgid "validating foreign key constraint \"%s\"" -#~ msgstr "validation de la contraintes de clé étrangère « %s »" - -#, c-format -#~ msgid "value \"%s\" is out of range for 8-bit integer" -#~ msgstr "la valeur « %s » est en dehors des limites des entiers sur 8 bits" - -#~ msgid "value \"%s\" is out of range for type bigint" -#~ msgstr "la valeur « %s » est en dehors des limites du type bigint" - -#~ msgid "value \"%s\" is out of range for type integer" -#~ msgstr "la valeur « %s » est en dehors des limites du type integer" - -#~ msgid "value \"%s\" is out of range for type smallint" -#~ msgstr "la valeur « %s » est en dehors des limites du type smallint" - -#~ msgid "verifying table \"%s\"" -#~ msgstr "vérification de la table « %s »" - -#~ msgid "view must have at least one column" -#~ msgstr "la vue doit avoir au moins une colonne" - -#~ msgid "window functions cannot use named arguments" -#~ msgstr "les fonctions window ne peuvent pas renvoyer des arguments nommés" - -#~ msgid "window functions not allowed in GROUP BY clause" -#~ msgstr "fonctions window non autorisées dans une clause GROUP BY" - -#~ msgid "worker process" -#~ msgstr "processus de travail" - -#~ msgid "wrong affix file format for flag" -#~ msgstr "mauvais format de fichier affixe pour le drapeau" - -#~ msgid "wrong data type: %u, expected %u" -#~ msgstr "mauvais type de données : %u, alors que %u attendu" - -#~ msgid "wrong element type" -#~ msgstr "mauvais type d'élément" - -#, fuzzy -#~ msgid "wrong number of array_subscripts" -#~ msgstr "mauvais nombre d'indices du tableau" - -#~ msgid "xrecoff \"%X\" is out of valid range, 0..%X" -#~ msgstr "xrecoff « %X » en dehors des limites valides, 0..%X" diff --git a/src/backend/po/ja.po b/src/backend/po/ja.po index e39ab5dda0a..bdd3729d1a1 100644 --- a/src/backend/po/ja.po +++ b/src/backend/po/ja.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: postgres (PostgreSQL 15)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-07-22 10:54+0900\n" -"PO-Revision-Date: 2024-07-22 11:00+0900\n" +"POT-Creation-Date: 2024-11-11 10:13+0900\n" +"PO-Revision-Date: 2024-11-11 11:55+0900\n" "Last-Translator: Kyotaro Horiguchi \n" "Language-Team: jpug-doc \n" "Language: ja\n" @@ -72,20 +72,20 @@ msgstr "記録されていません" msgid "could not open file \"%s\" for reading: %m" msgstr "ファイル\"%s\"を読み取り用にオープンできませんでした: %m" -#: ../common/controldata_utils.c:94 ../common/controldata_utils.c:96 access/transam/timeline.c:143 access/transam/timeline.c:362 access/transam/twophase.c:1349 access/transam/xlog.c:3209 access/transam/xlog.c:4024 access/transam/xlogrecovery.c:1223 access/transam/xlogrecovery.c:1315 access/transam/xlogrecovery.c:1352 access/transam/xlogrecovery.c:1412 backup/basebackup.c:1848 commands/extension.c:3411 libpq/hba.c:505 replication/logical/origin.c:729 -#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4958 replication/logical/snapbuild.c:1879 replication/logical/snapbuild.c:1921 replication/logical/snapbuild.c:1948 replication/slot.c:1807 replication/slot.c:1848 replication/walsender.c:658 storage/file/buffile.c:463 storage/file/copydir.c:195 utils/adt/genfile.c:197 utils/adt/misc.c:863 utils/cache/relmapper.c:816 +#: ../common/controldata_utils.c:94 ../common/controldata_utils.c:96 access/transam/timeline.c:143 access/transam/timeline.c:362 access/transam/twophase.c:1349 access/transam/xlog.c:3210 access/transam/xlog.c:4025 access/transam/xlogrecovery.c:1223 access/transam/xlogrecovery.c:1315 access/transam/xlogrecovery.c:1352 access/transam/xlogrecovery.c:1412 backup/basebackup.c:1838 commands/extension.c:3411 libpq/hba.c:505 replication/logical/origin.c:729 +#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4963 replication/logical/snapbuild.c:1879 replication/logical/snapbuild.c:1921 replication/logical/snapbuild.c:1948 replication/slot.c:1807 replication/slot.c:1848 replication/walsender.c:658 storage/file/buffile.c:463 storage/file/copydir.c:195 utils/adt/genfile.c:197 utils/adt/misc.c:856 utils/cache/relmapper.c:816 #, c-format msgid "could not read file \"%s\": %m" msgstr "ファイル\"%s\"の読み取りに失敗しました: %m" -#: ../common/controldata_utils.c:102 ../common/controldata_utils.c:105 access/transam/xlog.c:3214 access/transam/xlog.c:4029 backup/basebackup.c:1852 replication/logical/origin.c:734 replication/logical/origin.c:773 replication/logical/snapbuild.c:1884 replication/logical/snapbuild.c:1926 replication/logical/snapbuild.c:1953 replication/slot.c:1811 replication/slot.c:1852 replication/walsender.c:663 utils/cache/relmapper.c:820 +#: ../common/controldata_utils.c:102 ../common/controldata_utils.c:105 access/transam/xlog.c:3215 access/transam/xlog.c:4030 backup/basebackup.c:1842 replication/logical/origin.c:734 replication/logical/origin.c:773 replication/logical/snapbuild.c:1884 replication/logical/snapbuild.c:1926 replication/logical/snapbuild.c:1953 replication/slot.c:1811 replication/slot.c:1852 replication/walsender.c:663 utils/cache/relmapper.c:820 #, c-format msgid "could not read file \"%s\": read %d of %zu" msgstr "ファイル\"%1$s\"を読み込めませんでした: %3$zuバイトのうち%2$dバイトを読み込みました" -#: ../common/controldata_utils.c:114 ../common/controldata_utils.c:118 ../common/controldata_utils.c:271 ../common/controldata_utils.c:274 access/heap/rewriteheap.c:1178 access/heap/rewriteheap.c:1281 access/transam/timeline.c:392 access/transam/timeline.c:438 access/transam/timeline.c:516 access/transam/twophase.c:1361 access/transam/twophase.c:1773 access/transam/xlog.c:3056 access/transam/xlog.c:3249 access/transam/xlog.c:3254 access/transam/xlog.c:3392 -#: access/transam/xlog.c:3994 access/transam/xlog.c:4740 commands/copyfrom.c:1585 commands/copyto.c:327 libpq/be-fsstubs.c:455 libpq/be-fsstubs.c:525 replication/logical/origin.c:667 replication/logical/origin.c:806 replication/logical/reorderbuffer.c:5016 replication/logical/snapbuild.c:1788 replication/logical/snapbuild.c:1961 replication/slot.c:1698 replication/slot.c:1859 replication/walsender.c:673 storage/file/copydir.c:218 storage/file/copydir.c:223 -#: storage/file/fd.c:745 storage/file/fd.c:3643 storage/file/fd.c:3749 utils/cache/relmapper.c:831 utils/cache/relmapper.c:968 +#: ../common/controldata_utils.c:114 ../common/controldata_utils.c:118 ../common/controldata_utils.c:271 ../common/controldata_utils.c:274 access/heap/rewriteheap.c:1178 access/heap/rewriteheap.c:1281 access/transam/timeline.c:392 access/transam/timeline.c:438 access/transam/timeline.c:516 access/transam/twophase.c:1361 access/transam/twophase.c:1780 access/transam/xlog.c:3057 access/transam/xlog.c:3250 access/transam/xlog.c:3255 access/transam/xlog.c:3393 +#: access/transam/xlog.c:3995 access/transam/xlog.c:4741 commands/copyfrom.c:1585 commands/copyto.c:327 libpq/be-fsstubs.c:455 libpq/be-fsstubs.c:525 replication/logical/origin.c:667 replication/logical/origin.c:806 replication/logical/reorderbuffer.c:5021 replication/logical/snapbuild.c:1788 replication/logical/snapbuild.c:1961 replication/slot.c:1698 replication/slot.c:1859 replication/walsender.c:673 storage/file/copydir.c:218 storage/file/copydir.c:223 +#: storage/file/fd.c:745 storage/file/fd.c:3638 storage/file/fd.c:3744 utils/cache/relmapper.c:831 utils/cache/relmapper.c:968 #, c-format msgid "could not close file \"%s\": %m" msgstr "ファイル\"%s\"をクローズできませんでした: %m" @@ -107,20 +107,20 @@ msgstr "" "されるものと一致しないようです。この場合以下の結果は不正確になります。また、\n" "PostgreSQLインストレーションはこのデータディレクトリと互換性がなくなります。" -#: ../common/controldata_utils.c:219 ../common/controldata_utils.c:224 ../common/file_utils.c:232 ../common/file_utils.c:291 ../common/file_utils.c:365 access/heap/rewriteheap.c:1264 access/transam/timeline.c:111 access/transam/timeline.c:251 access/transam/timeline.c:348 access/transam/twophase.c:1305 access/transam/xlog.c:2943 access/transam/xlog.c:3125 access/transam/xlog.c:3164 access/transam/xlog.c:3359 access/transam/xlog.c:4014 -#: access/transam/xlogrecovery.c:4243 access/transam/xlogrecovery.c:4346 access/transam/xlogutils.c:852 backup/basebackup.c:522 backup/basebackup.c:1524 postmaster/syslogger.c:1560 replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3611 replication/logical/reorderbuffer.c:4162 replication/logical/reorderbuffer.c:4938 replication/logical/snapbuild.c:1743 replication/logical/snapbuild.c:1850 replication/slot.c:1779 replication/walsender.c:631 -#: replication/walsender.c:2722 storage/file/copydir.c:161 storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3630 storage/file/fd.c:3720 storage/smgr/md.c:541 utils/cache/relmapper.c:795 utils/cache/relmapper.c:912 utils/error/elog.c:1953 utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 utils/init/miscinit.c:1585 utils/misc/guc.c:8998 utils/misc/guc.c:9047 +#: ../common/controldata_utils.c:219 ../common/controldata_utils.c:224 ../common/file_utils.c:227 ../common/file_utils.c:286 ../common/file_utils.c:360 access/heap/rewriteheap.c:1264 access/transam/timeline.c:111 access/transam/timeline.c:251 access/transam/timeline.c:348 access/transam/twophase.c:1305 access/transam/xlog.c:2944 access/transam/xlog.c:3126 access/transam/xlog.c:3165 access/transam/xlog.c:3360 access/transam/xlog.c:4015 +#: access/transam/xlogrecovery.c:4243 access/transam/xlogrecovery.c:4346 access/transam/xlogutils.c:852 backup/basebackup.c:522 backup/basebackup.c:1518 postmaster/syslogger.c:1560 replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3616 replication/logical/reorderbuffer.c:4167 replication/logical/reorderbuffer.c:4943 replication/logical/snapbuild.c:1743 replication/logical/snapbuild.c:1850 replication/slot.c:1779 replication/walsender.c:631 +#: replication/walsender.c:2722 storage/file/copydir.c:161 storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3625 storage/file/fd.c:3715 storage/smgr/md.c:541 utils/cache/relmapper.c:795 utils/cache/relmapper.c:912 utils/error/elog.c:1953 utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 utils/init/miscinit.c:1585 utils/misc/guc.c:9016 utils/misc/guc.c:9065 #, c-format msgid "could not open file \"%s\": %m" msgstr "ファイル\"%s\"をオープンできませんでした: %m" -#: ../common/controldata_utils.c:240 ../common/controldata_utils.c:243 access/transam/twophase.c:1746 access/transam/twophase.c:1755 access/transam/xlog.c:8685 access/transam/xlogfuncs.c:600 backup/basebackup_server.c:173 backup/basebackup_server.c:266 postmaster/postmaster.c:5633 postmaster/syslogger.c:1571 postmaster/syslogger.c:1584 postmaster/syslogger.c:1597 utils/cache/relmapper.c:946 +#: ../common/controldata_utils.c:240 ../common/controldata_utils.c:243 access/transam/twophase.c:1753 access/transam/twophase.c:1762 access/transam/xlog.c:8710 access/transam/xlogfuncs.c:600 backup/basebackup_server.c:173 backup/basebackup_server.c:266 postmaster/postmaster.c:5633 postmaster/syslogger.c:1571 postmaster/syslogger.c:1584 postmaster/syslogger.c:1597 utils/cache/relmapper.c:946 #, c-format msgid "could not write file \"%s\": %m" msgstr "ファイル\"%s\"を書き出せませんでした: %m" -#: ../common/controldata_utils.c:257 ../common/controldata_utils.c:262 ../common/file_utils.c:303 ../common/file_utils.c:373 access/heap/rewriteheap.c:960 access/heap/rewriteheap.c:1172 access/heap/rewriteheap.c:1275 access/transam/timeline.c:432 access/transam/timeline.c:510 access/transam/twophase.c:1767 access/transam/xlog.c:3049 access/transam/xlog.c:3243 access/transam/xlog.c:3987 access/transam/xlog.c:7988 access/transam/xlog.c:8031 -#: backup/basebackup_server.c:207 commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 storage/file/fd.c:3741 storage/smgr/md.c:992 storage/smgr/md.c:1033 storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8767 +#: ../common/controldata_utils.c:257 ../common/controldata_utils.c:262 ../common/file_utils.c:298 ../common/file_utils.c:368 access/heap/rewriteheap.c:960 access/heap/rewriteheap.c:1172 access/heap/rewriteheap.c:1275 access/transam/timeline.c:432 access/transam/timeline.c:510 access/transam/twophase.c:1774 access/transam/xlog.c:3050 access/transam/xlog.c:3244 access/transam/xlog.c:3988 access/transam/xlog.c:8013 access/transam/xlog.c:8056 +#: backup/basebackup_server.c:207 commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 storage/file/fd.c:3736 storage/smgr/md.c:992 storage/smgr/md.c:1033 storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8785 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "ファイル\"%s\"をfsyncできませんでした: %m" @@ -128,7 +128,7 @@ msgstr "ファイル\"%s\"をfsyncできませんでした: %m" #: ../common/cryptohash.c:266 ../common/cryptohash_openssl.c:133 ../common/cryptohash_openssl.c:332 ../common/exec.c:560 ../common/exec.c:605 ../common/exec.c:697 ../common/hmac.c:309 ../common/hmac.c:325 ../common/hmac_openssl.c:132 ../common/hmac_openssl.c:327 ../common/md5_common.c:155 ../common/psprintf.c:143 ../common/scram-common.c:247 ../common/stringinfo.c:305 ../port/path.c:751 ../port/path.c:789 ../port/path.c:806 access/transam/twophase.c:1414 #: access/transam/xlogrecovery.c:587 lib/dshash.c:253 libpq/auth.c:1336 libpq/auth.c:1404 libpq/auth.c:1962 libpq/be-secure-gssapi.c:520 postmaster/bgworker.c:349 postmaster/bgworker.c:931 postmaster/postmaster.c:2594 postmaster/postmaster.c:4180 postmaster/postmaster.c:5558 postmaster/postmaster.c:5929 replication/libpqwalreceiver/libpqwalreceiver.c:300 replication/logical/logical.c:206 replication/walsender.c:701 storage/buffer/localbuf.c:442 #: storage/file/fd.c:892 storage/file/fd.c:1434 storage/file/fd.c:1595 storage/file/fd.c:2409 storage/ipc/procarray.c:1463 storage/ipc/procarray.c:2292 storage/ipc/procarray.c:2299 storage/ipc/procarray.c:2804 storage/ipc/procarray.c:3435 utils/adt/formatting.c:1732 utils/adt/formatting.c:1854 utils/adt/formatting.c:1977 utils/adt/pg_locale.c:453 utils/adt/pg_locale.c:617 utils/adt/regexp.c:224 utils/fmgr/dfmgr.c:229 utils/hash/dynahash.c:513 -#: utils/hash/dynahash.c:613 utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5192 utils/misc/guc.c:5208 utils/misc/guc.c:5221 utils/misc/guc.c:8745 utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 utils/mmgr/mcxt.c:1000 +#: utils/hash/dynahash.c:613 utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5204 utils/misc/guc.c:5220 utils/misc/guc.c:5233 utils/misc/guc.c:8763 utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 utils/mmgr/mcxt.c:1000 #: utils/mmgr/mcxt.c:1088 utils/mmgr/mcxt.c:1119 utils/mmgr/mcxt.c:1155 utils/mmgr/mcxt.c:1207 utils/mmgr/mcxt.c:1242 utils/mmgr/mcxt.c:1277 utils/mmgr/slab.c:238 #, c-format msgid "out of memory" @@ -171,7 +171,7 @@ msgstr "実行すべき\"%s\"がありませんでした" msgid "could not change directory to \"%s\": %m" msgstr "ディレクトリ\"%s\"に移動できませんでした: %m" -#: ../common/exec.c:299 access/transam/xlog.c:8334 backup/basebackup.c:1344 utils/adt/misc.c:342 +#: ../common/exec.c:299 access/transam/xlog.c:8359 backup/basebackup.c:1338 utils/adt/misc.c:335 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "シンボリックリンク\"%s\"を読めませんでした: %m" @@ -191,23 +191,23 @@ msgstr "メモリ不足です\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "nullポインタは複製できません(内部エラー)\n" -#: ../common/file_utils.c:87 ../common/file_utils.c:451 ../common/file_utils.c:455 access/transam/twophase.c:1317 access/transam/xlogarchive.c:111 access/transam/xlogarchive.c:237 backup/basebackup.c:338 backup/basebackup.c:528 backup/basebackup.c:599 commands/copyfrom.c:1535 commands/copyto.c:725 commands/extension.c:3390 commands/tablespace.c:826 commands/tablespace.c:917 guc-file.l:1066 postmaster/pgarch.c:597 replication/logical/snapbuild.c:1660 -#: storage/file/copydir.c:68 storage/file/copydir.c:107 storage/file/fd.c:1951 storage/file/fd.c:2037 storage/file/fd.c:3243 storage/file/fd.c:3450 utils/adt/dbsize.c:92 utils/adt/dbsize.c:244 utils/adt/dbsize.c:324 utils/adt/genfile.c:413 utils/adt/genfile.c:588 utils/adt/misc.c:327 +#: ../common/file_utils.c:86 ../common/file_utils.c:446 ../common/file_utils.c:450 access/transam/twophase.c:1317 access/transam/xlogarchive.c:111 access/transam/xlogarchive.c:237 backup/basebackup.c:338 backup/basebackup.c:528 backup/basebackup.c:599 commands/copyfrom.c:1535 commands/copyto.c:729 commands/extension.c:3390 commands/tablespace.c:825 commands/tablespace.c:914 guc-file.l:1066 postmaster/pgarch.c:597 replication/logical/snapbuild.c:1660 +#: storage/file/copydir.c:68 storage/file/copydir.c:107 storage/file/fd.c:1951 storage/file/fd.c:2037 storage/file/fd.c:3243 storage/file/fd.c:3449 utils/adt/dbsize.c:92 utils/adt/dbsize.c:244 utils/adt/dbsize.c:324 utils/adt/genfile.c:413 utils/adt/genfile.c:588 utils/adt/misc.c:321 #, c-format msgid "could not stat file \"%s\": %m" msgstr "ファイル\"%s\"のstatに失敗しました: %m" -#: ../common/file_utils.c:166 ../common/pgfnames.c:48 commands/tablespace.c:749 commands/tablespace.c:759 postmaster/postmaster.c:1579 storage/file/fd.c:2812 storage/file/reinit.c:126 utils/adt/misc.c:235 utils/misc/tzparser.c:338 +#: ../common/file_utils.c:161 ../common/pgfnames.c:48 commands/tablespace.c:749 commands/tablespace.c:759 postmaster/postmaster.c:1579 storage/file/fd.c:2812 storage/file/reinit.c:126 utils/adt/misc.c:235 utils/misc/tzparser.c:338 #, c-format msgid "could not open directory \"%s\": %m" msgstr "ディレクトリ\"%s\"をオープンできませんでした: %m" -#: ../common/file_utils.c:200 ../common/pgfnames.c:69 storage/file/fd.c:2824 +#: ../common/file_utils.c:195 ../common/pgfnames.c:69 storage/file/fd.c:2824 #, c-format msgid "could not read directory \"%s\": %m" msgstr "ディレクトリ\"%s\"を読み取れませんでした: %m" -#: ../common/file_utils.c:383 access/transam/xlogarchive.c:426 postmaster/syslogger.c:1608 replication/logical/snapbuild.c:1800 replication/slot.c:721 replication/slot.c:1570 replication/slot.c:1712 storage/file/fd.c:755 storage/file/fd.c:853 utils/time/snapmgr.c:1282 +#: ../common/file_utils.c:378 access/transam/xlogarchive.c:426 postmaster/syslogger.c:1608 replication/logical/snapbuild.c:1800 replication/slot.c:721 replication/slot.c:1570 replication/slot.c:1712 storage/file/fd.c:755 storage/file/fd.c:853 utils/time/snapmgr.c:1282 #, c-format msgid "could not rename file \"%s\" to \"%s\": %m" msgstr "ファイル\"%s\"の名前を\"%s\"に変更できませんでした: %m" @@ -465,22 +465,22 @@ msgstr "コードセット\"%s\"用の符号化方式を特定できませんで msgid "could not determine encoding for locale \"%s\": codeset is \"%s\"" msgstr "ロケール\"%s\"用の符号化方式を特定できませんでした: コードセットは\"%s\"です" -#: ../port/dirmod.c:218 +#: ../port/dirmod.c:244 #, c-format msgid "could not set junction for \"%s\": %s" msgstr "\"%s\"のジャンクションを設定できませんでした: %s" -#: ../port/dirmod.c:221 +#: ../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "\"%s\"のジャンクションを設定できませんでした: %s\n" -#: ../port/dirmod.c:295 +#: ../port/dirmod.c:321 #, c-format msgid "could not get junction for \"%s\": %s" msgstr "\"%s\"のジャンクションを取得できませんでした: %s" -#: ../port/dirmod.c:298 +#: ../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "\"%s\"のジャンクションを取得できませんでした: %s\n" @@ -573,7 +573,7 @@ msgstr "\"%s\"はBRINインデックスではありません" msgid "could not open parent table of index \"%s\"" msgstr "インデックス\"%s\"の親テーブルをオープンできませんでした" -#: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 parser/parse_utilcmd.c:2303 +#: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 parser/parse_utilcmd.c:2331 #, c-format msgid "index \"%s\" is not valid" msgstr "インデックス\"%s\"は有効ではありません" @@ -683,7 +683,7 @@ msgstr "インデックス列数(%d)が上限(%d)を超えています" msgid "index row requires %zu bytes, maximum size is %zu" msgstr "インデックス行が%zuバイトを必要としますが最大値は%zuです" -#: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 tcop/postgres.c:1921 +#: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 tcop/postgres.c:1937 #, c-format msgid "unsupported format code: %d" msgstr "非サポートの書式コード: %d" @@ -711,7 +711,7 @@ msgstr "RESETにはパラメータの値を含めてはいけません" msgid "unrecognized parameter namespace \"%s\"" msgstr "認識できないパラメータ namaspace \"%s\"" -#: access/common/reloptions.c:1303 utils/misc/guc.c:13002 +#: access/common/reloptions.c:1303 utils/misc/guc.c:13020 #, c-format msgid "tables declared WITH OIDS are not supported" msgstr "WITH OIDSと定義されたテーブルはサポートされません" @@ -816,7 +816,7 @@ msgstr "古いGINインデックスはインデックス全体のスキャンや msgid "To fix this, do REINDEX INDEX \"%s\"." msgstr "これを修復するには REINDEX INDEX \"%s\" をおこなってください。" -#: access/gin/ginutil.c:145 executor/execExpr.c:2168 utils/adt/arrayfuncs.c:3866 utils/adt/arrayfuncs.c:6535 utils/adt/rowtypes.c:957 +#: access/gin/ginutil.c:145 executor/execExpr.c:2168 utils/adt/arrayfuncs.c:3873 utils/adt/arrayfuncs.c:6542 utils/adt/rowtypes.c:957 #, c-format msgid "could not identify a comparison function for type %s" msgstr "%s型の比較関数が見つかりません" @@ -891,7 +891,7 @@ msgstr "アクセスメソッド\"%2$s\"の演算子族\"%1$s\"は演算子%3$s msgid "could not determine which collation to use for string hashing" msgstr "文字列のハッシュ値計算で使用する照合順序を特定できませんでした" -#: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 commands/indexcmds.c:1955 commands/tablecmds.c:17596 commands/view.c:86 regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 utils/adt/like_support.c:1025 utils/adt/varchar.c:733 utils/adt/varchar.c:1004 utils/adt/varchar.c:1065 +#: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 commands/indexcmds.c:1955 commands/tablecmds.c:17734 commands/view.c:86 regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 utils/adt/like_support.c:1025 utils/adt/varchar.c:733 utils/adt/varchar.c:1004 utils/adt/varchar.c:1065 #: utils/adt/varlena.c:1499 #, c-format msgid "Use the COLLATE clause to set the collation explicitly." @@ -942,36 +942,41 @@ msgstr "アクセスメソッド\"%2$s\"の演算子族\"%1$s\"は演算子%3$s msgid "operator family \"%s\" of access method %s is missing cross-type operator(s)" msgstr "アクセスメソッド\"%2$s\"の演算子族\"%1$s\"は異なる型間に対応する演算子を含んでいません" -#: access/heap/heapam.c:2226 +#: access/heap/heapam.c:2236 #, c-format msgid "cannot insert tuples in a parallel worker" msgstr "並列ワーカーではタプルの挿入はできません" -#: access/heap/heapam.c:2697 +#: access/heap/heapam.c:2707 #, c-format msgid "cannot delete tuples during a parallel operation" msgstr "並列処理中はタプルの削除はできません" -#: access/heap/heapam.c:2743 +#: access/heap/heapam.c:2753 #, c-format msgid "attempted to delete invisible tuple" msgstr "不可視のタプルを削除しようとしました" -#: access/heap/heapam.c:3188 access/heap/heapam.c:6032 +#: access/heap/heapam.c:3198 access/heap/heapam.c:6405 access/index/genam.c:819 #, c-format msgid "cannot update tuples during a parallel operation" msgstr "並列処理中はタプルの更新はできません" -#: access/heap/heapam.c:3312 +#: access/heap/heapam.c:3326 #, c-format msgid "attempted to update invisible tuple" msgstr "不可視のタプルを更新しようとしました" -#: access/heap/heapam.c:4676 access/heap/heapam.c:4714 access/heap/heapam.c:4979 access/heap/heapam_handler.c:456 +#: access/heap/heapam.c:4812 access/heap/heapam.c:4850 access/heap/heapam.c:5115 access/heap/heapam_handler.c:456 #, c-format msgid "could not obtain lock on row in relation \"%s\"" msgstr "リレーション\"%s\"の行ロックを取得できませんでした" +#: access/heap/heapam.c:6218 commands/trigger.c:3441 executor/nodeModifyTable.c:2362 executor/nodeModifyTable.c:2453 +#, c-format +msgid "tuple to be updated was already modified by an operation triggered by the current command" +msgstr "更新対象のタプルはすでに現在のコマンドによって発行された操作によって変更されています" + #: access/heap/heapam_handler.c:401 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update" @@ -987,7 +992,7 @@ msgstr "行が大きすぎます: サイズは%zu、上限は%zu" msgid "could not write to file \"%s\", wrote %d of %d: %m" msgstr "ファイル\"%1$s\"に書き込めませんでした、%3$dバイト中%2$dバイト書き込みました: %m" -#: access/heap/rewriteheap.c:1013 access/heap/rewriteheap.c:1131 access/transam/timeline.c:329 access/transam/timeline.c:485 access/transam/xlog.c:2965 access/transam/xlog.c:3178 access/transam/xlog.c:3966 access/transam/xlog.c:8668 access/transam/xlogfuncs.c:594 backup/basebackup_server.c:149 backup/basebackup_server.c:242 commands/dbcommands.c:494 postmaster/postmaster.c:4607 postmaster/postmaster.c:5620 replication/logical/origin.c:587 replication/slot.c:1631 +#: access/heap/rewriteheap.c:1013 access/heap/rewriteheap.c:1131 access/transam/timeline.c:329 access/transam/timeline.c:485 access/transam/xlog.c:2966 access/transam/xlog.c:3179 access/transam/xlog.c:3967 access/transam/xlog.c:8693 access/transam/xlogfuncs.c:594 backup/basebackup_server.c:149 backup/basebackup_server.c:242 commands/dbcommands.c:494 postmaster/postmaster.c:4607 postmaster/postmaster.c:5620 replication/logical/origin.c:587 replication/slot.c:1631 #: storage/file/copydir.c:167 storage/smgr/md.c:222 utils/time/snapmgr.c:1261 #, c-format msgid "could not create file \"%s\": %m" @@ -998,13 +1003,13 @@ msgstr "ファイル\"%s\"を作成できませんでした: %m" msgid "could not truncate file \"%s\" to %u: %m" msgstr "ファイル\"%s\"を%uバイトに切り詰められませんでした: %m" -#: access/heap/rewriteheap.c:1159 access/transam/timeline.c:384 access/transam/timeline.c:424 access/transam/timeline.c:502 access/transam/xlog.c:3037 access/transam/xlog.c:3234 access/transam/xlog.c:3978 commands/dbcommands.c:506 postmaster/postmaster.c:4617 postmaster/postmaster.c:4627 replication/logical/origin.c:599 replication/logical/origin.c:641 replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 replication/slot.c:1666 -#: storage/file/buffile.c:537 storage/file/copydir.c:207 utils/init/miscinit.c:1449 utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8728 utils/misc/guc.c:8759 utils/misc/guc.c:10757 utils/misc/guc.c:10771 utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 +#: access/heap/rewriteheap.c:1159 access/transam/timeline.c:384 access/transam/timeline.c:424 access/transam/timeline.c:502 access/transam/xlog.c:3038 access/transam/xlog.c:3235 access/transam/xlog.c:3979 commands/dbcommands.c:506 postmaster/postmaster.c:4617 postmaster/postmaster.c:4627 replication/logical/origin.c:599 replication/logical/origin.c:641 replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 replication/slot.c:1666 +#: storage/file/buffile.c:537 storage/file/copydir.c:207 utils/init/miscinit.c:1449 utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8746 utils/misc/guc.c:8777 utils/misc/guc.c:10775 utils/misc/guc.c:10789 utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 #, c-format msgid "could not write to file \"%s\": %m" msgstr "ファイル\"%s\"を書き出せませんでした: %m" -#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1706 access/transam/xlogarchive.c:119 access/transam/xlogarchive.c:436 postmaster/postmaster.c:1157 postmaster/syslogger.c:1537 replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4431 replication/logical/snapbuild.c:1702 replication/logical/snapbuild.c:2118 replication/slot.c:1763 storage/file/fd.c:795 storage/file/fd.c:3263 storage/file/fd.c:3325 storage/file/reinit.c:262 +#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1713 access/transam/xlogarchive.c:119 access/transam/xlogarchive.c:436 postmaster/postmaster.c:1157 postmaster/syslogger.c:1537 replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4436 replication/logical/snapbuild.c:1702 replication/logical/snapbuild.c:2118 replication/slot.c:1763 storage/file/fd.c:795 storage/file/fd.c:3263 storage/file/fd.c:3325 storage/file/reinit.c:262 #: storage/ipc/dsm.c:317 storage/smgr/md.c:373 storage/smgr/md.c:432 storage/sync/sync.c:250 utils/time/snapmgr.c:1606 #, c-format msgid "could not remove file \"%s\": %m" @@ -1232,17 +1237,17 @@ msgstr "アクセスメソッド\"%s\"のタイプが%sではありません" msgid "index access method \"%s\" does not have a handler" msgstr "インデックスアクセスメソッド\"%s\"はハンドラを持っていません" -#: access/index/genam.c:489 +#: access/index/genam.c:490 #, c-format msgid "transaction aborted during system catalog scan" msgstr "システムカタログのスキャン中にトランザクションがアボートしました" -#: access/index/genam.c:657 access/index/indexam.c:87 +#: access/index/genam.c:658 access/index/indexam.c:87 #, c-format msgid "cannot access index \"%s\" while it is being reindexed" msgstr "再作成中であるためインデックス\"%s\"にアクセスできません" -#: access/index/indexam.c:208 catalog/objectaddress.c:1376 commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 commands/tablecmds.c:17282 commands/tablecmds.c:19076 +#: access/index/indexam.c:208 catalog/objectaddress.c:1376 commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 commands/tablecmds.c:17420 commands/tablecmds.c:19270 #, c-format msgid "\"%s\" is not an index" msgstr "\"%s\"はインデックスではありません" @@ -1267,7 +1272,7 @@ msgstr "キー %s はすでに存在します。" msgid "This may be because of a non-immutable index expression." msgstr "これは不変でないインデックス式が原因である可能性があります" -#: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 parser/parse_utilcmd.c:2349 +#: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 parser/parse_utilcmd.c:2377 #, c-format msgid "index \"%s\" is not a btree" msgstr "インデックス\"%s\"はbtreeではありません" @@ -1331,12 +1336,12 @@ msgstr "SP-GiSTのリーフデータ型%sは宣言された型%sと一致しま msgid "operator family \"%s\" of access method %s is missing support function %d for type %s" msgstr "アクセスメソッド\"%2$s\"の演算子族\"%1$s\"は%4$s型に対するサポート関数%3$dを含んでいません" -#: access/table/table.c:49 access/table/table.c:83 access/table/table.c:112 access/table/table.c:145 catalog/aclchk.c:1835 +#: access/table/table.c:49 access/table/table.c:83 access/table/table.c:112 access/table/table.c:145 catalog/aclchk.c:1836 #, c-format msgid "\"%s\" is an index" msgstr "\"%s\"はインデックスです" -#: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:13976 commands/tablecmds.c:17291 +#: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 access/table/table.c:150 catalog/aclchk.c:1843 commands/tablecmds.c:14106 commands/tablecmds.c:17429 #, c-format msgid "\"%s\" is a composite type" msgstr "\"%s\"は複合型です" @@ -1351,7 +1356,7 @@ msgstr "tid (%u, %u) はリレーション\"%s\"に対して妥当ではあり msgid "%s cannot be empty." msgstr "%sは空にはできません。" -#: access/table/tableamapi.c:122 utils/misc/guc.c:12926 +#: access/table/tableamapi.c:122 utils/misc/guc.c:12944 #, c-format msgid "%s is too long (maximum %d characters)." msgstr "%s が長過ぎます(最大%d文字)。" @@ -1493,36 +1498,36 @@ msgstr "マルチトランザクション%uがディスク上に存在しない msgid "invalid MultiXactId: %u" msgstr "不正なMultiXactId: %u" -#: access/transam/parallel.c:718 access/transam/parallel.c:837 +#: access/transam/parallel.c:731 access/transam/parallel.c:850 #, c-format msgid "parallel worker failed to initialize" msgstr "パラレルワーカーの初期化に失敗しました" -#: access/transam/parallel.c:719 access/transam/parallel.c:838 +#: access/transam/parallel.c:732 access/transam/parallel.c:851 #, c-format msgid "More details may be available in the server log." msgstr "詳細な情報がサーバーログにあるかもしれません。" -#: access/transam/parallel.c:899 +#: access/transam/parallel.c:912 #, c-format msgid "postmaster exited during a parallel transaction" msgstr "並列処理中にpostmasterが終了しました" -#: access/transam/parallel.c:1086 +#: access/transam/parallel.c:1099 #, c-format msgid "lost connection to parallel worker" msgstr "パラレルワーカーへの接続を失いました" -#: access/transam/parallel.c:1152 access/transam/parallel.c:1154 +#: access/transam/parallel.c:1165 access/transam/parallel.c:1167 msgid "parallel worker" msgstr "パラレルワーカー" -#: access/transam/parallel.c:1307 +#: access/transam/parallel.c:1320 #, c-format msgid "could not map dynamic shared memory segment" msgstr "動的共有メモリセグメントをマップできませんでした" -#: access/transam/parallel.c:1312 +#: access/transam/parallel.c:1325 #, c-format msgid "invalid magic number in dynamic shared memory segment" msgstr "動的共有メモリセグメントのマジックナンバーが不正です" @@ -1697,12 +1702,12 @@ msgstr "max_prepared_transactionsを非ゼロに設定してください。" msgid "transaction identifier \"%s\" is already in use" msgstr "トランザクション識別子\"%s\"はすでに存在します" -#: access/transam/twophase.c:422 access/transam/twophase.c:2518 +#: access/transam/twophase.c:422 access/transam/twophase.c:2525 #, c-format msgid "maximum number of prepared transactions reached" msgstr "準備済みのトランザクションの最大数に達しました" -#: access/transam/twophase.c:423 access/transam/twophase.c:2519 +#: access/transam/twophase.c:423 access/transam/twophase.c:2526 #, c-format msgid "Increase max_prepared_transactions (currently %d)." msgstr "max_prepared_transactionsを増加してください(現状%d)。" @@ -1793,63 +1798,63 @@ msgstr "WALの%X/%Xから2相状態を読み取れませんでした" msgid "expected two-phase state data is not present in WAL at %X/%X" msgstr "WALの%X/%Xにあるはずの2相状態のデータがありません" -#: access/transam/twophase.c:1734 +#: access/transam/twophase.c:1741 #, c-format msgid "could not recreate file \"%s\": %m" msgstr "ファイル\"%s\"を再作成できませんでした: %m" -#: access/transam/twophase.c:1861 +#: access/transam/twophase.c:1868 #, c-format msgid "%u two-phase state file was written for a long-running prepared transaction" msgid_plural "%u two-phase state files were written for long-running prepared transactions" msgstr[0] "長時間実行中の準備済みトランザクションのために%u個の2相状態ファイルが書き込まれました" -#: access/transam/twophase.c:2094 +#: access/transam/twophase.c:2101 #, c-format msgid "recovering prepared transaction %u from shared memory" msgstr "共有メモリから準備済みトランザクション%uを復元します" -#: access/transam/twophase.c:2187 +#: access/transam/twophase.c:2194 #, c-format msgid "removing stale two-phase state file for transaction %u" msgstr "不要になったトランザクション%uの2相状態ファイルを削除します" -#: access/transam/twophase.c:2194 +#: access/transam/twophase.c:2201 #, c-format msgid "removing stale two-phase state from memory for transaction %u" msgstr "不要になったトランザクション%uの2相状態をメモリから削除します" -#: access/transam/twophase.c:2207 +#: access/transam/twophase.c:2214 #, c-format msgid "removing future two-phase state file for transaction %u" msgstr "未来のトランザクション%uの2相状態ファイルを削除します" -#: access/transam/twophase.c:2214 +#: access/transam/twophase.c:2221 #, c-format msgid "removing future two-phase state from memory for transaction %u" msgstr "未来のトランザクション%uの2相状態をメモリから削除します" -#: access/transam/twophase.c:2239 +#: access/transam/twophase.c:2246 #, c-format msgid "corrupted two-phase state file for transaction %u" msgstr "トランザクション%uの2相状態ファイルが破損しています" -#: access/transam/twophase.c:2244 +#: access/transam/twophase.c:2251 #, c-format msgid "corrupted two-phase state in memory for transaction %u" msgstr "メモリ上にあるトランザクション%uの2相状態が破損しています" -#: access/transam/twophase.c:2501 +#: access/transam/twophase.c:2508 #, c-format msgid "could not recover two-phase state file for transaction %u" msgstr "トランザクション%uの2相状態ファイルを復元できませんでした" -#: access/transam/twophase.c:2503 +#: access/transam/twophase.c:2510 #, c-format msgid "Two-phase state file has been found in WAL record %X/%X, but this transaction has already been restored from disk." msgstr "2相状態ファイルがWALレコード%X/%Xで見つかりましたが、このトランザクションはすでにディスクから復元済みです。" -#: access/transam/twophase.c:2511 jit/jit.c:205 utils/fmgr/dfmgr.c:209 utils/fmgr/dfmgr.c:415 +#: access/transam/twophase.c:2518 jit/jit.c:205 utils/fmgr/dfmgr.c:209 utils/fmgr/dfmgr.c:415 #, c-format msgid "could not access file \"%s\": %m" msgstr "ファイル\"%s\"にアクセスできませんでした: %m" @@ -1993,420 +1998,420 @@ msgstr "並列処理中はサブトランザクションをコミットできま msgid "cannot have more than 2^32-1 subtransactions in a transaction" msgstr "1トランザクション内には 2^32-1 個より多くのサブトランザクションを作成できません" -#: access/transam/xlog.c:1465 +#: access/transam/xlog.c:1466 #, c-format msgid "request to flush past end of generated WAL; request %X/%X, current position %X/%X" msgstr "生成されたWALより先の位置までのフラッシュ要求; 要求 %X/%X, 現在位置 %X/%X" -#: access/transam/xlog.c:2226 +#: access/transam/xlog.c:2227 #, c-format msgid "could not write to log file %s at offset %u, length %zu: %m" msgstr "ログファイル%sのオフセット%uに長さ%zuの書き込みができませんでした: %m" -#: access/transam/xlog.c:3473 access/transam/xlogutils.c:847 replication/walsender.c:2716 +#: access/transam/xlog.c:3474 access/transam/xlogutils.c:847 replication/walsender.c:2716 #, c-format msgid "requested WAL segment %s has already been removed" msgstr "要求された WAL セグメント %s はすでに削除されています" -#: access/transam/xlog.c:3758 +#: access/transam/xlog.c:3759 #, c-format msgid "could not rename file \"%s\": %m" msgstr "ファイル\"%s\"の名前を変更できませんでした: %m" -#: access/transam/xlog.c:3800 access/transam/xlog.c:3810 +#: access/transam/xlog.c:3801 access/transam/xlog.c:3811 #, c-format msgid "required WAL directory \"%s\" does not exist" msgstr "WALディレクトリ\"%s\"は存在しません" -#: access/transam/xlog.c:3816 +#: access/transam/xlog.c:3817 #, c-format msgid "creating missing WAL directory \"%s\"" msgstr "なかったWALディレクトリ\"%s\"を作成しています" -#: access/transam/xlog.c:3819 commands/dbcommands.c:3115 +#: access/transam/xlog.c:3820 commands/dbcommands.c:3135 #, c-format msgid "could not create missing directory \"%s\": %m" msgstr "なかったディレクトリ\"%s\"の作成に失敗しました: %m" -#: access/transam/xlog.c:3886 +#: access/transam/xlog.c:3887 #, c-format msgid "could not generate secret authorization token" msgstr "秘密の認証トークンを生成できませんでした" -#: access/transam/xlog.c:4045 access/transam/xlog.c:4054 access/transam/xlog.c:4078 access/transam/xlog.c:4085 access/transam/xlog.c:4092 access/transam/xlog.c:4097 access/transam/xlog.c:4104 access/transam/xlog.c:4111 access/transam/xlog.c:4118 access/transam/xlog.c:4125 access/transam/xlog.c:4132 access/transam/xlog.c:4139 access/transam/xlog.c:4148 access/transam/xlog.c:4155 utils/init/miscinit.c:1606 +#: access/transam/xlog.c:4046 access/transam/xlog.c:4055 access/transam/xlog.c:4079 access/transam/xlog.c:4086 access/transam/xlog.c:4093 access/transam/xlog.c:4098 access/transam/xlog.c:4105 access/transam/xlog.c:4112 access/transam/xlog.c:4119 access/transam/xlog.c:4126 access/transam/xlog.c:4133 access/transam/xlog.c:4140 access/transam/xlog.c:4149 access/transam/xlog.c:4156 utils/init/miscinit.c:1606 #, c-format msgid "database files are incompatible with server" msgstr "データベースファイルがサーバーと互換性がありません" -#: access/transam/xlog.c:4046 +#: access/transam/xlog.c:4047 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d (0x%08x), but the server was compiled with PG_CONTROL_VERSION %d (0x%08x)." msgstr "データベースクラスタはPG_CONTROL_VERSION %d (0x%08x)で初期化されましたが、サーバーはPG_CONTROL_VERSION %d (0x%08x)でコンパイルされています。" -#: access/transam/xlog.c:4050 +#: access/transam/xlog.c:4051 #, c-format msgid "This could be a problem of mismatched byte ordering. It looks like you need to initdb." msgstr "これはバイトオーダの不整合の可能性があります。initdbを実行する必要がありそうです。" -#: access/transam/xlog.c:4055 +#: access/transam/xlog.c:4056 #, c-format msgid "The database cluster was initialized with PG_CONTROL_VERSION %d, but the server was compiled with PG_CONTROL_VERSION %d." msgstr "データベースクラスタはPG_CONTROL_VERSION %d で初期化されましたが、サーバーは PG_CONTROL_VERSION %d でコンパイルされています。" -#: access/transam/xlog.c:4058 access/transam/xlog.c:4082 access/transam/xlog.c:4089 access/transam/xlog.c:4094 +#: access/transam/xlog.c:4059 access/transam/xlog.c:4083 access/transam/xlog.c:4090 access/transam/xlog.c:4095 #, c-format msgid "It looks like you need to initdb." msgstr "initdbが必要のようです。" -#: access/transam/xlog.c:4069 +#: access/transam/xlog.c:4070 #, c-format msgid "incorrect checksum in control file" msgstr "制御ファイル内のチェックサムが不正です" -#: access/transam/xlog.c:4079 +#: access/transam/xlog.c:4080 #, c-format msgid "The database cluster was initialized with CATALOG_VERSION_NO %d, but the server was compiled with CATALOG_VERSION_NO %d." msgstr "データベースクラスタは CATALOG_VERSION_NO %d で初期化されましたが、サーバーは CATALOG_VERSION_NO %d でコンパイルされています。" -#: access/transam/xlog.c:4086 +#: access/transam/xlog.c:4087 #, c-format msgid "The database cluster was initialized with MAXALIGN %d, but the server was compiled with MAXALIGN %d." msgstr "データベースクラスタは MAXALIGN %d で初期化されましたが、サーバーは MAXALIGN %d でコンパイルされています。" -#: access/transam/xlog.c:4093 +#: access/transam/xlog.c:4094 #, c-format msgid "The database cluster appears to use a different floating-point number format than the server executable." msgstr "データベースクラスタはサーバー実行ファイルと異なる浮動小数点書式を使用しているようです。" -#: access/transam/xlog.c:4098 +#: access/transam/xlog.c:4099 #, c-format msgid "The database cluster was initialized with BLCKSZ %d, but the server was compiled with BLCKSZ %d." msgstr "データベースクラスタは BLCKSZ %d で初期化されましたが、サーバーは BLCKSZ %d でコンパイルされています。" -#: access/transam/xlog.c:4101 access/transam/xlog.c:4108 access/transam/xlog.c:4115 access/transam/xlog.c:4122 access/transam/xlog.c:4129 access/transam/xlog.c:4136 access/transam/xlog.c:4143 access/transam/xlog.c:4151 access/transam/xlog.c:4158 +#: access/transam/xlog.c:4102 access/transam/xlog.c:4109 access/transam/xlog.c:4116 access/transam/xlog.c:4123 access/transam/xlog.c:4130 access/transam/xlog.c:4137 access/transam/xlog.c:4144 access/transam/xlog.c:4152 access/transam/xlog.c:4159 #, c-format msgid "It looks like you need to recompile or initdb." msgstr "再コンパイルもしくは initdb が必要そうです。" -#: access/transam/xlog.c:4105 +#: access/transam/xlog.c:4106 #, c-format msgid "The database cluster was initialized with RELSEG_SIZE %d, but the server was compiled with RELSEG_SIZE %d." msgstr "データベースクラスタは RELSEG_SIZE %d で初期化されましたが、サーバーは RELSEG_SIZE %d でコンパイルされています。" -#: access/transam/xlog.c:4112 +#: access/transam/xlog.c:4113 #, c-format msgid "The database cluster was initialized with XLOG_BLCKSZ %d, but the server was compiled with XLOG_BLCKSZ %d." msgstr "データベースクラスタは XLOG_BLCKSZ %d で初期化されましたが、サーバーは XLOG_BLCKSZ %d でコンパイルされています。" -#: access/transam/xlog.c:4119 +#: access/transam/xlog.c:4120 #, c-format msgid "The database cluster was initialized with NAMEDATALEN %d, but the server was compiled with NAMEDATALEN %d." msgstr "データベースクラスタは NAMEDATALEN %d で初期化されましたが、サーバーは NAMEDATALEN %d でコンパイルされています。" -#: access/transam/xlog.c:4126 +#: access/transam/xlog.c:4127 #, c-format msgid "The database cluster was initialized with INDEX_MAX_KEYS %d, but the server was compiled with INDEX_MAX_KEYS %d." msgstr "データベースクラスタは INDEX_MAX_KEYS %d で初期化されましたが、サーバーは INDEX_MAX_KEYS %d でコンパイルされています。" -#: access/transam/xlog.c:4133 +#: access/transam/xlog.c:4134 #, c-format msgid "The database cluster was initialized with TOAST_MAX_CHUNK_SIZE %d, but the server was compiled with TOAST_MAX_CHUNK_SIZE %d." msgstr "データベースクラスタは TOAST_MAX_CHUNK_SIZE %d で初期化されましたが、サーバーは TOAST_MAX_CHUNK_SIZE %d でコンパイルされています。" -#: access/transam/xlog.c:4140 +#: access/transam/xlog.c:4141 #, c-format msgid "The database cluster was initialized with LOBLKSIZE %d, but the server was compiled with LOBLKSIZE %d." msgstr "データベースクラスタは LOBLKSIZE %d で初期化されましたが、サーバーは LOBLKSIZE %d でコンパイルされています。" -#: access/transam/xlog.c:4149 +#: access/transam/xlog.c:4150 #, c-format msgid "The database cluster was initialized without USE_FLOAT8_BYVAL but the server was compiled with USE_FLOAT8_BYVAL." msgstr "データベースクラスタは USE_FLOAT8_BYVAL なしで初期化されましたが、サーバー側は USE_FLOAT8_BYVAL 付きでコンパイルされています。" -#: access/transam/xlog.c:4156 +#: access/transam/xlog.c:4157 #, c-format msgid "The database cluster was initialized with USE_FLOAT8_BYVAL but the server was compiled without USE_FLOAT8_BYVAL." msgstr "データベースクラスタは USE_FLOAT8_BYVAL 付きで初期化されましたが、サーバー側は USE_FLOAT8_BYVAL なしでコンパイルされています。" -#: access/transam/xlog.c:4165 +#: access/transam/xlog.c:4166 #, c-format msgid "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d byte" msgid_plural "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d bytes" msgstr[0] "WALセグメントのサイズ指定は1MBと1GBの間の2の累乗でなければなりません、しかしコントロールファイルでは%dバイトとなっています" -#: access/transam/xlog.c:4177 +#: access/transam/xlog.c:4178 #, c-format msgid "\"min_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "\"min_wal_size\"は最低でも\"wal_segment_size\"の2倍である必要があります。" -#: access/transam/xlog.c:4181 +#: access/transam/xlog.c:4182 #, c-format msgid "\"max_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "\"max_wal_size\"は最低でも\"wal_segment_size\"の2倍である必要があります。" -#: access/transam/xlog.c:4622 +#: access/transam/xlog.c:4623 #, c-format msgid "could not write bootstrap write-ahead log file: %m" msgstr "ブートストラップの先行書き込みログファイルに書き込めませんでした: %m" -#: access/transam/xlog.c:4630 +#: access/transam/xlog.c:4631 #, c-format msgid "could not fsync bootstrap write-ahead log file: %m" msgstr "ブートストラップの先行書き込みログファイルをfsyncできませんでした: %m" -#: access/transam/xlog.c:4636 +#: access/transam/xlog.c:4637 #, c-format msgid "could not close bootstrap write-ahead log file: %m" msgstr "ブートストラップの先行書き込みログファイルをクローズできませんでした: %m" -#: access/transam/xlog.c:4854 +#: access/transam/xlog.c:4855 #, c-format msgid "WAL was generated with wal_level=minimal, cannot continue recovering" msgstr "wal_level=minimal でWALが生成されました、リカバリは続行不可です" -#: access/transam/xlog.c:4855 +#: access/transam/xlog.c:4856 #, c-format msgid "This happens if you temporarily set wal_level=minimal on the server." msgstr "これはこのサーバーで一時的にwal_level=minimalにした場合に起こります。" -#: access/transam/xlog.c:4856 +#: access/transam/xlog.c:4857 #, c-format msgid "Use a backup taken after setting wal_level to higher than minimal." msgstr "wal_levelをminimalより上位に設定したあとに取得したバックアップを使用してください。" -#: access/transam/xlog.c:4920 +#: access/transam/xlog.c:4921 #, c-format msgid "control file contains invalid checkpoint location" msgstr "制御ファイル内のチェックポイント位置が不正です" -#: access/transam/xlog.c:4931 +#: access/transam/xlog.c:4932 #, c-format msgid "database system was shut down at %s" msgstr "データベースシステムは %s にシャットダウンしました" -#: access/transam/xlog.c:4937 +#: access/transam/xlog.c:4938 #, c-format msgid "database system was shut down in recovery at %s" msgstr "データベースシステムはリカバリ中 %s にシャットダウンしました" -#: access/transam/xlog.c:4943 +#: access/transam/xlog.c:4944 #, c-format msgid "database system shutdown was interrupted; last known up at %s" msgstr "データベースシステムはシャットダウン中に中断されました; %s まで動作していたことは確認できます" -#: access/transam/xlog.c:4949 +#: access/transam/xlog.c:4950 #, c-format msgid "database system was interrupted while in recovery at %s" msgstr "データベースシステムはリカバリ中 %s に中断されました" -#: access/transam/xlog.c:4951 +#: access/transam/xlog.c:4952 #, c-format msgid "This probably means that some data is corrupted and you will have to use the last backup for recovery." msgstr "これはおそらくデータ破損があり、リカバリのために直前のバックアップを使用しなければならないことを意味します。" -#: access/transam/xlog.c:4957 +#: access/transam/xlog.c:4958 #, c-format msgid "database system was interrupted while in recovery at log time %s" msgstr "データベースシステムはリカバリ中ログ時刻 %s に中断されました" -#: access/transam/xlog.c:4959 +#: access/transam/xlog.c:4960 #, c-format msgid "If this has occurred more than once some data might be corrupted and you might need to choose an earlier recovery target." msgstr "これが1回以上起きた場合はデータが破損している可能性があるため、より以前のリカバリ目標を選ぶ必要があるかもしれません。" -#: access/transam/xlog.c:4965 +#: access/transam/xlog.c:4966 #, c-format msgid "database system was interrupted; last known up at %s" msgstr "データベースシステムは中断されました: %s まで動作していたことは確認できます" -#: access/transam/xlog.c:4971 +#: access/transam/xlog.c:4972 #, c-format msgid "control file contains invalid database cluster state" msgstr "制御ファイル内のデータベース・クラスタ状態が不正です" -#: access/transam/xlog.c:5356 +#: access/transam/xlog.c:5357 #, c-format msgid "WAL ends before end of online backup" msgstr "オンラインバックアップの終了より前にWALが終了しました" -#: access/transam/xlog.c:5357 +#: access/transam/xlog.c:5358 #, c-format msgid "All WAL generated while online backup was taken must be available at recovery." msgstr "オンラインバックアップ中に生成されたすべてのWALがリカバリで利用可能である必要があります。" -#: access/transam/xlog.c:5360 +#: access/transam/xlog.c:5361 #, c-format msgid "WAL ends before consistent recovery point" msgstr "WALが一貫性があるリカバリポイントより前で終了しました" -#: access/transam/xlog.c:5408 +#: access/transam/xlog.c:5409 #, c-format msgid "selected new timeline ID: %u" msgstr "新しいタイムラインIDを選択: %u" -#: access/transam/xlog.c:5441 +#: access/transam/xlog.c:5442 #, c-format msgid "archive recovery complete" msgstr "アーカイブリカバリが完了しました" -#: access/transam/xlog.c:6047 +#: access/transam/xlog.c:6072 #, c-format msgid "shutting down" msgstr "シャットダウンしています" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6086 +#: access/transam/xlog.c:6111 #, c-format msgid "restartpoint starting:%s%s%s%s%s%s%s%s" msgstr "リスタートポイント開始:%s%s%s%s%s%s%s%s" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6098 +#: access/transam/xlog.c:6123 #, c-format msgid "checkpoint starting:%s%s%s%s%s%s%s%s" msgstr "チェックポイント開始:%s%s%s%s%s%s%s%s" -#: access/transam/xlog.c:6158 +#: access/transam/xlog.c:6183 #, c-format msgid "restartpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "リスタートポイント完了: %d個のバッファを出力 (%.1f%%); %d個のWALファイルを追加、%d個を削除、%d個を再利用; 書き出し=%ld.%03d秒, 同期=%ld.%03d秒, 全体=%ld.%03d秒; 同期したファイル=%d, 最長=%ld.%03d秒, 平均=%ld.%03d秒; 距離=%d kB, 予測=%d kB" -#: access/transam/xlog.c:6178 +#: access/transam/xlog.c:6203 #, c-format msgid "checkpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d removed, %d recycled; write=%ld.%03d s, sync=%ld.%03d s, total=%ld.%03d s; sync files=%d, longest=%ld.%03d s, average=%ld.%03d s; distance=%d kB, estimate=%d kB" msgstr "チェックポイント完了: %d個のバッファを出力 (%.1f%%); %d個のWALファイルを追加、%d個を削除、%d個を再利用; 書き出し=%ld.%03d秒, 同期=%ld.%03d秒, 全体=%ld.%03d秒; 同期したファイル=%d, 最長=%ld.%03d秒, 平均=%ld.%03d秒; 距離=%d kB, 予測=%d kB" -#: access/transam/xlog.c:6620 +#: access/transam/xlog.c:6645 #, c-format msgid "concurrent write-ahead log activity while database system is shutting down" msgstr "データベースのシャットダウンに並行して、先行書き込みログが発生しました" -#: access/transam/xlog.c:7177 +#: access/transam/xlog.c:7202 #, c-format msgid "recovery restart point at %X/%X" msgstr "リカバリ再開ポイントは%X/%Xです" -#: access/transam/xlog.c:7179 +#: access/transam/xlog.c:7204 #, c-format msgid "Last completed transaction was at log time %s." msgstr "最後に完了したトランザクションはログ時刻 %s のものです" -#: access/transam/xlog.c:7426 +#: access/transam/xlog.c:7451 #, c-format msgid "restore point \"%s\" created at %X/%X" msgstr "復帰ポイント\"%s\"が%X/%Xに作成されました" -#: access/transam/xlog.c:7633 +#: access/transam/xlog.c:7658 #, c-format msgid "online backup was canceled, recovery cannot continue" msgstr "オンラインバックアップはキャンセルされ、リカバリを継続できません" -#: access/transam/xlog.c:7691 +#: access/transam/xlog.c:7716 #, c-format msgid "unexpected timeline ID %u (should be %u) in shutdown checkpoint record" msgstr "シャットダウンチェックポイントレコードにおいて想定外のタイムラインID %u(%uのはず)がありました" -#: access/transam/xlog.c:7749 +#: access/transam/xlog.c:7774 #, c-format msgid "unexpected timeline ID %u (should be %u) in online checkpoint record" msgstr "オンラインチェックポイントレコードにおいて想定外のタイムラインID %u(%uのはず)がありました" -#: access/transam/xlog.c:7778 +#: access/transam/xlog.c:7803 #, c-format msgid "unexpected timeline ID %u (should be %u) in end-of-recovery record" msgstr "リカバリ終了チェックポイントレコードにおいて想定外のタイムラインID %u(%uのはず)がありました" -#: access/transam/xlog.c:8036 +#: access/transam/xlog.c:8061 #, c-format msgid "could not fsync write-through file \"%s\": %m" msgstr "ライトスルーファイル\"%s\"をfsyncできませんでした: %m" -#: access/transam/xlog.c:8042 +#: access/transam/xlog.c:8067 #, c-format msgid "could not fdatasync file \"%s\": %m" msgstr "ファイル\"%s\"をfdatasyncできませんでした: %m" -#: access/transam/xlog.c:8137 access/transam/xlog.c:8504 +#: access/transam/xlog.c:8162 access/transam/xlog.c:8529 #, c-format msgid "WAL level not sufficient for making an online backup" msgstr "オンラインバックアップを行うにはWALレベルが不十分です" -#: access/transam/xlog.c:8138 access/transam/xlog.c:8505 access/transam/xlogfuncs.c:199 +#: access/transam/xlog.c:8163 access/transam/xlog.c:8530 access/transam/xlogfuncs.c:199 #, c-format msgid "wal_level must be set to \"replica\" or \"logical\" at server start." msgstr "サーバーの開始時にwal_levelを\"replica\"または \"logical\"にセットする必要があります。" -#: access/transam/xlog.c:8143 +#: access/transam/xlog.c:8168 #, c-format msgid "backup label too long (max %d bytes)" msgstr "バックアップラベルが長すぎます (最大%dバイト)" -#: access/transam/xlog.c:8259 +#: access/transam/xlog.c:8284 #, c-format msgid "WAL generated with full_page_writes=off was replayed since last restartpoint" msgstr "full_page_writes=off で生成されたWALは最終リスタートポイントから再生されます" -#: access/transam/xlog.c:8261 access/transam/xlog.c:8617 +#: access/transam/xlog.c:8286 access/transam/xlog.c:8642 #, c-format msgid "This means that the backup being taken on the standby is corrupt and should not be used. Enable full_page_writes and run CHECKPOINT on the primary, and then try an online backup again." msgstr "つまりこのスタンバイで取得されたバックアップは破損しており、使用すべきではありません。プライマリでfull_page_writesを有効にしCHECKPOINTを実行したのち、再度オンラインバックアップを試行してください。" -#: access/transam/xlog.c:8341 backup/basebackup.c:1349 utils/adt/misc.c:347 +#: access/transam/xlog.c:8366 backup/basebackup.c:1343 utils/adt/misc.c:340 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "シンボリックリンク\"%s\"の参照先が長すぎます" -#: access/transam/xlog.c:8391 backup/basebackup.c:1364 commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:355 +#: access/transam/xlog.c:8416 backup/basebackup.c:1358 commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:348 #, c-format msgid "tablespaces are not supported on this platform" msgstr "このプラットフォームではテーブル空間はサポートしていません" -#: access/transam/xlog.c:8550 access/transam/xlog.c:8563 access/transam/xlogrecovery.c:1237 access/transam/xlogrecovery.c:1244 access/transam/xlogrecovery.c:1303 access/transam/xlogrecovery.c:1383 access/transam/xlogrecovery.c:1407 +#: access/transam/xlog.c:8575 access/transam/xlog.c:8588 access/transam/xlogrecovery.c:1237 access/transam/xlogrecovery.c:1244 access/transam/xlogrecovery.c:1303 access/transam/xlogrecovery.c:1383 access/transam/xlogrecovery.c:1407 #, c-format msgid "invalid data in file \"%s\"" msgstr "ファイル\"%s\"内の不正なデータ" -#: access/transam/xlog.c:8567 backup/basebackup.c:1204 +#: access/transam/xlog.c:8592 backup/basebackup.c:1204 #, c-format msgid "the standby was promoted during online backup" msgstr "オンラインバックアップ中にスタンバイが昇格しました" -#: access/transam/xlog.c:8568 backup/basebackup.c:1205 +#: access/transam/xlog.c:8593 backup/basebackup.c:1205 #, c-format msgid "This means that the backup being taken is corrupt and should not be used. Try taking another online backup." msgstr "つまり取得中のバックアップは破損しているため使用してはいけません。再度オンラインバックアップを取得してください。" -#: access/transam/xlog.c:8615 +#: access/transam/xlog.c:8640 #, c-format msgid "WAL generated with full_page_writes=off was replayed during online backup" msgstr "full_page_writes=offで生成されたWALはオンラインバックアップ中に再生されます" -#: access/transam/xlog.c:8740 +#: access/transam/xlog.c:8765 #, c-format msgid "base backup done, waiting for required WAL segments to be archived" msgstr "ベースバックアップ完了、必要な WAL セグメントがアーカイブされるのを待っています" -#: access/transam/xlog.c:8754 +#: access/transam/xlog.c:8779 #, c-format msgid "still waiting for all required WAL segments to be archived (%d seconds elapsed)" msgstr "まだ必要なすべての WAL セグメントがアーカイブされるのを待っています(%d 秒経過)" -#: access/transam/xlog.c:8756 +#: access/transam/xlog.c:8781 #, c-format msgid "Check that your archive_command is executing properly. You can safely cancel this backup, but the database backup will not be usable without all the WAL segments." msgstr "archive_commandが適切に実行されていることを確認してください。バックアップ処理は安全に取り消すことができますが、全てのWALセグメントがそろわなければこのバックアップは利用できません。" -#: access/transam/xlog.c:8763 +#: access/transam/xlog.c:8788 #, c-format msgid "all required WAL segments have been archived" msgstr "必要なすべての WAL セグメントがアーカイブされました" -#: access/transam/xlog.c:8767 +#: access/transam/xlog.c:8792 #, c-format msgid "WAL archiving is not enabled; you must ensure that all required WAL segments are copied through other means to complete the backup" msgstr "WAL アーカイブが有効になっていません。バックアップを完了させるには、すべての必要なWALセグメントが他の方法でコピーされたことを確認してください。" -#: access/transam/xlog.c:8816 +#: access/transam/xlog.c:8841 #, c-format msgid "aborting backup due to backend exiting before pg_backup_stop was called" msgstr "バックエンドがpg_backup_stopの呼び出し前に終了したため、バックアップは異常終了しました" @@ -3263,43 +3268,43 @@ msgstr "圧縮詳細は圧縮が有効でない場合は指定できません" msgid "invalid compression specification: %s" msgstr "不正な圧縮指定: %s" -#: backup/basebackup.c:1435 +#: backup/basebackup.c:1429 #, c-format msgid "skipping special file \"%s\"" msgstr "スペシャルファイル\"%s\"をスキップしています" -#: backup/basebackup.c:1554 +#: backup/basebackup.c:1548 #, c-format msgid "invalid segment number %d in file \"%s\"" msgstr "ファイル\"%2$s\"セグメント番号%1$dは不正です" -#: backup/basebackup.c:1586 +#: backup/basebackup.c:1580 #, c-format msgid "could not verify checksum in file \"%s\", block %u: read buffer size %d and page size %d differ" msgstr "ファイル\"%s\"、ブロック%uでチェックサム検証に失敗しました: 読み込みバッファサイズ%dとページサイズ%dが異なっています" -#: backup/basebackup.c:1660 +#: backup/basebackup.c:1654 #, c-format msgid "checksum verification failed in file \"%s\", block %u: calculated %X but expected %X" msgstr "ファイル\"%s\"のブロック%uでチェックサム検証が失敗しました: 計算されたチェックサムは%Xですが想定は%Xです" -#: backup/basebackup.c:1667 +#: backup/basebackup.c:1661 #, c-format msgid "further checksum verification failures in file \"%s\" will not be reported" msgstr "ファイル\"%s\"における以降のチェックサムエラーは報告されません" -#: backup/basebackup.c:1723 +#: backup/basebackup.c:1717 #, c-format msgid "file \"%s\" has a total of %d checksum verification failure" msgid_plural "file \"%s\" has a total of %d checksum verification failures" msgstr[0] "ファイル\"%s\"では合計%d個のチェックサムエラーが発生しました" -#: backup/basebackup.c:1769 +#: backup/basebackup.c:1763 #, c-format msgid "file name too long for tar format: \"%s\"" msgstr "ファイル名がtarフォーマットに対して長すぎます: \"%s\"" -#: backup/basebackup.c:1774 +#: backup/basebackup.c:1768 #, c-format msgid "symbolic link target too long for tar format: file name \"%s\", target \"%s\"" msgstr "シンボリックリンクのリンク先tarのフォーマットにとって長すぎます: ファイル名 \"%s\", リンク先 \"%s\"" @@ -3379,12 +3384,12 @@ msgstr "圧縮ワーカー数を%dに設定できませんでした: %s" msgid "-X requires a power of two value between 1 MB and 1 GB" msgstr "-X オプションの値は1MBから1GBの間の2の累乗を指定します" -#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3906 +#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3994 #, c-format msgid "--%s requires a value" msgstr "--%sには値が必要です" -#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3911 +#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3999 #, c-format msgid "-c %s requires a value" msgstr "-c %sは値が必要です" @@ -3399,701 +3404,701 @@ msgstr "詳細については\"%s --help\"を実行してください。\n" msgid "%s: invalid command-line arguments\n" msgstr "%s: コマンドライン引数が不正です\n" -#: catalog/aclchk.c:185 +#: catalog/aclchk.c:186 #, c-format msgid "grant options can only be granted to roles" msgstr "グラントオプションはロールにのみ付与できます" -#: catalog/aclchk.c:307 +#: catalog/aclchk.c:308 #, c-format msgid "no privileges were granted for column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の列\"%1$s\"に付与された権限はありません" -#: catalog/aclchk.c:312 +#: catalog/aclchk.c:313 #, c-format msgid "no privileges were granted for \"%s\"" msgstr "\"%s\"に付与された権限はありません" -#: catalog/aclchk.c:320 +#: catalog/aclchk.c:321 #, c-format msgid "not all privileges were granted for column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の列\"%1$s\"に対して一部の権限が付与されませんでした" -#: catalog/aclchk.c:325 +#: catalog/aclchk.c:326 #, c-format msgid "not all privileges were granted for \"%s\"" msgstr "\"%s\"に対して一部の権限が付与されませんでした" -#: catalog/aclchk.c:336 +#: catalog/aclchk.c:337 #, c-format msgid "no privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の列\"%1$s\"に対して取り消せた権限はありません" -#: catalog/aclchk.c:341 +#: catalog/aclchk.c:342 #, c-format msgid "no privileges could be revoked for \"%s\"" msgstr "\"%s\"に対して取り消せた権限はありません" -#: catalog/aclchk.c:349 +#: catalog/aclchk.c:350 #, c-format msgid "not all privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の列\"%1$s\"に対して一部の権限が取り消せませんでした" -#: catalog/aclchk.c:354 +#: catalog/aclchk.c:355 #, c-format msgid "not all privileges could be revoked for \"%s\"" msgstr "\"%s\"に対して一部の権限が取り消せませんでした" -#: catalog/aclchk.c:386 +#: catalog/aclchk.c:387 #, c-format msgid "grantor must be current user" msgstr "権限付与者は現在のユーザーでなければなりません" -#: catalog/aclchk.c:454 catalog/aclchk.c:1029 +#: catalog/aclchk.c:455 catalog/aclchk.c:1030 #, c-format msgid "invalid privilege type %s for relation" msgstr "リレーションに対する不正な権限のタイプ %s" -#: catalog/aclchk.c:458 catalog/aclchk.c:1033 +#: catalog/aclchk.c:459 catalog/aclchk.c:1034 #, c-format msgid "invalid privilege type %s for sequence" msgstr "シーケンスに対する不正な権限のタイプ %s" -#: catalog/aclchk.c:462 +#: catalog/aclchk.c:463 #, c-format msgid "invalid privilege type %s for database" msgstr "データベースに対する不正な権限タイプ %s" -#: catalog/aclchk.c:466 +#: catalog/aclchk.c:467 #, c-format msgid "invalid privilege type %s for domain" msgstr "ドメインに対する不正な権限タイプ %s" -#: catalog/aclchk.c:470 catalog/aclchk.c:1037 +#: catalog/aclchk.c:471 catalog/aclchk.c:1038 #, c-format msgid "invalid privilege type %s for function" msgstr "関数に対する不正な権限タイプ %s" -#: catalog/aclchk.c:474 +#: catalog/aclchk.c:475 #, c-format msgid "invalid privilege type %s for language" msgstr "言語に対する不正な権限タイプ %s" -#: catalog/aclchk.c:478 +#: catalog/aclchk.c:479 #, c-format msgid "invalid privilege type %s for large object" msgstr "ラージオブジェクトに対する不正な権限タイプ %s" -#: catalog/aclchk.c:482 catalog/aclchk.c:1053 +#: catalog/aclchk.c:483 catalog/aclchk.c:1054 #, c-format msgid "invalid privilege type %s for schema" msgstr "スキーマに対する不正な権限タイプ %s" -#: catalog/aclchk.c:486 catalog/aclchk.c:1041 +#: catalog/aclchk.c:487 catalog/aclchk.c:1042 #, c-format msgid "invalid privilege type %s for procedure" msgstr "プロシージャに対する不正な権限タイプ %s" -#: catalog/aclchk.c:490 catalog/aclchk.c:1045 +#: catalog/aclchk.c:491 catalog/aclchk.c:1046 #, c-format msgid "invalid privilege type %s for routine" msgstr "ルーチンに対する不正な権限のタイプ %s" -#: catalog/aclchk.c:494 +#: catalog/aclchk.c:495 #, c-format msgid "invalid privilege type %s for tablespace" msgstr "テーブル空間に対する不正な権限タイプ %s" -#: catalog/aclchk.c:498 catalog/aclchk.c:1049 +#: catalog/aclchk.c:499 catalog/aclchk.c:1050 #, c-format msgid "invalid privilege type %s for type" msgstr "型に対する不正な権限タイプ %s" -#: catalog/aclchk.c:502 +#: catalog/aclchk.c:503 #, c-format msgid "invalid privilege type %s for foreign-data wrapper" msgstr "外部データラッパーに対する不正な権限タイプ %s" -#: catalog/aclchk.c:506 +#: catalog/aclchk.c:507 #, c-format msgid "invalid privilege type %s for foreign server" msgstr "外部サーバーに対する不正な権限タイプ %s" -#: catalog/aclchk.c:510 +#: catalog/aclchk.c:511 #, c-format msgid "invalid privilege type %s for parameter" msgstr "パラメータに対する不正な権限タイプ %s" -#: catalog/aclchk.c:549 +#: catalog/aclchk.c:550 #, c-format msgid "column privileges are only valid for relations" msgstr "列権限はリレーションに対してのみ有効です" -#: catalog/aclchk.c:712 catalog/aclchk.c:4486 catalog/aclchk.c:5333 catalog/objectaddress.c:1072 catalog/pg_largeobject.c:116 storage/large_object/inv_api.c:287 +#: catalog/aclchk.c:713 catalog/aclchk.c:4491 catalog/aclchk.c:5338 catalog/objectaddress.c:1072 catalog/pg_largeobject.c:116 storage/large_object/inv_api.c:287 #, c-format msgid "large object %u does not exist" msgstr "ラージオブジェクト%uは存在しません" -#: catalog/aclchk.c:1086 +#: catalog/aclchk.c:1087 #, c-format msgid "default privileges cannot be set for columns" msgstr "デフォルト権限は列には設定できません" -#: catalog/aclchk.c:1246 +#: catalog/aclchk.c:1247 #, c-format msgid "cannot use IN SCHEMA clause when using GRANT/REVOKE ON SCHEMAS" msgstr "GRANT/REVOKE ON SCHEMAS を使っている時には IN SCHEMA 句は指定できません" -#: catalog/aclchk.c:1587 catalog/catalog.c:648 catalog/objectaddress.c:1543 catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 commands/sequence.c:1670 commands/tablecmds.c:7320 commands/tablecmds.c:7476 commands/tablecmds.c:7526 commands/tablecmds.c:7600 commands/tablecmds.c:7670 commands/tablecmds.c:7782 commands/tablecmds.c:7876 commands/tablecmds.c:7935 commands/tablecmds.c:8024 commands/tablecmds.c:8054 commands/tablecmds.c:8182 -#: commands/tablecmds.c:8264 commands/tablecmds.c:8420 commands/tablecmds.c:8542 commands/tablecmds.c:12281 commands/tablecmds.c:12462 commands/tablecmds.c:12622 commands/tablecmds.c:13819 commands/tablecmds.c:16388 commands/trigger.c:954 parser/analyze.c:2517 parser/parse_relation.c:725 parser/parse_target.c:1077 parser/parse_type.c:144 parser/parse_utilcmd.c:3437 parser/parse_utilcmd.c:3473 parser/parse_utilcmd.c:3515 utils/adt/acl.c:2869 +#: catalog/aclchk.c:1588 catalog/catalog.c:657 catalog/objectaddress.c:1543 catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 commands/sequence.c:1673 commands/tablecmds.c:7343 commands/tablecmds.c:7499 commands/tablecmds.c:7549 commands/tablecmds.c:7623 commands/tablecmds.c:7693 commands/tablecmds.c:7805 commands/tablecmds.c:7899 commands/tablecmds.c:7958 commands/tablecmds.c:8047 commands/tablecmds.c:8077 commands/tablecmds.c:8205 +#: commands/tablecmds.c:8287 commands/tablecmds.c:8443 commands/tablecmds.c:8565 commands/tablecmds.c:12400 commands/tablecmds.c:12592 commands/tablecmds.c:12752 commands/tablecmds.c:13949 commands/tablecmds.c:16519 commands/trigger.c:954 parser/analyze.c:2517 parser/parse_relation.c:725 parser/parse_target.c:1077 parser/parse_type.c:144 parser/parse_utilcmd.c:3465 parser/parse_utilcmd.c:3501 parser/parse_utilcmd.c:3543 utils/adt/acl.c:2869 #: utils/adt/ruleutils.c:2828 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist" msgstr "リレーション\"%2$s\"の列\"%1$s\"は存在しません" -#: catalog/aclchk.c:1850 catalog/objectaddress.c:1383 commands/sequence.c:1179 commands/tablecmds.c:253 commands/tablecmds.c:17255 utils/adt/acl.c:2077 utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 utils/adt/acl.c:2199 utils/adt/acl.c:2229 +#: catalog/aclchk.c:1851 catalog/objectaddress.c:1383 commands/sequence.c:1179 commands/tablecmds.c:253 commands/tablecmds.c:17393 utils/adt/acl.c:2077 utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 utils/adt/acl.c:2199 utils/adt/acl.c:2229 #, c-format msgid "\"%s\" is not a sequence" msgstr "\"%s\"はシーケンスではありません" -#: catalog/aclchk.c:1888 +#: catalog/aclchk.c:1889 #, c-format msgid "sequence \"%s\" only supports USAGE, SELECT, and UPDATE privileges" msgstr "シーケンス \"%s\"では USAGE, SELECT, UPDATE 権限のみをサポートします" -#: catalog/aclchk.c:1905 +#: catalog/aclchk.c:1906 #, c-format msgid "invalid privilege type %s for table" msgstr "テーブルに対する権限タイプ%sは不正です" -#: catalog/aclchk.c:2071 +#: catalog/aclchk.c:2075 #, c-format msgid "invalid privilege type %s for column" msgstr "列では権限タイプ %s は無効です" -#: catalog/aclchk.c:2084 +#: catalog/aclchk.c:2088 #, c-format msgid "sequence \"%s\" only supports SELECT column privileges" msgstr "シーケンス \"%s\"では USAGE, SELECT, UPDATE のみをサポートします" -#: catalog/aclchk.c:2666 +#: catalog/aclchk.c:2671 #, c-format msgid "language \"%s\" is not trusted" msgstr "言語\"%s\"は信頼されていません" -#: catalog/aclchk.c:2668 +#: catalog/aclchk.c:2673 #, c-format msgid "GRANT and REVOKE are not allowed on untrusted languages, because only superusers can use untrusted languages." msgstr "信頼されない言語はスーパーユーザーのみが使用可能なため、GRANTとREVOKEは信頼されない言語上では実行不可です。" -#: catalog/aclchk.c:3182 +#: catalog/aclchk.c:3187 #, c-format msgid "cannot set privileges of array types" msgstr "配列型の権限を設定できません" -#: catalog/aclchk.c:3183 +#: catalog/aclchk.c:3188 #, c-format msgid "Set the privileges of the element type instead." msgstr "代わりに要素型の権限を設定してください。" -#: catalog/aclchk.c:3190 catalog/objectaddress.c:1649 +#: catalog/aclchk.c:3195 catalog/objectaddress.c:1649 #, c-format msgid "\"%s\" is not a domain" msgstr "\"%s\"はドメインではありません" -#: catalog/aclchk.c:3462 +#: catalog/aclchk.c:3467 #, c-format msgid "unrecognized privilege type \"%s\"" msgstr "認識できない権限タイプ\"%s\"" -#: catalog/aclchk.c:3527 +#: catalog/aclchk.c:3532 #, c-format msgid "permission denied for aggregate %s" msgstr "集約 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3530 +#: catalog/aclchk.c:3535 #, c-format msgid "permission denied for collation %s" msgstr "照合順序 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3533 +#: catalog/aclchk.c:3538 #, c-format msgid "permission denied for column %s" msgstr "列 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3536 +#: catalog/aclchk.c:3541 #, c-format msgid "permission denied for conversion %s" msgstr "変換 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3539 +#: catalog/aclchk.c:3544 #, c-format msgid "permission denied for database %s" msgstr "データベース %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3542 +#: catalog/aclchk.c:3547 #, c-format msgid "permission denied for domain %s" msgstr "ドメイン %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3545 +#: catalog/aclchk.c:3550 #, c-format msgid "permission denied for event trigger %s" msgstr "イベントトリガ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3548 +#: catalog/aclchk.c:3553 #, c-format msgid "permission denied for extension %s" msgstr "機能拡張 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3551 +#: catalog/aclchk.c:3556 #, c-format msgid "permission denied for foreign-data wrapper %s" msgstr "外部データラッパ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3554 +#: catalog/aclchk.c:3559 #, c-format msgid "permission denied for foreign server %s" msgstr "外部サーバー %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3557 +#: catalog/aclchk.c:3562 #, c-format msgid "permission denied for foreign table %s" msgstr "外部テーブル %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3560 +#: catalog/aclchk.c:3565 #, c-format msgid "permission denied for function %s" msgstr "関数 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3563 +#: catalog/aclchk.c:3568 #, c-format msgid "permission denied for index %s" msgstr "インデックス %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3566 +#: catalog/aclchk.c:3571 #, c-format msgid "permission denied for language %s" msgstr "言語 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3569 +#: catalog/aclchk.c:3574 #, c-format msgid "permission denied for large object %s" msgstr "ラージオブジェクト %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3572 +#: catalog/aclchk.c:3577 #, c-format msgid "permission denied for materialized view %s" msgstr "実体化ビュー %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3575 +#: catalog/aclchk.c:3580 #, c-format msgid "permission denied for operator class %s" msgstr "演算子クラス %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3578 +#: catalog/aclchk.c:3583 #, c-format msgid "permission denied for operator %s" msgstr "演算子 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3581 +#: catalog/aclchk.c:3586 #, c-format msgid "permission denied for operator family %s" msgstr "演算子族 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3584 +#: catalog/aclchk.c:3589 #, c-format msgid "permission denied for parameter %s" msgstr "パラメータ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3587 +#: catalog/aclchk.c:3592 #, c-format msgid "permission denied for policy %s" msgstr "ポリシ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3590 +#: catalog/aclchk.c:3595 #, c-format msgid "permission denied for procedure %s" msgstr "プロシージャ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3593 +#: catalog/aclchk.c:3598 #, c-format msgid "permission denied for publication %s" msgstr "パブリケーション%sへのアクセスが拒否されました" -#: catalog/aclchk.c:3596 +#: catalog/aclchk.c:3601 #, c-format msgid "permission denied for routine %s" msgstr "ルーチン %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3599 +#: catalog/aclchk.c:3604 #, c-format msgid "permission denied for schema %s" msgstr "スキーマ %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3602 commands/sequence.c:667 commands/sequence.c:893 commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1768 commands/sequence.c:1829 +#: catalog/aclchk.c:3607 commands/sequence.c:667 commands/sequence.c:893 commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1771 commands/sequence.c:1832 #, c-format msgid "permission denied for sequence %s" msgstr "シーケンス %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3605 +#: catalog/aclchk.c:3610 #, c-format msgid "permission denied for statistics object %s" msgstr "統計情報オブジェクト %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3608 +#: catalog/aclchk.c:3613 #, c-format msgid "permission denied for subscription %s" msgstr "サブスクリプション %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3611 +#: catalog/aclchk.c:3616 #, c-format msgid "permission denied for table %s" msgstr "テーブル %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3614 +#: catalog/aclchk.c:3619 #, c-format msgid "permission denied for tablespace %s" msgstr "テーブル空間 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3617 +#: catalog/aclchk.c:3622 #, c-format msgid "permission denied for text search configuration %s" msgstr "テキスト検索設定 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3620 +#: catalog/aclchk.c:3625 #, c-format msgid "permission denied for text search dictionary %s" msgstr "テキスト検索辞書 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3623 +#: catalog/aclchk.c:3628 #, c-format msgid "permission denied for type %s" msgstr "型 %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3626 +#: catalog/aclchk.c:3631 #, c-format msgid "permission denied for view %s" msgstr "ビュー %s へのアクセスが拒否されました" -#: catalog/aclchk.c:3662 +#: catalog/aclchk.c:3667 #, c-format msgid "must be owner of aggregate %s" msgstr "集約 %s の所有者である必要があります" -#: catalog/aclchk.c:3665 +#: catalog/aclchk.c:3670 #, c-format msgid "must be owner of collation %s" msgstr "照合順序 %s の所有者である必要があります" -#: catalog/aclchk.c:3668 +#: catalog/aclchk.c:3673 #, c-format msgid "must be owner of conversion %s" msgstr "変換 %s の所有者である必要があります" -#: catalog/aclchk.c:3671 +#: catalog/aclchk.c:3676 #, c-format msgid "must be owner of database %s" msgstr "データベース %s の所有者である必要があります" -#: catalog/aclchk.c:3674 +#: catalog/aclchk.c:3679 #, c-format msgid "must be owner of domain %s" msgstr "ドメイン %s の所有者である必要があります" -#: catalog/aclchk.c:3677 +#: catalog/aclchk.c:3682 #, c-format msgid "must be owner of event trigger %s" msgstr "イベントトリガ %s の所有者である必要があります" -#: catalog/aclchk.c:3680 +#: catalog/aclchk.c:3685 #, c-format msgid "must be owner of extension %s" msgstr "機能拡張 %s の所有者である必要があります" -#: catalog/aclchk.c:3683 +#: catalog/aclchk.c:3688 #, c-format msgid "must be owner of foreign-data wrapper %s" msgstr "外部データラッパー %s の所有者である必要があります" -#: catalog/aclchk.c:3686 +#: catalog/aclchk.c:3691 #, c-format msgid "must be owner of foreign server %s" msgstr "外部サーバー %s の所有者である必要があります" -#: catalog/aclchk.c:3689 +#: catalog/aclchk.c:3694 #, c-format msgid "must be owner of foreign table %s" msgstr "外部テーブル %s の所有者である必要があります" -#: catalog/aclchk.c:3692 +#: catalog/aclchk.c:3697 #, c-format msgid "must be owner of function %s" msgstr "関数 %s の所有者である必要があります" -#: catalog/aclchk.c:3695 +#: catalog/aclchk.c:3700 #, c-format msgid "must be owner of index %s" msgstr "インデックス %s の所有者である必要があります" -#: catalog/aclchk.c:3698 +#: catalog/aclchk.c:3703 #, c-format msgid "must be owner of language %s" msgstr "言語 %s の所有者である必要があります" -#: catalog/aclchk.c:3701 +#: catalog/aclchk.c:3706 #, c-format msgid "must be owner of large object %s" msgstr "ラージオブジェクト %s の所有者である必要があります" -#: catalog/aclchk.c:3704 +#: catalog/aclchk.c:3709 #, c-format msgid "must be owner of materialized view %s" msgstr "実体化ビュー %s の所有者である必要があります" -#: catalog/aclchk.c:3707 +#: catalog/aclchk.c:3712 #, c-format msgid "must be owner of operator class %s" msgstr "演算子クラス %s の所有者である必要があります" -#: catalog/aclchk.c:3710 +#: catalog/aclchk.c:3715 #, c-format msgid "must be owner of operator %s" msgstr "演算子 %s の所有者である必要があります" -#: catalog/aclchk.c:3713 +#: catalog/aclchk.c:3718 #, c-format msgid "must be owner of operator family %s" msgstr "演算子族 %s の所有者である必要があります" -#: catalog/aclchk.c:3716 +#: catalog/aclchk.c:3721 #, c-format msgid "must be owner of procedure %s" msgstr "プロシージャ %s の所有者である必要があります" -#: catalog/aclchk.c:3719 +#: catalog/aclchk.c:3724 #, c-format msgid "must be owner of publication %s" msgstr "パブリケーション %s の所有者である必要があります" -#: catalog/aclchk.c:3722 +#: catalog/aclchk.c:3727 #, c-format msgid "must be owner of routine %s" msgstr "ルーチン %s の所有者である必要があります" -#: catalog/aclchk.c:3725 +#: catalog/aclchk.c:3730 #, c-format msgid "must be owner of sequence %s" msgstr "シーケンス %s の所有者である必要があります" -#: catalog/aclchk.c:3728 +#: catalog/aclchk.c:3733 #, c-format msgid "must be owner of subscription %s" msgstr "サブスクリプション %s の所有者である必要があります" -#: catalog/aclchk.c:3731 +#: catalog/aclchk.c:3736 #, c-format msgid "must be owner of table %s" msgstr "テーブル %s の所有者である必要があります" -#: catalog/aclchk.c:3734 +#: catalog/aclchk.c:3739 #, c-format msgid "must be owner of type %s" msgstr "型 %s の所有者である必要があります" -#: catalog/aclchk.c:3737 +#: catalog/aclchk.c:3742 #, c-format msgid "must be owner of view %s" msgstr "ビュー %s の所有者である必要があります" -#: catalog/aclchk.c:3740 +#: catalog/aclchk.c:3745 #, c-format msgid "must be owner of schema %s" msgstr "スキーマ %s の所有者である必要があります" -#: catalog/aclchk.c:3743 +#: catalog/aclchk.c:3748 #, c-format msgid "must be owner of statistics object %s" msgstr "統計情報オブジェクト %s の所有者である必要があります" -#: catalog/aclchk.c:3746 +#: catalog/aclchk.c:3751 #, c-format msgid "must be owner of tablespace %s" msgstr "テーブル空間 %s の所有者である必要があります" -#: catalog/aclchk.c:3749 +#: catalog/aclchk.c:3754 #, c-format msgid "must be owner of text search configuration %s" msgstr "テキスト検索設定 %s の所有者である必要があります" -#: catalog/aclchk.c:3752 +#: catalog/aclchk.c:3757 #, c-format msgid "must be owner of text search dictionary %s" msgstr "テキスト検索辞書 %s の所有者である必要があります" -#: catalog/aclchk.c:3766 +#: catalog/aclchk.c:3771 #, c-format msgid "must be owner of relation %s" msgstr "リレーション %s の所有者である必要があります" -#: catalog/aclchk.c:3812 +#: catalog/aclchk.c:3817 #, c-format msgid "permission denied for column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の列\"%1$s\"へのアクセスが拒否されました" -#: catalog/aclchk.c:3957 catalog/aclchk.c:3976 +#: catalog/aclchk.c:3962 catalog/aclchk.c:3981 #, c-format msgid "attribute %d of relation with OID %u does not exist" msgstr "OID %2$uのリレーションに属性%1$dは存在しません" -#: catalog/aclchk.c:4071 catalog/aclchk.c:5184 +#: catalog/aclchk.c:4076 catalog/aclchk.c:5189 #, c-format msgid "relation with OID %u does not exist" msgstr "OID %uのリレーションは存在しません" -#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2615 +#: catalog/aclchk.c:4189 catalog/aclchk.c:5607 commands/dbcommands.c:2635 #, c-format msgid "database with OID %u does not exist" msgstr "OID %uのデータベースは存在しません" -#: catalog/aclchk.c:4299 +#: catalog/aclchk.c:4304 #, c-format msgid "parameter ACL with OID %u does not exist" msgstr "OID %uのパラメータACLは存在しません" -#: catalog/aclchk.c:4353 catalog/aclchk.c:5262 tcop/fastpath.c:141 utils/fmgr/fmgr.c:2037 +#: catalog/aclchk.c:4358 catalog/aclchk.c:5267 tcop/fastpath.c:141 utils/fmgr/fmgr.c:2037 #, c-format msgid "function with OID %u does not exist" msgstr "OID %uの関数は存在しません" -#: catalog/aclchk.c:4407 catalog/aclchk.c:5288 +#: catalog/aclchk.c:4412 catalog/aclchk.c:5293 #, c-format msgid "language with OID %u does not exist" msgstr "OID %uの言語は存在しません" -#: catalog/aclchk.c:4571 catalog/aclchk.c:5360 commands/collationcmds.c:595 commands/publicationcmds.c:1745 +#: catalog/aclchk.c:4576 catalog/aclchk.c:5365 commands/collationcmds.c:595 commands/publicationcmds.c:1745 #, c-format msgid "schema with OID %u does not exist" msgstr "OID %uのスキーマは存在しません" -#: catalog/aclchk.c:4635 catalog/aclchk.c:5387 utils/adt/genfile.c:632 +#: catalog/aclchk.c:4640 catalog/aclchk.c:5392 utils/adt/genfile.c:632 #, c-format msgid "tablespace with OID %u does not exist" msgstr "OID %uのテーブル空間は存在しません" -#: catalog/aclchk.c:4694 catalog/aclchk.c:5521 commands/foreigncmds.c:325 +#: catalog/aclchk.c:4699 catalog/aclchk.c:5526 commands/foreigncmds.c:325 #, c-format msgid "foreign-data wrapper with OID %u does not exist" msgstr "OID %uの外部データラッパーは存在しません" -#: catalog/aclchk.c:4756 catalog/aclchk.c:5548 commands/foreigncmds.c:462 +#: catalog/aclchk.c:4761 catalog/aclchk.c:5553 commands/foreigncmds.c:462 #, c-format msgid "foreign server with OID %u does not exist" msgstr "OID %uの外部サーバーは存在しません" -#: catalog/aclchk.c:4816 catalog/aclchk.c:5210 utils/cache/typcache.c:390 utils/cache/typcache.c:445 +#: catalog/aclchk.c:4821 catalog/aclchk.c:5215 utils/cache/typcache.c:390 utils/cache/typcache.c:445 #, c-format msgid "type with OID %u does not exist" msgstr "OID %uの型は存在しません" -#: catalog/aclchk.c:5236 +#: catalog/aclchk.c:5241 #, c-format msgid "operator with OID %u does not exist" msgstr "OID %uの演算子は存在しません" -#: catalog/aclchk.c:5413 +#: catalog/aclchk.c:5418 #, c-format msgid "operator class with OID %u does not exist" msgstr "OID %uの演算子クラスは存在しません" -#: catalog/aclchk.c:5440 +#: catalog/aclchk.c:5445 #, c-format msgid "operator family with OID %u does not exist" msgstr "OID %uの演算子族は存在しません" -#: catalog/aclchk.c:5467 +#: catalog/aclchk.c:5472 #, c-format msgid "text search dictionary with OID %u does not exist" msgstr "OID %uのテキスト検索辞書は存在しません" -#: catalog/aclchk.c:5494 +#: catalog/aclchk.c:5499 #, c-format msgid "text search configuration with OID %u does not exist" msgstr "OID %uのテキスト検索設定は存在しません" -#: catalog/aclchk.c:5575 commands/event_trigger.c:453 +#: catalog/aclchk.c:5580 commands/event_trigger.c:453 #, c-format msgid "event trigger with OID %u does not exist" msgstr "OID %uのイベントトリガは存在しません" -#: catalog/aclchk.c:5628 commands/collationcmds.c:439 +#: catalog/aclchk.c:5633 commands/collationcmds.c:439 #, c-format msgid "collation with OID %u does not exist" msgstr "OID %uの照合順序は存在しません" -#: catalog/aclchk.c:5654 +#: catalog/aclchk.c:5659 #, c-format msgid "conversion with OID %u does not exist" msgstr "OID %uの変換は存在しません" -#: catalog/aclchk.c:5695 +#: catalog/aclchk.c:5700 #, c-format msgid "extension with OID %u does not exist" msgstr "OID %uの機能拡張は存在しません" -#: catalog/aclchk.c:5722 commands/publicationcmds.c:1999 +#: catalog/aclchk.c:5727 commands/publicationcmds.c:1999 #, c-format msgid "publication with OID %u does not exist" msgstr "OID %uのパブリケーションは存在しません" -#: catalog/aclchk.c:5748 commands/subscriptioncmds.c:1742 +#: catalog/aclchk.c:5753 commands/subscriptioncmds.c:1742 #, c-format msgid "subscription with OID %u does not exist" msgstr "OID %uのサブスクリプションは存在しません" -#: catalog/aclchk.c:5774 +#: catalog/aclchk.c:5779 #, c-format msgid "statistics object with OID %u does not exist" msgstr "OID %uの統計情報オブジェクトは存在しません" -#: catalog/catalog.c:468 +#: catalog/catalog.c:477 #, c-format msgid "still searching for an unused OID in relation \"%s\"" msgstr "リレーション\"%s\"での未使用のOIDを探索を継続中" -#: catalog/catalog.c:470 +#: catalog/catalog.c:479 #, c-format msgid "OID candidates have been checked %llu time, but no unused OID has been found yet." msgid_plural "OID candidates have been checked %llu times, but no unused OID has been found yet." msgstr[0] "OID候補のチェックを%llu回行いましたが、使用されていないOIDはまだ見つかっていません。" -#: catalog/catalog.c:495 +#: catalog/catalog.c:504 #, c-format msgid "new OID has been assigned in relation \"%s\" after %llu retry" msgid_plural "new OID has been assigned in relation \"%s\" after %llu retries" msgstr[0] "リレーション\\\"%s\\\"で%llu回の試行後に新しいOIDが割り当てられました" -#: catalog/catalog.c:626 catalog/catalog.c:693 +#: catalog/catalog.c:635 catalog/catalog.c:702 #, c-format msgid "must be superuser to call %s()" msgstr "%s()を呼び出すにはスーパーユーザーである必要があります" -#: catalog/catalog.c:635 +#: catalog/catalog.c:644 #, c-format msgid "pg_nextoid() can only be used on system catalogs" msgstr "pg_nextoid() はシステムカタログでのみ使用できます" -#: catalog/catalog.c:640 parser/parse_utilcmd.c:2296 +#: catalog/catalog.c:649 parser/parse_utilcmd.c:2324 #, c-format msgid "index \"%s\" does not belong to table \"%s\"" msgstr "インデックス\"%s\"はテーブル\"%s\"には属していません" -#: catalog/catalog.c:657 +#: catalog/catalog.c:666 #, c-format msgid "column \"%s\" is not of type oid" msgstr "列\"%s\"はoid型ではありません" -#: catalog/catalog.c:664 +#: catalog/catalog.c:673 #, c-format msgid "index \"%s\" is not the index for column \"%s\"" msgstr "インデックス\"%s\"は列\"%s\"に対するインデックスではありません" @@ -4140,8 +4145,8 @@ msgstr[0] "" msgid "cannot drop %s because other objects depend on it" msgstr "他のオブジェクトが依存しているため%sを削除できません" -#: catalog/dependency.c:1201 catalog/dependency.c:1208 catalog/dependency.c:1219 commands/tablecmds.c:1325 commands/tablecmds.c:14461 commands/tablespace.c:476 commands/user.c:1008 commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7402 utils/misc/guc.c:7438 utils/misc/guc.c:7508 utils/misc/guc.c:11880 utils/misc/guc.c:11914 utils/misc/guc.c:11948 utils/misc/guc.c:11991 -#: utils/misc/guc.c:12033 +#: catalog/dependency.c:1201 catalog/dependency.c:1208 catalog/dependency.c:1219 commands/tablecmds.c:1342 commands/tablecmds.c:14591 commands/tablespace.c:476 commands/user.c:1008 commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7414 utils/misc/guc.c:7450 utils/misc/guc.c:7520 utils/misc/guc.c:11898 utils/misc/guc.c:11932 utils/misc/guc.c:11966 utils/misc/guc.c:12009 +#: utils/misc/guc.c:12051 #, c-format msgid "%s" msgstr "%s" @@ -4182,12 +4187,12 @@ msgstr "\"%s.%s\"を作成する権限がありません" msgid "System catalog modifications are currently disallowed." msgstr "システムカタログの更新は現在禁止されています" -#: catalog/heap.c:466 commands/tablecmds.c:2345 commands/tablecmds.c:2982 commands/tablecmds.c:6910 +#: catalog/heap.c:466 commands/tablecmds.c:2362 commands/tablecmds.c:2999 commands/tablecmds.c:6933 #, c-format msgid "tables can have at most %d columns" msgstr "テーブルは最大で%d列までしか持てません" -#: catalog/heap.c:484 commands/tablecmds.c:7210 +#: catalog/heap.c:484 commands/tablecmds.c:7233 #, c-format msgid "column name \"%s\" conflicts with a system column name" msgstr "列名\"%s\"はシステム用の列名に使われています" @@ -4224,7 +4229,7 @@ msgstr "照合可能な型 %2$s のパーティションキー列%1$sのため msgid "no collation was derived for column \"%s\" with collatable type %s" msgstr "照合可能な型 %2$s を持つ列\"%1$s\"のための照合順序を決定できませんでした" -#: catalog/heap.c:1151 catalog/index.c:875 commands/createas.c:408 commands/tablecmds.c:3899 +#: catalog/heap.c:1151 catalog/index.c:875 commands/createas.c:408 commands/tablecmds.c:3921 #, c-format msgid "relation \"%s\" already exists" msgstr "リレーション\"%s\"はすでに存在します" @@ -4264,7 +4269,7 @@ msgstr "パーティション親テーブル\"%s\"に NO INHERIT 制約は追加 msgid "check constraint \"%s\" already exists" msgstr "検査制約\"%s\"はすでに存在します" -#: catalog/heap.c:2582 catalog/index.c:889 catalog/pg_constraint.c:689 commands/tablecmds.c:8916 +#: catalog/heap.c:2582 catalog/index.c:889 catalog/pg_constraint.c:689 commands/tablecmds.c:8939 #, c-format msgid "constraint \"%s\" for relation \"%s\" already exists" msgstr "すでに制約\"%s\"はリレーション\"%s\"に存在します" @@ -4314,12 +4319,12 @@ msgstr "これは生成列を自身の値に依存させることにつながり msgid "generation expression is not immutable" msgstr "生成式は不変ではありません" -#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1290 +#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1291 #, c-format msgid "column \"%s\" is of type %s but default expression is of type %s" msgstr "列\"%s\"の型は%sですが、デフォルト式の型は%sです" -#: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 parser/parse_target.c:594 parser/parse_target.c:891 parser/parse_target.c:901 rewrite/rewriteHandler.c:1295 +#: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 parser/parse_target.c:594 parser/parse_target.c:891 parser/parse_target.c:901 rewrite/rewriteHandler.c:1296 #, c-format msgid "You will need to rewrite or cast the expression." msgstr "式を書き換えるかキャストする必要があります。" @@ -4354,7 +4359,7 @@ msgstr "テーブル\"%s\"は\"%s\"を参照します。" msgid "Truncate table \"%s\" at the same time, or use TRUNCATE ... CASCADE." msgstr "同時にテーブル\"%s\"がtruncateされました。TRUNCATE ... CASCADEを使用してください。" -#: catalog/index.c:224 parser/parse_utilcmd.c:2201 +#: catalog/index.c:224 parser/parse_utilcmd.c:2229 #, c-format msgid "multiple primary keys for table \"%s\" are not allowed" msgstr "テーブル\"%s\"に複数のプライマリキーを持たせることはできません" @@ -4404,7 +4409,7 @@ msgstr "リレーション\"%s\"はすでに存在します、スキップしま msgid "pg_class index OID value not set when in binary upgrade mode" msgstr "バイナリアップグレードモード中にpg_classのインデックスOIDが設定されていません" -#: catalog/index.c:927 utils/cache/relcache.c:3744 +#: catalog/index.c:927 utils/cache/relcache.c:3745 #, c-format msgid "index relfilenode value not set when in binary upgrade mode" msgstr "バイナリアップグレードモード中にインデックスのrelfilenodeの値が設定されていません" @@ -4414,27 +4419,27 @@ msgstr "バイナリアップグレードモード中にインデックスのrel msgid "DROP INDEX CONCURRENTLY must be first action in transaction" msgstr "DROP INDEX CONCURRENTLYはトランザクション内で最初の操作でなければなりません" -#: catalog/index.c:3664 +#: catalog/index.c:3662 #, c-format msgid "cannot reindex temporary tables of other sessions" msgstr "他のセッションの一時テーブルはインデクス再構築できません" -#: catalog/index.c:3675 commands/indexcmds.c:3536 +#: catalog/index.c:3673 commands/indexcmds.c:3536 #, c-format msgid "cannot reindex invalid index on TOAST table" msgstr "TOASTテーブルの無効なインデックスの再作成はできません" -#: catalog/index.c:3691 commands/indexcmds.c:3416 commands/indexcmds.c:3560 commands/tablecmds.c:3314 +#: catalog/index.c:3689 commands/indexcmds.c:3416 commands/indexcmds.c:3560 commands/tablecmds.c:3331 #, c-format msgid "cannot move system relation \"%s\"" msgstr "システムリレーション\"%s\"を移動できません" -#: catalog/index.c:3835 +#: catalog/index.c:3833 #, c-format msgid "index \"%s\" was reindexed" msgstr "インデックス\"%s\"のインデックス再構築が完了しました" -#: catalog/index.c:3972 +#: catalog/index.c:3970 #, c-format msgid "cannot reindex invalid index \"%s.%s\" on TOAST table, skipping" msgstr "TOASTテーブルの無効なインデックス \"%s.%s\"の再作成はできません、スキップします " @@ -4519,7 +4524,7 @@ msgstr "テキスト検索設定\"%s\"は存在しません" msgid "cross-database references are not implemented: %s" msgstr "データベース間の参照は実装されていません: %s" -#: catalog/namespace.c:2889 gram.y:18258 gram.y:18298 parser/parse_expr.c:813 parser/parse_target.c:1276 +#: catalog/namespace.c:2889 gram.y:18265 gram.y:18305 parser/parse_expr.c:813 parser/parse_target.c:1276 #, c-format msgid "improper qualified name (too many dotted names): %s" msgstr "修飾名が不適切です(ドット区切りの名前が多すぎます): %s" @@ -4534,7 +4539,7 @@ msgstr "一時スキーマへ、または一時スキーマからオブジェク msgid "cannot move objects into or out of TOAST schema" msgstr "TOASTスキーマへ、またはTOASTスキーマからオブジェクトを移動できません" -#: catalog/namespace.c:3098 commands/schemacmds.c:263 commands/schemacmds.c:343 commands/tablecmds.c:1270 +#: catalog/namespace.c:3098 commands/schemacmds.c:263 commands/schemacmds.c:343 commands/tablecmds.c:1287 #, c-format msgid "schema \"%s\" does not exist" msgstr "スキーマ\"%s\"は存在しません" @@ -4569,27 +4574,27 @@ msgstr "リカバリ中は一時テーブルを作成できません" msgid "cannot create temporary tables during a parallel operation" msgstr "並行処理中は一時テーブルを作成できません" -#: catalog/namespace.c:4338 commands/tablespace.c:1236 commands/variable.c:64 utils/misc/guc.c:12065 utils/misc/guc.c:12167 +#: catalog/namespace.c:4338 commands/tablespace.c:1231 commands/variable.c:64 tcop/postgres.c:3649 utils/misc/guc.c:12083 utils/misc/guc.c:12185 #, c-format msgid "List syntax is invalid." msgstr "リスト文法が無効です" -#: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2181 commands/tablecmds.c:12398 +#: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2198 commands/tablecmds.c:12528 #, c-format msgid "\"%s\" is not a table" msgstr "\"%s\"はテーブルではありません" -#: catalog/objectaddress.c:1398 commands/tablecmds.c:259 commands/tablecmds.c:17260 commands/view.c:119 +#: catalog/objectaddress.c:1398 commands/tablecmds.c:259 commands/tablecmds.c:17398 commands/view.c:119 #, c-format msgid "\"%s\" is not a view" msgstr "\"%s\"はビューではありません" -#: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 commands/tablecmds.c:17265 +#: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 commands/tablecmds.c:17403 #, c-format msgid "\"%s\" is not a materialized view" msgstr "\"%s\"は実体化ビューではありません" -#: catalog/objectaddress.c:1412 commands/tablecmds.c:283 commands/tablecmds.c:17270 +#: catalog/objectaddress.c:1412 commands/tablecmds.c:283 commands/tablecmds.c:17408 #, c-format msgid "\"%s\" is not a foreign table" msgstr "\"%s\"は外部テーブルではありません" @@ -4629,7 +4634,7 @@ msgstr "%4$s の関数 %1$d (%2$s, %3$s) がありません" msgid "user mapping for user \"%s\" on server \"%s\" does not exist" msgstr "ユーザー\"%s\"に対するユーザーマッピングがサーバー\"%s\"には存在しません" -#: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:691 +#: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:701 #, c-format msgid "server \"%s\" does not exist" msgstr "サーバー\"%s\"は存在しません" @@ -5336,7 +5341,7 @@ msgstr "パーティション\"%s\"を取り外せません" msgid "The partition is being detached concurrently or has an unfinished detach." msgstr "このパーティションは今現在取り外し中であるか取り外し処理が未完了の状態です。" -#: catalog/pg_inherits.c:596 commands/tablecmds.c:4528 commands/tablecmds.c:15577 +#: catalog/pg_inherits.c:596 commands/tablecmds.c:4551 commands/tablecmds.c:15708 #, c-format msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending detach operation." msgstr "ALTER TABLE ... DETACH PARTITION ... FINALIZE を実行して保留中の取り外し処理を完了させてください。" @@ -6008,7 +6013,7 @@ msgstr "他のセッションの一時テーブルをクラスタ化できませ msgid "there is no previously clustered index for table \"%s\"" msgstr "テーブル\"%s\"には事前にクラスタ化されたインデックスはありません" -#: commands/cluster.c:190 commands/tablecmds.c:14275 commands/tablecmds.c:16156 +#: commands/cluster.c:190 commands/tablecmds.c:14405 commands/tablecmds.c:16287 #, c-format msgid "index \"%s\" for table \"%s\" does not exist" msgstr "テーブル\"%2$s\"にはインデックス\"%1$s\"は存在しません" @@ -6023,7 +6028,7 @@ msgstr "共有カタログをクラスタ化できません" msgid "cannot vacuum temporary tables of other sessions" msgstr "他のセッションの一時テーブルに対してはVACUUMを実行できません" -#: commands/cluster.c:511 commands/tablecmds.c:16166 +#: commands/cluster.c:511 commands/tablecmds.c:16297 #, c-format msgid "\"%s\" is not an index for table \"%s\"" msgstr "\"%s\"はテーブル\"%s\"のインデックスではありません" @@ -6082,7 +6087,7 @@ msgstr "" msgid "collation attribute \"%s\" not recognized" msgstr "照合順序の属性\"%s\"が認識できません" -#: commands/collationcmds.c:119 commands/collationcmds.c:125 commands/define.c:389 commands/tablecmds.c:7857 replication/pgoutput/pgoutput.c:311 replication/pgoutput/pgoutput.c:334 replication/pgoutput/pgoutput.c:348 replication/pgoutput/pgoutput.c:358 replication/pgoutput/pgoutput.c:368 replication/pgoutput/pgoutput.c:378 replication/walsender.c:1001 replication/walsender.c:1023 replication/walsender.c:1033 +#: commands/collationcmds.c:119 commands/collationcmds.c:125 commands/define.c:389 commands/tablecmds.c:7880 replication/pgoutput/pgoutput.c:311 replication/pgoutput/pgoutput.c:334 replication/pgoutput/pgoutput.c:348 replication/pgoutput/pgoutput.c:358 replication/pgoutput/pgoutput.c:368 replication/pgoutput/pgoutput.c:378 replication/walsender.c:1001 replication/walsender.c:1023 replication/walsender.c:1033 #, c-format msgid "conflicting or redundant options" msgstr "競合するオプション、あるいは余計なオプションがあります" @@ -6144,12 +6149,12 @@ msgstr "エンコーディング\"%2$s\"のための照合順序\"%1$s\"はす msgid "collation \"%s\" already exists in schema \"%s\"" msgstr "照合順序\"%s\"はすでにスキーマ\"%s\"内に存在します" -#: commands/collationcmds.c:395 commands/dbcommands.c:2432 +#: commands/collationcmds.c:395 commands/dbcommands.c:2448 #, c-format msgid "changing version from %s to %s" msgstr "バージョン%sから%sへの変更" -#: commands/collationcmds.c:410 commands/dbcommands.c:2445 +#: commands/collationcmds.c:410 commands/dbcommands.c:2461 #, c-format msgid "version has not changed" msgstr "バージョンが変わっていません" @@ -6164,7 +6169,7 @@ msgstr "ロケール名\"%s\"を、言語タグに変換できませんでした msgid "must be superuser to import system collations" msgstr "システム照合順序をインポートするにはスーパーユーザーである必要があります" -#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:679 libpq/be-secure-common.c:81 +#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:683 libpq/be-secure-common.c:81 #, c-format msgid "could not execute command \"%s\": %m" msgstr "コマンド\"%s\"を実行できませんでした: %m" @@ -6174,7 +6179,7 @@ msgstr "コマンド\"%s\"を実行できませんでした: %m" msgid "no usable system locales were found" msgstr "使用できるシステムロケールが見つかりません" -#: commands/comment.c:61 commands/dbcommands.c:1549 commands/dbcommands.c:1761 commands/dbcommands.c:1874 commands/dbcommands.c:2068 commands/dbcommands.c:2310 commands/dbcommands.c:2405 commands/dbcommands.c:2515 commands/dbcommands.c:3014 utils/init/postinit.c:947 utils/init/postinit.c:1011 utils/init/postinit.c:1083 +#: commands/comment.c:61 commands/dbcommands.c:1551 commands/dbcommands.c:1769 commands/dbcommands.c:1884 commands/dbcommands.c:2078 commands/dbcommands.c:2322 commands/dbcommands.c:2419 commands/dbcommands.c:2532 commands/dbcommands.c:3034 utils/init/postinit.c:947 utils/init/postinit.c:1011 utils/init/postinit.c:1083 #, c-format msgid "database \"%s\" does not exist" msgstr "データベース\"%s\"は存在しません" @@ -6284,7 +6289,7 @@ msgstr "オプション\"%s\"の引数は列名のリストでなければなり msgid "argument to option \"%s\" must be a valid encoding name" msgstr "オプション\"%s\"の引数は有効なエンコーディング名でなければなりません" -#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2258 +#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2270 #, c-format msgid "option \"%s\" not recognized" msgstr "タイムゾーン\"%s\"を認識できません" @@ -6399,12 +6404,12 @@ msgstr "列\"%s\"は生成カラムです" msgid "Generated columns cannot be used in COPY." msgstr "生成カラムはCOPYでは使えません。" -#: commands/copy.c:784 commands/indexcmds.c:1826 commands/statscmds.c:243 commands/tablecmds.c:2376 commands/tablecmds.c:3032 commands/tablecmds.c:3538 parser/parse_relation.c:3669 parser/parse_relation.c:3689 utils/adt/tsvector_op.c:2688 +#: commands/copy.c:784 commands/indexcmds.c:1826 commands/statscmds.c:243 commands/tablecmds.c:2393 commands/tablecmds.c:3049 commands/tablecmds.c:3558 parser/parse_relation.c:3669 parser/parse_relation.c:3689 utils/adt/tsvector_op.c:2688 #, c-format msgid "column \"%s\" does not exist" msgstr "列\"%s\"は存在しません" -#: commands/copy.c:791 commands/tablecmds.c:2402 commands/trigger.c:963 parser/parse_target.c:1093 parser/parse_target.c:1104 +#: commands/copy.c:791 commands/tablecmds.c:2419 commands/trigger.c:963 parser/parse_target.c:1093 parser/parse_target.c:1104 #, c-format msgid "column \"%s\" specified more than once" msgstr "列\"%s\"が複数指定されました" @@ -6474,12 +6479,12 @@ msgstr "先行するトランザクション処理のためCOPY FREEZEを実行 msgid "cannot perform COPY FREEZE because the table was not created or truncated in the current subtransaction" msgstr "このテーブルは現在のサブトランザクションにおいて作成または切り詰めされていないため、COPY FREEZEを実行することができません" -#: commands/copyfrom.c:1270 commands/copyto.c:611 +#: commands/copyfrom.c:1270 commands/copyto.c:615 #, c-format msgid "FORCE_NOT_NULL column \"%s\" not referenced by COPY" msgstr "FORCE_NOT_NULL指定された列\"%s\"はCOPYで参照されません" -#: commands/copyfrom.c:1293 commands/copyto.c:634 +#: commands/copyfrom.c:1293 commands/copyto.c:638 #, c-format msgid "FORCE_NULL column \"%s\" not referenced by COPY" msgstr "FORCE_NULL指定された列\"%s\"はCOPYで参照されません" @@ -6494,7 +6499,7 @@ msgstr "符号化方式\"%s\"から\"%s\"用のデフォルト変換関数は存 msgid "COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \\copy." msgstr "COPY FROMによってPostgreSQLサーバープロセスはファイルを読み込みます。psqlの \\copy のようなクライアント側の仕組みが必要かもしれません" -#: commands/copyfrom.c:1541 commands/copyto.c:731 +#: commands/copyfrom.c:1541 commands/copyto.c:735 #, c-format msgid "\"%s\" is a directory" msgstr "\"%s\"はディレクトリです" @@ -6544,7 +6549,7 @@ msgstr "COPYファイルのヘッダが不正です(サイズが不正です)" msgid "could not read from COPY file: %m" msgstr "COPYファイルから読み込めませんでした: %m" -#: commands/copyfromparse.c:278 commands/copyfromparse.c:303 tcop/postgres.c:358 +#: commands/copyfromparse.c:278 commands/copyfromparse.c:303 tcop/postgres.c:362 #, c-format msgid "unexpected EOF on client connection with an open transaction" msgstr "トランザクションを実行中のクライアント接続で想定外のEOFがありました" @@ -6721,7 +6726,7 @@ msgstr "条件付き DO INSTEAD ルールは COPY ではサポートされてい #: commands/copyto.c:468 #, c-format -msgid "DO ALSO rules are not supported for the COPY" +msgid "DO ALSO rules are not supported for COPY" msgstr "DO ALSO ルールは COPY ではサポートされていません" #: commands/copyto.c:473 @@ -6734,32 +6739,37 @@ msgstr "マルチステートメントの DO INSTEAD ルールは COPY ではサ msgid "COPY (SELECT INTO) is not supported" msgstr "COPY (SELECT INTO)はサポートされていません" -#: commands/copyto.c:500 +#: commands/copyto.c:489 +#, c-format +msgid "COPY query must not be a utility command" +msgstr "COPY問い合わせはユーティリティコマンドであってはなりません" + +#: commands/copyto.c:504 #, c-format msgid "COPY query must have a RETURNING clause" msgstr "COPY文中の問い合わせではRETURNING句が必須です" -#: commands/copyto.c:529 +#: commands/copyto.c:533 #, c-format msgid "relation referenced by COPY statement has changed" msgstr "COPY文で参照されているリレーションが変更されました" -#: commands/copyto.c:588 +#: commands/copyto.c:592 #, c-format msgid "FORCE_QUOTE column \"%s\" not referenced by COPY" msgstr "FORCE_QUOTE指定された列\"%s\"はCOPYで参照されません" -#: commands/copyto.c:696 +#: commands/copyto.c:700 #, c-format msgid "relative path not allowed for COPY to file" msgstr "ファイルへのCOPYでは相対パスは指定できません" -#: commands/copyto.c:715 +#: commands/copyto.c:719 #, c-format msgid "could not open file \"%s\" for writing: %m" msgstr "ファイル\"%s\"を書き込み用にオープンできませんでした: %m" -#: commands/copyto.c:718 +#: commands/copyto.c:722 #, c-format msgid "COPY TO instructs the PostgreSQL server process to write a file. You may want a client-side facility such as psql's \\copy." msgstr "COPY TOによってPostgreSQLサーバープロセスはファイルの書き込みを行います。psqlの \\copy のようなクライアント側の仕組みが必要かもしれません" @@ -6804,7 +6814,7 @@ msgstr "%sは有効な符号化方式名ではありません" msgid "unrecognized locale provider: %s" msgstr "認識できない照合順序プロバイダ: %s" -#: commands/dbcommands.c:920 commands/dbcommands.c:2291 commands/user.c:237 commands/user.c:611 +#: commands/dbcommands.c:920 commands/dbcommands.c:2303 commands/user.c:237 commands/user.c:611 #, c-format msgid "invalid connection limit: %d" msgstr "不正な接続数制限: %d" @@ -6824,7 +6834,7 @@ msgstr "テンプレートデータベース\"%s\"は存在しません" msgid "cannot use invalid database \"%s\" as template" msgstr "無効なデータベース\"%s\"はテンプレートとして使用できません" -#: commands/dbcommands.c:976 commands/dbcommands.c:2320 utils/init/postinit.c:1026 +#: commands/dbcommands.c:976 commands/dbcommands.c:2333 utils/init/postinit.c:1026 #, c-format msgid "Use DROP DATABASE to drop invalid databases." msgstr "DROP DATABASEを使用して不正なデータベースを削除してください。" @@ -6939,7 +6949,7 @@ msgstr "データベース中の照合順序はバージョン%sで作成され msgid "Rebuild all objects in the template database that use the default collation and run ALTER DATABASE %s REFRESH COLLATION VERSION, or build PostgreSQL with the right library version." msgstr "デフォルトの照合順序を使用しているテンプレート・データベースの全てのオブジェクトを再構築して、ALTER DATABASE %s REFRESH COLLATION VERSIONを実行するか、正しいバージョンのライブラリを用いてPostgreSQLをビルドしてください。" -#: commands/dbcommands.c:1186 commands/dbcommands.c:1920 +#: commands/dbcommands.c:1186 commands/dbcommands.c:1930 #, c-format msgid "pg_global cannot be used as default tablespace" msgstr "デフォルトのテーブル空間としてpg_globalを使用できません" @@ -6954,7 +6964,7 @@ msgstr "新しいデフォルトのテーブル空間\"%s\"を割り当てられ msgid "There is a conflict because database \"%s\" already has some tables in this tablespace." msgstr "データベース\"%s\"のいくつかテーブルはすでにこのテーブル空間にあるため、競合しています。" -#: commands/dbcommands.c:1244 commands/dbcommands.c:1790 +#: commands/dbcommands.c:1244 commands/dbcommands.c:1798 #, c-format msgid "database \"%s\" already exists" msgstr "データベース\"%s\"はすでに存在します" @@ -6989,126 +6999,126 @@ msgstr "選択されたLC_CTYPEを設定するには、符号化方式\"%s\"で msgid "The chosen LC_COLLATE setting requires encoding \"%s\"." msgstr "選択されたLC_COLLATEを設定するには、符号化方式\"%s\"である必要があります。" -#: commands/dbcommands.c:1556 +#: commands/dbcommands.c:1558 #, c-format msgid "database \"%s\" does not exist, skipping" msgstr "データベース\"%s\"は存在しません、スキップします" -#: commands/dbcommands.c:1580 +#: commands/dbcommands.c:1582 #, c-format msgid "cannot drop a template database" msgstr "テンプレートデータベースを削除できません" -#: commands/dbcommands.c:1586 +#: commands/dbcommands.c:1588 #, c-format msgid "cannot drop the currently open database" msgstr "現在オープンしているデータベースを削除できません" -#: commands/dbcommands.c:1599 +#: commands/dbcommands.c:1601 #, c-format msgid "database \"%s\" is used by an active logical replication slot" msgstr "データベース\"%s\"は有効な論理レプリケーションスロットで使用中です" -#: commands/dbcommands.c:1601 +#: commands/dbcommands.c:1603 #, c-format msgid "There is %d active slot." msgid_plural "There are %d active slots." msgstr[0] "%d 個のアクティブなスロットがあります。" -#: commands/dbcommands.c:1615 +#: commands/dbcommands.c:1617 #, c-format msgid "database \"%s\" is being used by logical replication subscription" msgstr "データベース\"%s\"は論理レプリケーションのサブスクリプションで使用中です" -#: commands/dbcommands.c:1617 +#: commands/dbcommands.c:1619 #, c-format msgid "There is %d subscription." msgid_plural "There are %d subscriptions." msgstr[0] "%d個のサブスクリプションがあります" -#: commands/dbcommands.c:1638 commands/dbcommands.c:1812 commands/dbcommands.c:1942 +#: commands/dbcommands.c:1640 commands/dbcommands.c:1820 commands/dbcommands.c:1952 #, c-format msgid "database \"%s\" is being accessed by other users" msgstr "データベース\"%s\"は他のユーザーからアクセスされています" -#: commands/dbcommands.c:1772 +#: commands/dbcommands.c:1780 #, c-format msgid "permission denied to rename database" msgstr "データベースの名前を変更する権限がありません" -#: commands/dbcommands.c:1801 +#: commands/dbcommands.c:1809 #, c-format msgid "current database cannot be renamed" msgstr "現在のデータベースの名前を変更できません" -#: commands/dbcommands.c:1898 +#: commands/dbcommands.c:1908 #, c-format msgid "cannot change the tablespace of the currently open database" msgstr "現在オープン中のデータベースのテーブルスペースは変更できません" -#: commands/dbcommands.c:2004 +#: commands/dbcommands.c:2014 #, c-format msgid "some relations of database \"%s\" are already in tablespace \"%s\"" msgstr "データベース\"%s\"のリレーションの中に、テーブルスペース\"%s\"にすでに存在するものがあります" -#: commands/dbcommands.c:2006 +#: commands/dbcommands.c:2016 #, c-format msgid "You must move them back to the database's default tablespace before using this command." msgstr "このコマンドを使う前に、データベースのデフォルトのテーブルスペースに戻す必要があります。" -#: commands/dbcommands.c:2133 commands/dbcommands.c:2852 commands/dbcommands.c:3152 commands/dbcommands.c:3266 +#: commands/dbcommands.c:2145 commands/dbcommands.c:2872 commands/dbcommands.c:3172 commands/dbcommands.c:3286 #, c-format msgid "some useless files may be left behind in old database directory \"%s\"" msgstr "元のデータベースのディレクトリ\"%s\"に不要なファイルが残っているかもしれません" -#: commands/dbcommands.c:2194 +#: commands/dbcommands.c:2206 #, c-format msgid "unrecognized DROP DATABASE option \"%s\"" msgstr "DROP DATABASEのオプション\"%s\"が認識できません" -#: commands/dbcommands.c:2272 +#: commands/dbcommands.c:2284 #, c-format msgid "option \"%s\" cannot be specified with other options" msgstr "オプション\"%s\"は他のオプションと一緒に指定はできません" -#: commands/dbcommands.c:2319 +#: commands/dbcommands.c:2332 #, c-format msgid "cannot alter invalid database \"%s\"" msgstr "無効なデータベース\"%s\"は変更できません" -#: commands/dbcommands.c:2336 +#: commands/dbcommands.c:2349 #, c-format msgid "cannot disallow connections for current database" msgstr "現在のデータベースへの接続は禁止できません" -#: commands/dbcommands.c:2555 +#: commands/dbcommands.c:2572 #, c-format msgid "permission denied to change owner of database" msgstr "データベースの所有者を変更する権限がありません" -#: commands/dbcommands.c:2958 +#: commands/dbcommands.c:2978 #, c-format msgid "There are %d other session(s) and %d prepared transaction(s) using the database." msgstr "他にこのデータベースを使っている %d 個のセッションと %d 個の準備済みトランザクションがあります。" -#: commands/dbcommands.c:2961 +#: commands/dbcommands.c:2981 #, c-format msgid "There is %d other session using the database." msgid_plural "There are %d other sessions using the database." msgstr[0] "他にこのデータベースを使っている %d 個のセッションがあります。" -#: commands/dbcommands.c:2966 storage/ipc/procarray.c:3859 +#: commands/dbcommands.c:2986 storage/ipc/procarray.c:3859 #, c-format msgid "There is %d prepared transaction using the database." msgid_plural "There are %d prepared transactions using the database." msgstr[0] "このデータベースを使用する準備されたトランザクションが%d存在します。" -#: commands/dbcommands.c:3108 +#: commands/dbcommands.c:3128 #, c-format msgid "missing directory \"%s\"" msgstr "ディレクトリ\"%s\"がありません" -#: commands/dbcommands.c:3168 commands/tablespace.c:190 commands/tablespace.c:654 +#: commands/dbcommands.c:3188 commands/tablespace.c:190 commands/tablespace.c:654 #, c-format msgid "could not stat directory \"%s\": %m" msgstr "ディレクトリ\"%s\"のstatができませんでした: %m" @@ -7158,12 +7168,12 @@ msgstr "\"%s\"は集約関数です" msgid "Use DROP AGGREGATE to drop aggregate functions." msgstr "集約関数を削除するにはDROP AGGREGATEを使用してください" -#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3622 commands/tablecmds.c:3780 commands/tablecmds.c:3832 commands/tablecmds.c:16583 tcop/utility.c:1332 +#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3642 commands/tablecmds.c:3800 commands/tablecmds.c:3852 commands/tablecmds.c:16714 tcop/utility.c:1332 #, c-format msgid "relation \"%s\" does not exist, skipping" msgstr "リレーション\"%s\"は存在しません、スキップします" -#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1275 +#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1292 #, c-format msgid "schema \"%s\" does not exist, skipping" msgstr "スキーマ\"%s\"は存在しません、スキップします" @@ -7469,7 +7479,7 @@ msgstr "機能拡張の制御ファイル\"%s\"をオープンできませんで msgid "parameter \"%s\" cannot be set in a secondary extension control file" msgstr "セカンダリの機能拡張制御ファイルにパラメータ\"%s\"を設定できません" -#: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 utils/misc/guc.c:7380 +#: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 utils/misc/guc.c:7392 #, c-format msgid "parameter \"%s\" requires a Boolean value" msgstr "パラメータ\"%s\"にはbooleanを指定します" @@ -7679,7 +7689,7 @@ msgstr "外部データラッパーの所有者を変更するにはスーパー msgid "The owner of a foreign-data wrapper must be a superuser." msgstr "外部データラッパーの所有者はスーパーユーザーでなければなりません" -#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:669 +#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:679 #, c-format msgid "foreign-data wrapper \"%s\" does not exist" msgstr "外部データラッパー\"%s\"は存在しません" @@ -7739,7 +7749,7 @@ msgstr "\"%s\"のユーザーマッピングはサーバー\"%s\"に対しては msgid "user mapping for \"%s\" does not exist for server \"%s\", skipping" msgstr "\"%s\"のユーザーマッピングはサーバー\"%s\"に対しては存在しません、スキップします" -#: commands/foreigncmds.c:1507 foreign/foreign.c:390 +#: commands/foreigncmds.c:1507 foreign/foreign.c:400 #, c-format msgid "foreign-data wrapper \"%s\" has no handler" msgstr "外部データラッパー\"%s\"にはハンドラがありません" @@ -8145,12 +8155,12 @@ msgstr "パーティション親テーブル\"%s\"には排他制約を作成で msgid "cannot create indexes on temporary tables of other sessions" msgstr "他のセッションの一時テーブルに対するインデックスを作成できません" -#: commands/indexcmds.c:760 commands/tablecmds.c:782 commands/tablespace.c:1204 +#: commands/indexcmds.c:760 commands/tablecmds.c:799 commands/tablespace.c:1199 #, c-format msgid "cannot specify default tablespace for partitioned relations" msgstr "パーティション親リレーションにはデフォルトテーブル空間は指定できません" -#: commands/indexcmds.c:792 commands/tablecmds.c:813 commands/tablecmds.c:3321 +#: commands/indexcmds.c:792 commands/tablecmds.c:830 commands/tablecmds.c:3338 #, c-format msgid "only shared relations can be placed in pg_global tablespace" msgstr "共有リレーションのみをpg_globalテーブル空間に格納することができます" @@ -8225,12 +8235,12 @@ msgstr "テーブル\"%s\"は外部テーブルを子テーブルとして含ん msgid "functions in index predicate must be marked IMMUTABLE" msgstr "インデックスの述部の関数はIMMUTABLEマークが必要です" -#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2545 parser/parse_utilcmd.c:2680 +#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2573 parser/parse_utilcmd.c:2708 #, c-format msgid "column \"%s\" named in key does not exist" msgstr "キーとして指名された列\"%s\"は存在しません" -#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1831 +#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1859 #, c-format msgid "expressions are not supported in included columns" msgstr "包含列では式はサポートされません" @@ -8265,7 +8275,7 @@ msgstr "包含列は NULLS FIRST/LAST オプションをサポートしません msgid "could not determine which collation to use for index expression" msgstr "インデックス式で使用する照合順序を特定できませんでした" -#: commands/indexcmds.c:1962 commands/tablecmds.c:17603 commands/typecmds.c:807 parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3795 utils/adt/misc.c:601 +#: commands/indexcmds.c:1962 commands/tablecmds.c:17741 commands/typecmds.c:807 parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3823 utils/adt/misc.c:594 #, c-format msgid "collations are not supported by type %s" msgstr "%s 型では照合順序はサポートされません" @@ -8300,7 +8310,7 @@ msgstr "アクセスメソッド\"%s\"はASC/DESCオプションをサポート msgid "access method \"%s\" does not support NULLS FIRST/LAST options" msgstr "アクセスメソッド\"%s\"はNULLS FIRST/LASTオプションをサポートしません" -#: commands/indexcmds.c:2144 commands/tablecmds.c:17628 commands/tablecmds.c:17634 commands/typecmds.c:2302 +#: commands/indexcmds.c:2144 commands/tablecmds.c:17766 commands/tablecmds.c:17772 commands/typecmds.c:2302 #, c-format msgid "data type %s has no default operator class for access method \"%s\"" msgstr "アクセスメソッド\"%2$s\"にはデータ型%1$s用のデフォルトの演算子クラスがありません" @@ -8415,7 +8425,7 @@ msgstr "リレーション\"%s\"はロックできません" msgid "CONCURRENTLY cannot be used when the materialized view is not populated" msgstr "実体化ビューにデータが投入されていない場合はCONCURRENTLYを使用することはできません" -#: commands/matview.c:199 gram.y:17995 +#: commands/matview.c:199 gram.y:18002 #, c-format msgid "%s and %s options cannot be used together" msgstr "%sオプションと%sオプションとを同時に使用することはできません" @@ -8710,7 +8720,7 @@ msgstr "JOIN推定関数 %s は %s型を返す必要があります" msgid "operator attribute \"%s\" cannot be changed" msgstr "演算子の属性\"%s\"は変更できません" -#: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 commands/tablecmds.c:1606 commands/tablecmds.c:2194 commands/tablecmds.c:3432 commands/tablecmds.c:6354 commands/tablecmds.c:9197 commands/tablecmds.c:17181 commands/tablecmds.c:17216 commands/trigger.c:328 commands/trigger.c:1378 commands/trigger.c:1488 rewrite/rewriteDefine.c:279 rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 +#: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 commands/tablecmds.c:1623 commands/tablecmds.c:2211 commands/tablecmds.c:3452 commands/tablecmds.c:6377 commands/tablecmds.c:9220 commands/tablecmds.c:17319 commands/tablecmds.c:17354 commands/trigger.c:328 commands/trigger.c:1378 commands/trigger.c:1488 rewrite/rewriteDefine.c:279 rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 #, c-format msgid "permission denied: \"%s\" is a system catalog" msgstr "権限がありません: \"%s\"はシステムカタログです" @@ -9055,97 +9065,97 @@ msgstr "本セッションでlastvalはまだ定義されていません" msgid "setval: value %lld is out of bounds for sequence \"%s\" (%lld..%lld)" msgstr "setval: 値%lldはシーケンス\"%s\"の範囲(%lld..%lld)外です\"" -#: commands/sequence.c:1372 +#: commands/sequence.c:1375 #, c-format msgid "invalid sequence option SEQUENCE NAME" msgstr "不正なオプション SEQUENCE NAME" -#: commands/sequence.c:1398 +#: commands/sequence.c:1401 #, c-format msgid "identity column type must be smallint, integer, or bigint" msgstr "識別列の型はsmallint、integerまたはbigintでなくてはなりません" -#: commands/sequence.c:1399 +#: commands/sequence.c:1402 #, c-format msgid "sequence type must be smallint, integer, or bigint" msgstr "シーケンスの型はsmallint、integerまたはbigintでなくてはなりません" -#: commands/sequence.c:1433 +#: commands/sequence.c:1436 #, c-format msgid "INCREMENT must not be zero" msgstr "INCREMENTはゼロではいけません" -#: commands/sequence.c:1481 +#: commands/sequence.c:1484 #, c-format msgid "MAXVALUE (%lld) is out of range for sequence data type %s" msgstr "MAXVALUE (%lld) はシーケンスデータ型%sの範囲外です" -#: commands/sequence.c:1513 +#: commands/sequence.c:1516 #, c-format msgid "MINVALUE (%lld) is out of range for sequence data type %s" msgstr "MINVALUE (%lld) はシーケンスデータ型%sの範囲外です" -#: commands/sequence.c:1521 +#: commands/sequence.c:1524 #, c-format msgid "MINVALUE (%lld) must be less than MAXVALUE (%lld)" msgstr "MINVALUE (%lld)はMAXVALUE (%lld)より小さくなければなりません" -#: commands/sequence.c:1542 +#: commands/sequence.c:1545 #, c-format msgid "START value (%lld) cannot be less than MINVALUE (%lld)" msgstr "STARTの値(%lld)はMINVALUE(%lld)より小さくすることはできません" -#: commands/sequence.c:1548 +#: commands/sequence.c:1551 #, c-format msgid "START value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "STARTの値(%lld)はMAXVALUE(%lld)より大きくすることはできません" -#: commands/sequence.c:1572 +#: commands/sequence.c:1575 #, c-format msgid "RESTART value (%lld) cannot be less than MINVALUE (%lld)" msgstr "RESTART の値(%lld)は MINVALUE(%lld) より小さくすることはできません" -#: commands/sequence.c:1578 +#: commands/sequence.c:1581 #, c-format msgid "RESTART value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "RESTART の値(%lld)は MAXVALUE(%lld) より大きくすることはできません" -#: commands/sequence.c:1589 +#: commands/sequence.c:1592 #, c-format msgid "CACHE (%lld) must be greater than zero" msgstr "CACHE(%lld)はゼロより大きくなければなりません" -#: commands/sequence.c:1625 +#: commands/sequence.c:1628 #, c-format msgid "invalid OWNED BY option" msgstr "不正なOWNED BYオプションです" -#: commands/sequence.c:1626 +#: commands/sequence.c:1629 #, c-format msgid "Specify OWNED BY table.column or OWNED BY NONE." msgstr "OWNED BY table.column または OWNED BY NONEを指定してください。" -#: commands/sequence.c:1651 +#: commands/sequence.c:1654 #, c-format msgid "sequence cannot be owned by relation \"%s\"" msgstr "シーケンスの所有者をリレーション\"%s\"にはできません" -#: commands/sequence.c:1659 +#: commands/sequence.c:1662 #, c-format msgid "sequence must have same owner as table it is linked to" msgstr "シーケンスは関連するテーブルと同じ所有者でなければなりません" -#: commands/sequence.c:1663 +#: commands/sequence.c:1666 #, c-format msgid "sequence must be in same schema as table it is linked to" msgstr "シーケンスは関連するテーブルと同じスキーマでなければなりません" -#: commands/sequence.c:1685 +#: commands/sequence.c:1688 #, c-format msgid "cannot change ownership of identity sequence" msgstr "識別シーケンスの所有者は変更できません" -#: commands/sequence.c:1686 commands/tablecmds.c:13966 commands/tablecmds.c:16603 +#: commands/sequence.c:1689 commands/tablecmds.c:14096 commands/tablecmds.c:16734 #, c-format msgid "Sequence \"%s\" is linked to table \"%s\"." msgstr "シーケンス\"%s\"はテーブル\"%s\"にリンクされています" @@ -9215,12 +9225,12 @@ msgstr "定形情報定義中の列名が重複しています" msgid "duplicate expression in statistics definition" msgstr "統計情報定義内に重複した式" -#: commands/statscmds.c:620 commands/tablecmds.c:8161 +#: commands/statscmds.c:620 commands/tablecmds.c:8184 #, c-format msgid "statistics target %d is too low" msgstr "統計情報目標%dは小さすぎます" -#: commands/statscmds.c:628 commands/tablecmds.c:8169 +#: commands/statscmds.c:628 commands/tablecmds.c:8192 #, c-format msgid "lowering statistics target to %d" msgstr "統計情報目標を%dに減らします" @@ -9473,7 +9483,7 @@ msgstr "実体化ビュー\"%s\"は存在しません、スキップします" msgid "Use DROP MATERIALIZED VIEW to remove a materialized view." msgstr "実体化ビューを削除するにはDROP MATERIALIZED VIEWを使用してください。" -#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19119 parser/parse_utilcmd.c:2277 +#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19313 parser/parse_utilcmd.c:2305 #, c-format msgid "index \"%s\" does not exist" msgstr "インデックス\"%s\"は存在しません" @@ -9496,7 +9506,7 @@ msgstr "\"%s\"は型ではありません" msgid "Use DROP TYPE to remove a type." msgstr "型を削除するにはDROP TYPEを使用してください" -#: commands/tablecmds.c:281 commands/tablecmds.c:13805 commands/tablecmds.c:16306 +#: commands/tablecmds.c:281 commands/tablecmds.c:13935 commands/tablecmds.c:16437 #, c-format msgid "foreign table \"%s\" does not exist" msgstr "外部テーブル\"%s\"は存在しません" @@ -9510,1341 +9520,1351 @@ msgstr "外部テーブル\"%s\"は存在しません、スキップします" msgid "Use DROP FOREIGN TABLE to remove a foreign table." msgstr "外部テーブルを削除するには DROP FOREIGN TABLE を使用してください。" -#: commands/tablecmds.c:698 +#: commands/tablecmds.c:715 #, c-format msgid "ON COMMIT can only be used on temporary tables" msgstr "ON COMMITは一時テーブルでのみ使用できます" -#: commands/tablecmds.c:729 +#: commands/tablecmds.c:746 #, c-format msgid "cannot create temporary table within security-restricted operation" msgstr "セキュリティー制限操作中は、一時テーブルを作成できません" -#: commands/tablecmds.c:765 commands/tablecmds.c:15113 +#: commands/tablecmds.c:782 commands/tablecmds.c:15244 #, c-format msgid "relation \"%s\" would be inherited from more than once" msgstr "リレーション\"%s\"が複数回継承されました" -#: commands/tablecmds.c:946 +#: commands/tablecmds.c:963 #, c-format msgid "specifying a table access method is not supported on a partitioned table" msgstr "パーティション親テーブルではテーブルアクセスメソッドの指定はサポートされていません" -#: commands/tablecmds.c:1039 +#: commands/tablecmds.c:1056 #, c-format msgid "\"%s\" is not partitioned" msgstr "\"%s\"はパーティションされていません" -#: commands/tablecmds.c:1134 +#: commands/tablecmds.c:1151 #, c-format msgid "cannot partition using more than %d columns" msgstr "%d以上の列を使ったパーティションはできません" -#: commands/tablecmds.c:1190 +#: commands/tablecmds.c:1207 #, c-format msgid "cannot create foreign partition of partitioned table \"%s\"" msgstr "パーティションテーブル\"%s\"では外部子テーブルを作成できません" -#: commands/tablecmds.c:1192 +#: commands/tablecmds.c:1209 #, c-format msgid "Table \"%s\" contains indexes that are unique." msgstr "テーブル\"%s\"はユニークインデックスを持っています" -#: commands/tablecmds.c:1355 +#: commands/tablecmds.c:1372 #, c-format msgid "DROP INDEX CONCURRENTLY does not support dropping multiple objects" msgstr "DROP INDEX CONCURRENTLYは複数オブジェクトの削除をサポートしていません" -#: commands/tablecmds.c:1359 +#: commands/tablecmds.c:1376 #, c-format msgid "DROP INDEX CONCURRENTLY does not support CASCADE" msgstr "DROP INDEX CONCURRENTLYはCASCADEをサポートしません" -#: commands/tablecmds.c:1463 +#: commands/tablecmds.c:1480 #, c-format msgid "cannot drop partitioned index \"%s\" concurrently" msgstr "パーティション親インデックス\"%s\"は並行的に削除することはできません" -#: commands/tablecmds.c:1751 +#: commands/tablecmds.c:1768 #, c-format msgid "cannot truncate only a partitioned table" msgstr "パーティションの親テーブルのみの切り詰めはできません" -#: commands/tablecmds.c:1752 +#: commands/tablecmds.c:1769 #, c-format msgid "Do not specify the ONLY keyword, or use TRUNCATE ONLY on the partitions directly." msgstr "ONLY キーワードを指定しないでください、もしくは子テーブルに対して直接 TRUNCATE ONLY を実行してください。" -#: commands/tablecmds.c:1824 +#: commands/tablecmds.c:1841 #, c-format msgid "truncate cascades to table \"%s\"" msgstr "テーブル\"%s\"へのカスケードを削除します" -#: commands/tablecmds.c:2174 +#: commands/tablecmds.c:2191 #, c-format msgid "cannot truncate foreign table \"%s\"" msgstr "外部テーブル\"%s\"の切り詰めはできません" -#: commands/tablecmds.c:2231 +#: commands/tablecmds.c:2248 #, c-format msgid "cannot truncate temporary tables of other sessions" msgstr "他のセッションの一時テーブルを削除できません" -#: commands/tablecmds.c:2459 commands/tablecmds.c:15010 +#: commands/tablecmds.c:2476 commands/tablecmds.c:15141 #, c-format msgid "cannot inherit from partitioned table \"%s\"" msgstr "パーティション親テーブル\"%s\"からの継承はできません" -#: commands/tablecmds.c:2464 +#: commands/tablecmds.c:2481 #, c-format msgid "cannot inherit from partition \"%s\"" msgstr "パーティション子テーブル\"%s\"からの継承はできません" -#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2507 parser/parse_utilcmd.c:2649 +#: commands/tablecmds.c:2489 parser/parse_utilcmd.c:2535 parser/parse_utilcmd.c:2677 #, c-format msgid "inherited relation \"%s\" is not a table or foreign table" msgstr "継承しようとしたリレーション\"%s\"はテーブルまたは外部テーブルではありません" -#: commands/tablecmds.c:2484 +#: commands/tablecmds.c:2501 #, c-format msgid "cannot create a temporary relation as partition of permanent relation \"%s\"" msgstr "一時リレーションを永続リレーション\"%s\"のパーティション子テーブルとして作ることはできません" -#: commands/tablecmds.c:2493 commands/tablecmds.c:14989 +#: commands/tablecmds.c:2510 commands/tablecmds.c:15120 #, c-format msgid "cannot inherit from temporary relation \"%s\"" msgstr "一時リレーション\"%s\"から継承することはできません" -#: commands/tablecmds.c:2503 commands/tablecmds.c:14997 +#: commands/tablecmds.c:2520 commands/tablecmds.c:15128 #, c-format msgid "cannot inherit from temporary relation of another session" msgstr "他のセッションの一時リレーションから継承することはできません" -#: commands/tablecmds.c:2557 +#: commands/tablecmds.c:2574 #, c-format msgid "merging multiple inherited definitions of column \"%s\"" msgstr "複数の継承される列\"%s\"の定義をマージしています" -#: commands/tablecmds.c:2565 +#: commands/tablecmds.c:2582 #, c-format msgid "inherited column \"%s\" has a type conflict" msgstr "継承される列\"%s\"の型が競合しています" -#: commands/tablecmds.c:2567 commands/tablecmds.c:2590 commands/tablecmds.c:2607 commands/tablecmds.c:2863 commands/tablecmds.c:2893 commands/tablecmds.c:2907 parser/parse_coerce.c:2155 parser/parse_coerce.c:2175 parser/parse_coerce.c:2195 parser/parse_coerce.c:2216 parser/parse_coerce.c:2271 parser/parse_coerce.c:2305 parser/parse_coerce.c:2381 parser/parse_coerce.c:2412 parser/parse_coerce.c:2451 parser/parse_coerce.c:2518 parser/parse_param.c:227 +#: commands/tablecmds.c:2584 commands/tablecmds.c:2607 commands/tablecmds.c:2624 commands/tablecmds.c:2880 commands/tablecmds.c:2910 commands/tablecmds.c:2924 parser/parse_coerce.c:2155 parser/parse_coerce.c:2175 parser/parse_coerce.c:2195 parser/parse_coerce.c:2216 parser/parse_coerce.c:2271 parser/parse_coerce.c:2305 parser/parse_coerce.c:2381 parser/parse_coerce.c:2412 parser/parse_coerce.c:2451 parser/parse_coerce.c:2518 parser/parse_param.c:227 #, c-format msgid "%s versus %s" msgstr "%s対%s" -#: commands/tablecmds.c:2576 +#: commands/tablecmds.c:2593 #, c-format msgid "inherited column \"%s\" has a collation conflict" msgstr "継承される列 \"%s\"の照合順序が競合しています" -#: commands/tablecmds.c:2578 commands/tablecmds.c:2875 commands/tablecmds.c:6837 +#: commands/tablecmds.c:2595 commands/tablecmds.c:2892 commands/tablecmds.c:6860 #, c-format msgid "\"%s\" versus \"%s\"" msgstr "\"%s\"対\"%s\"" -#: commands/tablecmds.c:2588 +#: commands/tablecmds.c:2605 #, c-format msgid "inherited column \"%s\" has a storage parameter conflict" msgstr "継承される列 \"%s\"の格納パラメーターが競合しています" -#: commands/tablecmds.c:2605 commands/tablecmds.c:2905 +#: commands/tablecmds.c:2622 commands/tablecmds.c:2922 #, c-format msgid "column \"%s\" has a compression method conflict" msgstr "列\"%s\"の圧縮方式が競合しています" -#: commands/tablecmds.c:2620 +#: commands/tablecmds.c:2637 #, c-format msgid "inherited column \"%s\" has a generation conflict" msgstr "継承された列 \"%s\"の生成が競合しています" -#: commands/tablecmds.c:2714 commands/tablecmds.c:2769 commands/tablecmds.c:12496 parser/parse_utilcmd.c:1269 parser/parse_utilcmd.c:1312 parser/parse_utilcmd.c:1759 parser/parse_utilcmd.c:1867 +#: commands/tablecmds.c:2731 commands/tablecmds.c:2786 commands/tablecmds.c:12626 parser/parse_utilcmd.c:1297 parser/parse_utilcmd.c:1340 parser/parse_utilcmd.c:1787 parser/parse_utilcmd.c:1895 #, c-format msgid "cannot convert whole-row table reference" msgstr "行全体テーブル参照を変換できません" -#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1270 +#: commands/tablecmds.c:2732 parser/parse_utilcmd.c:1298 #, c-format msgid "Generation expression for column \"%s\" contains a whole-row reference to table \"%s\"." msgstr "制約\"%s\"はテーブル\"%s\"への行全体参照を含みます。" -#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1313 +#: commands/tablecmds.c:2787 parser/parse_utilcmd.c:1341 #, c-format msgid "Constraint \"%s\" contains a whole-row reference to table \"%s\"." msgstr "制約\"%s\"はテーブル\"%s\"への行全体参照を含みます。" -#: commands/tablecmds.c:2849 +#: commands/tablecmds.c:2866 #, c-format msgid "merging column \"%s\" with inherited definition" msgstr "継承される定義で列\"%s\"をマージしています" -#: commands/tablecmds.c:2853 +#: commands/tablecmds.c:2870 #, c-format msgid "moving and merging column \"%s\" with inherited definition" msgstr "継承される定義で列\"%s\"を移動してマージします" -#: commands/tablecmds.c:2854 +#: commands/tablecmds.c:2871 #, c-format msgid "User-specified column moved to the position of the inherited column." msgstr "ユーザーが指定した列が継承した列の位置に移動されました。" -#: commands/tablecmds.c:2861 +#: commands/tablecmds.c:2878 #, c-format msgid "column \"%s\" has a type conflict" msgstr "列\"%s\"の型が競合しています" -#: commands/tablecmds.c:2873 +#: commands/tablecmds.c:2890 #, c-format msgid "column \"%s\" has a collation conflict" msgstr "列\"%s\"の照合順序が競合しています" -#: commands/tablecmds.c:2891 +#: commands/tablecmds.c:2908 #, c-format msgid "column \"%s\" has a storage parameter conflict" msgstr "列\"%s\"の格納パラメーターが競合しています" -#: commands/tablecmds.c:2932 +#: commands/tablecmds.c:2949 #, c-format msgid "child column \"%s\" specifies generation expression" msgstr "子テーブルの列\"%s\"は生成式を指定しています" -#: commands/tablecmds.c:2934 +#: commands/tablecmds.c:2951 #, c-format msgid "Omit the generation expression in the definition of the child table column to inherit the generation expression from the parent table." msgstr "親テーブルの生成式を継承するために、子テーブルの列の生成式定義を無視しました" -#: commands/tablecmds.c:2938 +#: commands/tablecmds.c:2955 #, c-format msgid "column \"%s\" inherits from generated column but specifies default" msgstr "列\"%s\"は生成列を継承しますが、default 指定がされています" -#: commands/tablecmds.c:2943 +#: commands/tablecmds.c:2960 #, c-format msgid "column \"%s\" inherits from generated column but specifies identity" msgstr "列\"%s\"は生成列を継承しますが、識別列と指定されています" -#: commands/tablecmds.c:3052 +#: commands/tablecmds.c:3069 #, c-format msgid "column \"%s\" inherits conflicting generation expressions" msgstr "列\"%s\"は競合する生成式を継承します" -#: commands/tablecmds.c:3057 +#: commands/tablecmds.c:3074 #, c-format msgid "column \"%s\" inherits conflicting default values" msgstr "列\"%s\"は競合するデフォルト値を継承します" -#: commands/tablecmds.c:3059 +#: commands/tablecmds.c:3076 #, c-format msgid "To resolve the conflict, specify a default explicitly." msgstr "競合を解消するには明示的にデフォルトを指定してください" -#: commands/tablecmds.c:3105 +#: commands/tablecmds.c:3122 #, c-format msgid "check constraint name \"%s\" appears multiple times but with different expressions" msgstr "異なる式を持つ検査制約名\"%s\"が複数あります。" -#: commands/tablecmds.c:3330 +#: commands/tablecmds.c:3347 #, c-format msgid "cannot move temporary tables of other sessions" msgstr "他のセッションの一時テーブルを移動できません" -#: commands/tablecmds.c:3400 +#: commands/tablecmds.c:3420 #, c-format msgid "cannot rename column of typed table" msgstr "型付けされたテーブルの列をリネームできません" -#: commands/tablecmds.c:3419 +#: commands/tablecmds.c:3439 #, c-format msgid "cannot rename columns of relation \"%s\"" msgstr "リレーション\"%s\"の列名は変更できません" -#: commands/tablecmds.c:3514 +#: commands/tablecmds.c:3534 #, c-format msgid "inherited column \"%s\" must be renamed in child tables too" msgstr "継承される列\"%s\"の名前を子テーブルでも変更する必要があります" -#: commands/tablecmds.c:3546 +#: commands/tablecmds.c:3566 #, c-format msgid "cannot rename system column \"%s\"" msgstr "システム列%s\"の名前を変更できません" -#: commands/tablecmds.c:3561 +#: commands/tablecmds.c:3581 #, c-format msgid "cannot rename inherited column \"%s\"" msgstr "継承される列\"%s\"の名前を変更できません" -#: commands/tablecmds.c:3713 +#: commands/tablecmds.c:3733 #, c-format msgid "inherited constraint \"%s\" must be renamed in child tables too" msgstr "継承される制約\"%s\"の名前を子テーブルでも変更する必要があります" -#: commands/tablecmds.c:3720 +#: commands/tablecmds.c:3740 #, c-format msgid "cannot rename inherited constraint \"%s\"" msgstr "継承される制約\"%s\"の名前を変更できません" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4017 +#: commands/tablecmds.c:4040 #, c-format msgid "cannot %s \"%s\" because it is being used by active queries in this session" msgstr "このセッションで実行中の問い合わせで使用されているため\"%2$s\"を%1$sできません" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4026 +#: commands/tablecmds.c:4049 #, c-format msgid "cannot %s \"%s\" because it has pending trigger events" msgstr "保留中のトリガイベントがあるため\"%2$s\"を%1$sできません" -#: commands/tablecmds.c:4052 +#: commands/tablecmds.c:4075 #, c-format msgid "cannot alter temporary tables of other sessions" msgstr "他のセッションの一時テーブルは変更できません" -#: commands/tablecmds.c:4526 +#: commands/tablecmds.c:4549 #, c-format msgid "cannot alter partition \"%s\" with an incomplete detach" msgstr "パーティション子テーブル\"%s\"は不完全な取り外し状態であるため変更できません" -#: commands/tablecmds.c:4719 commands/tablecmds.c:4734 +#: commands/tablecmds.c:4742 commands/tablecmds.c:4757 #, c-format msgid "cannot change persistence setting twice" msgstr "永続性設定の変更は2度はできません" -#: commands/tablecmds.c:4755 +#: commands/tablecmds.c:4778 #, c-format msgid "cannot change access method of a partitioned table" msgstr "パーティション親テーブルのアクセスメソッドは変更できません" -#: commands/tablecmds.c:4761 +#: commands/tablecmds.c:4784 #, c-format msgid "cannot have multiple SET ACCESS METHOD subcommands" msgstr "SET ACCESS METHODサブコマンドを複数指定できません" -#: commands/tablecmds.c:5516 +#: commands/tablecmds.c:5539 #, c-format msgid "cannot rewrite system relation \"%s\"" msgstr "システムリレーション\"%sを書き換えられません" -#: commands/tablecmds.c:5522 +#: commands/tablecmds.c:5545 #, c-format msgid "cannot rewrite table \"%s\" used as a catalog table" msgstr "カタログテーブルとして使用されているテーブル\"%s\"は書き換えられません" -#: commands/tablecmds.c:5534 +#: commands/tablecmds.c:5557 #, c-format msgid "cannot rewrite temporary tables of other sessions" msgstr "他のセッションの一時テーブルを書き換えられません" -#: commands/tablecmds.c:6028 +#: commands/tablecmds.c:6051 #, c-format msgid "column \"%s\" of relation \"%s\" contains null values" msgstr "リレーション\"%2$s\"の列\"%1$s\"にNULL値があります" -#: commands/tablecmds.c:6045 +#: commands/tablecmds.c:6068 #, c-format msgid "check constraint \"%s\" of relation \"%s\" is violated by some row" msgstr "一部の行がリレーション\"%2$s\"の検査制約\"%1$s\"に違反してます" -#: commands/tablecmds.c:6064 partitioning/partbounds.c:3404 +#: commands/tablecmds.c:6087 partitioning/partbounds.c:3404 #, c-format msgid "updated partition constraint for default partition \"%s\" would be violated by some row" msgstr "デフォルトパーティション\"%s\"の一部の行が更新後のパーティション制約に違反しています" -#: commands/tablecmds.c:6070 +#: commands/tablecmds.c:6093 #, c-format msgid "partition constraint of relation \"%s\" is violated by some row" msgstr "一部の行がリレーション\"%s\"のパーティション制約に違反しています" #. translator: %s is a group of some SQL keywords -#: commands/tablecmds.c:6337 +#: commands/tablecmds.c:6360 #, c-format msgid "ALTER action %s cannot be performed on relation \"%s\"" msgstr "ALTERのアクション%sはリレーション\"%s\"では実行できません" -#: commands/tablecmds.c:6592 commands/tablecmds.c:6599 +#: commands/tablecmds.c:6615 commands/tablecmds.c:6622 #, c-format msgid "cannot alter type \"%s\" because column \"%s.%s\" uses it" msgstr "型\"%s\"を変更できません。列\"%s\".\"%s\"でその型を使用しているためです" -#: commands/tablecmds.c:6606 +#: commands/tablecmds.c:6629 #, c-format msgid "cannot alter foreign table \"%s\" because column \"%s.%s\" uses its row type" msgstr "列%2$s\".\"%3$s\"がその行型を使用しているため、外部テーブル\"%1$s\"を変更できません。" -#: commands/tablecmds.c:6613 +#: commands/tablecmds.c:6636 #, c-format msgid "cannot alter table \"%s\" because column \"%s.%s\" uses its row type" msgstr "テーブル\"%s\"を変更できません。その行型を列\"%s\".\"%s\"で使用しているためです" -#: commands/tablecmds.c:6669 +#: commands/tablecmds.c:6692 #, c-format msgid "cannot alter type \"%s\" because it is the type of a typed table" msgstr "型付けされたテーブルの型であるため、外部テーブル\"%s\"を変更できません。" -#: commands/tablecmds.c:6671 +#: commands/tablecmds.c:6694 #, c-format msgid "Use ALTER ... CASCADE to alter the typed tables too." msgstr "型付けされたテーブルを変更する場合も ALTER .. CASCADE を使用してください" -#: commands/tablecmds.c:6717 +#: commands/tablecmds.c:6740 #, c-format msgid "type %s is not a composite type" msgstr "型 %s は複合型ではありません" -#: commands/tablecmds.c:6744 +#: commands/tablecmds.c:6767 #, c-format msgid "cannot add column to typed table" msgstr "型付けされたテーブルに列を追加できません" -#: commands/tablecmds.c:6800 +#: commands/tablecmds.c:6823 #, c-format msgid "cannot add column to a partition" msgstr "パーティションに列は追加できません" -#: commands/tablecmds.c:6829 commands/tablecmds.c:15240 +#: commands/tablecmds.c:6852 commands/tablecmds.c:15371 #, c-format msgid "child table \"%s\" has different type for column \"%s\"" msgstr "子テーブル\"%s\"に異なる型の列\"%s\"があります" -#: commands/tablecmds.c:6835 commands/tablecmds.c:15247 +#: commands/tablecmds.c:6858 commands/tablecmds.c:15378 #, c-format msgid "child table \"%s\" has different collation for column \"%s\"" msgstr "子テーブル\"%s\"に異なる照合順序の列\"%s\"があります" -#: commands/tablecmds.c:6849 +#: commands/tablecmds.c:6872 #, c-format msgid "merging definition of column \"%s\" for child \"%s\"" msgstr "子\"%2$s\"の列\"%1$s\"の定義をマージしています" -#: commands/tablecmds.c:6896 +#: commands/tablecmds.c:6919 #, c-format msgid "cannot recursively add identity column to table that has child tables" msgstr "子テーブルを持つテーブルに識別列を再帰的に追加することはできません" -#: commands/tablecmds.c:7140 +#: commands/tablecmds.c:7163 #, c-format msgid "column must be added to child tables too" msgstr "列は子テーブルでも追加する必要があります" -#: commands/tablecmds.c:7218 +#: commands/tablecmds.c:7241 #, c-format msgid "column \"%s\" of relation \"%s\" already exists, skipping" msgstr "リレーション\"%2$s\"の列\"%1$s\"はすでに存在します、スキップします" -#: commands/tablecmds.c:7225 +#: commands/tablecmds.c:7248 #, c-format msgid "column \"%s\" of relation \"%s\" already exists" msgstr "リレーション\"%2$s\"の列\"%1$s\"はすでに存在します" -#: commands/tablecmds.c:7291 commands/tablecmds.c:12135 +#: commands/tablecmds.c:7314 commands/tablecmds.c:12254 #, c-format msgid "cannot remove constraint from only the partitioned table when partitions exist" msgstr "パーティションが存在する場合にはパーティション親テーブルのみから制約を削除することはできません" -#: commands/tablecmds.c:7292 commands/tablecmds.c:7609 commands/tablecmds.c:8610 commands/tablecmds.c:12136 +#: commands/tablecmds.c:7315 commands/tablecmds.c:7632 commands/tablecmds.c:8633 commands/tablecmds.c:12255 #, c-format msgid "Do not specify the ONLY keyword." msgstr "ONLYキーワードを指定しないでください。" -#: commands/tablecmds.c:7329 commands/tablecmds.c:7535 commands/tablecmds.c:7677 commands/tablecmds.c:7791 commands/tablecmds.c:7885 commands/tablecmds.c:7944 commands/tablecmds.c:8063 commands/tablecmds.c:8202 commands/tablecmds.c:8272 commands/tablecmds.c:8428 commands/tablecmds.c:12290 commands/tablecmds.c:13828 commands/tablecmds.c:16397 +#: commands/tablecmds.c:7352 commands/tablecmds.c:7558 commands/tablecmds.c:7700 commands/tablecmds.c:7814 commands/tablecmds.c:7908 commands/tablecmds.c:7967 commands/tablecmds.c:8086 commands/tablecmds.c:8225 commands/tablecmds.c:8295 commands/tablecmds.c:8451 commands/tablecmds.c:12409 commands/tablecmds.c:13958 commands/tablecmds.c:16528 #, c-format msgid "cannot alter system column \"%s\"" msgstr "システム列\"%s\"を変更できません" -#: commands/tablecmds.c:7335 commands/tablecmds.c:7683 +#: commands/tablecmds.c:7358 commands/tablecmds.c:7706 #, c-format msgid "column \"%s\" of relation \"%s\" is an identity column" msgstr "リレーション\"%2$s\"の列\"%1$s\"は識別列です" -#: commands/tablecmds.c:7378 +#: commands/tablecmds.c:7401 #, c-format msgid "column \"%s\" is in a primary key" msgstr "列\"%s\"はプライマリキーで使用しています" -#: commands/tablecmds.c:7383 +#: commands/tablecmds.c:7406 #, c-format msgid "column \"%s\" is in index used as replica identity" msgstr "列\"%s\"は複製識別として使用中のインデックスに含まれています" -#: commands/tablecmds.c:7406 +#: commands/tablecmds.c:7429 #, c-format msgid "column \"%s\" is marked NOT NULL in parent table" msgstr "列\"%s\"は親テーブルでNOT NULL指定されています" -#: commands/tablecmds.c:7606 commands/tablecmds.c:9093 +#: commands/tablecmds.c:7629 commands/tablecmds.c:9116 #, c-format msgid "constraint must be added to child tables too" msgstr "制約は子テーブルにも追加する必要があります" -#: commands/tablecmds.c:7607 +#: commands/tablecmds.c:7630 #, c-format msgid "Column \"%s\" of relation \"%s\" is not already NOT NULL." msgstr "リレーション\"%2$s\"の列\"%1$s\"はすでにNOT NULLLではありません。" -#: commands/tablecmds.c:7685 +#: commands/tablecmds.c:7708 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY instead." msgstr "代わりに ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY を使ってください。" -#: commands/tablecmds.c:7690 +#: commands/tablecmds.c:7713 #, c-format msgid "column \"%s\" of relation \"%s\" is a generated column" msgstr "リレーション\"%2$s\"の列\"%1$s\"は生成カラムです" -#: commands/tablecmds.c:7693 +#: commands/tablecmds.c:7716 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION instead." msgstr "代わりに ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION を使ってください。" -#: commands/tablecmds.c:7802 +#: commands/tablecmds.c:7825 #, c-format msgid "column \"%s\" of relation \"%s\" must be declared NOT NULL before identity can be added" msgstr "識別列を追加するにはリレーション\"%s\"の列\"%s\"はNOT NULLと宣言されている必要があります" -#: commands/tablecmds.c:7808 +#: commands/tablecmds.c:7831 #, c-format msgid "column \"%s\" of relation \"%s\" is already an identity column" msgstr "リレーション\"%2$s\"の列\"%1$s\"はすでに識別列です" -#: commands/tablecmds.c:7814 +#: commands/tablecmds.c:7837 #, c-format msgid "column \"%s\" of relation \"%s\" already has a default value" msgstr "リレーション\"%2$s\"の列\"%1$s\"はすでにデフォルト値が指定されています" -#: commands/tablecmds.c:7891 commands/tablecmds.c:7952 +#: commands/tablecmds.c:7914 commands/tablecmds.c:7975 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column" msgstr "リレーション\"%2$s\"の列\"%1$s\"は識別列ではありません" -#: commands/tablecmds.c:7957 +#: commands/tablecmds.c:7980 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column, skipping" msgstr "リレーション\"%2$s\"の列\"%1$s\"は識別列ではありません、スキップします" -#: commands/tablecmds.c:8010 +#: commands/tablecmds.c:8033 #, c-format msgid "ALTER TABLE / DROP EXPRESSION must be applied to child tables too" msgstr "ALTER TABLE / DROP EXPRESSIONは子テーブルに対しても適用されなくてはなりません" -#: commands/tablecmds.c:8032 +#: commands/tablecmds.c:8055 #, c-format msgid "cannot drop generation expression from inherited column" msgstr "継承列から生成式を削除することはできません" -#: commands/tablecmds.c:8071 +#: commands/tablecmds.c:8094 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column" msgstr "リレーション\"%2$s\"の列\"%1$s\"は格納生成列ではありません" -#: commands/tablecmds.c:8076 +#: commands/tablecmds.c:8099 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column, skipping" msgstr "リレーション\"%2$s\"の列\"%1$s\"は格納生成列ではありません、スキップします" -#: commands/tablecmds.c:8149 +#: commands/tablecmds.c:8172 #, c-format msgid "cannot refer to non-index column by number" msgstr "非インデックス列を番号で参照することはできません" -#: commands/tablecmds.c:8192 +#: commands/tablecmds.c:8215 #, c-format msgid "column number %d of relation \"%s\" does not exist" msgstr "リレーション \"%2$s\"の列 %1$d は存在しません" -#: commands/tablecmds.c:8211 +#: commands/tablecmds.c:8234 #, c-format msgid "cannot alter statistics on included column \"%s\" of index \"%s\"" msgstr "インデックス\"%2$s\"の包含列\"%1$s\"への統計情報の変更はできません" -#: commands/tablecmds.c:8216 +#: commands/tablecmds.c:8239 #, c-format msgid "cannot alter statistics on non-expression column \"%s\" of index \"%s\"" msgstr "インデックス \"%2$s\"の非式列\"%1$s\"の統計情報の変更はできません" -#: commands/tablecmds.c:8218 +#: commands/tablecmds.c:8241 #, c-format msgid "Alter statistics on table column instead." msgstr "代わりにテーブルカラムの統計情報を変更してください。" -#: commands/tablecmds.c:8408 +#: commands/tablecmds.c:8431 #, c-format msgid "invalid storage type \"%s\"" msgstr "不正な格納タイプ\"%s\"" -#: commands/tablecmds.c:8440 +#: commands/tablecmds.c:8463 #, c-format msgid "column data type %s can only have storage PLAIN" msgstr "列のデータ型%sは格納タイプPLAINしか取ることができません" -#: commands/tablecmds.c:8485 +#: commands/tablecmds.c:8508 #, c-format msgid "cannot drop column from typed table" msgstr "型付けされたテーブルから列を削除できません" -#: commands/tablecmds.c:8548 +#: commands/tablecmds.c:8571 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist, skipping" msgstr "リレーション\"%2$s\"の列\"%1$s\"は存在しません、スキップします" -#: commands/tablecmds.c:8561 +#: commands/tablecmds.c:8584 #, c-format msgid "cannot drop system column \"%s\"" msgstr "システム列\"%s\"を削除できません" -#: commands/tablecmds.c:8571 +#: commands/tablecmds.c:8594 #, c-format msgid "cannot drop inherited column \"%s\"" msgstr "継承される列\"%s\"を削除できません" -#: commands/tablecmds.c:8584 +#: commands/tablecmds.c:8607 #, c-format msgid "cannot drop column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "列\"%s\"はリレーション\"%s\"のパーティションキーの一部であるため、削除できません" -#: commands/tablecmds.c:8609 +#: commands/tablecmds.c:8632 #, c-format msgid "cannot drop column from only the partitioned table when partitions exist" msgstr "子テーブルが存在する場合にはパーティション親テーブルのみから列を削除することはできません" -#: commands/tablecmds.c:8813 +#: commands/tablecmds.c:8836 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX is not supported on partitioned tables" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX はパーティションテーブルではサポートされていません" -#: commands/tablecmds.c:8838 +#: commands/tablecmds.c:8861 #, c-format msgid "ALTER TABLE / ADD CONSTRAINT USING INDEX will rename index \"%s\" to \"%s\"" msgstr "ALTER TABLE / ADD CONSTRAINT USING INDEX はインデックス\"%s\"を\"%s\"にリネームします" -#: commands/tablecmds.c:9175 +#: commands/tablecmds.c:9198 #, c-format msgid "cannot use ONLY for foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "パーティションテーブル\"%s\"上のリレーション\"%s\"を参照する外部キー定義ではONLY指定はできません " -#: commands/tablecmds.c:9181 +#: commands/tablecmds.c:9204 #, c-format msgid "cannot add NOT VALID foreign key on partitioned table \"%s\" referencing relation \"%s\"" msgstr "パーティションテーブル\"%1$s\"にリレーション\"%2$s\"を参照する NOT VALID 指定の外部キーは追加できません " -#: commands/tablecmds.c:9184 +#: commands/tablecmds.c:9207 #, c-format msgid "This feature is not yet supported on partitioned tables." msgstr "この機能はパーティションテーブルに対してはサポートされていません。" -#: commands/tablecmds.c:9191 commands/tablecmds.c:9657 +#: commands/tablecmds.c:9214 commands/tablecmds.c:9685 #, c-format msgid "referenced relation \"%s\" is not a table" msgstr "参照先のリレーション\"%s\"はテーブルではありません" -#: commands/tablecmds.c:9214 +#: commands/tablecmds.c:9237 #, c-format msgid "constraints on permanent tables may reference only permanent tables" msgstr "永続テーブルの制約は永続テーブルだけを参照できます" -#: commands/tablecmds.c:9221 +#: commands/tablecmds.c:9244 #, c-format msgid "constraints on unlogged tables may reference only permanent or unlogged tables" msgstr "UNLOGGEDテーブルに対する制約は、永続テーブルまたはUNLOGGEDテーブルだけを参照する場合があります" -#: commands/tablecmds.c:9227 +#: commands/tablecmds.c:9250 #, c-format msgid "constraints on temporary tables may reference only temporary tables" msgstr "一時テーブルに対する制約は一時テーブルだけを参照する場合があります" -#: commands/tablecmds.c:9231 +#: commands/tablecmds.c:9254 #, c-format msgid "constraints on temporary tables must involve temporary tables of this session" msgstr "一時テーブルに対する制約にはこのセッションの一時テーブルを加える必要があります" -#: commands/tablecmds.c:9305 commands/tablecmds.c:9311 +#: commands/tablecmds.c:9328 commands/tablecmds.c:9334 #, c-format msgid "invalid %s action for foreign key constraint containing generated column" msgstr "生成カラムを含む外部キー制約に対する不正な %s 処理" -#: commands/tablecmds.c:9327 +#: commands/tablecmds.c:9350 #, c-format msgid "number of referencing and referenced columns for foreign key disagree" msgstr "外部キーの参照列数と被参照列数が合いません" -#: commands/tablecmds.c:9434 +#: commands/tablecmds.c:9457 #, c-format msgid "foreign key constraint \"%s\" cannot be implemented" msgstr "外部キー制約\"%sは実装されていません" -#: commands/tablecmds.c:9436 +#: commands/tablecmds.c:9459 #, c-format msgid "Key columns \"%s\" and \"%s\" are of incompatible types: %s and %s." msgstr "キーとなる列\"%s\"と\"%s\"との間で型に互換性がありません:%sと%s" -#: commands/tablecmds.c:9593 +#: commands/tablecmds.c:9628 #, c-format msgid "column \"%s\" referenced in ON DELETE SET action must be part of foreign key" msgstr "ON DELETE SETアクションで参照されている列\"%s\"は外部キーの一部である必要があります" -#: commands/tablecmds.c:9866 commands/tablecmds.c:10334 parser/parse_utilcmd.c:799 parser/parse_utilcmd.c:928 +#: commands/tablecmds.c:9984 commands/tablecmds.c:10422 parser/parse_utilcmd.c:827 parser/parse_utilcmd.c:956 #, c-format msgid "foreign key constraints are not supported on foreign tables" msgstr "外部テーブルでは外部キー制約はサポートされていません" -#: commands/tablecmds.c:10886 commands/tablecmds.c:11167 commands/tablecmds.c:12092 commands/tablecmds.c:12167 +#: commands/tablecmds.c:10405 +#, c-format +msgid "cannot attach table \"%s\" as a partition because it is referenced by foreign key \"%s\"" +msgstr "外部キー\"%2$s\"で参照されているため、テーブル\"%1$s\"を子テーブルとしてアタッチすることはできません" + +#: commands/tablecmds.c:11005 commands/tablecmds.c:11286 commands/tablecmds.c:12211 commands/tablecmds.c:12286 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist" msgstr "リレーション\"%2$s\"の制約\"%1$s\"は存在しません" -#: commands/tablecmds.c:10893 +#: commands/tablecmds.c:11012 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key constraint" msgstr "リレーション\"%2$s\"の制約\"%1$s\"は外部キー制約ではありません" -#: commands/tablecmds.c:10931 +#: commands/tablecmds.c:11050 #, c-format msgid "cannot alter constraint \"%s\" on relation \"%s\"" msgstr "リレーション\"%2$s\"の制約\"%1$s\"を変更できません" -#: commands/tablecmds.c:10934 +#: commands/tablecmds.c:11053 #, c-format msgid "Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\"." msgstr "制約\"%1$s\"は、リレーション\"%3$s\"上の制約\"%2$s\"から派生しています。" -#: commands/tablecmds.c:10936 +#: commands/tablecmds.c:11055 #, c-format msgid "You may alter the constraint it derives from, instead." msgstr "この制約の代わりに派生元の制約を変更することは可能です。" -#: commands/tablecmds.c:11175 +#: commands/tablecmds.c:11294 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key or check constraint" msgstr "リレーション\"%2$s\"の制約\"%1$s\"は外部キー制約でも検査制約でもありません" -#: commands/tablecmds.c:11253 +#: commands/tablecmds.c:11372 #, c-format msgid "constraint must be validated on child tables too" msgstr "制約は子テーブルでも検証される必要があります" -#: commands/tablecmds.c:11343 +#: commands/tablecmds.c:11462 #, c-format msgid "column \"%s\" referenced in foreign key constraint does not exist" msgstr "外部キー制約で参照される列\"%s\"が存在しません" -#: commands/tablecmds.c:11349 +#: commands/tablecmds.c:11468 #, c-format msgid "system columns cannot be used in foreign keys" msgstr "システム列は外部キーに使用できません" -#: commands/tablecmds.c:11353 +#: commands/tablecmds.c:11472 #, c-format msgid "cannot have more than %d keys in a foreign key" msgstr "外部キーでは%dを超えるキーを持つことができません" -#: commands/tablecmds.c:11419 +#: commands/tablecmds.c:11538 #, c-format msgid "cannot use a deferrable primary key for referenced table \"%s\"" msgstr "被参照テーブル\"%s\"には遅延可能プライマリキーは使用できません" -#: commands/tablecmds.c:11436 +#: commands/tablecmds.c:11555 #, c-format msgid "there is no primary key for referenced table \"%s\"" msgstr "被参照テーブル\"%s\"にはプライマリキーがありません" -#: commands/tablecmds.c:11505 +#: commands/tablecmds.c:11624 #, c-format msgid "foreign key referenced-columns list must not contain duplicates" msgstr "外部キーの被参照列リストには重複があってはなりません" -#: commands/tablecmds.c:11599 +#: commands/tablecmds.c:11718 #, c-format msgid "cannot use a deferrable unique constraint for referenced table \"%s\"" msgstr "被参照テーブル\"%s\"に対しては、遅延可能な一意性制約は使用できません" -#: commands/tablecmds.c:11604 +#: commands/tablecmds.c:11723 #, c-format msgid "there is no unique constraint matching given keys for referenced table \"%s\"" msgstr "被参照テーブル\"%s\"に、指定したキーに一致する一意性制約がありません" -#: commands/tablecmds.c:12048 +#: commands/tablecmds.c:12167 #, c-format msgid "cannot drop inherited constraint \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の継承された制約\"%1$s\"を削除できません" -#: commands/tablecmds.c:12098 +#: commands/tablecmds.c:12217 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist, skipping" msgstr "リレーション\"%2$s\"の制約\"%1$s\"は存在しません、スキップします" -#: commands/tablecmds.c:12274 +#: commands/tablecmds.c:12393 #, c-format msgid "cannot alter column type of typed table" msgstr "型付けされたテーブルの列の型を変更できません" -#: commands/tablecmds.c:12301 +#: commands/tablecmds.c:12419 +#, c-format +msgid "cannot specify USING when altering type of generated column" +msgstr "生成列の型変更の際にはUSINGを指定することはできません" + +#: commands/tablecmds.c:12420 commands/tablecmds.c:17584 commands/tablecmds.c:17674 commands/trigger.c:668 rewrite/rewriteHandler.c:930 rewrite/rewriteHandler.c:965 +#, c-format +msgid "Column \"%s\" is a generated column." +msgstr "列\"%s\"は生成カラムです。" + +#: commands/tablecmds.c:12430 #, c-format msgid "cannot alter inherited column \"%s\"" msgstr "継承される列\"%s\"を変更できません" -#: commands/tablecmds.c:12310 +#: commands/tablecmds.c:12439 #, c-format msgid "cannot alter column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "列\"%s\"はリレーション\"%s\"のパーティションキーの一部であるため、変更できません" -#: commands/tablecmds.c:12360 +#: commands/tablecmds.c:12489 #, c-format msgid "result of USING clause for column \"%s\" cannot be cast automatically to type %s" msgstr "列\"%s\"に対するUSING句の結果は自動的に%s型に型変換できません" -#: commands/tablecmds.c:12363 +#: commands/tablecmds.c:12492 #, c-format msgid "You might need to add an explicit cast." msgstr "必要に応じて明示的な型変換を追加してください。" -#: commands/tablecmds.c:12367 +#: commands/tablecmds.c:12496 #, c-format msgid "column \"%s\" cannot be cast automatically to type %s" msgstr "列\"%s\"は型%sには自動的に型変換できません" #. translator: USING is SQL, don't translate it -#: commands/tablecmds.c:12370 +#: commands/tablecmds.c:12500 #, c-format msgid "You might need to specify \"USING %s::%s\"." msgstr "必要に応じて\"USING %s::%s\"を追加してください。" -#: commands/tablecmds.c:12469 +#: commands/tablecmds.c:12599 #, c-format msgid "cannot alter inherited column \"%s\" of relation \"%s\"" msgstr "リレーション\"%2$s\"の継承列\"%1$s\"は変更できません" -#: commands/tablecmds.c:12497 +#: commands/tablecmds.c:12627 #, c-format msgid "USING expression contains a whole-row table reference." msgstr "USING式が行全体テーブル参照を含んでいます。" -#: commands/tablecmds.c:12508 +#: commands/tablecmds.c:12638 #, c-format msgid "type of inherited column \"%s\" must be changed in child tables too" msgstr "継承される列\"%s\"の型を子テーブルで変更しなければなりません" -#: commands/tablecmds.c:12633 +#: commands/tablecmds.c:12763 #, c-format msgid "cannot alter type of column \"%s\" twice" msgstr "列\"%s\"の型を2回変更することはできません" -#: commands/tablecmds.c:12671 +#: commands/tablecmds.c:12801 #, c-format msgid "generation expression for column \"%s\" cannot be cast automatically to type %s" msgstr "カラム\"%s\"に対する生成式は自動的に%s型にキャストできません" -#: commands/tablecmds.c:12676 +#: commands/tablecmds.c:12806 #, c-format msgid "default for column \"%s\" cannot be cast automatically to type %s" msgstr "列\"%s\"のデフォルト値を自動的に%s型にキャストできません" -#: commands/tablecmds.c:12764 +#: commands/tablecmds.c:12894 #, c-format msgid "cannot alter type of a column used by a function or procedure" msgstr "関数またはプロシージャで使用される列の型は変更できません" -#: commands/tablecmds.c:12765 commands/tablecmds.c:12779 commands/tablecmds.c:12798 commands/tablecmds.c:12816 commands/tablecmds.c:12874 +#: commands/tablecmds.c:12895 commands/tablecmds.c:12909 commands/tablecmds.c:12928 commands/tablecmds.c:12946 commands/tablecmds.c:13004 #, c-format msgid "%s depends on column \"%s\"" msgstr "%sは列\"%s\"に依存しています" -#: commands/tablecmds.c:12778 +#: commands/tablecmds.c:12908 #, c-format msgid "cannot alter type of a column used by a view or rule" msgstr "ビューまたはルールで使用される列の型は変更できません" -#: commands/tablecmds.c:12797 +#: commands/tablecmds.c:12927 #, c-format msgid "cannot alter type of a column used in a trigger definition" msgstr "トリガー定義で使用される列の型は変更できません" -#: commands/tablecmds.c:12815 +#: commands/tablecmds.c:12945 #, c-format msgid "cannot alter type of a column used in a policy definition" msgstr "ポリシ定義で使用されている列の型は変更できません" -#: commands/tablecmds.c:12846 +#: commands/tablecmds.c:12976 #, c-format msgid "cannot alter type of a column used by a generated column" msgstr "生成カラムで使用される列の型は変更できません" -#: commands/tablecmds.c:12847 +#: commands/tablecmds.c:12977 #, c-format msgid "Column \"%s\" is used by generated column \"%s\"." msgstr "カラム\"%s\"は生成カラム\"%s\"で使われています。" -#: commands/tablecmds.c:12873 +#: commands/tablecmds.c:13003 #, c-format msgid "cannot alter type of a column used by a publication WHERE clause" msgstr "パブリケーションのWHERE句で使用される列の型は変更できません" -#: commands/tablecmds.c:13936 commands/tablecmds.c:13948 +#: commands/tablecmds.c:14066 commands/tablecmds.c:14078 #, c-format msgid "cannot change owner of index \"%s\"" msgstr "インデックス\"%s\"の所有者を変更できません" -#: commands/tablecmds.c:13938 commands/tablecmds.c:13950 +#: commands/tablecmds.c:14068 commands/tablecmds.c:14080 #, c-format msgid "Change the ownership of the index's table, instead." msgstr "代わりにインデックスのテーブルの所有者を変更してください" -#: commands/tablecmds.c:13964 +#: commands/tablecmds.c:14094 #, c-format msgid "cannot change owner of sequence \"%s\"" msgstr "シーケンス\"%s\"の所有者を変更できません" -#: commands/tablecmds.c:13978 commands/tablecmds.c:17292 commands/tablecmds.c:17311 +#: commands/tablecmds.c:14108 commands/tablecmds.c:17430 commands/tablecmds.c:17449 #, c-format msgid "Use ALTER TYPE instead." msgstr "代わりにALTER TYPEを使用してください。" -#: commands/tablecmds.c:13987 +#: commands/tablecmds.c:14117 #, c-format msgid "cannot change owner of relation \"%s\"" msgstr "リレーション\"%s\"の所有者を変更できません" -#: commands/tablecmds.c:14349 +#: commands/tablecmds.c:14479 #, c-format msgid "cannot have multiple SET TABLESPACE subcommands" msgstr "SET TABLESPACEサブコマンドを複数指定できません" -#: commands/tablecmds.c:14426 +#: commands/tablecmds.c:14556 #, c-format msgid "cannot set options for relation \"%s\"" msgstr "リレーション\"%s\"のオプションは設定できません" -#: commands/tablecmds.c:14460 commands/view.c:521 +#: commands/tablecmds.c:14590 commands/view.c:521 #, c-format msgid "WITH CHECK OPTION is supported only on automatically updatable views" msgstr "WITH CHECK OPTIONは自動更新可能ビューでのみサポートされます" -#: commands/tablecmds.c:14710 +#: commands/tablecmds.c:14841 #, c-format msgid "only tables, indexes, and materialized views exist in tablespaces" msgstr "テーブルスペースにはテーブル、インデックスおよび実体化ビューしかありません" -#: commands/tablecmds.c:14722 +#: commands/tablecmds.c:14853 #, c-format msgid "cannot move relations in to or out of pg_global tablespace" msgstr "pg_globalテーブルスペースとの間のリレーションの移動はできません" -#: commands/tablecmds.c:14814 +#: commands/tablecmds.c:14945 #, c-format msgid "aborting because lock on relation \"%s.%s\" is not available" msgstr "リレーション\"%s.%s\"のロックが獲得できなかったため中断します" -#: commands/tablecmds.c:14830 +#: commands/tablecmds.c:14961 #, c-format msgid "no matching relations in tablespace \"%s\" found" msgstr "テーブルスペース\"%s\"には合致するリレーションはありませんでした" -#: commands/tablecmds.c:14948 +#: commands/tablecmds.c:15079 #, c-format msgid "cannot change inheritance of typed table" msgstr "型付けされたテーブルの継承を変更できません" -#: commands/tablecmds.c:14953 commands/tablecmds.c:15509 +#: commands/tablecmds.c:15084 commands/tablecmds.c:15640 #, c-format msgid "cannot change inheritance of a partition" msgstr "パーティションの継承は変更できません" -#: commands/tablecmds.c:14958 +#: commands/tablecmds.c:15089 #, c-format msgid "cannot change inheritance of partitioned table" msgstr "パーティションテーブルの継承は変更できません" -#: commands/tablecmds.c:15004 +#: commands/tablecmds.c:15135 #, c-format msgid "cannot inherit to temporary relation of another session" msgstr "他のセッションの一時テーブルを継承できません" -#: commands/tablecmds.c:15017 +#: commands/tablecmds.c:15148 #, c-format msgid "cannot inherit from a partition" msgstr "パーティションからの継承はできません" -#: commands/tablecmds.c:15039 commands/tablecmds.c:17947 +#: commands/tablecmds.c:15170 commands/tablecmds.c:18085 #, c-format msgid "circular inheritance not allowed" msgstr "循環継承を行うことはできません" -#: commands/tablecmds.c:15040 commands/tablecmds.c:17948 +#: commands/tablecmds.c:15171 commands/tablecmds.c:18086 #, c-format msgid "\"%s\" is already a child of \"%s\"." msgstr "\"%s\"はすでに\"%s\"の子です" -#: commands/tablecmds.c:15053 +#: commands/tablecmds.c:15184 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming an inheritance child" msgstr "トリガ\"%s\"によってテーブル\"%s\"が継承子テーブルになることができません" -#: commands/tablecmds.c:15055 +#: commands/tablecmds.c:15186 #, c-format msgid "ROW triggers with transition tables are not supported in inheritance hierarchies." msgstr "遷移テーブルを使用したROWトリガは継承関係ではサポートされていません。" -#: commands/tablecmds.c:15258 +#: commands/tablecmds.c:15389 #, c-format msgid "column \"%s\" in child table must be marked NOT NULL" msgstr "子テーブルの列\"%s\"はNOT NULLである必要があります" -#: commands/tablecmds.c:15267 +#: commands/tablecmds.c:15398 #, c-format msgid "column \"%s\" in child table must be a generated column" msgstr "子テーブルの列\"%s\"は生成列である必要があります" -#: commands/tablecmds.c:15317 +#: commands/tablecmds.c:15448 #, c-format msgid "column \"%s\" in child table has a conflicting generation expression" msgstr "子テーブルの列\"%s\"には競合する生成式があります" -#: commands/tablecmds.c:15345 +#: commands/tablecmds.c:15476 #, c-format msgid "child table is missing column \"%s\"" msgstr "子テーブルには列\"%s\"がありません" -#: commands/tablecmds.c:15433 +#: commands/tablecmds.c:15564 #, c-format msgid "child table \"%s\" has different definition for check constraint \"%s\"" msgstr "子テーブル\"%s\"では検査制約\"%s\"に異なった定義がされています" -#: commands/tablecmds.c:15441 +#: commands/tablecmds.c:15572 #, c-format msgid "constraint \"%s\" conflicts with non-inherited constraint on child table \"%s\"" msgstr "制約\"%s\"は子テーブル\"%s\"上の継承されない制約と競合します" -#: commands/tablecmds.c:15452 +#: commands/tablecmds.c:15583 #, c-format msgid "constraint \"%s\" conflicts with NOT VALID constraint on child table \"%s\"" msgstr "制約\"%s\"は子テーブル\"%s\"のNOT VALID制約と衝突しています" -#: commands/tablecmds.c:15487 +#: commands/tablecmds.c:15618 #, c-format msgid "child table is missing constraint \"%s\"" msgstr "子テーブルには制約\"%s\"がありません" -#: commands/tablecmds.c:15573 +#: commands/tablecmds.c:15704 #, c-format msgid "partition \"%s\" already pending detach in partitioned table \"%s.%s\"" msgstr "パーティション\"%s\"はすでにパーティションテーブル\"%s.%s\"からの取り外し保留中です" -#: commands/tablecmds.c:15602 commands/tablecmds.c:15650 +#: commands/tablecmds.c:15733 commands/tablecmds.c:15781 #, c-format msgid "relation \"%s\" is not a partition of relation \"%s\"" msgstr "リレーション\"%s\"はリレーション\"%s\"のパーティション子テーブルではありません" -#: commands/tablecmds.c:15656 +#: commands/tablecmds.c:15787 #, c-format msgid "relation \"%s\" is not a parent of relation \"%s\"" msgstr "リレーション\"%s\"はリレーション\"%s\"の親ではありません" -#: commands/tablecmds.c:15884 +#: commands/tablecmds.c:16015 #, c-format msgid "typed tables cannot inherit" msgstr "型付けされたテーブルは継承できません" -#: commands/tablecmds.c:15914 +#: commands/tablecmds.c:16045 #, c-format msgid "table is missing column \"%s\"" msgstr "テーブルには列\"%s\"がありません" -#: commands/tablecmds.c:15925 +#: commands/tablecmds.c:16056 #, c-format msgid "table has column \"%s\" where type requires \"%s\"" msgstr "テーブルには列\"%s\"がありますが型は\"%s\"を必要としています" -#: commands/tablecmds.c:15934 +#: commands/tablecmds.c:16065 #, c-format msgid "table \"%s\" has different type for column \"%s\"" msgstr "テーブル\"%s\"では列\"%s\"の型が異なっています" -#: commands/tablecmds.c:15948 +#: commands/tablecmds.c:16079 #, c-format msgid "table has extra column \"%s\"" msgstr "テーブルに余分な列\"%s\"があります" -#: commands/tablecmds.c:16000 +#: commands/tablecmds.c:16131 #, c-format msgid "\"%s\" is not a typed table" msgstr "\"%s\"は型付けされたテーブルではありません" -#: commands/tablecmds.c:16174 +#: commands/tablecmds.c:16305 #, c-format msgid "cannot use non-unique index \"%s\" as replica identity" msgstr "非ユニークインデックス\"%s\"は複製識別としては使用できません" -#: commands/tablecmds.c:16180 +#: commands/tablecmds.c:16311 #, c-format msgid "cannot use non-immediate index \"%s\" as replica identity" msgstr "一意性を即時検査しないインデックス\"%s\"は複製識別には使用できません" -#: commands/tablecmds.c:16186 +#: commands/tablecmds.c:16317 #, c-format msgid "cannot use expression index \"%s\" as replica identity" msgstr "式インデックス\"%s\"は複製識別としては使用できません" -#: commands/tablecmds.c:16192 +#: commands/tablecmds.c:16323 #, c-format msgid "cannot use partial index \"%s\" as replica identity" msgstr "部分インデックス\"%s\"を複製識別としては使用できません" -#: commands/tablecmds.c:16209 +#: commands/tablecmds.c:16340 #, c-format msgid "index \"%s\" cannot be used as replica identity because column %d is a system column" msgstr "列%2$dはシステム列であるためインデックス\"%1$s\"は複製識別には使えません" -#: commands/tablecmds.c:16216 +#: commands/tablecmds.c:16347 #, c-format msgid "index \"%s\" cannot be used as replica identity because column \"%s\" is nullable" msgstr "列\"%2$s\"はnull可であるためインデックス\"%1$s\"は複製識別には使えません" -#: commands/tablecmds.c:16463 +#: commands/tablecmds.c:16594 #, c-format msgid "cannot change logged status of table \"%s\" because it is temporary" msgstr "テーブル\"%s\"は一時テーブルであるため、ログ出力設定を変更できません" -#: commands/tablecmds.c:16487 +#: commands/tablecmds.c:16618 #, c-format msgid "cannot change table \"%s\" to unlogged because it is part of a publication" msgstr "テーブル\"%s\"はパブリケーションの一部であるため、UNLOGGEDに変更できません" -#: commands/tablecmds.c:16489 +#: commands/tablecmds.c:16620 #, c-format msgid "Unlogged relations cannot be replicated." msgstr "UNLOGGEDリレーションはレプリケーションできません。" -#: commands/tablecmds.c:16534 +#: commands/tablecmds.c:16665 #, c-format msgid "could not change table \"%s\" to logged because it references unlogged table \"%s\"" msgstr "テーブル\"%s\"はUNLOGGEDテーブル\"%s\"を参照しているためLOGGEDには設定できません" -#: commands/tablecmds.c:16544 +#: commands/tablecmds.c:16675 #, c-format msgid "could not change table \"%s\" to unlogged because it references logged table \"%s\"" msgstr "テーブル\"%s\"はLOGGEDテーブル\"%s\"を参照しているためUNLOGGEDには設定できません" -#: commands/tablecmds.c:16602 +#: commands/tablecmds.c:16733 #, c-format msgid "cannot move an owned sequence into another schema" msgstr "所有するシーケンスを他のスキーマに移動することができません" -#: commands/tablecmds.c:16704 +#: commands/tablecmds.c:16838 #, c-format msgid "relation \"%s\" already exists in schema \"%s\"" msgstr "リレーション\"%s\"はスキーマ\"%s\"内にすでに存在します" -#: commands/tablecmds.c:17125 +#: commands/tablecmds.c:17263 #, c-format msgid "\"%s\" is not a table or materialized view" msgstr "\"%s\"はテーブルや実体化ビューではありません" -#: commands/tablecmds.c:17275 +#: commands/tablecmds.c:17413 #, c-format msgid "\"%s\" is not a composite type" msgstr "\"%s\"は複合型ではありません" -#: commands/tablecmds.c:17303 +#: commands/tablecmds.c:17441 #, c-format msgid "cannot change schema of index \"%s\"" msgstr "インデックス\"%s\"のスキーマを変更できません" -#: commands/tablecmds.c:17305 commands/tablecmds.c:17317 +#: commands/tablecmds.c:17443 commands/tablecmds.c:17455 #, c-format msgid "Change the schema of the table instead." msgstr "代わりにこのテーブルのスキーマを変更してください。" -#: commands/tablecmds.c:17309 +#: commands/tablecmds.c:17447 #, c-format msgid "cannot change schema of composite type \"%s\"" msgstr "複合型%sのスキーマは変更できません" -#: commands/tablecmds.c:17315 +#: commands/tablecmds.c:17453 #, c-format msgid "cannot change schema of TOAST table \"%s\"" msgstr "TOASTテーブル\"%s\"のスキーマは変更できません" -#: commands/tablecmds.c:17352 +#: commands/tablecmds.c:17490 #, c-format msgid "unrecognized partitioning strategy \"%s\"" msgstr "識別できないパーティションストラテジ \"%s\"" -#: commands/tablecmds.c:17360 +#: commands/tablecmds.c:17498 #, c-format msgid "cannot use \"list\" partition strategy with more than one column" msgstr "\"list\"パーティションストラテジは2つ以上の列に対しては使えません" -#: commands/tablecmds.c:17426 +#: commands/tablecmds.c:17564 #, c-format msgid "column \"%s\" named in partition key does not exist" msgstr "パーティションキーに指定されている列\"%s\"は存在しません" -#: commands/tablecmds.c:17434 +#: commands/tablecmds.c:17572 #, c-format msgid "cannot use system column \"%s\" in partition key" msgstr "パーティションキーでシステム列\"%s\"は使用できません" -#: commands/tablecmds.c:17445 commands/tablecmds.c:17535 +#: commands/tablecmds.c:17583 commands/tablecmds.c:17673 #, c-format msgid "cannot use generated column in partition key" msgstr "パーティションキーで生成カラムは使用できません" -#: commands/tablecmds.c:17446 commands/tablecmds.c:17536 commands/trigger.c:668 rewrite/rewriteHandler.c:929 rewrite/rewriteHandler.c:964 -#, c-format -msgid "Column \"%s\" is a generated column." -msgstr "列\"%s\"は生成カラムです。" - -#: commands/tablecmds.c:17518 +#: commands/tablecmds.c:17656 #, c-format msgid "partition key expressions cannot contain system column references" msgstr "パーティションキー式はシステム列への参照を含むことができません" -#: commands/tablecmds.c:17565 +#: commands/tablecmds.c:17703 #, c-format msgid "functions in partition key expression must be marked IMMUTABLE" msgstr "パーティションキー式で使われる関数はIMMUTABLE指定されている必要があります" -#: commands/tablecmds.c:17574 +#: commands/tablecmds.c:17712 #, c-format msgid "cannot use constant expression as partition key" msgstr "定数式をパーティションキーとして使うことはできません" -#: commands/tablecmds.c:17595 +#: commands/tablecmds.c:17733 #, c-format msgid "could not determine which collation to use for partition expression" msgstr "パーティション式で使用する照合順序を特定できませんでした" -#: commands/tablecmds.c:17630 +#: commands/tablecmds.c:17768 #, c-format msgid "You must specify a hash operator class or define a default hash operator class for the data type." msgstr "ハッシュ演算子クラスを指定するか、もしくはこのデータ型にデフォルトのハッシュ演算子クラスを定義する必要があります。" -#: commands/tablecmds.c:17636 +#: commands/tablecmds.c:17774 #, c-format msgid "You must specify a btree operator class or define a default btree operator class for the data type." msgstr "btree演算子クラスを指定するか、もしくはこのデータ型にデフォルトのbtree演算子クラスを定義するかする必要があります。" -#: commands/tablecmds.c:17887 +#: commands/tablecmds.c:18025 #, c-format msgid "\"%s\" is already a partition" msgstr "\"%s\"はすでパーティションです" -#: commands/tablecmds.c:17893 +#: commands/tablecmds.c:18031 #, c-format msgid "cannot attach a typed table as partition" msgstr "型付けされたテーブルをパーティションにアタッチすることはできません" -#: commands/tablecmds.c:17909 +#: commands/tablecmds.c:18047 #, c-format msgid "cannot attach inheritance child as partition" msgstr "継承子テーブルをパーティションにアタッチすることはできません" -#: commands/tablecmds.c:17923 +#: commands/tablecmds.c:18061 #, c-format msgid "cannot attach inheritance parent as partition" msgstr "継承親テーブルをパーティションにアタッチすることはできません" -#: commands/tablecmds.c:17957 +#: commands/tablecmds.c:18095 #, c-format msgid "cannot attach a temporary relation as partition of permanent relation \"%s\"" msgstr "一時リレーションを永続リレーション \"%s\" のパーティション子テーブルとしてアタッチすることはできません" -#: commands/tablecmds.c:17965 +#: commands/tablecmds.c:18103 #, c-format msgid "cannot attach a permanent relation as partition of temporary relation \"%s\"" msgstr "永続リレーションを一時リレーション\"%s\"のパーティション子テーブルとしてアタッチすることはできません" -#: commands/tablecmds.c:17973 +#: commands/tablecmds.c:18111 #, c-format msgid "cannot attach as partition of temporary relation of another session" msgstr "他セッションの一時リレーションのパーティション子テーブルとしてアタッチすることはできません" -#: commands/tablecmds.c:17980 +#: commands/tablecmds.c:18118 #, c-format msgid "cannot attach temporary relation of another session as partition" msgstr "他セッションの一時リレーションにパーティション子テーブルとしてアタッチすることはできません" -#: commands/tablecmds.c:18000 +#: commands/tablecmds.c:18138 #, c-format msgid "table \"%s\" contains column \"%s\" not found in parent \"%s\"" msgstr "テーブル\"%1$s\"は親テーブル\"%3$s\"にない列\"%2$s\"を含んでいます" -#: commands/tablecmds.c:18003 +#: commands/tablecmds.c:18141 #, c-format msgid "The new partition may contain only the columns present in parent." msgstr "新しいパーティションは親に存在する列のみを含むことができます。" -#: commands/tablecmds.c:18015 +#: commands/tablecmds.c:18153 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming a partition" msgstr "トリガ\"%s\"のため、テーブル\"%s\"はパーティション子テーブルにはなれません" -#: commands/tablecmds.c:18017 +#: commands/tablecmds.c:18155 #, c-format msgid "ROW triggers with transition tables are not supported on partitions." msgstr "遷移テーブルを使用するROWトリガはパーティションではサポートされません。" -#: commands/tablecmds.c:18196 +#: commands/tablecmds.c:18334 #, c-format msgid "cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"" msgstr "外部テーブル\"%s\"はパーティションテーブル\"%s\"の子テーブルとしてアタッチすることはできません" -#: commands/tablecmds.c:18199 +#: commands/tablecmds.c:18337 #, c-format msgid "Partitioned table \"%s\" contains unique indexes." msgstr "パーティション親テーブル\"%s\"はユニークインデックスを持っています。" -#: commands/tablecmds.c:18514 +#: commands/tablecmds.c:18652 #, c-format msgid "cannot detach partitions concurrently when a default partition exists" msgstr "デフォルトパーティションを持つパーティションは並列的に取り外しはできません" -#: commands/tablecmds.c:18623 +#: commands/tablecmds.c:18761 #, c-format msgid "partitioned table \"%s\" was removed concurrently" msgstr "パーティション親テーブル\"%s\"には CREATE INDEX CONCURRENTLY は実行できません" -#: commands/tablecmds.c:18629 +#: commands/tablecmds.c:18767 #, c-format msgid "partition \"%s\" was removed concurrently" msgstr "パーティション子テーブル\\\"%s\\\"は同時に削除されました" -#: commands/tablecmds.c:19153 commands/tablecmds.c:19173 commands/tablecmds.c:19193 commands/tablecmds.c:19212 commands/tablecmds.c:19254 +#: commands/tablecmds.c:19347 commands/tablecmds.c:19367 commands/tablecmds.c:19387 commands/tablecmds.c:19406 commands/tablecmds.c:19448 #, c-format msgid "cannot attach index \"%s\" as a partition of index \"%s\"" msgstr "インデックス\"%s\"をインデックス\"%s\"の子インデックスとしてアタッチすることはできません" -#: commands/tablecmds.c:19156 +#: commands/tablecmds.c:19350 #, c-format msgid "Index \"%s\" is already attached to another index." msgstr "インデックス\"%s\"はすでに別のインデックスにアタッチされています。" -#: commands/tablecmds.c:19176 +#: commands/tablecmds.c:19370 #, c-format msgid "Index \"%s\" is not an index on any partition of table \"%s\"." msgstr "インデックス\"%s\"はテーブル\"%s\"のどの子テーブルのインデックスでもありません。" -#: commands/tablecmds.c:19196 +#: commands/tablecmds.c:19390 #, c-format msgid "The index definitions do not match." msgstr "インデックス定義が合致しません。" -#: commands/tablecmds.c:19215 +#: commands/tablecmds.c:19409 #, c-format msgid "The index \"%s\" belongs to a constraint in table \"%s\" but no constraint exists for index \"%s\"." msgstr "インデックス\"%s\"はテーブル\"%s\"の制約に属していますが、インデックス\"%s\"には制約がありません。" -#: commands/tablecmds.c:19257 +#: commands/tablecmds.c:19451 #, c-format msgid "Another index is already attached for partition \"%s\"." msgstr "子テーブル\"%s\"にはすでに他のインデックスがアタッチされています。" -#: commands/tablecmds.c:19494 +#: commands/tablecmds.c:19688 #, c-format msgid "column data type %s does not support compression" msgstr "列データ型%sは圧縮をサポートしていません" -#: commands/tablecmds.c:19501 +#: commands/tablecmds.c:19695 #, c-format msgid "invalid compression method \"%s\"" msgstr "無効な圧縮方式\"%s\"" @@ -10884,17 +10904,17 @@ msgstr "テーブル空間の場所\"%s\"は長すぎます" msgid "tablespace location should not be inside the data directory" msgstr "テーブル空間の場所はデータディレクトリの中に指定すべきではありません" -#: commands/tablespace.c:290 commands/tablespace.c:996 +#: commands/tablespace.c:290 commands/tablespace.c:991 #, c-format msgid "unacceptable tablespace name \"%s\"" msgstr "テーブル空間名\"%s\"を受け付けられません" -#: commands/tablespace.c:292 commands/tablespace.c:997 +#: commands/tablespace.c:292 commands/tablespace.c:992 #, c-format msgid "The prefix \"pg_\" is reserved for system tablespaces." msgstr "接頭辞\"pg_\"はシステムテーブル空間用に予約されています" -#: commands/tablespace.c:311 commands/tablespace.c:1018 +#: commands/tablespace.c:311 commands/tablespace.c:1013 #, c-format msgid "tablespace \"%s\" already exists" msgstr "テーブル空間\"%s\"はすでに存在します" @@ -10904,7 +10924,7 @@ msgstr "テーブル空間\"%s\"はすでに存在します" msgid "pg_tablespace OID value not set when in binary upgrade mode" msgstr "バイナリアップグレードモード中にpg_tablespaceのOID値が設定されてません" -#: commands/tablespace.c:441 commands/tablespace.c:979 commands/tablespace.c:1068 commands/tablespace.c:1137 commands/tablespace.c:1283 commands/tablespace.c:1486 +#: commands/tablespace.c:441 commands/tablespace.c:974 commands/tablespace.c:1063 commands/tablespace.c:1132 commands/tablespace.c:1278 commands/tablespace.c:1481 #, c-format msgid "tablespace \"%s\" does not exist" msgstr "テーブル空間\"%s\"は存在しません" @@ -10944,32 +10964,32 @@ msgstr "ディレクトリ\"%s\"に権限を設定できませんでした: %m" msgid "directory \"%s\" already in use as a tablespace" msgstr "ディレクトリ\"%s\"はすでにテーブルスペースとして使われています" -#: commands/tablespace.c:788 commands/tablespace.c:801 commands/tablespace.c:837 commands/tablespace.c:929 storage/file/fd.c:3255 storage/file/fd.c:3669 +#: commands/tablespace.c:788 commands/tablespace.c:801 commands/tablespace.c:836 commands/tablespace.c:926 storage/file/fd.c:3255 storage/file/fd.c:3664 #, c-format msgid "could not remove directory \"%s\": %m" msgstr "ディレクトリ\"%s\"を削除できませんでした: %m" -#: commands/tablespace.c:850 commands/tablespace.c:938 +#: commands/tablespace.c:848 commands/tablespace.c:934 #, c-format msgid "could not remove symbolic link \"%s\": %m" msgstr "シンボリックリンク\"%s\"を削除できませんでした: %m" -#: commands/tablespace.c:860 commands/tablespace.c:947 +#: commands/tablespace.c:857 commands/tablespace.c:942 #, c-format msgid "\"%s\" is not a directory or symbolic link" msgstr "\"%s\"はディレクトリでもシンボリックリンクでもありません" -#: commands/tablespace.c:1142 +#: commands/tablespace.c:1137 #, c-format msgid "Tablespace \"%s\" does not exist." msgstr "テーブル空間\"%s\"は存在しません" -#: commands/tablespace.c:1588 +#: commands/tablespace.c:1583 #, c-format msgid "directories for tablespace %u could not be removed" msgstr "テーブル空間%u用のディレクトリを削除することができませんでした" -#: commands/tablespace.c:1590 +#: commands/tablespace.c:1585 #, c-format msgid "You can remove the directories manually if necessary." msgstr "必要ならば手作業でこのディレクトリを削除することができます" @@ -11219,22 +11239,17 @@ msgstr "BEFORE FOR EACH ROWトリガの実行では、他のパーティショ msgid "Before executing trigger \"%s\", the row was to be in partition \"%s.%s\"." msgstr "トリガ\"%s\"の実行前には、この行はパーティション\"%s.%s\"に置かれるはずでした。" -#: commands/trigger.c:3441 executor/nodeModifyTable.c:2359 executor/nodeModifyTable.c:2442 -#, c-format -msgid "tuple to be updated was already modified by an operation triggered by the current command" -msgstr "更新対象のタプルはすでに現在のコマンドによって発行された操作によって変更されています" - -#: commands/trigger.c:3442 executor/nodeModifyTable.c:1522 executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2360 executor/nodeModifyTable.c:2443 executor/nodeModifyTable.c:2980 executor/nodeModifyTable.c:3107 +#: commands/trigger.c:3442 executor/nodeModifyTable.c:1522 executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2363 executor/nodeModifyTable.c:2454 executor/nodeModifyTable.c:3015 executor/nodeModifyTable.c:3154 #, c-format msgid "Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows." msgstr "他の行への変更を伝搬させるためにBEFOREトリガではなくAFTERトリガの使用を検討してください" -#: commands/trigger.c:3483 executor/nodeLockRows.c:229 executor/nodeLockRows.c:238 executor/nodeModifyTable.c:316 executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2377 executor/nodeModifyTable.c:2585 +#: commands/trigger.c:3483 executor/nodeLockRows.c:229 executor/nodeLockRows.c:238 executor/nodeModifyTable.c:316 executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2380 executor/nodeModifyTable.c:2604 #, c-format msgid "could not serialize access due to concurrent update" msgstr "更新が同時に行われたためアクセスの直列化ができませんでした" -#: commands/trigger.c:3491 executor/nodeModifyTable.c:1628 executor/nodeModifyTable.c:2460 executor/nodeModifyTable.c:2609 executor/nodeModifyTable.c:2998 +#: commands/trigger.c:3491 executor/nodeModifyTable.c:1628 executor/nodeModifyTable.c:2471 executor/nodeModifyTable.c:2628 executor/nodeModifyTable.c:3033 #, c-format msgid "could not serialize access due to concurrent delete" msgstr "削除が同時に行われたためアクセスの直列化ができませんでした" @@ -11714,7 +11729,7 @@ msgstr "bypassrls 設定のユーザーを作成するにはスーパーユー msgid "permission denied to create role" msgstr "ロールを作成する権限がありません" -#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16437 gram.y:16483 utils/adt/acl.c:5331 utils/adt/acl.c:5337 +#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16444 gram.y:16490 utils/adt/acl.c:5331 utils/adt/acl.c:5337 #, c-format msgid "role name \"%s\" is reserved" msgstr "ロール名\"%s\"は予約されています" @@ -12007,32 +12022,32 @@ msgstr "最古のマルチトランザクションが古すぎます" msgid "Close open transactions with multixacts soon to avoid wraparound problems." msgstr "周回問題を回避するために、マルチトランザクションを使用している実行中のトランザクションをすぐにクローズしてください。" -#: commands/vacuum.c:1811 +#: commands/vacuum.c:1821 #, c-format msgid "some databases have not been vacuumed in over 2 billion transactions" msgstr "データベースの一部は20億トランザクション以上の間にVACUUMを実行されていませんでした" -#: commands/vacuum.c:1812 +#: commands/vacuum.c:1822 #, c-format msgid "You might have already suffered transaction-wraparound data loss." msgstr "トランザクションの周回によるデータ損失が発生している可能性があります" -#: commands/vacuum.c:1980 +#: commands/vacuum.c:1990 #, c-format msgid "skipping \"%s\" --- cannot vacuum non-tables or special system tables" msgstr "\"%s\"をスキップしています --- テーブルではないものや、特別なシステムテーブルに対してはVACUUMを実行できません" -#: commands/vacuum.c:2358 +#: commands/vacuum.c:2368 #, c-format msgid "scanned index \"%s\" to remove %d row versions" msgstr "%2$d行バージョンを削除するためインデックス\"%1$s\"をスキャンしました" -#: commands/vacuum.c:2377 +#: commands/vacuum.c:2387 #, c-format msgid "index \"%s\" now contains %.0f row versions in %u pages" msgstr "現在インデックス\"%s\"は%.0f行バージョンを%uページで含んでいます" -#: commands/vacuum.c:2381 +#: commands/vacuum.c:2391 #, c-format msgid "" "%.0f index row versions were removed.\n" @@ -12055,7 +12070,7 @@ msgid "launched %d parallel vacuum worker for index cleanup (planned: %d)" msgid_plural "launched %d parallel vacuum workers for index cleanup (planned: %d)" msgstr[0] "インデックスのクリーンアップのために%d個の並列VACUUMワーカーを起動しました (計画値: %d)" -#: commands/variable.c:165 utils/misc/guc.c:12115 utils/misc/guc.c:12193 +#: commands/variable.c:165 tcop/postgres.c:3665 utils/misc/guc.c:12133 utils/misc/guc.c:12211 #, c-format msgid "Unrecognized key word: \"%s\"." msgstr "不明なキーワードです: \"%s\"" @@ -12115,7 +12130,7 @@ msgstr "SET TRANSACTION ISOLATION LEVEL は問い合わせより前に実行す msgid "SET TRANSACTION ISOLATION LEVEL must not be called in a subtransaction" msgstr "SET TRANSACTION ISOLATION LEVELをサブトランザクションで呼び出してはなりません" -#: commands/variable.c:548 storage/lmgr/predicate.c:1694 +#: commands/variable.c:548 storage/lmgr/predicate.c:1699 #, c-format msgid "cannot use serializable mode in a hot standby" msgstr "ホットスタンバイ中はシリアライズモードを使用できません" @@ -12275,7 +12290,7 @@ msgstr "問い合わせで %d 番目に削除される列の値を指定して msgid "Table has type %s at ordinal position %d, but query expects %s." msgstr "テーブルでは %2$d 番目の型は %1$s ですが、問い合わせでは %3$s を想定しています。" -#: executor/execExpr.c:1098 parser/parse_agg.c:837 +#: executor/execExpr.c:1098 parser/parse_agg.c:835 #, c-format msgid "window function calls cannot be nested" msgstr "ウィンドウ関数の呼び出しを入れ子にすることはできません" @@ -12346,7 +12361,7 @@ msgstr "互換性がない配列をマージできません" msgid "Array with element type %s cannot be included in ARRAY construct with element type %s." msgstr "要素型%sの配列を要素型%sのARRAY式に含められません" -#: executor/execExprInterp.c:2779 utils/adt/arrayfuncs.c:264 utils/adt/arrayfuncs.c:564 utils/adt/arrayfuncs.c:1306 utils/adt/arrayfuncs.c:3422 utils/adt/arrayfuncs.c:5419 utils/adt/arrayfuncs.c:5936 utils/adt/arraysubs.c:150 utils/adt/arraysubs.c:488 +#: executor/execExprInterp.c:2779 utils/adt/arrayfuncs.c:264 utils/adt/arrayfuncs.c:564 utils/adt/arrayfuncs.c:1306 utils/adt/arrayfuncs.c:3429 utils/adt/arrayfuncs.c:5426 utils/adt/arrayfuncs.c:5943 utils/adt/arraysubs.c:150 utils/adt/arraysubs.c:488 #, c-format msgid "number of array dimensions (%d) exceeds the maximum allowed (%d)" msgstr "配列の次数(%d)が上限(%d)を超えています" @@ -12356,8 +12371,8 @@ msgstr "配列の次数(%d)が上限(%d)を超えています" msgid "multidimensional arrays must have array expressions with matching dimensions" msgstr "多次元配列の配列式の次数があっていなければなりません" -#: executor/execExprInterp.c:2811 utils/adt/array_expanded.c:274 utils/adt/arrayfuncs.c:937 utils/adt/arrayfuncs.c:1545 utils/adt/arrayfuncs.c:2353 utils/adt/arrayfuncs.c:2368 utils/adt/arrayfuncs.c:2630 utils/adt/arrayfuncs.c:2646 utils/adt/arrayfuncs.c:2954 utils/adt/arrayfuncs.c:2969 utils/adt/arrayfuncs.c:3310 utils/adt/arrayfuncs.c:3452 utils/adt/arrayfuncs.c:6028 utils/adt/arrayfuncs.c:6369 utils/adt/arrayutils.c:88 utils/adt/arrayutils.c:97 -#: utils/adt/arrayutils.c:104 +#: executor/execExprInterp.c:2811 utils/adt/array_expanded.c:274 utils/adt/arrayfuncs.c:937 utils/adt/arrayfuncs.c:1545 utils/adt/arrayfuncs.c:2353 utils/adt/arrayfuncs.c:2368 utils/adt/arrayfuncs.c:2630 utils/adt/arrayfuncs.c:2646 utils/adt/arrayfuncs.c:2907 utils/adt/arrayfuncs.c:2961 utils/adt/arrayfuncs.c:2976 utils/adt/arrayfuncs.c:3317 utils/adt/arrayfuncs.c:3459 utils/adt/arrayfuncs.c:6035 utils/adt/arrayfuncs.c:6376 utils/adt/arrayutils.c:88 +#: utils/adt/arrayutils.c:97 utils/adt/arrayutils.c:104 #, c-format msgid "array size exceeds the maximum allowed (%d)" msgstr "配列の次数が上限(%d)を超えています" @@ -12423,167 +12438,167 @@ msgstr "キー %s が既存のキー %s と競合しています" msgid "Key conflicts with existing key." msgstr "キーが既存のキーと衝突しています" -#: executor/execMain.c:1009 +#: executor/execMain.c:1016 #, c-format msgid "cannot change sequence \"%s\"" msgstr "シーケンス\"%s\"を変更できません" -#: executor/execMain.c:1015 +#: executor/execMain.c:1022 #, c-format msgid "cannot change TOAST relation \"%s\"" msgstr "TOASTリレーション\"%s\"を変更できません" -#: executor/execMain.c:1033 rewrite/rewriteHandler.c:3103 rewrite/rewriteHandler.c:3983 +#: executor/execMain.c:1040 rewrite/rewriteHandler.c:3112 rewrite/rewriteHandler.c:4000 #, c-format msgid "cannot insert into view \"%s\"" msgstr "ビュー\"%s\"へは挿入(INSERT)できません" -#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3106 rewrite/rewriteHandler.c:3986 +#: executor/execMain.c:1042 rewrite/rewriteHandler.c:3115 rewrite/rewriteHandler.c:4003 #, c-format msgid "To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule." msgstr "ビューへの挿入を可能にするために、INSTEAD OF INSERTトリガまたは無条件のON INSERT DO INSTEADルールを作成してください。" -#: executor/execMain.c:1041 rewrite/rewriteHandler.c:3111 rewrite/rewriteHandler.c:3991 +#: executor/execMain.c:1048 rewrite/rewriteHandler.c:3120 rewrite/rewriteHandler.c:4008 #, c-format msgid "cannot update view \"%s\"" msgstr "ビュー\"%s\"は更新できません" -#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3114 rewrite/rewriteHandler.c:3994 +#: executor/execMain.c:1050 rewrite/rewriteHandler.c:3123 rewrite/rewriteHandler.c:4011 #, c-format msgid "To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule." msgstr "ビューへの更新を可能にするために、INSTEAD OF UPDATEトリガまたは無条件のON UPDATE DO INSTEADルールを作成してください。" -#: executor/execMain.c:1049 rewrite/rewriteHandler.c:3119 rewrite/rewriteHandler.c:3999 +#: executor/execMain.c:1056 rewrite/rewriteHandler.c:3128 rewrite/rewriteHandler.c:4016 #, c-format msgid "cannot delete from view \"%s\"" msgstr "ビュー\"%s\"からは削除できません" -#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3122 rewrite/rewriteHandler.c:4002 +#: executor/execMain.c:1058 rewrite/rewriteHandler.c:3131 rewrite/rewriteHandler.c:4019 #, c-format msgid "To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule." msgstr "ビューからの削除を可能にするために、INSTEAD OF DELETEトリガまたは無条件のON DELETE DO INSTEADルールを作成してください。" -#: executor/execMain.c:1062 +#: executor/execMain.c:1069 #, c-format msgid "cannot change materialized view \"%s\"" msgstr "実体化ビュー\"%s\"を変更できません" -#: executor/execMain.c:1074 +#: executor/execMain.c:1081 #, c-format msgid "cannot insert into foreign table \"%s\"" msgstr "外部テーブル\"%s\"への挿入ができません" -#: executor/execMain.c:1080 +#: executor/execMain.c:1087 #, c-format msgid "foreign table \"%s\" does not allow inserts" msgstr "外部テーブル\"%s\"は挿入を許しません" -#: executor/execMain.c:1087 +#: executor/execMain.c:1094 #, c-format msgid "cannot update foreign table \"%s\"" msgstr "外部テーブル \"%s\"の更新ができません" -#: executor/execMain.c:1093 +#: executor/execMain.c:1100 #, c-format msgid "foreign table \"%s\" does not allow updates" msgstr "外部テーブル\"%s\"は更新を許しません" -#: executor/execMain.c:1100 +#: executor/execMain.c:1107 #, c-format msgid "cannot delete from foreign table \"%s\"" msgstr "外部テーブル\"%s\"からの削除ができません" -#: executor/execMain.c:1106 +#: executor/execMain.c:1113 #, c-format msgid "foreign table \"%s\" does not allow deletes" msgstr "外部テーブル\"%s\"は削除を許しません" -#: executor/execMain.c:1117 +#: executor/execMain.c:1124 #, c-format msgid "cannot change relation \"%s\"" msgstr "リレーション\"%s\"を変更できません" -#: executor/execMain.c:1144 +#: executor/execMain.c:1151 #, c-format msgid "cannot lock rows in sequence \"%s\"" msgstr "シーケンス\"%s\"では行のロックはできません" -#: executor/execMain.c:1151 +#: executor/execMain.c:1158 #, c-format msgid "cannot lock rows in TOAST relation \"%s\"" msgstr "TOAST リレーション\"%s\"では行のロックはできません" -#: executor/execMain.c:1158 +#: executor/execMain.c:1165 #, c-format msgid "cannot lock rows in view \"%s\"" msgstr "ビュー\"%s\"では行のロックはできません" -#: executor/execMain.c:1166 +#: executor/execMain.c:1173 #, c-format msgid "cannot lock rows in materialized view \"%s\"" msgstr "実体化ビュー\"%s\"では行のロックはできません" -#: executor/execMain.c:1175 executor/execMain.c:2685 executor/nodeLockRows.c:136 +#: executor/execMain.c:1182 executor/execMain.c:2694 executor/nodeLockRows.c:136 #, c-format msgid "cannot lock rows in foreign table \"%s\"" msgstr "外部テーブル\"%s\"では行のロックはできません" -#: executor/execMain.c:1181 +#: executor/execMain.c:1188 #, c-format msgid "cannot lock rows in relation \"%s\"" msgstr "リレーション\"%s\"では行のロックはできません" -#: executor/execMain.c:1888 +#: executor/execMain.c:1897 #, c-format msgid "new row for relation \"%s\" violates partition constraint" msgstr "リレーション\"%s\"の新しい行はパーティション制約に違反しています" -#: executor/execMain.c:1890 executor/execMain.c:1973 executor/execMain.c:2023 executor/execMain.c:2132 +#: executor/execMain.c:1899 executor/execMain.c:1982 executor/execMain.c:2032 executor/execMain.c:2141 #, c-format msgid "Failing row contains %s." msgstr "失敗した行は%sを含みます" -#: executor/execMain.c:1970 +#: executor/execMain.c:1979 #, c-format msgid "null value in column \"%s\" of relation \"%s\" violates not-null constraint" msgstr "リレーション\"%2$s\"の列\"%1$s\"のNULL値が非NULL制約に違反しています" -#: executor/execMain.c:2021 +#: executor/execMain.c:2030 #, c-format msgid "new row for relation \"%s\" violates check constraint \"%s\"" msgstr "リレーション\"%s\"の新しい行は検査制約\"%s\"に違反しています" -#: executor/execMain.c:2130 +#: executor/execMain.c:2139 #, c-format msgid "new row violates check option for view \"%s\"" msgstr "新しい行はビュー\"%s\"のチェックオプションに違反しています" -#: executor/execMain.c:2140 +#: executor/execMain.c:2149 #, c-format msgid "new row violates row-level security policy \"%s\" for table \"%s\"" msgstr "新しい行はテーブル\"%2$s\"行レベルセキュリティポリシ\"%1$s\"に違反しています" -#: executor/execMain.c:2145 +#: executor/execMain.c:2154 #, c-format msgid "new row violates row-level security policy for table \"%s\"" msgstr "新しい行はテーブル\"%s\"の行レベルセキュリティポリシに違反しています" -#: executor/execMain.c:2153 +#: executor/execMain.c:2162 #, c-format msgid "target row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "ターゲットの行はテーブル\"%s\"の行レベルセキュリティポリシ\"%s\"(USING式)に違反しています" -#: executor/execMain.c:2158 +#: executor/execMain.c:2167 #, c-format msgid "target row violates row-level security policy (USING expression) for table \"%s\"" msgstr "ターゲットの行はテーブル\"%s\"の行レベルセキュリティポリシ(USING式)に違反しています" -#: executor/execMain.c:2165 +#: executor/execMain.c:2174 #, c-format msgid "new row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "新しい行はテーブル\"%1$s\"の行レベルセキュリティポリシ\"%2$s\"(USING式)に違反しています" -#: executor/execMain.c:2170 +#: executor/execMain.c:2179 #, c-format msgid "new row violates row-level security policy (USING expression) for table \"%s\"" msgstr "新しい行はテーブル\"%s\"の行レベルセキュリティポリシ(USING式)に違反しています" @@ -12598,67 +12613,67 @@ msgstr "行に対応するパーティションがリレーション\"%s\"に見 msgid "Partition key of the failing row contains %s." msgstr "失敗した行のパーティションキーは%sを含みます。" -#: executor/execReplication.c:196 executor/execReplication.c:380 +#: executor/execReplication.c:197 executor/execReplication.c:381 #, c-format msgid "tuple to be locked was already moved to another partition due to concurrent update, retrying" msgstr "ロック対象のタプルは同時に行われた更新によって他の子テーブルに移動されています、再試行しています" -#: executor/execReplication.c:200 executor/execReplication.c:384 +#: executor/execReplication.c:201 executor/execReplication.c:385 #, c-format msgid "concurrent update, retrying" msgstr "同時更新がありました、リトライします" -#: executor/execReplication.c:206 executor/execReplication.c:390 +#: executor/execReplication.c:207 executor/execReplication.c:391 #, c-format msgid "concurrent delete, retrying" msgstr "並行する削除がありました、リトライします" -#: executor/execReplication.c:276 parser/parse_cte.c:308 parser/parse_oper.c:233 utils/adt/array_userfuncs.c:724 utils/adt/array_userfuncs.c:867 utils/adt/arrayfuncs.c:3702 utils/adt/arrayfuncs.c:4257 utils/adt/arrayfuncs.c:6249 utils/adt/rowtypes.c:1203 +#: executor/execReplication.c:277 parser/parse_cte.c:308 parser/parse_oper.c:233 utils/adt/array_userfuncs.c:724 utils/adt/array_userfuncs.c:867 utils/adt/arrayfuncs.c:3709 utils/adt/arrayfuncs.c:4264 utils/adt/arrayfuncs.c:6256 utils/adt/rowtypes.c:1203 #, c-format msgid "could not identify an equality operator for type %s" msgstr "型%sの等価演算子を識別できませんでした" -#: executor/execReplication.c:606 executor/execReplication.c:612 +#: executor/execReplication.c:611 executor/execReplication.c:617 #, c-format msgid "cannot update table \"%s\"" msgstr "テーブル\"%s\"の更新ができません" -#: executor/execReplication.c:608 executor/execReplication.c:620 +#: executor/execReplication.c:613 executor/execReplication.c:625 #, c-format msgid "Column used in the publication WHERE expression is not part of the replica identity." msgstr "このパブリケーションのWHERE式で使用されている列は識別列の一部ではありません。" -#: executor/execReplication.c:614 executor/execReplication.c:626 +#: executor/execReplication.c:619 executor/execReplication.c:631 #, c-format msgid "Column list used by the publication does not cover the replica identity." msgstr "このパブリケーションで使用されてる列リストは識別列を包含していません。" -#: executor/execReplication.c:618 executor/execReplication.c:624 +#: executor/execReplication.c:623 executor/execReplication.c:629 #, c-format msgid "cannot delete from table \"%s\"" msgstr "テーブル\"%s\"からの削除ができません" -#: executor/execReplication.c:644 +#: executor/execReplication.c:649 #, c-format msgid "cannot update table \"%s\" because it does not have a replica identity and publishes updates" msgstr "テーブル\"%s\"は複製識別を持たずかつ更新を発行しているため、更新できません" -#: executor/execReplication.c:646 +#: executor/execReplication.c:651 #, c-format msgid "To enable updating the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "テーブルの更新を可能にするには ALTER TABLE で REPLICA IDENTITY を設定してください。" -#: executor/execReplication.c:650 +#: executor/execReplication.c:655 #, c-format msgid "cannot delete from table \"%s\" because it does not have a replica identity and publishes deletes" msgstr "テーブル\"%s\"は複製識別がなくかつ削除を発行しているため、このテーブルでは行の削除ができません" -#: executor/execReplication.c:652 +#: executor/execReplication.c:657 #, c-format msgid "To enable deleting from the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "このテーブルでの行削除を可能にするには ALTER TABLE で REPLICA IDENTITY を設定してください。" -#: executor/execReplication.c:668 +#: executor/execReplication.c:673 #, c-format msgid "cannot use relation \"%s.%s\" as logical replication target" msgstr "リレーション\"%s.%s\"は論理レプリケーション先としては使用できません" @@ -12736,7 +12751,7 @@ msgid "%s is not allowed in an SQL function" msgstr "SQL関数では%sは使用不可です" #. translator: %s is a SQL statement name -#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2648 +#: executor/functions.c:528 executor/spi.c:1745 executor/spi.c:2656 #, c-format msgid "%s is not allowed in a non-volatile function" msgstr "volatile関数以外では%sは許可されません" @@ -12801,7 +12816,7 @@ msgstr "戻り値型%sはSQL関数でサポートされていません" msgid "aggregate %u needs to have compatible input type and transition type" msgstr "集約%uは入力データ型と遷移用の型間で互換性が必要です" -#: executor/nodeAgg.c:3952 parser/parse_agg.c:679 parser/parse_agg.c:707 +#: executor/nodeAgg.c:3952 parser/parse_agg.c:677 parser/parse_agg.c:705 #, c-format msgid "aggregate function calls cannot be nested" msgstr "集約関数の呼び出しを入れ子にすることはできません" @@ -12882,27 +12897,27 @@ msgid "Consider defining the foreign key on table \"%s\"." msgstr "テーブル\"%s\"上に外部キー制約を定義することを検討してください。" #. translator: %s is a SQL command name -#: executor/nodeModifyTable.c:2563 executor/nodeModifyTable.c:2986 executor/nodeModifyTable.c:3113 +#: executor/nodeModifyTable.c:2582 executor/nodeModifyTable.c:3021 executor/nodeModifyTable.c:3160 #, c-format msgid "%s command cannot affect row a second time" msgstr "%sコマンドは単一の行に2度は適用できません" -#: executor/nodeModifyTable.c:2565 +#: executor/nodeModifyTable.c:2584 #, c-format msgid "Ensure that no rows proposed for insertion within the same command have duplicate constrained values." msgstr "同じコマンドでの挿入候補の行が同じ制約値を持つことがないようにしてください" -#: executor/nodeModifyTable.c:2979 executor/nodeModifyTable.c:3106 +#: executor/nodeModifyTable.c:3014 executor/nodeModifyTable.c:3153 #, c-format msgid "tuple to be updated or deleted was already modified by an operation triggered by the current command" msgstr "更新または削除対象のタプルは、現在のコマンドによって発火した操作トリガーによってすでに更新されています" -#: executor/nodeModifyTable.c:2988 executor/nodeModifyTable.c:3115 +#: executor/nodeModifyTable.c:3023 executor/nodeModifyTable.c:3162 #, c-format msgid "Ensure that not more than one source row matches any one target row." msgstr "ソース行が2行以上ターゲット行に合致しないようにしてください。" -#: executor/nodeModifyTable.c:3070 +#: executor/nodeModifyTable.c:3112 #, c-format msgid "tuple to be deleted was already moved to another partition due to concurrent update" msgstr "削除対象のタプルは同時に行われた更新によってすでに他の子テーブルに移動されています" @@ -13007,49 +13022,49 @@ msgstr "\"SPI_finish\"呼出の抜けを確認ください" msgid "subtransaction left non-empty SPI stack" msgstr "サブトランザクションが空でないSPIスタックを残しました" -#: executor/spi.c:1600 +#: executor/spi.c:1603 #, c-format msgid "cannot open multi-query plan as cursor" msgstr "カーソルにマルチクエリの実行計画を開くことができません" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:1610 +#: executor/spi.c:1613 #, c-format msgid "cannot open %s query as cursor" msgstr "カーソルで%s問い合わせを開くことができません" -#: executor/spi.c:1716 +#: executor/spi.c:1719 #, c-format msgid "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE is not supported" msgstr "DECLARE SCROLL CURSOR ... FOR UPDATE/SHAREはサポートされていません" -#: executor/spi.c:1717 parser/analyze.c:2910 +#: executor/spi.c:1720 parser/analyze.c:2910 #, c-format msgid "Scrollable cursors must be READ ONLY." msgstr "スクロール可能カーソルは読み取り専用である必要があります。" -#: executor/spi.c:2487 +#: executor/spi.c:2495 #, c-format msgid "empty query does not return tuples" msgstr "空の問い合わせは結果を返却しません" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:2561 +#: executor/spi.c:2569 #, c-format msgid "%s query does not return tuples" msgstr "%s問い合わせがタプルを返しません" -#: executor/spi.c:2975 +#: executor/spi.c:2983 #, c-format msgid "SQL expression \"%s\"" msgstr "SQL関数\"%s\"" -#: executor/spi.c:2980 +#: executor/spi.c:2988 #, c-format msgid "PL/pgSQL assignment \"%s\"" msgstr "PL/pgSQL代入\"%s\"" -#: executor/spi.c:2983 +#: executor/spi.c:2991 #, c-format msgid "SQL statement \"%s\"" msgstr "SQL文 \"%s\"" @@ -13059,22 +13074,27 @@ msgstr "SQL文 \"%s\"" msgid "could not send tuple to shared-memory queue" msgstr "共有メモリキューにタプルを送出できませんでした" -#: foreign/foreign.c:221 +#: foreign/foreign.c:222 #, c-format msgid "user mapping not found for \"%s\"" msgstr "\"%s\"に対するユーザーマッピングが見つかりません" -#: foreign/foreign.c:638 +#: foreign/foreign.c:332 optimizer/plan/createplan.c:7123 optimizer/util/plancat.c:477 +#, c-format +msgid "access to non-system foreign table is restricted" +msgstr "非システムの外部テーブルへのアクセスは制限されています" + +#: foreign/foreign.c:648 #, c-format msgid "invalid option \"%s\"" msgstr "不正なオプション\"%s\"" -#: foreign/foreign.c:640 +#: foreign/foreign.c:650 #, c-format msgid "Valid options in this context are: %s" msgstr "この文脈で有効なオプション: %s" -#: foreign/foreign.c:642 +#: foreign/foreign.c:652 #, c-format msgid "There are no valid options in this context." msgstr "このコンテクストで有効なオプションはありません。" @@ -13154,7 +13174,7 @@ msgstr "STDIN/STDOUTはPROGRAMと同時に使用できません" msgid "WHERE clause not allowed with COPY TO" msgstr "COPY TO で WHERE 句は使用できません" -#: gram.y:3609 gram.y:3616 gram.y:12759 gram.y:12767 +#: gram.y:3609 gram.y:3616 gram.y:12766 gram.y:12774 #, c-format msgid "GLOBAL is deprecated in temporary table creation" msgstr "一時テーブル作成におけるGLOBALは廃止予定です" @@ -13174,303 +13194,303 @@ msgstr "MMATCH PARTIAL はまだ実装されていません" msgid "a column list with %s is only supported for ON DELETE actions" msgstr "%sが指定された列リストはON DELETEのアクションに対してのみサポートされます" -#: gram.y:4974 +#: gram.y:4981 #, c-format msgid "CREATE EXTENSION ... FROM is no longer supported" msgstr "CREATE EXTENSION ... FROM はすでにサポートされていません" -#: gram.y:5672 +#: gram.y:5679 #, c-format msgid "unrecognized row security option \"%s\"" msgstr "認識できない行セキュリティオプション \"%s\"" -#: gram.y:5673 +#: gram.y:5680 #, c-format msgid "Only PERMISSIVE or RESTRICTIVE policies are supported currently." msgstr "現時点ではPERMISSIVEもしくはRESTRICTIVEポリシのみがサポートされています" -#: gram.y:5758 +#: gram.y:5765 #, c-format msgid "CREATE OR REPLACE CONSTRAINT TRIGGER is not supported" msgstr "CREATE OR REPLACE CONSTRAINT TRIGGERはサポートされません" -#: gram.y:5795 +#: gram.y:5802 msgid "duplicate trigger events specified" msgstr "重複したトリガーイベントが指定されました" -#: gram.y:5937 parser/parse_utilcmd.c:3716 parser/parse_utilcmd.c:3742 +#: gram.y:5944 parser/parse_utilcmd.c:3744 parser/parse_utilcmd.c:3770 #, c-format msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" msgstr "INITIALLY DEFERREDと宣言された制約はDEFERRABLEでなければなりません" -#: gram.y:5944 +#: gram.y:5951 #, c-format msgid "conflicting constraint properties" msgstr "制約属性の競合" -#: gram.y:6043 +#: gram.y:6050 #, c-format msgid "CREATE ASSERTION is not yet implemented" msgstr "CREATE ASSERTIONはまだ実装されていません" -#: gram.y:6451 +#: gram.y:6458 #, c-format msgid "RECHECK is no longer required" msgstr "RECHECK はもはや必要とされません" -#: gram.y:6452 +#: gram.y:6459 #, c-format msgid "Update your data type." msgstr "データ型を更新してください" -#: gram.y:8308 +#: gram.y:8315 #, c-format msgid "aggregates cannot have output arguments" msgstr "集約は出力の引数を持つことができません" -#: gram.y:8771 utils/adt/regproc.c:710 utils/adt/regproc.c:751 +#: gram.y:8778 utils/adt/regproc.c:710 utils/adt/regproc.c:751 #, c-format msgid "missing argument" msgstr "引数が足りません" -#: gram.y:8772 utils/adt/regproc.c:711 utils/adt/regproc.c:752 +#: gram.y:8779 utils/adt/regproc.c:711 utils/adt/regproc.c:752 #, c-format msgid "Use NONE to denote the missing argument of a unary operator." msgstr "単項演算子の存在しない引数を表すにはNONEを使用してください。" -#: gram.y:10993 gram.y:11012 +#: gram.y:11000 gram.y:11019 #, c-format msgid "WITH CHECK OPTION not supported on recursive views" msgstr "WITH CHECK OPTIONは再帰ビューではサポートされていません" -#: gram.y:12898 +#: gram.y:12905 #, c-format msgid "LIMIT #,# syntax is not supported" msgstr "LIMIT #,#構文は実装されていません" -#: gram.y:12899 +#: gram.y:12906 #, c-format msgid "Use separate LIMIT and OFFSET clauses." msgstr "分割してLIMITとOFFSET句を使用してください" -#: gram.y:13252 gram.y:13278 +#: gram.y:13259 gram.y:13285 #, c-format msgid "VALUES in FROM must have an alias" msgstr "FROM句のVALUESには別名が必要です" -#: gram.y:13253 gram.y:13279 +#: gram.y:13260 gram.y:13286 #, c-format msgid "For example, FROM (VALUES ...) [AS] foo." msgstr "例えば、FROM (VALUES ...) [AS] foo。" -#: gram.y:13258 gram.y:13284 +#: gram.y:13265 gram.y:13291 #, c-format msgid "subquery in FROM must have an alias" msgstr "FROM句の副問い合わせには別名が必要です" -#: gram.y:13259 gram.y:13285 +#: gram.y:13266 gram.y:13292 #, c-format msgid "For example, FROM (SELECT ...) [AS] foo." msgstr "例えば、FROM (SELECT ...) [AS] foo。" -#: gram.y:13803 +#: gram.y:13810 #, c-format msgid "only one DEFAULT value is allowed" msgstr "DEFAULT値は一つだけ指定可能です" -#: gram.y:13812 +#: gram.y:13819 #, c-format msgid "only one PATH value per column is allowed" msgstr "列一つにつきPATH値は一つだけ指定可能です" -#: gram.y:13821 +#: gram.y:13828 #, c-format msgid "conflicting or redundant NULL / NOT NULL declarations for column \"%s\"" msgstr "列\"%s\"でNULL / NOT NULL宣言が衝突しているか重複しています" -#: gram.y:13830 +#: gram.y:13837 #, c-format msgid "unrecognized column option \"%s\"" msgstr "認識できない列オプション \"%s\"" -#: gram.y:14084 +#: gram.y:14091 #, c-format msgid "precision for type float must be at least 1 bit" msgstr "浮動小数点数の型の精度は最低でも1ビット必要です" -#: gram.y:14093 +#: gram.y:14100 #, c-format msgid "precision for type float must be less than 54 bits" msgstr "浮動小数点型の精度は54ビットより低くなければなりません" -#: gram.y:14596 +#: gram.y:14603 #, c-format msgid "wrong number of parameters on left side of OVERLAPS expression" msgstr "OVERLAPS式の左辺のパラメータ数が間違っています" -#: gram.y:14601 +#: gram.y:14608 #, c-format msgid "wrong number of parameters on right side of OVERLAPS expression" msgstr "OVERLAPS式の右辺のパラメータ数が間違っています" -#: gram.y:14778 +#: gram.y:14785 #, c-format msgid "UNIQUE predicate is not yet implemented" msgstr "UNIQUE 述部はまだ実装されていません" -#: gram.y:15156 +#: gram.y:15163 #, c-format msgid "cannot use multiple ORDER BY clauses with WITHIN GROUP" msgstr "複数のORDER BY句はWITHIN GROUPと一緒には使用できません" -#: gram.y:15161 +#: gram.y:15168 #, c-format msgid "cannot use DISTINCT with WITHIN GROUP" msgstr "DISTINCT は WITHIN GROUP と同時には使えません" -#: gram.y:15166 +#: gram.y:15173 #, c-format msgid "cannot use VARIADIC with WITHIN GROUP" msgstr "VARIADIC は WITHIN GROUP と同時には使えません" -#: gram.y:15703 gram.y:15727 +#: gram.y:15710 gram.y:15734 #, c-format msgid "frame start cannot be UNBOUNDED FOLLOWING" msgstr "フレームの開始は UNBOUNDED FOLLOWING であってはなりません" -#: gram.y:15708 +#: gram.y:15715 #, c-format msgid "frame starting from following row cannot end with current row" msgstr "次の行から始まるフレームは、現在行では終了できません" -#: gram.y:15732 +#: gram.y:15739 #, c-format msgid "frame end cannot be UNBOUNDED PRECEDING" msgstr "フレームの終了は UNBOUNDED PRECEDING であってはなりません" -#: gram.y:15738 +#: gram.y:15745 #, c-format msgid "frame starting from current row cannot have preceding rows" msgstr "現在行から始まるフレームは、先行する行を含むことができません" -#: gram.y:15745 +#: gram.y:15752 #, c-format msgid "frame starting from following row cannot have preceding rows" msgstr "次の行から始まるフレームは、先行する行を含むことができません" -#: gram.y:16370 +#: gram.y:16377 #, c-format msgid "type modifier cannot have parameter name" msgstr "型修正子はパラメータ名を持つことはできません" -#: gram.y:16376 +#: gram.y:16383 #, c-format msgid "type modifier cannot have ORDER BY" msgstr "型修正子はORDER BYを持つことはできません" -#: gram.y:16444 gram.y:16451 gram.y:16458 +#: gram.y:16451 gram.y:16458 gram.y:16465 #, c-format msgid "%s cannot be used as a role name here" msgstr "%sはここではロール名として使用できません" -#: gram.y:16548 gram.y:17983 +#: gram.y:16555 gram.y:17990 #, c-format msgid "WITH TIES cannot be specified without ORDER BY clause" msgstr "WITH TIESはORDER BY句なしでは指定できません" -#: gram.y:17662 gram.y:17849 +#: gram.y:17669 gram.y:17856 msgid "improper use of \"*\"" msgstr "\"*\"の使い方が不適切です" -#: gram.y:17812 gram.y:17829 tsearch/spell.c:983 tsearch/spell.c:1000 tsearch/spell.c:1017 tsearch/spell.c:1034 tsearch/spell.c:1099 +#: gram.y:17819 gram.y:17836 tsearch/spell.c:983 tsearch/spell.c:1000 tsearch/spell.c:1017 tsearch/spell.c:1034 tsearch/spell.c:1099 #, c-format msgid "syntax error" msgstr "構文エラー" -#: gram.y:17913 +#: gram.y:17920 #, c-format msgid "an ordered-set aggregate with a VARIADIC direct argument must have one VARIADIC aggregated argument of the same data type" msgstr "VARIADIC直接引数を使った順序集合集約は同じデータタイプのVARIADIC集約引数を一つ持つ必要があります" -#: gram.y:17950 +#: gram.y:17957 #, c-format msgid "multiple ORDER BY clauses not allowed" msgstr "複数のORDER BY句は使用できません" -#: gram.y:17961 +#: gram.y:17968 #, c-format msgid "multiple OFFSET clauses not allowed" msgstr "複数のOFFSET句は使用できません" -#: gram.y:17970 +#: gram.y:17977 #, c-format msgid "multiple LIMIT clauses not allowed" msgstr "複数のLIMIT句は使用できません" -#: gram.y:17979 +#: gram.y:17986 #, c-format msgid "multiple limit options not allowed" msgstr "複数のLIMITオプションは使用できません" -#: gram.y:18006 +#: gram.y:18013 #, c-format msgid "multiple WITH clauses not allowed" msgstr "複数の WITH 句は使用できません" -#: gram.y:18199 +#: gram.y:18206 #, c-format msgid "OUT and INOUT arguments aren't allowed in TABLE functions" msgstr "テーブル関数では OUT と INOUT 引数は使用できません" -#: gram.y:18332 +#: gram.y:18339 #, c-format msgid "multiple COLLATE clauses not allowed" msgstr "複数の COLLATE 句は使用できません" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18370 gram.y:18383 +#: gram.y:18377 gram.y:18390 #, c-format msgid "%s constraints cannot be marked DEFERRABLE" msgstr "%s制約は遅延可能にはできません" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18396 +#: gram.y:18403 #, c-format msgid "%s constraints cannot be marked NOT VALID" msgstr "%s制約をNOT VALIDとマークすることはできません" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18409 +#: gram.y:18416 #, c-format msgid "%s constraints cannot be marked NO INHERIT" msgstr "%s制約をNO INHERITをマークすることはできません" -#: gram.y:18433 +#: gram.y:18440 #, c-format msgid "invalid publication object list" msgstr "不正なパブリケーションオブジェクトリスト" -#: gram.y:18434 +#: gram.y:18441 #, c-format msgid "One of TABLE or TABLES IN SCHEMA must be specified before a standalone table or schema name." msgstr "テーブル名やスキーマ名を単独記述の前にTABLEまたはTABLES IN SCHEMAのいずれかを指定する必要があります。" -#: gram.y:18450 +#: gram.y:18457 #, c-format msgid "invalid table name" msgstr "不正なテーブル名" -#: gram.y:18471 +#: gram.y:18478 #, c-format msgid "WHERE clause not allowed for schema" msgstr "WHERE句はスキーマに対しては使用できません" -#: gram.y:18478 +#: gram.y:18485 #, c-format msgid "column specification not allowed for schema" msgstr "列指定はスキーマに対しては使用できません" -#: gram.y:18492 +#: gram.y:18499 #, c-format msgid "invalid schema name" msgstr "不正なスキーマ名" @@ -13480,7 +13500,7 @@ msgstr "不正なスキーマ名" msgid "unrecognized configuration parameter \"%s\" in file \"%s\" line %d" msgstr "ファイル\"%2$s\"行%3$dで認識できない設定パラメータ\"%1$s\"" -#: guc-file.l:354 utils/misc/guc.c:7691 utils/misc/guc.c:7915 utils/misc/guc.c:8013 utils/misc/guc.c:8111 utils/misc/guc.c:8235 utils/misc/guc.c:8338 +#: guc-file.l:354 utils/misc/guc.c:7709 utils/misc/guc.c:7933 utils/misc/guc.c:8031 utils/misc/guc.c:8129 utils/misc/guc.c:8253 utils/misc/guc.c:8356 #, c-format msgid "parameter \"%s\" cannot be changed without restarting the server" msgstr "パラメータ\"%s\"を変更するにはサーバーの再起動が必要です" @@ -14496,151 +14516,151 @@ msgstr "SSLプロトコルバージョンの範囲を設定できませんでし msgid "\"%s\" cannot be higher than \"%s\"" msgstr "\"%s\"は\"%s\"より大きくできません" -#: libpq/be-secure-openssl.c:282 +#: libpq/be-secure-openssl.c:293 #, c-format msgid "could not set the cipher list (no valid ciphers available)" msgstr "暗号方式リストがセットできません (利用可能な暗号方式がありません)" -#: libpq/be-secure-openssl.c:302 +#: libpq/be-secure-openssl.c:313 #, c-format msgid "could not load root certificate file \"%s\": %s" msgstr "ルート証明書ファイル\"%s\"をロードできませんでした: %s" -#: libpq/be-secure-openssl.c:351 +#: libpq/be-secure-openssl.c:362 #, c-format msgid "could not load SSL certificate revocation list file \"%s\": %s" msgstr "SSL証明失効リストファイル\"%s\"をロードできませんでした: %s" -#: libpq/be-secure-openssl.c:359 +#: libpq/be-secure-openssl.c:370 #, c-format msgid "could not load SSL certificate revocation list directory \"%s\": %s" msgstr "SSL証明失効リストディレクトリ\"%s\"をロードできませんでした: %s" -#: libpq/be-secure-openssl.c:367 +#: libpq/be-secure-openssl.c:378 #, c-format msgid "could not load SSL certificate revocation list file \"%s\" or directory \"%s\": %s" msgstr "SSL証明失効リストファイル\"%s\"またはディレクトリ\"%s\"をロードできませんでした: %s" -#: libpq/be-secure-openssl.c:425 +#: libpq/be-secure-openssl.c:436 #, c-format msgid "could not initialize SSL connection: SSL context not set up" msgstr "SSL接続を初期化できませんでした: SSLコンテクストが準備できていません" -#: libpq/be-secure-openssl.c:436 +#: libpq/be-secure-openssl.c:447 #, c-format msgid "could not initialize SSL connection: %s" msgstr "SSL接続を初期化できませんでした: %s" -#: libpq/be-secure-openssl.c:444 +#: libpq/be-secure-openssl.c:455 #, c-format msgid "could not set SSL socket: %s" msgstr "SSLソケットを設定できませんでした: %s" -#: libpq/be-secure-openssl.c:500 +#: libpq/be-secure-openssl.c:511 #, c-format msgid "could not accept SSL connection: %m" msgstr "SSL接続を受け付けられませんでした: %m" -#: libpq/be-secure-openssl.c:504 libpq/be-secure-openssl.c:557 +#: libpq/be-secure-openssl.c:515 libpq/be-secure-openssl.c:568 #, c-format msgid "could not accept SSL connection: EOF detected" msgstr "SSL接続を受け付けられませんでした: EOFを検出しました" -#: libpq/be-secure-openssl.c:543 +#: libpq/be-secure-openssl.c:554 #, c-format msgid "could not accept SSL connection: %s" msgstr "SSL接続を受け付けられませんでした: %s" -#: libpq/be-secure-openssl.c:546 +#: libpq/be-secure-openssl.c:557 #, c-format msgid "This may indicate that the client does not support any SSL protocol version between %s and %s." msgstr "このことは、クライアントがSSLプロトコルのバージョン%sから%sのいずれもサポートしていないことを示唆しているかもしれません。" -#: libpq/be-secure-openssl.c:562 libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:821 +#: libpq/be-secure-openssl.c:573 libpq/be-secure-openssl.c:762 libpq/be-secure-openssl.c:832 #, c-format msgid "unrecognized SSL error code: %d" msgstr "認識できないSSLエラーコード: %d" -#: libpq/be-secure-openssl.c:608 +#: libpq/be-secure-openssl.c:619 #, c-format msgid "SSL certificate's common name contains embedded null" msgstr "SSL 証明書のコモンネームに null が含まれています" -#: libpq/be-secure-openssl.c:654 +#: libpq/be-secure-openssl.c:665 #, c-format msgid "SSL certificate's distinguished name contains embedded null" msgstr "SSL証明書の識別名の途中にnullが含まれています" -#: libpq/be-secure-openssl.c:740 libpq/be-secure-openssl.c:805 +#: libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:816 #, c-format msgid "SSL error: %s" msgstr "SSLエラー: %s" -#: libpq/be-secure-openssl.c:982 +#: libpq/be-secure-openssl.c:993 #, c-format msgid "could not open DH parameters file \"%s\": %m" msgstr "DHパラメータファイル\"%s\"をオープンできませんでした: %m" -#: libpq/be-secure-openssl.c:994 +#: libpq/be-secure-openssl.c:1005 #, c-format msgid "could not load DH parameters file: %s" msgstr "DHパラメータをロードできませんでした: %s" -#: libpq/be-secure-openssl.c:1004 +#: libpq/be-secure-openssl.c:1015 #, c-format msgid "invalid DH parameters: %s" msgstr "不正なDHパラメータです: %s" -#: libpq/be-secure-openssl.c:1013 +#: libpq/be-secure-openssl.c:1024 #, c-format msgid "invalid DH parameters: p is not prime" msgstr "不正なDHパラメータ: pは素数ではありません" -#: libpq/be-secure-openssl.c:1022 +#: libpq/be-secure-openssl.c:1033 #, c-format msgid "invalid DH parameters: neither suitable generator or safe prime" msgstr "不正なDHパラメータ: 適切な生成器も安全な素数もありません" -#: libpq/be-secure-openssl.c:1183 +#: libpq/be-secure-openssl.c:1194 #, c-format msgid "DH: could not load DH parameters" msgstr "DH: DHパラメータをロードできませんでした" -#: libpq/be-secure-openssl.c:1191 +#: libpq/be-secure-openssl.c:1202 #, c-format msgid "DH: could not set DH parameters: %s" msgstr "DH: DHパラメータを設定できませんでした: %s" -#: libpq/be-secure-openssl.c:1218 +#: libpq/be-secure-openssl.c:1229 #, c-format msgid "ECDH: unrecognized curve name: %s" msgstr "ECDH: 認識できない曲線名: %s" -#: libpq/be-secure-openssl.c:1227 +#: libpq/be-secure-openssl.c:1238 #, c-format msgid "ECDH: could not create key" msgstr "ECDH: キーを生成できませんでした" -#: libpq/be-secure-openssl.c:1255 +#: libpq/be-secure-openssl.c:1266 msgid "no SSL error reported" msgstr "SSLエラーはありませんでした" -#: libpq/be-secure-openssl.c:1272 +#: libpq/be-secure-openssl.c:1284 #, c-format msgid "SSL error code %lu" msgstr "SSLエラーコード: %lu" -#: libpq/be-secure-openssl.c:1431 +#: libpq/be-secure-openssl.c:1443 #, c-format msgid "could not create BIO" msgstr "BIOを作成できませんでした" -#: libpq/be-secure-openssl.c:1441 +#: libpq/be-secure-openssl.c:1453 #, c-format msgid "could not get NID for ASN1_OBJECT object" msgstr "ASN1_OBJECTオブジェクトのNIDを取得できませんでした" -#: libpq/be-secure-openssl.c:1449 +#: libpq/be-secure-openssl.c:1461 #, c-format msgid "could not convert NID %d to an ASN1_OBJECT structure" msgstr "NID %dをASN1_OBJECT構造体へ変換できませんでした" @@ -15163,7 +15183,7 @@ msgstr "クライアント接続がありません" msgid "could not receive data from client: %m" msgstr "クライアントからデータを受信できませんでした: %m" -#: libpq/pqcomm.c:1179 tcop/postgres.c:4373 +#: libpq/pqcomm.c:1179 tcop/postgres.c:4461 #, c-format msgid "terminating connection because protocol synchronization was lost" msgstr "プロトコルの同期が失われたためコネクションを終了します" @@ -15547,7 +15567,7 @@ msgstr "パラメータを持つ無名ポータル: %s" msgid "FULL JOIN is only supported with merge-joinable or hash-joinable join conditions" msgstr "FULL JOIN はマージ結合可能もしくはハッシュ結合可能な場合のみサポートされています" -#: optimizer/plan/createplan.c:7101 parser/parse_merge.c:187 parser/parse_merge.c:194 +#: optimizer/plan/createplan.c:7102 parser/parse_merge.c:187 parser/parse_merge.c:194 #, c-format msgid "cannot execute MERGE on relation \"%s\"" msgstr "リレーション\"%s\"に対してMERGEは実行できません" @@ -15564,37 +15584,37 @@ msgstr "外部結合のNULL可な側では%sを適用できません" msgid "%s is not allowed with UNION/INTERSECT/EXCEPT" msgstr "UNION/INTERSECT/EXCEPTでは%sを使用できません" -#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3702 +#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3703 #, c-format msgid "could not implement GROUP BY" msgstr "GROUP BY を実行できませんでした" -#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3703 optimizer/plan/planner.c:4346 optimizer/prep/prepunion.c:1046 +#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3704 optimizer/plan/planner.c:4347 optimizer/prep/prepunion.c:1046 #, c-format msgid "Some of the datatypes only support hashing, while others only support sorting." msgstr "一部のデータ型がハッシュのみをサポートする一方で、別の型はソートのみをサポートしています。" -#: optimizer/plan/planner.c:4345 +#: optimizer/plan/planner.c:4346 #, c-format msgid "could not implement DISTINCT" msgstr "DISTINCTを実行できませんでした" -#: optimizer/plan/planner.c:5466 +#: optimizer/plan/planner.c:5467 #, c-format msgid "could not implement window PARTITION BY" msgstr "ウィンドウの PARTITION BY を実行できませんでした" -#: optimizer/plan/planner.c:5467 +#: optimizer/plan/planner.c:5468 #, c-format msgid "Window partitioning columns must be of sortable datatypes." msgstr "ウィンドウ分割に使用する列は、ソート可能なデータ型でなければなりません。" -#: optimizer/plan/planner.c:5471 +#: optimizer/plan/planner.c:5472 #, c-format msgid "could not implement window ORDER BY" msgstr "ウィンドウの ORDER BY を実行できませんでした" -#: optimizer/plan/planner.c:5472 +#: optimizer/plan/planner.c:5473 #, c-format msgid "Window ordering columns must be of sortable datatypes." msgstr "ウィンドウの順序付けをする列は、ソート可能なデータ型でなければなりません。" @@ -15620,32 +15640,32 @@ msgstr "%sを実行できませんでした" msgid "SQL function \"%s\" during inlining" msgstr "SQL関数\"%s\"のインライン化処理中" -#: optimizer/util/plancat.c:142 +#: optimizer/util/plancat.c:143 #, c-format msgid "cannot open relation \"%s\"" msgstr "リレーション\"%s\"はオープンできません" -#: optimizer/util/plancat.c:151 +#: optimizer/util/plancat.c:152 #, c-format msgid "cannot access temporary or unlogged relations during recovery" msgstr "リカバリ中は一時テーブルやUNLOGGEDテーブルにはアクセスできません" -#: optimizer/util/plancat.c:693 +#: optimizer/util/plancat.c:705 #, c-format msgid "whole row unique index inference specifications are not supported" msgstr "行全体に渡るユニークインデックスの推定指定はサポートされていません" -#: optimizer/util/plancat.c:710 +#: optimizer/util/plancat.c:722 #, c-format msgid "constraint in ON CONFLICT clause has no associated index" msgstr "ON CONFLICT句中の制約には関連付けられるインデックスがありません" -#: optimizer/util/plancat.c:760 +#: optimizer/util/plancat.c:772 #, c-format msgid "ON CONFLICT DO UPDATE not supported with exclusion constraints" msgstr "ON CONFLICT DO UPDATEでの排除制約の使用はサポートされていません" -#: optimizer/util/plancat.c:870 +#: optimizer/util/plancat.c:882 #, c-format msgid "there is no unique or exclusion constraint matching the ON CONFLICT specification" msgstr "ON CONFLICT 指定に合致するユニーク制約または排除制約がありません" @@ -15887,307 +15907,307 @@ msgstr "JOIN条件で集約関数を使用できません" msgid "grouping operations are not allowed in JOIN conditions" msgstr "グルーピング演算はJOIN条件の中では使用できません" -#: parser/parse_agg.c:385 +#: parser/parse_agg.c:383 msgid "aggregate functions are not allowed in FROM clause of their own query level" msgstr "集約関数は自身の問い合わせレベルのFROM句の中では使用できません" -#: parser/parse_agg.c:387 +#: parser/parse_agg.c:385 msgid "grouping operations are not allowed in FROM clause of their own query level" msgstr "グルーピング演算は自身のクエリレベルのFROM句の中では使用できません" -#: parser/parse_agg.c:392 +#: parser/parse_agg.c:390 msgid "aggregate functions are not allowed in functions in FROM" msgstr "集約関数はFROM句内の関数では使用できません" -#: parser/parse_agg.c:394 +#: parser/parse_agg.c:392 msgid "grouping operations are not allowed in functions in FROM" msgstr "グルーピング演算はFROM句内の関数では使用できません" -#: parser/parse_agg.c:402 +#: parser/parse_agg.c:400 msgid "aggregate functions are not allowed in policy expressions" msgstr "集約関数はポリシ式では使用できません" -#: parser/parse_agg.c:404 +#: parser/parse_agg.c:402 msgid "grouping operations are not allowed in policy expressions" msgstr "グルーピング演算はポリシ式では使用できません" -#: parser/parse_agg.c:421 +#: parser/parse_agg.c:419 msgid "aggregate functions are not allowed in window RANGE" msgstr "集約関数はウィンドウRANGEの中では集約関数を使用できません" -#: parser/parse_agg.c:423 +#: parser/parse_agg.c:421 msgid "grouping operations are not allowed in window RANGE" msgstr "ウィンドウ定義のRANGE句の中ではグルーピング演算は使用できません" -#: parser/parse_agg.c:428 +#: parser/parse_agg.c:426 msgid "aggregate functions are not allowed in window ROWS" msgstr "ウィンドウ定義のROWS句では集約関数は使用できません" -#: parser/parse_agg.c:430 +#: parser/parse_agg.c:428 msgid "grouping operations are not allowed in window ROWS" msgstr "ウィンドウ定義のROWS句ではグルーピング演算は使用できません" -#: parser/parse_agg.c:435 +#: parser/parse_agg.c:433 msgid "aggregate functions are not allowed in window GROUPS" msgstr "ウィンドウ定義のGROUPS句では集約関数は使用できません" -#: parser/parse_agg.c:437 +#: parser/parse_agg.c:435 msgid "grouping operations are not allowed in window GROUPS" msgstr "ウィンドウ定義のGROUPS句ではグルーピング演算は使用できません" -#: parser/parse_agg.c:450 +#: parser/parse_agg.c:448 msgid "aggregate functions are not allowed in MERGE WHEN conditions" msgstr "MERGE WHEN条件では集約関数を使用できません" -#: parser/parse_agg.c:452 +#: parser/parse_agg.c:450 msgid "grouping operations are not allowed in MERGE WHEN conditions" msgstr "MERGE WHEN条件ではグルーピング演算を使用できません" -#: parser/parse_agg.c:478 +#: parser/parse_agg.c:476 msgid "aggregate functions are not allowed in check constraints" msgstr "検査制約では集約関数を使用できません" -#: parser/parse_agg.c:480 +#: parser/parse_agg.c:478 msgid "grouping operations are not allowed in check constraints" msgstr "検査制約ではグルーピング演算を使用できません" -#: parser/parse_agg.c:487 +#: parser/parse_agg.c:485 msgid "aggregate functions are not allowed in DEFAULT expressions" msgstr "DEFAULT式では集約関数を使用できません" -#: parser/parse_agg.c:489 +#: parser/parse_agg.c:487 msgid "grouping operations are not allowed in DEFAULT expressions" msgstr "DEFAULT式ではグルーピング演算を使用できません" -#: parser/parse_agg.c:494 +#: parser/parse_agg.c:492 msgid "aggregate functions are not allowed in index expressions" msgstr "インデックス式では集約関数を使用できません" -#: parser/parse_agg.c:496 +#: parser/parse_agg.c:494 msgid "grouping operations are not allowed in index expressions" msgstr "インデックス式ではグルーピング演算を使用できません" -#: parser/parse_agg.c:501 +#: parser/parse_agg.c:499 msgid "aggregate functions are not allowed in index predicates" msgstr "インデックス述語では集約関数を使用できません" -#: parser/parse_agg.c:503 +#: parser/parse_agg.c:501 msgid "grouping operations are not allowed in index predicates" msgstr "インデックス述語ではグルーピング演算を使用できません" -#: parser/parse_agg.c:508 +#: parser/parse_agg.c:506 msgid "aggregate functions are not allowed in statistics expressions" msgstr "統計情報式では集約関数を使用できません" -#: parser/parse_agg.c:510 +#: parser/parse_agg.c:508 msgid "grouping operations are not allowed in statistics expressions" msgstr "統計情報式ではグルーピング演算使用できません" -#: parser/parse_agg.c:515 +#: parser/parse_agg.c:513 msgid "aggregate functions are not allowed in transform expressions" msgstr "変換式では集約関数を使用できません" -#: parser/parse_agg.c:517 +#: parser/parse_agg.c:515 msgid "grouping operations are not allowed in transform expressions" msgstr "変換式ではグルーピング演算を使用できません" -#: parser/parse_agg.c:522 +#: parser/parse_agg.c:520 msgid "aggregate functions are not allowed in EXECUTE parameters" msgstr "EXECUTEのパラメータでは集約関数を使用できません" -#: parser/parse_agg.c:524 +#: parser/parse_agg.c:522 msgid "grouping operations are not allowed in EXECUTE parameters" msgstr "EXECUTEのパラメータではグルーピング演算を使用できません" -#: parser/parse_agg.c:529 +#: parser/parse_agg.c:527 msgid "aggregate functions are not allowed in trigger WHEN conditions" msgstr "トリガのWHEN条件では集約関数を使用できません" -#: parser/parse_agg.c:531 +#: parser/parse_agg.c:529 msgid "grouping operations are not allowed in trigger WHEN conditions" msgstr "トリガのWHEN条件ではグルーピング演算を使用できません" -#: parser/parse_agg.c:536 +#: parser/parse_agg.c:534 msgid "aggregate functions are not allowed in partition bound" msgstr "集約関数はパーティション境界では使用できません" -#: parser/parse_agg.c:538 +#: parser/parse_agg.c:536 msgid "grouping operations are not allowed in partition bound" msgstr "グルーピング演算はパーティション境界では使用できません" -#: parser/parse_agg.c:543 +#: parser/parse_agg.c:541 msgid "aggregate functions are not allowed in partition key expressions" msgstr "パーティションキー式では集約関数は使用できません" -#: parser/parse_agg.c:545 +#: parser/parse_agg.c:543 msgid "grouping operations are not allowed in partition key expressions" msgstr "パーティションキー式ではグルーピング演算は使用できません" -#: parser/parse_agg.c:551 +#: parser/parse_agg.c:549 msgid "aggregate functions are not allowed in column generation expressions" msgstr "集約関数はカラム生成式では使用できません" -#: parser/parse_agg.c:553 +#: parser/parse_agg.c:551 msgid "grouping operations are not allowed in column generation expressions" msgstr "グルーピング演算はカラム生成式では使用できません" -#: parser/parse_agg.c:559 +#: parser/parse_agg.c:557 msgid "aggregate functions are not allowed in CALL arguments" msgstr "CALLの引数では集約関数を使用できません" -#: parser/parse_agg.c:561 +#: parser/parse_agg.c:559 msgid "grouping operations are not allowed in CALL arguments" msgstr "CALLの引数ではグルーピング演算を使用できません" -#: parser/parse_agg.c:567 +#: parser/parse_agg.c:565 msgid "aggregate functions are not allowed in COPY FROM WHERE conditions" msgstr "集約関数は COPY FROM の WHERE 条件では使用できません" -#: parser/parse_agg.c:569 +#: parser/parse_agg.c:567 msgid "grouping operations are not allowed in COPY FROM WHERE conditions" msgstr "グルーピング演算は COPY FROM の WHERE 条件の中では使用できません" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:596 parser/parse_clause.c:1836 +#: parser/parse_agg.c:594 parser/parse_clause.c:1836 #, c-format msgid "aggregate functions are not allowed in %s" msgstr "%sでは集約関数を使用できません" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:599 +#: parser/parse_agg.c:597 #, c-format msgid "grouping operations are not allowed in %s" msgstr "%sではグルーピング演算を使用できません" -#: parser/parse_agg.c:700 +#: parser/parse_agg.c:698 #, c-format msgid "outer-level aggregate cannot contain a lower-level variable in its direct arguments" msgstr "アウタレベルの集約は直接引数に低位の変数を含むことができません" -#: parser/parse_agg.c:778 +#: parser/parse_agg.c:776 #, c-format msgid "aggregate function calls cannot contain set-returning function calls" msgstr "集合返却関数の呼び出しに集約関数の呼び出しを含むことはできません" -#: parser/parse_agg.c:779 parser/parse_expr.c:1674 parser/parse_expr.c:2156 parser/parse_func.c:883 +#: parser/parse_agg.c:777 parser/parse_expr.c:1674 parser/parse_expr.c:2156 parser/parse_func.c:883 #, c-format msgid "You might be able to move the set-returning function into a LATERAL FROM item." msgstr "この集合返却関数をLATERAL FROM項目に移動できるかもしれません。" -#: parser/parse_agg.c:784 +#: parser/parse_agg.c:782 #, c-format msgid "aggregate function calls cannot contain window function calls" msgstr "集約関数の呼び出しにウィンドウ関数の呼び出しを含むことはできません" -#: parser/parse_agg.c:863 +#: parser/parse_agg.c:861 msgid "window functions are not allowed in JOIN conditions" msgstr "JOIN条件ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:870 +#: parser/parse_agg.c:868 msgid "window functions are not allowed in functions in FROM" msgstr "FROM句内の関数ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:876 +#: parser/parse_agg.c:874 msgid "window functions are not allowed in policy expressions" msgstr "ポリシ式ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:889 +#: parser/parse_agg.c:887 msgid "window functions are not allowed in window definitions" msgstr "ウィンドウ定義ではウィンドウ関数は使用できません" -#: parser/parse_agg.c:900 +#: parser/parse_agg.c:898 msgid "window functions are not allowed in MERGE WHEN conditions" msgstr "MERGE WHEN条件ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:924 +#: parser/parse_agg.c:922 msgid "window functions are not allowed in check constraints" msgstr "検査制約の中ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:928 +#: parser/parse_agg.c:926 msgid "window functions are not allowed in DEFAULT expressions" msgstr "DEFAULT式の中ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:931 +#: parser/parse_agg.c:929 msgid "window functions are not allowed in index expressions" msgstr "インデックス式ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:934 +#: parser/parse_agg.c:932 msgid "window functions are not allowed in statistics expressions" msgstr "統計情報式ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:937 +#: parser/parse_agg.c:935 msgid "window functions are not allowed in index predicates" msgstr "インデックス述語ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:940 +#: parser/parse_agg.c:938 msgid "window functions are not allowed in transform expressions" msgstr "変換式ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:943 +#: parser/parse_agg.c:941 msgid "window functions are not allowed in EXECUTE parameters" msgstr "EXECUTEパラメータではウィンドウ関数を使用できません" -#: parser/parse_agg.c:946 +#: parser/parse_agg.c:944 msgid "window functions are not allowed in trigger WHEN conditions" msgstr "トリガのWHEN条件ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:949 +#: parser/parse_agg.c:947 msgid "window functions are not allowed in partition bound" msgstr "ウィンドウ関数はパーティション境界では使用できません" -#: parser/parse_agg.c:952 +#: parser/parse_agg.c:950 msgid "window functions are not allowed in partition key expressions" msgstr "パーティションキー式ではウィンドウ関数は使用できません" -#: parser/parse_agg.c:955 +#: parser/parse_agg.c:953 msgid "window functions are not allowed in CALL arguments" msgstr "CALLの引数ではウィンドウ関数は使用できません" -#: parser/parse_agg.c:958 +#: parser/parse_agg.c:956 msgid "window functions are not allowed in COPY FROM WHERE conditions" msgstr "ウィンドウ関数は COPY FROM の WHERE 条件では使用できません" -#: parser/parse_agg.c:961 +#: parser/parse_agg.c:959 msgid "window functions are not allowed in column generation expressions" msgstr "ウィンドウ関数はカラム生成式では使用できません" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:984 parser/parse_clause.c:1845 +#: parser/parse_agg.c:982 parser/parse_clause.c:1845 #, c-format msgid "window functions are not allowed in %s" msgstr "%sの中ではウィンドウ関数を使用できません" -#: parser/parse_agg.c:1018 parser/parse_clause.c:2678 +#: parser/parse_agg.c:1016 parser/parse_clause.c:2678 #, c-format msgid "window \"%s\" does not exist" msgstr "ウィンドウ\"%s\"は存在しません" -#: parser/parse_agg.c:1102 +#: parser/parse_agg.c:1100 #, c-format msgid "too many grouping sets present (maximum 4096)" msgstr "グルーピングセットの数が多すぎます (最大4096)" -#: parser/parse_agg.c:1242 +#: parser/parse_agg.c:1240 #, c-format msgid "aggregate functions are not allowed in a recursive query's recursive term" msgstr "再帰問い合わせの再帰項では集約関数を使用できません" -#: parser/parse_agg.c:1435 +#: parser/parse_agg.c:1433 #, c-format msgid "column \"%s.%s\" must appear in the GROUP BY clause or be used in an aggregate function" msgstr "列\"%s.%s\"はGROUP BY句で指定するか、集約関数内で使用しなければなりません" -#: parser/parse_agg.c:1438 +#: parser/parse_agg.c:1436 #, c-format msgid "Direct arguments of an ordered-set aggregate must use only grouped columns." msgstr "順序集合集約の直接引数はグルーピングされた列のみを使用しなければなりません。" -#: parser/parse_agg.c:1443 +#: parser/parse_agg.c:1441 #, c-format msgid "subquery uses ungrouped column \"%s.%s\" from outer query" msgstr "外部問い合わせから副問い合わせがグループ化されていない列\"%s.%s\"を使用しています" -#: parser/parse_agg.c:1607 +#: parser/parse_agg.c:1605 #, c-format msgid "arguments to GROUPING must be grouping expressions of the associated query level" msgstr "GROUPINGの引数は関連するクエリレベルのグルーピング式でなければなりません" @@ -17450,7 +17470,7 @@ msgstr "演算子 ANY/ALL (配列) 集合を返してはなりません" msgid "inconsistent types deduced for parameter $%d" msgstr "パラメータ$%dについて推定された型が不整合です" -#: parser/parse_param.c:313 tcop/postgres.c:709 +#: parser/parse_param.c:313 tcop/postgres.c:713 #, c-format msgid "could not determine data type of parameter $%d" msgstr "パラメータ$%dのデータ型が特定できませんでした" @@ -17685,322 +17705,327 @@ msgstr "不正な型名\"%s\"" msgid "cannot create partitioned table as inheritance child" msgstr "パーティション親テーブルを継承の子テーブルとして作成はできません" -#: parser/parse_utilcmd.c:583 +#: parser/parse_utilcmd.c:475 +#, c-format +msgid "cannot set logged status of a temporary sequence" +msgstr "一時シーケンスのログ出力状態は設定できません" + +#: parser/parse_utilcmd.c:611 #, c-format msgid "array of serial is not implemented" msgstr "連番(SERIAL)の配列は実装されていません" -#: parser/parse_utilcmd.c:662 parser/parse_utilcmd.c:674 parser/parse_utilcmd.c:733 +#: parser/parse_utilcmd.c:690 parser/parse_utilcmd.c:702 parser/parse_utilcmd.c:761 #, c-format msgid "conflicting NULL/NOT NULL declarations for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"でNULL宣言とNOT NULL宣言が競合しています" -#: parser/parse_utilcmd.c:686 +#: parser/parse_utilcmd.c:714 #, c-format msgid "multiple default values specified for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"で複数のデフォルト値の指定があります" -#: parser/parse_utilcmd.c:703 +#: parser/parse_utilcmd.c:731 #, c-format msgid "identity columns are not supported on typed tables" msgstr "型付けされたテーブルでは識別列はサポートされていません" -#: parser/parse_utilcmd.c:707 +#: parser/parse_utilcmd.c:735 #, c-format msgid "identity columns are not supported on partitions" msgstr "パーティションでは識別列はサポートされていません" -#: parser/parse_utilcmd.c:716 +#: parser/parse_utilcmd.c:744 #, c-format msgid "multiple identity specifications for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"に複数の識別指定があります" -#: parser/parse_utilcmd.c:746 +#: parser/parse_utilcmd.c:774 #, c-format msgid "generated columns are not supported on typed tables" msgstr "型付けされたテーブルでは生成カラムはサポートされていません" -#: parser/parse_utilcmd.c:750 +#: parser/parse_utilcmd.c:778 #, c-format msgid "generated columns are not supported on partitions" msgstr "パーティションでは生成カラムはサポートされていません" -#: parser/parse_utilcmd.c:755 +#: parser/parse_utilcmd.c:783 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"に複数のGENERATED句の指定があります" -#: parser/parse_utilcmd.c:773 parser/parse_utilcmd.c:888 +#: parser/parse_utilcmd.c:801 parser/parse_utilcmd.c:916 #, c-format msgid "primary key constraints are not supported on foreign tables" msgstr "外部テーブルでは主キー制約はサポートされていません" -#: parser/parse_utilcmd.c:782 parser/parse_utilcmd.c:898 +#: parser/parse_utilcmd.c:810 parser/parse_utilcmd.c:926 #, c-format msgid "unique constraints are not supported on foreign tables" msgstr "外部テーブルではユニーク制約はサポートされていません" -#: parser/parse_utilcmd.c:827 +#: parser/parse_utilcmd.c:855 #, c-format msgid "both default and identity specified for column \"%s\" of table \"%s\"" msgstr "デフォルト値と識別指定の両方がテーブル\"%2$s\"の列\"%1$s\"に指定されています" -#: parser/parse_utilcmd.c:835 +#: parser/parse_utilcmd.c:863 #, c-format msgid "both default and generation expression specified for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"にデフォルト値と生成式の両方が指定されています" -#: parser/parse_utilcmd.c:843 +#: parser/parse_utilcmd.c:871 #, c-format msgid "both identity and generation expression specified for column \"%s\" of table \"%s\"" msgstr "テーブル\"%2$s\"の列\"%1$s\"に識別指定と生成式の両方が指定されています" -#: parser/parse_utilcmd.c:908 +#: parser/parse_utilcmd.c:936 #, c-format msgid "exclusion constraints are not supported on foreign tables" msgstr "外部テーブルでは除外制約はサポートされていません" -#: parser/parse_utilcmd.c:914 +#: parser/parse_utilcmd.c:942 #, c-format msgid "exclusion constraints are not supported on partitioned tables" msgstr "パーティションテーブルでは除外制約はサポートされていません" -#: parser/parse_utilcmd.c:979 +#: parser/parse_utilcmd.c:1007 #, c-format msgid "LIKE is not supported for creating foreign tables" msgstr "外部テーブルの作成においてLIKEはサポートされていません" -#: parser/parse_utilcmd.c:992 +#: parser/parse_utilcmd.c:1020 #, c-format msgid "relation \"%s\" is invalid in LIKE clause" msgstr "LIKE句ではリレーション\"%s\"は不正です" -#: parser/parse_utilcmd.c:1760 parser/parse_utilcmd.c:1868 +#: parser/parse_utilcmd.c:1788 parser/parse_utilcmd.c:1896 #, c-format msgid "Index \"%s\" contains a whole-row table reference." msgstr "インデックス\"%s\"には行全体テーブル参照が含まれます" -#: parser/parse_utilcmd.c:2268 +#: parser/parse_utilcmd.c:2296 #, c-format msgid "cannot use an existing index in CREATE TABLE" msgstr "CREATE TABLE では既存のインデックスを使えません" -#: parser/parse_utilcmd.c:2288 +#: parser/parse_utilcmd.c:2316 #, c-format msgid "index \"%s\" is already associated with a constraint" msgstr "インデックス\"%s\"はすでに1つの制約に割り当てられています" -#: parser/parse_utilcmd.c:2309 +#: parser/parse_utilcmd.c:2337 #, c-format msgid "\"%s\" is not a unique index" msgstr "\"%s\"はユニークインデックスではありません" -#: parser/parse_utilcmd.c:2310 parser/parse_utilcmd.c:2317 parser/parse_utilcmd.c:2324 parser/parse_utilcmd.c:2401 +#: parser/parse_utilcmd.c:2338 parser/parse_utilcmd.c:2345 parser/parse_utilcmd.c:2352 parser/parse_utilcmd.c:2429 #, c-format msgid "Cannot create a primary key or unique constraint using such an index." msgstr "このようなインデックスを使ってプライマリキーや一意性制約を作成することはできません" -#: parser/parse_utilcmd.c:2316 +#: parser/parse_utilcmd.c:2344 #, c-format msgid "index \"%s\" contains expressions" msgstr "インデックス\"%s\"は式を含んでいます" -#: parser/parse_utilcmd.c:2323 +#: parser/parse_utilcmd.c:2351 #, c-format msgid "\"%s\" is a partial index" msgstr "\"%s\"は部分インデックスです" -#: parser/parse_utilcmd.c:2335 +#: parser/parse_utilcmd.c:2363 #, c-format msgid "\"%s\" is a deferrable index" msgstr "\"%s\"は遅延可能インデックスです" -#: parser/parse_utilcmd.c:2336 +#: parser/parse_utilcmd.c:2364 #, c-format msgid "Cannot create a non-deferrable constraint using a deferrable index." msgstr "遅延可能インデックスを使った遅延不可制約は作れません。" -#: parser/parse_utilcmd.c:2400 +#: parser/parse_utilcmd.c:2428 #, c-format msgid "index \"%s\" column number %d does not have default sorting behavior" msgstr "インデックス\"%s\"の列番号%dにはデフォルトのソート動作がありません" -#: parser/parse_utilcmd.c:2557 +#: parser/parse_utilcmd.c:2585 #, c-format msgid "column \"%s\" appears twice in primary key constraint" msgstr "列\"%s\"がプライマリキー制約内に2回出現します" -#: parser/parse_utilcmd.c:2563 +#: parser/parse_utilcmd.c:2591 #, c-format msgid "column \"%s\" appears twice in unique constraint" msgstr "列\"%s\"が一意性制約内に2回出現します" -#: parser/parse_utilcmd.c:2897 +#: parser/parse_utilcmd.c:2925 #, c-format msgid "index expressions and predicates can refer only to the table being indexed" msgstr "インデックス式と述語はインデックス付けされるテーブルのみを参照できます" -#: parser/parse_utilcmd.c:2969 +#: parser/parse_utilcmd.c:2997 #, c-format msgid "statistics expressions can refer only to the table being referenced" msgstr "統計情報式は参照されているテーブルのみを参照できます" -#: parser/parse_utilcmd.c:3012 +#: parser/parse_utilcmd.c:3040 #, c-format msgid "rules on materialized views are not supported" msgstr "実体化ビューに対するルールはサポートされません" -#: parser/parse_utilcmd.c:3075 +#: parser/parse_utilcmd.c:3103 #, c-format msgid "rule WHERE condition cannot contain references to other relations" msgstr "ルールのWHERE条件に他のリレーションへの参照を持たせられません" -#: parser/parse_utilcmd.c:3148 +#: parser/parse_utilcmd.c:3176 #, c-format msgid "rules with WHERE conditions can only have SELECT, INSERT, UPDATE, or DELETE actions" msgstr "ルールのWHERE条件はSELECT、INSERT、UPDATE、DELETE動作のみを持つことができます" -#: parser/parse_utilcmd.c:3166 parser/parse_utilcmd.c:3267 rewrite/rewriteHandler.c:532 rewrite/rewriteManip.c:1021 +#: parser/parse_utilcmd.c:3194 parser/parse_utilcmd.c:3295 rewrite/rewriteHandler.c:533 rewrite/rewriteManip.c:1021 #, c-format msgid "conditional UNION/INTERSECT/EXCEPT statements are not implemented" msgstr "条件付きのUNION/INTERSECT/EXCEPT文は実装されていません" -#: parser/parse_utilcmd.c:3184 +#: parser/parse_utilcmd.c:3212 #, c-format msgid "ON SELECT rule cannot use OLD" msgstr "ON SELECTルールではOLDを使用できません" -#: parser/parse_utilcmd.c:3188 +#: parser/parse_utilcmd.c:3216 #, c-format msgid "ON SELECT rule cannot use NEW" msgstr "ON SELECTルールではNEWを使用できません" -#: parser/parse_utilcmd.c:3197 +#: parser/parse_utilcmd.c:3225 #, c-format msgid "ON INSERT rule cannot use OLD" msgstr "ON INSERTルールではOLDを使用できません" -#: parser/parse_utilcmd.c:3203 +#: parser/parse_utilcmd.c:3231 #, c-format msgid "ON DELETE rule cannot use NEW" msgstr "ON DELETEルールではNEWを使用できません" -#: parser/parse_utilcmd.c:3231 +#: parser/parse_utilcmd.c:3259 #, c-format msgid "cannot refer to OLD within WITH query" msgstr "WITH 問い合わせ内では OLD は参照できません" -#: parser/parse_utilcmd.c:3238 +#: parser/parse_utilcmd.c:3266 #, c-format msgid "cannot refer to NEW within WITH query" msgstr "WITH 問い合わせ内では NEW は参照できません" -#: parser/parse_utilcmd.c:3688 +#: parser/parse_utilcmd.c:3716 #, c-format msgid "misplaced DEFERRABLE clause" msgstr "DEFERRABLE句の場所が間違っています" -#: parser/parse_utilcmd.c:3693 parser/parse_utilcmd.c:3708 +#: parser/parse_utilcmd.c:3721 parser/parse_utilcmd.c:3736 #, c-format msgid "multiple DEFERRABLE/NOT DEFERRABLE clauses not allowed" msgstr "複数のDEFERRABLE/NOT DEFERRABLE句を使用できません" -#: parser/parse_utilcmd.c:3703 +#: parser/parse_utilcmd.c:3731 #, c-format msgid "misplaced NOT DEFERRABLE clause" msgstr "NOT DEFERRABLE句の場所が間違っています" -#: parser/parse_utilcmd.c:3724 +#: parser/parse_utilcmd.c:3752 #, c-format msgid "misplaced INITIALLY DEFERRED clause" msgstr "INITIALLY DEFERRED句の場所が間違っています<" -#: parser/parse_utilcmd.c:3729 parser/parse_utilcmd.c:3755 +#: parser/parse_utilcmd.c:3757 parser/parse_utilcmd.c:3783 #, c-format msgid "multiple INITIALLY IMMEDIATE/DEFERRED clauses not allowed" msgstr "複数のINITIALLY IMMEDIATE/DEFERRED句を使用できません" -#: parser/parse_utilcmd.c:3750 +#: parser/parse_utilcmd.c:3778 #, c-format msgid "misplaced INITIALLY IMMEDIATE clause" msgstr "INITIALLY IMMEDIATE句の場所が間違っています<" -#: parser/parse_utilcmd.c:3943 +#: parser/parse_utilcmd.c:3971 #, c-format msgid "CREATE specifies a schema (%s) different from the one being created (%s)" msgstr "CREATEで指定したスキーマ(%s)が作成先のスキーマ(%s)と異なります" -#: parser/parse_utilcmd.c:3978 +#: parser/parse_utilcmd.c:4006 #, c-format msgid "\"%s\" is not a partitioned table" msgstr "\"%s\"はパーティションテーブルではありません" -#: parser/parse_utilcmd.c:3985 +#: parser/parse_utilcmd.c:4013 #, c-format msgid "table \"%s\" is not partitioned" msgstr "テーブル\"%s\"はパーティションされていません" -#: parser/parse_utilcmd.c:3992 +#: parser/parse_utilcmd.c:4020 #, c-format msgid "index \"%s\" is not partitioned" msgstr "インデックス\"%s\"はパーティションされていません" -#: parser/parse_utilcmd.c:4032 +#: parser/parse_utilcmd.c:4060 #, c-format msgid "a hash-partitioned table may not have a default partition" msgstr "ハッシュパーティションテーブルはデフォルトパーティションを持つことができません" -#: parser/parse_utilcmd.c:4049 +#: parser/parse_utilcmd.c:4077 #, c-format msgid "invalid bound specification for a hash partition" msgstr "ハッシュパーティションに対する不正な境界指定" -#: parser/parse_utilcmd.c:4055 partitioning/partbounds.c:4824 +#: parser/parse_utilcmd.c:4083 partitioning/partbounds.c:4824 #, c-format msgid "modulus for hash partition must be an integer value greater than zero" msgstr "ハッシュパーティションの法は0より大きい整数にする必要があります" -#: parser/parse_utilcmd.c:4062 partitioning/partbounds.c:4832 +#: parser/parse_utilcmd.c:4090 partitioning/partbounds.c:4832 #, c-format msgid "remainder for hash partition must be less than modulus" msgstr "ハッシュパーティションの剰余は法よりも小さくなければなりません" -#: parser/parse_utilcmd.c:4075 +#: parser/parse_utilcmd.c:4103 #, c-format msgid "invalid bound specification for a list partition" msgstr "リストパーティションに対する不正な境界指定" -#: parser/parse_utilcmd.c:4128 +#: parser/parse_utilcmd.c:4156 #, c-format msgid "invalid bound specification for a range partition" msgstr "範囲パーティションに対する不正な境界指定" -#: parser/parse_utilcmd.c:4134 +#: parser/parse_utilcmd.c:4162 #, c-format msgid "FROM must specify exactly one value per partitioning column" msgstr "FROMは全てのパーティション列ごとに一つの値を指定しなければなりません" -#: parser/parse_utilcmd.c:4138 +#: parser/parse_utilcmd.c:4166 #, c-format msgid "TO must specify exactly one value per partitioning column" msgstr "TOは全てのパーティション列ごとに一つの値を指定しなければなりません" -#: parser/parse_utilcmd.c:4252 +#: parser/parse_utilcmd.c:4280 #, c-format msgid "cannot specify NULL in range bound" msgstr "範囲境界でNULLは使用できません" -#: parser/parse_utilcmd.c:4301 +#: parser/parse_utilcmd.c:4329 #, c-format msgid "every bound following MAXVALUE must also be MAXVALUE" msgstr "MAXVALUEに続く境界値はMAXVALUEでなければなりません" -#: parser/parse_utilcmd.c:4308 +#: parser/parse_utilcmd.c:4336 #, c-format msgid "every bound following MINVALUE must also be MINVALUE" msgstr "MINVALUEに続く境界値はMINVALUEでなければなりません" -#: parser/parse_utilcmd.c:4351 +#: parser/parse_utilcmd.c:4379 #, c-format msgid "specified value cannot be cast to type %s for column \"%s\"" msgstr "指定した値は列\"%s\"の%s型に変換できません" @@ -18013,7 +18038,7 @@ msgstr "UESCAPE の後には単純な文字列リテラルが続かなければ msgid "invalid Unicode escape character" msgstr "不正なUnicodeエスケープ文字" -#: parser/parser.c:321 scan.l:1339 +#: parser/parser.c:321 scan.l:1338 #, c-format msgid "invalid Unicode escape value" msgstr "不正なUnicodeエスケープシーケンスの値" @@ -18388,7 +18413,7 @@ msgstr "バックグラウンドワーカー\"%s\": 不正な再起動間隔" msgid "background worker \"%s\": parallel workers may not be configured for restart" msgstr "バックグラウンドワーカー\"%s\": パラレルワーカーは再起動するように設定してはいけません" -#: postmaster/bgworker.c:730 tcop/postgres.c:3215 +#: postmaster/bgworker.c:730 tcop/postgres.c:3243 #, c-format msgid "terminating background worker \"%s\" due to administrator command" msgstr "管理者コマンドによりバックグラウンドワーカー\"%s\"を終了しています" @@ -18666,7 +18691,7 @@ msgstr "GSSAPI暗号化リクエストの後に非暗号化データを受信" msgid "unsupported frontend protocol %u.%u: server supports %u.0 to %u.%u" msgstr "フロントエンドプロトコル%u.%uをサポートしていません: サーバーは%u.0から %u.%uまでをサポートします" -#: postmaster/postmaster.c:2264 utils/misc/guc.c:7400 utils/misc/guc.c:7436 utils/misc/guc.c:7506 utils/misc/guc.c:8944 utils/misc/guc.c:11986 utils/misc/guc.c:12027 +#: postmaster/postmaster.c:2264 utils/misc/guc.c:7412 utils/misc/guc.c:7448 utils/misc/guc.c:7518 utils/misc/guc.c:8962 utils/misc/guc.c:12004 utils/misc/guc.c:12045 #, c-format msgid "invalid value for parameter \"%s\": \"%s\"" msgstr "パラメータ\"%s\"の値が不正です: \"%s\"" @@ -19537,27 +19562,27 @@ msgstr "論理レプリケーションのターゲットリレーション\"%s.% msgid "logical replication target relation \"%s.%s\" does not exist" msgstr "論理レプリケーション先のリレーション\"%s.%s\"は存在しません" -#: replication/logical/reorderbuffer.c:3841 +#: replication/logical/reorderbuffer.c:3846 #, c-format msgid "could not write to data file for XID %u: %m" msgstr "XID%uのためのデータファイルの書き出しに失敗しました: %m" -#: replication/logical/reorderbuffer.c:4187 replication/logical/reorderbuffer.c:4212 +#: replication/logical/reorderbuffer.c:4192 replication/logical/reorderbuffer.c:4217 #, c-format msgid "could not read from reorderbuffer spill file: %m" msgstr "並べ替えバッファのあふれファイルの読み込みに失敗しました: %m" -#: replication/logical/reorderbuffer.c:4191 replication/logical/reorderbuffer.c:4216 +#: replication/logical/reorderbuffer.c:4196 replication/logical/reorderbuffer.c:4221 #, c-format msgid "could not read from reorderbuffer spill file: read %d instead of %u bytes" msgstr "並べ替えバッファのあふれファイルの読み込みに失敗しました: %2$uバイトのはずが%1$dバイトでした" -#: replication/logical/reorderbuffer.c:4466 +#: replication/logical/reorderbuffer.c:4471 #, c-format msgid "could not remove file \"%s\" during removal of pg_replslot/%s/xid*: %m" msgstr "pg_replslot/%2$s/xid* の削除中にファイル\"%1$s\"が削除できませんでした: %3$m" -#: replication/logical/reorderbuffer.c:4965 +#: replication/logical/reorderbuffer.c:4970 #, c-format msgid "could not read from file \"%s\": read %d instead of %d bytes" msgstr "ファイル\"%1$s\"の読み込みに失敗しました: %3$dバイトのはずが%2$dバイトでした" @@ -20244,7 +20269,7 @@ msgstr "物理レプリケーション用のWAL送信プロセスでSQLコマン msgid "received replication command: %s" msgstr "レプリケーションコマンドを受信しました: %s" -#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1114 tcop/postgres.c:1472 tcop/postgres.c:1712 tcop/postgres.c:2181 tcop/postgres.c:2614 tcop/postgres.c:2692 +#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1118 tcop/postgres.c:1476 tcop/postgres.c:1728 tcop/postgres.c:2209 tcop/postgres.c:2642 tcop/postgres.c:2720 #, c-format msgid "current transaction is aborted, commands ignored until end of transaction block" msgstr "現在のトランザクションがアボートしました。トランザクションブロックが終わるまでコマンドは無視されます" @@ -20489,196 +20514,201 @@ msgstr "リレーション\"%2$s\"のルール\"%1$s\"は存在しません" msgid "renaming an ON SELECT rule is not allowed" msgstr "ON SELECTルールの名前を変更することはできません" -#: rewrite/rewriteHandler.c:576 +#: rewrite/rewriteHandler.c:577 #, c-format msgid "WITH query name \"%s\" appears in both a rule action and the query being rewritten" msgstr "WITH の問い合わせ名\"%s\"が、ルールのアクションと書き換えられようとしている問い合わせの両方に現れています" -#: rewrite/rewriteHandler.c:603 +#: rewrite/rewriteHandler.c:604 #, c-format msgid "INSERT...SELECT rule actions are not supported for queries having data-modifying statements in WITH" msgstr "INSERT...SELECTルールのアクションはWITHにデータ更新文を持つ問い合わせに対してはサポートされません" -#: rewrite/rewriteHandler.c:656 +#: rewrite/rewriteHandler.c:657 #, c-format msgid "cannot have RETURNING lists in multiple rules" msgstr "複数ルールではRETURNINGリストを持つことはできません" -#: rewrite/rewriteHandler.c:888 rewrite/rewriteHandler.c:927 +#: rewrite/rewriteHandler.c:889 rewrite/rewriteHandler.c:928 #, c-format msgid "cannot insert a non-DEFAULT value into column \"%s\"" msgstr "列\"%s\"への非デフォルト値の挿入はできません" -#: rewrite/rewriteHandler.c:890 rewrite/rewriteHandler.c:956 +#: rewrite/rewriteHandler.c:891 rewrite/rewriteHandler.c:957 #, c-format msgid "Column \"%s\" is an identity column defined as GENERATED ALWAYS." msgstr "列\"%s\"は GENERATED ALWAYS として定義されています。" -#: rewrite/rewriteHandler.c:892 +#: rewrite/rewriteHandler.c:893 #, c-format msgid "Use OVERRIDING SYSTEM VALUE to override." msgstr "OVERRIDING SYSTEM VALUE を指定することで挿入を強制できます。" -#: rewrite/rewriteHandler.c:954 rewrite/rewriteHandler.c:962 +#: rewrite/rewriteHandler.c:955 rewrite/rewriteHandler.c:963 #, c-format msgid "column \"%s\" can only be updated to DEFAULT" msgstr "列\"%s\"はDEFAULTにのみ更新可能です" -#: rewrite/rewriteHandler.c:1109 rewrite/rewriteHandler.c:1127 +#: rewrite/rewriteHandler.c:1110 rewrite/rewriteHandler.c:1128 #, c-format msgid "multiple assignments to same column \"%s\"" msgstr "同じ列\"%s\"に複数の代入があります" -#: rewrite/rewriteHandler.c:2143 rewrite/rewriteHandler.c:4057 +#: rewrite/rewriteHandler.c:1743 rewrite/rewriteHandler.c:3145 +#, c-format +msgid "access to non-system view \"%s\" is restricted" +msgstr "非システムのビュー\"%s\"へのアクセスは制限されています" + +#: rewrite/rewriteHandler.c:2152 rewrite/rewriteHandler.c:4074 #, c-format msgid "infinite recursion detected in rules for relation \"%s\"" msgstr "リレーション\"%s\"のルールで無限再帰を検出しました" -#: rewrite/rewriteHandler.c:2228 +#: rewrite/rewriteHandler.c:2237 #, c-format msgid "infinite recursion detected in policy for relation \"%s\"" msgstr "リレーション\"%s\"のポリシで無限再帰を検出しました" -#: rewrite/rewriteHandler.c:2548 +#: rewrite/rewriteHandler.c:2557 msgid "Junk view columns are not updatable." msgstr "ジャンクビュー列は更新不可です。" -#: rewrite/rewriteHandler.c:2553 +#: rewrite/rewriteHandler.c:2562 msgid "View columns that are not columns of their base relation are not updatable." msgstr "基底リレーションの列ではないビュー列は更新不可です。" -#: rewrite/rewriteHandler.c:2556 +#: rewrite/rewriteHandler.c:2565 msgid "View columns that refer to system columns are not updatable." msgstr "システム列を参照するビュー列は更新不可です。" -#: rewrite/rewriteHandler.c:2559 +#: rewrite/rewriteHandler.c:2568 msgid "View columns that return whole-row references are not updatable." msgstr "行全体参照を返すビュー列は更新不可です。" -#: rewrite/rewriteHandler.c:2620 +#: rewrite/rewriteHandler.c:2629 msgid "Views containing DISTINCT are not automatically updatable." msgstr "DISTINCTを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2623 +#: rewrite/rewriteHandler.c:2632 msgid "Views containing GROUP BY are not automatically updatable." msgstr "GROUP BYを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2626 +#: rewrite/rewriteHandler.c:2635 msgid "Views containing HAVING are not automatically updatable." msgstr "HAVINGを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2629 +#: rewrite/rewriteHandler.c:2638 msgid "Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable." msgstr "UNION、INTERSECT、EXCEPTを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2632 +#: rewrite/rewriteHandler.c:2641 msgid "Views containing WITH are not automatically updatable." msgstr "WITHを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2635 +#: rewrite/rewriteHandler.c:2644 msgid "Views containing LIMIT or OFFSET are not automatically updatable." msgstr "LIMIT、OFFSETを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2647 +#: rewrite/rewriteHandler.c:2656 msgid "Views that return aggregate functions are not automatically updatable." msgstr "集約関数を返すビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2650 +#: rewrite/rewriteHandler.c:2659 msgid "Views that return window functions are not automatically updatable." msgstr "ウィンドウ関数を返すビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2653 +#: rewrite/rewriteHandler.c:2662 msgid "Views that return set-returning functions are not automatically updatable." msgstr "集合返却関数を返すビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2660 rewrite/rewriteHandler.c:2664 rewrite/rewriteHandler.c:2672 +#: rewrite/rewriteHandler.c:2669 rewrite/rewriteHandler.c:2673 rewrite/rewriteHandler.c:2681 msgid "Views that do not select from a single table or view are not automatically updatable." msgstr "単一のテーブルまたはビューからselectしていないビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2675 +#: rewrite/rewriteHandler.c:2684 msgid "Views containing TABLESAMPLE are not automatically updatable." msgstr "TABLESAMPLEを含むビューは自動更新できません。" -#: rewrite/rewriteHandler.c:2699 +#: rewrite/rewriteHandler.c:2708 msgid "Views that have no updatable columns are not automatically updatable." msgstr "更新可能な列を持たないビューは自動更新できません。" -#: rewrite/rewriteHandler.c:3188 +#: rewrite/rewriteHandler.c:3205 #, c-format msgid "cannot insert into column \"%s\" of view \"%s\"" msgstr "ビュー\"%2$s\"の列\"%1$s\"への挿入はできません" -#: rewrite/rewriteHandler.c:3196 +#: rewrite/rewriteHandler.c:3213 #, c-format msgid "cannot update column \"%s\" of view \"%s\"" msgstr "ビュー\"%2$s\"の列\"%1$s\"は更新できません" -#: rewrite/rewriteHandler.c:3684 +#: rewrite/rewriteHandler.c:3701 #, c-format msgid "DO INSTEAD NOTIFY rules are not supported for data-modifying statements in WITH" msgstr "DO INSTEAD NOTIFYルールはWITH内のデータ更新文に対してはサポートされません" -#: rewrite/rewriteHandler.c:3695 +#: rewrite/rewriteHandler.c:3712 #, c-format msgid "DO INSTEAD NOTHING rules are not supported for data-modifying statements in WITH" msgstr "WITH にデータを変更するステートメントがある場合は DO INSTEAD NOTHING ルールはサポートされません" -#: rewrite/rewriteHandler.c:3709 +#: rewrite/rewriteHandler.c:3726 #, c-format msgid "conditional DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "WITH にデータを変更するステートメントがある場合は、条件付き DO INSTEAD ルールはサポートされません" -#: rewrite/rewriteHandler.c:3713 +#: rewrite/rewriteHandler.c:3730 #, c-format msgid "DO ALSO rules are not supported for data-modifying statements in WITH" msgstr "WITH にデータを変更するステートメントがある場合は DO ALSO ルールはサポートされません" -#: rewrite/rewriteHandler.c:3718 +#: rewrite/rewriteHandler.c:3735 #, c-format msgid "multi-statement DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "WITH にデータを変更するステートメントがある場合はマルチステートメントの DO INSTEAD ルールはサポートされません" -#: rewrite/rewriteHandler.c:3985 rewrite/rewriteHandler.c:3993 rewrite/rewriteHandler.c:4001 +#: rewrite/rewriteHandler.c:4002 rewrite/rewriteHandler.c:4010 rewrite/rewriteHandler.c:4018 #, c-format msgid "Views with conditional DO INSTEAD rules are not automatically updatable." msgstr "条件付きDO INSTEADルールを持つビューは自動更新できません。" -#: rewrite/rewriteHandler.c:4106 +#: rewrite/rewriteHandler.c:4123 #, c-format msgid "cannot perform INSERT RETURNING on relation \"%s\"" msgstr "リレーション\"%s\"へのINSERT RETURNINGを行うことはできません" -#: rewrite/rewriteHandler.c:4108 +#: rewrite/rewriteHandler.c:4125 #, c-format msgid "You need an unconditional ON INSERT DO INSTEAD rule with a RETURNING clause." msgstr "RETURNING句を持つ無条件のON INSERT DO INSTEADルールが必要です。" -#: rewrite/rewriteHandler.c:4113 +#: rewrite/rewriteHandler.c:4130 #, c-format msgid "cannot perform UPDATE RETURNING on relation \"%s\"" msgstr "リレーション\"%s\"へのUPDATE RETURNINGを行うことはできません" -#: rewrite/rewriteHandler.c:4115 +#: rewrite/rewriteHandler.c:4132 #, c-format msgid "You need an unconditional ON UPDATE DO INSTEAD rule with a RETURNING clause." msgstr "RETURNING句を持つ無条件のON UPDATE DO INSTEADルールが必要です。" -#: rewrite/rewriteHandler.c:4120 +#: rewrite/rewriteHandler.c:4137 #, c-format msgid "cannot perform DELETE RETURNING on relation \"%s\"" msgstr "リレーション\"%s\"へのDELETE RETURNINGを行うことはできません" -#: rewrite/rewriteHandler.c:4122 +#: rewrite/rewriteHandler.c:4139 #, c-format msgid "You need an unconditional ON DELETE DO INSTEAD rule with a RETURNING clause." msgstr "RETURNING句を持つ無条件のON DELETE DO INSTEADルールが必要です。" -#: rewrite/rewriteHandler.c:4140 +#: rewrite/rewriteHandler.c:4157 #, c-format msgid "INSERT with ON CONFLICT clause cannot be used with table that has INSERT or UPDATE rules" msgstr "ON CONFLICT句を伴うINSERTは、INSERTまたはUPDATEルールを持つテーブルでは使えません" -#: rewrite/rewriteHandler.c:4197 +#: rewrite/rewriteHandler.c:4214 #, c-format msgid "WITH cannot be used in a query that is rewritten by rules into multiple queries" msgstr "複数問い合わせに対するルールにより書き換えられた問い合わせでは WITH を使用できません" @@ -20769,43 +20799,43 @@ msgid "trailing junk after numeric literal" msgstr "数値リテラルの後ろにゴミがあります" #. translator: %s is typically the translation of "syntax error" -#: scan.l:1184 +#: scan.l:1183 #, c-format msgid "%s at end of input" msgstr "入力の最後で %s" #. translator: first %s is typically the translation of "syntax error" -#: scan.l:1192 +#: scan.l:1191 #, c-format msgid "%s at or near \"%s\"" msgstr "\"%2$s\"またはその近辺で%1$s" -#: scan.l:1383 +#: scan.l:1382 #, c-format msgid "nonstandard use of \\' in a string literal" msgstr "文字列リテラルないでの\\'の非標準的な使用" -#: scan.l:1384 +#: scan.l:1383 #, c-format msgid "Use '' to write quotes in strings, or use the escape string syntax (E'...')." msgstr "文字列内で単一引用符を記述するには''、またはエスケープ文字列構文(E'...')を使用してください。" -#: scan.l:1393 +#: scan.l:1392 #, c-format msgid "nonstandard use of \\\\ in a string literal" msgstr "文字列リテラル内での\\\\の非標準的な使用" -#: scan.l:1394 +#: scan.l:1393 #, c-format msgid "Use the escape string syntax for backslashes, e.g., E'\\\\'." msgstr "バックスラッシュのエスケープ文字列構文、例えばE'\\\\'を使用してください。" -#: scan.l:1408 +#: scan.l:1407 #, c-format msgid "nonstandard use of escape in a string literal" msgstr "文字列リテラル内でのエスケープの非標準的な使用" -#: scan.l:1409 +#: scan.l:1408 #, c-format msgid "Use the escape string syntax for escapes, e.g., E'\\r\\n'." msgstr "エスケープのエスケープ文字列構文、例えばE'\\r\\n'を使用してください。" @@ -21030,12 +21060,12 @@ msgstr "データディレクトリを同期しています(syncfs)、経過時 msgid "could not synchronize file system for file \"%s\": %m" msgstr "ファイル\"%s\"に対してファイルシステムを同期できませんでした: %m" -#: storage/file/fd.c:3619 +#: storage/file/fd.c:3614 #, c-format msgid "syncing data directory (pre-fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "データディレクトリを同期しています(pre-syncfs)、経過時間: %ld.%02d秒, 現在のパス: %s" -#: storage/file/fd.c:3651 +#: storage/file/fd.c:3646 #, c-format msgid "syncing data directory (fsync), elapsed time: %ld.%02d s, current path: %s" msgstr "データディレクトリを同期しています(fsync)、経過時間: %ld.%02d秒, 現在のパス: %s" @@ -21150,7 +21180,7 @@ msgstr "共有メモリキュー経由で大きさ%zuのメッセージは送信 msgid "invalid message size %zu in shared memory queue" msgstr "共有メモリキュー内の不正なメッセージ長%zu" -#: storage/ipc/shm_toc.c:118 storage/ipc/shm_toc.c:200 storage/lmgr/lock.c:997 storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2855 storage/lmgr/lock.c:4269 storage/lmgr/lock.c:4334 storage/lmgr/lock.c:4684 storage/lmgr/predicate.c:2485 storage/lmgr/predicate.c:2500 storage/lmgr/predicate.c:3990 storage/lmgr/predicate.c:5106 utils/hash/dynahash.c:1112 +#: storage/ipc/shm_toc.c:118 storage/ipc/shm_toc.c:200 storage/lmgr/lock.c:997 storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2865 storage/lmgr/lock.c:4279 storage/lmgr/lock.c:4344 storage/lmgr/lock.c:4694 storage/lmgr/predicate.c:2490 storage/lmgr/predicate.c:2505 storage/lmgr/predicate.c:3995 storage/lmgr/predicate.c:5111 utils/hash/dynahash.c:1112 #, c-format msgid "out of shared memory" msgstr "共有メモリが足りません" @@ -21242,12 +21272,12 @@ msgstr "リカバリは%ld.%03dミリ秒経過後待機継続中: %s" msgid "recovery finished waiting after %ld.%03d ms: %s" msgstr "リカバリは%ld.%03dミリ秒で待機終了: %s" -#: storage/ipc/standby.c:883 tcop/postgres.c:3344 +#: storage/ipc/standby.c:883 tcop/postgres.c:3372 #, c-format msgid "canceling statement due to conflict with recovery" msgstr "リカバリで競合が発生したためステートメントをキャンセルしています" -#: storage/ipc/standby.c:884 tcop/postgres.c:2499 +#: storage/ipc/standby.c:884 tcop/postgres.c:2527 #, c-format msgid "User transaction caused buffer deadlock with recovery." msgstr "リカバリ時にユーザーのトランザクションがバッファのデッドロックを引き起こしました。" @@ -21430,12 +21460,12 @@ msgstr "リカバリの実行中はデータベースオブジェクトでロッ msgid "Only RowExclusiveLock or less can be acquired on database objects during recovery." msgstr "リカバリの実行中は、データベースオブジェクトで RowExclusiveLock もしくはそれ以下だけが獲得できます" -#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2856 storage/lmgr/lock.c:4270 storage/lmgr/lock.c:4335 storage/lmgr/lock.c:4685 +#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2866 storage/lmgr/lock.c:4280 storage/lmgr/lock.c:4345 storage/lmgr/lock.c:4695 #, c-format msgid "You might need to increase max_locks_per_transaction." msgstr "max_locks_per_transactionを増やす必要があるかもしれません" -#: storage/lmgr/lock.c:3311 storage/lmgr/lock.c:3379 storage/lmgr/lock.c:3495 +#: storage/lmgr/lock.c:3321 storage/lmgr/lock.c:3389 storage/lmgr/lock.c:3505 #, c-format msgid "cannot PREPARE while holding both session-level and transaction-level locks on the same object" msgstr "同一オブジェクト上にセッションレベルとトランザクションレベルのロックの両方を保持している時にPREPAREすることはできません" @@ -21455,42 +21485,42 @@ msgstr "トランザクションの同時実行数を減らすか max_connection msgid "not enough elements in RWConflictPool to record a potential read/write conflict" msgstr "RWConflictPoolに読み書き競合の可能性を記録するための要素が不足しています" -#: storage/lmgr/predicate.c:1695 +#: storage/lmgr/predicate.c:1700 #, c-format msgid "\"default_transaction_isolation\" is set to \"serializable\"." msgstr "\"default_transaction_isolation\"が\"serializable\"に設定されました。" -#: storage/lmgr/predicate.c:1696 +#: storage/lmgr/predicate.c:1701 #, c-format msgid "You can use \"SET default_transaction_isolation = 'repeatable read'\" to change the default." msgstr "このデフォルトを変更するためには\"SET default_transaction_isolation = 'repeatable read'\"を使用することができます。" -#: storage/lmgr/predicate.c:1747 +#: storage/lmgr/predicate.c:1752 #, c-format msgid "a snapshot-importing transaction must not be READ ONLY DEFERRABLE" msgstr "スナップショットをインポートするトランザクションはREAD ONLY DEFERRABLEではいけません" -#: storage/lmgr/predicate.c:1826 utils/time/snapmgr.c:569 utils/time/snapmgr.c:575 +#: storage/lmgr/predicate.c:1831 utils/time/snapmgr.c:569 utils/time/snapmgr.c:575 #, c-format msgid "could not import the requested snapshot" msgstr "要求したスナップショットをインポートできませんでした" -#: storage/lmgr/predicate.c:1827 utils/time/snapmgr.c:576 +#: storage/lmgr/predicate.c:1832 utils/time/snapmgr.c:576 #, c-format msgid "The source process with PID %d is not running anymore." msgstr "PID%dであるソースプロセスは既に実行中ではありません。" -#: storage/lmgr/predicate.c:2486 storage/lmgr/predicate.c:2501 storage/lmgr/predicate.c:3991 +#: storage/lmgr/predicate.c:2491 storage/lmgr/predicate.c:2506 storage/lmgr/predicate.c:3996 #, c-format msgid "You might need to increase max_pred_locks_per_transaction." msgstr "max_pred_locks_per_transaction を増やす必要があるかもしれません" -#: storage/lmgr/predicate.c:4122 storage/lmgr/predicate.c:4158 storage/lmgr/predicate.c:4191 storage/lmgr/predicate.c:4199 storage/lmgr/predicate.c:4238 storage/lmgr/predicate.c:4480 storage/lmgr/predicate.c:4817 storage/lmgr/predicate.c:4829 storage/lmgr/predicate.c:4876 storage/lmgr/predicate.c:4914 +#: storage/lmgr/predicate.c:4127 storage/lmgr/predicate.c:4163 storage/lmgr/predicate.c:4196 storage/lmgr/predicate.c:4204 storage/lmgr/predicate.c:4243 storage/lmgr/predicate.c:4485 storage/lmgr/predicate.c:4822 storage/lmgr/predicate.c:4834 storage/lmgr/predicate.c:4881 storage/lmgr/predicate.c:4919 #, c-format msgid "could not serialize access due to read/write dependencies among transactions" msgstr "トランザクション間で read/write の依存性があったため、アクセスの直列化ができませんでした" -#: storage/lmgr/predicate.c:4124 storage/lmgr/predicate.c:4160 storage/lmgr/predicate.c:4193 storage/lmgr/predicate.c:4201 storage/lmgr/predicate.c:4240 storage/lmgr/predicate.c:4482 storage/lmgr/predicate.c:4819 storage/lmgr/predicate.c:4831 storage/lmgr/predicate.c:4878 storage/lmgr/predicate.c:4916 +#: storage/lmgr/predicate.c:4129 storage/lmgr/predicate.c:4165 storage/lmgr/predicate.c:4198 storage/lmgr/predicate.c:4206 storage/lmgr/predicate.c:4245 storage/lmgr/predicate.c:4487 storage/lmgr/predicate.c:4824 storage/lmgr/predicate.c:4836 storage/lmgr/predicate.c:4883 storage/lmgr/predicate.c:4921 #, c-format msgid "The transaction might succeed if retried." msgstr "リトライが行われた場合、このトランザクションは成功するかもしれません" @@ -21615,7 +21645,7 @@ msgstr "関数\"%s\"は高速呼び出しインタフェースでの呼び出し msgid "fastpath function call: \"%s\" (OID %u)" msgstr "近道関数呼び出し: \"%s\"(OID %u))" -#: tcop/fastpath.c:312 tcop/postgres.c:1341 tcop/postgres.c:1577 tcop/postgres.c:2036 tcop/postgres.c:2280 +#: tcop/fastpath.c:312 tcop/postgres.c:1345 tcop/postgres.c:1581 tcop/postgres.c:2052 tcop/postgres.c:2308 #, c-format msgid "duration: %s ms" msgstr "期間: %s ミリ秒" @@ -21645,150 +21675,150 @@ msgstr "関数呼び出しメッセージ内の引数サイズ%dが不正です" msgid "incorrect binary data format in function argument %d" msgstr "関数引数%dのバイナリデータ書式が不正です" -#: tcop/postgres.c:444 tcop/postgres.c:4828 +#: tcop/postgres.c:448 tcop/postgres.c:4916 #, c-format msgid "invalid frontend message type %d" msgstr "フロントエンドメッセージタイプ%dが不正です" -#: tcop/postgres.c:1051 +#: tcop/postgres.c:1055 #, c-format msgid "statement: %s" msgstr "文: %s" -#: tcop/postgres.c:1346 +#: tcop/postgres.c:1350 #, c-format msgid "duration: %s ms statement: %s" msgstr "期間: %s ミリ秒 文: %s" -#: tcop/postgres.c:1452 +#: tcop/postgres.c:1456 #, c-format msgid "cannot insert multiple commands into a prepared statement" msgstr "準備された文に複数のコマンドを挿入できません" -#: tcop/postgres.c:1582 +#: tcop/postgres.c:1586 #, c-format msgid "duration: %s ms parse %s: %s" msgstr "期間: %s ミリ秒 パース%s : %s" -#: tcop/postgres.c:1648 tcop/postgres.c:2595 +#: tcop/postgres.c:1653 tcop/postgres.c:2623 #, c-format msgid "unnamed prepared statement does not exist" msgstr "無名の準備された文が存在しません" -#: tcop/postgres.c:1689 +#: tcop/postgres.c:1705 #, c-format msgid "bind message has %d parameter formats but %d parameters" msgstr "バインドメッセージは%dパラメータ書式ありましたがパラメータは%dでした" -#: tcop/postgres.c:1695 +#: tcop/postgres.c:1711 #, c-format msgid "bind message supplies %d parameters, but prepared statement \"%s\" requires %d" msgstr "バインドメッセージは%dパラメータを提供しましたが、準備された文\"%s\"では%d必要でした" -#: tcop/postgres.c:1914 +#: tcop/postgres.c:1930 #, c-format msgid "incorrect binary data format in bind parameter %d" msgstr "バインドパラメータ%dにおいてバイナリデータ書式が不正です" -#: tcop/postgres.c:2041 +#: tcop/postgres.c:2057 #, c-format msgid "duration: %s ms bind %s%s%s: %s" msgstr "期間: %s ミリ秒 バインド %s%s%s: %s" -#: tcop/postgres.c:2091 tcop/postgres.c:2678 +#: tcop/postgres.c:2108 tcop/postgres.c:2706 #, c-format msgid "portal \"%s\" does not exist" msgstr "ポータル\"%s\"は存在しません" -#: tcop/postgres.c:2160 +#: tcop/postgres.c:2188 #, c-format msgid "%s %s%s%s: %s" msgstr "%s %s%s%s: %s" -#: tcop/postgres.c:2162 tcop/postgres.c:2288 +#: tcop/postgres.c:2190 tcop/postgres.c:2316 msgid "execute fetch from" msgstr "取り出し実行" -#: tcop/postgres.c:2163 tcop/postgres.c:2289 +#: tcop/postgres.c:2191 tcop/postgres.c:2317 msgid "execute" msgstr "実行" -#: tcop/postgres.c:2285 +#: tcop/postgres.c:2313 #, c-format msgid "duration: %s ms %s %s%s%s: %s" msgstr "期間: %s ミリ秒 %s %s%s%s: %s" -#: tcop/postgres.c:2431 +#: tcop/postgres.c:2459 #, c-format msgid "prepare: %s" msgstr "準備: %s" -#: tcop/postgres.c:2456 +#: tcop/postgres.c:2484 #, c-format msgid "parameters: %s" msgstr "パラメータ: %s" -#: tcop/postgres.c:2471 +#: tcop/postgres.c:2499 #, c-format msgid "abort reason: recovery conflict" msgstr "異常終了の理由: リカバリが衝突したため" -#: tcop/postgres.c:2487 +#: tcop/postgres.c:2515 #, c-format msgid "User was holding shared buffer pin for too long." msgstr "ユーザーが共有バッファ・ピンを長く保持し過ぎていました" -#: tcop/postgres.c:2490 +#: tcop/postgres.c:2518 #, c-format msgid "User was holding a relation lock for too long." msgstr "ユーザーリレーションのロックを長く保持し過ぎていました" -#: tcop/postgres.c:2493 +#: tcop/postgres.c:2521 #, c-format msgid "User was or might have been using tablespace that must be dropped." msgstr "削除されるべきテーブルスペースをユーザーが使っていました(もしくはその可能性がありました)。" -#: tcop/postgres.c:2496 +#: tcop/postgres.c:2524 #, c-format msgid "User query might have needed to see row versions that must be removed." msgstr "削除されるべきバージョンの行をユーザー問い合わせが参照しなければならなかった可能性がありました。" -#: tcop/postgres.c:2502 +#: tcop/postgres.c:2530 #, c-format msgid "User was connected to a database that must be dropped." msgstr "削除されるべきデータベースにユーザーが接続していました。" -#: tcop/postgres.c:2541 +#: tcop/postgres.c:2569 #, c-format msgid "portal \"%s\" parameter $%d = %s" msgstr "ポータル\"%s\" パラメータ$%d = %s" -#: tcop/postgres.c:2544 +#: tcop/postgres.c:2572 #, c-format msgid "portal \"%s\" parameter $%d" msgstr "ポータル\"%s\" パラメータ $%d" -#: tcop/postgres.c:2550 +#: tcop/postgres.c:2578 #, c-format msgid "unnamed portal parameter $%d = %s" msgstr "無名ポータルパラメータ $%d = %s" -#: tcop/postgres.c:2553 +#: tcop/postgres.c:2581 #, c-format msgid "unnamed portal parameter $%d" msgstr "無名ポータルパラメータ $%d" -#: tcop/postgres.c:2898 +#: tcop/postgres.c:2926 #, c-format msgid "terminating connection because of unexpected SIGQUIT signal" msgstr "予期しないSIGQUITシグナルによりコネクションを終了します" -#: tcop/postgres.c:2904 +#: tcop/postgres.c:2932 #, c-format msgid "terminating connection because of crash of another server process" msgstr "他のサーバープロセスがクラッシュしたため接続を終了します" -#: tcop/postgres.c:2905 +#: tcop/postgres.c:2933 #, c-format msgid "The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory." msgstr "" @@ -21796,147 +21826,147 @@ msgstr "" "postmasterはこのサーバープロセスに対し、現在のトランザクションをロールバック\n" "し終了するよう指示しました。" -#: tcop/postgres.c:2909 tcop/postgres.c:3270 +#: tcop/postgres.c:2937 tcop/postgres.c:3298 #, c-format msgid "In a moment you should be able to reconnect to the database and repeat your command." msgstr "この後、データベースに再接続し、コマンドを繰り返さなければなりません。" -#: tcop/postgres.c:2916 +#: tcop/postgres.c:2944 #, c-format msgid "terminating connection due to immediate shutdown command" msgstr "即時シャットダウンコマンドによりコネクションを終了します" -#: tcop/postgres.c:3002 +#: tcop/postgres.c:3030 #, c-format msgid "floating-point exception" msgstr "浮動小数点例外" -#: tcop/postgres.c:3003 +#: tcop/postgres.c:3031 #, c-format msgid "An invalid floating-point operation was signaled. This probably means an out-of-range result or an invalid operation, such as division by zero." msgstr "不正な浮動小数点演算がシグナルされました。おそらくこれは、範囲外の結果もしくは0除算のような不正な演算によるものです。" -#: tcop/postgres.c:3174 +#: tcop/postgres.c:3202 #, c-format msgid "canceling authentication due to timeout" msgstr "タイムアウトにより認証処理をキャンセルしています" -#: tcop/postgres.c:3178 +#: tcop/postgres.c:3206 #, c-format msgid "terminating autovacuum process due to administrator command" msgstr "管理者コマンドにより自動VACUUM処理を終了しています" -#: tcop/postgres.c:3182 +#: tcop/postgres.c:3210 #, c-format msgid "terminating logical replication worker due to administrator command" msgstr "管理者コマンドにより、論理レプリケーションワーカーを終了します" -#: tcop/postgres.c:3199 tcop/postgres.c:3209 tcop/postgres.c:3268 +#: tcop/postgres.c:3227 tcop/postgres.c:3237 tcop/postgres.c:3296 #, c-format msgid "terminating connection due to conflict with recovery" msgstr "リカバリで競合が発生したため、接続を終了しています" -#: tcop/postgres.c:3220 +#: tcop/postgres.c:3248 #, c-format msgid "terminating connection due to administrator command" msgstr "管理者コマンドにより接続を終了しています" -#: tcop/postgres.c:3251 +#: tcop/postgres.c:3279 #, c-format msgid "connection to client lost" msgstr "クライアントへの接続が切れました。" -#: tcop/postgres.c:3321 +#: tcop/postgres.c:3349 #, c-format msgid "canceling statement due to lock timeout" msgstr "ロックのタイムアウトのためステートメントをキャンセルしています" -#: tcop/postgres.c:3328 +#: tcop/postgres.c:3356 #, c-format msgid "canceling statement due to statement timeout" msgstr "ステートメントのタイムアウトのためステートメントをキャンセルしています" -#: tcop/postgres.c:3335 +#: tcop/postgres.c:3363 #, c-format msgid "canceling autovacuum task" msgstr "自動VACUUM処理をキャンセルしています" -#: tcop/postgres.c:3358 +#: tcop/postgres.c:3386 #, c-format msgid "canceling statement due to user request" msgstr "ユーザーからの要求により文をキャンセルしています" -#: tcop/postgres.c:3372 +#: tcop/postgres.c:3400 #, c-format msgid "terminating connection due to idle-in-transaction timeout" msgstr "トランザクション中アイドルタイムアウトのため接続を終了します" -#: tcop/postgres.c:3383 +#: tcop/postgres.c:3411 #, c-format msgid "terminating connection due to idle-session timeout" msgstr "アイドルセッションタイムアウトにより接続を終了します" -#: tcop/postgres.c:3523 +#: tcop/postgres.c:3551 #, c-format msgid "stack depth limit exceeded" msgstr "スタック長制限を越えました" -#: tcop/postgres.c:3524 +#: tcop/postgres.c:3552 #, c-format msgid "Increase the configuration parameter \"max_stack_depth\" (currently %dkB), after ensuring the platform's stack depth limit is adequate." msgstr "お使いのプラットフォームにおけるスタック長の制限に適合することを確認後、設定パラメータ \"max_stack_depth\"(現在 %dkB)を増やしてください。" -#: tcop/postgres.c:3587 +#: tcop/postgres.c:3615 #, c-format msgid "\"max_stack_depth\" must not exceed %ldkB." msgstr "\"max_stack_depth\"は%ldkBを越えてはなりません。" -#: tcop/postgres.c:3589 +#: tcop/postgres.c:3617 #, c-format msgid "Increase the platform's stack depth limit via \"ulimit -s\" or local equivalent." msgstr "プラットフォームのスタック長制限を\"ulimit -s\"または同等の機能を使用して増加してください" -#: tcop/postgres.c:3945 +#: tcop/postgres.c:4033 #, c-format msgid "invalid command-line argument for server process: %s" msgstr "サーバープロセスに対する不正なコマンドライン引数: %s" -#: tcop/postgres.c:3946 tcop/postgres.c:3952 +#: tcop/postgres.c:4034 tcop/postgres.c:4040 #, c-format msgid "Try \"%s --help\" for more information." msgstr "詳細は\"%s --help\"を実行してください。" -#: tcop/postgres.c:3950 +#: tcop/postgres.c:4038 #, c-format msgid "%s: invalid command-line argument: %s" msgstr "%s: 不正なコマンドライン引数: %s" -#: tcop/postgres.c:4003 +#: tcop/postgres.c:4091 #, c-format msgid "%s: no database nor user name specified" msgstr "%s: データベース名もユーザー名も指定されていません" -#: tcop/postgres.c:4730 +#: tcop/postgres.c:4818 #, c-format msgid "invalid CLOSE message subtype %d" msgstr "不正なCLOSEメッセージのサブタイプ%d" -#: tcop/postgres.c:4765 +#: tcop/postgres.c:4853 #, c-format msgid "invalid DESCRIBE message subtype %d" msgstr "不正なDESCRIBEメッセージのサブタイプ%d" -#: tcop/postgres.c:4849 +#: tcop/postgres.c:4937 #, c-format msgid "fastpath function calls not supported in a replication connection" msgstr "レプリケーション接続では高速関数呼び出しはサポートされていません" -#: tcop/postgres.c:4853 +#: tcop/postgres.c:4941 #, c-format msgid "extended query protocol not supported in a replication connection" msgstr "レプリケーション接続では拡張問い合わせプロトコルはサポートされていません" -#: tcop/postgres.c:5030 +#: tcop/postgres.c:5118 #, c-format msgid "disconnection: session time: %d:%02d:%02d.%03d user=%s database=%s host=%s%s%s" msgstr "接続を切断: セッション時間: %d:%02d:%02d.%03d ユーザー=%s データベース=%s ホスト=%s%s%s" @@ -22241,37 +22271,37 @@ msgstr "MaxFragments は 0 以上でなければなりません" msgid "could not unlink permanent statistics file \"%s\": %m" msgstr "永続統計情報ファイル\"%s\"をunlinkできませんでした: %m" -#: utils/activity/pgstat.c:1229 +#: utils/activity/pgstat.c:1232 #, c-format msgid "invalid statistics kind: \"%s\"" msgstr "不正な統計情報種別: \"%s\"" -#: utils/activity/pgstat.c:1309 +#: utils/activity/pgstat.c:1312 #, c-format msgid "could not open temporary statistics file \"%s\": %m" msgstr "一時統計情報ファイル\"%s\"をオープンできませんでした: %m" -#: utils/activity/pgstat.c:1415 +#: utils/activity/pgstat.c:1418 #, c-format msgid "could not write temporary statistics file \"%s\": %m" msgstr "一時統計情報ファイル\"%s\"に書き込みできませんでした: %m" -#: utils/activity/pgstat.c:1424 +#: utils/activity/pgstat.c:1427 #, c-format msgid "could not close temporary statistics file \"%s\": %m" msgstr "一時統計情報ファイル\"%s\"をクローズできませんでした: %m" -#: utils/activity/pgstat.c:1432 +#: utils/activity/pgstat.c:1435 #, c-format msgid "could not rename temporary statistics file \"%s\" to \"%s\": %m" msgstr "一時統計情報ファイル\"%s\"の名前を\"%s\"に変更できませんでした: %m" -#: utils/activity/pgstat.c:1481 +#: utils/activity/pgstat.c:1484 #, c-format msgid "could not open statistics file \"%s\": %m" msgstr "統計情報ファイル\"%s\"をオープンできませんでした: %m" -#: utils/activity/pgstat.c:1637 +#: utils/activity/pgstat.c:1640 #, c-format msgid "corrupted statistics file \"%s\"" msgstr "統計情報ファイル\"%s\"が破損しています" @@ -22473,7 +22503,7 @@ msgstr "配列の次元数の値がありません。" msgid "Missing \"%s\" after array dimensions." msgstr "配列の次元の後に\"%s\"がありません。" -#: utils/adt/arrayfuncs.c:307 utils/adt/arrayfuncs.c:2945 utils/adt/arrayfuncs.c:2990 utils/adt/arrayfuncs.c:3005 +#: utils/adt/arrayfuncs.c:307 utils/adt/arrayfuncs.c:2952 utils/adt/arrayfuncs.c:2997 utils/adt/arrayfuncs.c:3012 #, c-format msgid "upper bound cannot be less than lower bound" msgstr "上限を下限より小さくすることはできません" @@ -22523,7 +22553,7 @@ msgstr "多次元配列は合致する次元の副配列を持たなければな msgid "Junk after closing right brace." msgstr "右大括弧の後にごみがあります。" -#: utils/adt/arrayfuncs.c:1302 utils/adt/arrayfuncs.c:3418 utils/adt/arrayfuncs.c:5932 +#: utils/adt/arrayfuncs.c:1302 utils/adt/arrayfuncs.c:3425 utils/adt/arrayfuncs.c:5939 #, c-format msgid "invalid number of dimensions: %d" msgstr "不正な次元数: %d" @@ -22558,12 +22588,12 @@ msgstr "型%sにはバイナリ出力関数がありません" msgid "slices of fixed-length arrays not implemented" msgstr "固定長配列の部分配列は実装されていません" -#: utils/adt/arrayfuncs.c:2257 utils/adt/arrayfuncs.c:2279 utils/adt/arrayfuncs.c:2328 utils/adt/arrayfuncs.c:2582 utils/adt/arrayfuncs.c:2920 utils/adt/arrayfuncs.c:5918 utils/adt/arrayfuncs.c:5944 utils/adt/arrayfuncs.c:5955 utils/adt/json.c:1141 utils/adt/json.c:1215 utils/adt/jsonb.c:1315 utils/adt/jsonb.c:1401 utils/adt/jsonfuncs.c:4326 utils/adt/jsonfuncs.c:4480 utils/adt/jsonfuncs.c:4592 utils/adt/jsonfuncs.c:4641 +#: utils/adt/arrayfuncs.c:2257 utils/adt/arrayfuncs.c:2279 utils/adt/arrayfuncs.c:2328 utils/adt/arrayfuncs.c:2582 utils/adt/arrayfuncs.c:2927 utils/adt/arrayfuncs.c:5925 utils/adt/arrayfuncs.c:5951 utils/adt/arrayfuncs.c:5962 utils/adt/json.c:1141 utils/adt/json.c:1215 utils/adt/jsonb.c:1315 utils/adt/jsonb.c:1401 utils/adt/jsonfuncs.c:4326 utils/adt/jsonfuncs.c:4480 utils/adt/jsonfuncs.c:4592 utils/adt/jsonfuncs.c:4641 #, c-format msgid "wrong number of array subscripts" msgstr "配列の添え字が不正な数値です" -#: utils/adt/arrayfuncs.c:2262 utils/adt/arrayfuncs.c:2386 utils/adt/arrayfuncs.c:2665 utils/adt/arrayfuncs.c:2995 +#: utils/adt/arrayfuncs.c:2262 utils/adt/arrayfuncs.c:2386 utils/adt/arrayfuncs.c:2665 utils/adt/arrayfuncs.c:3002 #, c-format msgid "array subscript out of range" msgstr "配列の添え字が範囲外です" @@ -22588,87 +22618,87 @@ msgstr "配列のスライスの添え字は両方の境界を示す必要があ msgid "When assigning to a slice of an empty array value, slice boundaries must be fully specified." msgstr "空の配列値のスライスに代入するには、スライスの範囲は完全に指定する必要があります。" -#: utils/adt/arrayfuncs.c:2910 utils/adt/arrayfuncs.c:3022 +#: utils/adt/arrayfuncs.c:2917 utils/adt/arrayfuncs.c:3029 #, c-format msgid "source array too small" msgstr "元の配列が小さすぎます" -#: utils/adt/arrayfuncs.c:3576 +#: utils/adt/arrayfuncs.c:3583 #, c-format msgid "null array element not allowed in this context" msgstr "この文脈ではNULLの配列要素は許可されません" -#: utils/adt/arrayfuncs.c:3678 utils/adt/arrayfuncs.c:3849 utils/adt/arrayfuncs.c:4240 +#: utils/adt/arrayfuncs.c:3685 utils/adt/arrayfuncs.c:3856 utils/adt/arrayfuncs.c:4247 #, c-format msgid "cannot compare arrays of different element types" msgstr "要素型の異なる配列を比較できません" -#: utils/adt/arrayfuncs.c:4027 utils/adt/multirangetypes.c:2799 utils/adt/multirangetypes.c:2871 utils/adt/rangetypes.c:1343 utils/adt/rangetypes.c:1407 utils/adt/rowtypes.c:1858 +#: utils/adt/arrayfuncs.c:4034 utils/adt/multirangetypes.c:2799 utils/adt/multirangetypes.c:2871 utils/adt/rangetypes.c:1343 utils/adt/rangetypes.c:1407 utils/adt/rowtypes.c:1858 #, c-format msgid "could not identify a hash function for type %s" msgstr "型 %s のハッシュ関数を識別できません" -#: utils/adt/arrayfuncs.c:4155 utils/adt/rowtypes.c:1979 +#: utils/adt/arrayfuncs.c:4162 utils/adt/rowtypes.c:1979 #, c-format msgid "could not identify an extended hash function for type %s" msgstr "型 %s の拡張ハッシュ関数を特定できませんでした" -#: utils/adt/arrayfuncs.c:5332 +#: utils/adt/arrayfuncs.c:5339 #, c-format msgid "data type %s is not an array type" msgstr "データ型%sは配列型ではありません" -#: utils/adt/arrayfuncs.c:5387 +#: utils/adt/arrayfuncs.c:5394 #, c-format msgid "cannot accumulate null arrays" msgstr "null配列は連結できません" -#: utils/adt/arrayfuncs.c:5415 +#: utils/adt/arrayfuncs.c:5422 #, c-format msgid "cannot accumulate empty arrays" msgstr "空の配列は連結できません" -#: utils/adt/arrayfuncs.c:5442 utils/adt/arrayfuncs.c:5448 +#: utils/adt/arrayfuncs.c:5449 utils/adt/arrayfuncs.c:5455 #, c-format msgid "cannot accumulate arrays of different dimensionality" msgstr "次元の異なる配列は結合できません" -#: utils/adt/arrayfuncs.c:5816 utils/adt/arrayfuncs.c:5856 +#: utils/adt/arrayfuncs.c:5823 utils/adt/arrayfuncs.c:5863 #, c-format msgid "dimension array or low bound array cannot be null" msgstr "次元配列もしくは下限値配列が NULL であってはなりません" -#: utils/adt/arrayfuncs.c:5919 utils/adt/arrayfuncs.c:5945 +#: utils/adt/arrayfuncs.c:5926 utils/adt/arrayfuncs.c:5952 #, c-format msgid "Dimension array must be one dimensional." msgstr "次元配列は1次元でなければなりません" -#: utils/adt/arrayfuncs.c:5924 utils/adt/arrayfuncs.c:5950 +#: utils/adt/arrayfuncs.c:5931 utils/adt/arrayfuncs.c:5957 #, c-format msgid "dimension values cannot be null" msgstr "次元値にnullにはできません" -#: utils/adt/arrayfuncs.c:5956 +#: utils/adt/arrayfuncs.c:5963 #, c-format msgid "Low bound array has different size than dimensions array." msgstr "下限配列が次元配列のサイズと異なっています" -#: utils/adt/arrayfuncs.c:6234 +#: utils/adt/arrayfuncs.c:6241 #, c-format msgid "removing elements from multidimensional arrays is not supported" msgstr "多次元配列からの要素削除はサポートされません" -#: utils/adt/arrayfuncs.c:6511 +#: utils/adt/arrayfuncs.c:6518 #, c-format msgid "thresholds must be one-dimensional array" msgstr "閾値は1次元の配列でなければなりません" -#: utils/adt/arrayfuncs.c:6516 +#: utils/adt/arrayfuncs.c:6523 #, c-format msgid "thresholds array must not contain NULLs" msgstr "閾値配列にはNULL値を含めてはいけません" -#: utils/adt/arrayfuncs.c:6749 +#: utils/adt/arrayfuncs.c:6756 #, c-format msgid "number of elements to trim must be between 0 and %d" msgstr "削除する要素の数は0と%dとの間でなければなりません" @@ -22865,17 +22895,17 @@ msgstr "このタイムゾーンはタイムゾーン省略名\"%s\"の構成フ msgid "invalid Datum pointer" msgstr "不正なDatumポインタ" -#: utils/adt/dbsize.c:747 utils/adt/dbsize.c:813 +#: utils/adt/dbsize.c:751 utils/adt/dbsize.c:817 #, c-format msgid "invalid size: \"%s\"" msgstr "不正なサイズ: \"%s\"" -#: utils/adt/dbsize.c:814 +#: utils/adt/dbsize.c:818 #, c-format msgid "Invalid size unit: \"%s\"." msgstr "不正なサイズの単位: \"%s\"" -#: utils/adt/dbsize.c:815 +#: utils/adt/dbsize.c:819 #, c-format msgid "Valid units are \"bytes\", \"kB\", \"MB\", \"GB\", \"TB\", and \"PB\"." msgstr "有効な単位は \"bytes\"、\"kB\"、\"MB\"、\"GB\"、\"TB\"そして\"PB\"です。" @@ -23964,61 +23994,61 @@ msgstr "グローバルテーブル空間にデータベースがありません msgid "%u is not a tablespace OID" msgstr "%uはテーブル空間のOIDではありません" -#: utils/adt/misc.c:457 +#: utils/adt/misc.c:450 msgid "unreserved" msgstr "予約されていません" -#: utils/adt/misc.c:461 +#: utils/adt/misc.c:454 msgid "unreserved (cannot be function or type name)" msgstr "予約されていません(関数または型名にはできません)" -#: utils/adt/misc.c:465 +#: utils/adt/misc.c:458 msgid "reserved (can be function or type name)" msgstr "予約されています(関数または型名にできます)" -#: utils/adt/misc.c:469 +#: utils/adt/misc.c:462 msgid "reserved" msgstr "予約されています" -#: utils/adt/misc.c:480 +#: utils/adt/misc.c:473 msgid "can be bare label" msgstr "ASは省略可" -#: utils/adt/misc.c:485 +#: utils/adt/misc.c:478 msgid "requires AS" msgstr "ASが必要" -#: utils/adt/misc.c:732 utils/adt/misc.c:746 utils/adt/misc.c:785 utils/adt/misc.c:791 utils/adt/misc.c:797 utils/adt/misc.c:820 +#: utils/adt/misc.c:725 utils/adt/misc.c:739 utils/adt/misc.c:778 utils/adt/misc.c:784 utils/adt/misc.c:790 utils/adt/misc.c:813 #, c-format msgid "string is not a valid identifier: \"%s\"" msgstr "文字列は有効な識別子ではありません: \"%s\"" -#: utils/adt/misc.c:734 +#: utils/adt/misc.c:727 #, c-format msgid "String has unclosed double quotes." msgstr "文字列中に閉じられていない二重引用符があります。" -#: utils/adt/misc.c:748 +#: utils/adt/misc.c:741 #, c-format msgid "Quoted identifier must not be empty." msgstr "引用符で囲まれた識別子は空であってはなりません。" -#: utils/adt/misc.c:787 +#: utils/adt/misc.c:780 #, c-format msgid "No valid identifier before \".\"." msgstr "\".\"の前に有効な識別子がありません。" -#: utils/adt/misc.c:793 +#: utils/adt/misc.c:786 #, c-format msgid "No valid identifier after \".\"." msgstr "\".\"の後に有効な識別子がありません。" -#: utils/adt/misc.c:853 +#: utils/adt/misc.c:846 #, c-format msgid "log format \"%s\" is not supported" msgstr "ログ形式\"%s\"はサポートされていません" -#: utils/adt/misc.c:854 +#: utils/adt/misc.c:847 #, c-format msgid "The supported log formats are \"stderr\", \"csvlog\", and \"jsonlog\"." msgstr "サポートされているログ形式は\"stderr\"、\"csvlog\"、そして\"jsonlog\"です。" @@ -24476,7 +24506,7 @@ msgstr "不正な正規表現オプション: \"%.*s\"" msgid "If you meant to use regexp_replace() with a start parameter, cast the fourth argument to integer explicitly." msgstr "regexp_replace()でパラメータstartを指定したいのであれば、4番目のパラメータを明示的に整数にキャストしてください。" -#: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 utils/adt/regexp.c:1857 utils/misc/guc.c:11875 utils/misc/guc.c:11909 +#: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 utils/adt/regexp.c:1857 utils/misc/guc.c:11893 utils/misc/guc.c:11927 #, c-format msgid "invalid value for parameter \"%s\": %d" msgstr "パラメータ\"%s\"の値が無効です: %d" @@ -24512,7 +24542,7 @@ msgstr "\"%s\"という名前の関数が複数あります" msgid "more than one operator named %s" msgstr "%sという名前の演算子が複数あります" -#: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 utils/adt/ruleutils.c:10029 utils/adt/ruleutils.c:10198 +#: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 utils/adt/ruleutils.c:10053 utils/adt/ruleutils.c:10222 #, c-format msgid "too many arguments" msgstr "引数が多すぎます" @@ -24707,7 +24737,7 @@ msgstr "TIMESTAMP(%d)%s の精度は負であってはなりません" msgid "TIMESTAMP(%d)%s precision reduced to maximum allowed, %d" msgstr "TIMESTAMP(%d)%sの位取りを許容最大値%dまで減らしました" -#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12899 +#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12917 #, c-format msgid "timestamp out of range: \"%s\"" msgstr "timestampが範囲外です: \"%s\"" @@ -25322,22 +25352,22 @@ msgstr "名前空間名もURIもnullにはできません" msgid "could not register XML namespace with name \"%s\" and URI \"%s\"" msgstr "\"%s\"という名前のXML名前空間およびURI\"%s\"を登録できませんでした" -#: utils/adt/xml.c:4503 +#: utils/adt/xml.c:4509 #, c-format msgid "DEFAULT namespace is not supported" msgstr "デフォルト名前空間は実装されていません" -#: utils/adt/xml.c:4532 +#: utils/adt/xml.c:4538 #, c-format msgid "row path filter must not be empty string" msgstr "行パスフィルタは空文字列であってはなりません" -#: utils/adt/xml.c:4563 +#: utils/adt/xml.c:4572 #, c-format msgid "column path filter must not be empty string" msgstr "列パスフィルタ空文字列であってはなりません" -#: utils/adt/xml.c:4707 +#: utils/adt/xml.c:4719 #, c-format msgid "more than one value returned by column XPath expression" msgstr "列XPath式が2つ以上の値を返却しました" @@ -25372,27 +25402,27 @@ msgstr "アクセスメソッド %2$s の演算子クラス\"%1$s\"は%4$s型に msgid "cached plan must not change result type" msgstr "キャッシュした実行計画は結果型を変更してはなりません" -#: utils/cache/relcache.c:3754 +#: utils/cache/relcache.c:3755 #, c-format msgid "heap relfilenode value not set when in binary upgrade mode" msgstr "バイナリアップグレードモード中にヒープのrelfilenodeの値が設定されていません" -#: utils/cache/relcache.c:3762 +#: utils/cache/relcache.c:3763 #, c-format msgid "unexpected request for new relfilenode in binary upgrade mode" msgstr "バイナリアップグレードモード中に、予期しない新規relfilenodeの要求がありました" -#: utils/cache/relcache.c:6473 +#: utils/cache/relcache.c:6476 #, c-format msgid "could not create relation-cache initialization file \"%s\": %m" msgstr "リレーションキャッシュ初期化ファイル\"%sを作成できません: %m" -#: utils/cache/relcache.c:6475 +#: utils/cache/relcache.c:6478 #, c-format msgid "Continuing anyway, but there's something wrong." msgstr "とりあえず続行しますが、何かがおかしいです。" -#: utils/cache/relcache.c:6797 +#: utils/cache/relcache.c:6800 #, c-format msgid "could not remove cache file \"%s\": %m" msgstr "キャッシュファイル\"%s\"を削除できませんでした: %m" @@ -25705,7 +25735,7 @@ msgstr "データディレクトリ\"%s\"の権限設定が不正です" msgid "Permissions should be u=rwx (0700) or u=rwx,g=rx (0750)." msgstr "権限は u=rwx(0700) または u=rwx,g=rx (0750) でなければなりません。" -#: utils/init/miscinit.c:665 utils/misc/guc.c:7837 +#: utils/init/miscinit.c:665 utils/misc/guc.c:7855 #, c-format msgid "cannot set parameter \"%s\" within security-restricted operation" msgstr "セキュリティー制限操作内でパラメーター\"%s\"を設定できません" @@ -25805,7 +25835,7 @@ msgstr "このファイルは偶然残ってしまったようですが、削除 msgid "could not write lock file \"%s\": %m" msgstr "ロックファイル\"%s\"に書き出せませんでした: %m" -#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10843 +#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10861 #, c-format msgid "could not read from file \"%s\": %m" msgstr "ファイル\"%s\"から読み取れませんでした: %m" @@ -26058,1970 +26088,1974 @@ msgstr "符号化方式\"%s\"に対する不正なバイト列です: %s" msgid "character with byte sequence %s in encoding \"%s\" has no equivalent in encoding \"%s\"" msgstr "符号化方式\"%2$s\"においてバイト列%1$sである文字は符号化方式\"%3$s\"で等価な文字を持ちません" -#: utils/misc/guc.c:776 +#: utils/misc/guc.c:777 msgid "Ungrouped" msgstr "その他" -#: utils/misc/guc.c:778 +#: utils/misc/guc.c:779 msgid "File Locations" msgstr "ファイルの位置" -#: utils/misc/guc.c:780 +#: utils/misc/guc.c:781 msgid "Connections and Authentication / Connection Settings" msgstr "接続と認証/接続設定" -#: utils/misc/guc.c:782 +#: utils/misc/guc.c:783 msgid "Connections and Authentication / Authentication" msgstr "接続と認証/認証" -#: utils/misc/guc.c:784 +#: utils/misc/guc.c:785 msgid "Connections and Authentication / SSL" msgstr "接続と認証/SSL" -#: utils/misc/guc.c:786 +#: utils/misc/guc.c:787 msgid "Resource Usage / Memory" msgstr "使用リソース/メモリ" -#: utils/misc/guc.c:788 +#: utils/misc/guc.c:789 msgid "Resource Usage / Disk" msgstr "使用リソース/ディスク" -#: utils/misc/guc.c:790 +#: utils/misc/guc.c:791 msgid "Resource Usage / Kernel Resources" msgstr "使用リソース/カーネルリソース" -#: utils/misc/guc.c:792 +#: utils/misc/guc.c:793 msgid "Resource Usage / Cost-Based Vacuum Delay" msgstr "使用リソース / コストベースvacuum遅延" -#: utils/misc/guc.c:794 +#: utils/misc/guc.c:795 msgid "Resource Usage / Background Writer" msgstr "使用リソース / バックグラウンド・ライタ" -#: utils/misc/guc.c:796 +#: utils/misc/guc.c:797 msgid "Resource Usage / Asynchronous Behavior" msgstr "使用リソース / 非同期動作" -#: utils/misc/guc.c:798 +#: utils/misc/guc.c:799 msgid "Write-Ahead Log / Settings" msgstr "先行書き込みログ / 設定" -#: utils/misc/guc.c:800 +#: utils/misc/guc.c:801 msgid "Write-Ahead Log / Checkpoints" msgstr "先行書き込みログ / チェックポイント" -#: utils/misc/guc.c:802 +#: utils/misc/guc.c:803 msgid "Write-Ahead Log / Archiving" msgstr "先行書き込みログ / アーカイビング" -#: utils/misc/guc.c:804 +#: utils/misc/guc.c:805 msgid "Write-Ahead Log / Recovery" msgstr "先行書き込みログ / リカバリ" -#: utils/misc/guc.c:806 +#: utils/misc/guc.c:807 msgid "Write-Ahead Log / Archive Recovery" msgstr "先行書き込みログ / アーカイブリカバリ" -#: utils/misc/guc.c:808 +#: utils/misc/guc.c:809 msgid "Write-Ahead Log / Recovery Target" msgstr "先行書き込みログ / チェックポイント" -#: utils/misc/guc.c:810 +#: utils/misc/guc.c:811 msgid "Replication / Sending Servers" msgstr "レプリケーション / 送信サーバー" -#: utils/misc/guc.c:812 +#: utils/misc/guc.c:813 msgid "Replication / Primary Server" msgstr "レプリケーション / プライマリサーバー" -#: utils/misc/guc.c:814 +#: utils/misc/guc.c:815 msgid "Replication / Standby Servers" msgstr "レプリケーション / スタンバイサーバー" -#: utils/misc/guc.c:816 +#: utils/misc/guc.c:817 msgid "Replication / Subscribers" msgstr "レプリケーション / 購読サーバー" -#: utils/misc/guc.c:818 +#: utils/misc/guc.c:819 msgid "Query Tuning / Planner Method Configuration" msgstr "問い合わせのチューニング / プランナ手法設定" -#: utils/misc/guc.c:820 +#: utils/misc/guc.c:821 msgid "Query Tuning / Planner Cost Constants" msgstr "問い合わせのチューニング / プランナコスト定数" -#: utils/misc/guc.c:822 +#: utils/misc/guc.c:823 msgid "Query Tuning / Genetic Query Optimizer" msgstr "問い合わせのチューニング / 遺伝的問い合わせオプティマイザ" -#: utils/misc/guc.c:824 +#: utils/misc/guc.c:825 msgid "Query Tuning / Other Planner Options" msgstr "問い合わせのチューニング / その他のプランオプション" -#: utils/misc/guc.c:826 +#: utils/misc/guc.c:827 msgid "Reporting and Logging / Where to Log" msgstr "レポートとログ出力 / ログの出力先" -#: utils/misc/guc.c:828 +#: utils/misc/guc.c:829 msgid "Reporting and Logging / When to Log" msgstr "レポートとログ出力 / ログのタイミング" -#: utils/misc/guc.c:830 +#: utils/misc/guc.c:831 msgid "Reporting and Logging / What to Log" msgstr "レポートとログ出力 / ログの内容" -#: utils/misc/guc.c:832 +#: utils/misc/guc.c:833 msgid "Reporting and Logging / Process Title" msgstr "レポートとログ出力 / プロセス表記" -#: utils/misc/guc.c:834 +#: utils/misc/guc.c:835 msgid "Statistics / Monitoring" msgstr "統計情報 / 監視" -#: utils/misc/guc.c:836 +#: utils/misc/guc.c:837 msgid "Statistics / Cumulative Query and Index Statistics" msgstr "統計情報 / 問い合わせとインデックスの累積統計情報" -#: utils/misc/guc.c:838 +#: utils/misc/guc.c:839 msgid "Autovacuum" msgstr "自動VACUUM" -#: utils/misc/guc.c:840 +#: utils/misc/guc.c:841 msgid "Client Connection Defaults / Statement Behavior" msgstr "クライアント接続のデフォルト設定 / 文の振舞い" -#: utils/misc/guc.c:842 +#: utils/misc/guc.c:843 msgid "Client Connection Defaults / Locale and Formatting" msgstr "クライアント接続のデフォルト設定 / ロケールと整形" -#: utils/misc/guc.c:844 +#: utils/misc/guc.c:845 msgid "Client Connection Defaults / Shared Library Preloading" msgstr "クライアント接続のデフォルト設定 / ライブラリの事前読み込み" -#: utils/misc/guc.c:846 +#: utils/misc/guc.c:847 msgid "Client Connection Defaults / Other Defaults" msgstr "クライアント接続のデフォルト設定 / その他のデフォルト設定" -#: utils/misc/guc.c:848 +#: utils/misc/guc.c:849 msgid "Lock Management" msgstr "ロック管理" -#: utils/misc/guc.c:850 +#: utils/misc/guc.c:851 msgid "Version and Platform Compatibility / Previous PostgreSQL Versions" msgstr "バージョンおよびプラットフォーム間の互換性 / PostgreSQLの以前のバージョン" -#: utils/misc/guc.c:852 +#: utils/misc/guc.c:853 msgid "Version and Platform Compatibility / Other Platforms and Clients" msgstr "バージョンおよびプラットフォーム間の互換性 / 他のプラットフォームおよびクライアント" -#: utils/misc/guc.c:854 +#: utils/misc/guc.c:855 msgid "Error Handling" msgstr "エラーハンドリング" -#: utils/misc/guc.c:856 +#: utils/misc/guc.c:857 msgid "Preset Options" msgstr "事前設定オプション" -#: utils/misc/guc.c:858 +#: utils/misc/guc.c:859 msgid "Customized Options" msgstr "独自オプション" -#: utils/misc/guc.c:860 +#: utils/misc/guc.c:861 msgid "Developer Options" msgstr "開発者向けオプション" -#: utils/misc/guc.c:918 +#: utils/misc/guc.c:919 msgid "Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\"." msgstr "このパラメータで使用可能な単位は\"B\"、\"kB\"、\"MB\"、\"GB\"および\"TB\"です。" -#: utils/misc/guc.c:955 +#: utils/misc/guc.c:956 msgid "Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\"." msgstr "このパラメータの有効単位は \"us\"、\"ms\"、\"s\"、\"min\"、\"h\"そして\"d\"です。" -#: utils/misc/guc.c:1017 +#: utils/misc/guc.c:1018 msgid "Enables the planner's use of sequential-scan plans." msgstr "プランナでのシーケンシャルスキャンプランの使用を有効にします。" -#: utils/misc/guc.c:1027 +#: utils/misc/guc.c:1028 msgid "Enables the planner's use of index-scan plans." msgstr "プランナでのインデックススキャンプランの使用を有効にします。" -#: utils/misc/guc.c:1037 +#: utils/misc/guc.c:1038 msgid "Enables the planner's use of index-only-scan plans." msgstr "プランナでのインデックスオンリースキャンプランの使用を有効にします。" -#: utils/misc/guc.c:1047 +#: utils/misc/guc.c:1048 msgid "Enables the planner's use of bitmap-scan plans." msgstr "プランナでのビットマップスキャンプランの使用を有効にします。" -#: utils/misc/guc.c:1057 +#: utils/misc/guc.c:1058 msgid "Enables the planner's use of TID scan plans." msgstr "プランナでのTIDスキャンプランの使用を有効にします。" -#: utils/misc/guc.c:1067 +#: utils/misc/guc.c:1068 msgid "Enables the planner's use of explicit sort steps." msgstr "プランナでの明示的ソートの使用を有効にします。" -#: utils/misc/guc.c:1077 +#: utils/misc/guc.c:1078 msgid "Enables the planner's use of incremental sort steps." msgstr "プランナでの差分ソート処理の使用を有効にします。" -#: utils/misc/guc.c:1087 +#: utils/misc/guc.c:1088 msgid "Enables the planner's use of hashed aggregation plans." msgstr "プランナでのハッシュ集約プランの使用を有効にします。" -#: utils/misc/guc.c:1097 +#: utils/misc/guc.c:1098 msgid "Enables the planner's use of materialization." msgstr "プランナでの実体化の使用を有効にします。" -#: utils/misc/guc.c:1107 +#: utils/misc/guc.c:1108 msgid "Enables the planner's use of memoization." msgstr "プランナでのメモ化の使用を有効にします。" -#: utils/misc/guc.c:1117 +#: utils/misc/guc.c:1118 msgid "Enables the planner's use of nested-loop join plans." msgstr "プランナでのネストループジョインプランの使用を有効にします。" -#: utils/misc/guc.c:1127 +#: utils/misc/guc.c:1128 msgid "Enables the planner's use of merge join plans." msgstr "プランナでのマージジョインプランの使用を有効にします。" -#: utils/misc/guc.c:1137 +#: utils/misc/guc.c:1138 msgid "Enables the planner's use of hash join plans." msgstr "プランナでのハッシュジョインプランの使用を有効にします。" -#: utils/misc/guc.c:1147 +#: utils/misc/guc.c:1148 msgid "Enables the planner's use of gather merge plans." msgstr "プランナでのギャザーマージプランの使用を有効にします。" -#: utils/misc/guc.c:1157 +#: utils/misc/guc.c:1158 msgid "Enables partitionwise join." msgstr "パーティション単位ジョインを有効にします。" -#: utils/misc/guc.c:1167 +#: utils/misc/guc.c:1168 msgid "Enables partitionwise aggregation and grouping." msgstr "パーティション単位の集約およびグルーピングを有効にします。" -#: utils/misc/guc.c:1177 +#: utils/misc/guc.c:1178 msgid "Enables the planner's use of parallel append plans." msgstr "プランナでの並列アペンドプランの使用を有効にします。" -#: utils/misc/guc.c:1187 +#: utils/misc/guc.c:1188 msgid "Enables the planner's use of parallel hash plans." msgstr "プランナでの並列ハッシュプランの使用を有効にします。" -#: utils/misc/guc.c:1197 +#: utils/misc/guc.c:1198 msgid "Enables plan-time and execution-time partition pruning." msgstr "実行計画作成時および実行時のパーティション除外処理を有効にします。" -#: utils/misc/guc.c:1198 +#: utils/misc/guc.c:1199 msgid "Allows the query planner and executor to compare partition bounds to conditions in the query to determine which partitions must be scanned." msgstr "実行計画時と実行時の、クエリ中の条件とパーティション境界の比較に基づいたパーティション単位のスキャン除外処理を許可します。" -#: utils/misc/guc.c:1209 +#: utils/misc/guc.c:1210 msgid "Enables the planner's use of async append plans." msgstr "プランナでの非同期アペンドプランの使用を有効にします。" -#: utils/misc/guc.c:1219 +#: utils/misc/guc.c:1220 msgid "Enables genetic query optimization." msgstr "遺伝的問い合わせ最適化を有効にします。" -#: utils/misc/guc.c:1220 +#: utils/misc/guc.c:1221 msgid "This algorithm attempts to do planning without exhaustive searching." msgstr "このアルゴリズムでは、全数探索を伴わずに行う実行計画の作成を試みます。" -#: utils/misc/guc.c:1231 +#: utils/misc/guc.c:1232 msgid "Shows whether the current user is a superuser." msgstr "現在のユーザーがスーパーユーザーかどうかを表示します。" -#: utils/misc/guc.c:1241 +#: utils/misc/guc.c:1242 msgid "Enables advertising the server via Bonjour." msgstr "Bonjour を経由したサーバーのアドバタイズを有効にします。" -#: utils/misc/guc.c:1250 +#: utils/misc/guc.c:1251 msgid "Collects transaction commit time." msgstr "トランザクションのコミット時刻を収集します。" -#: utils/misc/guc.c:1259 +#: utils/misc/guc.c:1260 msgid "Enables SSL connections." msgstr "SSL接続を有効にします。" -#: utils/misc/guc.c:1268 +#: utils/misc/guc.c:1269 msgid "Controls whether ssl_passphrase_command is called during server reload." msgstr "サーバーリロード時にも ssl_passphrase_command を呼び出すかどうかを指定します。" -#: utils/misc/guc.c:1277 +#: utils/misc/guc.c:1278 msgid "Give priority to server ciphersuite order." msgstr "サーバー側の暗号スイート順序を優先します。" -#: utils/misc/guc.c:1286 +#: utils/misc/guc.c:1287 msgid "Forces synchronization of updates to disk." msgstr "強制的に更新をディスクに同期します。" -#: utils/misc/guc.c:1287 +#: utils/misc/guc.c:1288 msgid "The server will use the fsync() system call in several places to make sure that updates are physically written to disk. This ensures that a database cluster will recover to a consistent state after an operating system or hardware crash." msgstr "サーバーは、確実に更新が物理的にディスクに書き込まれるように複数の場所でfsync()システムコールを使用します。これにより、オペレーティングシステムやハードウェアがクラッシュした後でもデータベースクラスタは一貫した状態に復旧することができます。" -#: utils/misc/guc.c:1298 +#: utils/misc/guc.c:1299 msgid "Continues processing after a checksum failure." msgstr "チェックサムエラーの発生時に処理を継続します。" -#: utils/misc/guc.c:1299 +#: utils/misc/guc.c:1300 msgid "Detection of a checksum failure normally causes PostgreSQL to report an error, aborting the current transaction. Setting ignore_checksum_failure to true causes the system to ignore the failure (but still report a warning), and continue processing. This behavior could cause crashes or other serious problems. Only has an effect if checksums are enabled." msgstr "チェックサムエラーを検知すると、通常PostgreSQLはエラーの報告を行ない、現在のトランザクションを中断させます。ignore_checksum_failureを真に設定することによりエラーを無視します(代わりに警告を報告します)この動作はクラッシュや他の深刻な問題を引き起こすかもしれません。チェックサムが有効な場合にのみ効果があります。" -#: utils/misc/guc.c:1313 +#: utils/misc/guc.c:1314 msgid "Continues processing past damaged page headers." msgstr "破損したページヘッダがあっても処理を継続します。" -#: utils/misc/guc.c:1314 +#: utils/misc/guc.c:1315 msgid "Detection of a damaged page header normally causes PostgreSQL to report an error, aborting the current transaction. Setting zero_damaged_pages to true causes the system to instead report a warning, zero out the damaged page, and continue processing. This behavior will destroy data, namely all the rows on the damaged page." msgstr "ページヘッダの障害が分かると、通常PostgreSQLはエラーの報告を行ない、現在のトランザクションを中断させます。zero_damaged_pagesを真に設定することにより、システムは代わりに警告を報告し、障害のあるページをゼロで埋め、処理を継続します。 この動作により、障害のあったページ上にある全ての行のデータを破壊されます。" -#: utils/misc/guc.c:1327 +#: utils/misc/guc.c:1328 msgid "Continues recovery after an invalid pages failure." msgstr "不正ページエラーの発生時に処理を継続します。" -#: utils/misc/guc.c:1328 +#: utils/misc/guc.c:1329 msgid "Detection of WAL records having references to invalid pages during recovery causes PostgreSQL to raise a PANIC-level error, aborting the recovery. Setting ignore_invalid_pages to true causes the system to ignore invalid page references in WAL records (but still report a warning), and continue recovery. This behavior may cause crashes, data loss, propagate or hide corruption, or other serious problems. Only has an effect during recovery or in standby mode." msgstr "リカバリ中に不正なページへの参照を行うWALレコードを検出した場合、PostgreSQLはPANICレベルのエラーを出力してリカバリを中断します。ignore_invalid_pagesをtrueに設定するとシステムはWALレコード中の不正なページへの参照を無視してリカバリを継続します(ただし、引き続き警告は出力します)。この挙動はクラッシュ、データ損失、破壊の伝播ないしは隠蔽または他の深刻な問題を引き起こします。リカバリモードもしくはスタンバイモードでのみ有効となります。" -#: utils/misc/guc.c:1346 +#: utils/misc/guc.c:1347 msgid "Writes full pages to WAL when first modified after a checkpoint." msgstr "チェックポイントの後最初に変更された際にページ全体をWALに出力します。" -#: utils/misc/guc.c:1347 +#: utils/misc/guc.c:1348 msgid "A page write in process during an operating system crash might be only partially written to disk. During recovery, the row changes stored in WAL are not enough to recover. This option writes pages when first modified after a checkpoint to WAL so full recovery is possible." msgstr "ページ書き込み処理中にオペレーティングシステムがクラッシュすると、ディスクへの書き込みが一部分のみ行われる可能性があります。リカバリでは、WALに保存された行の変更だけでは完全に復旧させることができません。このオプションにより、チェックポイントの後の最初の更新時にWALにページを出力するため、完全な復旧が可能になります。" -#: utils/misc/guc.c:1360 +#: utils/misc/guc.c:1361 msgid "Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification." msgstr "チェックポイントの後最初に更新された時に、重要な更新ではなくてもページ全体をWALに書き出します。" -#: utils/misc/guc.c:1370 +#: utils/misc/guc.c:1371 msgid "Writes zeroes to new WAL files before first use." msgstr "新しいWALファイルの使用前にゼロを書き込みます。" -#: utils/misc/guc.c:1380 +#: utils/misc/guc.c:1381 msgid "Recycles WAL files by renaming them." msgstr "WALファイルを名前を変更して再利用します。" -#: utils/misc/guc.c:1390 +#: utils/misc/guc.c:1391 msgid "Logs each checkpoint." msgstr "チェックポイントをログに記録します。" -#: utils/misc/guc.c:1399 +#: utils/misc/guc.c:1400 msgid "Logs each successful connection." msgstr "成功した接続を全てログに記録します。" -#: utils/misc/guc.c:1408 +#: utils/misc/guc.c:1409 msgid "Logs end of a session, including duration." msgstr "セッションの終了時刻とその期間をログに記録します。" -#: utils/misc/guc.c:1417 +#: utils/misc/guc.c:1418 msgid "Logs each replication command." msgstr "各レプリケーションコマンドをログに記録します。" -#: utils/misc/guc.c:1426 +#: utils/misc/guc.c:1427 msgid "Shows whether the running server has assertion checks enabled." msgstr "起動中のサーバーがアサーションチェックを有効にしているかどうかを表示します。" -#: utils/misc/guc.c:1441 +#: utils/misc/guc.c:1442 msgid "Terminate session on any error." msgstr "何からのエラーがあればセッションを終了します" -#: utils/misc/guc.c:1450 +#: utils/misc/guc.c:1451 msgid "Reinitialize server after backend crash." msgstr "バックエンドがクラッシュした後サーバーを再初期化します" -#: utils/misc/guc.c:1459 +#: utils/misc/guc.c:1460 msgid "Remove temporary files after backend crash." msgstr "バックエンドのクラッシュ後に一時ファイルを削除します。" -#: utils/misc/guc.c:1470 +#: utils/misc/guc.c:1471 msgid "Logs the duration of each completed SQL statement." msgstr "完了したSQL全ての実行時間をログに記録します。" -#: utils/misc/guc.c:1479 +#: utils/misc/guc.c:1480 msgid "Logs each query's parse tree." msgstr "問い合わせのパースツリーをログに記録します。" -#: utils/misc/guc.c:1488 +#: utils/misc/guc.c:1489 msgid "Logs each query's rewritten parse tree." msgstr "リライト後の問い合わせのパースツリーをログに記録します。" -#: utils/misc/guc.c:1497 +#: utils/misc/guc.c:1498 msgid "Logs each query's execution plan." msgstr "問い合わせの実行計画をログに記録します。" -#: utils/misc/guc.c:1506 +#: utils/misc/guc.c:1507 msgid "Indents parse and plan tree displays." msgstr "パースツリーと実行計画ツリーの表示をインデントします。" -#: utils/misc/guc.c:1515 +#: utils/misc/guc.c:1516 msgid "Writes parser performance statistics to the server log." msgstr "パーサの性能統計情報をサーバーログに出力します。" -#: utils/misc/guc.c:1524 +#: utils/misc/guc.c:1525 msgid "Writes planner performance statistics to the server log." msgstr "プランナの性能統計情報をサーバーログに出力します。" -#: utils/misc/guc.c:1533 +#: utils/misc/guc.c:1534 msgid "Writes executor performance statistics to the server log." msgstr "エグゼキュータの性能統計情報をサーバーログに出力します。" -#: utils/misc/guc.c:1542 +#: utils/misc/guc.c:1543 msgid "Writes cumulative performance statistics to the server log." msgstr "累積の性能統計情報をサーバーログに出力します。" -#: utils/misc/guc.c:1552 +#: utils/misc/guc.c:1553 msgid "Logs system resource usage statistics (memory and CPU) on various B-tree operations." msgstr "B-treeの各種操作に関するシステムリソース(メモリとCPU)の使用統計をログに記録します。" -#: utils/misc/guc.c:1564 +#: utils/misc/guc.c:1565 msgid "Collects information about executing commands." msgstr "実行中のコマンドに関する情報を収集します。" -#: utils/misc/guc.c:1565 +#: utils/misc/guc.c:1566 msgid "Enables the collection of information on the currently executing command of each session, along with the time at which that command began execution." msgstr "そのコマンドが実行を開始した時刻を伴った、各セッションでの現時点で実行中のコマンドに関する情報の収集を有効にします。" -#: utils/misc/guc.c:1575 +#: utils/misc/guc.c:1576 msgid "Collects statistics on database activity." msgstr "データベースの活動について統計情報を収集します。" -#: utils/misc/guc.c:1584 +#: utils/misc/guc.c:1585 msgid "Collects timing statistics for database I/O activity." msgstr "データベースのI/O処理時間に関する統計情報を収集します。" -#: utils/misc/guc.c:1593 +#: utils/misc/guc.c:1594 msgid "Collects timing statistics for WAL I/O activity." msgstr "WALのI/O処理時間に関する統計情報を収集します。" -#: utils/misc/guc.c:1603 +#: utils/misc/guc.c:1604 msgid "Updates the process title to show the active SQL command." msgstr "活動中のSQLコマンドを表示するようプロセスタイトルを更新します。" -#: utils/misc/guc.c:1604 +#: utils/misc/guc.c:1605 msgid "Enables updating of the process title every time a new SQL command is received by the server." msgstr "新しいSQLコマンドをサーバーが受信する度に行うプロセスタイトルの更新を有効にします。" -#: utils/misc/guc.c:1617 +#: utils/misc/guc.c:1618 msgid "Starts the autovacuum subprocess." msgstr "autovacuumサブプロセスを起動します。" -#: utils/misc/guc.c:1627 +#: utils/misc/guc.c:1628 msgid "Generates debugging output for LISTEN and NOTIFY." msgstr "LISTENとNOTIFYコマンドのためのデバッグ出力を生成します。" -#: utils/misc/guc.c:1639 +#: utils/misc/guc.c:1640 msgid "Emits information about lock usage." msgstr "ロック使用状況に関する情報を出力します。" -#: utils/misc/guc.c:1649 +#: utils/misc/guc.c:1650 msgid "Emits information about user lock usage." msgstr "ユーザーロックの使用状況に関する情報を出力します。" -#: utils/misc/guc.c:1659 +#: utils/misc/guc.c:1660 msgid "Emits information about lightweight lock usage." msgstr "軽量ロックの使用状況に関する情報を出力します。" -#: utils/misc/guc.c:1669 +#: utils/misc/guc.c:1670 msgid "Dumps information about all current locks when a deadlock timeout occurs." msgstr "デッドロックの発生時点の全てのロックについての情報をダンプします。" -#: utils/misc/guc.c:1681 +#: utils/misc/guc.c:1682 msgid "Logs long lock waits." msgstr "長時間のロック待機をログに記録します。" -#: utils/misc/guc.c:1690 +#: utils/misc/guc.c:1691 msgid "Logs standby recovery conflict waits." msgstr "スタンバイのリカバリ衝突による待機をログ出力します。" -#: utils/misc/guc.c:1699 +#: utils/misc/guc.c:1700 msgid "Logs the host name in the connection logs." msgstr "接続ログ内でホスト名を出力します。" -#: utils/misc/guc.c:1700 +#: utils/misc/guc.c:1701 msgid "By default, connection logs only show the IP address of the connecting host. If you want them to show the host name you can turn this on, but depending on your host name resolution setup it might impose a non-negligible performance penalty." msgstr "デフォルトでは、接続ログメッセージには接続ホストのIPアドレスのみが表示されます。 このオプションを有効にすることで、ホスト名もログに表示されるようになります。 ホスト名解決の設定によってはで、無視できないほどの性能の悪化が起きうることに注意してください。" -#: utils/misc/guc.c:1711 +#: utils/misc/guc.c:1712 msgid "Treats \"expr=NULL\" as \"expr IS NULL\"." msgstr "\"expr=NULL\"という形の式は\"expr IS NULL\"として扱います。" -#: utils/misc/guc.c:1712 +#: utils/misc/guc.c:1713 msgid "When turned on, expressions of the form expr = NULL (or NULL = expr) are treated as expr IS NULL, that is, they return true if expr evaluates to the null value, and false otherwise. The correct behavior of expr = NULL is to always return null (unknown)." msgstr "有効にした場合、expr = NULL(またはNULL = expr)という形の式はexpr IS NULLとして扱われます。つまり、exprの評価がNULL値の場合に真を、さもなくば偽を返します。expr = NULLのSQL仕様に基づいた正しい動作は常にNULL(未知)を返すことです。" -#: utils/misc/guc.c:1724 +#: utils/misc/guc.c:1725 msgid "Enables per-database user names." msgstr "データベース毎のユーザー名を許可します。" -#: utils/misc/guc.c:1733 +#: utils/misc/guc.c:1734 msgid "Sets the default read-only status of new transactions." msgstr "新しいトランザクションのリードオンリー設定のデフォルト値を設定。" -#: utils/misc/guc.c:1743 +#: utils/misc/guc.c:1744 msgid "Sets the current transaction's read-only status." msgstr "現在のトランザクションのリードオンリー設定を設定。" -#: utils/misc/guc.c:1753 +#: utils/misc/guc.c:1754 msgid "Sets the default deferrable status of new transactions." msgstr "新しいトランザクションの遅延可否設定のデフォルト値を設定。" -#: utils/misc/guc.c:1762 +#: utils/misc/guc.c:1763 msgid "Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures." msgstr "リードオンリーのシリアライズ可能なトランザクションを、シリアライズに失敗することなく実行できるまで遅延させるかどうか" -#: utils/misc/guc.c:1772 +#: utils/misc/guc.c:1773 msgid "Enable row security." msgstr "行セキュリティを有効にします。" -#: utils/misc/guc.c:1773 +#: utils/misc/guc.c:1774 msgid "When enabled, row security will be applied to all users." msgstr "有効にすると、行セキュリティが全てのユーザーに適用されます。" -#: utils/misc/guc.c:1781 +#: utils/misc/guc.c:1782 msgid "Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE." msgstr "CREATE FUNCTIONおよびCREATE PROCEDUREにおいて関数本体を検査します。" -#: utils/misc/guc.c:1790 +#: utils/misc/guc.c:1791 msgid "Enable input of NULL elements in arrays." msgstr "配列内のNULL要素入力を有効化。" -#: utils/misc/guc.c:1791 +#: utils/misc/guc.c:1792 msgid "When turned on, unquoted NULL in an array input value means a null value; otherwise it is taken literally." msgstr "有効にすると、配列入力値における引用符のないNULLはNULL値を意味するようになります。さもなくば文字通りに解釈されます。" -#: utils/misc/guc.c:1807 +#: utils/misc/guc.c:1808 msgid "WITH OIDS is no longer supported; this can only be false." msgstr "WITH OIDS は今後サポートされません; false のみに設定可能です。" -#: utils/misc/guc.c:1817 +#: utils/misc/guc.c:1818 msgid "Start a subprocess to capture stderr output and/or csvlogs into log files." msgstr "標準エラー出力、CSVログ、またはその両方をログファイルに捕捉するための子プロセスを開始します。" -#: utils/misc/guc.c:1826 +#: utils/misc/guc.c:1827 msgid "Truncate existing log files of same name during log rotation." msgstr "ログローテーション時に既存の同一名称のログファイルを切り詰めます。" -#: utils/misc/guc.c:1837 +#: utils/misc/guc.c:1838 msgid "Emit information about resource usage in sorting." msgstr "ソート中にリソース使用状況に関する情報を発行します。" -#: utils/misc/guc.c:1851 +#: utils/misc/guc.c:1852 msgid "Generate debugging output for synchronized scanning." msgstr "同期スキャン処理のデバッグ出力を生成します。" -#: utils/misc/guc.c:1866 +#: utils/misc/guc.c:1867 msgid "Enable bounded sorting using heap sort." msgstr "ヒープソートを使用した境界のソート処理を有効にします" -#: utils/misc/guc.c:1879 +#: utils/misc/guc.c:1880 msgid "Emit WAL-related debugging output." msgstr "WAL関連のデバッグ出力を出力します。" -#: utils/misc/guc.c:1891 +#: utils/misc/guc.c:1892 msgid "Shows whether datetimes are integer based." msgstr "日付時刻が整数ベースかどうかを表示します。" -#: utils/misc/guc.c:1902 +#: utils/misc/guc.c:1903 msgid "Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive." msgstr "KerberosおよびGSSAPIユーザー名を大文字小文字を区別して扱うかどうかを設定します。" -#: utils/misc/guc.c:1912 +#: utils/misc/guc.c:1913 msgid "Warn about backslash escapes in ordinary string literals." msgstr "普通の文字列リテラル内のバックスラッシュエスケープを警告します。" -#: utils/misc/guc.c:1922 +#: utils/misc/guc.c:1923 msgid "Causes '...' strings to treat backslashes literally." msgstr "'...' 文字列はバックスラッシュをそのまま扱います。" -#: utils/misc/guc.c:1933 +#: utils/misc/guc.c:1934 msgid "Enable synchronized sequential scans." msgstr "同期シーケンシャルスキャンを有効にします。" -#: utils/misc/guc.c:1943 +#: utils/misc/guc.c:1944 msgid "Sets whether to include or exclude transaction with recovery target." msgstr "リカバリ目標のトランザクションを含めるか除外するかを設定。" -#: utils/misc/guc.c:1953 +#: utils/misc/guc.c:1954 msgid "Allows connections and queries during recovery." msgstr "リカバリ中でも接続と問い合わせを受け付けます" -#: utils/misc/guc.c:1963 +#: utils/misc/guc.c:1964 msgid "Allows feedback from a hot standby to the primary that will avoid query conflicts." msgstr "問い合わせの衝突を避けるためのホットスタンバイからプライマリへのフィードバックを受け付けます" -#: utils/misc/guc.c:1973 +#: utils/misc/guc.c:1974 msgid "Shows whether hot standby is currently active." msgstr "現在ホットスタンバイが有効であるかどうかを示します。" -#: utils/misc/guc.c:1984 +#: utils/misc/guc.c:1985 msgid "Allows modifications of the structure of system tables." msgstr "システムテーブル構造の変更を許可。" -#: utils/misc/guc.c:1995 +#: utils/misc/guc.c:1996 msgid "Disables reading from system indexes." msgstr "システムインデックスの読み取りを無効にします。" -#: utils/misc/guc.c:1996 +#: utils/misc/guc.c:1997 msgid "It does not prevent updating the indexes, so it is safe to use. The worst consequence is slowness." msgstr "これはインデックスの更新は妨げないため使用しても安全です。最も大きな悪影響は低速化です。" -#: utils/misc/guc.c:2007 +#: utils/misc/guc.c:2008 msgid "Allows tablespaces directly inside pg_tblspc, for testing." msgstr "pg_tblspc直下のテーブル空間を許可します、テスト用。" -#: utils/misc/guc.c:2018 +#: utils/misc/guc.c:2019 msgid "Enables backward compatibility mode for privilege checks on large objects." msgstr "ラージオブジェクトで権限チェックを行う際、後方互換性モードを有効にします。" -#: utils/misc/guc.c:2019 +#: utils/misc/guc.c:2020 msgid "Skips privilege checks when reading or modifying large objects, for compatibility with PostgreSQL releases prior to 9.0." msgstr "9.0 より前のPostgreSQLとの互換のため、ラージオブジェクトを読んだり変更したりする際に権限チェックをスキップする。" -#: utils/misc/guc.c:2029 +#: utils/misc/guc.c:2030 msgid "When generating SQL fragments, quote all identifiers." msgstr "SQL文を生成する時に、すべての識別子を引用符で囲みます。" -#: utils/misc/guc.c:2039 +#: utils/misc/guc.c:2040 msgid "Shows whether data checksums are turned on for this cluster." msgstr "データチェックサムがこのクラスタで有効になっているかどうかを表示します。" -#: utils/misc/guc.c:2050 +#: utils/misc/guc.c:2051 msgid "Add sequence number to syslog messages to avoid duplicate suppression." msgstr "シーケンス番号を付加することでsyslogメッセージの重複を防ぎます。" -#: utils/misc/guc.c:2060 +#: utils/misc/guc.c:2061 msgid "Split messages sent to syslog by lines and to fit into 1024 bytes." msgstr "syslogに送出するメッセージを行単位で分割して、1024バイトに収まるようにします。" -#: utils/misc/guc.c:2070 +#: utils/misc/guc.c:2071 msgid "Controls whether Gather and Gather Merge also run subplans." msgstr "Gather および Gather Merge でも下位プランを実行するかどうかを制御します。" -#: utils/misc/guc.c:2071 +#: utils/misc/guc.c:2072 msgid "Should gather nodes also run subplans or just gather tuples?" msgstr "Gather ノードでも下位プランを実行するのか、もしくはただタプルの収集のみを行うのか?" -#: utils/misc/guc.c:2081 +#: utils/misc/guc.c:2082 msgid "Allow JIT compilation." msgstr "JITコンパイルを許可します。" -#: utils/misc/guc.c:2092 +#: utils/misc/guc.c:2093 msgid "Register JIT-compiled functions with debugger." msgstr "JITコンパイルされた関数をデバッガに登録します。" -#: utils/misc/guc.c:2109 +#: utils/misc/guc.c:2110 msgid "Write out LLVM bitcode to facilitate JIT debugging." msgstr "LLVMビットコードを出力して、JITデバッグを容易にします。" -#: utils/misc/guc.c:2120 +#: utils/misc/guc.c:2121 msgid "Allow JIT compilation of expressions." msgstr "式のJITコンパイルを許可します。" -#: utils/misc/guc.c:2131 +#: utils/misc/guc.c:2132 msgid "Register JIT-compiled functions with perf profiler." msgstr "perfプロファイラにJITコンパイルされた関数を登録します。" -#: utils/misc/guc.c:2148 +#: utils/misc/guc.c:2149 msgid "Allow JIT compilation of tuple deforming." msgstr "タプル分解処理のJITコンパイルを許可します。" -#: utils/misc/guc.c:2159 +#: utils/misc/guc.c:2160 msgid "Whether to continue running after a failure to sync data files." msgstr "データファイルの同期失敗の後に処理を継続するかどうか。" -#: utils/misc/guc.c:2168 +#: utils/misc/guc.c:2169 msgid "Sets whether a WAL receiver should create a temporary replication slot if no permanent slot is configured." msgstr "永続レプリケーションスロットがない場合にWALレシーバが一時スロットを作成するかどうかを設定します。" -#: utils/misc/guc.c:2186 +#: utils/misc/guc.c:2187 msgid "Sets the amount of time to wait before forcing a switch to the next WAL file." msgstr "次のWALへの強制切り替え時間を設定します。" -#: utils/misc/guc.c:2197 +#: utils/misc/guc.c:2198 msgid "Sets the amount of time to wait after authentication on connection startup." msgstr "接続開始時の認証後の待ち時間を設定します。" -#: utils/misc/guc.c:2199 utils/misc/guc.c:2820 +#: utils/misc/guc.c:2200 utils/misc/guc.c:2821 msgid "This allows attaching a debugger to the process." msgstr "これによりデバッガがプロセスに接続できます。" -#: utils/misc/guc.c:2208 +#: utils/misc/guc.c:2209 msgid "Sets the default statistics target." msgstr "デフォルトの統計情報収集目標を設定。" -#: utils/misc/guc.c:2209 +#: utils/misc/guc.c:2210 msgid "This applies to table columns that have not had a column-specific target set via ALTER TABLE SET STATISTICS." msgstr "ALTER TABLE SET STATISTICS経由で列固有の目標値を持たないテーブル列についての統計情報収集目標を設定します。" -#: utils/misc/guc.c:2218 +#: utils/misc/guc.c:2219 msgid "Sets the FROM-list size beyond which subqueries are not collapsed." msgstr "副問い合わせを展開する上限のFROMリストのサイズを設定。" -#: utils/misc/guc.c:2220 +#: utils/misc/guc.c:2221 msgid "The planner will merge subqueries into upper queries if the resulting FROM list would have no more than this many items." msgstr "最終的なFROMリストがこの値より多くの要素を持たない時に、プランナは副問い合わせを上位問い合わせにマージします。" -#: utils/misc/guc.c:2231 +#: utils/misc/guc.c:2232 msgid "Sets the FROM-list size beyond which JOIN constructs are not flattened." msgstr "JOIN式を平坦化する上限のFROMリストのサイズを設定。" -#: utils/misc/guc.c:2233 +#: utils/misc/guc.c:2234 msgid "The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result." msgstr "最終的にFROMリストの項目数がこの値を超えない時には常に、プランナは明示的なJOIN構文をFROM項目のリストに組み込みます。" -#: utils/misc/guc.c:2244 +#: utils/misc/guc.c:2245 msgid "Sets the threshold of FROM items beyond which GEQO is used." msgstr "この数を超えるとGEQOを使用するFROM項目数の閾値を設定。" -#: utils/misc/guc.c:2254 +#: utils/misc/guc.c:2255 msgid "GEQO: effort is used to set the default for other GEQO parameters." msgstr "GEQO: effortは他のGEQOパラメータのデフォルトを設定するために使用されます。" -#: utils/misc/guc.c:2264 +#: utils/misc/guc.c:2265 msgid "GEQO: number of individuals in the population." msgstr "GEQO: 集団内の個体数。" -#: utils/misc/guc.c:2265 utils/misc/guc.c:2275 +#: utils/misc/guc.c:2266 utils/misc/guc.c:2276 msgid "Zero selects a suitable default value." msgstr "0は適切なデフォルト値を選択します。" -#: utils/misc/guc.c:2274 +#: utils/misc/guc.c:2275 msgid "GEQO: number of iterations of the algorithm." msgstr "GEQO: アルゴリズムの反復回数です。" -#: utils/misc/guc.c:2286 +#: utils/misc/guc.c:2287 msgid "Sets the time to wait on a lock before checking for deadlock." msgstr "デッドロック状態があるかどうかを調べる前にロックを待つ時間を設定。" -#: utils/misc/guc.c:2297 +#: utils/misc/guc.c:2298 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data." msgstr "ホットスタンバイサーバーがアーカイブされた WAL データを処理している場合は、問い合わせをキャンセルする前に遅延秒数の最大値を設定。" -#: utils/misc/guc.c:2308 +#: utils/misc/guc.c:2309 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data." msgstr "ホットスタンバイサーバーがストリームの WAL データを処理している場合は、問い合わせをキャンセルする前に遅延秒数の最大値を設定。" -#: utils/misc/guc.c:2319 +#: utils/misc/guc.c:2320 msgid "Sets the minimum delay for applying changes during recovery." msgstr "リカバリ中の変更の適用の最小遅延時間を設定します。" -#: utils/misc/guc.c:2330 +#: utils/misc/guc.c:2331 msgid "Sets the maximum interval between WAL receiver status reports to the sending server." msgstr "WAL受信プロセスが送出側サーバーへ行う状況報告の最大間隔を設定。" -#: utils/misc/guc.c:2341 +#: utils/misc/guc.c:2342 msgid "Sets the maximum wait time to receive data from the sending server." msgstr "送出側サーバーからのデータ受信を待機する最長時間を設定。" -#: utils/misc/guc.c:2352 +#: utils/misc/guc.c:2353 msgid "Sets the maximum number of concurrent connections." msgstr "同時接続数の最大値を設定。" -#: utils/misc/guc.c:2363 +#: utils/misc/guc.c:2364 msgid "Sets the number of connection slots reserved for superusers." msgstr "スーパーユーザーによる接続用に予約される接続スロットの数を設定。" -#: utils/misc/guc.c:2373 +#: utils/misc/guc.c:2374 msgid "Amount of dynamic shared memory reserved at startup." msgstr "起動時に予約される動的共有メモリの量。" -#: utils/misc/guc.c:2388 +#: utils/misc/guc.c:2389 msgid "Sets the number of shared memory buffers used by the server." msgstr "サーバーで使用される共有メモリのバッファ数を設定。" -#: utils/misc/guc.c:2399 +#: utils/misc/guc.c:2400 msgid "Shows the size of the server's main shared memory area (rounded up to the nearest MB)." msgstr "サーバーの主共有メモリ領域のサイズを表示します(MB単位に切り上げられます)" -#: utils/misc/guc.c:2410 +#: utils/misc/guc.c:2411 msgid "Shows the number of huge pages needed for the main shared memory area." msgstr "主共有メモリ領域に必要となるヒュージページの数を表示します。" -#: utils/misc/guc.c:2411 +#: utils/misc/guc.c:2412 msgid "-1 indicates that the value could not be determined." msgstr "-1はこの値が確定できなかったことを示します。" -#: utils/misc/guc.c:2421 +#: utils/misc/guc.c:2422 msgid "Sets the maximum number of temporary buffers used by each session." msgstr "各セッションで使用される一時バッファの最大数を設定。" -#: utils/misc/guc.c:2432 +#: utils/misc/guc.c:2433 msgid "Sets the TCP port the server listens on." msgstr "サーバーが接続を監視するTCPポートを設定。" -#: utils/misc/guc.c:2442 +#: utils/misc/guc.c:2443 msgid "Sets the access permissions of the Unix-domain socket." msgstr "Unixドメインソケットのアクセス権限を設定。" -#: utils/misc/guc.c:2443 +#: utils/misc/guc.c:2444 msgid "Unix-domain sockets use the usual Unix file system permission set. The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Unixドメインソケットは、通常のUnixファイルシステム権限の設定を使います。 このパラメータ値は chmod と umask システムコールが受け付ける数値のモード指定を想定しています(慣習的な8進数書式を使うためには、0(ゼロ)で始めなくてはなりません)。 " -#: utils/misc/guc.c:2457 +#: utils/misc/guc.c:2458 msgid "Sets the file permissions for log files." msgstr "ログファイルのパーミッションを設定。" -#: utils/misc/guc.c:2458 +#: utils/misc/guc.c:2459 msgid "The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "このパタメータ値は chmod や umask システムコールで使えるような数値モード指定であることが想定されます(慣習的な記法である8進数書式を使う場合は先頭に0(ゼロ) をつけてください)。 " -#: utils/misc/guc.c:2472 +#: utils/misc/guc.c:2473 msgid "Shows the mode of the data directory." msgstr "データディレクトリのモードを表示します。" -#: utils/misc/guc.c:2473 +#: utils/misc/guc.c:2474 msgid "The parameter value is a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "このパタメータ値は chmod や umask システムコールが受け付ける数値形式のモード指定です(慣習的な8進形式を使う場合は先頭に0(ゼロ) をつけてください)。 " -#: utils/misc/guc.c:2486 +#: utils/misc/guc.c:2487 msgid "Sets the maximum memory to be used for query workspaces." msgstr "問い合わせの作業用空間として使用されるメモリの最大値を設定。" -#: utils/misc/guc.c:2487 +#: utils/misc/guc.c:2488 msgid "This much memory can be used by each internal sort operation and hash table before switching to temporary disk files." msgstr "内部ソート操作とハッシュテーブルで使われるメモリの量がこの量に達した時に一時ディスクファイルへの切替えを行います。" -#: utils/misc/guc.c:2499 +#: utils/misc/guc.c:2500 msgid "Sets the maximum memory to be used for maintenance operations." msgstr "保守作業で使用される最大メモリ量を設定。" -#: utils/misc/guc.c:2500 +#: utils/misc/guc.c:2501 msgid "This includes operations such as VACUUM and CREATE INDEX." msgstr "VACUUMやCREATE INDEXなどの作業が含まれます。" -#: utils/misc/guc.c:2510 +#: utils/misc/guc.c:2511 msgid "Sets the maximum memory to be used for logical decoding." msgstr "論理デコーディングで使用するメモリ量の上限を設定します。" -#: utils/misc/guc.c:2511 +#: utils/misc/guc.c:2512 msgid "This much memory can be used by each internal reorder buffer before spilling to disk." msgstr "個々の内部リオーダバッファはディスクに書き出す前にこれだけの量のメモリを使用することができます。" -#: utils/misc/guc.c:2527 +#: utils/misc/guc.c:2528 msgid "Sets the maximum stack depth, in kilobytes." msgstr "スタック長の最大値をキロバイト単位で設定。" -#: utils/misc/guc.c:2538 +#: utils/misc/guc.c:2539 msgid "Limits the total size of all temporary files used by each process." msgstr "各プロセスで使用される全ての一時ファイルの合計サイズを制限します。" -#: utils/misc/guc.c:2539 +#: utils/misc/guc.c:2540 msgid "-1 means no limit." msgstr "-1は無制限を意味します。" -#: utils/misc/guc.c:2549 +#: utils/misc/guc.c:2550 msgid "Vacuum cost for a page found in the buffer cache." msgstr "バッファキャッシュにある1つのページをVACUUM処理する際のコスト。" -#: utils/misc/guc.c:2559 +#: utils/misc/guc.c:2560 msgid "Vacuum cost for a page not found in the buffer cache." msgstr "バッファキャッシュにない1つのページをVACUUM処理する際のコスト。" -#: utils/misc/guc.c:2569 +#: utils/misc/guc.c:2570 msgid "Vacuum cost for a page dirtied by vacuum." msgstr "VACUUM処理が1つのページをダーティにした際に課すコスト。" -#: utils/misc/guc.c:2579 +#: utils/misc/guc.c:2580 msgid "Vacuum cost amount available before napping." msgstr "VACUUM処理を一時休止させるまでに使用できるコスト。" -#: utils/misc/guc.c:2589 +#: utils/misc/guc.c:2590 msgid "Vacuum cost amount available before napping, for autovacuum." msgstr "自動VACUUM用のVACUUM処理を一時休止させるまでに使用できるコスト。" -#: utils/misc/guc.c:2599 +#: utils/misc/guc.c:2600 msgid "Sets the maximum number of simultaneously open files for each server process." msgstr "各サーバープロセスで同時にオープンできるファイルの最大数を設定。" -#: utils/misc/guc.c:2612 +#: utils/misc/guc.c:2613 msgid "Sets the maximum number of simultaneously prepared transactions." msgstr "同時に準備状態にできるトランザクションの最大数を設定。" -#: utils/misc/guc.c:2623 +#: utils/misc/guc.c:2624 msgid "Sets the minimum OID of tables for tracking locks." msgstr "ロックの追跡を行うテーブルの最小のOIDを設定。" -#: utils/misc/guc.c:2624 +#: utils/misc/guc.c:2625 msgid "Is used to avoid output on system tables." msgstr "システムテーブルに関するの出力を避けるために使います。" -#: utils/misc/guc.c:2633 +#: utils/misc/guc.c:2634 msgid "Sets the OID of the table with unconditionally lock tracing." msgstr "無条件でロックの追跡を行うテーブルのOIDを設定。" -#: utils/misc/guc.c:2645 +#: utils/misc/guc.c:2646 msgid "Sets the maximum allowed duration of any statement." msgstr "あらゆる文に対して実行時間として許容する上限値を設定。" -#: utils/misc/guc.c:2646 utils/misc/guc.c:2657 utils/misc/guc.c:2668 utils/misc/guc.c:2679 +#: utils/misc/guc.c:2647 utils/misc/guc.c:2658 utils/misc/guc.c:2669 utils/misc/guc.c:2680 msgid "A value of 0 turns off the timeout." msgstr "0でこのタイムアウトは無効になります。 " -#: utils/misc/guc.c:2656 +#: utils/misc/guc.c:2657 msgid "Sets the maximum allowed duration of any wait for a lock." msgstr "ロックの待機の最大許容時間を設定。" -#: utils/misc/guc.c:2667 +#: utils/misc/guc.c:2668 msgid "Sets the maximum allowed idle time between queries, when in a transaction." msgstr "問い合わせ間のアイドル時間のトランザクション内における最大許容値を設定。" -#: utils/misc/guc.c:2678 +#: utils/misc/guc.c:2679 msgid "Sets the maximum allowed idle time between queries, when not in a transaction." msgstr "問い合わせ間のアイドル時間のトランザクション外における最大許容値を設定。" -#: utils/misc/guc.c:2689 +#: utils/misc/guc.c:2690 msgid "Minimum age at which VACUUM should freeze a table row." msgstr "VACUUM にテーブル行の凍結をさせる最小のトランザクションID差分。" -#: utils/misc/guc.c:2699 +#: utils/misc/guc.c:2700 msgid "Age at which VACUUM should scan whole table to freeze tuples." msgstr "行の凍結のためのテーブル全体スキャンを強制させる時のトランザクションID差分。" -#: utils/misc/guc.c:2709 +#: utils/misc/guc.c:2710 msgid "Minimum age at which VACUUM should freeze a MultiXactId in a table row." msgstr "テーブル行でのマルチトランザクションIDの凍結を強制する最小のマルチトランザクション差分。" -#: utils/misc/guc.c:2719 +#: utils/misc/guc.c:2720 msgid "Multixact age at which VACUUM should scan whole table to freeze tuples." msgstr "行の凍結のためにテーブル全体スキャンを強制する時点のマルチトランザクション差分。" -#: utils/misc/guc.c:2729 +#: utils/misc/guc.c:2730 msgid "Number of transactions by which VACUUM and HOT cleanup should be deferred, if any." msgstr "設定していれば、VACUUMやHOTのクリーンアップを遅延させるトランザクション数。" -#: utils/misc/guc.c:2738 +#: utils/misc/guc.c:2739 msgid "Age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "VACUUMにおいて周回による停止を回避するためのフェイルセーフを実行されるまでの経過トランザクション数。" -#: utils/misc/guc.c:2747 +#: utils/misc/guc.c:2748 msgid "Multixact age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "VACUUMにおいて周回による停止を回避するためのフェイルセーフが実行されるまでの経過マルチトランザクション数。" -#: utils/misc/guc.c:2760 +#: utils/misc/guc.c:2761 msgid "Sets the maximum number of locks per transaction." msgstr "1トランザクション当たりのロック数の上限を設定。" -#: utils/misc/guc.c:2761 +#: utils/misc/guc.c:2762 msgid "The shared lock table is sized on the assumption that at most max_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "共有ロックテーブルの大きさは、最大max_locks_per_transaction * max_connections個の個別のオブジェクトがいかなる時点でもロックされる必要があるという仮定の下に決定されます。" -#: utils/misc/guc.c:2772 +#: utils/misc/guc.c:2773 msgid "Sets the maximum number of predicate locks per transaction." msgstr "1トランザクション当たりの述語ロック数の上限を設定。" -#: utils/misc/guc.c:2773 +#: utils/misc/guc.c:2774 msgid "The shared predicate lock table is sized on the assumption that at most max_pred_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "共有ロックテーブルの大きさは、最大 max_pred_locks_per_transaction * max_connections 個の個別のオブジェクトがいかなる時点でもロックされる必要があるという仮定の下に決められます。" -#: utils/misc/guc.c:2784 +#: utils/misc/guc.c:2785 msgid "Sets the maximum number of predicate-locked pages and tuples per relation." msgstr "1リレーション当たりで述語ロックされるページとタプルの数の上限値を設定。" -#: utils/misc/guc.c:2785 +#: utils/misc/guc.c:2786 msgid "If more than this total of pages and tuples in the same relation are locked by a connection, those locks are replaced by a relation-level lock." msgstr "あるコネクションで、同じリレーション内でロックされるページ数とタプル数の合計がこの値を超えたときには、これらのロックはリレーションレベルのロックに置き換えられます。" -#: utils/misc/guc.c:2795 +#: utils/misc/guc.c:2796 msgid "Sets the maximum number of predicate-locked tuples per page." msgstr "1ページあたりで述語ロックされるタプル数の上限値を設定。" -#: utils/misc/guc.c:2796 +#: utils/misc/guc.c:2797 msgid "If more than this number of tuples on the same page are locked by a connection, those locks are replaced by a page-level lock." msgstr "あるコネクションで 、同じページ上でロックされるタプルの数がこの値を超えたときには、これらのロックはページレベルのロックに置き換えられます。" -#: utils/misc/guc.c:2806 +#: utils/misc/guc.c:2807 msgid "Sets the maximum allowed time to complete client authentication." msgstr "クライアント認証の完了までの最大許容時間を設定。" -#: utils/misc/guc.c:2818 +#: utils/misc/guc.c:2819 msgid "Sets the amount of time to wait before authentication on connection startup." msgstr "接続開始時の認証前の待ち時間を設定します。" -#: utils/misc/guc.c:2830 +#: utils/misc/guc.c:2831 msgid "Buffer size for reading ahead in the WAL during recovery." msgstr "リカバリ中のWAL先読みバッファのサイズ。" -#: utils/misc/guc.c:2831 +#: utils/misc/guc.c:2832 msgid "Maximum distance to read ahead in the WAL to prefetch referenced data blocks." msgstr "被参照データブロックの事前読み込みのためのWAL先読みの最大量。" -#: utils/misc/guc.c:2841 +#: utils/misc/guc.c:2842 msgid "Sets the size of WAL files held for standby servers." msgstr "スタンバイサーバーのために確保するWALの量を設定します。" -#: utils/misc/guc.c:2852 +#: utils/misc/guc.c:2853 msgid "Sets the minimum size to shrink the WAL to." msgstr "WALを縮小させる際の最小のサイズを設定。" -#: utils/misc/guc.c:2864 +#: utils/misc/guc.c:2865 msgid "Sets the WAL size that triggers a checkpoint." msgstr "チェックポイントの契機となるWALのサイズを指定。" -#: utils/misc/guc.c:2876 +#: utils/misc/guc.c:2877 msgid "Sets the maximum time between automatic WAL checkpoints." msgstr "自動WALチェックポイントの最大間隔を設定。" -#: utils/misc/guc.c:2887 +#: utils/misc/guc.c:2888 msgid "Sets the maximum time before warning if checkpoints triggered by WAL volume happen too frequently." msgstr "WALの量契機のチェックポイントが高頻度で起きる場合に、警告を発するまでの回数を設定。" -#: utils/misc/guc.c:2889 +#: utils/misc/guc.c:2890 msgid "Write a message to the server log if checkpoints caused by the filling of WAL segment files happen more frequently than this amount of time. Zero turns off the warning." msgstr "チェックポイントセグメントファイルを使い切ることが原因で起きるチェックポイントがこの時間間隔よりも頻繁に発生する場合、サーバーログにメッセージを書き出します。ゼロはこの警告を無効にします。 " -#: utils/misc/guc.c:2902 utils/misc/guc.c:3120 utils/misc/guc.c:3168 +#: utils/misc/guc.c:2903 utils/misc/guc.c:3121 utils/misc/guc.c:3169 msgid "Number of pages after which previously performed writes are flushed to disk." msgstr "すでに実行された書き込みがディスクに書き出されるまでのページ数。" -#: utils/misc/guc.c:2913 +#: utils/misc/guc.c:2914 msgid "Sets the number of disk-page buffers in shared memory for WAL." msgstr "共有メモリ内に割り当てられた、WALデータ用のディスクページバッファ数を設定。" -#: utils/misc/guc.c:2924 +#: utils/misc/guc.c:2925 msgid "Time between WAL flushes performed in the WAL writer." msgstr "WALライタで実行する書き出しの時間間隔。" -#: utils/misc/guc.c:2935 +#: utils/misc/guc.c:2936 msgid "Amount of WAL written out by WAL writer that triggers a flush." msgstr "書き出しが実行されるまでにWALライタで出力するWALの量。" -#: utils/misc/guc.c:2946 +#: utils/misc/guc.c:2947 msgid "Minimum size of new file to fsync instead of writing WAL." msgstr "WALを出力する代わりにfsyncを使用する新規ファイルの最小サイズ。" -#: utils/misc/guc.c:2957 +#: utils/misc/guc.c:2958 msgid "Sets the maximum number of simultaneously running WAL sender processes." msgstr "WAL送信プロセスの最大同時実行数を設定。" -#: utils/misc/guc.c:2968 +#: utils/misc/guc.c:2969 msgid "Sets the maximum number of simultaneously defined replication slots." msgstr "同時に定義できるレプリケーションスロットの数の最大値を設定。" -#: utils/misc/guc.c:2978 +#: utils/misc/guc.c:2979 msgid "Sets the maximum WAL size that can be reserved by replication slots." msgstr "レプリケーションスロットで確保できるWALの量の最大値を設定します。" -#: utils/misc/guc.c:2979 +#: utils/misc/guc.c:2980 msgid "Replication slots will be marked as failed, and segments released for deletion or recycling, if this much space is occupied by WAL on disk." msgstr "ディスク内のWALがこの量に達すると、レプリケーションスロットは停止とマークされ、セグメントは削除あるいは再利用のために解放されます。" -#: utils/misc/guc.c:2991 +#: utils/misc/guc.c:2992 msgid "Sets the maximum time to wait for WAL replication." msgstr "WALレプリケーションを待つ時間の最大値を設定。" -#: utils/misc/guc.c:3002 +#: utils/misc/guc.c:3003 msgid "Sets the delay in microseconds between transaction commit and flushing WAL to disk." msgstr "トランザクションのコミットからWALのディスク書き出しまでの遅延時間をマイクロ秒単位で設定。" -#: utils/misc/guc.c:3014 +#: utils/misc/guc.c:3015 msgid "Sets the minimum number of concurrent open transactions required before performing commit_delay." msgstr "commit_delay の実行に必要となる、同時に開いているトランザクション数の最小値を設定。" -#: utils/misc/guc.c:3025 +#: utils/misc/guc.c:3026 msgid "Sets the number of digits displayed for floating-point values." msgstr "浮動小数点値の表示桁数を設定。" -#: utils/misc/guc.c:3026 +#: utils/misc/guc.c:3027 msgid "This affects real, double precision, and geometric data types. A zero or negative parameter value is added to the standard number of digits (FLT_DIG or DBL_DIG as appropriate). Any value greater than zero selects precise output mode." msgstr "このパラメータは、real、double precision、幾何データ型に影響します。ゼロまたは負のパラメータ値は標準的な桁数(FLT_DIG もしくは DBL_DIGどちらか適切な方)に追加されます。正の値は直接出力形式を指定します。" -#: utils/misc/guc.c:3038 +#: utils/misc/guc.c:3039 msgid "Sets the minimum execution time above which a sample of statements will be logged. Sampling is determined by log_statement_sample_rate." msgstr "文がログに出力される最小の実行時間を設定します。サンプリングについてはlog_statement_sample_rateで決定されます。" -#: utils/misc/guc.c:3041 +#: utils/misc/guc.c:3042 msgid "Zero logs a sample of all queries. -1 turns this feature off." msgstr "ゼロにすると全ての問い合わせを記録します。-1はこの機能を無効にします。" -#: utils/misc/guc.c:3051 +#: utils/misc/guc.c:3052 msgid "Sets the minimum execution time above which all statements will be logged." msgstr "全ての文のログを記録する最小の実行時間を設定。" -#: utils/misc/guc.c:3053 +#: utils/misc/guc.c:3054 msgid "Zero prints all queries. -1 turns this feature off." msgstr "ゼロにすると全ての問い合わせを出力します。-1はこの機能を無効にします。" -#: utils/misc/guc.c:3063 +#: utils/misc/guc.c:3064 msgid "Sets the minimum execution time above which autovacuum actions will be logged." msgstr "自動VACUUMの活動のログを記録する最小の実行時間を設定。" -#: utils/misc/guc.c:3065 +#: utils/misc/guc.c:3066 msgid "Zero prints all actions. -1 turns autovacuum logging off." msgstr "ゼロはすべての活動を出力します。-1は自動VACUUMのログ記録を無効にします。" -#: utils/misc/guc.c:3075 +#: utils/misc/guc.c:3076 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements." msgstr "問い合わせ文をログ出力する際に、出力するbindパラメータ値データの最大バイト数を設定。" -#: utils/misc/guc.c:3077 utils/misc/guc.c:3089 +#: utils/misc/guc.c:3078 utils/misc/guc.c:3090 msgid "-1 to print values in full." msgstr "-1 で値を全て出力します。" -#: utils/misc/guc.c:3087 +#: utils/misc/guc.c:3088 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements, on error." msgstr "エラー時の問い合わせ文をログ出力する際に、出力するbindパラメータ値データの最大バイト数を設定。" -#: utils/misc/guc.c:3099 +#: utils/misc/guc.c:3100 msgid "Background writer sleep time between rounds." msgstr "バックグランドライタの周期毎の待機時間" -#: utils/misc/guc.c:3110 +#: utils/misc/guc.c:3111 msgid "Background writer maximum number of LRU pages to flush per round." msgstr "バックグランドライタが1周期で書き出すLRUページ数の最大値。" -#: utils/misc/guc.c:3133 +#: utils/misc/guc.c:3134 msgid "Number of simultaneous requests that can be handled efficiently by the disk subsystem." msgstr "ディスクサブシステムが効率的に処理可能な同時並行リクエスト数" -#: utils/misc/guc.c:3151 +#: utils/misc/guc.c:3152 msgid "A variant of effective_io_concurrency that is used for maintenance work." msgstr " effective_io_concurrency の保守作業に使用される変種。" -#: utils/misc/guc.c:3181 +#: utils/misc/guc.c:3182 msgid "Maximum number of concurrent worker processes." msgstr "同時に実行されるワーカープロセス数の最大値です。" -#: utils/misc/guc.c:3193 +#: utils/misc/guc.c:3194 msgid "Maximum number of logical replication worker processes." msgstr "レプリケーションワーカープロセス数の最大値です。" -#: utils/misc/guc.c:3205 +#: utils/misc/guc.c:3206 msgid "Maximum number of table synchronization workers per subscription." msgstr "サブスクリプション毎のテーブル同期ワーカー数の最大値です。" -#: utils/misc/guc.c:3215 +#: utils/misc/guc.c:3216 msgid "Sets the amount of time to wait before forcing log file rotation." msgstr "ログファイルのローテーションを行う時間間隔を設定します。" -#: utils/misc/guc.c:3227 +#: utils/misc/guc.c:3228 msgid "Sets the maximum size a log file can reach before being rotated." msgstr "ローテートされるまでに許容するログファイルの最大サイズを設定します。" -#: utils/misc/guc.c:3239 +#: utils/misc/guc.c:3240 msgid "Shows the maximum number of function arguments." msgstr "関数の引数の最大数を示します。" -#: utils/misc/guc.c:3250 +#: utils/misc/guc.c:3251 msgid "Shows the maximum number of index keys." msgstr "インデックスキーの最大数を示します。" -#: utils/misc/guc.c:3261 +#: utils/misc/guc.c:3262 msgid "Shows the maximum identifier length." msgstr "識別子の最大長を示します。" -#: utils/misc/guc.c:3272 +#: utils/misc/guc.c:3273 msgid "Shows the size of a disk block." msgstr "ディスクブロックサイズを示します。" -#: utils/misc/guc.c:3283 +#: utils/misc/guc.c:3284 msgid "Shows the number of pages per disk file." msgstr "ディスクファイルごとのページ数を表示します。" -#: utils/misc/guc.c:3294 +#: utils/misc/guc.c:3295 msgid "Shows the block size in the write ahead log." msgstr "先行書き込みログ(WAL)におけるブロックサイズを表示します" -#: utils/misc/guc.c:3305 +#: utils/misc/guc.c:3306 msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgstr "WALの取り出しの失敗後に再試行する回数を設定。" -#: utils/misc/guc.c:3317 +#: utils/misc/guc.c:3318 msgid "Shows the size of write ahead log segments." msgstr "先行書き込みログ(WAL)セグメントのサイズを表示します" -#: utils/misc/guc.c:3330 +#: utils/misc/guc.c:3331 msgid "Time to sleep between autovacuum runs." msgstr "自動VACUUMの実行開始間隔。" -#: utils/misc/guc.c:3340 +#: utils/misc/guc.c:3341 msgid "Minimum number of tuple updates or deletes prior to vacuum." msgstr "VACUUMを行うまでの、タプルを更新または削除した回数の最小値。" -#: utils/misc/guc.c:3349 +#: utils/misc/guc.c:3350 msgid "Minimum number of tuple inserts prior to vacuum, or -1 to disable insert vacuums." msgstr "VACUUMが行われるまでの行挿入の回数の最小値、-1で挿入契機のVACUUMを無効化します。" -#: utils/misc/guc.c:3358 +#: utils/misc/guc.c:3359 msgid "Minimum number of tuple inserts, updates, or deletes prior to analyze." msgstr "ANALYZEが実行されるまでの、タプルを挿入、更新、削除した回数の最小値。" -#: utils/misc/guc.c:3368 +#: utils/misc/guc.c:3369 msgid "Age at which to autovacuum a table to prevent transaction ID wraparound." msgstr "トランザクションID周回を防ぐためにテーブルを自動VACUUMする時点のトランザクションID差分。" -#: utils/misc/guc.c:3380 +#: utils/misc/guc.c:3381 msgid "Multixact age at which to autovacuum a table to prevent multixact wraparound." msgstr "マルチトランザクション周回を防止するためにテーブルを自動VACUUMする、マルチトランザクション差分。" -#: utils/misc/guc.c:3390 +#: utils/misc/guc.c:3391 msgid "Sets the maximum number of simultaneously running autovacuum worker processes." msgstr "自動VACUUMのワーカープロセスの最大同時実行数を設定。" -#: utils/misc/guc.c:3400 +#: utils/misc/guc.c:3401 msgid "Sets the maximum number of parallel processes per maintenance operation." msgstr "ひとつの保守作業に割り当てる並列処理プロセスの数の最大値を設定。" -#: utils/misc/guc.c:3410 +#: utils/misc/guc.c:3411 msgid "Sets the maximum number of parallel processes per executor node." msgstr "エグゼキュータノードあたりの並列処理プロセスの数の最大値を設定。" -#: utils/misc/guc.c:3421 +#: utils/misc/guc.c:3422 msgid "Sets the maximum number of parallel workers that can be active at one time." msgstr "同時に活動可能な並列処理ワーカーの数の最大値を設定。" -#: utils/misc/guc.c:3432 +#: utils/misc/guc.c:3433 msgid "Sets the maximum memory to be used by each autovacuum worker process." msgstr "自動VACUUMプロセスで使用するメモリ量の最大値を設定。" -#: utils/misc/guc.c:3443 +#: utils/misc/guc.c:3444 msgid "Time before a snapshot is too old to read pages changed after the snapshot was taken." msgstr "スナップショット取得後、更新されたページが読み取れなくなるまでの時間。" -#: utils/misc/guc.c:3444 +#: utils/misc/guc.c:3445 msgid "A value of -1 disables this feature." msgstr "-1でこの機能を無効にします。" -#: utils/misc/guc.c:3454 +#: utils/misc/guc.c:3455 msgid "Time between issuing TCP keepalives." msgstr "TCPキープアライブを発行する時間間隔。" -#: utils/misc/guc.c:3455 utils/misc/guc.c:3466 utils/misc/guc.c:3590 +#: utils/misc/guc.c:3456 utils/misc/guc.c:3467 utils/misc/guc.c:3591 msgid "A value of 0 uses the system default." msgstr "0でシステムのデフォルトを使用します。" -#: utils/misc/guc.c:3465 +#: utils/misc/guc.c:3466 msgid "Time between TCP keepalive retransmits." msgstr "TCPキープアライブの再送信の時間間隔。" -#: utils/misc/guc.c:3476 +#: utils/misc/guc.c:3477 msgid "SSL renegotiation is no longer supported; this can only be 0." msgstr "SSLの再ネゴシエーションは今後サポートされません; 0のみに設定可能です。" -#: utils/misc/guc.c:3487 +#: utils/misc/guc.c:3488 msgid "Maximum number of TCP keepalive retransmits." msgstr "TCPキープアライブの再送信回数の最大値です。" -#: utils/misc/guc.c:3488 +#: utils/misc/guc.c:3489 msgid "Number of consecutive keepalive retransmits that can be lost before a connection is considered dead. A value of 0 uses the system default." msgstr "接続が失われると判断するまでに再送信される、ひとつづきのキープアライブの数。0の場合はシステムのデフォルトを使用します。" -#: utils/misc/guc.c:3499 +#: utils/misc/guc.c:3500 msgid "Sets the maximum allowed result for exact search by GIN." msgstr "GINによる正確な検索に対して許容する結果数の最大値を設定。" -#: utils/misc/guc.c:3510 +#: utils/misc/guc.c:3511 msgid "Sets the planner's assumption about the total size of the data caches." msgstr "プランナが想定するデータキャッシュ全体のサイズを設定。" -#: utils/misc/guc.c:3511 +#: utils/misc/guc.c:3512 msgid "That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. This is measured in disk pages, which are normally 8 kB each." msgstr "つまり、PostgreSQLのデータファイルに対して使用されるキャッシュ(カーネルキャッシュおよび共有バッファ)全体の量です。これは通常8KBのディスクページを単位とします。" -#: utils/misc/guc.c:3522 +#: utils/misc/guc.c:3523 msgid "Sets the minimum amount of table data for a parallel scan." msgstr "並列スキャンを検討するテーブルデータの量の最小値を設定。" -#: utils/misc/guc.c:3523 +#: utils/misc/guc.c:3524 msgid "If the planner estimates that it will read a number of table pages too small to reach this limit, a parallel scan will not be considered." msgstr "この限度に到達できないような少ないテーブルページ数しか読み取らないとプランナが見積もった場合、並列スキャンは検討されません。" -#: utils/misc/guc.c:3533 +#: utils/misc/guc.c:3534 msgid "Sets the minimum amount of index data for a parallel scan." msgstr "並列スキャンを検討するインデックスデータの量の最小値を設定。" -#: utils/misc/guc.c:3534 +#: utils/misc/guc.c:3535 msgid "If the planner estimates that it will read a number of index pages too small to reach this limit, a parallel scan will not be considered." msgstr "この限度に到達できないような少ないページ数しか読み取らないとプランナが見積もった場合、並列スキャンは検討されません。" -#: utils/misc/guc.c:3545 +#: utils/misc/guc.c:3546 msgid "Shows the server version as an integer." msgstr "サーバーのバージョンを整数値で表示します。" -#: utils/misc/guc.c:3556 +#: utils/misc/guc.c:3557 msgid "Log the use of temporary files larger than this number of kilobytes." msgstr "このキロバイト数よりも大きな一時ファイルの使用をログに記録します。" -#: utils/misc/guc.c:3557 +#: utils/misc/guc.c:3558 msgid "Zero logs all files. The default is -1 (turning this feature off)." msgstr "ゼロにすると、全てのファイルを記録します。デフォルトは-1です(この機能を無効にします)。" -#: utils/misc/guc.c:3567 +#: utils/misc/guc.c:3568 msgid "Sets the size reserved for pg_stat_activity.query, in bytes." msgstr "pg_stat_activity.queryのために予約するサイズをバイト単位で設定。" -#: utils/misc/guc.c:3578 +#: utils/misc/guc.c:3579 msgid "Sets the maximum size of the pending list for GIN index." msgstr "GINインデックスの保留リストの最大サイズを設定。" -#: utils/misc/guc.c:3589 +#: utils/misc/guc.c:3590 msgid "TCP user timeout." msgstr "TCPユーザータイムアウト。" -#: utils/misc/guc.c:3600 +#: utils/misc/guc.c:3601 msgid "The size of huge page that should be requested." msgstr "要求が見込まれるヒュージページのサイズ。" -#: utils/misc/guc.c:3611 +#: utils/misc/guc.c:3612 msgid "Aggressively flush system caches for debugging purposes." msgstr "デバッグ目的のために積極的にシステムキャッシュを消去する。" -#: utils/misc/guc.c:3634 +#: utils/misc/guc.c:3635 msgid "Sets the time interval between checks for disconnection while running queries." msgstr "問い合わせ実行中に接続確認を行う時間間隔を設定します。" -#: utils/misc/guc.c:3645 +#: utils/misc/guc.c:3646 msgid "Time between progress updates for long-running startup operations." msgstr "起動処理が長引いた際のステータス更新の時間間隔。" -#: utils/misc/guc.c:3647 +#: utils/misc/guc.c:3648 msgid "0 turns this feature off." msgstr "ゼロにするとこの機能を無効にします。" -#: utils/misc/guc.c:3666 +#: utils/misc/guc.c:3667 msgid "Sets the planner's estimate of the cost of a sequentially fetched disk page." msgstr "ひと続きに読み込むディスクページについてプランナで使用する見積もりコストを設定。" -#: utils/misc/guc.c:3677 +#: utils/misc/guc.c:3678 msgid "Sets the planner's estimate of the cost of a nonsequentially fetched disk page." msgstr "ひと続きでは読み込めないディスクページについてプランナで使用する見積もりコストを設定。" -#: utils/misc/guc.c:3688 +#: utils/misc/guc.c:3689 msgid "Sets the planner's estimate of the cost of processing each tuple (row)." msgstr "一つのタプル(行)の処理についてプランナで使用する見積もりコストを設定。" -#: utils/misc/guc.c:3699 +#: utils/misc/guc.c:3700 msgid "Sets the planner's estimate of the cost of processing each index entry during an index scan." msgstr "インデックススキャンにおける一つのインデックスエントリの処理についてプランナで使用する見積もりコストを設定。 " -#: utils/misc/guc.c:3710 +#: utils/misc/guc.c:3711 msgid "Sets the planner's estimate of the cost of processing each operator or function call." msgstr "一つの演算子または関数の処理についてプランナで使用する見積もりコストを設定。" -#: utils/misc/guc.c:3721 +#: utils/misc/guc.c:3722 msgid "Sets the planner's estimate of the cost of passing each tuple (row) from worker to leader backend." msgstr "並列処理ワーカーからリーダーバックエンドへの一つのタプル(行)の受け渡しについてプランナが使用する見積もりコストを設定。" -#: utils/misc/guc.c:3732 +#: utils/misc/guc.c:3733 msgid "Sets the planner's estimate of the cost of starting up worker processes for parallel query." msgstr "並列問い合わせ実行のためのワーカープロセスの起動についてプランナで使用する見積もりコストを設定。" -#: utils/misc/guc.c:3744 +#: utils/misc/guc.c:3745 msgid "Perform JIT compilation if query is more expensive." msgstr "問い合わせがこの値より高コストであればJITコンパイルを実行します。" -#: utils/misc/guc.c:3745 +#: utils/misc/guc.c:3746 msgid "-1 disables JIT compilation." msgstr "-1 でJITコンパイルを禁止します。" -#: utils/misc/guc.c:3755 +#: utils/misc/guc.c:3756 msgid "Optimize JIT-compiled functions if query is more expensive." msgstr "問い合わせがこの値より高コストであればJITコンパイルされた関数を最適化します。" -#: utils/misc/guc.c:3756 +#: utils/misc/guc.c:3757 msgid "-1 disables optimization." msgstr "-1で最適化を行わなくなります。" -#: utils/misc/guc.c:3766 +#: utils/misc/guc.c:3767 msgid "Perform JIT inlining if query is more expensive." msgstr "問い合わせがこの値より高コストであればJITコンパイルされた関数をインライン化します。" -#: utils/misc/guc.c:3767 +#: utils/misc/guc.c:3768 msgid "-1 disables inlining." msgstr "-1 でインライン化を禁止します。" -#: utils/misc/guc.c:3777 +#: utils/misc/guc.c:3778 msgid "Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved." msgstr "カーソルから取り出される行数の全行に対する割合についてプランナで使用する値を設定。" -#: utils/misc/guc.c:3789 +#: utils/misc/guc.c:3790 msgid "Sets the planner's estimate of the average size of a recursive query's working table." msgstr "再帰問い合わせでプランナが使用する中間テーブルの平均見積もりサイズを設定します。" -#: utils/misc/guc.c:3801 +#: utils/misc/guc.c:3802 msgid "GEQO: selective pressure within the population." msgstr "GEQO: 集合内の選択圧力。" -#: utils/misc/guc.c:3812 +#: utils/misc/guc.c:3813 msgid "GEQO: seed for random path selection." msgstr "GEQO: ランダムパス選択用のシード" -#: utils/misc/guc.c:3823 +#: utils/misc/guc.c:3824 msgid "Multiple of work_mem to use for hash tables." msgstr "ハッシュテーブルで使用するwork_memの倍率。" -#: utils/misc/guc.c:3834 +#: utils/misc/guc.c:3835 msgid "Multiple of the average buffer usage to free per round." msgstr "周期ごとに解放するバッファ数の平均バッファ使用量に対する倍数" -#: utils/misc/guc.c:3844 +#: utils/misc/guc.c:3845 msgid "Sets the seed for random-number generation." msgstr "乱数生成用のシードを設定。" -#: utils/misc/guc.c:3855 +#: utils/misc/guc.c:3856 msgid "Vacuum cost delay in milliseconds." msgstr "ミリ秒単位のコストベースのVACUUM処理の遅延時間です。" -#: utils/misc/guc.c:3866 +#: utils/misc/guc.c:3867 msgid "Vacuum cost delay in milliseconds, for autovacuum." msgstr "自動VACUUM用のミリ秒単位のコストベースのVACUUM処理の遅延時間です。" -#: utils/misc/guc.c:3877 +#: utils/misc/guc.c:3878 msgid "Number of tuple updates or deletes prior to vacuum as a fraction of reltuples." msgstr "VACUUMが実行されるまでのタプルの更新または削除回数のreltuplesに対する割合。" -#: utils/misc/guc.c:3887 +#: utils/misc/guc.c:3888 msgid "Number of tuple inserts prior to vacuum as a fraction of reltuples." msgstr "VACUUMが実行されるまでのタプルの挿入行数のreltuplesに対する割合。" -#: utils/misc/guc.c:3897 +#: utils/misc/guc.c:3898 msgid "Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples." msgstr "ANALYZEが実行されるまでのタプルの更新または削除回数のreltuplesに対する割合。" -#: utils/misc/guc.c:3907 +#: utils/misc/guc.c:3908 msgid "Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval." msgstr "チェックポイント中にダーティバッファの書き出しに使う時間のチェックポイント間隔に対する割合。" -#: utils/misc/guc.c:3917 +#: utils/misc/guc.c:3918 msgid "Fraction of statements exceeding log_min_duration_sample to be logged." msgstr "log_min_duration_sampleを超過した文のうちログ出力を行う割合。" -#: utils/misc/guc.c:3918 +#: utils/misc/guc.c:3919 msgid "Use a value between 0.0 (never log) and 1.0 (always log)." msgstr "0.0(ログ出力しない)から1.0(すべてログ出力する)の間の値を指定してください。" -#: utils/misc/guc.c:3927 +#: utils/misc/guc.c:3928 msgid "Sets the fraction of transactions from which to log all statements." msgstr "すべての文をログ出力するトランザクションの割合を設定します。" -#: utils/misc/guc.c:3928 +#: utils/misc/guc.c:3929 msgid "Use a value between 0.0 (never log) and 1.0 (log all statements for all transactions)." msgstr "0.0 (ログ出力しない)から 1.0 (全てのトランザクションの全ての文をログ出力する)の間の値を指定してください。" # hoge -#: utils/misc/guc.c:3947 +#: utils/misc/guc.c:3948 msgid "Sets the shell command that will be called to archive a WAL file." msgstr "WALファイルの保管のために呼び出されるシェルスクリプトを設定。" -#: utils/misc/guc.c:3948 +#: utils/misc/guc.c:3949 msgid "This is used only if \"archive_library\" is not set." msgstr "これは\"archive_library\"が設定されていない場合にのみ使用されます。" # hoge -#: utils/misc/guc.c:3957 +#: utils/misc/guc.c:3958 msgid "Sets the library that will be called to archive a WAL file." msgstr "WALファイルのアーカイブのために呼び出すライブラリを設定します。" -#: utils/misc/guc.c:3958 +#: utils/misc/guc.c:3959 msgid "An empty string indicates that \"archive_command\" should be used." msgstr "空文字列で\"archive_command\"を使用することを示します。" # hoge -#: utils/misc/guc.c:3967 +#: utils/misc/guc.c:3968 msgid "Sets the shell command that will be called to retrieve an archived WAL file." msgstr "アーカイブされたWALファイルを取り出すために呼び出すシェルコマンドを設定します。" # hoge -#: utils/misc/guc.c:3977 +#: utils/misc/guc.c:3978 msgid "Sets the shell command that will be executed at every restart point." msgstr "リスタートポイントの時に実行するシェルコマンドを設定。" # hoge -#: utils/misc/guc.c:3987 +#: utils/misc/guc.c:3988 msgid "Sets the shell command that will be executed once at the end of recovery." msgstr "リカバリ終了時に1度だけ実行されるシェルコマンドを設定。" -#: utils/misc/guc.c:3997 +#: utils/misc/guc.c:3998 msgid "Specifies the timeline to recover into." msgstr "リカバリの目標タイムラインを指定します。" -#: utils/misc/guc.c:4007 +#: utils/misc/guc.c:4008 msgid "Set to \"immediate\" to end recovery as soon as a consistent state is reached." msgstr "\"immediate\"を指定すると一貫性が確保できた時点でリカバリを終了します。" -#: utils/misc/guc.c:4016 +#: utils/misc/guc.c:4017 msgid "Sets the transaction ID up to which recovery will proceed." msgstr "リカバリを指定したトランザクションIDまで進めます。" -#: utils/misc/guc.c:4025 +#: utils/misc/guc.c:4026 msgid "Sets the time stamp up to which recovery will proceed." msgstr "リカバリを指定したタイムスタンプの時刻まで進めます。" -#: utils/misc/guc.c:4034 +#: utils/misc/guc.c:4035 msgid "Sets the named restore point up to which recovery will proceed." msgstr "リカバリを指定した名前のリストアポイントまで進めます。" -#: utils/misc/guc.c:4043 +#: utils/misc/guc.c:4044 msgid "Sets the LSN of the write-ahead log location up to which recovery will proceed." msgstr "リカバリを先行書き込みログの指定したLSNまで進めます。" -#: utils/misc/guc.c:4053 +#: utils/misc/guc.c:4054 msgid "Specifies a file name whose presence ends recovery in the standby." msgstr "作成することでスタンバイでのリカバリを終了させるファイルの名前を指定します。" -#: utils/misc/guc.c:4063 +#: utils/misc/guc.c:4064 msgid "Sets the connection string to be used to connect to the sending server." msgstr "送出側サーバーへの接続に使用する接続文字列をしています。" -#: utils/misc/guc.c:4074 +#: utils/misc/guc.c:4075 msgid "Sets the name of the replication slot to use on the sending server." msgstr "送出サーバーで使用するレプリケーションスロットの名前を設定。" -#: utils/misc/guc.c:4084 +#: utils/misc/guc.c:4085 msgid "Sets the client's character set encoding." msgstr "クライアントの文字集合の符号化方式を設定。" -#: utils/misc/guc.c:4095 +#: utils/misc/guc.c:4096 msgid "Controls information prefixed to each log line." msgstr "各ログ行の前に付ける情報を制御します。" -#: utils/misc/guc.c:4096 +#: utils/misc/guc.c:4097 msgid "If blank, no prefix is used." msgstr "もし空であればなにも付加しません。" -#: utils/misc/guc.c:4105 +#: utils/misc/guc.c:4106 msgid "Sets the time zone to use in log messages." msgstr "ログメッセージ使用するタイムゾーンを設定。" -#: utils/misc/guc.c:4115 +#: utils/misc/guc.c:4116 msgid "Sets the display format for date and time values." msgstr "日付時刻値の表示用書式を設定。" -#: utils/misc/guc.c:4116 +#: utils/misc/guc.c:4117 msgid "Also controls interpretation of ambiguous date inputs." msgstr "曖昧な日付の入力の解釈も制御します。" -#: utils/misc/guc.c:4127 +#: utils/misc/guc.c:4128 msgid "Sets the default table access method for new tables." msgstr "新規テーブルで使用されるデフォルトテーブルアクセスメソッドを設定。" -#: utils/misc/guc.c:4138 +#: utils/misc/guc.c:4139 msgid "Sets the default tablespace to create tables and indexes in." msgstr "テーブルとインデックスの作成先となるデフォルトのテーブル空間を設定。" -#: utils/misc/guc.c:4139 +#: utils/misc/guc.c:4140 msgid "An empty string selects the database's default tablespace." msgstr "空文字列はデータベースのデフォルトのテーブル空間を選択します。" -#: utils/misc/guc.c:4149 +#: utils/misc/guc.c:4150 msgid "Sets the tablespace(s) to use for temporary tables and sort files." msgstr "一時テーブルとファイルのソートで使用されるテーブル空間を設定。" -#: utils/misc/guc.c:4160 +#: utils/misc/guc.c:4161 msgid "Sets the path for dynamically loadable modules." msgstr "動的ロード可能モジュールのパスを設定。" -#: utils/misc/guc.c:4161 +#: utils/misc/guc.c:4162 msgid "If a dynamically loadable module needs to be opened and the specified name does not have a directory component (i.e., the name does not contain a slash), the system will search this path for the specified file." msgstr "オープンする必要がある動的ロード可能なモジュールについて、指定されたファイル名にディレクトリ要素がない(つまり、名前にスラッシュが含まれない)場合、システムは指定されたファイルをこのパスから検索します。 " -#: utils/misc/guc.c:4174 +#: utils/misc/guc.c:4175 msgid "Sets the location of the Kerberos server key file." msgstr "Kerberosサーバーキーファイルの場所を設定。" -#: utils/misc/guc.c:4185 +#: utils/misc/guc.c:4186 msgid "Sets the Bonjour service name." msgstr "Bonjour サービス名を設定。" -#: utils/misc/guc.c:4197 +#: utils/misc/guc.c:4198 msgid "Shows the collation order locale." msgstr "テキストデータのソート時に使用されるロケールを表示します。" -#: utils/misc/guc.c:4208 +#: utils/misc/guc.c:4209 msgid "Shows the character classification and case conversion locale." msgstr "文字クラス分類、大文字小文字変換を決定するロケールを表示します。" -#: utils/misc/guc.c:4219 +#: utils/misc/guc.c:4220 msgid "Sets the language in which messages are displayed." msgstr "表示用メッセージの言語を設定。" -#: utils/misc/guc.c:4229 +#: utils/misc/guc.c:4230 msgid "Sets the locale for formatting monetary amounts." msgstr "通貨書式で使用するロケールを設定。 " -#: utils/misc/guc.c:4239 +#: utils/misc/guc.c:4240 msgid "Sets the locale for formatting numbers." msgstr "数字の書式で使用するロケールを設定。" -#: utils/misc/guc.c:4249 +#: utils/misc/guc.c:4250 msgid "Sets the locale for formatting date and time values." msgstr "日付と時間の書式で使用するロケールを設定。" -#: utils/misc/guc.c:4259 +#: utils/misc/guc.c:4260 msgid "Lists shared libraries to preload into each backend." msgstr "各バックエンドに事前ロードする共有ライブラリを列挙します。" -#: utils/misc/guc.c:4270 +#: utils/misc/guc.c:4271 msgid "Lists shared libraries to preload into server." msgstr "サーバーに事前ロードする共有ライブラリを列挙します。" -#: utils/misc/guc.c:4281 +#: utils/misc/guc.c:4282 msgid "Lists unprivileged shared libraries to preload into each backend." msgstr "各バックエンドに事前読み込みする非特権共有ライブラリを列挙します。" -#: utils/misc/guc.c:4292 +#: utils/misc/guc.c:4293 msgid "Sets the schema search order for names that are not schema-qualified." msgstr "スキーマ部を含まない名前に対するスキーマの検索順を設定。" -#: utils/misc/guc.c:4304 +#: utils/misc/guc.c:4305 msgid "Shows the server (database) character set encoding." msgstr "サーバー(データベース)文字セット符号化方式を表示します。" -#: utils/misc/guc.c:4316 +#: utils/misc/guc.c:4317 msgid "Shows the server version." msgstr "サーバーのバージョンを表示します。" -#: utils/misc/guc.c:4328 +#: utils/misc/guc.c:4329 msgid "Sets the current role." msgstr "現在のロールを設定。" -#: utils/misc/guc.c:4340 +#: utils/misc/guc.c:4341 msgid "Sets the session user name." msgstr "セッションユーザー名を設定。" -#: utils/misc/guc.c:4351 +#: utils/misc/guc.c:4352 msgid "Sets the destination for server log output." msgstr "サーバーログの出力先を設定。" -#: utils/misc/guc.c:4352 +#: utils/misc/guc.c:4353 msgid "Valid values are combinations of \"stderr\", \"syslog\", \"csvlog\", \"jsonlog\", and \"eventlog\", depending on the platform." msgstr "有効な値は、プラットフォームに依存しますが\"stderr\"、\"syslog\"、\"csvlog\"、\"jsonlog\"そして\"eventlog\"の組み合わせです。" -#: utils/misc/guc.c:4363 +#: utils/misc/guc.c:4364 msgid "Sets the destination directory for log files." msgstr "ログファイルの格納ディレクトリを設定。" -#: utils/misc/guc.c:4364 +#: utils/misc/guc.c:4365 msgid "Can be specified as relative to the data directory or as absolute path." msgstr "データディレクトリからの相対パスでも絶対パスでも指定できます" -#: utils/misc/guc.c:4374 +#: utils/misc/guc.c:4375 msgid "Sets the file name pattern for log files." msgstr "ログファイルのファイル名パターンを設定。" -#: utils/misc/guc.c:4385 +#: utils/misc/guc.c:4386 msgid "Sets the program name used to identify PostgreSQL messages in syslog." msgstr "syslog内でPostgreSQLのメッセージを識別するために使用されるプログラム名を設定。" -#: utils/misc/guc.c:4396 +#: utils/misc/guc.c:4397 msgid "Sets the application name used to identify PostgreSQL messages in the event log." msgstr "イベントログ内でPostgreSQLのメッセージを識別するために使用されるアプリケーション名を設定。" -#: utils/misc/guc.c:4407 +#: utils/misc/guc.c:4408 msgid "Sets the time zone for displaying and interpreting time stamps." msgstr "タイムスタンプの表示と解釈に使用するタイムゾーンを設定。" -#: utils/misc/guc.c:4417 +#: utils/misc/guc.c:4418 msgid "Selects a file of time zone abbreviations." msgstr "タイムゾーン省略形用のファイルを選択します。" -#: utils/misc/guc.c:4427 +#: utils/misc/guc.c:4428 msgid "Sets the owning group of the Unix-domain socket." msgstr "Unixドメインソケットを所有するグループを設定。" -#: utils/misc/guc.c:4428 +#: utils/misc/guc.c:4429 msgid "The owning user of the socket is always the user that starts the server." msgstr "ソケットを所有するユーザーは常にサーバーを開始したユーザーです。" -#: utils/misc/guc.c:4438 +#: utils/misc/guc.c:4439 msgid "Sets the directories where Unix-domain sockets will be created." msgstr "Unixドメインソケットの作成先ディレクトリを設定。" -#: utils/misc/guc.c:4453 +#: utils/misc/guc.c:4454 msgid "Sets the host name or IP address(es) to listen to." msgstr "接続を監視するホスト名またはIPアドレスを設定。" -#: utils/misc/guc.c:4468 +#: utils/misc/guc.c:4469 msgid "Sets the server's data directory." msgstr "サーバーのデータディレクトリを設定。" -#: utils/misc/guc.c:4479 +#: utils/misc/guc.c:4480 msgid "Sets the server's main configuration file." msgstr "サーバーのメイン設定ファイルを設定。" -#: utils/misc/guc.c:4490 +#: utils/misc/guc.c:4491 msgid "Sets the server's \"hba\" configuration file." msgstr "サーバーの\"hba\"設定ファイルを設定。" -#: utils/misc/guc.c:4501 +#: utils/misc/guc.c:4502 msgid "Sets the server's \"ident\" configuration file." msgstr "サーバーの\"ident\"設定ファイルを設定。" -#: utils/misc/guc.c:4512 +#: utils/misc/guc.c:4513 msgid "Writes the postmaster PID to the specified file." msgstr "postmasterのPIDを指定したファイルに書き込みます。" -#: utils/misc/guc.c:4523 +#: utils/misc/guc.c:4524 msgid "Shows the name of the SSL library." msgstr "SSLライブラリの名前を表示します。" -#: utils/misc/guc.c:4538 +#: utils/misc/guc.c:4539 msgid "Location of the SSL server certificate file." msgstr "SSLサーバー証明書ファイルの場所です" -#: utils/misc/guc.c:4548 +#: utils/misc/guc.c:4549 msgid "Location of the SSL server private key file." msgstr "SSLサーバー秘密鍵ファイルの場所です。" -#: utils/misc/guc.c:4558 +#: utils/misc/guc.c:4559 msgid "Location of the SSL certificate authority file." msgstr "SSL認証局ファイルの場所です" -#: utils/misc/guc.c:4568 +#: utils/misc/guc.c:4569 msgid "Location of the SSL certificate revocation list file." msgstr "SSL証明書失効リストファイルの場所です。" -#: utils/misc/guc.c:4578 +#: utils/misc/guc.c:4579 msgid "Location of the SSL certificate revocation list directory." msgstr "SSL証明書失効リストディレクトリの場所です。" -#: utils/misc/guc.c:4588 +#: utils/misc/guc.c:4589 msgid "Number of synchronous standbys and list of names of potential synchronous ones." msgstr "同期スタンバイの数と同期スタンバイ候補の名前の一覧。" -#: utils/misc/guc.c:4599 +#: utils/misc/guc.c:4600 msgid "Sets default text search configuration." msgstr "デフォルトのテキスト検索設定を設定します。" -#: utils/misc/guc.c:4609 +#: utils/misc/guc.c:4610 msgid "Sets the list of allowed SSL ciphers." msgstr "SSL暗号として許されるリストを設定。" -#: utils/misc/guc.c:4624 +#: utils/misc/guc.c:4625 msgid "Sets the curve to use for ECDH." msgstr "ECDHで使用する曲線を設定。" -#: utils/misc/guc.c:4639 +#: utils/misc/guc.c:4640 msgid "Location of the SSL DH parameters file." msgstr "SSLのDHパラメータファイルの場所です。" -#: utils/misc/guc.c:4650 +#: utils/misc/guc.c:4651 msgid "Command to obtain passphrases for SSL." msgstr "SSLのパスフレーズを取得するコマンド。" -#: utils/misc/guc.c:4661 +#: utils/misc/guc.c:4662 msgid "Sets the application name to be reported in statistics and logs." msgstr "統計やログで報告されるアプリケーション名を設定。" -#: utils/misc/guc.c:4672 +#: utils/misc/guc.c:4673 msgid "Sets the name of the cluster, which is included in the process title." msgstr "プロセスのタイトルに含まれるクラスタ名を指定。" -#: utils/misc/guc.c:4683 +#: utils/misc/guc.c:4684 msgid "Sets the WAL resource managers for which WAL consistency checks are done." msgstr "WALの整合性チェックを行う対象とするリソースマネージャを設定。" -#: utils/misc/guc.c:4684 +#: utils/misc/guc.c:4685 msgid "Full-page images will be logged for all data blocks and cross-checked against the results of WAL replay." msgstr "全ページイメージが全てのデータブロックに対して記録され、WAL再生の結果とクロスチェックされます。" -#: utils/misc/guc.c:4694 +#: utils/misc/guc.c:4695 msgid "JIT provider to use." msgstr "使用するJITプロバイダ。" -#: utils/misc/guc.c:4705 +#: utils/misc/guc.c:4706 msgid "Log backtrace for errors in these functions." msgstr "これらの関数でエラーが起きた場合にはバックトレースをログに出力します。" -#: utils/misc/guc.c:4725 +#: utils/misc/guc.c:4717 +msgid "Prohibits access to non-system relations of specified kinds." +msgstr "指定した種別の非システムリレーションへのアクセスを禁止します。" + +#: utils/misc/guc.c:4737 msgid "Sets whether \"\\'\" is allowed in string literals." msgstr "文字列リテラルで\"\\'\"が許可されるかどうかを設定。" -#: utils/misc/guc.c:4735 +#: utils/misc/guc.c:4747 msgid "Sets the output format for bytea." msgstr "bytea の出力フォーマットを設定。" -#: utils/misc/guc.c:4745 +#: utils/misc/guc.c:4757 msgid "Sets the message levels that are sent to the client." msgstr "クライアントに送信される最小のメッセージレベルを設定。" -#: utils/misc/guc.c:4746 utils/misc/guc.c:4832 utils/misc/guc.c:4843 utils/misc/guc.c:4919 +#: utils/misc/guc.c:4758 utils/misc/guc.c:4844 utils/misc/guc.c:4855 utils/misc/guc.c:4931 msgid "Each level includes all the levels that follow it. The later the level, the fewer messages are sent." msgstr " 各レベルにはそのレベル以下の全てが含まれます。レベルを低くするほど、送信されるメッセージはより少なくなります。 " -#: utils/misc/guc.c:4756 +#: utils/misc/guc.c:4768 msgid "Enables in-core computation of query identifiers." msgstr "問い合わせ識別子の内部生成を有効にする。" -#: utils/misc/guc.c:4766 +#: utils/misc/guc.c:4778 msgid "Enables the planner to use constraints to optimize queries." msgstr "問い合わせの最適化の際にプランナに制約を利用させる。" -#: utils/misc/guc.c:4767 +#: utils/misc/guc.c:4779 msgid "Table scans will be skipped if their constraints guarantee that no rows match the query." msgstr "制約により、問い合わせに一致する行がないことが保証されているテーブルをスキップします。" -#: utils/misc/guc.c:4778 +#: utils/misc/guc.c:4790 msgid "Sets the default compression method for compressible values." msgstr "圧縮可能な値に対して使用されるデフォルト圧縮方式を設定。" -#: utils/misc/guc.c:4789 +#: utils/misc/guc.c:4801 msgid "Sets the transaction isolation level of each new transaction." msgstr "新規トランザクションのトランザクション分離レベルを設定。" -#: utils/misc/guc.c:4799 +#: utils/misc/guc.c:4811 msgid "Sets the current transaction's isolation level." msgstr "現在のトランザクションの分離レベルを設定。" -#: utils/misc/guc.c:4810 +#: utils/misc/guc.c:4822 msgid "Sets the display format for interval values." msgstr "インターバル値の表示フォーマットを設定。" -#: utils/misc/guc.c:4821 +#: utils/misc/guc.c:4833 msgid "Sets the verbosity of logged messages." msgstr "ログ出力メッセージの詳細度を設定。" -#: utils/misc/guc.c:4831 +#: utils/misc/guc.c:4843 msgid "Sets the message levels that are logged." msgstr "ログに出力するメッセージレベルを設定。" -#: utils/misc/guc.c:4842 +#: utils/misc/guc.c:4854 msgid "Causes all statements generating error at or above this level to be logged." msgstr "このレベル以上のエラーを発生させた全てのSQL文をログに記録します。" -#: utils/misc/guc.c:4853 +#: utils/misc/guc.c:4865 msgid "Sets the type of statements logged." msgstr "ログ出力する文の種類を設定。" -#: utils/misc/guc.c:4863 +#: utils/misc/guc.c:4875 msgid "Sets the syslog \"facility\" to be used when syslog enabled." msgstr "syslogを有効にした場合に使用するsyslog \"facility\"を設定。" -#: utils/misc/guc.c:4878 +#: utils/misc/guc.c:4890 msgid "Sets the session's behavior for triggers and rewrite rules." msgstr "トリガと書き換えルールに関するセッションの動作を設定。" -#: utils/misc/guc.c:4888 +#: utils/misc/guc.c:4900 msgid "Sets the current transaction's synchronization level." msgstr "現在のトランザクションの同期レベルを設定。" -#: utils/misc/guc.c:4898 +#: utils/misc/guc.c:4910 msgid "Allows archiving of WAL files using archive_command." msgstr "archive_command を使用したWALファイルのアーカイブ処理を許可。" -#: utils/misc/guc.c:4908 +#: utils/misc/guc.c:4920 msgid "Sets the action to perform upon reaching the recovery target." msgstr "リカバリ目標に到達した際の動作を設定。" -#: utils/misc/guc.c:4918 +#: utils/misc/guc.c:4930 msgid "Enables logging of recovery-related debugging information." msgstr "リカバリ関連のデバッグ情報の記録を行う" -#: utils/misc/guc.c:4935 +#: utils/misc/guc.c:4947 msgid "Collects function-level statistics on database activity." msgstr "データベースの動作に関して、関数レベルの統計情報を収集します。" -#: utils/misc/guc.c:4946 +#: utils/misc/guc.c:4958 msgid "Sets the consistency of accesses to statistics data." msgstr "統計情報読み出し時の一貫性レベルを設定します。" -#: utils/misc/guc.c:4956 +#: utils/misc/guc.c:4968 msgid "Compresses full-page writes written in WAL file with specified method." msgstr "WALファイルに出力される全ページ出力を指定した方式で圧縮します。" -#: utils/misc/guc.c:4966 +#: utils/misc/guc.c:4978 msgid "Sets the level of information written to the WAL." msgstr "WALに書き出される情報のレベルを設定します。" -#: utils/misc/guc.c:4976 +#: utils/misc/guc.c:4988 msgid "Selects the dynamic shared memory implementation used." msgstr "動的共有メモリで使用する実装を選択します。" -#: utils/misc/guc.c:4986 +#: utils/misc/guc.c:4998 msgid "Selects the shared memory implementation used for the main shared memory region." msgstr "主共有メモリ領域に使用する共有メモリ実装を選択します。" -#: utils/misc/guc.c:4996 +#: utils/misc/guc.c:5008 msgid "Selects the method used for forcing WAL updates to disk." msgstr "WAL更新のディスクへの書き出しを強制するめの方法を選択します。" -#: utils/misc/guc.c:5006 +#: utils/misc/guc.c:5018 msgid "Sets how binary values are to be encoded in XML." msgstr "XMLでどのようにバイナリ値を符号化するかを設定します。" -#: utils/misc/guc.c:5016 +#: utils/misc/guc.c:5028 msgid "Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments." msgstr "暗黙的なパースおよび直列化操作においてXMLデータを文書とみなすか断片とみなすかを設定します。" -#: utils/misc/guc.c:5027 +#: utils/misc/guc.c:5039 msgid "Use of huge pages on Linux or Windows." msgstr "LinuxおよびWindowsでヒュージページを使用。" -#: utils/misc/guc.c:5037 +#: utils/misc/guc.c:5049 msgid "Prefetch referenced blocks during recovery." msgstr "リカバリ中に被参照ブロックの事前読み込みを行う。" -#: utils/misc/guc.c:5038 +#: utils/misc/guc.c:5050 msgid "Look ahead in the WAL to find references to uncached data." msgstr "キャッシュされていないデータへの参照の検出のためにWALの先読みを行う。" -#: utils/misc/guc.c:5047 +#: utils/misc/guc.c:5059 msgid "Forces use of parallel query facilities." msgstr "並列問い合わせ機構を強制的に使用します。" -#: utils/misc/guc.c:5048 +#: utils/misc/guc.c:5060 msgid "If possible, run query using a parallel worker and with parallel restrictions." msgstr "可能であれば並列処理ワーカーを使用し、問い合わせを並列処理による制限の下で実行します。" -#: utils/misc/guc.c:5058 +#: utils/misc/guc.c:5070 msgid "Chooses the algorithm for encrypting passwords." msgstr "パスワードの暗号化に使用するアルゴリズムを選択する。" -#: utils/misc/guc.c:5068 +#: utils/misc/guc.c:5080 msgid "Controls the planner's selection of custom or generic plan." msgstr "プランナでのカスタムプランと汎用プランの選択を制御。" -#: utils/misc/guc.c:5069 +#: utils/misc/guc.c:5081 msgid "Prepared statements can have custom and generic plans, and the planner will attempt to choose which is better. This can be set to override the default behavior." msgstr "プリペアド文は個別プランと一般プランを持ち、プランナはよりよいプランの選択を試みます。これを設定することでそのデフォルト動作を変更できます。" -#: utils/misc/guc.c:5081 +#: utils/misc/guc.c:5093 msgid "Sets the minimum SSL/TLS protocol version to use." msgstr "使用する SSL/TLSプロトコルの最小バージョンを設定。" -#: utils/misc/guc.c:5093 +#: utils/misc/guc.c:5105 msgid "Sets the maximum SSL/TLS protocol version to use." msgstr "使用可能な最大の SSL/TLS プロトコルバージョンを指定します。" -#: utils/misc/guc.c:5105 +#: utils/misc/guc.c:5117 msgid "Sets the method for synchronizing the data directory before crash recovery." msgstr "クラシュリカバリ前に行うデータディレクトリの同期の方法を設定する。" -#: utils/misc/guc.c:5680 utils/misc/guc.c:5696 +#: utils/misc/guc.c:5692 utils/misc/guc.c:5708 #, c-format msgid "invalid configuration parameter name \"%s\"" msgstr "設定パラメータ名\"%s\"は不正です" -#: utils/misc/guc.c:5682 +#: utils/misc/guc.c:5694 #, c-format msgid "Custom parameter names must be two or more simple identifiers separated by dots." msgstr "独自パラメータの名前は2つ以上の単純識別子をピリオドでつないだ形式でなければなりません。" -#: utils/misc/guc.c:5698 +#: utils/misc/guc.c:5710 #, c-format msgid "\"%s\" is a reserved prefix." msgstr "\"%s\"は予約されている接頭辞です。" -#: utils/misc/guc.c:5712 +#: utils/misc/guc.c:5724 #, c-format msgid "unrecognized configuration parameter \"%s\"" msgstr "設定パラメータ\"%s\"は不明です" -#: utils/misc/guc.c:6104 +#: utils/misc/guc.c:6116 #, c-format msgid "%s: could not access directory \"%s\": %s\n" msgstr "%s: ディレクトリ\"%s\"にアクセスできませんでした: %s\n" -#: utils/misc/guc.c:6109 +#: utils/misc/guc.c:6121 #, c-format msgid "Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n" msgstr "initdbまたはpg_basebackupを実行して、PostgreSQLデータディレクトリを初期化してください。\n" -#: utils/misc/guc.c:6129 +#: utils/misc/guc.c:6141 #, c-format msgid "" "%s does not know where to find the server configuration file.\n" @@ -28031,12 +28065,12 @@ msgstr "" "--config-fileまたは-Dオプションを指定する、あるいはPGDATA環境変数を設\n" "定する必要があります。\n" -#: utils/misc/guc.c:6148 +#: utils/misc/guc.c:6160 #, c-format msgid "%s: could not access the server configuration file \"%s\": %s\n" msgstr "%s: サーバー設定ファイル\"%s\"にアクセスできません: %s\n" -#: utils/misc/guc.c:6174 +#: utils/misc/guc.c:6186 #, c-format msgid "" "%s does not know where to find the database system data.\n" @@ -28046,7 +28080,7 @@ msgstr "" "\"%s\"内で\"data_directory\"を指定する、-Dオプションを指定する、PGDATA環\n" "境変数で設定することができます。\n" -#: utils/misc/guc.c:6222 +#: utils/misc/guc.c:6234 #, c-format msgid "" "%s does not know where to find the \"hba\" configuration file.\n" @@ -28056,7 +28090,7 @@ msgstr "" "\"%s\"内で\"hba_directory\"を指定する、-Dオプションを指定する、PGDATA環\n" "境変数で設定することができます。\n" -#: utils/misc/guc.c:6245 +#: utils/misc/guc.c:6257 #, c-format msgid "" "%s does not know where to find the \"ident\" configuration file.\n" @@ -28066,186 +28100,191 @@ msgstr "" "\"%s\"内で\"ident_directory\"を指定する、-Dオプションを指定する、PGDATA環\n" "境変数で設定することができます。\n" -#: utils/misc/guc.c:7176 +#: utils/misc/guc.c:7188 msgid "Value exceeds integer range." msgstr "値が整数範囲を超えています。" -#: utils/misc/guc.c:7412 +#: utils/misc/guc.c:7424 #, c-format msgid "%d%s%s is outside the valid range for parameter \"%s\" (%d .. %d)" msgstr "%d%s%s はパラメータ\"%s\"の有効範囲 (%d .. %d) を超えています" -#: utils/misc/guc.c:7448 +#: utils/misc/guc.c:7460 #, c-format msgid "%g%s%s is outside the valid range for parameter \"%s\" (%g .. %g)" msgstr "%g%s%s はパラメータ\"%s\"の有効範囲 (%g .. %g) を超えています" -#: utils/misc/guc.c:7649 utils/misc/guc.c:9103 +#: utils/misc/guc.c:7670 #, c-format -msgid "cannot set parameters during a parallel operation" -msgstr "並列処理中はパラメータの設定はできません" +msgid "parameter \"%s\" cannot be set during a parallel operation" +msgstr "パラメータ\"%s\"は並列操作中には設定できません" -#: utils/misc/guc.c:7668 utils/misc/guc.c:8927 +#: utils/misc/guc.c:7686 utils/misc/guc.c:8945 #, c-format msgid "parameter \"%s\" cannot be changed" msgstr "パラメータ\"%s\"を変更できません" -#: utils/misc/guc.c:7701 +#: utils/misc/guc.c:7719 #, c-format msgid "parameter \"%s\" cannot be changed now" msgstr "現在パラメータ\"%s\"を変更できません" -#: utils/misc/guc.c:7728 utils/misc/guc.c:7790 utils/misc/guc.c:8903 utils/misc/guc.c:11811 +#: utils/misc/guc.c:7746 utils/misc/guc.c:7808 utils/misc/guc.c:8921 utils/misc/guc.c:11829 #, c-format msgid "permission denied to set parameter \"%s\"" msgstr "パラメータ\"%s\"を設定する権限がありません" -#: utils/misc/guc.c:7770 +#: utils/misc/guc.c:7788 #, c-format msgid "parameter \"%s\" cannot be set after connection start" msgstr "接続開始後にパラメータ\"%s\"を変更できません" -#: utils/misc/guc.c:7829 +#: utils/misc/guc.c:7847 #, c-format msgid "cannot set parameter \"%s\" within security-definer function" msgstr "セキュリティー定義用関数内でパラメーター\"%s\"を設定できません" -#: utils/misc/guc.c:8482 utils/misc/guc.c:8529 utils/misc/guc.c:10016 +#: utils/misc/guc.c:8500 utils/misc/guc.c:8547 utils/misc/guc.c:10034 #, c-format msgid "must be superuser or have privileges of pg_read_all_settings to examine \"%s\"" msgstr "\"%s\"を確認するにはスーパーユーザーであるか、またはpg_read_all_settingsの権限を持つ必要があります" -#: utils/misc/guc.c:8613 +#: utils/misc/guc.c:8631 #, c-format msgid "SET %s takes only one argument" msgstr "SET %sは1つの引数のみを取ります" -#: utils/misc/guc.c:8893 +#: utils/misc/guc.c:8911 #, c-format msgid "permission denied to perform ALTER SYSTEM RESET ALL" msgstr "ALTER SYSTEM RESET ALLを行う権限がありません" -#: utils/misc/guc.c:8960 +#: utils/misc/guc.c:8978 #, c-format msgid "parameter value for ALTER SYSTEM must not contain a newline" msgstr "ALTER SYSTEMでのパラメータ値は改行を含んではいけません" -#: utils/misc/guc.c:9005 +#: utils/misc/guc.c:9023 #, c-format msgid "could not parse contents of file \"%s\"" msgstr "ファイル\"%s\"の内容をパースできませんでした" -#: utils/misc/guc.c:9179 +#: utils/misc/guc.c:9121 +#, c-format +msgid "cannot set parameters during a parallel operation" +msgstr "並列処理中はパラメータの設定はできません" + +#: utils/misc/guc.c:9197 #, c-format msgid "SET LOCAL TRANSACTION SNAPSHOT is not implemented" msgstr "SET LOCAL TRANSACTION SNAPSHOTはまだ実装されていません" -#: utils/misc/guc.c:9266 +#: utils/misc/guc.c:9284 #, c-format msgid "SET requires parameter name" msgstr "SETにはパラメータ名が必要です" -#: utils/misc/guc.c:9399 +#: utils/misc/guc.c:9417 #, c-format msgid "attempt to redefine parameter \"%s\"" msgstr "パラメータ\"%s\"を再定義しようとしています" -#: utils/misc/guc.c:9726 +#: utils/misc/guc.c:9744 #, c-format msgid "invalid configuration parameter name \"%s\", removing it" msgstr "設定パラメータ名\"%s\"は不正です、削除します" -#: utils/misc/guc.c:9728 +#: utils/misc/guc.c:9746 #, c-format msgid "\"%s\" is now a reserved prefix." msgstr "\"%s\" は予約された接頭辞になりました。" -#: utils/misc/guc.c:11251 +#: utils/misc/guc.c:11269 #, c-format msgid "while setting parameter \"%s\" to \"%s\"" msgstr "パラメータ\"%s\"の\"%s\"への変更中" -#: utils/misc/guc.c:11420 +#: utils/misc/guc.c:11438 #, c-format msgid "parameter \"%s\" could not be set" msgstr "パラメータ\"%s\"を設定できません" -#: utils/misc/guc.c:11512 +#: utils/misc/guc.c:11530 #, c-format msgid "could not parse setting for parameter \"%s\"" msgstr "パラメータ\"%s\"の設定をパースできません" -#: utils/misc/guc.c:11943 +#: utils/misc/guc.c:11961 #, c-format msgid "invalid value for parameter \"%s\": %g" msgstr "パラメータ\"%s\"の値が無効です: %g" -#: utils/misc/guc.c:12256 +#: utils/misc/guc.c:12274 #, c-format msgid "\"temp_buffers\" cannot be changed after any temporary tables have been accessed in the session." msgstr "当該セッションで何らかの一時テーブルがアクセスされた後は \"temp_buffers\"を変更できません" -#: utils/misc/guc.c:12268 +#: utils/misc/guc.c:12286 #, c-format msgid "Bonjour is not supported by this build" msgstr "このビルドでは bonjour はサポートされていません" -#: utils/misc/guc.c:12281 +#: utils/misc/guc.c:12299 #, c-format msgid "SSL is not supported by this build" msgstr "このインストレーションではSSLはサポートされていません" -#: utils/misc/guc.c:12293 +#: utils/misc/guc.c:12311 #, c-format msgid "Cannot enable parameter when \"log_statement_stats\" is true." msgstr "\"log_statement_stats\"が真の場合、パラメータを有効にできません" -#: utils/misc/guc.c:12305 +#: utils/misc/guc.c:12323 #, c-format msgid "Cannot enable \"log_statement_stats\" when \"log_parser_stats\", \"log_planner_stats\", or \"log_executor_stats\" is true." msgstr "\"log_parser_stats\"、\"log_planner_stats\"、\"log_executor_stats\"のいずれかが真の場合は\"log_statement_stats\"を有効にできません" -#: utils/misc/guc.c:12535 +#: utils/misc/guc.c:12553 #, c-format msgid "effective_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "posix_fadvise() をもたないプラットフォームではeffective_io_concurrencyは0に設定する必要があります。" -#: utils/misc/guc.c:12548 +#: utils/misc/guc.c:12566 #, c-format msgid "maintenance_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "posix_fadvise() をもたないプラットフォームではmaintenance_io_concurrencyは0に設定する必要があります。" -#: utils/misc/guc.c:12562 +#: utils/misc/guc.c:12580 #, c-format msgid "huge_page_size must be 0 on this platform." msgstr "このプラットフォームではhuge_page_sizeを0に設定する必要があります。" -#: utils/misc/guc.c:12574 +#: utils/misc/guc.c:12592 #, c-format msgid "client_connection_check_interval must be set to 0 on this platform." msgstr "このプラットフォームではclient_connection_check_intervalを0に設定する必要があります。" -#: utils/misc/guc.c:12686 +#: utils/misc/guc.c:12704 #, c-format msgid "invalid character" msgstr "不正な文字" -#: utils/misc/guc.c:12746 +#: utils/misc/guc.c:12764 #, c-format msgid "recovery_target_timeline is not a valid number." msgstr "recovery_target_timelineが妥当な数値ではありません。" -#: utils/misc/guc.c:12786 +#: utils/misc/guc.c:12804 #, c-format msgid "multiple recovery targets specified" msgstr "複数のリカバリ目標が指定されています" -#: utils/misc/guc.c:12787 +#: utils/misc/guc.c:12805 #, c-format msgid "At most one of recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid may be set." msgstr " recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid はこの中の1つまで設定可能です。" -#: utils/misc/guc.c:12795 +#: utils/misc/guc.c:12813 #, c-format msgid "The only allowed value is \"immediate\"." msgstr "\"immediate\"のみが指定可能です。" @@ -28395,7 +28434,7 @@ msgstr "アクティブなポータル\"%s\"は削除できません" msgid "cannot PREPARE a transaction that has created a cursor WITH HOLD" msgstr "WITH HOLD 付きのカーソルを作成したトランザクションは PREPARE できません" -#: utils/mmgr/portalmem.c:1232 +#: utils/mmgr/portalmem.c:1235 #, c-format msgid "cannot perform transaction commands inside a cursor loop that is not read-only" msgstr "読み込み専用ではないカーソルのループ内ではトランザクション命令は実行できません" diff --git a/src/backend/po/ru.po b/src/backend/po/ru.po index d0f7abf995a..a542e23839b 100644 --- a/src/backend/po/ru.po +++ b/src/backend/po/ru.po @@ -5,13 +5,13 @@ # Oleg Bartunov , 2004-2005. # Dmitriy Olshevskiy , 2014. # Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. -# Maxim Yablokov , 2021, 2022. +# Maxim Yablokov , 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: postgres (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-01 12:51+0300\n" -"PO-Revision-Date: 2024-08-01 13:15+0300\n" +"POT-Creation-Date: 2024-11-09 07:47+0300\n" +"PO-Revision-Date: 2024-11-02 08:34+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -80,24 +80,24 @@ msgstr "не удалось открыть файл \"%s\" для чтения: #: ../common/controldata_utils.c:94 ../common/controldata_utils.c:96 #: access/transam/timeline.c:143 access/transam/timeline.c:362 -#: access/transam/twophase.c:1349 access/transam/xlog.c:3209 -#: access/transam/xlog.c:4024 access/transam/xlogrecovery.c:1223 +#: access/transam/twophase.c:1349 access/transam/xlog.c:3210 +#: access/transam/xlog.c:4025 access/transam/xlogrecovery.c:1223 #: access/transam/xlogrecovery.c:1315 access/transam/xlogrecovery.c:1352 -#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1848 +#: access/transam/xlogrecovery.c:1412 backup/basebackup.c:1838 #: commands/extension.c:3411 libpq/hba.c:505 replication/logical/origin.c:729 -#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4958 +#: replication/logical/origin.c:765 replication/logical/reorderbuffer.c:4963 #: replication/logical/snapbuild.c:1879 replication/logical/snapbuild.c:1921 #: replication/logical/snapbuild.c:1948 replication/slot.c:1807 #: replication/slot.c:1848 replication/walsender.c:658 #: storage/file/buffile.c:463 storage/file/copydir.c:195 -#: utils/adt/genfile.c:197 utils/adt/misc.c:863 utils/cache/relmapper.c:816 +#: utils/adt/genfile.c:197 utils/adt/misc.c:856 utils/cache/relmapper.c:816 #, c-format msgid "could not read file \"%s\": %m" msgstr "не удалось прочитать файл \"%s\": %m" #: ../common/controldata_utils.c:102 ../common/controldata_utils.c:105 -#: access/transam/xlog.c:3214 access/transam/xlog.c:4029 -#: backup/basebackup.c:1852 replication/logical/origin.c:734 +#: access/transam/xlog.c:3215 access/transam/xlog.c:4030 +#: backup/basebackup.c:1842 replication/logical/origin.c:734 #: replication/logical/origin.c:773 replication/logical/snapbuild.c:1884 #: replication/logical/snapbuild.c:1926 replication/logical/snapbuild.c:1953 #: replication/slot.c:1811 replication/slot.c:1852 replication/walsender.c:663 @@ -111,17 +111,17 @@ msgstr "не удалось прочитать файл \"%s\" (прочитан #: access/heap/rewriteheap.c:1178 access/heap/rewriteheap.c:1281 #: access/transam/timeline.c:392 access/transam/timeline.c:438 #: access/transam/timeline.c:516 access/transam/twophase.c:1361 -#: access/transam/twophase.c:1773 access/transam/xlog.c:3056 -#: access/transam/xlog.c:3249 access/transam/xlog.c:3254 -#: access/transam/xlog.c:3392 access/transam/xlog.c:3994 -#: access/transam/xlog.c:4740 commands/copyfrom.c:1585 commands/copyto.c:327 +#: access/transam/twophase.c:1780 access/transam/xlog.c:3057 +#: access/transam/xlog.c:3250 access/transam/xlog.c:3255 +#: access/transam/xlog.c:3393 access/transam/xlog.c:3995 +#: access/transam/xlog.c:4741 commands/copyfrom.c:1585 commands/copyto.c:327 #: libpq/be-fsstubs.c:455 libpq/be-fsstubs.c:525 #: replication/logical/origin.c:667 replication/logical/origin.c:806 -#: replication/logical/reorderbuffer.c:5016 +#: replication/logical/reorderbuffer.c:5021 #: replication/logical/snapbuild.c:1788 replication/logical/snapbuild.c:1961 #: replication/slot.c:1698 replication/slot.c:1859 replication/walsender.c:673 #: storage/file/copydir.c:218 storage/file/copydir.c:223 storage/file/fd.c:745 -#: storage/file/fd.c:3643 storage/file/fd.c:3749 utils/cache/relmapper.c:831 +#: storage/file/fd.c:3638 storage/file/fd.c:3744 utils/cache/relmapper.c:831 #: utils/cache/relmapper.c:968 #, c-format msgid "could not close file \"%s\": %m" @@ -146,33 +146,33 @@ msgstr "" "установленный PostgreSQL будет несовместим с этим каталогом данных." #: ../common/controldata_utils.c:219 ../common/controldata_utils.c:224 -#: ../common/file_utils.c:232 ../common/file_utils.c:291 -#: ../common/file_utils.c:365 access/heap/rewriteheap.c:1264 +#: ../common/file_utils.c:227 ../common/file_utils.c:286 +#: ../common/file_utils.c:360 access/heap/rewriteheap.c:1264 #: access/transam/timeline.c:111 access/transam/timeline.c:251 #: access/transam/timeline.c:348 access/transam/twophase.c:1305 -#: access/transam/xlog.c:2943 access/transam/xlog.c:3125 -#: access/transam/xlog.c:3164 access/transam/xlog.c:3359 -#: access/transam/xlog.c:4014 access/transam/xlogrecovery.c:4243 +#: access/transam/xlog.c:2944 access/transam/xlog.c:3126 +#: access/transam/xlog.c:3165 access/transam/xlog.c:3360 +#: access/transam/xlog.c:4015 access/transam/xlogrecovery.c:4243 #: access/transam/xlogrecovery.c:4346 access/transam/xlogutils.c:852 -#: backup/basebackup.c:522 backup/basebackup.c:1524 postmaster/syslogger.c:1560 -#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3611 -#: replication/logical/reorderbuffer.c:4162 -#: replication/logical/reorderbuffer.c:4938 +#: backup/basebackup.c:522 backup/basebackup.c:1518 postmaster/syslogger.c:1560 +#: replication/logical/origin.c:719 replication/logical/reorderbuffer.c:3616 +#: replication/logical/reorderbuffer.c:4167 +#: replication/logical/reorderbuffer.c:4943 #: replication/logical/snapbuild.c:1743 replication/logical/snapbuild.c:1850 #: replication/slot.c:1779 replication/walsender.c:631 #: replication/walsender.c:2722 storage/file/copydir.c:161 -#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3630 -#: storage/file/fd.c:3720 storage/smgr/md.c:541 utils/cache/relmapper.c:795 +#: storage/file/fd.c:720 storage/file/fd.c:3395 storage/file/fd.c:3625 +#: storage/file/fd.c:3715 storage/smgr/md.c:541 utils/cache/relmapper.c:795 #: utils/cache/relmapper.c:912 utils/error/elog.c:1953 #: utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 -#: utils/init/miscinit.c:1585 utils/misc/guc.c:8998 utils/misc/guc.c:9047 +#: utils/init/miscinit.c:1585 utils/misc/guc.c:9016 utils/misc/guc.c:9065 #, c-format msgid "could not open file \"%s\": %m" msgstr "не удалось открыть файл \"%s\": %m" #: ../common/controldata_utils.c:240 ../common/controldata_utils.c:243 -#: access/transam/twophase.c:1746 access/transam/twophase.c:1755 -#: access/transam/xlog.c:8685 access/transam/xlogfuncs.c:600 +#: access/transam/twophase.c:1753 access/transam/twophase.c:1762 +#: access/transam/xlog.c:8710 access/transam/xlogfuncs.c:600 #: backup/basebackup_server.c:173 backup/basebackup_server.c:266 #: postmaster/postmaster.c:5633 postmaster/syslogger.c:1571 #: postmaster/syslogger.c:1584 postmaster/syslogger.c:1597 @@ -182,17 +182,17 @@ msgid "could not write file \"%s\": %m" msgstr "не удалось записать файл \"%s\": %m" #: ../common/controldata_utils.c:257 ../common/controldata_utils.c:262 -#: ../common/file_utils.c:303 ../common/file_utils.c:373 +#: ../common/file_utils.c:298 ../common/file_utils.c:368 #: access/heap/rewriteheap.c:960 access/heap/rewriteheap.c:1172 #: access/heap/rewriteheap.c:1275 access/transam/timeline.c:432 -#: access/transam/timeline.c:510 access/transam/twophase.c:1767 -#: access/transam/xlog.c:3049 access/transam/xlog.c:3243 -#: access/transam/xlog.c:3987 access/transam/xlog.c:7988 -#: access/transam/xlog.c:8031 backup/basebackup_server.c:207 +#: access/transam/timeline.c:510 access/transam/twophase.c:1774 +#: access/transam/xlog.c:3050 access/transam/xlog.c:3244 +#: access/transam/xlog.c:3988 access/transam/xlog.c:8013 +#: access/transam/xlog.c:8056 backup/basebackup_server.c:207 #: commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 #: replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 -#: storage/file/fd.c:3741 storage/smgr/md.c:992 storage/smgr/md.c:1033 -#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8767 +#: storage/file/fd.c:3736 storage/smgr/md.c:992 storage/smgr/md.c:1033 +#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8785 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "не удалось синхронизировать с ФС файл \"%s\": %m" @@ -220,8 +220,8 @@ msgstr "не удалось синхронизировать с ФС файл \" #: utils/adt/pg_locale.c:617 utils/adt/regexp.c:224 utils/fmgr/dfmgr.c:229 #: utils/hash/dynahash.c:513 utils/hash/dynahash.c:613 #: utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 -#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5192 -#: utils/misc/guc.c:5208 utils/misc/guc.c:5221 utils/misc/guc.c:8745 +#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5204 +#: utils/misc/guc.c:5220 utils/misc/guc.c:5233 utils/misc/guc.c:8763 #: utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 #: utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 #: utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 @@ -273,8 +273,8 @@ msgstr "не удалось найти запускаемый файл \"%s\"" msgid "could not change directory to \"%s\": %m" msgstr "не удалось перейти в каталог \"%s\": %m" -#: ../common/exec.c:299 access/transam/xlog.c:8334 backup/basebackup.c:1344 -#: utils/adt/misc.c:342 +#: ../common/exec.c:299 access/transam/xlog.c:8359 backup/basebackup.c:1338 +#: utils/adt/misc.c:335 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "не удалось прочитать символическую ссылку \"%s\": %m" @@ -300,22 +300,22 @@ msgstr "нехватка памяти\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "попытка дублирования нулевого указателя (внутренняя ошибка)\n" -#: ../common/file_utils.c:87 ../common/file_utils.c:451 -#: ../common/file_utils.c:455 access/transam/twophase.c:1317 +#: ../common/file_utils.c:86 ../common/file_utils.c:446 +#: ../common/file_utils.c:450 access/transam/twophase.c:1317 #: access/transam/xlogarchive.c:111 access/transam/xlogarchive.c:237 #: backup/basebackup.c:338 backup/basebackup.c:528 backup/basebackup.c:599 -#: commands/copyfrom.c:1535 commands/copyto.c:725 commands/extension.c:3390 -#: commands/tablespace.c:826 commands/tablespace.c:917 postmaster/pgarch.c:597 +#: commands/copyfrom.c:1535 commands/copyto.c:729 commands/extension.c:3390 +#: commands/tablespace.c:825 commands/tablespace.c:914 postmaster/pgarch.c:597 #: replication/logical/snapbuild.c:1660 storage/file/copydir.c:68 #: storage/file/copydir.c:107 storage/file/fd.c:1951 storage/file/fd.c:2037 -#: storage/file/fd.c:3243 storage/file/fd.c:3450 utils/adt/dbsize.c:92 +#: storage/file/fd.c:3243 storage/file/fd.c:3449 utils/adt/dbsize.c:92 #: utils/adt/dbsize.c:244 utils/adt/dbsize.c:324 utils/adt/genfile.c:413 -#: utils/adt/genfile.c:588 utils/adt/misc.c:327 guc-file.l:1061 +#: utils/adt/genfile.c:588 utils/adt/misc.c:321 guc-file.l:1061 #, c-format msgid "could not stat file \"%s\": %m" msgstr "не удалось получить информацию о файле \"%s\": %m" -#: ../common/file_utils.c:166 ../common/pgfnames.c:48 commands/tablespace.c:749 +#: ../common/file_utils.c:161 ../common/pgfnames.c:48 commands/tablespace.c:749 #: commands/tablespace.c:759 postmaster/postmaster.c:1579 #: storage/file/fd.c:2812 storage/file/reinit.c:126 utils/adt/misc.c:235 #: utils/misc/tzparser.c:338 @@ -323,12 +323,12 @@ msgstr "не удалось получить информацию о файле msgid "could not open directory \"%s\": %m" msgstr "не удалось открыть каталог \"%s\": %m" -#: ../common/file_utils.c:200 ../common/pgfnames.c:69 storage/file/fd.c:2824 +#: ../common/file_utils.c:195 ../common/pgfnames.c:69 storage/file/fd.c:2824 #, c-format msgid "could not read directory \"%s\": %m" msgstr "не удалось прочитать каталог \"%s\": %m" -#: ../common/file_utils.c:383 access/transam/xlogarchive.c:426 +#: ../common/file_utils.c:378 access/transam/xlogarchive.c:426 #: postmaster/syslogger.c:1608 replication/logical/snapbuild.c:1800 #: replication/slot.c:721 replication/slot.c:1570 replication/slot.c:1712 #: storage/file/fd.c:755 storage/file/fd.c:853 utils/time/snapmgr.c:1282 @@ -397,7 +397,7 @@ msgstr "Ожидалась строка, но обнаружено \"%s\"." #: ../common/jsonapi.c:1125 #, c-format msgid "Token \"%s\" is invalid." -msgstr "Ошибочный элемент текста \"%s\"." +msgstr "Ошибочный элемент \"%s\"." #: ../common/jsonapi.c:1128 jsonpath_scan.l:495 #, c-format @@ -585,7 +585,7 @@ msgstr "дочерний процесс завершён по сигналу %d: #: ../common/wait_error.c:72 #, c-format msgid "child process exited with unrecognized status %d" -msgstr "дочерний процесс завершился с нераспознанным состоянием %d" +msgstr "дочерний процесс завершился с нераспознанным кодом состояния %d" #: ../port/chklocale.c:306 #, c-format @@ -598,22 +598,22 @@ msgid "could not determine encoding for locale \"%s\": codeset is \"%s\"" msgstr "" "не удалось определить кодировку для локали \"%s\": набор символов - \"%s\"" -#: ../port/dirmod.c:218 +#: ../port/dirmod.c:244 #, c-format msgid "could not set junction for \"%s\": %s" msgstr "не удалось создать связь для каталога \"%s\": %s" -#: ../port/dirmod.c:221 +#: ../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "не удалось создать связь для каталога \"%s\": %s\n" -#: ../port/dirmod.c:295 +#: ../port/dirmod.c:321 #, c-format msgid "could not get junction for \"%s\": %s" msgstr "не удалось получить связь для каталога \"%s\": %s" -#: ../port/dirmod.c:298 +#: ../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "не удалось получить связь для каталога \"%s\": %s\n" @@ -721,7 +721,7 @@ msgid "could not open parent table of index \"%s\"" msgstr "не удалось открыть родительскую таблицу индекса \"%s\"" #: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 -#: parser/parse_utilcmd.c:2303 +#: parser/parse_utilcmd.c:2331 #, c-format msgid "index \"%s\" is not valid" msgstr "индекс \"%s\" - нерабочий" @@ -888,7 +888,7 @@ msgid "index row requires %zu bytes, maximum size is %zu" msgstr "строка индекса требует байт: %zu, при максимуме: %zu" #: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 -#: tcop/postgres.c:1921 +#: tcop/postgres.c:1937 #, c-format msgid "unsupported format code: %d" msgstr "неподдерживаемый код формата: %d" @@ -916,7 +916,7 @@ msgstr "В RESET не должно передаваться значение п msgid "unrecognized parameter namespace \"%s\"" msgstr "нераспознанное пространство имён параметров \"%s\"" -#: access/common/reloptions.c:1303 utils/misc/guc.c:13002 +#: access/common/reloptions.c:1303 utils/misc/guc.c:13020 #, c-format msgid "tables declared WITH OIDS are not supported" msgstr "таблицы со свойством WITH OIDS не поддерживаются" @@ -1137,7 +1137,7 @@ msgstr "" #: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 #: catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 -#: commands/indexcmds.c:1955 commands/tablecmds.c:17596 commands/view.c:86 +#: commands/indexcmds.c:1955 commands/tablecmds.c:17734 commands/view.c:86 #: regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 #: utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 #: utils/adt/like_support.c:1025 utils/adt/varchar.c:733 @@ -1198,37 +1198,47 @@ msgid "" msgstr "" "в семействе операторов \"%s\" метода доступа %s нет межтипового оператора(ов)" -#: access/heap/heapam.c:2226 +#: access/heap/heapam.c:2236 #, c-format msgid "cannot insert tuples in a parallel worker" msgstr "вставлять кортежи в параллельном исполнителе нельзя" -#: access/heap/heapam.c:2697 +#: access/heap/heapam.c:2707 #, c-format msgid "cannot delete tuples during a parallel operation" msgstr "удалять кортежи во время параллельных операций нельзя" -#: access/heap/heapam.c:2743 +#: access/heap/heapam.c:2753 #, c-format msgid "attempted to delete invisible tuple" msgstr "попытка удаления невидимого кортежа" -#: access/heap/heapam.c:3188 access/heap/heapam.c:6032 +#: access/heap/heapam.c:3198 access/heap/heapam.c:6405 access/index/genam.c:819 #, c-format msgid "cannot update tuples during a parallel operation" msgstr "изменять кортежи во время параллельных операций нельзя" -#: access/heap/heapam.c:3312 +#: access/heap/heapam.c:3326 #, c-format msgid "attempted to update invisible tuple" msgstr "попытка изменения невидимого кортежа" -#: access/heap/heapam.c:4676 access/heap/heapam.c:4714 -#: access/heap/heapam.c:4979 access/heap/heapam_handler.c:456 +#: access/heap/heapam.c:4812 access/heap/heapam.c:4850 +#: access/heap/heapam.c:5115 access/heap/heapam_handler.c:456 #, c-format msgid "could not obtain lock on row in relation \"%s\"" msgstr "не удалось получить блокировку строки в таблице \"%s\"" +#: access/heap/heapam.c:6218 commands/trigger.c:3441 +#: executor/nodeModifyTable.c:2362 executor/nodeModifyTable.c:2453 +#, c-format +msgid "" +"tuple to be updated was already modified by an operation triggered by the " +"current command" +msgstr "" +"кортеж, который должен быть изменён, уже модифицирован в операции, вызванной " +"текущей командой" + #: access/heap/heapam_handler.c:401 #, c-format msgid "" @@ -1250,8 +1260,8 @@ msgstr "не удалось записать в файл \"%s\" (записан #: access/heap/rewriteheap.c:1013 access/heap/rewriteheap.c:1131 #: access/transam/timeline.c:329 access/transam/timeline.c:485 -#: access/transam/xlog.c:2965 access/transam/xlog.c:3178 -#: access/transam/xlog.c:3966 access/transam/xlog.c:8668 +#: access/transam/xlog.c:2966 access/transam/xlog.c:3179 +#: access/transam/xlog.c:3967 access/transam/xlog.c:8693 #: access/transam/xlogfuncs.c:594 backup/basebackup_server.c:149 #: backup/basebackup_server.c:242 commands/dbcommands.c:494 #: postmaster/postmaster.c:4607 postmaster/postmaster.c:5620 @@ -1268,24 +1278,24 @@ msgstr "не удалось обрезать файл \"%s\" до нужного #: access/heap/rewriteheap.c:1159 access/transam/timeline.c:384 #: access/transam/timeline.c:424 access/transam/timeline.c:502 -#: access/transam/xlog.c:3037 access/transam/xlog.c:3234 -#: access/transam/xlog.c:3978 commands/dbcommands.c:506 +#: access/transam/xlog.c:3038 access/transam/xlog.c:3235 +#: access/transam/xlog.c:3979 commands/dbcommands.c:506 #: postmaster/postmaster.c:4617 postmaster/postmaster.c:4627 #: replication/logical/origin.c:599 replication/logical/origin.c:641 #: replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 #: replication/slot.c:1666 storage/file/buffile.c:537 #: storage/file/copydir.c:207 utils/init/miscinit.c:1449 -#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8728 -#: utils/misc/guc.c:8759 utils/misc/guc.c:10757 utils/misc/guc.c:10771 +#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8746 +#: utils/misc/guc.c:8777 utils/misc/guc.c:10775 utils/misc/guc.c:10789 #: utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 #, c-format msgid "could not write to file \"%s\": %m" msgstr "не удалось записать в файл \"%s\": %m" -#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1706 +#: access/heap/rewriteheap.c:1249 access/transam/twophase.c:1713 #: access/transam/xlogarchive.c:119 access/transam/xlogarchive.c:436 #: postmaster/postmaster.c:1157 postmaster/syslogger.c:1537 -#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4431 +#: replication/logical/origin.c:575 replication/logical/reorderbuffer.c:4436 #: replication/logical/snapbuild.c:1702 replication/logical/snapbuild.c:2118 #: replication/slot.c:1763 storage/file/fd.c:795 storage/file/fd.c:3263 #: storage/file/fd.c:3325 storage/file/reinit.c:262 storage/ipc/dsm.c:317 @@ -1570,19 +1580,19 @@ msgstr "метод доступа \"%s\" имеет не тип %s" msgid "index access method \"%s\" does not have a handler" msgstr "для метода доступа индекса \"%s\" не задан обработчик" -#: access/index/genam.c:489 +#: access/index/genam.c:490 #, c-format msgid "transaction aborted during system catalog scan" msgstr "транзакция прервана во время сканирования системного каталога" -#: access/index/genam.c:657 access/index/indexam.c:87 +#: access/index/genam.c:658 access/index/indexam.c:87 #, c-format msgid "cannot access index \"%s\" while it is being reindexed" msgstr "индекс \"%s\" перестраивается, обращаться к нему нельзя" #: access/index/indexam.c:208 catalog/objectaddress.c:1376 #: commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 -#: commands/tablecmds.c:17282 commands/tablecmds.c:19076 +#: commands/tablecmds.c:17420 commands/tablecmds.c:19270 #, c-format msgid "\"%s\" is not an index" msgstr "\"%s\" - это не индекс" @@ -1608,7 +1618,7 @@ msgid "This may be because of a non-immutable index expression." msgstr "Возможно, это вызвано переменной природой индексного выражения." #: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 -#: parser/parse_utilcmd.c:2349 +#: parser/parse_utilcmd.c:2377 #, c-format msgid "index \"%s\" is not a btree" msgstr "индекс \"%s\" не является b-деревом" @@ -1700,14 +1710,14 @@ msgstr "" "типа %s" #: access/table/table.c:49 access/table/table.c:83 access/table/table.c:112 -#: access/table/table.c:145 catalog/aclchk.c:1835 +#: access/table/table.c:145 catalog/aclchk.c:1836 #, c-format msgid "\"%s\" is an index" msgstr "\"%s\" - это индекс" #: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 -#: access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:13976 -#: commands/tablecmds.c:17291 +#: access/table/table.c:150 catalog/aclchk.c:1843 commands/tablecmds.c:14106 +#: commands/tablecmds.c:17429 #, c-format msgid "\"%s\" is a composite type" msgstr "\"%s\" - это составной тип" @@ -1723,7 +1733,7 @@ msgid "%s cannot be empty." msgstr "Значение %s не может быть пустым." # well-spelled: симв -#: access/table/tableamapi.c:122 utils/misc/guc.c:12926 +#: access/table/tableamapi.c:122 utils/misc/guc.c:12944 #, c-format msgid "%s is too long (maximum %d characters)." msgstr "Длина %s превышает предел (%d симв.)." @@ -1946,36 +1956,36 @@ msgstr "" msgid "invalid MultiXactId: %u" msgstr "неверный MultiXactId: %u" -#: access/transam/parallel.c:718 access/transam/parallel.c:837 +#: access/transam/parallel.c:731 access/transam/parallel.c:850 #, c-format msgid "parallel worker failed to initialize" msgstr "не удалось инициализировать параллельный исполнитель" -#: access/transam/parallel.c:719 access/transam/parallel.c:838 +#: access/transam/parallel.c:732 access/transam/parallel.c:851 #, c-format msgid "More details may be available in the server log." msgstr "Дополнительная информация может быть в журнале сервера." -#: access/transam/parallel.c:899 +#: access/transam/parallel.c:912 #, c-format msgid "postmaster exited during a parallel transaction" msgstr "postmaster завершился в процессе параллельной транзакции" -#: access/transam/parallel.c:1086 +#: access/transam/parallel.c:1099 #, c-format msgid "lost connection to parallel worker" msgstr "потеряно подключение к параллельному исполнителю" -#: access/transam/parallel.c:1152 access/transam/parallel.c:1154 +#: access/transam/parallel.c:1165 access/transam/parallel.c:1167 msgid "parallel worker" msgstr "параллельный исполнитель" -#: access/transam/parallel.c:1307 +#: access/transam/parallel.c:1320 #, c-format msgid "could not map dynamic shared memory segment" msgstr "не удалось отобразить динамический сегмент разделяемой памяти" -#: access/transam/parallel.c:1312 +#: access/transam/parallel.c:1325 #, c-format msgid "invalid magic number in dynamic shared memory segment" msgstr "неверное магическое число в динамическом сегменте разделяемой памяти" @@ -2167,12 +2177,12 @@ msgstr "Установите ненулевое значение парамет msgid "transaction identifier \"%s\" is already in use" msgstr "идентификатор транзакции \"%s\" уже используется" -#: access/transam/twophase.c:422 access/transam/twophase.c:2518 +#: access/transam/twophase.c:422 access/transam/twophase.c:2525 #, c-format msgid "maximum number of prepared transactions reached" msgstr "достигнут предел числа подготовленных транзакций" -#: access/transam/twophase.c:423 access/transam/twophase.c:2519 +#: access/transam/twophase.c:423 access/transam/twophase.c:2526 #, c-format msgid "Increase max_prepared_transactions (currently %d)." msgstr "Увеличьте параметр max_prepared_transactions (текущее значение %d)." @@ -2185,7 +2195,7 @@ msgstr "подготовленная транзакция с идентифик #: access/transam/twophase.c:605 #, c-format msgid "permission denied to finish prepared transaction" -msgstr "нет доступа для завершения подготовленной транзакции" +msgstr "нет прав для завершения подготовленной транзакции" #: access/transam/twophase.c:606 #, c-format @@ -2276,12 +2286,12 @@ msgstr "" "ожидаемые данные состояния двухфазной фиксации отсутствуют в WAL в позиции " "%X/%X" -#: access/transam/twophase.c:1734 +#: access/transam/twophase.c:1741 #, c-format msgid "could not recreate file \"%s\": %m" msgstr "пересоздать файл \"%s\" не удалось: %m" -#: access/transam/twophase.c:1861 +#: access/transam/twophase.c:1868 #, c-format msgid "" "%u two-phase state file was written for a long-running prepared transaction" @@ -2294,47 +2304,47 @@ msgstr[1] "" msgstr[2] "" "для длительных подготовленных транзакций записано файлов состояния 2PC: %u" -#: access/transam/twophase.c:2094 +#: access/transam/twophase.c:2101 #, c-format msgid "recovering prepared transaction %u from shared memory" msgstr "восстановление подготовленной транзакции %u из разделяемой памяти" -#: access/transam/twophase.c:2187 +#: access/transam/twophase.c:2194 #, c-format msgid "removing stale two-phase state file for transaction %u" msgstr "удаление устаревшего файла состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2194 +#: access/transam/twophase.c:2201 #, c-format msgid "removing stale two-phase state from memory for transaction %u" msgstr "удаление из памяти устаревшего состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2207 +#: access/transam/twophase.c:2214 #, c-format msgid "removing future two-phase state file for transaction %u" msgstr "удаление файла будущего состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2214 +#: access/transam/twophase.c:2221 #, c-format msgid "removing future two-phase state from memory for transaction %u" msgstr "удаление из памяти будущего состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2239 +#: access/transam/twophase.c:2246 #, c-format msgid "corrupted two-phase state file for transaction %u" msgstr "испорчен файл состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2244 +#: access/transam/twophase.c:2251 #, c-format msgid "corrupted two-phase state in memory for transaction %u" msgstr "испорчено состояние 2PC в памяти для транзакции %u" -#: access/transam/twophase.c:2501 +#: access/transam/twophase.c:2508 #, c-format msgid "could not recover two-phase state file for transaction %u" msgstr "не удалось восстановить файл состояния 2PC для транзакции %u" -#: access/transam/twophase.c:2503 +#: access/transam/twophase.c:2510 #, c-format msgid "" "Two-phase state file has been found in WAL record %X/%X, but this " @@ -2343,11 +2353,11 @@ msgstr "" "Для WAL-записи %X/%X найден файл состояния двухфазной фиксации, но эта " "транзакция уже была восстановлена с диска." -#: access/transam/twophase.c:2511 jit/jit.c:205 utils/fmgr/dfmgr.c:209 +#: access/transam/twophase.c:2518 jit/jit.c:205 utils/fmgr/dfmgr.c:209 #: utils/fmgr/dfmgr.c:415 #, c-format msgid "could not access file \"%s\": %m" -msgstr "нет доступа к файлу \"%s\": %m" +msgstr "ошибка при обращении к файлу \"%s\": %m" #: access/transam/varsup.c:129 #, c-format @@ -2508,7 +2518,7 @@ msgstr "фиксировать подтранзакции во время пар msgid "cannot have more than 2^32-1 subtransactions in a transaction" msgstr "в одной транзакции не может быть больше 2^32-1 подтранзакций" -#: access/transam/xlog.c:1465 +#: access/transam/xlog.c:1466 #, c-format msgid "" "request to flush past end of generated WAL; request %X/%X, current position " @@ -2517,55 +2527,55 @@ msgstr "" "запрос на сброс данных за концом сгенерированного WAL; запрошена позиция %X/" "%X, текущая позиция %X/%X" -#: access/transam/xlog.c:2226 +#: access/transam/xlog.c:2227 #, c-format msgid "could not write to log file %s at offset %u, length %zu: %m" msgstr "не удалось записать в файл журнала %s (смещение: %u, длина: %zu): %m" -#: access/transam/xlog.c:3473 access/transam/xlogutils.c:847 +#: access/transam/xlog.c:3474 access/transam/xlogutils.c:847 #: replication/walsender.c:2716 #, c-format msgid "requested WAL segment %s has already been removed" msgstr "запрошенный сегмент WAL %s уже удалён" -#: access/transam/xlog.c:3758 +#: access/transam/xlog.c:3759 #, c-format msgid "could not rename file \"%s\": %m" msgstr "не удалось переименовать файл \"%s\": %m" -#: access/transam/xlog.c:3800 access/transam/xlog.c:3810 +#: access/transam/xlog.c:3801 access/transam/xlog.c:3811 #, c-format msgid "required WAL directory \"%s\" does not exist" msgstr "требуемый каталог WAL \"%s\" не существует" -#: access/transam/xlog.c:3816 +#: access/transam/xlog.c:3817 #, c-format msgid "creating missing WAL directory \"%s\"" msgstr "создаётся отсутствующий каталог WAL \"%s\"" -#: access/transam/xlog.c:3819 commands/dbcommands.c:3115 +#: access/transam/xlog.c:3820 commands/dbcommands.c:3135 #, c-format msgid "could not create missing directory \"%s\": %m" msgstr "не удалось создать отсутствующий каталог \"%s\": %m" -#: access/transam/xlog.c:3886 +#: access/transam/xlog.c:3887 #, c-format msgid "could not generate secret authorization token" msgstr "не удалось сгенерировать случайное число для аутентификации" -#: access/transam/xlog.c:4045 access/transam/xlog.c:4054 -#: access/transam/xlog.c:4078 access/transam/xlog.c:4085 -#: access/transam/xlog.c:4092 access/transam/xlog.c:4097 -#: access/transam/xlog.c:4104 access/transam/xlog.c:4111 -#: access/transam/xlog.c:4118 access/transam/xlog.c:4125 -#: access/transam/xlog.c:4132 access/transam/xlog.c:4139 -#: access/transam/xlog.c:4148 access/transam/xlog.c:4155 +#: access/transam/xlog.c:4046 access/transam/xlog.c:4055 +#: access/transam/xlog.c:4079 access/transam/xlog.c:4086 +#: access/transam/xlog.c:4093 access/transam/xlog.c:4098 +#: access/transam/xlog.c:4105 access/transam/xlog.c:4112 +#: access/transam/xlog.c:4119 access/transam/xlog.c:4126 +#: access/transam/xlog.c:4133 access/transam/xlog.c:4140 +#: access/transam/xlog.c:4149 access/transam/xlog.c:4156 #: utils/init/miscinit.c:1606 #, c-format msgid "database files are incompatible with server" msgstr "файлы базы данных несовместимы с сервером" -#: access/transam/xlog.c:4046 +#: access/transam/xlog.c:4047 #, c-format msgid "" "The database cluster was initialized with PG_CONTROL_VERSION %d (0x%08x), " @@ -2574,7 +2584,7 @@ msgstr "" "Кластер баз данных был инициализирован с PG_CONTROL_VERSION %d (0x%08x), но " "сервер скомпилирован с PG_CONTROL_VERSION %d (0x%08x)." -#: access/transam/xlog.c:4050 +#: access/transam/xlog.c:4051 #, c-format msgid "" "This could be a problem of mismatched byte ordering. It looks like you need " @@ -2583,7 +2593,7 @@ msgstr "" "Возможно, проблема вызвана разным порядком байт. Кажется, вам надо выполнить " "initdb." -#: access/transam/xlog.c:4055 +#: access/transam/xlog.c:4056 #, c-format msgid "" "The database cluster was initialized with PG_CONTROL_VERSION %d, but the " @@ -2592,18 +2602,18 @@ msgstr "" "Кластер баз данных был инициализирован с PG_CONTROL_VERSION %d, но сервер " "скомпилирован с PG_CONTROL_VERSION %d." -#: access/transam/xlog.c:4058 access/transam/xlog.c:4082 -#: access/transam/xlog.c:4089 access/transam/xlog.c:4094 +#: access/transam/xlog.c:4059 access/transam/xlog.c:4083 +#: access/transam/xlog.c:4090 access/transam/xlog.c:4095 #, c-format msgid "It looks like you need to initdb." msgstr "Кажется, вам надо выполнить initdb." -#: access/transam/xlog.c:4069 +#: access/transam/xlog.c:4070 #, c-format msgid "incorrect checksum in control file" msgstr "ошибка контрольной суммы в файле pg_control" -#: access/transam/xlog.c:4079 +#: access/transam/xlog.c:4080 #, c-format msgid "" "The database cluster was initialized with CATALOG_VERSION_NO %d, but the " @@ -2612,7 +2622,7 @@ msgstr "" "Кластер баз данных был инициализирован с CATALOG_VERSION_NO %d, но сервер " "скомпилирован с CATALOG_VERSION_NO %d." -#: access/transam/xlog.c:4086 +#: access/transam/xlog.c:4087 #, c-format msgid "" "The database cluster was initialized with MAXALIGN %d, but the server was " @@ -2621,7 +2631,7 @@ msgstr "" "Кластер баз данных был инициализирован с MAXALIGN %d, но сервер " "скомпилирован с MAXALIGN %d." -#: access/transam/xlog.c:4093 +#: access/transam/xlog.c:4094 #, c-format msgid "" "The database cluster appears to use a different floating-point number format " @@ -2630,7 +2640,7 @@ msgstr "" "Кажется, в кластере баз данных и в программе сервера используются разные " "форматы чисел с плавающей точкой." -#: access/transam/xlog.c:4098 +#: access/transam/xlog.c:4099 #, c-format msgid "" "The database cluster was initialized with BLCKSZ %d, but the server was " @@ -2639,16 +2649,16 @@ msgstr "" "Кластер баз данных был инициализирован с BLCKSZ %d, но сервер скомпилирован " "с BLCKSZ %d." -#: access/transam/xlog.c:4101 access/transam/xlog.c:4108 -#: access/transam/xlog.c:4115 access/transam/xlog.c:4122 -#: access/transam/xlog.c:4129 access/transam/xlog.c:4136 -#: access/transam/xlog.c:4143 access/transam/xlog.c:4151 -#: access/transam/xlog.c:4158 +#: access/transam/xlog.c:4102 access/transam/xlog.c:4109 +#: access/transam/xlog.c:4116 access/transam/xlog.c:4123 +#: access/transam/xlog.c:4130 access/transam/xlog.c:4137 +#: access/transam/xlog.c:4144 access/transam/xlog.c:4152 +#: access/transam/xlog.c:4159 #, c-format msgid "It looks like you need to recompile or initdb." msgstr "Кажется, вам надо перекомпилировать сервер или выполнить initdb." -#: access/transam/xlog.c:4105 +#: access/transam/xlog.c:4106 #, c-format msgid "" "The database cluster was initialized with RELSEG_SIZE %d, but the server was " @@ -2657,7 +2667,7 @@ msgstr "" "Кластер баз данных был инициализирован с RELSEG_SIZE %d, но сервер " "скомпилирован с RELSEG_SIZE %d." -#: access/transam/xlog.c:4112 +#: access/transam/xlog.c:4113 #, c-format msgid "" "The database cluster was initialized with XLOG_BLCKSZ %d, but the server was " @@ -2666,7 +2676,7 @@ msgstr "" "Кластер баз данных был инициализирован с XLOG_BLCKSZ %d, но сервер " "скомпилирован с XLOG_BLCKSZ %d." -#: access/transam/xlog.c:4119 +#: access/transam/xlog.c:4120 #, c-format msgid "" "The database cluster was initialized with NAMEDATALEN %d, but the server was " @@ -2675,7 +2685,7 @@ msgstr "" "Кластер баз данных был инициализирован с NAMEDATALEN %d, но сервер " "скомпилирован с NAMEDATALEN %d." -#: access/transam/xlog.c:4126 +#: access/transam/xlog.c:4127 #, c-format msgid "" "The database cluster was initialized with INDEX_MAX_KEYS %d, but the server " @@ -2684,7 +2694,7 @@ msgstr "" "Кластер баз данных был инициализирован с INDEX_MAX_KEYS %d, но сервер " "скомпилирован с INDEX_MAX_KEYS %d." -#: access/transam/xlog.c:4133 +#: access/transam/xlog.c:4134 #, c-format msgid "" "The database cluster was initialized with TOAST_MAX_CHUNK_SIZE %d, but the " @@ -2693,7 +2703,7 @@ msgstr "" "Кластер баз данных был инициализирован с TOAST_MAX_CHUNK_SIZE %d, но сервер " "скомпилирован с TOAST_MAX_CHUNK_SIZE %d." -#: access/transam/xlog.c:4140 +#: access/transam/xlog.c:4141 #, c-format msgid "" "The database cluster was initialized with LOBLKSIZE %d, but the server was " @@ -2702,7 +2712,7 @@ msgstr "" "Кластер баз данных был инициализирован с LOBLKSIZE %d, но сервер " "скомпилирован с LOBLKSIZE %d." -#: access/transam/xlog.c:4149 +#: access/transam/xlog.c:4150 #, c-format msgid "" "The database cluster was initialized without USE_FLOAT8_BYVAL but the server " @@ -2711,7 +2721,7 @@ msgstr "" "Кластер баз данных был инициализирован без USE_FLOAT8_BYVAL, но сервер " "скомпилирован с USE_FLOAT8_BYVAL." -#: access/transam/xlog.c:4156 +#: access/transam/xlog.c:4157 #, c-format msgid "" "The database cluster was initialized with USE_FLOAT8_BYVAL but the server " @@ -2720,7 +2730,7 @@ msgstr "" "Кластер баз данных был инициализирован с USE_FLOAT8_BYVAL, но сервер был " "скомпилирован без USE_FLOAT8_BYVAL." -#: access/transam/xlog.c:4165 +#: access/transam/xlog.c:4166 #, c-format msgid "" "WAL segment size must be a power of two between 1 MB and 1 GB, but the " @@ -2738,76 +2748,76 @@ msgstr[2] "" "размер сегмента WAL должен задаваться степенью 2 в интервале от 1 МБ до 1 " "ГБ, но в управляющем файле указано значение: %d" -#: access/transam/xlog.c:4177 +#: access/transam/xlog.c:4178 #, c-format msgid "\"min_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "\"min_wal_size\" должен быть минимум вдвое больше \"wal_segment_size\"" -#: access/transam/xlog.c:4181 +#: access/transam/xlog.c:4182 #, c-format msgid "\"max_wal_size\" must be at least twice \"wal_segment_size\"" msgstr "\"max_wal_size\" должен быть минимум вдвое больше \"wal_segment_size\"" -#: access/transam/xlog.c:4622 +#: access/transam/xlog.c:4623 #, c-format msgid "could not write bootstrap write-ahead log file: %m" msgstr "не удалось записать начальный файл журнала предзаписи: %m" -#: access/transam/xlog.c:4630 +#: access/transam/xlog.c:4631 #, c-format msgid "could not fsync bootstrap write-ahead log file: %m" msgstr "не удалось сбросить на диск начальный файл журнала предзаписи: %m" -#: access/transam/xlog.c:4636 +#: access/transam/xlog.c:4637 #, c-format msgid "could not close bootstrap write-ahead log file: %m" msgstr "не удалось закрыть начальный файл журнала предзаписи: %m" -#: access/transam/xlog.c:4854 +#: access/transam/xlog.c:4855 #, c-format msgid "WAL was generated with wal_level=minimal, cannot continue recovering" msgstr "" "WAL был создан с параметром wal_level=minimal, продолжение восстановления " "невозможно" -#: access/transam/xlog.c:4855 +#: access/transam/xlog.c:4856 #, c-format msgid "This happens if you temporarily set wal_level=minimal on the server." msgstr "Это происходит, если вы на время устанавливали wal_level=minimal." -#: access/transam/xlog.c:4856 +#: access/transam/xlog.c:4857 #, c-format msgid "Use a backup taken after setting wal_level to higher than minimal." msgstr "" "Используйте резервную копию, сделанную после переключения wal_level на любой " "уровень выше minimal." -#: access/transam/xlog.c:4920 +#: access/transam/xlog.c:4921 #, c-format msgid "control file contains invalid checkpoint location" msgstr "файл pg_control содержит неправильную позицию контрольной точки" -#: access/transam/xlog.c:4931 +#: access/transam/xlog.c:4932 #, c-format msgid "database system was shut down at %s" msgstr "система БД была выключена: %s" -#: access/transam/xlog.c:4937 +#: access/transam/xlog.c:4938 #, c-format msgid "database system was shut down in recovery at %s" msgstr "система БД была выключена в процессе восстановления: %s" -#: access/transam/xlog.c:4943 +#: access/transam/xlog.c:4944 #, c-format msgid "database system shutdown was interrupted; last known up at %s" msgstr "выключение системы БД было прервано; последний момент работы: %s" -#: access/transam/xlog.c:4949 +#: access/transam/xlog.c:4950 #, c-format msgid "database system was interrupted while in recovery at %s" msgstr "работа системы БД была прервана во время восстановления: %s" -#: access/transam/xlog.c:4951 +#: access/transam/xlog.c:4952 #, c-format msgid "" "This probably means that some data is corrupted and you will have to use the " @@ -2816,14 +2826,14 @@ msgstr "" "Это скорее всего означает, что некоторые данные повреждены и вам придётся " "восстановить БД из последней резервной копии." -#: access/transam/xlog.c:4957 +#: access/transam/xlog.c:4958 #, c-format msgid "database system was interrupted while in recovery at log time %s" msgstr "" "работа системы БД была прервана в процессе восстановления, время в журнале: " "%s" -#: access/transam/xlog.c:4959 +#: access/transam/xlog.c:4960 #, c-format msgid "" "If this has occurred more than once some data might be corrupted and you " @@ -2832,22 +2842,22 @@ msgstr "" "Если это происходит постоянно, возможно, какие-то данные были испорчены и " "для восстановления стоит выбрать более раннюю точку." -#: access/transam/xlog.c:4965 +#: access/transam/xlog.c:4966 #, c-format msgid "database system was interrupted; last known up at %s" msgstr "работа системы БД была прервана; последний момент работы: %s" -#: access/transam/xlog.c:4971 +#: access/transam/xlog.c:4972 #, c-format msgid "control file contains invalid database cluster state" msgstr "файл pg_control содержит неверный код состояния кластера" -#: access/transam/xlog.c:5356 +#: access/transam/xlog.c:5357 #, c-format msgid "WAL ends before end of online backup" msgstr "WAL закончился без признака окончания копирования" -#: access/transam/xlog.c:5357 +#: access/transam/xlog.c:5358 #, c-format msgid "" "All WAL generated while online backup was taken must be available at " @@ -2856,40 +2866,40 @@ msgstr "" "Все журналы WAL, созданные во время резервного копирования \"на ходу\", " "должны быть в наличии для восстановления." -#: access/transam/xlog.c:5360 +#: access/transam/xlog.c:5361 #, c-format msgid "WAL ends before consistent recovery point" msgstr "WAL закончился до согласованной точки восстановления" -#: access/transam/xlog.c:5408 +#: access/transam/xlog.c:5409 #, c-format msgid "selected new timeline ID: %u" msgstr "выбранный ID новой линии времени: %u" -#: access/transam/xlog.c:5441 +#: access/transam/xlog.c:5442 #, c-format msgid "archive recovery complete" msgstr "восстановление архива завершено" -#: access/transam/xlog.c:6047 +#: access/transam/xlog.c:6072 #, c-format msgid "shutting down" msgstr "выключение" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6086 +#: access/transam/xlog.c:6111 #, c-format msgid "restartpoint starting:%s%s%s%s%s%s%s%s" msgstr "начата точка перезапуска:%s%s%s%s%s%s%s%s" #. translator: the placeholders show checkpoint options -#: access/transam/xlog.c:6098 +#: access/transam/xlog.c:6123 #, c-format msgid "checkpoint starting:%s%s%s%s%s%s%s%s" msgstr "начата контрольная точка:%s%s%s%s%s%s%s%s" # well-spelled: синхр -#: access/transam/xlog.c:6158 +#: access/transam/xlog.c:6183 #, c-format msgid "" "restartpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d " @@ -2903,7 +2913,7 @@ msgstr "" "=%ld.%03d сек., средняя=%ld.%03d сек.; расстояние=%d kB, ожидалось=%d kB" # well-spelled: синхр -#: access/transam/xlog.c:6178 +#: access/transam/xlog.c:6203 #, c-format msgid "" "checkpoint complete: wrote %d buffers (%.1f%%); %d WAL file(s) added, %d " @@ -2916,7 +2926,7 @@ msgstr "" "сек., всего=%ld.%03d сек.; синхронизировано_файлов=%d, самая_долгая_синхр." "=%ld.%03d сек., средняя=%ld.%03d сек.; расстояние=%d kB, ожидалось=%d kB" -#: access/transam/xlog.c:6620 +#: access/transam/xlog.c:6645 #, c-format msgid "" "concurrent write-ahead log activity while database system is shutting down" @@ -2924,75 +2934,75 @@ msgstr "" "во время выключения системы баз данных отмечена активность в журнале " "предзаписи" -#: access/transam/xlog.c:7177 +#: access/transam/xlog.c:7202 #, c-format msgid "recovery restart point at %X/%X" msgstr "точка перезапуска восстановления в позиции %X/%X" -#: access/transam/xlog.c:7179 +#: access/transam/xlog.c:7204 #, c-format msgid "Last completed transaction was at log time %s." msgstr "Последняя завершённая транзакция была выполнена в %s." -#: access/transam/xlog.c:7426 +#: access/transam/xlog.c:7451 #, c-format msgid "restore point \"%s\" created at %X/%X" msgstr "точка восстановления \"%s\" создана в позиции %X/%X" -#: access/transam/xlog.c:7633 +#: access/transam/xlog.c:7658 #, c-format msgid "online backup was canceled, recovery cannot continue" msgstr "" "резервное копирование \"на ходу\" было отменено, продолжить восстановление " "нельзя" -#: access/transam/xlog.c:7691 +#: access/transam/xlog.c:7716 #, c-format msgid "unexpected timeline ID %u (should be %u) in shutdown checkpoint record" msgstr "" "неожиданный ID линии времени %u (должен быть %u) в записи точки выключения" -#: access/transam/xlog.c:7749 +#: access/transam/xlog.c:7774 #, c-format msgid "unexpected timeline ID %u (should be %u) in online checkpoint record" msgstr "" "неожиданный ID линии времени %u (должен быть %u) в записи точки активности" -#: access/transam/xlog.c:7778 +#: access/transam/xlog.c:7803 #, c-format msgid "unexpected timeline ID %u (should be %u) in end-of-recovery record" msgstr "" "неожиданный ID линии времени %u (должен быть %u) в записи конец-" "восстановления" -#: access/transam/xlog.c:8036 +#: access/transam/xlog.c:8061 #, c-format msgid "could not fsync write-through file \"%s\": %m" msgstr "не удалось синхронизировать с ФС файл сквозной записи %s: %m" -#: access/transam/xlog.c:8042 +#: access/transam/xlog.c:8067 #, c-format msgid "could not fdatasync file \"%s\": %m" msgstr "не удалось синхронизировать с ФС данные (fdatasync) файла \"%s\": %m" -#: access/transam/xlog.c:8137 access/transam/xlog.c:8504 +#: access/transam/xlog.c:8162 access/transam/xlog.c:8529 #, c-format msgid "WAL level not sufficient for making an online backup" msgstr "" "Выбранный уровень WAL недостаточен для резервного копирования \"на ходу\"" -#: access/transam/xlog.c:8138 access/transam/xlog.c:8505 +#: access/transam/xlog.c:8163 access/transam/xlog.c:8530 #: access/transam/xlogfuncs.c:199 #, c-format msgid "wal_level must be set to \"replica\" or \"logical\" at server start." msgstr "Установите wal_level \"replica\" или \"logical\" при запуске сервера." -#: access/transam/xlog.c:8143 +#: access/transam/xlog.c:8168 #, c-format msgid "backup label too long (max %d bytes)" msgstr "длина метки резервной копии превышает предел (%d байт)" -#: access/transam/xlog.c:8259 +#: access/transam/xlog.c:8284 #, c-format msgid "" "WAL generated with full_page_writes=off was replayed since last restartpoint" @@ -3000,30 +3010,30 @@ msgstr "" "После последней точки перезапуска был воспроизведён WAL, созданный в режиме " "full_page_writes=off." -#: access/transam/xlog.c:8261 access/transam/xlog.c:8617 +#: access/transam/xlog.c:8286 access/transam/xlog.c:8642 #, c-format msgid "" "This means that the backup being taken on the standby is corrupt and should " "not be used. Enable full_page_writes and run CHECKPOINT on the primary, and " "then try an online backup again." msgstr "" -"Это означает, что резервная копия, сделанная на дежурном сервере, испорчена " -"и использовать её не следует. Включите режим full_page_writes и выполните " +"Это означает, что резервная копия, сделанная на ведомом сервере, испорчена и " +"использовать её не следует. Включите режим full_page_writes и выполните " "CHECKPOINT на ведущем сервере, а затем попробуйте резервное копирование \"на " "ходу\" ещё раз." -#: access/transam/xlog.c:8341 backup/basebackup.c:1349 utils/adt/misc.c:347 +#: access/transam/xlog.c:8366 backup/basebackup.c:1343 utils/adt/misc.c:340 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "целевой путь символической ссылки \"%s\" слишком длинный" -#: access/transam/xlog.c:8391 backup/basebackup.c:1364 -#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:355 +#: access/transam/xlog.c:8416 backup/basebackup.c:1358 +#: commands/tablespace.c:399 commands/tablespace.c:581 utils/adt/misc.c:348 #, c-format msgid "tablespaces are not supported on this platform" msgstr "табличные пространства не поддерживаются на этой платформе" -#: access/transam/xlog.c:8550 access/transam/xlog.c:8563 +#: access/transam/xlog.c:8575 access/transam/xlog.c:8588 #: access/transam/xlogrecovery.c:1237 access/transam/xlogrecovery.c:1244 #: access/transam/xlogrecovery.c:1303 access/transam/xlogrecovery.c:1383 #: access/transam/xlogrecovery.c:1407 @@ -3031,13 +3041,13 @@ msgstr "табличные пространства не поддерживаю msgid "invalid data in file \"%s\"" msgstr "неверные данные в файле \"%s\"" -#: access/transam/xlog.c:8567 backup/basebackup.c:1204 +#: access/transam/xlog.c:8592 backup/basebackup.c:1204 #, c-format msgid "the standby was promoted during online backup" msgstr "" -"дежурный сервер был повышен в процессе резервного копирования \"на ходу\"" +"ведомый сервер был повышен в процессе резервного копирования \"на ходу\"" -#: access/transam/xlog.c:8568 backup/basebackup.c:1205 +#: access/transam/xlog.c:8593 backup/basebackup.c:1205 #, c-format msgid "" "This means that the backup being taken is corrupt and should not be used. " @@ -3046,7 +3056,7 @@ msgstr "" "Это означает, что создаваемая резервная копия испорчена и использовать её не " "следует. Попробуйте резервное копирование \"на ходу\" ещё раз." -#: access/transam/xlog.c:8615 +#: access/transam/xlog.c:8640 #, c-format msgid "" "WAL generated with full_page_writes=off was replayed during online backup" @@ -3054,13 +3064,13 @@ msgstr "" "В процессе резервного копирования \"на ходу\" был воспроизведён WAL, " "созданный в режиме full_page_writes=off" -#: access/transam/xlog.c:8740 +#: access/transam/xlog.c:8765 #, c-format msgid "base backup done, waiting for required WAL segments to be archived" msgstr "" "базовое копирование выполнено, ожидается архивация нужных сегментов WAL" -#: access/transam/xlog.c:8754 +#: access/transam/xlog.c:8779 #, c-format msgid "" "still waiting for all required WAL segments to be archived (%d seconds " @@ -3068,7 +3078,7 @@ msgid "" msgstr "" "продолжается ожидание архивации всех нужных сегментов WAL (прошло %d сек.)" -#: access/transam/xlog.c:8756 +#: access/transam/xlog.c:8781 #, c-format msgid "" "Check that your archive_command is executing properly. You can safely " @@ -3079,12 +3089,12 @@ msgstr "" "копирования можно отменить безопасно, но резервная копия базы будет " "непригодна без всех сегментов WAL." -#: access/transam/xlog.c:8763 +#: access/transam/xlog.c:8788 #, c-format msgid "all required WAL segments have been archived" msgstr "все нужные сегменты WAL заархивированы" -#: access/transam/xlog.c:8767 +#: access/transam/xlog.c:8792 #, c-format msgid "" "WAL archiving is not enabled; you must ensure that all required WAL segments " @@ -3093,7 +3103,7 @@ msgstr "" "архивация WAL не настроена; вы должны обеспечить копирование всех требуемых " "сегментов WAL другими средствами для получения резервной копии" -#: access/transam/xlog.c:8816 +#: access/transam/xlog.c:8841 #, c-format msgid "aborting backup due to backend exiting before pg_backup_stop was called" msgstr "" @@ -4099,17 +4109,17 @@ msgstr "параметры сжатия нельзя указывать, есл msgid "invalid compression specification: %s" msgstr "неправильное указание сжатия: %s" -#: backup/basebackup.c:1435 +#: backup/basebackup.c:1429 #, c-format msgid "skipping special file \"%s\"" msgstr "специальный файл \"%s\" пропускается" -#: backup/basebackup.c:1554 +#: backup/basebackup.c:1548 #, c-format msgid "invalid segment number %d in file \"%s\"" msgstr "неверный номер сегмента %d в файле \"%s\"" -#: backup/basebackup.c:1586 +#: backup/basebackup.c:1580 #, c-format msgid "" "could not verify checksum in file \"%s\", block %u: read buffer size %d and " @@ -4118,7 +4128,7 @@ msgstr "" "не удалось проверить контрольную сумму в файле \"%s\", блоке %u: размер " "прочитанного буфера (%d) отличается от размера страницы (%d)" -#: backup/basebackup.c:1660 +#: backup/basebackup.c:1654 #, c-format msgid "" "checksum verification failed in file \"%s\", block %u: calculated %X but " @@ -4127,14 +4137,14 @@ msgstr "" "ошибка контрольной суммы в файле \"%s\", блоке %u: вычислено значение %X, но " "ожидалось %X" -#: backup/basebackup.c:1667 +#: backup/basebackup.c:1661 #, c-format msgid "" "further checksum verification failures in file \"%s\" will not be reported" msgstr "" "о дальнейших ошибках контрольных сумм в файле \"%s\" сообщаться не будет" -#: backup/basebackup.c:1723 +#: backup/basebackup.c:1717 #, c-format msgid "file \"%s\" has a total of %d checksum verification failure" msgid_plural "file \"%s\" has a total of %d checksum verification failures" @@ -4142,12 +4152,12 @@ msgstr[0] "всего в файле \"%s\" обнаружено ошибок к msgstr[1] "всего в файле \"%s\" обнаружено ошибок контрольных сумм: %d" msgstr[2] "всего в файле \"%s\" обнаружено ошибок контрольных сумм: %d" -#: backup/basebackup.c:1769 +#: backup/basebackup.c:1763 #, c-format msgid "file name too long for tar format: \"%s\"" msgstr "слишком длинное имя файла для формата tar: \"%s\"" -#: backup/basebackup.c:1774 +#: backup/basebackup.c:1768 #, c-format msgid "" "symbolic link target too long for tar format: file name \"%s\", target \"%s\"" @@ -4202,7 +4212,7 @@ msgstr "каталог \"%s\" существует, но он не пуст" #: backup/basebackup_server.c:123 utils/init/postinit.c:1090 #, c-format msgid "could not access directory \"%s\": %m" -msgstr "ошибка доступа к каталогу \"%s\": %m" +msgstr "ошибка при обращении к каталогу \"%s\": %m" #: backup/basebackup_server.c:175 backup/basebackup_server.c:182 #: backup/basebackup_server.c:268 backup/basebackup_server.c:275 @@ -4244,12 +4254,12 @@ msgid "-X requires a power of two value between 1 MB and 1 GB" msgstr "" "для -X требуется число, равное степени двух, в интервале от 1 МБ до 1 ГБ" -#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3906 +#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3994 #, c-format msgid "--%s requires a value" msgstr "для --%s требуется значение" -#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3911 +#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3999 #, c-format msgid "-c %s requires a value" msgstr "для -c %s требуется значение" @@ -4265,211 +4275,211 @@ msgstr "Для дополнительной информации попробу msgid "%s: invalid command-line arguments\n" msgstr "%s: неверные аргументы командной строки\n" -#: catalog/aclchk.c:185 +#: catalog/aclchk.c:186 #, c-format msgid "grant options can only be granted to roles" msgstr "право назначения прав можно давать только ролям" -#: catalog/aclchk.c:307 +#: catalog/aclchk.c:308 #, c-format msgid "no privileges were granted for column \"%s\" of relation \"%s\"" msgstr "для столбца \"%s\" отношения \"%s\" не были назначены никакие права" -#: catalog/aclchk.c:312 +#: catalog/aclchk.c:313 #, c-format msgid "no privileges were granted for \"%s\"" msgstr "для объекта \"%s\" не были назначены никакие права" -#: catalog/aclchk.c:320 +#: catalog/aclchk.c:321 #, c-format msgid "not all privileges were granted for column \"%s\" of relation \"%s\"" msgstr "" "для столбца \"%s\" отношения \"%s\" были назначены не все запрошенные права" -#: catalog/aclchk.c:325 +#: catalog/aclchk.c:326 #, c-format msgid "not all privileges were granted for \"%s\"" msgstr "для объекта \"%s\" были назначены не все запрошенные права" -#: catalog/aclchk.c:336 +#: catalog/aclchk.c:337 #, c-format msgid "no privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "для столбца \"%s\" отношения \"%s\" не были отозваны никакие права" -#: catalog/aclchk.c:341 +#: catalog/aclchk.c:342 #, c-format msgid "no privileges could be revoked for \"%s\"" msgstr "для объекта \"%s\" не были отозваны никакие права" -#: catalog/aclchk.c:349 +#: catalog/aclchk.c:350 #, c-format msgid "" "not all privileges could be revoked for column \"%s\" of relation \"%s\"" msgstr "для столбца \"%s\" отношения \"%s\" были отозваны не все права" -#: catalog/aclchk.c:354 +#: catalog/aclchk.c:355 #, c-format msgid "not all privileges could be revoked for \"%s\"" msgstr "для объекта \"%s\" были отозваны не все права" -#: catalog/aclchk.c:386 +#: catalog/aclchk.c:387 #, c-format msgid "grantor must be current user" msgstr "праводателем должен быть текущий пользователь" -#: catalog/aclchk.c:454 catalog/aclchk.c:1029 +#: catalog/aclchk.c:455 catalog/aclchk.c:1030 #, c-format msgid "invalid privilege type %s for relation" msgstr "право %s неприменимо для отношений" -#: catalog/aclchk.c:458 catalog/aclchk.c:1033 +#: catalog/aclchk.c:459 catalog/aclchk.c:1034 #, c-format msgid "invalid privilege type %s for sequence" msgstr "право %s неприменимо для последовательностей" -#: catalog/aclchk.c:462 +#: catalog/aclchk.c:463 #, c-format msgid "invalid privilege type %s for database" msgstr "право %s неприменимо для баз данных" -#: catalog/aclchk.c:466 +#: catalog/aclchk.c:467 #, c-format msgid "invalid privilege type %s for domain" msgstr "право %s неприменимо для домена" -#: catalog/aclchk.c:470 catalog/aclchk.c:1037 +#: catalog/aclchk.c:471 catalog/aclchk.c:1038 #, c-format msgid "invalid privilege type %s for function" msgstr "право %s неприменимо для функций" -#: catalog/aclchk.c:474 +#: catalog/aclchk.c:475 #, c-format msgid "invalid privilege type %s for language" msgstr "право %s неприменимо для языков" -#: catalog/aclchk.c:478 +#: catalog/aclchk.c:479 #, c-format msgid "invalid privilege type %s for large object" msgstr "право %s неприменимо для больших объектов" -#: catalog/aclchk.c:482 catalog/aclchk.c:1053 +#: catalog/aclchk.c:483 catalog/aclchk.c:1054 #, c-format msgid "invalid privilege type %s for schema" msgstr "право %s неприменимо для схем" -#: catalog/aclchk.c:486 catalog/aclchk.c:1041 +#: catalog/aclchk.c:487 catalog/aclchk.c:1042 #, c-format msgid "invalid privilege type %s for procedure" msgstr "право %s неприменимо для процедур" -#: catalog/aclchk.c:490 catalog/aclchk.c:1045 +#: catalog/aclchk.c:491 catalog/aclchk.c:1046 #, c-format msgid "invalid privilege type %s for routine" msgstr "право %s неприменимо для подпрограмм" -#: catalog/aclchk.c:494 +#: catalog/aclchk.c:495 #, c-format msgid "invalid privilege type %s for tablespace" msgstr "право %s неприменимо для табличных пространств" -#: catalog/aclchk.c:498 catalog/aclchk.c:1049 +#: catalog/aclchk.c:499 catalog/aclchk.c:1050 #, c-format msgid "invalid privilege type %s for type" msgstr "право %s неприменимо для типа" -#: catalog/aclchk.c:502 +#: catalog/aclchk.c:503 #, c-format msgid "invalid privilege type %s for foreign-data wrapper" msgstr "право %s неприменимо для обёрток сторонних данных" -#: catalog/aclchk.c:506 +#: catalog/aclchk.c:507 #, c-format msgid "invalid privilege type %s for foreign server" msgstr "право %s неприменимо для сторонних серверов" -#: catalog/aclchk.c:510 +#: catalog/aclchk.c:511 #, c-format msgid "invalid privilege type %s for parameter" msgstr "неверный тип прав %s для параметра" -#: catalog/aclchk.c:549 +#: catalog/aclchk.c:550 #, c-format msgid "column privileges are only valid for relations" msgstr "права для столбцов применимы только к отношениям" -#: catalog/aclchk.c:712 catalog/aclchk.c:4486 catalog/aclchk.c:5333 +#: catalog/aclchk.c:713 catalog/aclchk.c:4491 catalog/aclchk.c:5338 #: catalog/objectaddress.c:1072 catalog/pg_largeobject.c:116 #: storage/large_object/inv_api.c:287 #, c-format msgid "large object %u does not exist" msgstr "большой объект %u не существует" -#: catalog/aclchk.c:1086 +#: catalog/aclchk.c:1087 #, c-format msgid "default privileges cannot be set for columns" msgstr "права по умолчанию нельзя определить для столбцов" -#: catalog/aclchk.c:1246 +#: catalog/aclchk.c:1247 #, c-format msgid "cannot use IN SCHEMA clause when using GRANT/REVOKE ON SCHEMAS" msgstr "предложение IN SCHEMA нельзя использовать в GRANT/REVOKE ON SCHEMAS" -#: catalog/aclchk.c:1587 catalog/catalog.c:648 catalog/objectaddress.c:1543 +#: catalog/aclchk.c:1588 catalog/catalog.c:657 catalog/objectaddress.c:1543 #: catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 -#: commands/sequence.c:1670 commands/tablecmds.c:7320 commands/tablecmds.c:7476 -#: commands/tablecmds.c:7526 commands/tablecmds.c:7600 -#: commands/tablecmds.c:7670 commands/tablecmds.c:7782 -#: commands/tablecmds.c:7876 commands/tablecmds.c:7935 -#: commands/tablecmds.c:8024 commands/tablecmds.c:8054 -#: commands/tablecmds.c:8182 commands/tablecmds.c:8264 -#: commands/tablecmds.c:8420 commands/tablecmds.c:8542 -#: commands/tablecmds.c:12281 commands/tablecmds.c:12462 -#: commands/tablecmds.c:12622 commands/tablecmds.c:13819 -#: commands/tablecmds.c:16388 commands/trigger.c:954 parser/analyze.c:2517 +#: commands/sequence.c:1673 commands/tablecmds.c:7343 commands/tablecmds.c:7499 +#: commands/tablecmds.c:7549 commands/tablecmds.c:7623 +#: commands/tablecmds.c:7693 commands/tablecmds.c:7805 +#: commands/tablecmds.c:7899 commands/tablecmds.c:7958 +#: commands/tablecmds.c:8047 commands/tablecmds.c:8077 +#: commands/tablecmds.c:8205 commands/tablecmds.c:8287 +#: commands/tablecmds.c:8443 commands/tablecmds.c:8565 +#: commands/tablecmds.c:12400 commands/tablecmds.c:12592 +#: commands/tablecmds.c:12752 commands/tablecmds.c:13949 +#: commands/tablecmds.c:16519 commands/trigger.c:954 parser/analyze.c:2517 #: parser/parse_relation.c:725 parser/parse_target.c:1077 -#: parser/parse_type.c:144 parser/parse_utilcmd.c:3437 -#: parser/parse_utilcmd.c:3473 parser/parse_utilcmd.c:3515 utils/adt/acl.c:2869 +#: parser/parse_type.c:144 parser/parse_utilcmd.c:3465 +#: parser/parse_utilcmd.c:3501 parser/parse_utilcmd.c:3543 utils/adt/acl.c:2869 #: utils/adt/ruleutils.c:2828 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist" msgstr "столбец \"%s\" в таблице \"%s\" не существует" -#: catalog/aclchk.c:1850 catalog/objectaddress.c:1383 commands/sequence.c:1179 -#: commands/tablecmds.c:253 commands/tablecmds.c:17255 utils/adt/acl.c:2077 +#: catalog/aclchk.c:1851 catalog/objectaddress.c:1383 commands/sequence.c:1179 +#: commands/tablecmds.c:253 commands/tablecmds.c:17393 utils/adt/acl.c:2077 #: utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 #: utils/adt/acl.c:2199 utils/adt/acl.c:2229 #, c-format msgid "\"%s\" is not a sequence" msgstr "\"%s\" - это не последовательность" -#: catalog/aclchk.c:1888 +#: catalog/aclchk.c:1889 #, c-format msgid "sequence \"%s\" only supports USAGE, SELECT, and UPDATE privileges" msgstr "" "для последовательности \"%s\" применимы только права USAGE, SELECT и UPDATE" -#: catalog/aclchk.c:1905 +#: catalog/aclchk.c:1906 #, c-format msgid "invalid privilege type %s for table" msgstr "право %s неприменимо для таблиц" -#: catalog/aclchk.c:2071 +#: catalog/aclchk.c:2075 #, c-format msgid "invalid privilege type %s for column" msgstr "право %s неприменимо для столбцов" -#: catalog/aclchk.c:2084 +#: catalog/aclchk.c:2088 #, c-format msgid "sequence \"%s\" only supports SELECT column privileges" msgstr "для последовательности \"%s\" применимо только право SELECT" # TO REVIEW -#: catalog/aclchk.c:2666 +#: catalog/aclchk.c:2671 #, c-format msgid "language \"%s\" is not trusted" msgstr "язык \"%s\" не является доверенным" -#: catalog/aclchk.c:2668 +#: catalog/aclchk.c:2673 #, c-format msgid "" "GRANT and REVOKE are not allowed on untrusted languages, because only " @@ -4478,487 +4488,487 @@ msgstr "" "GRANT и REVOKE не допускаются для недоверенных языков, так как использовать " "такие языки могут только суперпользователи." -#: catalog/aclchk.c:3182 +#: catalog/aclchk.c:3187 #, c-format msgid "cannot set privileges of array types" msgstr "для типов массивов нельзя определить права" -#: catalog/aclchk.c:3183 +#: catalog/aclchk.c:3188 #, c-format msgid "Set the privileges of the element type instead." msgstr "Вместо этого установите права для типа элемента." -#: catalog/aclchk.c:3190 catalog/objectaddress.c:1649 +#: catalog/aclchk.c:3195 catalog/objectaddress.c:1649 #, c-format msgid "\"%s\" is not a domain" msgstr "\"%s\" - это не домен" -#: catalog/aclchk.c:3462 +#: catalog/aclchk.c:3467 #, c-format msgid "unrecognized privilege type \"%s\"" msgstr "нераспознанное право: \"%s\"" -#: catalog/aclchk.c:3527 +#: catalog/aclchk.c:3532 #, c-format msgid "permission denied for aggregate %s" msgstr "нет доступа к агрегату %s" -#: catalog/aclchk.c:3530 +#: catalog/aclchk.c:3535 #, c-format msgid "permission denied for collation %s" msgstr "нет доступа к правилу сортировки %s" -#: catalog/aclchk.c:3533 +#: catalog/aclchk.c:3538 #, c-format msgid "permission denied for column %s" msgstr "нет доступа к столбцу %s" -#: catalog/aclchk.c:3536 +#: catalog/aclchk.c:3541 #, c-format msgid "permission denied for conversion %s" msgstr "нет доступа к преобразованию %s" -#: catalog/aclchk.c:3539 +#: catalog/aclchk.c:3544 #, c-format msgid "permission denied for database %s" msgstr "нет доступа к базе данных %s" -#: catalog/aclchk.c:3542 +#: catalog/aclchk.c:3547 #, c-format msgid "permission denied for domain %s" msgstr "нет доступа к домену %s" -#: catalog/aclchk.c:3545 +#: catalog/aclchk.c:3550 #, c-format msgid "permission denied for event trigger %s" msgstr "нет доступа к событийному триггеру %s" -#: catalog/aclchk.c:3548 +#: catalog/aclchk.c:3553 #, c-format msgid "permission denied for extension %s" msgstr "нет доступа к расширению %s" -#: catalog/aclchk.c:3551 +#: catalog/aclchk.c:3556 #, c-format msgid "permission denied for foreign-data wrapper %s" msgstr "нет доступа к обёртке сторонних данных %s" -#: catalog/aclchk.c:3554 +#: catalog/aclchk.c:3559 #, c-format msgid "permission denied for foreign server %s" msgstr "нет доступа к стороннему серверу %s" -#: catalog/aclchk.c:3557 +#: catalog/aclchk.c:3562 #, c-format msgid "permission denied for foreign table %s" msgstr "нет доступа к сторонней таблице %s" -#: catalog/aclchk.c:3560 +#: catalog/aclchk.c:3565 #, c-format msgid "permission denied for function %s" msgstr "нет доступа к функции %s" -#: catalog/aclchk.c:3563 +#: catalog/aclchk.c:3568 #, c-format msgid "permission denied for index %s" msgstr "нет доступа к индексу %s" -#: catalog/aclchk.c:3566 +#: catalog/aclchk.c:3571 #, c-format msgid "permission denied for language %s" msgstr "нет доступа к языку %s" -#: catalog/aclchk.c:3569 +#: catalog/aclchk.c:3574 #, c-format msgid "permission denied for large object %s" msgstr "нет доступа к большому объекту %s" -#: catalog/aclchk.c:3572 +#: catalog/aclchk.c:3577 #, c-format msgid "permission denied for materialized view %s" msgstr "нет доступа к материализованному представлению %s" -#: catalog/aclchk.c:3575 +#: catalog/aclchk.c:3580 #, c-format msgid "permission denied for operator class %s" msgstr "нет доступа к классу операторов %s" -#: catalog/aclchk.c:3578 +#: catalog/aclchk.c:3583 #, c-format msgid "permission denied for operator %s" msgstr "нет доступа к оператору %s" -#: catalog/aclchk.c:3581 +#: catalog/aclchk.c:3586 #, c-format msgid "permission denied for operator family %s" msgstr "нет доступа к семейству операторов %s" -#: catalog/aclchk.c:3584 +#: catalog/aclchk.c:3589 #, c-format msgid "permission denied for parameter %s" msgstr "нет доступа к параметру %s" -#: catalog/aclchk.c:3587 +#: catalog/aclchk.c:3592 #, c-format msgid "permission denied for policy %s" msgstr "нет доступа к политике %s" -#: catalog/aclchk.c:3590 +#: catalog/aclchk.c:3595 #, c-format msgid "permission denied for procedure %s" msgstr "нет доступа к процедуре %s" -#: catalog/aclchk.c:3593 +#: catalog/aclchk.c:3598 #, c-format msgid "permission denied for publication %s" msgstr "нет доступа к публикации %s" -#: catalog/aclchk.c:3596 +#: catalog/aclchk.c:3601 #, c-format msgid "permission denied for routine %s" msgstr "нет доступа к подпрограмме %s" -#: catalog/aclchk.c:3599 +#: catalog/aclchk.c:3604 #, c-format msgid "permission denied for schema %s" msgstr "нет доступа к схеме %s" -#: catalog/aclchk.c:3602 commands/sequence.c:667 commands/sequence.c:893 -#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1768 -#: commands/sequence.c:1829 +#: catalog/aclchk.c:3607 commands/sequence.c:667 commands/sequence.c:893 +#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1771 +#: commands/sequence.c:1832 #, c-format msgid "permission denied for sequence %s" msgstr "нет доступа к последовательности %s" -#: catalog/aclchk.c:3605 +#: catalog/aclchk.c:3610 #, c-format msgid "permission denied for statistics object %s" msgstr "нет доступа к объекту статистики %s" -#: catalog/aclchk.c:3608 +#: catalog/aclchk.c:3613 #, c-format msgid "permission denied for subscription %s" msgstr "нет доступа к подписке %s" -#: catalog/aclchk.c:3611 +#: catalog/aclchk.c:3616 #, c-format msgid "permission denied for table %s" msgstr "нет доступа к таблице %s" -#: catalog/aclchk.c:3614 +#: catalog/aclchk.c:3619 #, c-format msgid "permission denied for tablespace %s" msgstr "нет доступа к табличному пространству %s" -#: catalog/aclchk.c:3617 +#: catalog/aclchk.c:3622 #, c-format msgid "permission denied for text search configuration %s" msgstr "нет доступа к конфигурации текстового поиска %s" -#: catalog/aclchk.c:3620 +#: catalog/aclchk.c:3625 #, c-format msgid "permission denied for text search dictionary %s" msgstr "нет доступа к словарю текстового поиска %s" -#: catalog/aclchk.c:3623 +#: catalog/aclchk.c:3628 #, c-format msgid "permission denied for type %s" msgstr "нет доступа к типу %s" -#: catalog/aclchk.c:3626 +#: catalog/aclchk.c:3631 #, c-format msgid "permission denied for view %s" msgstr "нет доступа к представлению %s" -#: catalog/aclchk.c:3662 +#: catalog/aclchk.c:3667 #, c-format msgid "must be owner of aggregate %s" msgstr "нужно быть владельцем агрегата %s" -#: catalog/aclchk.c:3665 +#: catalog/aclchk.c:3670 #, c-format msgid "must be owner of collation %s" msgstr "нужно быть владельцем правила сортировки %s" -#: catalog/aclchk.c:3668 +#: catalog/aclchk.c:3673 #, c-format msgid "must be owner of conversion %s" msgstr "нужно быть владельцем преобразования %s" -#: catalog/aclchk.c:3671 +#: catalog/aclchk.c:3676 #, c-format msgid "must be owner of database %s" msgstr "нужно быть владельцем базы %s" -#: catalog/aclchk.c:3674 +#: catalog/aclchk.c:3679 #, c-format msgid "must be owner of domain %s" msgstr "нужно быть владельцем домена %s" -#: catalog/aclchk.c:3677 +#: catalog/aclchk.c:3682 #, c-format msgid "must be owner of event trigger %s" msgstr "нужно быть владельцем событийного триггера %s" -#: catalog/aclchk.c:3680 +#: catalog/aclchk.c:3685 #, c-format msgid "must be owner of extension %s" msgstr "нужно быть владельцем расширения %s" -#: catalog/aclchk.c:3683 +#: catalog/aclchk.c:3688 #, c-format msgid "must be owner of foreign-data wrapper %s" msgstr "нужно быть владельцем обёртки сторонних данных %s" -#: catalog/aclchk.c:3686 +#: catalog/aclchk.c:3691 #, c-format msgid "must be owner of foreign server %s" msgstr "нужно быть \"владельцем\" стороннего сервера %s" -#: catalog/aclchk.c:3689 +#: catalog/aclchk.c:3694 #, c-format msgid "must be owner of foreign table %s" msgstr "нужно быть владельцем сторонней таблицы %s" -#: catalog/aclchk.c:3692 +#: catalog/aclchk.c:3697 #, c-format msgid "must be owner of function %s" msgstr "нужно быть владельцем функции %s" -#: catalog/aclchk.c:3695 +#: catalog/aclchk.c:3700 #, c-format msgid "must be owner of index %s" msgstr "нужно быть владельцем индекса %s" -#: catalog/aclchk.c:3698 +#: catalog/aclchk.c:3703 #, c-format msgid "must be owner of language %s" msgstr "нужно быть владельцем языка %s" -#: catalog/aclchk.c:3701 +#: catalog/aclchk.c:3706 #, c-format msgid "must be owner of large object %s" msgstr "нужно быть владельцем большого объекта %s" -#: catalog/aclchk.c:3704 +#: catalog/aclchk.c:3709 #, c-format msgid "must be owner of materialized view %s" msgstr "нужно быть владельцем материализованного представления %s" -#: catalog/aclchk.c:3707 +#: catalog/aclchk.c:3712 #, c-format msgid "must be owner of operator class %s" msgstr "нужно быть владельцем класса операторов %s" -#: catalog/aclchk.c:3710 +#: catalog/aclchk.c:3715 #, c-format msgid "must be owner of operator %s" msgstr "нужно быть владельцем оператора %s" -#: catalog/aclchk.c:3713 +#: catalog/aclchk.c:3718 #, c-format msgid "must be owner of operator family %s" msgstr "нужно быть владельцем семейства операторов %s" -#: catalog/aclchk.c:3716 +#: catalog/aclchk.c:3721 #, c-format msgid "must be owner of procedure %s" msgstr "нужно быть владельцем процедуры %s" -#: catalog/aclchk.c:3719 +#: catalog/aclchk.c:3724 #, c-format msgid "must be owner of publication %s" msgstr "нужно быть владельцем публикации %s" -#: catalog/aclchk.c:3722 +#: catalog/aclchk.c:3727 #, c-format msgid "must be owner of routine %s" msgstr "нужно быть владельцем подпрограммы %s" -#: catalog/aclchk.c:3725 +#: catalog/aclchk.c:3730 #, c-format msgid "must be owner of sequence %s" msgstr "нужно быть владельцем последовательности %s" -#: catalog/aclchk.c:3728 +#: catalog/aclchk.c:3733 #, c-format msgid "must be owner of subscription %s" msgstr "нужно быть владельцем подписки %s" -#: catalog/aclchk.c:3731 +#: catalog/aclchk.c:3736 #, c-format msgid "must be owner of table %s" msgstr "нужно быть владельцем таблицы %s" -#: catalog/aclchk.c:3734 +#: catalog/aclchk.c:3739 #, c-format msgid "must be owner of type %s" msgstr "нужно быть владельцем типа %s" -#: catalog/aclchk.c:3737 +#: catalog/aclchk.c:3742 #, c-format msgid "must be owner of view %s" msgstr "нужно быть владельцем представления %s" -#: catalog/aclchk.c:3740 +#: catalog/aclchk.c:3745 #, c-format msgid "must be owner of schema %s" msgstr "нужно быть владельцем схемы %s" -#: catalog/aclchk.c:3743 +#: catalog/aclchk.c:3748 #, c-format msgid "must be owner of statistics object %s" msgstr "нужно быть владельцем объекта статистики %s" -#: catalog/aclchk.c:3746 +#: catalog/aclchk.c:3751 #, c-format msgid "must be owner of tablespace %s" msgstr "нужно быть владельцем табличного пространства %s" -#: catalog/aclchk.c:3749 +#: catalog/aclchk.c:3754 #, c-format msgid "must be owner of text search configuration %s" msgstr "нужно быть владельцем конфигурации текстового поиска %s" -#: catalog/aclchk.c:3752 +#: catalog/aclchk.c:3757 #, c-format msgid "must be owner of text search dictionary %s" msgstr "нужно быть владельцем словаря текстового поиска %s" -#: catalog/aclchk.c:3766 +#: catalog/aclchk.c:3771 #, c-format msgid "must be owner of relation %s" msgstr "нужно быть владельцем отношения %s" -#: catalog/aclchk.c:3812 +#: catalog/aclchk.c:3817 #, c-format msgid "permission denied for column \"%s\" of relation \"%s\"" msgstr "нет доступа к столбцу \"%s\" отношения \"%s\"" -#: catalog/aclchk.c:3957 catalog/aclchk.c:3976 +#: catalog/aclchk.c:3962 catalog/aclchk.c:3981 #, c-format msgid "attribute %d of relation with OID %u does not exist" msgstr "атрибут %d отношения с OID %u не существует" -#: catalog/aclchk.c:4071 catalog/aclchk.c:5184 +#: catalog/aclchk.c:4076 catalog/aclchk.c:5189 #, c-format msgid "relation with OID %u does not exist" msgstr "отношение с OID %u не существует" -#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2615 +#: catalog/aclchk.c:4189 catalog/aclchk.c:5607 commands/dbcommands.c:2635 #, c-format msgid "database with OID %u does not exist" msgstr "база данных с OID %u не существует" -#: catalog/aclchk.c:4299 +#: catalog/aclchk.c:4304 #, c-format msgid "parameter ACL with OID %u does not exist" msgstr "ACL параметра с OID %u не существует" -#: catalog/aclchk.c:4353 catalog/aclchk.c:5262 tcop/fastpath.c:141 +#: catalog/aclchk.c:4358 catalog/aclchk.c:5267 tcop/fastpath.c:141 #: utils/fmgr/fmgr.c:2037 #, c-format msgid "function with OID %u does not exist" msgstr "функция с OID %u не существует" -#: catalog/aclchk.c:4407 catalog/aclchk.c:5288 +#: catalog/aclchk.c:4412 catalog/aclchk.c:5293 #, c-format msgid "language with OID %u does not exist" msgstr "язык с OID %u не существует" -#: catalog/aclchk.c:4571 catalog/aclchk.c:5360 commands/collationcmds.c:595 +#: catalog/aclchk.c:4576 catalog/aclchk.c:5365 commands/collationcmds.c:595 #: commands/publicationcmds.c:1745 #, c-format msgid "schema with OID %u does not exist" msgstr "схема с OID %u не существует" -#: catalog/aclchk.c:4635 catalog/aclchk.c:5387 utils/adt/genfile.c:632 +#: catalog/aclchk.c:4640 catalog/aclchk.c:5392 utils/adt/genfile.c:632 #, c-format msgid "tablespace with OID %u does not exist" msgstr "табличное пространство с OID %u не существует" -#: catalog/aclchk.c:4694 catalog/aclchk.c:5521 commands/foreigncmds.c:325 +#: catalog/aclchk.c:4699 catalog/aclchk.c:5526 commands/foreigncmds.c:325 #, c-format msgid "foreign-data wrapper with OID %u does not exist" msgstr "обёртка сторонних данных с OID %u не существует" -#: catalog/aclchk.c:4756 catalog/aclchk.c:5548 commands/foreigncmds.c:462 +#: catalog/aclchk.c:4761 catalog/aclchk.c:5553 commands/foreigncmds.c:462 #, c-format msgid "foreign server with OID %u does not exist" msgstr "сторонний сервер с OID %u не существует" -#: catalog/aclchk.c:4816 catalog/aclchk.c:5210 utils/cache/typcache.c:390 +#: catalog/aclchk.c:4821 catalog/aclchk.c:5215 utils/cache/typcache.c:390 #: utils/cache/typcache.c:445 #, c-format msgid "type with OID %u does not exist" msgstr "тип с OID %u не существует" -#: catalog/aclchk.c:5236 +#: catalog/aclchk.c:5241 #, c-format msgid "operator with OID %u does not exist" msgstr "оператор с OID %u не существует" -#: catalog/aclchk.c:5413 +#: catalog/aclchk.c:5418 #, c-format msgid "operator class with OID %u does not exist" msgstr "класс операторов с OID %u не существует" -#: catalog/aclchk.c:5440 +#: catalog/aclchk.c:5445 #, c-format msgid "operator family with OID %u does not exist" msgstr "семейство операторов с OID %u не существует" -#: catalog/aclchk.c:5467 +#: catalog/aclchk.c:5472 #, c-format msgid "text search dictionary with OID %u does not exist" msgstr "словарь текстового поиска с OID %u не существует" -#: catalog/aclchk.c:5494 +#: catalog/aclchk.c:5499 #, c-format msgid "text search configuration with OID %u does not exist" msgstr "конфигурация текстового поиска с OID %u не существует" -#: catalog/aclchk.c:5575 commands/event_trigger.c:453 +#: catalog/aclchk.c:5580 commands/event_trigger.c:453 #, c-format msgid "event trigger with OID %u does not exist" msgstr "событийный триггер с OID %u не существует" -#: catalog/aclchk.c:5628 commands/collationcmds.c:439 +#: catalog/aclchk.c:5633 commands/collationcmds.c:439 #, c-format msgid "collation with OID %u does not exist" msgstr "правило сортировки с OID %u не существует" -#: catalog/aclchk.c:5654 +#: catalog/aclchk.c:5659 #, c-format msgid "conversion with OID %u does not exist" msgstr "преобразование с OID %u не существует" -#: catalog/aclchk.c:5695 +#: catalog/aclchk.c:5700 #, c-format msgid "extension with OID %u does not exist" msgstr "расширение с OID %u не существует" -#: catalog/aclchk.c:5722 commands/publicationcmds.c:1999 +#: catalog/aclchk.c:5727 commands/publicationcmds.c:1999 #, c-format msgid "publication with OID %u does not exist" msgstr "публикация с OID %u не существует" -#: catalog/aclchk.c:5748 commands/subscriptioncmds.c:1742 +#: catalog/aclchk.c:5753 commands/subscriptioncmds.c:1742 #, c-format msgid "subscription with OID %u does not exist" msgstr "подписка с OID %u не существует" -#: catalog/aclchk.c:5774 +#: catalog/aclchk.c:5779 #, c-format msgid "statistics object with OID %u does not exist" msgstr "объект статистики с OID %u не существует" -#: catalog/catalog.c:468 +#: catalog/catalog.c:477 #, c-format msgid "still searching for an unused OID in relation \"%s\"" msgstr "продолжается поиск неиспользованного OID в отношении \"%s\"" -#: catalog/catalog.c:470 +#: catalog/catalog.c:479 #, c-format msgid "" "OID candidates have been checked %llu time, but no unused OID has been found " @@ -4976,7 +4986,7 @@ msgstr[2] "" "Потенциальные OID были проверены %llu раз, но неиспользуемые OID ещё не были " "найдены." -#: catalog/catalog.c:495 +#: catalog/catalog.c:504 #, c-format msgid "new OID has been assigned in relation \"%s\" after %llu retry" msgid_plural "new OID has been assigned in relation \"%s\" after %llu retries" @@ -4984,27 +4994,27 @@ msgstr[0] "новый OID был назначен в отношении \"%s\" msgstr[1] "новый OID был назначен в отношении \"%s\" после %llu попыток" msgstr[2] "новый OID был назначен в отношении \"%s\" после %llu попыток" -#: catalog/catalog.c:626 catalog/catalog.c:693 +#: catalog/catalog.c:635 catalog/catalog.c:702 #, c-format msgid "must be superuser to call %s()" msgstr "вызывать %s() может только суперпользователь" -#: catalog/catalog.c:635 +#: catalog/catalog.c:644 #, c-format msgid "pg_nextoid() can only be used on system catalogs" msgstr "pg_nextoid() можно использовать только для системных каталогов" -#: catalog/catalog.c:640 parser/parse_utilcmd.c:2296 +#: catalog/catalog.c:649 parser/parse_utilcmd.c:2324 #, c-format msgid "index \"%s\" does not belong to table \"%s\"" msgstr "индекс \"%s\" не принадлежит таблице \"%s\"" -#: catalog/catalog.c:657 +#: catalog/catalog.c:666 #, c-format msgid "column \"%s\" is not of type oid" msgstr "столбец \"%s\" имеет тип не oid" -#: catalog/catalog.c:664 +#: catalog/catalog.c:673 #, c-format msgid "index \"%s\" is not the index for column \"%s\"" msgstr "индекс \"%s\" не является индексом столбца \"%s\"" @@ -5058,13 +5068,13 @@ msgid "cannot drop %s because other objects depend on it" msgstr "удалить объект %s нельзя, так как от него зависят другие объекты" #: catalog/dependency.c:1201 catalog/dependency.c:1208 -#: catalog/dependency.c:1219 commands/tablecmds.c:1325 -#: commands/tablecmds.c:14461 commands/tablespace.c:476 commands/user.c:1008 +#: catalog/dependency.c:1219 commands/tablecmds.c:1342 +#: commands/tablecmds.c:14591 commands/tablespace.c:476 commands/user.c:1008 #: commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 -#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7402 -#: utils/misc/guc.c:7438 utils/misc/guc.c:7508 utils/misc/guc.c:11880 -#: utils/misc/guc.c:11914 utils/misc/guc.c:11948 utils/misc/guc.c:11991 -#: utils/misc/guc.c:12033 +#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7414 +#: utils/misc/guc.c:7450 utils/misc/guc.c:7520 utils/misc/guc.c:11898 +#: utils/misc/guc.c:11932 utils/misc/guc.c:11966 utils/misc/guc.c:12009 +#: utils/misc/guc.c:12051 #, c-format msgid "%s" msgstr "%s" @@ -5109,13 +5119,13 @@ msgstr "нет прав для создания отношения \"%s.%s\"" msgid "System catalog modifications are currently disallowed." msgstr "Изменение системного каталога в текущем состоянии запрещено." -#: catalog/heap.c:466 commands/tablecmds.c:2345 commands/tablecmds.c:2982 -#: commands/tablecmds.c:6910 +#: catalog/heap.c:466 commands/tablecmds.c:2362 commands/tablecmds.c:2999 +#: commands/tablecmds.c:6933 #, c-format msgid "tables can have at most %d columns" msgstr "максимальное число столбцов в таблице: %d" -#: catalog/heap.c:484 commands/tablecmds.c:7210 +#: catalog/heap.c:484 commands/tablecmds.c:7233 #, c-format msgid "column name \"%s\" conflicts with a system column name" msgstr "имя столбца \"%s\" конфликтует с системным столбцом" @@ -5158,7 +5168,7 @@ msgstr "" "сортировки" #: catalog/heap.c:1151 catalog/index.c:875 commands/createas.c:408 -#: commands/tablecmds.c:3899 +#: commands/tablecmds.c:3921 #, c-format msgid "relation \"%s\" already exists" msgstr "отношение \"%s\" уже существует" @@ -5207,7 +5217,7 @@ msgid "check constraint \"%s\" already exists" msgstr "ограничение-проверка \"%s\" уже существует" #: catalog/heap.c:2582 catalog/index.c:889 catalog/pg_constraint.c:689 -#: commands/tablecmds.c:8916 +#: commands/tablecmds.c:8939 #, c-format msgid "constraint \"%s\" for relation \"%s\" already exists" msgstr "ограничение \"%s\" для отношения \"%s\" уже существует" @@ -5269,14 +5279,14 @@ msgstr "" msgid "generation expression is not immutable" msgstr "генерирующее выражение не является постоянным" -#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1290 +#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1291 #, c-format msgid "column \"%s\" is of type %s but default expression is of type %s" msgstr "столбец \"%s\" имеет тип %s, но тип выражения по умолчанию %s" #: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 #: parser/parse_target.c:594 parser/parse_target.c:891 -#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1295 +#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1296 #, c-format msgid "You will need to rewrite or cast the expression." msgstr "Перепишите выражение или преобразуйте его тип." @@ -5315,7 +5325,7 @@ msgid "Truncate table \"%s\" at the same time, or use TRUNCATE ... CASCADE." msgstr "" "Опустошите таблицу \"%s\" параллельно или используйте TRUNCATE ... CASCADE." -#: catalog/index.c:224 parser/parse_utilcmd.c:2201 +#: catalog/index.c:224 parser/parse_utilcmd.c:2229 #, c-format msgid "multiple primary keys for table \"%s\" are not allowed" msgstr "таблица \"%s\" не может иметь несколько первичных ключей" @@ -5373,7 +5383,7 @@ msgid "pg_class index OID value not set when in binary upgrade mode" msgstr "" "значение OID индекса в pg_class не задано в режиме двоичного обновления" -#: catalog/index.c:927 utils/cache/relcache.c:3744 +#: catalog/index.c:927 utils/cache/relcache.c:3745 #, c-format msgid "index relfilenode value not set when in binary upgrade mode" msgstr "" @@ -5384,28 +5394,28 @@ msgstr "" msgid "DROP INDEX CONCURRENTLY must be first action in transaction" msgstr "DROP INDEX CONCURRENTLY должен быть первым действием в транзакции" -#: catalog/index.c:3664 +#: catalog/index.c:3662 #, c-format msgid "cannot reindex temporary tables of other sessions" msgstr "переиндексировать временные таблицы других сеансов нельзя" -#: catalog/index.c:3675 commands/indexcmds.c:3536 +#: catalog/index.c:3673 commands/indexcmds.c:3536 #, c-format msgid "cannot reindex invalid index on TOAST table" msgstr "перестроить нерабочий индекс в таблице TOAST нельзя" -#: catalog/index.c:3691 commands/indexcmds.c:3416 commands/indexcmds.c:3560 -#: commands/tablecmds.c:3314 +#: catalog/index.c:3689 commands/indexcmds.c:3416 commands/indexcmds.c:3560 +#: commands/tablecmds.c:3331 #, c-format msgid "cannot move system relation \"%s\"" msgstr "переместить системную таблицу \"%s\" нельзя" -#: catalog/index.c:3835 +#: catalog/index.c:3833 #, c-format msgid "index \"%s\" was reindexed" msgstr "индекс \"%s\" был перестроен" -#: catalog/index.c:3972 +#: catalog/index.c:3970 #, c-format msgid "cannot reindex invalid index \"%s.%s\" on TOAST table, skipping" msgstr "" @@ -5497,7 +5507,7 @@ msgid "cross-database references are not implemented: %s" msgstr "ссылки между базами не реализованы: %s" #: catalog/namespace.c:2889 parser/parse_expr.c:813 parser/parse_target.c:1276 -#: gram.y:18258 gram.y:18298 +#: gram.y:18265 gram.y:18305 #, c-format msgid "improper qualified name (too many dotted names): %s" msgstr "неверное полное имя (слишком много компонентов): %s" @@ -5513,7 +5523,7 @@ msgid "cannot move objects into or out of TOAST schema" msgstr "перемещать объекты в/из схем TOAST нельзя" #: catalog/namespace.c:3098 commands/schemacmds.c:263 commands/schemacmds.c:343 -#: commands/tablecmds.c:1270 +#: commands/tablecmds.c:1287 #, c-format msgid "schema \"%s\" does not exist" msgstr "схема \"%s\" не существует" @@ -5548,33 +5558,33 @@ msgstr "создавать временные таблицы в процессе msgid "cannot create temporary tables during a parallel operation" msgstr "создавать временные таблицы во время параллельных операций нельзя" -#: catalog/namespace.c:4338 commands/tablespace.c:1236 commands/variable.c:64 -#: utils/misc/guc.c:12065 utils/misc/guc.c:12167 +#: catalog/namespace.c:4338 commands/tablespace.c:1231 commands/variable.c:64 +#: tcop/postgres.c:3649 utils/misc/guc.c:12083 utils/misc/guc.c:12185 #, c-format msgid "List syntax is invalid." msgstr "Ошибка синтаксиса в списке." #: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 -#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2181 -#: commands/tablecmds.c:12398 +#: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2198 +#: commands/tablecmds.c:12528 #, c-format msgid "\"%s\" is not a table" msgstr "\"%s\" - это не таблица" #: catalog/objectaddress.c:1398 commands/tablecmds.c:259 -#: commands/tablecmds.c:17260 commands/view.c:119 +#: commands/tablecmds.c:17398 commands/view.c:119 #, c-format msgid "\"%s\" is not a view" msgstr "\"%s\" - это не представление" #: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 -#: commands/tablecmds.c:17265 +#: commands/tablecmds.c:17403 #, c-format msgid "\"%s\" is not a materialized view" msgstr "\"%s\" - это не материализованное представление" #: catalog/objectaddress.c:1412 commands/tablecmds.c:283 -#: commands/tablecmds.c:17270 +#: commands/tablecmds.c:17408 #, c-format msgid "\"%s\" is not a foreign table" msgstr "\"%s\" - это не сторонняя таблица" @@ -5619,7 +5629,7 @@ msgid "user mapping for user \"%s\" on server \"%s\" does not exist" msgstr "сопоставление для пользователя \"%s\" на сервере \"%s\" не существует" #: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 -#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:691 +#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:701 #, c-format msgid "server \"%s\" does not exist" msgstr "сервер \"%s\" не существует" @@ -6380,8 +6390,8 @@ msgstr "" "Эта секция отсоединяется параллельно или для неё не была завершена операция " "отсоединения." -#: catalog/pg_inherits.c:596 commands/tablecmds.c:4528 -#: commands/tablecmds.c:15577 +#: catalog/pg_inherits.c:596 commands/tablecmds.c:4551 +#: commands/tablecmds.c:15708 #, c-format msgid "" "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending " @@ -6984,7 +6994,7 @@ msgstr "для назначения схемы объекта %s нужно бы #: commands/amcmds.c:60 #, c-format msgid "permission denied to create access method \"%s\"" -msgstr "нет прав на создание метода доступа \"%s\"" +msgstr "нет прав для создания метода доступа \"%s\"" #: commands/amcmds.c:62 #, c-format @@ -7139,7 +7149,7 @@ msgstr "кластеризовать временные таблицы друг msgid "there is no previously clustered index for table \"%s\"" msgstr "таблица \"%s\" ранее не кластеризовалась по какому-либо индексу" -#: commands/cluster.c:190 commands/tablecmds.c:14275 commands/tablecmds.c:16156 +#: commands/cluster.c:190 commands/tablecmds.c:14405 commands/tablecmds.c:16287 #, c-format msgid "index \"%s\" for table \"%s\" does not exist" msgstr "индекс \"%s\" для таблицы \"%s\" не существует" @@ -7154,7 +7164,7 @@ msgstr "кластеризовать разделяемый каталог не msgid "cannot vacuum temporary tables of other sessions" msgstr "очищать временные таблицы других сеансов нельзя" -#: commands/cluster.c:511 commands/tablecmds.c:16166 +#: commands/cluster.c:511 commands/tablecmds.c:16297 #, c-format msgid "\"%s\" is not an index for table \"%s\"" msgstr "\"%s\" не является индексом таблицы \"%s\"" @@ -7221,7 +7231,7 @@ msgid "collation attribute \"%s\" not recognized" msgstr "атрибут COLLATION \"%s\" не распознан" #: commands/collationcmds.c:119 commands/collationcmds.c:125 -#: commands/define.c:389 commands/tablecmds.c:7857 +#: commands/define.c:389 commands/tablecmds.c:7880 #: replication/pgoutput/pgoutput.c:311 replication/pgoutput/pgoutput.c:334 #: replication/pgoutput/pgoutput.c:348 replication/pgoutput/pgoutput.c:358 #: replication/pgoutput/pgoutput.c:368 replication/pgoutput/pgoutput.c:378 @@ -7288,12 +7298,12 @@ msgstr "" msgid "collation \"%s\" already exists in schema \"%s\"" msgstr "правило сортировки \"%s\" уже существует в схеме \"%s\"" -#: commands/collationcmds.c:395 commands/dbcommands.c:2432 +#: commands/collationcmds.c:395 commands/dbcommands.c:2448 #, c-format msgid "changing version from %s to %s" msgstr "изменение версии с %s на %s" -#: commands/collationcmds.c:410 commands/dbcommands.c:2445 +#: commands/collationcmds.c:410 commands/dbcommands.c:2461 #, c-format msgid "version has not changed" msgstr "версия не была изменена" @@ -7309,7 +7319,7 @@ msgid "must be superuser to import system collations" msgstr "" "импортировать системные правила сортировки может только суперпользователь" -#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:679 +#: commands/collationcmds.c:618 commands/copyfrom.c:1509 commands/copyto.c:683 #: libpq/be-secure-common.c:81 #, c-format msgid "could not execute command \"%s\": %m" @@ -7320,10 +7330,10 @@ msgstr "не удалось выполнить команду \"%s\": %m" msgid "no usable system locales were found" msgstr "пригодные системные локали не найдены" -#: commands/comment.c:61 commands/dbcommands.c:1549 commands/dbcommands.c:1761 -#: commands/dbcommands.c:1874 commands/dbcommands.c:2068 -#: commands/dbcommands.c:2310 commands/dbcommands.c:2405 -#: commands/dbcommands.c:2515 commands/dbcommands.c:3014 +#: commands/comment.c:61 commands/dbcommands.c:1551 commands/dbcommands.c:1769 +#: commands/dbcommands.c:1884 commands/dbcommands.c:2078 +#: commands/dbcommands.c:2322 commands/dbcommands.c:2419 +#: commands/dbcommands.c:2532 commands/dbcommands.c:3034 #: utils/init/postinit.c:947 utils/init/postinit.c:1011 #: utils/init/postinit.c:1083 #, c-format @@ -7455,7 +7465,7 @@ msgstr "аргументом параметра \"%s\" должен быть с msgid "argument to option \"%s\" must be a valid encoding name" msgstr "аргументом параметра \"%s\" должно быть название допустимой кодировки" -#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2258 +#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2270 #, c-format msgid "option \"%s\" not recognized" msgstr "параметр \"%s\" не распознан" @@ -7575,14 +7585,14 @@ msgid "Generated columns cannot be used in COPY." msgstr "Генерируемые столбцы нельзя использовать в COPY." #: commands/copy.c:784 commands/indexcmds.c:1826 commands/statscmds.c:243 -#: commands/tablecmds.c:2376 commands/tablecmds.c:3032 -#: commands/tablecmds.c:3538 parser/parse_relation.c:3669 +#: commands/tablecmds.c:2393 commands/tablecmds.c:3049 +#: commands/tablecmds.c:3558 parser/parse_relation.c:3669 #: parser/parse_relation.c:3689 utils/adt/tsvector_op.c:2688 #, c-format msgid "column \"%s\" does not exist" msgstr "столбец \"%s\" не существует" -#: commands/copy.c:791 commands/tablecmds.c:2402 commands/trigger.c:963 +#: commands/copy.c:791 commands/tablecmds.c:2419 commands/trigger.c:963 #: parser/parse_target.c:1093 parser/parse_target.c:1104 #, c-format msgid "column \"%s\" specified more than once" @@ -7659,12 +7669,12 @@ msgstr "" "выполнить COPY FREEZE нельзя, так как таблица не была создана или усечена в " "текущей подтранзакции" -#: commands/copyfrom.c:1270 commands/copyto.c:611 +#: commands/copyfrom.c:1270 commands/copyto.c:615 #, c-format msgid "FORCE_NOT_NULL column \"%s\" not referenced by COPY" msgstr "столбец FORCE_NOT_NULL \"%s\" не фигурирует в COPY" -#: commands/copyfrom.c:1293 commands/copyto.c:634 +#: commands/copyfrom.c:1293 commands/copyto.c:638 #, c-format msgid "FORCE_NULL column \"%s\" not referenced by COPY" msgstr "столбец FORCE_NULL \"%s\" не фигурирует в COPY" @@ -7686,7 +7696,7 @@ msgstr "" "файла. Возможно, на самом деле вам нужно клиентское средство, например, " "\\copy в psql." -#: commands/copyfrom.c:1541 commands/copyto.c:731 +#: commands/copyfrom.c:1541 commands/copyto.c:735 #, c-format msgid "\"%s\" is a directory" msgstr "\"%s\" - это каталог" @@ -7737,7 +7747,7 @@ msgid "could not read from COPY file: %m" msgstr "не удалось прочитать файл COPY: %m" #: commands/copyfromparse.c:278 commands/copyfromparse.c:303 -#: tcop/postgres.c:358 +#: tcop/postgres.c:362 #, c-format msgid "unexpected EOF on client connection with an open transaction" msgstr "неожиданный обрыв соединения с клиентом при открытой транзакции" @@ -7923,7 +7933,7 @@ msgstr "условные правила DO INSTEAD не поддерживают #: commands/copyto.c:468 #, c-format -msgid "DO ALSO rules are not supported for the COPY" +msgid "DO ALSO rules are not supported for COPY" msgstr "правила DO ALSO не поддерживаются с COPY" #: commands/copyto.c:473 @@ -7936,32 +7946,37 @@ msgstr "составные правила DO INSTEAD не поддерживаю msgid "COPY (SELECT INTO) is not supported" msgstr "COPY (SELECT INTO) не поддерживается" -#: commands/copyto.c:500 +#: commands/copyto.c:489 +#, c-format +msgid "COPY query must not be a utility command" +msgstr "служебная команда в запросе COPY не допускается" + +#: commands/copyto.c:504 #, c-format msgid "COPY query must have a RETURNING clause" msgstr "в запросе COPY должно быть предложение RETURNING" -#: commands/copyto.c:529 +#: commands/copyto.c:533 #, c-format msgid "relation referenced by COPY statement has changed" msgstr "отношение, задействованное в операторе COPY, изменилось" -#: commands/copyto.c:588 +#: commands/copyto.c:592 #, c-format msgid "FORCE_QUOTE column \"%s\" not referenced by COPY" msgstr "столбец FORCE_QUOTE \"%s\" не фигурирует в COPY" -#: commands/copyto.c:696 +#: commands/copyto.c:700 #, c-format msgid "relative path not allowed for COPY to file" msgstr "при выполнении COPY в файл нельзя указывать относительный путь" -#: commands/copyto.c:715 +#: commands/copyto.c:719 #, c-format msgid "could not open file \"%s\" for writing: %m" msgstr "не удалось открыть файл \"%s\" для записи: %m" -#: commands/copyto.c:718 +#: commands/copyto.c:722 #, c-format msgid "" "COPY TO instructs the PostgreSQL server process to write a file. You may " @@ -8011,7 +8026,7 @@ msgstr "%s не является верным названием кодиров msgid "unrecognized locale provider: %s" msgstr "нераспознанный провайдер локали: %s" -#: commands/dbcommands.c:920 commands/dbcommands.c:2291 commands/user.c:237 +#: commands/dbcommands.c:920 commands/dbcommands.c:2303 commands/user.c:237 #: commands/user.c:611 #, c-format msgid "invalid connection limit: %d" @@ -8020,7 +8035,7 @@ msgstr "неверный предел подключений: %d" #: commands/dbcommands.c:941 #, c-format msgid "permission denied to create database" -msgstr "нет прав на создание базы данных" +msgstr "нет прав для создания базы данных" #: commands/dbcommands.c:965 #, c-format @@ -8032,7 +8047,7 @@ msgstr "шаблон базы данных \"%s\" не существует" msgid "cannot use invalid database \"%s\" as template" msgstr "использовать некорректную базу \"%s\" в качестве шаблона нельзя" -#: commands/dbcommands.c:976 commands/dbcommands.c:2320 +#: commands/dbcommands.c:976 commands/dbcommands.c:2333 #: utils/init/postinit.c:1026 #, c-format msgid "Use DROP DATABASE to drop invalid databases." @@ -8041,7 +8056,7 @@ msgstr "Выполните DROP DATABASE для удаления некорре #: commands/dbcommands.c:987 #, c-format msgid "permission denied to copy database \"%s\"" -msgstr "нет прав на копирование базы данных \"%s\"" +msgstr "нет прав для копирования базы данных \"%s\"" #: commands/dbcommands.c:1004 #, c-format @@ -8200,7 +8215,7 @@ msgstr "" "сортировки, и выполните ALTER DATABASE %s REFRESH COLLATION VERSION, либо " "соберите PostgreSQL с правильной версией библиотеки." -#: commands/dbcommands.c:1186 commands/dbcommands.c:1920 +#: commands/dbcommands.c:1186 commands/dbcommands.c:1930 #, c-format msgid "pg_global cannot be used as default tablespace" msgstr "" @@ -8220,7 +8235,7 @@ msgstr "" "База данных \"%s\" содержит таблицы, которые уже находятся в этом табличном " "пространстве." -#: commands/dbcommands.c:1244 commands/dbcommands.c:1790 +#: commands/dbcommands.c:1244 commands/dbcommands.c:1798 #, c-format msgid "database \"%s\" already exists" msgstr "база данных \"%s\" уже существует" @@ -8255,27 +8270,27 @@ msgstr "Для выбранного параметра LC_CTYPE требуетс msgid "The chosen LC_COLLATE setting requires encoding \"%s\"." msgstr "Для выбранного параметра LC_COLLATE требуется кодировка \"%s\"." -#: commands/dbcommands.c:1556 +#: commands/dbcommands.c:1558 #, c-format msgid "database \"%s\" does not exist, skipping" msgstr "база данных \"%s\" не существует, пропускается" -#: commands/dbcommands.c:1580 +#: commands/dbcommands.c:1582 #, c-format msgid "cannot drop a template database" msgstr "удалить шаблон базы данных нельзя" -#: commands/dbcommands.c:1586 +#: commands/dbcommands.c:1588 #, c-format msgid "cannot drop the currently open database" msgstr "удалить базу данных, открытую в данный момент, нельзя" -#: commands/dbcommands.c:1599 +#: commands/dbcommands.c:1601 #, c-format msgid "database \"%s\" is used by an active logical replication slot" msgstr "база \"%s\" используется активным слотом логической репликации" -#: commands/dbcommands.c:1601 +#: commands/dbcommands.c:1603 #, c-format msgid "There is %d active slot." msgid_plural "There are %d active slots." @@ -8283,12 +8298,12 @@ msgstr[0] "Обнаружен %d активный слот." msgstr[1] "Обнаружены %d активных слота." msgstr[2] "Обнаружено %d активных слотов." -#: commands/dbcommands.c:1615 +#: commands/dbcommands.c:1617 #, c-format msgid "database \"%s\" is being used by logical replication subscription" msgstr "база \"%s\" используется в подписке с логической репликацией" -#: commands/dbcommands.c:1617 +#: commands/dbcommands.c:1619 #, c-format msgid "There is %d subscription." msgid_plural "There are %d subscriptions." @@ -8296,36 +8311,36 @@ msgstr[0] "Обнаружена %d подписка." msgstr[1] "Обнаружены %d подписки." msgstr[2] "Обнаружено %d подписок." -#: commands/dbcommands.c:1638 commands/dbcommands.c:1812 -#: commands/dbcommands.c:1942 +#: commands/dbcommands.c:1640 commands/dbcommands.c:1820 +#: commands/dbcommands.c:1952 #, c-format msgid "database \"%s\" is being accessed by other users" msgstr "база данных \"%s\" занята другими пользователями" -#: commands/dbcommands.c:1772 +#: commands/dbcommands.c:1780 #, c-format msgid "permission denied to rename database" -msgstr "нет прав на переименование базы данных" +msgstr "нет прав для переименования базы данных" -#: commands/dbcommands.c:1801 +#: commands/dbcommands.c:1809 #, c-format msgid "current database cannot be renamed" msgstr "нельзя переименовать текущую базу данных" -#: commands/dbcommands.c:1898 +#: commands/dbcommands.c:1908 #, c-format msgid "cannot change the tablespace of the currently open database" msgstr "" "изменить табличное пространство открытой в данный момент базы данных нельзя" -#: commands/dbcommands.c:2004 +#: commands/dbcommands.c:2014 #, c-format msgid "some relations of database \"%s\" are already in tablespace \"%s\"" msgstr "" "некоторые отношения базы данных \"%s\" уже находятся в табличном " "пространстве \"%s\"" -#: commands/dbcommands.c:2006 +#: commands/dbcommands.c:2016 #, c-format msgid "" "You must move them back to the database's default tablespace before using " @@ -8334,38 +8349,38 @@ msgstr "" "Прежде чем выполнять эту команду, вы должны вернуть их назад в табличное " "пространство по умолчанию для этой базы данных." -#: commands/dbcommands.c:2133 commands/dbcommands.c:2852 -#: commands/dbcommands.c:3152 commands/dbcommands.c:3266 +#: commands/dbcommands.c:2145 commands/dbcommands.c:2872 +#: commands/dbcommands.c:3172 commands/dbcommands.c:3286 #, c-format msgid "some useless files may be left behind in old database directory \"%s\"" msgstr "в старом каталоге базы данных \"%s\" могли остаться ненужные файлы" -#: commands/dbcommands.c:2194 +#: commands/dbcommands.c:2206 #, c-format msgid "unrecognized DROP DATABASE option \"%s\"" msgstr "нераспознанный параметр DROP DATABASE: \"%s\"" -#: commands/dbcommands.c:2272 +#: commands/dbcommands.c:2284 #, c-format msgid "option \"%s\" cannot be specified with other options" msgstr "параметр \"%s\" нельзя задать с другими параметрами" -#: commands/dbcommands.c:2319 +#: commands/dbcommands.c:2332 #, c-format msgid "cannot alter invalid database \"%s\"" msgstr "изменить свойства некорректной базы \"%s\" нельзя" -#: commands/dbcommands.c:2336 +#: commands/dbcommands.c:2349 #, c-format msgid "cannot disallow connections for current database" msgstr "запретить подключения к текущей базе данных нельзя" -#: commands/dbcommands.c:2555 +#: commands/dbcommands.c:2572 #, c-format msgid "permission denied to change owner of database" -msgstr "нет прав на изменение владельца базы данных" +msgstr "нет прав для изменения владельца базы данных" -#: commands/dbcommands.c:2958 +#: commands/dbcommands.c:2978 #, c-format msgid "" "There are %d other session(s) and %d prepared transaction(s) using the " @@ -8374,7 +8389,7 @@ msgstr "" "С этой базой данных связаны другие сеансы (%d) и подготовленные транзакции " "(%d)." -#: commands/dbcommands.c:2961 +#: commands/dbcommands.c:2981 #, c-format msgid "There is %d other session using the database." msgid_plural "There are %d other sessions using the database." @@ -8382,7 +8397,7 @@ msgstr[0] "Эта база данных используется ещё в %d с msgstr[1] "Эта база данных используется ещё в %d сеансах." msgstr[2] "Эта база данных используется ещё в %d сеансах." -#: commands/dbcommands.c:2966 storage/ipc/procarray.c:3859 +#: commands/dbcommands.c:2986 storage/ipc/procarray.c:3859 #, c-format msgid "There is %d prepared transaction using the database." msgid_plural "There are %d prepared transactions using the database." @@ -8390,12 +8405,12 @@ msgstr[0] "С этой базой данных связана %d подгото msgstr[1] "С этой базой данных связаны %d подготовленные транзакции." msgstr[2] "С этой базой данных связаны %d подготовленных транзакций." -#: commands/dbcommands.c:3108 +#: commands/dbcommands.c:3128 #, c-format msgid "missing directory \"%s\"" msgstr "отсутствует каталог \"%s\"" -#: commands/dbcommands.c:3168 commands/tablespace.c:190 +#: commands/dbcommands.c:3188 commands/tablespace.c:190 #: commands/tablespace.c:654 #, c-format msgid "could not stat directory \"%s\": %m" @@ -8449,14 +8464,14 @@ msgstr "функция \"%s\" является агрегатной" msgid "Use DROP AGGREGATE to drop aggregate functions." msgstr "Используйте DROP AGGREGATE для удаления агрегатных функций." -#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3622 -#: commands/tablecmds.c:3780 commands/tablecmds.c:3832 -#: commands/tablecmds.c:16583 tcop/utility.c:1332 +#: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3642 +#: commands/tablecmds.c:3800 commands/tablecmds.c:3852 +#: commands/tablecmds.c:16714 tcop/utility.c:1332 #, c-format msgid "relation \"%s\" does not exist, skipping" msgstr "отношение \"%s\" не существует, пропускается" -#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1275 +#: commands/dropcmds.c:188 commands/dropcmds.c:287 commands/tablecmds.c:1292 #, c-format msgid "schema \"%s\" does not exist, skipping" msgstr "схема \"%s\" не существует, пропускается" @@ -8603,7 +8618,7 @@ msgstr "публикация \"%s\" не существует, пропуска #: commands/event_trigger.c:125 #, c-format msgid "permission denied to create event trigger \"%s\"" -msgstr "нет прав на создание событийного триггера \"%s\"" +msgstr "нет прав для создания событийного триггера \"%s\"" #: commands/event_trigger.c:127 #, c-format @@ -8645,7 +8660,7 @@ msgstr "событийный триггер \"%s\" не существует" #: commands/event_trigger.c:483 #, c-format msgid "permission denied to change owner of event trigger \"%s\"" -msgstr "нет прав на изменение владельца событийного триггера \"%s\"" +msgstr "нет прав для изменения владельца событийного триггера \"%s\"" #: commands/event_trigger.c:485 #, c-format @@ -8775,7 +8790,7 @@ msgstr "" "параметр \"%s\" нельзя задавать в дополнительном управляющем файле расширения" #: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 -#: utils/misc/guc.c:7380 +#: utils/misc/guc.c:7392 #, c-format msgid "parameter \"%s\" requires a Boolean value" msgstr "параметр \"%s\" требует логическое значение" @@ -8810,7 +8825,7 @@ msgstr "в скрипте расширения не должно быть опе #: commands/extension.c:873 #, c-format msgid "permission denied to create extension \"%s\"" -msgstr "нет прав на создание расширения \"%s\"" +msgstr "нет прав для создания расширения \"%s\"" #: commands/extension.c:876 #, c-format @@ -8826,7 +8841,7 @@ msgstr "Для создания этого расширения нужно бы #: commands/extension.c:881 #, c-format msgid "permission denied to update extension \"%s\"" -msgstr "нет прав на изменение расширения \"%s\"" +msgstr "нет прав для изменения расширения \"%s\"" #: commands/extension.c:884 #, c-format @@ -9002,7 +9017,7 @@ msgstr "параметр \"%s\" указан неоднократно" #: commands/foreigncmds.c:221 commands/foreigncmds.c:229 #, c-format msgid "permission denied to change owner of foreign-data wrapper \"%s\"" -msgstr "нет прав на изменение владельца обёртки сторонних данных \"%s\"" +msgstr "нет прав для изменения владельца обёртки сторонних данных \"%s\"" #: commands/foreigncmds.c:223 #, c-format @@ -9015,7 +9030,7 @@ msgstr "" msgid "The owner of a foreign-data wrapper must be a superuser." msgstr "Владельцем обёртки сторонних данных должен быть суперпользователь." -#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:669 +#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:679 #, c-format msgid "foreign-data wrapper \"%s\" does not exist" msgstr "обёртка сторонних данных \"%s\" не существует" @@ -9023,7 +9038,7 @@ msgstr "обёртка сторонних данных \"%s\" не сущест #: commands/foreigncmds.c:580 #, c-format msgid "permission denied to create foreign-data wrapper \"%s\"" -msgstr "нет прав на создание обёртки сторонних данных \"%s\"" +msgstr "нет прав для создания обёртки сторонних данных \"%s\"" #: commands/foreigncmds.c:582 #, c-format @@ -9033,7 +9048,7 @@ msgstr "Для создания обёртки сторонних данных #: commands/foreigncmds.c:697 #, c-format msgid "permission denied to alter foreign-data wrapper \"%s\"" -msgstr "нет прав на изменение обёртки сторонних данных \"%s\"" +msgstr "нет прав для изменения обёртки сторонних данных \"%s\"" #: commands/foreigncmds.c:699 #, c-format @@ -9087,7 +9102,7 @@ msgstr "" "сопоставление пользователя \"%s\" для сервера \"%s\" не существует, " "пропускается" -#: commands/foreigncmds.c:1507 foreign/foreign.c:390 +#: commands/foreigncmds.c:1507 foreign/foreign.c:400 #, c-format msgid "foreign-data wrapper \"%s\" has no handler" msgstr "обёртка сторонних данных \"%s\" не имеет обработчика" @@ -9519,14 +9534,14 @@ msgstr "" msgid "cannot create indexes on temporary tables of other sessions" msgstr "создавать индексы во временных таблицах других сеансов нельзя" -#: commands/indexcmds.c:760 commands/tablecmds.c:782 commands/tablespace.c:1204 +#: commands/indexcmds.c:760 commands/tablecmds.c:799 commands/tablespace.c:1199 #, c-format msgid "cannot specify default tablespace for partitioned relations" msgstr "" "для секционированных отношений нельзя назначить табличное пространство по " "умолчанию" -#: commands/indexcmds.c:792 commands/tablecmds.c:813 commands/tablecmds.c:3321 +#: commands/indexcmds.c:792 commands/tablecmds.c:830 commands/tablecmds.c:3338 #, c-format msgid "only shared relations can be placed in pg_global tablespace" msgstr "" @@ -9614,13 +9629,13 @@ msgstr "Таблица \"%s\" содержит секции, являющиес msgid "functions in index predicate must be marked IMMUTABLE" msgstr "функции в предикате индекса должны быть помечены как IMMUTABLE" -#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2545 -#: parser/parse_utilcmd.c:2680 +#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2573 +#: parser/parse_utilcmd.c:2708 #, c-format msgid "column \"%s\" named in key does not exist" msgstr "указанный в ключе столбец \"%s\" не существует" -#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1831 +#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1859 #, c-format msgid "expressions are not supported in included columns" msgstr "выражения во включаемых столбцах не поддерживаются" @@ -9655,9 +9670,9 @@ msgstr "включаемые столбцы не поддерживают ука msgid "could not determine which collation to use for index expression" msgstr "не удалось определить правило сортировки для индексного выражения" -#: commands/indexcmds.c:1962 commands/tablecmds.c:17603 commands/typecmds.c:807 -#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3795 -#: utils/adt/misc.c:601 +#: commands/indexcmds.c:1962 commands/tablecmds.c:17741 commands/typecmds.c:807 +#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3823 +#: utils/adt/misc.c:594 #, c-format msgid "collations are not supported by type %s" msgstr "тип %s не поддерживает сортировку (COLLATION)" @@ -9698,8 +9713,8 @@ msgstr "метод доступа \"%s\" не поддерживает сорт msgid "access method \"%s\" does not support NULLS FIRST/LAST options" msgstr "метод доступа \"%s\" не поддерживает параметр NULLS FIRST/LAST" -#: commands/indexcmds.c:2144 commands/tablecmds.c:17628 -#: commands/tablecmds.c:17634 commands/typecmds.c:2302 +#: commands/indexcmds.c:2144 commands/tablecmds.c:17766 +#: commands/tablecmds.c:17772 commands/typecmds.c:2302 #, c-format msgid "data type %s has no default operator class for access method \"%s\"" msgstr "" @@ -9836,7 +9851,7 @@ msgstr "" "CONCURRENTLY нельзя использовать, когда материализованное представление не " "наполнено" -#: commands/matview.c:199 gram.y:17995 +#: commands/matview.c:199 gram.y:18002 #, c-format msgid "%s and %s options cannot be used together" msgstr "параметры %s и %s исключают друг друга" @@ -10163,10 +10178,10 @@ msgid "operator attribute \"%s\" cannot be changed" msgstr "атрибут оператора \"%s\" нельзя изменить" #: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 -#: commands/tablecmds.c:1606 commands/tablecmds.c:2194 -#: commands/tablecmds.c:3432 commands/tablecmds.c:6354 -#: commands/tablecmds.c:9197 commands/tablecmds.c:17181 -#: commands/tablecmds.c:17216 commands/trigger.c:328 commands/trigger.c:1378 +#: commands/tablecmds.c:1623 commands/tablecmds.c:2211 +#: commands/tablecmds.c:3452 commands/tablecmds.c:6377 +#: commands/tablecmds.c:9220 commands/tablecmds.c:17319 +#: commands/tablecmds.c:17354 commands/trigger.c:328 commands/trigger.c:1378 #: commands/trigger.c:1488 rewrite/rewriteDefine.c:279 #: rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 #, c-format @@ -10473,7 +10488,7 @@ msgstr "таблицы из схемы \"%s\" не являются частью #: commands/publicationcmds.c:1924 commands/publicationcmds.c:1931 #, c-format msgid "permission denied to change owner of publication \"%s\"" -msgstr "нет прав на изменение владельца публикации \"%s\"" +msgstr "нет прав для изменения владельца публикации \"%s\"" #: commands/publicationcmds.c:1926 #, c-format @@ -10562,105 +10577,105 @@ msgstr "" "функции setval передано значение %lld вне пределов последовательности " "\"%s\" (%lld..%lld)" -#: commands/sequence.c:1372 +#: commands/sequence.c:1375 #, c-format msgid "invalid sequence option SEQUENCE NAME" msgstr "неверное свойство последовательности SEQUENCE NAME" -#: commands/sequence.c:1398 +#: commands/sequence.c:1401 #, c-format msgid "identity column type must be smallint, integer, or bigint" msgstr "" "типом столбца идентификации может быть только smallint, integer или bigint" -#: commands/sequence.c:1399 +#: commands/sequence.c:1402 #, c-format msgid "sequence type must be smallint, integer, or bigint" msgstr "" "типом последовательности может быть только smallint, integer или bigint" -#: commands/sequence.c:1433 +#: commands/sequence.c:1436 #, c-format msgid "INCREMENT must not be zero" msgstr "INCREMENT не может быть нулевым" -#: commands/sequence.c:1481 +#: commands/sequence.c:1484 #, c-format msgid "MAXVALUE (%lld) is out of range for sequence data type %s" msgstr "MAXVALUE (%lld) выходит за пределы типа данных последовательности %s" -#: commands/sequence.c:1513 +#: commands/sequence.c:1516 #, c-format msgid "MINVALUE (%lld) is out of range for sequence data type %s" msgstr "MINVALUE (%lld) выходит за пределы типа данных последовательности %s" -#: commands/sequence.c:1521 +#: commands/sequence.c:1524 #, c-format msgid "MINVALUE (%lld) must be less than MAXVALUE (%lld)" msgstr "MINVALUE (%lld) должно быть меньше MAXVALUE (%lld)" -#: commands/sequence.c:1542 +#: commands/sequence.c:1545 #, c-format msgid "START value (%lld) cannot be less than MINVALUE (%lld)" msgstr "значение START (%lld) не может быть меньше MINVALUE (%lld)" -#: commands/sequence.c:1548 +#: commands/sequence.c:1551 #, c-format msgid "START value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "значение START (%lld) не может быть больше MAXVALUE (%lld)" -#: commands/sequence.c:1572 +#: commands/sequence.c:1575 #, c-format msgid "RESTART value (%lld) cannot be less than MINVALUE (%lld)" msgstr "значение RESTART (%lld) не может быть меньше MINVALUE (%lld)" -#: commands/sequence.c:1578 +#: commands/sequence.c:1581 #, c-format msgid "RESTART value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "значение RESTART (%lld) не может быть больше MAXVALUE (%lld)" -#: commands/sequence.c:1589 +#: commands/sequence.c:1592 #, c-format msgid "CACHE (%lld) must be greater than zero" msgstr "значение CACHE (%lld) должно быть больше нуля" -#: commands/sequence.c:1625 +#: commands/sequence.c:1628 #, c-format msgid "invalid OWNED BY option" msgstr "неверное указание OWNED BY" # skip-rule: no-space-after-period -#: commands/sequence.c:1626 +#: commands/sequence.c:1629 #, c-format msgid "Specify OWNED BY table.column or OWNED BY NONE." msgstr "Укажите OWNED BY таблица.столбец или OWNED BY NONE." -#: commands/sequence.c:1651 +#: commands/sequence.c:1654 #, c-format msgid "sequence cannot be owned by relation \"%s\"" msgstr "последовательность не может принадлежать отношению \"%s\"" -#: commands/sequence.c:1659 +#: commands/sequence.c:1662 #, c-format msgid "sequence must have same owner as table it is linked to" msgstr "" "последовательность должна иметь того же владельца, что и таблица, с которой " "она связана" -#: commands/sequence.c:1663 +#: commands/sequence.c:1666 #, c-format msgid "sequence must be in same schema as table it is linked to" msgstr "" "последовательность должна быть в той же схеме, что и таблица, с которой она " "связана" -#: commands/sequence.c:1685 +#: commands/sequence.c:1688 #, c-format msgid "cannot change ownership of identity sequence" msgstr "сменить владельца последовательности идентификации нельзя" -#: commands/sequence.c:1686 commands/tablecmds.c:13966 -#: commands/tablecmds.c:16603 +#: commands/sequence.c:1689 commands/tablecmds.c:14096 +#: commands/tablecmds.c:16734 #, c-format msgid "Sequence \"%s\" is linked to table \"%s\"." msgstr "Последовательность \"%s\" связана с таблицей \"%s\"." @@ -10742,12 +10757,12 @@ msgstr "повторяющееся имя столбца в определени msgid "duplicate expression in statistics definition" msgstr "повторяющееся выражение в определении статистики" -#: commands/statscmds.c:620 commands/tablecmds.c:8161 +#: commands/statscmds.c:620 commands/tablecmds.c:8184 #, c-format msgid "statistics target %d is too low" msgstr "ориентир статистики слишком мал (%d)" -#: commands/statscmds.c:628 commands/tablecmds.c:8169 +#: commands/statscmds.c:628 commands/tablecmds.c:8192 #, c-format msgid "lowering statistics target to %d" msgstr "ориентир статистики снижается до %d" @@ -10929,7 +10944,7 @@ msgstr "слот репликации \"%s\" на сервере публика #: commands/subscriptioncmds.c:1672 #, c-format msgid "permission denied to change owner of subscription \"%s\"" -msgstr "нет прав на изменение владельца подписки \"%s\"" +msgstr "нет прав для изменения владельца подписки \"%s\"" #: commands/subscriptioncmds.c:1674 #, c-format @@ -11049,8 +11064,8 @@ msgstr "" "Выполните DROP MATERIALIZED VIEW для удаления материализованного " "представления." -#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19119 -#: parser/parse_utilcmd.c:2277 +#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19313 +#: parser/parse_utilcmd.c:2305 #, c-format msgid "index \"%s\" does not exist" msgstr "индекс \"%s\" не существует" @@ -11073,8 +11088,8 @@ msgstr "\"%s\" - это не тип" msgid "Use DROP TYPE to remove a type." msgstr "Выполните DROP TYPE для удаления типа." -#: commands/tablecmds.c:281 commands/tablecmds.c:13805 -#: commands/tablecmds.c:16306 +#: commands/tablecmds.c:281 commands/tablecmds.c:13935 +#: commands/tablecmds.c:16437 #, c-format msgid "foreign table \"%s\" does not exist" msgstr "сторонняя таблица \"%s\" не существует" @@ -11088,24 +11103,24 @@ msgstr "сторонняя таблица \"%s\" не существует, пр msgid "Use DROP FOREIGN TABLE to remove a foreign table." msgstr "Выполните DROP FOREIGN TABLE для удаления сторонней таблицы." -#: commands/tablecmds.c:698 +#: commands/tablecmds.c:715 #, c-format msgid "ON COMMIT can only be used on temporary tables" msgstr "ON COMMIT можно использовать только для временных таблиц" -#: commands/tablecmds.c:729 +#: commands/tablecmds.c:746 #, c-format msgid "cannot create temporary table within security-restricted operation" msgstr "" "в рамках операции с ограничениями по безопасности нельзя создать временную " "таблицу" -#: commands/tablecmds.c:765 commands/tablecmds.c:15113 +#: commands/tablecmds.c:782 commands/tablecmds.c:15244 #, c-format msgid "relation \"%s\" would be inherited from more than once" msgstr "отношение \"%s\" наследуется неоднократно" -#: commands/tablecmds.c:946 +#: commands/tablecmds.c:963 #, c-format msgid "" "specifying a table access method is not supported on a partitioned table" @@ -11113,47 +11128,47 @@ msgstr "" "указание табличного метода доступа для секционированных таблиц не " "поддерживаются" -#: commands/tablecmds.c:1039 +#: commands/tablecmds.c:1056 #, c-format msgid "\"%s\" is not partitioned" msgstr "отношение \"%s\" не является секционированным" -#: commands/tablecmds.c:1134 +#: commands/tablecmds.c:1151 #, c-format msgid "cannot partition using more than %d columns" msgstr "число столбцов в ключе секционирования не может превышать %d" -#: commands/tablecmds.c:1190 +#: commands/tablecmds.c:1207 #, c-format msgid "cannot create foreign partition of partitioned table \"%s\"" msgstr "создать стороннюю секцию для секционированной таблицы \"%s\" нельзя" -#: commands/tablecmds.c:1192 +#: commands/tablecmds.c:1209 #, c-format msgid "Table \"%s\" contains indexes that are unique." msgstr "Таблица \"%s\" содержит индексы, являющиеся уникальными." -#: commands/tablecmds.c:1355 +#: commands/tablecmds.c:1372 #, c-format msgid "DROP INDEX CONCURRENTLY does not support dropping multiple objects" msgstr "DROP INDEX CONCURRENTLY не поддерживает удаление нескольких объектов" -#: commands/tablecmds.c:1359 +#: commands/tablecmds.c:1376 #, c-format msgid "DROP INDEX CONCURRENTLY does not support CASCADE" msgstr "DROP INDEX CONCURRENTLY не поддерживает режим CASCADE" -#: commands/tablecmds.c:1463 +#: commands/tablecmds.c:1480 #, c-format msgid "cannot drop partitioned index \"%s\" concurrently" msgstr "удалить секционированный индекс \"%s\" параллельным способом нельзя" -#: commands/tablecmds.c:1751 +#: commands/tablecmds.c:1768 #, c-format msgid "cannot truncate only a partitioned table" msgstr "опустошить собственно секционированную таблицу нельзя" -#: commands/tablecmds.c:1752 +#: commands/tablecmds.c:1769 #, c-format msgid "" "Do not specify the ONLY keyword, or use TRUNCATE ONLY on the partitions " @@ -11162,39 +11177,39 @@ msgstr "" "Не указывайте ключевое слово ONLY или выполните TRUNCATE ONLY " "непосредственно для секций." -#: commands/tablecmds.c:1824 +#: commands/tablecmds.c:1841 #, c-format msgid "truncate cascades to table \"%s\"" msgstr "опустошение распространяется на таблицу %s" -#: commands/tablecmds.c:2174 +#: commands/tablecmds.c:2191 #, c-format msgid "cannot truncate foreign table \"%s\"" msgstr "опустошить стороннюю таблицу \"%s\" нельзя" -#: commands/tablecmds.c:2231 +#: commands/tablecmds.c:2248 #, c-format msgid "cannot truncate temporary tables of other sessions" msgstr "временные таблицы других сеансов нельзя опустошить" -#: commands/tablecmds.c:2459 commands/tablecmds.c:15010 +#: commands/tablecmds.c:2476 commands/tablecmds.c:15141 #, c-format msgid "cannot inherit from partitioned table \"%s\"" msgstr "наследование от секционированной таблицы \"%s\" не допускается" -#: commands/tablecmds.c:2464 +#: commands/tablecmds.c:2481 #, c-format msgid "cannot inherit from partition \"%s\"" msgstr "наследование от секции \"%s\" не допускается" -#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2507 -#: parser/parse_utilcmd.c:2649 +#: commands/tablecmds.c:2489 parser/parse_utilcmd.c:2535 +#: parser/parse_utilcmd.c:2677 #, c-format msgid "inherited relation \"%s\" is not a table or foreign table" msgstr "" "наследуемое отношение \"%s\" не является таблицей или сторонней таблицей" -#: commands/tablecmds.c:2484 +#: commands/tablecmds.c:2501 #, c-format msgid "" "cannot create a temporary relation as partition of permanent relation \"%s\"" @@ -11202,29 +11217,29 @@ msgstr "" "создать временное отношение в качестве секции постоянного отношения \"%s\" " "нельзя" -#: commands/tablecmds.c:2493 commands/tablecmds.c:14989 +#: commands/tablecmds.c:2510 commands/tablecmds.c:15120 #, c-format msgid "cannot inherit from temporary relation \"%s\"" msgstr "временное отношение \"%s\" не может наследоваться" -#: commands/tablecmds.c:2503 commands/tablecmds.c:14997 +#: commands/tablecmds.c:2520 commands/tablecmds.c:15128 #, c-format msgid "cannot inherit from temporary relation of another session" msgstr "наследование от временного отношения другого сеанса невозможно" -#: commands/tablecmds.c:2557 +#: commands/tablecmds.c:2574 #, c-format msgid "merging multiple inherited definitions of column \"%s\"" msgstr "слияние нескольких наследованных определений столбца \"%s\"" -#: commands/tablecmds.c:2565 +#: commands/tablecmds.c:2582 #, c-format msgid "inherited column \"%s\" has a type conflict" msgstr "конфликт типов в наследованном столбце \"%s\"" -#: commands/tablecmds.c:2567 commands/tablecmds.c:2590 -#: commands/tablecmds.c:2607 commands/tablecmds.c:2863 -#: commands/tablecmds.c:2893 commands/tablecmds.c:2907 +#: commands/tablecmds.c:2584 commands/tablecmds.c:2607 +#: commands/tablecmds.c:2624 commands/tablecmds.c:2880 +#: commands/tablecmds.c:2910 commands/tablecmds.c:2924 #: parser/parse_coerce.c:2155 parser/parse_coerce.c:2175 #: parser/parse_coerce.c:2195 parser/parse_coerce.c:2216 #: parser/parse_coerce.c:2271 parser/parse_coerce.c:2305 @@ -11235,41 +11250,41 @@ msgstr "конфликт типов в наследованном столбце msgid "%s versus %s" msgstr "%s и %s" -#: commands/tablecmds.c:2576 +#: commands/tablecmds.c:2593 #, c-format msgid "inherited column \"%s\" has a collation conflict" msgstr "конфликт правил сортировки в наследованном столбце \"%s\"" -#: commands/tablecmds.c:2578 commands/tablecmds.c:2875 -#: commands/tablecmds.c:6837 +#: commands/tablecmds.c:2595 commands/tablecmds.c:2892 +#: commands/tablecmds.c:6860 #, c-format msgid "\"%s\" versus \"%s\"" msgstr "\"%s\" и \"%s\"" -#: commands/tablecmds.c:2588 +#: commands/tablecmds.c:2605 #, c-format msgid "inherited column \"%s\" has a storage parameter conflict" msgstr "конфликт параметров хранения в наследованном столбце \"%s\"" -#: commands/tablecmds.c:2605 commands/tablecmds.c:2905 +#: commands/tablecmds.c:2622 commands/tablecmds.c:2922 #, c-format msgid "column \"%s\" has a compression method conflict" msgstr "в столбце \"%s\" возник конфликт методов сжатия" -#: commands/tablecmds.c:2620 +#: commands/tablecmds.c:2637 #, c-format msgid "inherited column \"%s\" has a generation conflict" msgstr "конфликт свойства генерирования в наследованном столбце \"%s\"" -#: commands/tablecmds.c:2714 commands/tablecmds.c:2769 -#: commands/tablecmds.c:12496 parser/parse_utilcmd.c:1269 -#: parser/parse_utilcmd.c:1312 parser/parse_utilcmd.c:1759 -#: parser/parse_utilcmd.c:1867 +#: commands/tablecmds.c:2731 commands/tablecmds.c:2786 +#: commands/tablecmds.c:12626 parser/parse_utilcmd.c:1297 +#: parser/parse_utilcmd.c:1340 parser/parse_utilcmd.c:1787 +#: parser/parse_utilcmd.c:1895 #, c-format msgid "cannot convert whole-row table reference" msgstr "преобразовать ссылку на тип всей строки таблицы нельзя" -#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1270 +#: commands/tablecmds.c:2732 parser/parse_utilcmd.c:1298 #, c-format msgid "" "Generation expression for column \"%s\" contains a whole-row reference to " @@ -11278,48 +11293,48 @@ msgstr "" "Генерирующее выражение столбца \"%s\" ссылается на тип всей строки в таблице " "\"%s\"." -#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1313 +#: commands/tablecmds.c:2787 parser/parse_utilcmd.c:1341 #, c-format msgid "Constraint \"%s\" contains a whole-row reference to table \"%s\"." msgstr "Ограничение \"%s\" ссылается на тип всей строки в таблице \"%s\"." -#: commands/tablecmds.c:2849 +#: commands/tablecmds.c:2866 #, c-format msgid "merging column \"%s\" with inherited definition" msgstr "слияние столбца \"%s\" с наследованным определением" -#: commands/tablecmds.c:2853 +#: commands/tablecmds.c:2870 #, c-format msgid "moving and merging column \"%s\" with inherited definition" msgstr "перемещение и слияние столбца \"%s\" с наследуемым определением" -#: commands/tablecmds.c:2854 +#: commands/tablecmds.c:2871 #, c-format msgid "User-specified column moved to the position of the inherited column." msgstr "" "Определённый пользователем столбец перемещён в позицию наследуемого столбца." -#: commands/tablecmds.c:2861 +#: commands/tablecmds.c:2878 #, c-format msgid "column \"%s\" has a type conflict" msgstr "конфликт типов в столбце \"%s\"" -#: commands/tablecmds.c:2873 +#: commands/tablecmds.c:2890 #, c-format msgid "column \"%s\" has a collation conflict" msgstr "конфликт правил сортировки в столбце \"%s\"" -#: commands/tablecmds.c:2891 +#: commands/tablecmds.c:2908 #, c-format msgid "column \"%s\" has a storage parameter conflict" msgstr "конфликт параметров хранения в столбце \"%s\"" -#: commands/tablecmds.c:2932 +#: commands/tablecmds.c:2949 #, c-format msgid "child column \"%s\" specifies generation expression" msgstr "для дочернего столбца \"%s\" указано генерирующее выражение" -#: commands/tablecmds.c:2934 +#: commands/tablecmds.c:2951 #, c-format msgid "" "Omit the generation expression in the definition of the child table column " @@ -11328,36 +11343,36 @@ msgstr "" "Уберите генерирующее выражение из определения столбца в дочерней таблице, " "чтобы это выражение наследовалось из родительской." -#: commands/tablecmds.c:2938 +#: commands/tablecmds.c:2955 #, c-format msgid "column \"%s\" inherits from generated column but specifies default" msgstr "" "столбец \"%s\" наследуется от генерируемого столбца, но для него задано " "значение по умолчанию" -#: commands/tablecmds.c:2943 +#: commands/tablecmds.c:2960 #, c-format msgid "column \"%s\" inherits from generated column but specifies identity" msgstr "" "столбец \"%s\" наследуется от генерируемого столбца, но для него задано " "свойство идентификации" -#: commands/tablecmds.c:3052 +#: commands/tablecmds.c:3069 #, c-format msgid "column \"%s\" inherits conflicting generation expressions" msgstr "столбец \"%s\" наследует конфликтующие генерирующие выражения" -#: commands/tablecmds.c:3057 +#: commands/tablecmds.c:3074 #, c-format msgid "column \"%s\" inherits conflicting default values" msgstr "столбец \"%s\" наследует конфликтующие значения по умолчанию" -#: commands/tablecmds.c:3059 +#: commands/tablecmds.c:3076 #, c-format msgid "To resolve the conflict, specify a default explicitly." msgstr "Для решения конфликта укажите желаемое значение по умолчанию." -#: commands/tablecmds.c:3105 +#: commands/tablecmds.c:3122 #, c-format msgid "" "check constraint name \"%s\" appears multiple times but with different " @@ -11366,52 +11381,52 @@ msgstr "" "имя ограничения-проверки \"%s\" фигурирует несколько раз, но с разными " "выражениями" -#: commands/tablecmds.c:3330 +#: commands/tablecmds.c:3347 #, c-format msgid "cannot move temporary tables of other sessions" msgstr "перемещать временные таблицы других сеансов нельзя" -#: commands/tablecmds.c:3400 +#: commands/tablecmds.c:3420 #, c-format msgid "cannot rename column of typed table" msgstr "переименовать столбец типизированной таблицы нельзя" -#: commands/tablecmds.c:3419 +#: commands/tablecmds.c:3439 #, c-format msgid "cannot rename columns of relation \"%s\"" msgstr "переименовывать столбцы отношения \"%s\" нельзя" -#: commands/tablecmds.c:3514 +#: commands/tablecmds.c:3534 #, c-format msgid "inherited column \"%s\" must be renamed in child tables too" msgstr "" "наследованный столбец \"%s\" должен быть также переименован в дочерних " "таблицах" -#: commands/tablecmds.c:3546 +#: commands/tablecmds.c:3566 #, c-format msgid "cannot rename system column \"%s\"" msgstr "нельзя переименовать системный столбец \"%s\"" -#: commands/tablecmds.c:3561 +#: commands/tablecmds.c:3581 #, c-format msgid "cannot rename inherited column \"%s\"" msgstr "нельзя переименовать наследованный столбец \"%s\"" -#: commands/tablecmds.c:3713 +#: commands/tablecmds.c:3733 #, c-format msgid "inherited constraint \"%s\" must be renamed in child tables too" msgstr "" "наследуемое ограничение \"%s\" должно быть также переименовано в дочерних " "таблицах" -#: commands/tablecmds.c:3720 +#: commands/tablecmds.c:3740 #, c-format msgid "cannot rename inherited constraint \"%s\"" msgstr "нельзя переименовать наследованное ограничение \"%s\"" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4017 +#: commands/tablecmds.c:4040 #, c-format msgid "" "cannot %s \"%s\" because it is being used by active queries in this session" @@ -11420,64 +11435,64 @@ msgstr "" "запросами в данном сеансе" #. translator: first %s is a SQL command, eg ALTER TABLE -#: commands/tablecmds.c:4026 +#: commands/tablecmds.c:4049 #, c-format msgid "cannot %s \"%s\" because it has pending trigger events" msgstr "" "нельзя выполнить %s \"%s\", так как с этим объектом связаны отложенные " "события триггеров" -#: commands/tablecmds.c:4052 +#: commands/tablecmds.c:4075 #, c-format msgid "cannot alter temporary tables of other sessions" msgstr "модифицировать временные таблицы других сеансов нельзя" -#: commands/tablecmds.c:4526 +#: commands/tablecmds.c:4549 #, c-format msgid "cannot alter partition \"%s\" with an incomplete detach" msgstr "нельзя изменить секцию \"%s\", которая не полностью отсоединена" -#: commands/tablecmds.c:4719 commands/tablecmds.c:4734 +#: commands/tablecmds.c:4742 commands/tablecmds.c:4757 #, c-format msgid "cannot change persistence setting twice" msgstr "изменить характеристику хранения дважды нельзя" -#: commands/tablecmds.c:4755 +#: commands/tablecmds.c:4778 #, c-format msgid "cannot change access method of a partitioned table" msgstr "менять метод доступа для секционированной таблицы нельзя" -#: commands/tablecmds.c:4761 +#: commands/tablecmds.c:4784 #, c-format msgid "cannot have multiple SET ACCESS METHOD subcommands" msgstr "множественные подкоманды SET ACCESS METHOD не допускаются" -#: commands/tablecmds.c:5516 +#: commands/tablecmds.c:5539 #, c-format msgid "cannot rewrite system relation \"%s\"" msgstr "перезаписать системное отношение \"%s\" нельзя" -#: commands/tablecmds.c:5522 +#: commands/tablecmds.c:5545 #, c-format msgid "cannot rewrite table \"%s\" used as a catalog table" msgstr "перезаписать таблицу \"%s\", используемую как таблицу каталога, нельзя" -#: commands/tablecmds.c:5534 +#: commands/tablecmds.c:5557 #, c-format msgid "cannot rewrite temporary tables of other sessions" msgstr "перезаписывать временные таблицы других сеансов нельзя" -#: commands/tablecmds.c:6028 +#: commands/tablecmds.c:6051 #, c-format msgid "column \"%s\" of relation \"%s\" contains null values" msgstr "столбец \"%s\" отношения \"%s\" содержит значения NULL" -#: commands/tablecmds.c:6045 +#: commands/tablecmds.c:6068 #, c-format msgid "check constraint \"%s\" of relation \"%s\" is violated by some row" msgstr "ограничение-проверку \"%s\" отношения \"%s\" нарушает некоторая строка" -#: commands/tablecmds.c:6064 partitioning/partbounds.c:3404 +#: commands/tablecmds.c:6087 partitioning/partbounds.c:3404 #, c-format msgid "" "updated partition constraint for default partition \"%s\" would be violated " @@ -11486,24 +11501,24 @@ msgstr "" "изменённое ограничение секции для секции по умолчанию \"%s\" будет нарушено " "некоторыми строками" -#: commands/tablecmds.c:6070 +#: commands/tablecmds.c:6093 #, c-format msgid "partition constraint of relation \"%s\" is violated by some row" msgstr "ограничение секции отношения \"%s\" нарушает некоторая строка" #. translator: %s is a group of some SQL keywords -#: commands/tablecmds.c:6337 +#: commands/tablecmds.c:6360 #, c-format msgid "ALTER action %s cannot be performed on relation \"%s\"" msgstr "действие ALTER %s нельзя выполнить с отношением \"%s\"" -#: commands/tablecmds.c:6592 commands/tablecmds.c:6599 +#: commands/tablecmds.c:6615 commands/tablecmds.c:6622 #, c-format msgid "cannot alter type \"%s\" because column \"%s.%s\" uses it" msgstr "" "изменить тип \"%s\" нельзя, так как он задействован в столбце \"%s.%s\"" -#: commands/tablecmds.c:6606 +#: commands/tablecmds.c:6629 #, c-format msgid "" "cannot alter foreign table \"%s\" because column \"%s.%s\" uses its row type" @@ -11511,77 +11526,77 @@ msgstr "" "изменить стороннюю таблицу \"%s\" нельзя, так как столбец \"%s.%s\" " "задействует тип её строки" -#: commands/tablecmds.c:6613 +#: commands/tablecmds.c:6636 #, c-format msgid "cannot alter table \"%s\" because column \"%s.%s\" uses its row type" msgstr "" "изменить таблицу \"%s\" нельзя, так как столбец \"%s.%s\" задействует тип её " "строки" -#: commands/tablecmds.c:6669 +#: commands/tablecmds.c:6692 #, c-format msgid "cannot alter type \"%s\" because it is the type of a typed table" msgstr "изменить тип \"%s\", так как это тип типизированной таблицы" -#: commands/tablecmds.c:6671 +#: commands/tablecmds.c:6694 #, c-format msgid "Use ALTER ... CASCADE to alter the typed tables too." msgstr "" "Чтобы изменить также типизированные таблицы, выполните ALTER ... CASCADE." -#: commands/tablecmds.c:6717 +#: commands/tablecmds.c:6740 #, c-format msgid "type %s is not a composite type" msgstr "тип %s не является составным" -#: commands/tablecmds.c:6744 +#: commands/tablecmds.c:6767 #, c-format msgid "cannot add column to typed table" msgstr "добавить столбец в типизированную таблицу нельзя" -#: commands/tablecmds.c:6800 +#: commands/tablecmds.c:6823 #, c-format msgid "cannot add column to a partition" msgstr "добавить столбец в секцию нельзя" -#: commands/tablecmds.c:6829 commands/tablecmds.c:15240 +#: commands/tablecmds.c:6852 commands/tablecmds.c:15371 #, c-format msgid "child table \"%s\" has different type for column \"%s\"" msgstr "дочерняя таблица \"%s\" имеет другой тип для столбца \"%s\"" -#: commands/tablecmds.c:6835 commands/tablecmds.c:15247 +#: commands/tablecmds.c:6858 commands/tablecmds.c:15378 #, c-format msgid "child table \"%s\" has different collation for column \"%s\"" msgstr "" "дочерняя таблица \"%s\" имеет другое правило сортировки для столбца \"%s\"" -#: commands/tablecmds.c:6849 +#: commands/tablecmds.c:6872 #, c-format msgid "merging definition of column \"%s\" for child \"%s\"" msgstr "объединение определений столбца \"%s\" для потомка \"%s\"" -#: commands/tablecmds.c:6896 +#: commands/tablecmds.c:6919 #, c-format msgid "cannot recursively add identity column to table that has child tables" msgstr "" "добавить столбец идентификации в таблицу, у которой есть дочерние, нельзя" -#: commands/tablecmds.c:7140 +#: commands/tablecmds.c:7163 #, c-format msgid "column must be added to child tables too" msgstr "столбец также должен быть добавлен к дочерним таблицам" -#: commands/tablecmds.c:7218 +#: commands/tablecmds.c:7241 #, c-format msgid "column \"%s\" of relation \"%s\" already exists, skipping" msgstr "столбец \"%s\" отношения \"%s\" уже существует, пропускается" -#: commands/tablecmds.c:7225 +#: commands/tablecmds.c:7248 #, c-format msgid "column \"%s\" of relation \"%s\" already exists" msgstr "столбец \"%s\" отношения \"%s\" уже существует" -#: commands/tablecmds.c:7291 commands/tablecmds.c:12135 +#: commands/tablecmds.c:7314 commands/tablecmds.c:12254 #, c-format msgid "" "cannot remove constraint from only the partitioned table when partitions " @@ -11590,70 +11605,70 @@ msgstr "" "удалить ограничение только из секционированной таблицы, когда существуют " "секции, нельзя" -#: commands/tablecmds.c:7292 commands/tablecmds.c:7609 -#: commands/tablecmds.c:8610 commands/tablecmds.c:12136 +#: commands/tablecmds.c:7315 commands/tablecmds.c:7632 +#: commands/tablecmds.c:8633 commands/tablecmds.c:12255 #, c-format msgid "Do not specify the ONLY keyword." msgstr "Не указывайте ключевое слово ONLY." -#: commands/tablecmds.c:7329 commands/tablecmds.c:7535 -#: commands/tablecmds.c:7677 commands/tablecmds.c:7791 -#: commands/tablecmds.c:7885 commands/tablecmds.c:7944 -#: commands/tablecmds.c:8063 commands/tablecmds.c:8202 -#: commands/tablecmds.c:8272 commands/tablecmds.c:8428 -#: commands/tablecmds.c:12290 commands/tablecmds.c:13828 -#: commands/tablecmds.c:16397 +#: commands/tablecmds.c:7352 commands/tablecmds.c:7558 +#: commands/tablecmds.c:7700 commands/tablecmds.c:7814 +#: commands/tablecmds.c:7908 commands/tablecmds.c:7967 +#: commands/tablecmds.c:8086 commands/tablecmds.c:8225 +#: commands/tablecmds.c:8295 commands/tablecmds.c:8451 +#: commands/tablecmds.c:12409 commands/tablecmds.c:13958 +#: commands/tablecmds.c:16528 #, c-format msgid "cannot alter system column \"%s\"" msgstr "системный столбец \"%s\" нельзя изменить" -#: commands/tablecmds.c:7335 commands/tablecmds.c:7683 +#: commands/tablecmds.c:7358 commands/tablecmds.c:7706 #, c-format msgid "column \"%s\" of relation \"%s\" is an identity column" msgstr "столбец \"%s\" отношения \"%s\" является столбцом идентификации" -#: commands/tablecmds.c:7378 +#: commands/tablecmds.c:7401 #, c-format msgid "column \"%s\" is in a primary key" msgstr "столбец \"%s\" входит в первичный ключ" -#: commands/tablecmds.c:7383 +#: commands/tablecmds.c:7406 #, c-format msgid "column \"%s\" is in index used as replica identity" msgstr "столбец \"%s\" входит в индекс, используемый для идентификации реплики" -#: commands/tablecmds.c:7406 +#: commands/tablecmds.c:7429 #, c-format msgid "column \"%s\" is marked NOT NULL in parent table" msgstr "столбец \"%s\" в родительской таблице помечен как NOT NULL" -#: commands/tablecmds.c:7606 commands/tablecmds.c:9093 +#: commands/tablecmds.c:7629 commands/tablecmds.c:9116 #, c-format msgid "constraint must be added to child tables too" msgstr "ограничение также должно быть добавлено к дочерним таблицам" -#: commands/tablecmds.c:7607 +#: commands/tablecmds.c:7630 #, c-format msgid "Column \"%s\" of relation \"%s\" is not already NOT NULL." msgstr "Столбец \"%s\" отношения \"%s\" уже имеет свойство NOT NULL." -#: commands/tablecmds.c:7685 +#: commands/tablecmds.c:7708 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY instead." msgstr "Вместо этого выполните ALTER TABLE ... ALTER COLUMN ... DROP IDENTITY." -#: commands/tablecmds.c:7690 +#: commands/tablecmds.c:7713 #, c-format msgid "column \"%s\" of relation \"%s\" is a generated column" msgstr "столбец \"%s\" отношения \"%s\" является генерируемым" -#: commands/tablecmds.c:7693 +#: commands/tablecmds.c:7716 #, c-format msgid "Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION instead." msgstr "" "Вместо этого выполните ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION." -#: commands/tablecmds.c:7802 +#: commands/tablecmds.c:7825 #, c-format msgid "" "column \"%s\" of relation \"%s\" must be declared NOT NULL before identity " @@ -11662,46 +11677,46 @@ msgstr "" "столбец \"%s\" отношения \"%s\" должен быть объявлен как NOT NULL, чтобы его " "можно было сделать столбцом идентификации" -#: commands/tablecmds.c:7808 +#: commands/tablecmds.c:7831 #, c-format msgid "column \"%s\" of relation \"%s\" is already an identity column" msgstr "столбец \"%s\" отношения \"%s\" уже является столбцом идентификации" -#: commands/tablecmds.c:7814 +#: commands/tablecmds.c:7837 #, c-format msgid "column \"%s\" of relation \"%s\" already has a default value" msgstr "столбец \"%s\" отношения \"%s\" уже имеет значение по умолчанию" -#: commands/tablecmds.c:7891 commands/tablecmds.c:7952 +#: commands/tablecmds.c:7914 commands/tablecmds.c:7975 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column" msgstr "столбец \"%s\" отношения \"%s\" не является столбцом идентификации" -#: commands/tablecmds.c:7957 +#: commands/tablecmds.c:7980 #, c-format msgid "column \"%s\" of relation \"%s\" is not an identity column, skipping" msgstr "" "столбец \"%s\" отношения \"%s\" не является столбцом идентификации, " "пропускается" -#: commands/tablecmds.c:8010 +#: commands/tablecmds.c:8033 #, c-format msgid "ALTER TABLE / DROP EXPRESSION must be applied to child tables too" msgstr "" "ALTER TABLE / DROP EXPRESSION нужно применять также к дочерним таблицам" -#: commands/tablecmds.c:8032 +#: commands/tablecmds.c:8055 #, c-format msgid "cannot drop generation expression from inherited column" msgstr "нельзя удалить генерирующее выражение из наследуемого столбца" -#: commands/tablecmds.c:8071 +#: commands/tablecmds.c:8094 #, c-format msgid "column \"%s\" of relation \"%s\" is not a stored generated column" msgstr "" "столбец \"%s\" отношения \"%s\" не является сохранённым генерируемым столбцом" -#: commands/tablecmds.c:8076 +#: commands/tablecmds.c:8099 #, c-format msgid "" "column \"%s\" of relation \"%s\" is not a stored generated column, skipping" @@ -11709,63 +11724,63 @@ msgstr "" "столбец \"%s\" отношения \"%s\" пропускается, так как не является " "сохранённым генерируемым столбцом" -#: commands/tablecmds.c:8149 +#: commands/tablecmds.c:8172 #, c-format msgid "cannot refer to non-index column by number" msgstr "по номеру можно ссылаться только на столбец в индексе" -#: commands/tablecmds.c:8192 +#: commands/tablecmds.c:8215 #, c-format msgid "column number %d of relation \"%s\" does not exist" msgstr "столбец с номером %d отношения \"%s\" не существует" -#: commands/tablecmds.c:8211 +#: commands/tablecmds.c:8234 #, c-format msgid "cannot alter statistics on included column \"%s\" of index \"%s\"" msgstr "изменить статистику включённого столбца \"%s\" индекса \"%s\" нельзя" -#: commands/tablecmds.c:8216 +#: commands/tablecmds.c:8239 #, c-format msgid "cannot alter statistics on non-expression column \"%s\" of index \"%s\"" msgstr "" "изменить статистику столбца \"%s\" (не выражения) индекса \"%s\" нельзя" -#: commands/tablecmds.c:8218 +#: commands/tablecmds.c:8241 #, c-format msgid "Alter statistics on table column instead." msgstr "Вместо этого измените статистику для столбца в таблице." -#: commands/tablecmds.c:8408 +#: commands/tablecmds.c:8431 #, c-format msgid "invalid storage type \"%s\"" msgstr "неверный тип хранилища \"%s\"" -#: commands/tablecmds.c:8440 +#: commands/tablecmds.c:8463 #, c-format msgid "column data type %s can only have storage PLAIN" msgstr "тип данных столбца %s совместим только с хранилищем PLAIN" -#: commands/tablecmds.c:8485 +#: commands/tablecmds.c:8508 #, c-format msgid "cannot drop column from typed table" msgstr "нельзя удалить столбец в типизированной таблице" -#: commands/tablecmds.c:8548 +#: commands/tablecmds.c:8571 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist, skipping" msgstr "столбец \"%s\" в таблице\"%s\" не существует, пропускается" -#: commands/tablecmds.c:8561 +#: commands/tablecmds.c:8584 #, c-format msgid "cannot drop system column \"%s\"" msgstr "нельзя удалить системный столбец \"%s\"" -#: commands/tablecmds.c:8571 +#: commands/tablecmds.c:8594 #, c-format msgid "cannot drop inherited column \"%s\"" msgstr "нельзя удалить наследованный столбец \"%s\"" -#: commands/tablecmds.c:8584 +#: commands/tablecmds.c:8607 #, c-format msgid "" "cannot drop column \"%s\" because it is part of the partition key of " @@ -11774,7 +11789,7 @@ msgstr "" "удалить столбец \"%s\" нельзя, так как он входит в ключ разбиения отношения " "\"%s\"" -#: commands/tablecmds.c:8609 +#: commands/tablecmds.c:8632 #, c-format msgid "" "cannot drop column from only the partitioned table when partitions exist" @@ -11782,7 +11797,7 @@ msgstr "" "удалить столбец только из секционированной таблицы, когда существуют секции, " "нельзя" -#: commands/tablecmds.c:8813 +#: commands/tablecmds.c:8836 #, c-format msgid "" "ALTER TABLE / ADD CONSTRAINT USING INDEX is not supported on partitioned " @@ -11791,14 +11806,14 @@ msgstr "" "ALTER TABLE / ADD CONSTRAINT USING INDEX не поддерживается с " "секционированными таблицами" -#: commands/tablecmds.c:8838 +#: commands/tablecmds.c:8861 #, c-format msgid "" "ALTER TABLE / ADD CONSTRAINT USING INDEX will rename index \"%s\" to \"%s\"" msgstr "" "ALTER TABLE / ADD CONSTRAINT USING INDEX переименует индекс \"%s\" в \"%s\"" -#: commands/tablecmds.c:9175 +#: commands/tablecmds.c:9198 #, c-format msgid "" "cannot use ONLY for foreign key on partitioned table \"%s\" referencing " @@ -11807,7 +11822,7 @@ msgstr "" "нельзя использовать ONLY для стороннего ключа в секционированной таблице " "\"%s\", ссылающегося на отношение \"%s\"" -#: commands/tablecmds.c:9181 +#: commands/tablecmds.c:9204 #, c-format msgid "" "cannot add NOT VALID foreign key on partitioned table \"%s\" referencing " @@ -11816,25 +11831,25 @@ msgstr "" "нельзя добавить с характеристикой NOT VALID сторонний ключ в " "секционированной таблице \"%s\", ссылающийся на отношение \"%s\"" -#: commands/tablecmds.c:9184 +#: commands/tablecmds.c:9207 #, c-format msgid "This feature is not yet supported on partitioned tables." msgstr "" "Эта функциональность с секционированными таблицами пока не поддерживается." -#: commands/tablecmds.c:9191 commands/tablecmds.c:9657 +#: commands/tablecmds.c:9214 commands/tablecmds.c:9685 #, c-format msgid "referenced relation \"%s\" is not a table" msgstr "указанный объект \"%s\" не является таблицей" -#: commands/tablecmds.c:9214 +#: commands/tablecmds.c:9237 #, c-format msgid "constraints on permanent tables may reference only permanent tables" msgstr "" "ограничения в постоянных таблицах могут ссылаться только на постоянные " "таблицы" -#: commands/tablecmds.c:9221 +#: commands/tablecmds.c:9244 #, c-format msgid "" "constraints on unlogged tables may reference only permanent or unlogged " @@ -11843,13 +11858,13 @@ msgstr "" "ограничения в нежурналируемых таблицах могут ссылаться только на постоянные " "или нежурналируемые таблицы" -#: commands/tablecmds.c:9227 +#: commands/tablecmds.c:9250 #, c-format msgid "constraints on temporary tables may reference only temporary tables" msgstr "" "ограничения во временных таблицах могут ссылаться только на временные таблицы" -#: commands/tablecmds.c:9231 +#: commands/tablecmds.c:9254 #, c-format msgid "" "constraints on temporary tables must involve temporary tables of this session" @@ -11857,7 +11872,7 @@ msgstr "" "ограничения во временных таблицах должны ссылаться только на временные " "таблицы текущего сеанса" -#: commands/tablecmds.c:9305 commands/tablecmds.c:9311 +#: commands/tablecmds.c:9328 commands/tablecmds.c:9334 #, c-format msgid "" "invalid %s action for foreign key constraint containing generated column" @@ -11865,22 +11880,22 @@ msgstr "" "некорректное действие %s для ограничения внешнего ключа, содержащего " "генерируемый столбец" -#: commands/tablecmds.c:9327 +#: commands/tablecmds.c:9350 #, c-format msgid "number of referencing and referenced columns for foreign key disagree" msgstr "число столбцов в источнике и назначении внешнего ключа не совпадает" -#: commands/tablecmds.c:9434 +#: commands/tablecmds.c:9457 #, c-format msgid "foreign key constraint \"%s\" cannot be implemented" msgstr "ограничение внешнего ключа \"%s\" нельзя реализовать" -#: commands/tablecmds.c:9436 +#: commands/tablecmds.c:9459 #, c-format msgid "Key columns \"%s\" and \"%s\" are of incompatible types: %s and %s." msgstr "Столбцы ключа \"%s\" и \"%s\" имеют несовместимые типы: %s и %s." -#: commands/tablecmds.c:9593 +#: commands/tablecmds.c:9628 #, c-format msgid "" "column \"%s\" referenced in ON DELETE SET action must be part of foreign key" @@ -11888,40 +11903,49 @@ msgstr "" "столбец \"%s\", фигурирующий в действии ON DELETE SET, должен входить во " "внешний ключ" -#: commands/tablecmds.c:9866 commands/tablecmds.c:10334 -#: parser/parse_utilcmd.c:799 parser/parse_utilcmd.c:928 +#: commands/tablecmds.c:9984 commands/tablecmds.c:10422 +#: parser/parse_utilcmd.c:827 parser/parse_utilcmd.c:956 #, c-format msgid "foreign key constraints are not supported on foreign tables" msgstr "ограничения внешнего ключа для сторонних таблиц не поддерживаются" -#: commands/tablecmds.c:10886 commands/tablecmds.c:11167 -#: commands/tablecmds.c:12092 commands/tablecmds.c:12167 +#: commands/tablecmds.c:10405 +#, c-format +msgid "" +"cannot attach table \"%s\" as a partition because it is referenced by " +"foreign key \"%s\"" +msgstr "" +"присоединить таблицу \"%s\" в качестве секции нельзя, так как на неё " +"ссылается внешний ключ \"%s\"" + +#: commands/tablecmds.c:11005 commands/tablecmds.c:11286 +#: commands/tablecmds.c:12211 commands/tablecmds.c:12286 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist" msgstr "ограничение \"%s\" в таблице \"%s\" не существует" -#: commands/tablecmds.c:10893 +#: commands/tablecmds.c:11012 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key constraint" msgstr "ограничение \"%s\" в таблице \"%s\" не является внешним ключом" -#: commands/tablecmds.c:10931 +#: commands/tablecmds.c:11050 #, c-format msgid "cannot alter constraint \"%s\" on relation \"%s\"" msgstr "изменить ограничение \"%s\" таблицы \"%s\" нельзя" -#: commands/tablecmds.c:10934 +#: commands/tablecmds.c:11053 #, c-format msgid "Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\"." msgstr "" "Ограничение \"%s\" является производным от ограничения \"%s\" таблицы \"%s\"." -#: commands/tablecmds.c:10936 +#: commands/tablecmds.c:11055 #, c-format msgid "You may alter the constraint it derives from, instead." msgstr "Вместо этого вы можете изменить родительское ограничение." -#: commands/tablecmds.c:11175 +#: commands/tablecmds.c:11294 #, c-format msgid "" "constraint \"%s\" of relation \"%s\" is not a foreign key or check constraint" @@ -11929,51 +11953,51 @@ msgstr "" "ограничение \"%s\" в таблице \"%s\" не является внешним ключом или " "ограничением-проверкой" -#: commands/tablecmds.c:11253 +#: commands/tablecmds.c:11372 #, c-format msgid "constraint must be validated on child tables too" msgstr "ограничение также должно соблюдаться в дочерних таблицах" -#: commands/tablecmds.c:11343 +#: commands/tablecmds.c:11462 #, c-format msgid "column \"%s\" referenced in foreign key constraint does not exist" msgstr "столбец \"%s\", указанный в ограничении внешнего ключа, не существует" -#: commands/tablecmds.c:11349 +#: commands/tablecmds.c:11468 #, c-format msgid "system columns cannot be used in foreign keys" msgstr "системные столбцы нельзя использовать во внешних ключах" -#: commands/tablecmds.c:11353 +#: commands/tablecmds.c:11472 #, c-format msgid "cannot have more than %d keys in a foreign key" msgstr "во внешнем ключе не может быть больше %d столбцов" -#: commands/tablecmds.c:11419 +#: commands/tablecmds.c:11538 #, c-format msgid "cannot use a deferrable primary key for referenced table \"%s\"" msgstr "" "использовать откладываемый первичный ключ в целевой внешней таблице \"%s\" " "нельзя" -#: commands/tablecmds.c:11436 +#: commands/tablecmds.c:11555 #, c-format msgid "there is no primary key for referenced table \"%s\"" msgstr "в целевой внешней таблице \"%s\" нет первичного ключа" -#: commands/tablecmds.c:11505 +#: commands/tablecmds.c:11624 #, c-format msgid "foreign key referenced-columns list must not contain duplicates" msgstr "в списке столбцов внешнего ключа не должно быть повторений" -#: commands/tablecmds.c:11599 +#: commands/tablecmds.c:11718 #, c-format msgid "cannot use a deferrable unique constraint for referenced table \"%s\"" msgstr "" "использовать откладываемое ограничение уникальности в целевой внешней " "таблице \"%s\" нельзя" -#: commands/tablecmds.c:11604 +#: commands/tablecmds.c:11723 #, c-format msgid "" "there is no unique constraint matching given keys for referenced table \"%s\"" @@ -11981,27 +12005,39 @@ msgstr "" "в целевой внешней таблице \"%s\" нет ограничения уникальности, " "соответствующего данным ключам" -#: commands/tablecmds.c:12048 +#: commands/tablecmds.c:12167 #, c-format msgid "cannot drop inherited constraint \"%s\" of relation \"%s\"" msgstr "удалить наследованное ограничение \"%s\" таблицы \"%s\" нельзя" -#: commands/tablecmds.c:12098 +#: commands/tablecmds.c:12217 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist, skipping" msgstr "ограничение \"%s\" в таблице \"%s\" не существует, пропускается" -#: commands/tablecmds.c:12274 +#: commands/tablecmds.c:12393 #, c-format msgid "cannot alter column type of typed table" msgstr "изменить тип столбца в типизированной таблице нельзя" -#: commands/tablecmds.c:12301 +#: commands/tablecmds.c:12419 +#, c-format +msgid "cannot specify USING when altering type of generated column" +msgstr "изменяя тип генерируемого столбца, нельзя указывать USING" + +#: commands/tablecmds.c:12420 commands/tablecmds.c:17584 +#: commands/tablecmds.c:17674 commands/trigger.c:668 +#: rewrite/rewriteHandler.c:930 rewrite/rewriteHandler.c:965 +#, c-format +msgid "Column \"%s\" is a generated column." +msgstr "Столбец \"%s\" является генерируемым." + +#: commands/tablecmds.c:12430 #, c-format msgid "cannot alter inherited column \"%s\"" msgstr "изменить наследованный столбец \"%s\" нельзя" -#: commands/tablecmds.c:12310 +#: commands/tablecmds.c:12439 #, c-format msgid "" "cannot alter column \"%s\" because it is part of the partition key of " @@ -12010,7 +12046,7 @@ msgstr "" "изменить столбец \"%s\" нельзя, так как он входит в ключ разбиения отношения " "\"%s\"" -#: commands/tablecmds.c:12360 +#: commands/tablecmds.c:12489 #, c-format msgid "" "result of USING clause for column \"%s\" cannot be cast automatically to " @@ -12018,45 +12054,45 @@ msgid "" msgstr "" "результат USING для столбца \"%s\" нельзя автоматически привести к типу %s" -#: commands/tablecmds.c:12363 +#: commands/tablecmds.c:12492 #, c-format msgid "You might need to add an explicit cast." msgstr "Возможно, необходимо добавить явное приведение." -#: commands/tablecmds.c:12367 +#: commands/tablecmds.c:12496 #, c-format msgid "column \"%s\" cannot be cast automatically to type %s" msgstr "столбец \"%s\" нельзя автоматически привести к типу %s" # skip-rule: double-colons #. translator: USING is SQL, don't translate it -#: commands/tablecmds.c:12370 +#: commands/tablecmds.c:12500 #, c-format msgid "You might need to specify \"USING %s::%s\"." msgstr "Возможно, необходимо указать \"USING %s::%s\"." -#: commands/tablecmds.c:12469 +#: commands/tablecmds.c:12599 #, c-format msgid "cannot alter inherited column \"%s\" of relation \"%s\"" msgstr "изменить наследованный столбец \"%s\" отношения \"%s\" нельзя" -#: commands/tablecmds.c:12497 +#: commands/tablecmds.c:12627 #, c-format msgid "USING expression contains a whole-row table reference." msgstr "Выражение USING ссылается на тип всей строки таблицы." -#: commands/tablecmds.c:12508 +#: commands/tablecmds.c:12638 #, c-format msgid "type of inherited column \"%s\" must be changed in child tables too" msgstr "" "тип наследованного столбца \"%s\" должен быть изменён и в дочерних таблицах" -#: commands/tablecmds.c:12633 +#: commands/tablecmds.c:12763 #, c-format msgid "cannot alter type of column \"%s\" twice" msgstr "нельзя изменить тип столбца \"%s\" дважды" -#: commands/tablecmds.c:12671 +#: commands/tablecmds.c:12801 #, c-format msgid "" "generation expression for column \"%s\" cannot be cast automatically to type " @@ -12065,166 +12101,166 @@ msgstr "" "генерирующее выражение для столбца \"%s\" нельзя автоматически привести к " "типу %s" -#: commands/tablecmds.c:12676 +#: commands/tablecmds.c:12806 #, c-format msgid "default for column \"%s\" cannot be cast automatically to type %s" msgstr "" "значение по умолчанию для столбца \"%s\" нельзя автоматически привести к " "типу %s" -#: commands/tablecmds.c:12764 +#: commands/tablecmds.c:12894 #, c-format msgid "cannot alter type of a column used by a function or procedure" msgstr "изменить тип столбца, задействованного в функции или процедуре, нельзя" -#: commands/tablecmds.c:12765 commands/tablecmds.c:12779 -#: commands/tablecmds.c:12798 commands/tablecmds.c:12816 -#: commands/tablecmds.c:12874 +#: commands/tablecmds.c:12895 commands/tablecmds.c:12909 +#: commands/tablecmds.c:12928 commands/tablecmds.c:12946 +#: commands/tablecmds.c:13004 #, c-format msgid "%s depends on column \"%s\"" msgstr "%s зависит от столбца \"%s\"" -#: commands/tablecmds.c:12778 +#: commands/tablecmds.c:12908 #, c-format msgid "cannot alter type of a column used by a view or rule" msgstr "" "изменить тип столбца, задействованного в представлении или правиле, нельзя" -#: commands/tablecmds.c:12797 +#: commands/tablecmds.c:12927 #, c-format msgid "cannot alter type of a column used in a trigger definition" msgstr "изменить тип столбца, задействованного в определении триггера, нельзя" -#: commands/tablecmds.c:12815 +#: commands/tablecmds.c:12945 #, c-format msgid "cannot alter type of a column used in a policy definition" msgstr "изменить тип столбца, задействованного в определении политики, нельзя" -#: commands/tablecmds.c:12846 +#: commands/tablecmds.c:12976 #, c-format msgid "cannot alter type of a column used by a generated column" msgstr "изменить тип столбца, задействованного в генерируемом столбце, нельзя" -#: commands/tablecmds.c:12847 +#: commands/tablecmds.c:12977 #, c-format msgid "Column \"%s\" is used by generated column \"%s\"." msgstr "Столбец \"%s\" используется генерируемым столбцом \"%s\"." -#: commands/tablecmds.c:12873 +#: commands/tablecmds.c:13003 #, c-format msgid "cannot alter type of a column used by a publication WHERE clause" msgstr "" "изменить тип столбца, задействованного в заданном для публикации предложении " "WHERE, нельзя" -#: commands/tablecmds.c:13936 commands/tablecmds.c:13948 +#: commands/tablecmds.c:14066 commands/tablecmds.c:14078 #, c-format msgid "cannot change owner of index \"%s\"" msgstr "сменить владельца индекса \"%s\" нельзя" -#: commands/tablecmds.c:13938 commands/tablecmds.c:13950 +#: commands/tablecmds.c:14068 commands/tablecmds.c:14080 #, c-format msgid "Change the ownership of the index's table, instead." msgstr "Однако возможно сменить владельца таблицы, содержащей этот индекс." -#: commands/tablecmds.c:13964 +#: commands/tablecmds.c:14094 #, c-format msgid "cannot change owner of sequence \"%s\"" msgstr "сменить владельца последовательности \"%s\" нельзя" -#: commands/tablecmds.c:13978 commands/tablecmds.c:17292 -#: commands/tablecmds.c:17311 +#: commands/tablecmds.c:14108 commands/tablecmds.c:17430 +#: commands/tablecmds.c:17449 #, c-format msgid "Use ALTER TYPE instead." msgstr "Используйте ALTER TYPE." -#: commands/tablecmds.c:13987 +#: commands/tablecmds.c:14117 #, c-format msgid "cannot change owner of relation \"%s\"" msgstr "сменить владельца отношения \"%s\" нельзя" -#: commands/tablecmds.c:14349 +#: commands/tablecmds.c:14479 #, c-format msgid "cannot have multiple SET TABLESPACE subcommands" msgstr "в одной инструкции не может быть несколько подкоманд SET TABLESPACE" -#: commands/tablecmds.c:14426 +#: commands/tablecmds.c:14556 #, c-format msgid "cannot set options for relation \"%s\"" msgstr "задать параметры отношения \"%s\" нельзя" -#: commands/tablecmds.c:14460 commands/view.c:521 +#: commands/tablecmds.c:14590 commands/view.c:521 #, c-format msgid "WITH CHECK OPTION is supported only on automatically updatable views" msgstr "" "WITH CHECK OPTION поддерживается только с автообновляемыми представлениями" -#: commands/tablecmds.c:14710 +#: commands/tablecmds.c:14841 #, c-format msgid "only tables, indexes, and materialized views exist in tablespaces" msgstr "" "в табличных пространствах есть только таблицы, индексы и материализованные " "представления" -#: commands/tablecmds.c:14722 +#: commands/tablecmds.c:14853 #, c-format msgid "cannot move relations in to or out of pg_global tablespace" msgstr "перемещать объекты в/из табличного пространства pg_global нельзя" -#: commands/tablecmds.c:14814 +#: commands/tablecmds.c:14945 #, c-format msgid "aborting because lock on relation \"%s.%s\" is not available" msgstr "" "обработка прерывается из-за невозможности заблокировать отношение \"%s.%s\"" -#: commands/tablecmds.c:14830 +#: commands/tablecmds.c:14961 #, c-format msgid "no matching relations in tablespace \"%s\" found" msgstr "в табличном пространстве \"%s\" не найдены подходящие отношения" -#: commands/tablecmds.c:14948 +#: commands/tablecmds.c:15079 #, c-format msgid "cannot change inheritance of typed table" msgstr "изменить наследование типизированной таблицы нельзя" -#: commands/tablecmds.c:14953 commands/tablecmds.c:15509 +#: commands/tablecmds.c:15084 commands/tablecmds.c:15640 #, c-format msgid "cannot change inheritance of a partition" msgstr "изменить наследование секции нельзя" -#: commands/tablecmds.c:14958 +#: commands/tablecmds.c:15089 #, c-format msgid "cannot change inheritance of partitioned table" msgstr "изменить наследование секционированной таблицы нельзя" -#: commands/tablecmds.c:15004 +#: commands/tablecmds.c:15135 #, c-format msgid "cannot inherit to temporary relation of another session" msgstr "наследование для временного отношения другого сеанса невозможно" -#: commands/tablecmds.c:15017 +#: commands/tablecmds.c:15148 #, c-format msgid "cannot inherit from a partition" msgstr "наследование от секции невозможно" -#: commands/tablecmds.c:15039 commands/tablecmds.c:17947 +#: commands/tablecmds.c:15170 commands/tablecmds.c:18085 #, c-format msgid "circular inheritance not allowed" msgstr "циклическое наследование недопустимо" -#: commands/tablecmds.c:15040 commands/tablecmds.c:17948 +#: commands/tablecmds.c:15171 commands/tablecmds.c:18086 #, c-format msgid "\"%s\" is already a child of \"%s\"." msgstr "\"%s\" уже является потомком \"%s\"." -#: commands/tablecmds.c:15053 +#: commands/tablecmds.c:15184 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming an inheritance child" msgstr "" "триггер \"%s\" не позволяет таблице \"%s\" стать потомком в иерархии " "наследования" -#: commands/tablecmds.c:15055 +#: commands/tablecmds.c:15186 #, c-format msgid "" "ROW triggers with transition tables are not supported in inheritance " @@ -12233,36 +12269,36 @@ msgstr "" "Триггеры ROW с переходными таблицами не поддерживаются в иерархиях " "наследования." -#: commands/tablecmds.c:15258 +#: commands/tablecmds.c:15389 #, c-format msgid "column \"%s\" in child table must be marked NOT NULL" msgstr "столбец \"%s\" в дочерней таблице должен быть помечен как NOT NULL" -#: commands/tablecmds.c:15267 +#: commands/tablecmds.c:15398 #, c-format msgid "column \"%s\" in child table must be a generated column" msgstr "столбец \"%s\" в дочерней таблице должен быть генерируемым" -#: commands/tablecmds.c:15317 +#: commands/tablecmds.c:15448 #, c-format msgid "column \"%s\" in child table has a conflicting generation expression" msgstr "" "столбец \"%s\" в дочерней таблице содержит конфликтующее генерирующее " "выражение" -#: commands/tablecmds.c:15345 +#: commands/tablecmds.c:15476 #, c-format msgid "child table is missing column \"%s\"" msgstr "в дочерней таблице не хватает столбца \"%s\"" -#: commands/tablecmds.c:15433 +#: commands/tablecmds.c:15564 #, c-format msgid "child table \"%s\" has different definition for check constraint \"%s\"" msgstr "" "дочерняя таблица \"%s\" содержит другое определение ограничения-проверки " "\"%s\"" -#: commands/tablecmds.c:15441 +#: commands/tablecmds.c:15572 #, c-format msgid "" "constraint \"%s\" conflicts with non-inherited constraint on child table " @@ -12271,7 +12307,7 @@ msgstr "" "ограничение \"%s\" конфликтует с ненаследуемым ограничением дочерней таблицы " "\"%s\"" -#: commands/tablecmds.c:15452 +#: commands/tablecmds.c:15583 #, c-format msgid "" "constraint \"%s\" conflicts with NOT VALID constraint on child table \"%s\"" @@ -12279,82 +12315,82 @@ msgstr "" "ограничение \"%s\" конфликтует с непроверенным (NOT VALID) ограничением " "дочерней таблицы \"%s\"" -#: commands/tablecmds.c:15487 +#: commands/tablecmds.c:15618 #, c-format msgid "child table is missing constraint \"%s\"" msgstr "в дочерней таблице не хватает ограничения \"%s\"" -#: commands/tablecmds.c:15573 +#: commands/tablecmds.c:15704 #, c-format msgid "partition \"%s\" already pending detach in partitioned table \"%s.%s\"" msgstr "" "секция \"%s\" уже ожидает отсоединения от секционированной таблицы \"%s.%s\"" -#: commands/tablecmds.c:15602 commands/tablecmds.c:15650 +#: commands/tablecmds.c:15733 commands/tablecmds.c:15781 #, c-format msgid "relation \"%s\" is not a partition of relation \"%s\"" msgstr "отношение \"%s\" не является секцией отношения \"%s\"" -#: commands/tablecmds.c:15656 +#: commands/tablecmds.c:15787 #, c-format msgid "relation \"%s\" is not a parent of relation \"%s\"" msgstr "отношение \"%s\" не является предком отношения \"%s\"" -#: commands/tablecmds.c:15884 +#: commands/tablecmds.c:16015 #, c-format msgid "typed tables cannot inherit" msgstr "типизированные таблицы не могут наследоваться" -#: commands/tablecmds.c:15914 +#: commands/tablecmds.c:16045 #, c-format msgid "table is missing column \"%s\"" msgstr "в таблице не хватает столбца \"%s\"" -#: commands/tablecmds.c:15925 +#: commands/tablecmds.c:16056 #, c-format msgid "table has column \"%s\" where type requires \"%s\"" msgstr "таблица содержит столбец \"%s\", тогда как тип требует \"%s\"" -#: commands/tablecmds.c:15934 +#: commands/tablecmds.c:16065 #, c-format msgid "table \"%s\" has different type for column \"%s\"" msgstr "таблица \"%s\" содержит столбец \"%s\" другого типа" -#: commands/tablecmds.c:15948 +#: commands/tablecmds.c:16079 #, c-format msgid "table has extra column \"%s\"" msgstr "таблица содержит лишний столбец \"%s\"" -#: commands/tablecmds.c:16000 +#: commands/tablecmds.c:16131 #, c-format msgid "\"%s\" is not a typed table" msgstr "\"%s\" - это не типизированная таблица" -#: commands/tablecmds.c:16174 +#: commands/tablecmds.c:16305 #, c-format msgid "cannot use non-unique index \"%s\" as replica identity" msgstr "" "для идентификации реплики нельзя использовать неуникальный индекс \"%s\"" -#: commands/tablecmds.c:16180 +#: commands/tablecmds.c:16311 #, c-format msgid "cannot use non-immediate index \"%s\" as replica identity" msgstr "" "для идентификации реплики нельзя использовать не непосредственный индекс " "\"%s\"" -#: commands/tablecmds.c:16186 +#: commands/tablecmds.c:16317 #, c-format msgid "cannot use expression index \"%s\" as replica identity" msgstr "" "для идентификации реплики нельзя использовать индекс с выражением \"%s\"" -#: commands/tablecmds.c:16192 +#: commands/tablecmds.c:16323 #, c-format msgid "cannot use partial index \"%s\" as replica identity" msgstr "для идентификации реплики нельзя использовать частичный индекс \"%s\"" -#: commands/tablecmds.c:16209 +#: commands/tablecmds.c:16340 #, c-format msgid "" "index \"%s\" cannot be used as replica identity because column %d is a " @@ -12363,7 +12399,7 @@ msgstr "" "индекс \"%s\" нельзя использовать для идентификации реплики, так как столбец " "%d - системный" -#: commands/tablecmds.c:16216 +#: commands/tablecmds.c:16347 #, c-format msgid "" "index \"%s\" cannot be used as replica identity because column \"%s\" is " @@ -12372,13 +12408,13 @@ msgstr "" "индекс \"%s\" нельзя использовать для идентификации реплики, так как столбец " "\"%s\" допускает NULL" -#: commands/tablecmds.c:16463 +#: commands/tablecmds.c:16594 #, c-format msgid "cannot change logged status of table \"%s\" because it is temporary" msgstr "" "изменить состояние журналирования таблицы %s нельзя, так как она временная" -#: commands/tablecmds.c:16487 +#: commands/tablecmds.c:16618 #, c-format msgid "" "cannot change table \"%s\" to unlogged because it is part of a publication" @@ -12386,12 +12422,12 @@ msgstr "" "таблицу \"%s\" нельзя сделать нежурналируемой, так как она включена в " "публикацию" -#: commands/tablecmds.c:16489 +#: commands/tablecmds.c:16620 #, c-format msgid "Unlogged relations cannot be replicated." msgstr "Нежурналируемые отношения не поддерживают репликацию." -#: commands/tablecmds.c:16534 +#: commands/tablecmds.c:16665 #, c-format msgid "" "could not change table \"%s\" to logged because it references unlogged table " @@ -12400,7 +12436,7 @@ msgstr "" "не удалось сделать таблицу \"%s\" журналируемой, так как она ссылается на " "нежурналируемую таблицу \"%s\"" -#: commands/tablecmds.c:16544 +#: commands/tablecmds.c:16675 #, c-format msgid "" "could not change table \"%s\" to unlogged because it references logged table " @@ -12409,102 +12445,96 @@ msgstr "" "не удалось сделать таблицу \"%s\" нежурналируемой, так как она ссылается на " "журналируемую таблицу \"%s\"" -#: commands/tablecmds.c:16602 +#: commands/tablecmds.c:16733 #, c-format msgid "cannot move an owned sequence into another schema" msgstr "переместить последовательность с владельцем в другую схему нельзя" -#: commands/tablecmds.c:16704 +#: commands/tablecmds.c:16838 #, c-format msgid "relation \"%s\" already exists in schema \"%s\"" msgstr "отношение \"%s\" уже существует в схеме \"%s\"" -#: commands/tablecmds.c:17125 +#: commands/tablecmds.c:17263 #, c-format msgid "\"%s\" is not a table or materialized view" msgstr "\"%s\" - это не таблица и не материализованное представление" -#: commands/tablecmds.c:17275 +#: commands/tablecmds.c:17413 #, c-format msgid "\"%s\" is not a composite type" msgstr "\"%s\" - это не составной тип" -#: commands/tablecmds.c:17303 +#: commands/tablecmds.c:17441 #, c-format msgid "cannot change schema of index \"%s\"" msgstr "сменить схему индекса \"%s\" нельзя" -#: commands/tablecmds.c:17305 commands/tablecmds.c:17317 +#: commands/tablecmds.c:17443 commands/tablecmds.c:17455 #, c-format msgid "Change the schema of the table instead." msgstr "Однако возможно сменить владельца таблицы." -#: commands/tablecmds.c:17309 +#: commands/tablecmds.c:17447 #, c-format msgid "cannot change schema of composite type \"%s\"" msgstr "сменить схему составного типа \"%s\" нельзя" -#: commands/tablecmds.c:17315 +#: commands/tablecmds.c:17453 #, c-format msgid "cannot change schema of TOAST table \"%s\"" msgstr "сменить схему TOAST-таблицы \"%s\" нельзя" -#: commands/tablecmds.c:17352 +#: commands/tablecmds.c:17490 #, c-format msgid "unrecognized partitioning strategy \"%s\"" msgstr "нераспознанная стратегия секционирования \"%s\"" -#: commands/tablecmds.c:17360 +#: commands/tablecmds.c:17498 #, c-format msgid "cannot use \"list\" partition strategy with more than one column" msgstr "стратегия секционирования по списку не поддерживает несколько столбцов" -#: commands/tablecmds.c:17426 +#: commands/tablecmds.c:17564 #, c-format msgid "column \"%s\" named in partition key does not exist" msgstr "столбец \"%s\", упомянутый в ключе секционирования, не существует" -#: commands/tablecmds.c:17434 +#: commands/tablecmds.c:17572 #, c-format msgid "cannot use system column \"%s\" in partition key" msgstr "системный столбец \"%s\" нельзя использовать в ключе секционирования" -#: commands/tablecmds.c:17445 commands/tablecmds.c:17535 +#: commands/tablecmds.c:17583 commands/tablecmds.c:17673 #, c-format msgid "cannot use generated column in partition key" msgstr "генерируемый столбец нельзя использовать в ключе секционирования" -#: commands/tablecmds.c:17446 commands/tablecmds.c:17536 commands/trigger.c:668 -#: rewrite/rewriteHandler.c:929 rewrite/rewriteHandler.c:964 -#, c-format -msgid "Column \"%s\" is a generated column." -msgstr "Столбец \"%s\" является генерируемым." - -#: commands/tablecmds.c:17518 +#: commands/tablecmds.c:17656 #, c-format msgid "partition key expressions cannot contain system column references" msgstr "" "выражения ключей секционирования не могут содержать ссылки на системный " "столбец" -#: commands/tablecmds.c:17565 +#: commands/tablecmds.c:17703 #, c-format msgid "functions in partition key expression must be marked IMMUTABLE" msgstr "" "функции в выражении ключа секционирования должны быть помечены как IMMUTABLE" -#: commands/tablecmds.c:17574 +#: commands/tablecmds.c:17712 #, c-format msgid "cannot use constant expression as partition key" msgstr "" "в качестве ключа секционирования нельзя использовать константное выражение" -#: commands/tablecmds.c:17595 +#: commands/tablecmds.c:17733 #, c-format msgid "could not determine which collation to use for partition expression" msgstr "не удалось определить правило сортировки для выражения секционирования" -#: commands/tablecmds.c:17630 +#: commands/tablecmds.c:17768 #, c-format msgid "" "You must specify a hash operator class or define a default hash operator " @@ -12513,7 +12543,7 @@ msgstr "" "Вы должны указать класс операторов хеширования или определить класс " "операторов хеширования по умолчанию для этого типа данных." -#: commands/tablecmds.c:17636 +#: commands/tablecmds.c:17774 #, c-format msgid "" "You must specify a btree operator class or define a default btree operator " @@ -12522,27 +12552,27 @@ msgstr "" "Вы должны указать класс операторов B-дерева или определить класс операторов " "B-дерева по умолчанию для этого типа данных." -#: commands/tablecmds.c:17887 +#: commands/tablecmds.c:18025 #, c-format msgid "\"%s\" is already a partition" msgstr "\"%s\" уже является секцией" -#: commands/tablecmds.c:17893 +#: commands/tablecmds.c:18031 #, c-format msgid "cannot attach a typed table as partition" msgstr "подключить типизированную таблицу в качестве секции нельзя" -#: commands/tablecmds.c:17909 +#: commands/tablecmds.c:18047 #, c-format msgid "cannot attach inheritance child as partition" msgstr "подключить потомок в иерархии наследования в качестве секции нельзя" -#: commands/tablecmds.c:17923 +#: commands/tablecmds.c:18061 #, c-format msgid "cannot attach inheritance parent as partition" msgstr "подключить родитель в иерархии наследования в качестве секции нельзя" -#: commands/tablecmds.c:17957 +#: commands/tablecmds.c:18095 #, c-format msgid "" "cannot attach a temporary relation as partition of permanent relation \"%s\"" @@ -12550,7 +12580,7 @@ msgstr "" "подключить временное отношение в качестве секции постоянного отношения " "\"%s\" нельзя" -#: commands/tablecmds.c:17965 +#: commands/tablecmds.c:18103 #, c-format msgid "" "cannot attach a permanent relation as partition of temporary relation \"%s\"" @@ -12558,92 +12588,92 @@ msgstr "" "подключить постоянное отношение в качестве секции временного отношения " "\"%s\" нельзя" -#: commands/tablecmds.c:17973 +#: commands/tablecmds.c:18111 #, c-format msgid "cannot attach as partition of temporary relation of another session" msgstr "подключить секцию к временному отношению в другом сеансе нельзя" -#: commands/tablecmds.c:17980 +#: commands/tablecmds.c:18118 #, c-format msgid "cannot attach temporary relation of another session as partition" msgstr "" "подключить временное отношение из другого сеанса в качестве секции нельзя" -#: commands/tablecmds.c:18000 +#: commands/tablecmds.c:18138 #, c-format msgid "table \"%s\" contains column \"%s\" not found in parent \"%s\"" msgstr "" "таблица \"%s\" содержит столбец \"%s\", отсутствующий в родителе \"%s\"" -#: commands/tablecmds.c:18003 +#: commands/tablecmds.c:18141 #, c-format msgid "The new partition may contain only the columns present in parent." msgstr "" "Новая секция может содержать только столбцы, имеющиеся в родительской " "таблице." -#: commands/tablecmds.c:18015 +#: commands/tablecmds.c:18153 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming a partition" msgstr "триггер \"%s\" не позволяет сделать таблицу \"%s\" секцией" -#: commands/tablecmds.c:18017 +#: commands/tablecmds.c:18155 #, c-format msgid "ROW triggers with transition tables are not supported on partitions." msgstr "Триггеры ROW с переходными таблицами для секций не поддерживаются." -#: commands/tablecmds.c:18196 +#: commands/tablecmds.c:18334 #, c-format msgid "" "cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"" msgstr "" "нельзя присоединить стороннюю таблицу \"%s\" в качестве секции таблицы \"%s\"" -#: commands/tablecmds.c:18199 +#: commands/tablecmds.c:18337 #, c-format msgid "Partitioned table \"%s\" contains unique indexes." msgstr "Секционированная таблица \"%s\" содержит уникальные индексы." -#: commands/tablecmds.c:18514 +#: commands/tablecmds.c:18652 #, c-format msgid "cannot detach partitions concurrently when a default partition exists" msgstr "" "секции нельзя отсоединять в режиме CONCURRENTLY, когда существует секция по " "умолчанию" -#: commands/tablecmds.c:18623 +#: commands/tablecmds.c:18761 #, c-format msgid "partitioned table \"%s\" was removed concurrently" msgstr "секционированная таблица \"%s\" была параллельно удалена" -#: commands/tablecmds.c:18629 +#: commands/tablecmds.c:18767 #, c-format msgid "partition \"%s\" was removed concurrently" msgstr "секция \"%s\" была параллельно удалена" -#: commands/tablecmds.c:19153 commands/tablecmds.c:19173 -#: commands/tablecmds.c:19193 commands/tablecmds.c:19212 -#: commands/tablecmds.c:19254 +#: commands/tablecmds.c:19347 commands/tablecmds.c:19367 +#: commands/tablecmds.c:19387 commands/tablecmds.c:19406 +#: commands/tablecmds.c:19448 #, c-format msgid "cannot attach index \"%s\" as a partition of index \"%s\"" msgstr "нельзя присоединить индекс \"%s\" в качестве секции индекса \"%s\"" -#: commands/tablecmds.c:19156 +#: commands/tablecmds.c:19350 #, c-format msgid "Index \"%s\" is already attached to another index." msgstr "Индекс \"%s\" уже присоединён к другому индексу." -#: commands/tablecmds.c:19176 +#: commands/tablecmds.c:19370 #, c-format msgid "Index \"%s\" is not an index on any partition of table \"%s\"." msgstr "Индекс \"%s\" не является индексом какой-либо секции таблицы \"%s\"." -#: commands/tablecmds.c:19196 +#: commands/tablecmds.c:19390 #, c-format msgid "The index definitions do not match." msgstr "Определения индексов не совпадают." -#: commands/tablecmds.c:19215 +#: commands/tablecmds.c:19409 #, c-format msgid "" "The index \"%s\" belongs to a constraint in table \"%s\" but no constraint " @@ -12652,17 +12682,17 @@ msgstr "" "Индекс \"%s\" принадлежит ограничению в таблице \"%s\", но для индекса " "\"%s\" ограничения нет." -#: commands/tablecmds.c:19257 +#: commands/tablecmds.c:19451 #, c-format msgid "Another index is already attached for partition \"%s\"." msgstr "К секции \"%s\" уже присоединён другой индекс." -#: commands/tablecmds.c:19494 +#: commands/tablecmds.c:19688 #, c-format msgid "column data type %s does not support compression" msgstr "тим данных столбца %s не поддерживает сжатие" -#: commands/tablecmds.c:19501 +#: commands/tablecmds.c:19695 #, c-format msgid "invalid compression method \"%s\"" msgstr "неверный метод сжатия \"%s\"" @@ -12675,7 +12705,7 @@ msgstr "\"%s\" существует, но это не каталог" #: commands/tablespace.c:231 #, c-format msgid "permission denied to create tablespace \"%s\"" -msgstr "нет прав на создание табличного пространства \"%s\"" +msgstr "нет прав для создания табличного пространства \"%s\"" #: commands/tablespace.c:233 #, c-format @@ -12702,17 +12732,17 @@ msgstr "путь к табличному пространству \"%s\" сли msgid "tablespace location should not be inside the data directory" msgstr "табличное пространство не должно располагаться внутри каталога данных" -#: commands/tablespace.c:290 commands/tablespace.c:996 +#: commands/tablespace.c:290 commands/tablespace.c:991 #, c-format msgid "unacceptable tablespace name \"%s\"" msgstr "неприемлемое имя табличного пространства: \"%s\"" -#: commands/tablespace.c:292 commands/tablespace.c:997 +#: commands/tablespace.c:292 commands/tablespace.c:992 #, c-format msgid "The prefix \"pg_\" is reserved for system tablespaces." msgstr "Префикс \"pg_\" зарезервирован для системных табличных пространств." -#: commands/tablespace.c:311 commands/tablespace.c:1018 +#: commands/tablespace.c:311 commands/tablespace.c:1013 #, c-format msgid "tablespace \"%s\" already exists" msgstr "табличное пространство \"%s\" уже существует" @@ -12722,9 +12752,9 @@ msgstr "табличное пространство \"%s\" уже существ msgid "pg_tablespace OID value not set when in binary upgrade mode" msgstr "значение OID в pg_tablespace не задано в режиме двоичного обновления" -#: commands/tablespace.c:441 commands/tablespace.c:979 -#: commands/tablespace.c:1068 commands/tablespace.c:1137 -#: commands/tablespace.c:1283 commands/tablespace.c:1486 +#: commands/tablespace.c:441 commands/tablespace.c:974 +#: commands/tablespace.c:1063 commands/tablespace.c:1132 +#: commands/tablespace.c:1278 commands/tablespace.c:1481 #, c-format msgid "tablespace \"%s\" does not exist" msgstr "табличное пространство \"%s\" не существует" @@ -12768,33 +12798,33 @@ msgid "directory \"%s\" already in use as a tablespace" msgstr "каталог \"%s\" уже используется как табличное пространство" #: commands/tablespace.c:788 commands/tablespace.c:801 -#: commands/tablespace.c:837 commands/tablespace.c:929 storage/file/fd.c:3255 -#: storage/file/fd.c:3669 +#: commands/tablespace.c:836 commands/tablespace.c:926 storage/file/fd.c:3255 +#: storage/file/fd.c:3664 #, c-format msgid "could not remove directory \"%s\": %m" msgstr "ошибка при удалении каталога \"%s\": %m" -#: commands/tablespace.c:850 commands/tablespace.c:938 +#: commands/tablespace.c:848 commands/tablespace.c:934 #, c-format msgid "could not remove symbolic link \"%s\": %m" msgstr "ошибка при удалении символической ссылки \"%s\": %m" -#: commands/tablespace.c:860 commands/tablespace.c:947 +#: commands/tablespace.c:857 commands/tablespace.c:942 #, c-format msgid "\"%s\" is not a directory or symbolic link" msgstr "\"%s\" - это не каталог или символическая ссылка" -#: commands/tablespace.c:1142 +#: commands/tablespace.c:1137 #, c-format msgid "Tablespace \"%s\" does not exist." msgstr "Табличное пространство \"%s\" не существует." -#: commands/tablespace.c:1588 +#: commands/tablespace.c:1583 #, c-format msgid "directories for tablespace %u could not be removed" msgstr "удалить каталоги табличного пространства %u не удалось" -#: commands/tablespace.c:1590 +#: commands/tablespace.c:1585 #, c-format msgid "You can remove the directories manually if necessary." msgstr "При необходимости вы можете удалить их вручную." @@ -13071,20 +13101,10 @@ msgstr "" "До выполнения триггера \"%s\" строка должна была находиться в секции \"%s." "%s\"." -#: commands/trigger.c:3441 executor/nodeModifyTable.c:2359 -#: executor/nodeModifyTable.c:2442 -#, c-format -msgid "" -"tuple to be updated was already modified by an operation triggered by the " -"current command" -msgstr "" -"кортеж, который должен быть изменён, уже модифицирован в операции, вызванной " -"текущей командой" - #: commands/trigger.c:3442 executor/nodeModifyTable.c:1522 -#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2360 -#: executor/nodeModifyTable.c:2443 executor/nodeModifyTable.c:2980 -#: executor/nodeModifyTable.c:3107 +#: executor/nodeModifyTable.c:1596 executor/nodeModifyTable.c:2363 +#: executor/nodeModifyTable.c:2454 executor/nodeModifyTable.c:3015 +#: executor/nodeModifyTable.c:3154 #, c-format msgid "" "Consider using an AFTER trigger instead of a BEFORE trigger to propagate " @@ -13095,15 +13115,15 @@ msgstr "" #: commands/trigger.c:3483 executor/nodeLockRows.c:229 #: executor/nodeLockRows.c:238 executor/nodeModifyTable.c:316 -#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2377 -#: executor/nodeModifyTable.c:2585 +#: executor/nodeModifyTable.c:1538 executor/nodeModifyTable.c:2380 +#: executor/nodeModifyTable.c:2604 #, c-format msgid "could not serialize access due to concurrent update" msgstr "не удалось сериализовать доступ из-за параллельного изменения" #: commands/trigger.c:3491 executor/nodeModifyTable.c:1628 -#: executor/nodeModifyTable.c:2460 executor/nodeModifyTable.c:2609 -#: executor/nodeModifyTable.c:2998 +#: executor/nodeModifyTable.c:2471 executor/nodeModifyTable.c:2628 +#: executor/nodeModifyTable.c:3033 #, c-format msgid "could not serialize access due to concurrent delete" msgstr "не удалось сериализовать доступ из-за параллельного удаления" @@ -13629,7 +13649,7 @@ msgid "permission denied to create role" msgstr "нет прав для создания роли" #: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 -#: utils/adt/acl.c:5331 utils/adt/acl.c:5337 gram.y:16437 gram.y:16483 +#: utils/adt/acl.c:5331 utils/adt/acl.c:5337 gram.y:16444 gram.y:16490 #, c-format msgid "role name \"%s\" is reserved" msgstr "имя роли \"%s\" зарезервировано" @@ -13756,7 +13776,7 @@ msgstr "для переименования суперпользователей #: commands/user.c:1180 #, c-format msgid "permission denied to rename role" -msgstr "нет прав на переименование роли" +msgstr "нет прав для переименования роли" #: commands/user.c:1201 #, c-format @@ -13771,7 +13791,7 @@ msgstr "в GRANT/REVOKE ROLE нельзя включать названия ст #: commands/user.c:1299 #, c-format msgid "permission denied to drop objects" -msgstr "нет прав на удаление объектов" +msgstr "нет прав для удаления объектов" #: commands/user.c:1326 commands/user.c:1335 #, c-format @@ -13950,37 +13970,37 @@ msgstr "" "Скорее закройте открытые транзакции в мультитранзакциях, чтобы избежать " "проблемы зацикливания." -#: commands/vacuum.c:1811 +#: commands/vacuum.c:1821 #, c-format msgid "some databases have not been vacuumed in over 2 billion transactions" msgstr "" "есть базы данных, которые не очищались на протяжении более чем 2 миллиардов " "транзакций" -#: commands/vacuum.c:1812 +#: commands/vacuum.c:1822 #, c-format msgid "You might have already suffered transaction-wraparound data loss." msgstr "" "Возможно, вы уже потеряли данные в результате зацикливания ID транзакций." -#: commands/vacuum.c:1980 +#: commands/vacuum.c:1990 #, c-format msgid "skipping \"%s\" --- cannot vacuum non-tables or special system tables" msgstr "" "\"%s\" пропускается --- очищать не таблицы или специальные системные таблицы " "нельзя" -#: commands/vacuum.c:2358 +#: commands/vacuum.c:2368 #, c-format msgid "scanned index \"%s\" to remove %d row versions" msgstr "просканирован индекс \"%s\", удалено версий строк: %d" -#: commands/vacuum.c:2377 +#: commands/vacuum.c:2387 #, c-format msgid "index \"%s\" now contains %.0f row versions in %u pages" msgstr "индекс \"%s\" теперь содержит версий строк: %.0f, в страницах: %u" -#: commands/vacuum.c:2381 +#: commands/vacuum.c:2391 #, c-format msgid "" "%.0f index row versions were removed.\n" @@ -14022,7 +14042,8 @@ msgstr[2] "" "запущено %d параллельных процессов очистки для уборки индекса " "(планировалось: %d)" -#: commands/variable.c:165 utils/misc/guc.c:12115 utils/misc/guc.c:12193 +#: commands/variable.c:165 tcop/postgres.c:3665 utils/misc/guc.c:12133 +#: utils/misc/guc.c:12211 #, c-format msgid "Unrecognized key word: \"%s\"." msgstr "нераспознанное ключевое слово: \"%s\"." @@ -14089,7 +14110,7 @@ msgid "SET TRANSACTION ISOLATION LEVEL must not be called in a subtransaction" msgstr "" "команда SET TRANSACTION ISOLATION LEVEL не должна вызываться в подтранзакции" -#: commands/variable.c:548 storage/lmgr/predicate.c:1694 +#: commands/variable.c:548 storage/lmgr/predicate.c:1699 #, c-format msgid "cannot use serializable mode in a hot standby" msgstr "использовать сериализуемый режим в горячем резерве нельзя" @@ -14274,7 +14295,7 @@ msgstr "" "В таблице определён тип %s (номер столбца: %d), а в запросе предполагается " "%s." -#: executor/execExpr.c:1098 parser/parse_agg.c:837 +#: executor/execExpr.c:1098 parser/parse_agg.c:835 #, c-format msgid "window function calls cannot be nested" msgstr "вложенные вызовы оконных функций недопустимы" @@ -14459,24 +14480,24 @@ msgstr "Ключ %s конфликтует с существующим ключ msgid "Key conflicts with existing key." msgstr "Ключ конфликтует с уже существующим." -#: executor/execMain.c:1009 +#: executor/execMain.c:1016 #, c-format msgid "cannot change sequence \"%s\"" msgstr "последовательность \"%s\" изменить нельзя" -#: executor/execMain.c:1015 +#: executor/execMain.c:1022 #, c-format msgid "cannot change TOAST relation \"%s\"" msgstr "TOAST-отношение \"%s\" изменить нельзя" -#: executor/execMain.c:1033 rewrite/rewriteHandler.c:3103 -#: rewrite/rewriteHandler.c:3983 +#: executor/execMain.c:1040 rewrite/rewriteHandler.c:3112 +#: rewrite/rewriteHandler.c:4000 #, c-format msgid "cannot insert into view \"%s\"" msgstr "вставить данные в представление \"%s\" нельзя" -#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3106 -#: rewrite/rewriteHandler.c:3986 +#: executor/execMain.c:1042 rewrite/rewriteHandler.c:3115 +#: rewrite/rewriteHandler.c:4003 #, c-format msgid "" "To enable inserting into the view, provide an INSTEAD OF INSERT trigger or " @@ -14485,14 +14506,14 @@ msgstr "" "Чтобы представление допускало добавление данных, установите триггер INSTEAD " "OF INSERT или безусловное правило ON INSERT DO INSTEAD." -#: executor/execMain.c:1041 rewrite/rewriteHandler.c:3111 -#: rewrite/rewriteHandler.c:3991 +#: executor/execMain.c:1048 rewrite/rewriteHandler.c:3120 +#: rewrite/rewriteHandler.c:4008 #, c-format msgid "cannot update view \"%s\"" msgstr "изменить данные в представлении \"%s\" нельзя" -#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3114 -#: rewrite/rewriteHandler.c:3994 +#: executor/execMain.c:1050 rewrite/rewriteHandler.c:3123 +#: rewrite/rewriteHandler.c:4011 #, c-format msgid "" "To enable updating the view, provide an INSTEAD OF UPDATE trigger or an " @@ -14501,14 +14522,14 @@ msgstr "" "Чтобы представление допускало изменение данных, установите триггер INSTEAD " "OF UPDATE или безусловное правило ON UPDATE DO INSTEAD." -#: executor/execMain.c:1049 rewrite/rewriteHandler.c:3119 -#: rewrite/rewriteHandler.c:3999 +#: executor/execMain.c:1056 rewrite/rewriteHandler.c:3128 +#: rewrite/rewriteHandler.c:4016 #, c-format msgid "cannot delete from view \"%s\"" msgstr "удалить данные из представления \"%s\" нельзя" -#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3122 -#: rewrite/rewriteHandler.c:4002 +#: executor/execMain.c:1058 rewrite/rewriteHandler.c:3131 +#: rewrite/rewriteHandler.c:4019 #, c-format msgid "" "To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an " @@ -14517,119 +14538,119 @@ msgstr "" "Чтобы представление допускало удаление данных, установите триггер INSTEAD OF " "DELETE или безусловное правило ON DELETE DO INSTEAD." -#: executor/execMain.c:1062 +#: executor/execMain.c:1069 #, c-format msgid "cannot change materialized view \"%s\"" msgstr "изменить материализованное представление \"%s\" нельзя" -#: executor/execMain.c:1074 +#: executor/execMain.c:1081 #, c-format msgid "cannot insert into foreign table \"%s\"" msgstr "вставлять данные в стороннюю таблицу \"%s\" нельзя" -#: executor/execMain.c:1080 +#: executor/execMain.c:1087 #, c-format msgid "foreign table \"%s\" does not allow inserts" msgstr "сторонняя таблица \"%s\" не допускает добавления" -#: executor/execMain.c:1087 +#: executor/execMain.c:1094 #, c-format msgid "cannot update foreign table \"%s\"" msgstr "изменять данные в сторонней таблице \"%s\"" -#: executor/execMain.c:1093 +#: executor/execMain.c:1100 #, c-format msgid "foreign table \"%s\" does not allow updates" msgstr "сторонняя таблица \"%s\" не допускает изменения" -#: executor/execMain.c:1100 +#: executor/execMain.c:1107 #, c-format msgid "cannot delete from foreign table \"%s\"" msgstr "удалять данные из сторонней таблицы \"%s\" нельзя" -#: executor/execMain.c:1106 +#: executor/execMain.c:1113 #, c-format msgid "foreign table \"%s\" does not allow deletes" msgstr "сторонняя таблица \"%s\" не допускает удаления" -#: executor/execMain.c:1117 +#: executor/execMain.c:1124 #, c-format msgid "cannot change relation \"%s\"" msgstr "отношение \"%s\" изменить нельзя" -#: executor/execMain.c:1144 +#: executor/execMain.c:1151 #, c-format msgid "cannot lock rows in sequence \"%s\"" msgstr "блокировать строки в последовательности \"%s\" нельзя" -#: executor/execMain.c:1151 +#: executor/execMain.c:1158 #, c-format msgid "cannot lock rows in TOAST relation \"%s\"" msgstr "блокировать строки в TOAST-отношении \"%s\" нельзя" -#: executor/execMain.c:1158 +#: executor/execMain.c:1165 #, c-format msgid "cannot lock rows in view \"%s\"" msgstr "блокировать строки в представлении \"%s\" нельзя" -#: executor/execMain.c:1166 +#: executor/execMain.c:1173 #, c-format msgid "cannot lock rows in materialized view \"%s\"" msgstr "блокировать строки в материализованном представлении \"%s\" нельзя" -#: executor/execMain.c:1175 executor/execMain.c:2685 +#: executor/execMain.c:1182 executor/execMain.c:2694 #: executor/nodeLockRows.c:136 #, c-format msgid "cannot lock rows in foreign table \"%s\"" msgstr "блокировать строки в сторонней таблице \"%s\" нельзя" -#: executor/execMain.c:1181 +#: executor/execMain.c:1188 #, c-format msgid "cannot lock rows in relation \"%s\"" msgstr "блокировать строки в отношении \"%s\" нельзя" -#: executor/execMain.c:1888 +#: executor/execMain.c:1897 #, c-format msgid "new row for relation \"%s\" violates partition constraint" msgstr "новая строка в отношении \"%s\" нарушает ограничение секции" -#: executor/execMain.c:1890 executor/execMain.c:1973 executor/execMain.c:2023 -#: executor/execMain.c:2132 +#: executor/execMain.c:1899 executor/execMain.c:1982 executor/execMain.c:2032 +#: executor/execMain.c:2141 #, c-format msgid "Failing row contains %s." msgstr "Ошибочная строка содержит %s." -#: executor/execMain.c:1970 +#: executor/execMain.c:1979 #, c-format msgid "" "null value in column \"%s\" of relation \"%s\" violates not-null constraint" msgstr "" "значение NULL в столбце \"%s\" отношения \"%s\" нарушает ограничение NOT NULL" -#: executor/execMain.c:2021 +#: executor/execMain.c:2030 #, c-format msgid "new row for relation \"%s\" violates check constraint \"%s\"" msgstr "новая строка в отношении \"%s\" нарушает ограничение-проверку \"%s\"" -#: executor/execMain.c:2130 +#: executor/execMain.c:2139 #, c-format msgid "new row violates check option for view \"%s\"" msgstr "новая строка нарушает ограничение-проверку для представления \"%s\"" -#: executor/execMain.c:2140 +#: executor/execMain.c:2149 #, c-format msgid "new row violates row-level security policy \"%s\" for table \"%s\"" msgstr "" "новая строка нарушает политику защиты на уровне строк \"%s\" для таблицы " "\"%s\"" -#: executor/execMain.c:2145 +#: executor/execMain.c:2154 #, c-format msgid "new row violates row-level security policy for table \"%s\"" msgstr "" "новая строка нарушает политику защиты на уровне строк для таблицы \"%s\"" -#: executor/execMain.c:2153 +#: executor/execMain.c:2162 #, c-format msgid "" "target row violates row-level security policy \"%s\" (USING expression) for " @@ -14638,7 +14659,7 @@ msgstr "" "целевая строка нарушает политику защиты на уровне строк \"%s\" (выражение " "USING) для таблицы \"%s\"" -#: executor/execMain.c:2158 +#: executor/execMain.c:2167 #, c-format msgid "" "target row violates row-level security policy (USING expression) for table " @@ -14647,7 +14668,7 @@ msgstr "" "новая строка нарушает политику защиты на уровне строк (выражение USING) для " "таблицы \"%s\"" -#: executor/execMain.c:2165 +#: executor/execMain.c:2174 #, c-format msgid "" "new row violates row-level security policy \"%s\" (USING expression) for " @@ -14656,7 +14677,7 @@ msgstr "" "новая строка нарушает политику защиты на уровне строк \"%s\" (выражение " "USING) для таблицы \"%s\"" -#: executor/execMain.c:2170 +#: executor/execMain.c:2179 #, c-format msgid "" "new row violates row-level security policy (USING expression) for table " @@ -14675,7 +14696,7 @@ msgstr "для строки не найдена секция в отношени msgid "Partition key of the failing row contains %s." msgstr "Ключ секционирования для неподходящей строки содержит %s." -#: executor/execReplication.c:196 executor/execReplication.c:380 +#: executor/execReplication.c:197 executor/execReplication.c:381 #, c-format msgid "" "tuple to be locked was already moved to another partition due to concurrent " @@ -14684,17 +14705,17 @@ msgstr "" "кортеж, подлежащий блокировке, был перемещён в другую секцию в результате " "параллельного изменения; следует повторная попытка" -#: executor/execReplication.c:200 executor/execReplication.c:384 +#: executor/execReplication.c:201 executor/execReplication.c:385 #, c-format msgid "concurrent update, retrying" msgstr "параллельное изменение; следует повторная попытка" -#: executor/execReplication.c:206 executor/execReplication.c:390 +#: executor/execReplication.c:207 executor/execReplication.c:391 #, c-format msgid "concurrent delete, retrying" msgstr "параллельное удаление; следует повторная попытка" -#: executor/execReplication.c:276 parser/parse_cte.c:308 +#: executor/execReplication.c:277 parser/parse_cte.c:308 #: parser/parse_oper.c:233 utils/adt/array_userfuncs.c:724 #: utils/adt/array_userfuncs.c:867 utils/adt/arrayfuncs.c:3709 #: utils/adt/arrayfuncs.c:4264 utils/adt/arrayfuncs.c:6256 @@ -14703,12 +14724,12 @@ msgstr "параллельное удаление; следует повторн msgid "could not identify an equality operator for type %s" msgstr "не удалось найти оператор равенства для типа %s" -#: executor/execReplication.c:606 executor/execReplication.c:612 +#: executor/execReplication.c:611 executor/execReplication.c:617 #, c-format msgid "cannot update table \"%s\"" msgstr "изменять данные в таблице \"%s\" нельзя" -#: executor/execReplication.c:608 executor/execReplication.c:620 +#: executor/execReplication.c:613 executor/execReplication.c:625 #, c-format msgid "" "Column used in the publication WHERE expression is not part of the replica " @@ -14717,7 +14738,7 @@ msgstr "" "Столбец, фигурирующий в выражении WHERE публикации, не входит в " "идентификатор реплики." -#: executor/execReplication.c:614 executor/execReplication.c:626 +#: executor/execReplication.c:619 executor/execReplication.c:631 #, c-format msgid "" "Column list used by the publication does not cover the replica identity." @@ -14725,12 +14746,12 @@ msgstr "" "Список столбцов, используемых в публикации, не покрывает идентификатор " "реплики." -#: executor/execReplication.c:618 executor/execReplication.c:624 +#: executor/execReplication.c:623 executor/execReplication.c:629 #, c-format msgid "cannot delete from table \"%s\"" msgstr "удалять данные из таблицы \"%s\" нельзя" -#: executor/execReplication.c:644 +#: executor/execReplication.c:649 #, c-format msgid "" "cannot update table \"%s\" because it does not have a replica identity and " @@ -14739,14 +14760,14 @@ msgstr "" "изменение в таблице \"%s\" невозможно, так как в ней отсутствует " "идентификатор реплики, но она публикует изменения" -#: executor/execReplication.c:646 +#: executor/execReplication.c:651 #, c-format msgid "To enable updating the table, set REPLICA IDENTITY using ALTER TABLE." msgstr "" "Чтобы эта таблица поддерживала изменение, установите REPLICA IDENTITY, " "выполнив ALTER TABLE." -#: executor/execReplication.c:650 +#: executor/execReplication.c:655 #, c-format msgid "" "cannot delete from table \"%s\" because it does not have a replica identity " @@ -14755,7 +14776,7 @@ msgstr "" "удаление из таблицы \"%s\" невозможно, так как в ней отсутствует " "идентификатор реплики, но она публикует удаления" -#: executor/execReplication.c:652 +#: executor/execReplication.c:657 #, c-format msgid "" "To enable deleting from the table, set REPLICA IDENTITY using ALTER TABLE." @@ -14763,7 +14784,7 @@ msgstr "" "Чтобы эта таблица поддерживала удаление, установите REPLICA IDENTITY, " "выполнив ALTER TABLE." -#: executor/execReplication.c:668 +#: executor/execReplication.c:673 #, c-format msgid "cannot use relation \"%s.%s\" as logical replication target" msgstr "" @@ -14852,7 +14873,7 @@ msgid "%s is not allowed in an SQL function" msgstr "%s нельзя использовать в SQL-функции" #. translator: %s is a SQL statement name -#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2648 +#: executor/functions.c:528 executor/spi.c:1745 executor/spi.c:2656 #, c-format msgid "%s is not allowed in a non-volatile function" msgstr "%s нельзя использовать в не изменчивой (volatile) функции" @@ -14925,7 +14946,7 @@ msgid "aggregate %u needs to have compatible input type and transition type" msgstr "" "агрегатная функция %u должна иметь совместимые входной и переходный типы" -#: executor/nodeAgg.c:3952 parser/parse_agg.c:679 parser/parse_agg.c:707 +#: executor/nodeAgg.c:3952 parser/parse_agg.c:677 parser/parse_agg.c:705 #, c-format msgid "aggregate function calls cannot be nested" msgstr "вложенные вызовы агрегатных функций недопустимы" @@ -15028,13 +15049,13 @@ msgid "Consider defining the foreign key on table \"%s\"." msgstr "Возможно, имеет смысл перенацелить внешний ключ на таблицу \"%s\"." #. translator: %s is a SQL command name -#: executor/nodeModifyTable.c:2563 executor/nodeModifyTable.c:2986 -#: executor/nodeModifyTable.c:3113 +#: executor/nodeModifyTable.c:2582 executor/nodeModifyTable.c:3021 +#: executor/nodeModifyTable.c:3160 #, c-format msgid "%s command cannot affect row a second time" msgstr "команда %s не может подействовать на строку дважды" -#: executor/nodeModifyTable.c:2565 +#: executor/nodeModifyTable.c:2584 #, c-format msgid "" "Ensure that no rows proposed for insertion within the same command have " @@ -15043,7 +15064,7 @@ msgstr "" "Проверьте, не содержат ли строки, которые должна добавить команда, " "дублирующиеся значения, подпадающие под ограничения." -#: executor/nodeModifyTable.c:2979 executor/nodeModifyTable.c:3106 +#: executor/nodeModifyTable.c:3014 executor/nodeModifyTable.c:3153 #, c-format msgid "" "tuple to be updated or deleted was already modified by an operation " @@ -15052,14 +15073,14 @@ msgstr "" "кортеж, который должен быть изменён или удалён, уже модифицирован в " "операции, вызванной текущей командой" -#: executor/nodeModifyTable.c:2988 executor/nodeModifyTable.c:3115 +#: executor/nodeModifyTable.c:3023 executor/nodeModifyTable.c:3162 #, c-format msgid "Ensure that not more than one source row matches any one target row." msgstr "" "Проверьте, не может ли какой-либо целевой строке соответствовать более одной " "исходной строки." -#: executor/nodeModifyTable.c:3070 +#: executor/nodeModifyTable.c:3112 #, c-format msgid "" "tuple to be deleted was already moved to another partition due to concurrent " @@ -15171,49 +15192,49 @@ msgstr "Проверьте наличие вызова \"SPI_finish\"." msgid "subtransaction left non-empty SPI stack" msgstr "после подтранзакции остался непустой стек SPI" -#: executor/spi.c:1600 +#: executor/spi.c:1603 #, c-format msgid "cannot open multi-query plan as cursor" msgstr "не удалось открыть план нескольких запросов как курсор" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:1610 +#: executor/spi.c:1613 #, c-format msgid "cannot open %s query as cursor" msgstr "не удалось открыть запрос %s как курсор" -#: executor/spi.c:1716 +#: executor/spi.c:1719 #, c-format msgid "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE is not supported" msgstr "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE не поддерживается" -#: executor/spi.c:1717 parser/analyze.c:2910 +#: executor/spi.c:1720 parser/analyze.c:2910 #, c-format msgid "Scrollable cursors must be READ ONLY." msgstr "Прокручиваемые курсоры должны быть READ ONLY." -#: executor/spi.c:2487 +#: executor/spi.c:2495 #, c-format msgid "empty query does not return tuples" msgstr "пустой запрос не возвращает кортежи" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:2561 +#: executor/spi.c:2569 #, c-format msgid "%s query does not return tuples" msgstr "запрос %s не возвращает кортежи" -#: executor/spi.c:2975 +#: executor/spi.c:2983 #, c-format msgid "SQL expression \"%s\"" msgstr "SQL-выражение \"%s\"" -#: executor/spi.c:2980 +#: executor/spi.c:2988 #, c-format msgid "PL/pgSQL assignment \"%s\"" msgstr "присваивание PL/pgSQL \"%s\"" -#: executor/spi.c:2983 +#: executor/spi.c:2991 #, c-format msgid "SQL statement \"%s\"" msgstr "SQL-оператор: \"%s\"" @@ -15223,22 +15244,28 @@ msgstr "SQL-оператор: \"%s\"" msgid "could not send tuple to shared-memory queue" msgstr "не удалось передать кортеж в очередь в разделяемой памяти" -#: foreign/foreign.c:221 +#: foreign/foreign.c:222 #, c-format msgid "user mapping not found for \"%s\"" msgstr "сопоставление пользователя для \"%s\" не найдено" -#: foreign/foreign.c:638 +#: foreign/foreign.c:332 optimizer/plan/createplan.c:7123 +#: optimizer/util/plancat.c:477 +#, c-format +msgid "access to non-system foreign table is restricted" +msgstr "доступ к несистемным сторонним таблицам ограничен" + +#: foreign/foreign.c:648 #, c-format msgid "invalid option \"%s\"" msgstr "неверный параметр \"%s\"" -#: foreign/foreign.c:640 +#: foreign/foreign.c:650 #, c-format msgid "Valid options in this context are: %s" msgstr "В данном контексте допустимы параметры: %s" -#: foreign/foreign.c:642 +#: foreign/foreign.c:652 #, c-format msgid "There are no valid options in this context." msgstr "В данном контексте недопустимы никакие параметры." @@ -16245,29 +16272,29 @@ msgstr "не удалось задать диапазон версий прот msgid "\"%s\" cannot be higher than \"%s\"" msgstr "Версия \"%s\" не может быть выше \"%s\"" -#: libpq/be-secure-openssl.c:294 +#: libpq/be-secure-openssl.c:293 #, c-format msgid "could not set the cipher list (no valid ciphers available)" msgstr "не удалось установить список шифров (подходящие шифры отсутствуют)" -#: libpq/be-secure-openssl.c:314 +#: libpq/be-secure-openssl.c:313 #, c-format msgid "could not load root certificate file \"%s\": %s" msgstr "не удалось загрузить файл корневых сертификатов \"%s\": %s" -#: libpq/be-secure-openssl.c:363 +#: libpq/be-secure-openssl.c:362 #, c-format msgid "could not load SSL certificate revocation list file \"%s\": %s" msgstr "" "не удалось загрузить список отзыва сертификатов SSL из файла \"%s\": %s" -#: libpq/be-secure-openssl.c:371 +#: libpq/be-secure-openssl.c:370 #, c-format msgid "could not load SSL certificate revocation list directory \"%s\": %s" msgstr "" "не удалось загрузить списки отзыва сертификатов SSL из каталога \"%s\": %s" -#: libpq/be-secure-openssl.c:379 +#: libpq/be-secure-openssl.c:378 #, c-format msgid "" "could not load SSL certificate revocation list file \"%s\" or directory " @@ -16276,38 +16303,38 @@ msgstr "" "не удалось загрузить списки отзыва сертификатов SSL из файла \"%s\" или " "каталога \"%s\": %s" -#: libpq/be-secure-openssl.c:437 +#: libpq/be-secure-openssl.c:436 #, c-format msgid "could not initialize SSL connection: SSL context not set up" msgstr "" "инициализировать SSL-подключение не удалось: контекст SSL не установлен" -#: libpq/be-secure-openssl.c:448 +#: libpq/be-secure-openssl.c:447 #, c-format msgid "could not initialize SSL connection: %s" msgstr "инициализировать SSL-подключение не удалось: %s" -#: libpq/be-secure-openssl.c:456 +#: libpq/be-secure-openssl.c:455 #, c-format msgid "could not set SSL socket: %s" msgstr "не удалось создать SSL-сокет: %s" -#: libpq/be-secure-openssl.c:512 +#: libpq/be-secure-openssl.c:511 #, c-format msgid "could not accept SSL connection: %m" msgstr "не удалось принять SSL-подключение: %m" -#: libpq/be-secure-openssl.c:516 libpq/be-secure-openssl.c:569 +#: libpq/be-secure-openssl.c:515 libpq/be-secure-openssl.c:568 #, c-format msgid "could not accept SSL connection: EOF detected" msgstr "не удалось принять SSL-подключение: обрыв данных" -#: libpq/be-secure-openssl.c:555 +#: libpq/be-secure-openssl.c:554 #, c-format msgid "could not accept SSL connection: %s" msgstr "не удалось принять SSL-подключение: %s" -#: libpq/be-secure-openssl.c:558 +#: libpq/be-secure-openssl.c:557 #, c-format msgid "" "This may indicate that the client does not support any SSL protocol version " @@ -16316,94 +16343,94 @@ msgstr "" "Это может указывать на то, что клиент не поддерживает ни одну версию " "протокола SSL между %s и %s." -#: libpq/be-secure-openssl.c:574 libpq/be-secure-openssl.c:763 -#: libpq/be-secure-openssl.c:833 +#: libpq/be-secure-openssl.c:573 libpq/be-secure-openssl.c:762 +#: libpq/be-secure-openssl.c:832 #, c-format msgid "unrecognized SSL error code: %d" msgstr "нераспознанный код ошибки SSL: %d" -#: libpq/be-secure-openssl.c:620 +#: libpq/be-secure-openssl.c:619 #, c-format msgid "SSL certificate's common name contains embedded null" msgstr "Имя SSL-сертификата включает нулевой байт" -#: libpq/be-secure-openssl.c:666 +#: libpq/be-secure-openssl.c:665 #, c-format msgid "SSL certificate's distinguished name contains embedded null" msgstr "уникальное имя (DN) в SSL-сертификате содержит нулевой байт" -#: libpq/be-secure-openssl.c:752 libpq/be-secure-openssl.c:817 +#: libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:816 #, c-format msgid "SSL error: %s" msgstr "ошибка SSL: %s" -#: libpq/be-secure-openssl.c:994 +#: libpq/be-secure-openssl.c:993 #, c-format msgid "could not open DH parameters file \"%s\": %m" msgstr "не удалось открыть файл параметров DH \"%s\": %m" -#: libpq/be-secure-openssl.c:1006 +#: libpq/be-secure-openssl.c:1005 #, c-format msgid "could not load DH parameters file: %s" msgstr "не удалось загрузить файл параметров DH: %s" -#: libpq/be-secure-openssl.c:1016 +#: libpq/be-secure-openssl.c:1015 #, c-format msgid "invalid DH parameters: %s" msgstr "неверные параметры DH: %s" -#: libpq/be-secure-openssl.c:1025 +#: libpq/be-secure-openssl.c:1024 #, c-format msgid "invalid DH parameters: p is not prime" msgstr "неверные параметры DH: p - не простое число" -#: libpq/be-secure-openssl.c:1034 +#: libpq/be-secure-openssl.c:1033 #, c-format msgid "invalid DH parameters: neither suitable generator or safe prime" msgstr "" "неверные параметры DH: нет подходящего генератора или небезопасное простое " "число" -#: libpq/be-secure-openssl.c:1195 +#: libpq/be-secure-openssl.c:1194 #, c-format msgid "DH: could not load DH parameters" msgstr "DH: не удалось загрузить параметры DH" -#: libpq/be-secure-openssl.c:1203 +#: libpq/be-secure-openssl.c:1202 #, c-format msgid "DH: could not set DH parameters: %s" msgstr "DH: не удалось задать параметры DH: %s" -#: libpq/be-secure-openssl.c:1230 +#: libpq/be-secure-openssl.c:1229 #, c-format msgid "ECDH: unrecognized curve name: %s" msgstr "ECDH: нераспознанное имя кривой: %s" -#: libpq/be-secure-openssl.c:1239 +#: libpq/be-secure-openssl.c:1238 #, c-format msgid "ECDH: could not create key" msgstr "ECDH: не удалось создать ключ" -#: libpq/be-secure-openssl.c:1267 +#: libpq/be-secure-openssl.c:1266 msgid "no SSL error reported" msgstr "нет сообщения об ошибке SSL" -#: libpq/be-secure-openssl.c:1285 +#: libpq/be-secure-openssl.c:1284 #, c-format msgid "SSL error code %lu" msgstr "код ошибки SSL: %lu" -#: libpq/be-secure-openssl.c:1444 +#: libpq/be-secure-openssl.c:1443 #, c-format msgid "could not create BIO" msgstr "не удалось создать BIO" -#: libpq/be-secure-openssl.c:1454 +#: libpq/be-secure-openssl.c:1453 #, c-format msgid "could not get NID for ASN1_OBJECT object" msgstr "не удалось получить NID для объекта ASN1_OBJECT" -#: libpq/be-secure-openssl.c:1462 +#: libpq/be-secure-openssl.c:1461 #, c-format msgid "could not convert NID %d to an ASN1_OBJECT structure" msgstr "не удалось преобразовать NID %d в структуру ASN1_OBJECT" @@ -16995,7 +17022,7 @@ msgstr "нет клиентского подключения" msgid "could not receive data from client: %m" msgstr "не удалось получить данные от клиента: %m" -#: libpq/pqcomm.c:1179 tcop/postgres.c:4373 +#: libpq/pqcomm.c:1179 tcop/postgres.c:4461 #, c-format msgid "terminating connection because protocol synchronization was lost" msgstr "закрытие подключения из-за потери синхронизации протокола" @@ -17109,7 +17136,7 @@ msgstr " -d 1-5 уровень отладочных сообщен #: main/main.c:357 #, c-format msgid " -D DATADIR database directory\n" -msgstr " -D КАТАЛОГ каталог с данными\n" +msgstr " -D КАТ_ДАННЫХ каталог с данными\n" # well-spelled: ДМГ #: main/main.c:358 @@ -17408,11 +17435,11 @@ msgstr "" "FULL JOIN поддерживается только с условиями, допускающими соединение " "слиянием или хеш-соединение" -#: optimizer/plan/createplan.c:7101 parser/parse_merge.c:187 +#: optimizer/plan/createplan.c:7102 parser/parse_merge.c:187 #: parser/parse_merge.c:194 #, c-format msgid "cannot execute MERGE on relation \"%s\"" -msgstr "выполнить MERGE для отношение \"%s\" нельзя" +msgstr "выполнить MERGE для отношения \"%s\" нельзя" #. translator: %s is a SQL row locking clause such as FOR UPDATE #: optimizer/plan/initsplan.c:1192 @@ -17427,13 +17454,13 @@ msgstr "%s не может применяться к NULL-содержащей msgid "%s is not allowed with UNION/INTERSECT/EXCEPT" msgstr "%s несовместимо с UNION/INTERSECT/EXCEPT" -#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3702 +#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3703 #, c-format msgid "could not implement GROUP BY" msgstr "не удалось реализовать GROUP BY" -#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3703 -#: optimizer/plan/planner.c:4346 optimizer/prep/prepunion.c:1046 +#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3704 +#: optimizer/plan/planner.c:4347 optimizer/prep/prepunion.c:1046 #, c-format msgid "" "Some of the datatypes only support hashing, while others only support " @@ -17442,27 +17469,27 @@ msgstr "" "Одни типы данных поддерживают только хеширование, а другие - только " "сортировку." -#: optimizer/plan/planner.c:4345 +#: optimizer/plan/planner.c:4346 #, c-format msgid "could not implement DISTINCT" msgstr "не удалось реализовать DISTINCT" -#: optimizer/plan/planner.c:5466 +#: optimizer/plan/planner.c:5467 #, c-format msgid "could not implement window PARTITION BY" msgstr "не удалось реализовать PARTITION BY для окна" -#: optimizer/plan/planner.c:5467 +#: optimizer/plan/planner.c:5468 #, c-format msgid "Window partitioning columns must be of sortable datatypes." msgstr "Столбцы, разбивающие окна, должны иметь сортируемые типы данных." -#: optimizer/plan/planner.c:5471 +#: optimizer/plan/planner.c:5472 #, c-format msgid "could not implement window ORDER BY" msgstr "не удалось реализовать ORDER BY для окна" -#: optimizer/plan/planner.c:5472 +#: optimizer/plan/planner.c:5473 #, c-format msgid "Window ordering columns must be of sortable datatypes." msgstr "Столбцы, сортирующие окна, должны иметь сортируемые типы данных." @@ -17488,36 +17515,36 @@ msgstr "не удалось реализовать %s" msgid "SQL function \"%s\" during inlining" msgstr "внедрённая в код SQL-функция \"%s\"" -#: optimizer/util/plancat.c:142 +#: optimizer/util/plancat.c:143 #, c-format msgid "cannot open relation \"%s\"" msgstr "открыть отношение \"%s\" нельзя" -#: optimizer/util/plancat.c:151 +#: optimizer/util/plancat.c:152 #, c-format msgid "cannot access temporary or unlogged relations during recovery" msgstr "" "обращаться к временным или нежурналируемым отношениям в процессе " "восстановления нельзя" -#: optimizer/util/plancat.c:693 +#: optimizer/util/plancat.c:705 #, c-format msgid "whole row unique index inference specifications are not supported" msgstr "" "указания со ссылкой на всю строку для выбора уникального индекса не " "поддерживаются" -#: optimizer/util/plancat.c:710 +#: optimizer/util/plancat.c:722 #, c-format msgid "constraint in ON CONFLICT clause has no associated index" msgstr "ограничению в ON CONFLICT не соответствует индекс" -#: optimizer/util/plancat.c:760 +#: optimizer/util/plancat.c:772 #, c-format msgid "ON CONFLICT DO UPDATE not supported with exclusion constraints" msgstr "ON CONFLICT DO UPDATE не поддерживается с ограничениями-исключениями" -#: optimizer/util/plancat.c:870 +#: optimizer/util/plancat.c:882 #, c-format msgid "" "there is no unique or exclusion constraint matching the ON CONFLICT " @@ -17784,185 +17811,185 @@ msgstr "агрегатные функции нельзя применять в msgid "grouping operations are not allowed in JOIN conditions" msgstr "операции группировки нельзя применять в условиях JOIN" -#: parser/parse_agg.c:385 +#: parser/parse_agg.c:383 msgid "" "aggregate functions are not allowed in FROM clause of their own query level" msgstr "" "агрегатные функции нельзя применять в предложении FROM их уровня запроса" -#: parser/parse_agg.c:387 +#: parser/parse_agg.c:385 msgid "" "grouping operations are not allowed in FROM clause of their own query level" msgstr "" "операции группировки нельзя применять в предложении FROM их уровня запроса" -#: parser/parse_agg.c:392 +#: parser/parse_agg.c:390 msgid "aggregate functions are not allowed in functions in FROM" msgstr "агрегатные функции нельзя применять в функциях во FROM" -#: parser/parse_agg.c:394 +#: parser/parse_agg.c:392 msgid "grouping operations are not allowed in functions in FROM" msgstr "операции группировки нельзя применять в функциях во FROM" -#: parser/parse_agg.c:402 +#: parser/parse_agg.c:400 msgid "aggregate functions are not allowed in policy expressions" msgstr "агрегатные функции нельзя применять в выражениях политик" -#: parser/parse_agg.c:404 +#: parser/parse_agg.c:402 msgid "grouping operations are not allowed in policy expressions" msgstr "операции группировки нельзя применять в выражениях политик" -#: parser/parse_agg.c:421 +#: parser/parse_agg.c:419 msgid "aggregate functions are not allowed in window RANGE" msgstr "агрегатные функции нельзя применять в указании RANGE для окна" -#: parser/parse_agg.c:423 +#: parser/parse_agg.c:421 msgid "grouping operations are not allowed in window RANGE" msgstr "операции группировки нельзя применять в указании RANGE для окна" -#: parser/parse_agg.c:428 +#: parser/parse_agg.c:426 msgid "aggregate functions are not allowed in window ROWS" msgstr "агрегатные функции нельзя применять в указании ROWS для окна" -#: parser/parse_agg.c:430 +#: parser/parse_agg.c:428 msgid "grouping operations are not allowed in window ROWS" msgstr "операции группировки нельзя применять в указании ROWS для окна" -#: parser/parse_agg.c:435 +#: parser/parse_agg.c:433 msgid "aggregate functions are not allowed in window GROUPS" msgstr "агрегатные функции нельзя применять в указании GROUPS для окна" -#: parser/parse_agg.c:437 +#: parser/parse_agg.c:435 msgid "grouping operations are not allowed in window GROUPS" msgstr "операции группировки нельзя применять в указании GROUPS для окна" -#: parser/parse_agg.c:450 +#: parser/parse_agg.c:448 msgid "aggregate functions are not allowed in MERGE WHEN conditions" msgstr "агрегатные функции нельзя применять в условиях MERGE WHEN" -#: parser/parse_agg.c:452 +#: parser/parse_agg.c:450 msgid "grouping operations are not allowed in MERGE WHEN conditions" msgstr "операции группировки нельзя применять в условиях MERGE WHEN" -#: parser/parse_agg.c:478 +#: parser/parse_agg.c:476 msgid "aggregate functions are not allowed in check constraints" msgstr "агрегатные функции нельзя применять в ограничениях-проверках" -#: parser/parse_agg.c:480 +#: parser/parse_agg.c:478 msgid "grouping operations are not allowed in check constraints" msgstr "операции группировки нельзя применять в ограничениях-проверках" -#: parser/parse_agg.c:487 +#: parser/parse_agg.c:485 msgid "aggregate functions are not allowed in DEFAULT expressions" msgstr "агрегатные функции нельзя применять в выражениях DEFAULT" -#: parser/parse_agg.c:489 +#: parser/parse_agg.c:487 msgid "grouping operations are not allowed in DEFAULT expressions" msgstr "операции группировки нельзя применять в выражениях DEFAULT" -#: parser/parse_agg.c:494 +#: parser/parse_agg.c:492 msgid "aggregate functions are not allowed in index expressions" msgstr "агрегатные функции нельзя применять в выражениях индексов" -#: parser/parse_agg.c:496 +#: parser/parse_agg.c:494 msgid "grouping operations are not allowed in index expressions" msgstr "операции группировки нельзя применять в выражениях индексов" -#: parser/parse_agg.c:501 +#: parser/parse_agg.c:499 msgid "aggregate functions are not allowed in index predicates" msgstr "агрегатные функции нельзя применять в предикатах индексов" -#: parser/parse_agg.c:503 +#: parser/parse_agg.c:501 msgid "grouping operations are not allowed in index predicates" msgstr "операции группировки нельзя применять в предикатах индексов" -#: parser/parse_agg.c:508 +#: parser/parse_agg.c:506 msgid "aggregate functions are not allowed in statistics expressions" msgstr "агрегатные функции нельзя применять в выражениях статистики" -#: parser/parse_agg.c:510 +#: parser/parse_agg.c:508 msgid "grouping operations are not allowed in statistics expressions" msgstr "операции группировки нельзя применять в выражениях статистики" -#: parser/parse_agg.c:515 +#: parser/parse_agg.c:513 msgid "aggregate functions are not allowed in transform expressions" msgstr "агрегатные функции нельзя применять в выражениях преобразований" -#: parser/parse_agg.c:517 +#: parser/parse_agg.c:515 msgid "grouping operations are not allowed in transform expressions" msgstr "операции группировки нельзя применять в выражениях преобразований" -#: parser/parse_agg.c:522 +#: parser/parse_agg.c:520 msgid "aggregate functions are not allowed in EXECUTE parameters" msgstr "агрегатные функции нельзя применять в параметрах EXECUTE" -#: parser/parse_agg.c:524 +#: parser/parse_agg.c:522 msgid "grouping operations are not allowed in EXECUTE parameters" msgstr "операции группировки нельзя применять в параметрах EXECUTE" -#: parser/parse_agg.c:529 +#: parser/parse_agg.c:527 msgid "aggregate functions are not allowed in trigger WHEN conditions" msgstr "агрегатные функции нельзя применять в условиях WHEN для триггеров" -#: parser/parse_agg.c:531 +#: parser/parse_agg.c:529 msgid "grouping operations are not allowed in trigger WHEN conditions" msgstr "операции группировки нельзя применять в условиях WHEN для триггеров" -#: parser/parse_agg.c:536 +#: parser/parse_agg.c:534 msgid "aggregate functions are not allowed in partition bound" msgstr "агрегатные функции нельзя применять в выражении границы секции" -#: parser/parse_agg.c:538 +#: parser/parse_agg.c:536 msgid "grouping operations are not allowed in partition bound" msgstr "операции группировки нельзя применять в выражении границы секции" -#: parser/parse_agg.c:543 +#: parser/parse_agg.c:541 msgid "aggregate functions are not allowed in partition key expressions" msgstr "агрегатные функции нельзя применять в выражениях ключа секционирования" -#: parser/parse_agg.c:545 +#: parser/parse_agg.c:543 msgid "grouping operations are not allowed in partition key expressions" msgstr "" "операции группировки нельзя применять в выражениях ключа секционирования" -#: parser/parse_agg.c:551 +#: parser/parse_agg.c:549 msgid "aggregate functions are not allowed in column generation expressions" msgstr "агрегатные функции нельзя применять в выражениях генерируемых столбцов" -#: parser/parse_agg.c:553 +#: parser/parse_agg.c:551 msgid "grouping operations are not allowed in column generation expressions" msgstr "" "операции группировки нельзя применять в выражениях генерируемых столбцов" -#: parser/parse_agg.c:559 +#: parser/parse_agg.c:557 msgid "aggregate functions are not allowed in CALL arguments" msgstr "агрегатные функции нельзя применять в аргументах CALL" -#: parser/parse_agg.c:561 +#: parser/parse_agg.c:559 msgid "grouping operations are not allowed in CALL arguments" msgstr "операции группировки нельзя применять в аргументах CALL" -#: parser/parse_agg.c:567 +#: parser/parse_agg.c:565 msgid "aggregate functions are not allowed in COPY FROM WHERE conditions" msgstr "агрегатные функции нельзя применять в условиях COPY FROM WHERE" -#: parser/parse_agg.c:569 +#: parser/parse_agg.c:567 msgid "grouping operations are not allowed in COPY FROM WHERE conditions" msgstr "операции группировки нельзя применять в условиях COPY FROM WHERE" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:596 parser/parse_clause.c:1836 +#: parser/parse_agg.c:594 parser/parse_clause.c:1836 #, c-format msgid "aggregate functions are not allowed in %s" msgstr "агрегатные функции нельзя применять в конструкции %s" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:599 +#: parser/parse_agg.c:597 #, c-format msgid "grouping operations are not allowed in %s" msgstr "операции группировки нельзя применять в конструкции %s" -#: parser/parse_agg.c:700 +#: parser/parse_agg.c:698 #, c-format msgid "" "outer-level aggregate cannot contain a lower-level variable in its direct " @@ -17971,14 +17998,14 @@ msgstr "" "агрегатная функция внешнего уровня не может содержать в своих аргументах " "переменные нижнего уровня" -#: parser/parse_agg.c:778 +#: parser/parse_agg.c:776 #, c-format msgid "aggregate function calls cannot contain set-returning function calls" msgstr "" "вызовы агрегатных функций не могут включать вызовы функций, возвращающих " "множества" -#: parser/parse_agg.c:779 parser/parse_expr.c:1674 parser/parse_expr.c:2156 +#: parser/parse_agg.c:777 parser/parse_expr.c:1674 parser/parse_expr.c:2156 #: parser/parse_func.c:883 #, c-format msgid "" @@ -17988,107 +18015,107 @@ msgstr "" "Исправить ситуацию можно, переместив функцию, возвращающую множество, в " "элемент LATERAL FROM." -#: parser/parse_agg.c:784 +#: parser/parse_agg.c:782 #, c-format msgid "aggregate function calls cannot contain window function calls" msgstr "вызовы агрегатных функций не могут включать вызовы оконных функции" -#: parser/parse_agg.c:863 +#: parser/parse_agg.c:861 msgid "window functions are not allowed in JOIN conditions" msgstr "оконные функции нельзя применять в условиях JOIN" -#: parser/parse_agg.c:870 +#: parser/parse_agg.c:868 msgid "window functions are not allowed in functions in FROM" msgstr "оконные функции нельзя применять в функциях во FROM" -#: parser/parse_agg.c:876 +#: parser/parse_agg.c:874 msgid "window functions are not allowed in policy expressions" msgstr "оконные функции нельзя применять в выражениях политик" -#: parser/parse_agg.c:889 +#: parser/parse_agg.c:887 msgid "window functions are not allowed in window definitions" msgstr "оконные функции нельзя применять в определении окна" -#: parser/parse_agg.c:900 +#: parser/parse_agg.c:898 msgid "window functions are not allowed in MERGE WHEN conditions" msgstr "оконные функции нельзя применять в условиях MERGE WHEN" -#: parser/parse_agg.c:924 +#: parser/parse_agg.c:922 msgid "window functions are not allowed in check constraints" msgstr "оконные функции нельзя применять в ограничениях-проверках" -#: parser/parse_agg.c:928 +#: parser/parse_agg.c:926 msgid "window functions are not allowed in DEFAULT expressions" msgstr "оконные функции нельзя применять в выражениях DEFAULT" -#: parser/parse_agg.c:931 +#: parser/parse_agg.c:929 msgid "window functions are not allowed in index expressions" msgstr "оконные функции нельзя применять в выражениях индексов" -#: parser/parse_agg.c:934 +#: parser/parse_agg.c:932 msgid "window functions are not allowed in statistics expressions" msgstr "оконные функции нельзя применять в выражениях статистики" -#: parser/parse_agg.c:937 +#: parser/parse_agg.c:935 msgid "window functions are not allowed in index predicates" msgstr "оконные функции нельзя применять в предикатах индексов" -#: parser/parse_agg.c:940 +#: parser/parse_agg.c:938 msgid "window functions are not allowed in transform expressions" msgstr "оконные функции нельзя применять в выражениях преобразований" -#: parser/parse_agg.c:943 +#: parser/parse_agg.c:941 msgid "window functions are not allowed in EXECUTE parameters" msgstr "оконные функции нельзя применять в параметрах EXECUTE" -#: parser/parse_agg.c:946 +#: parser/parse_agg.c:944 msgid "window functions are not allowed in trigger WHEN conditions" msgstr "оконные функции нельзя применять в условиях WHEN для триггеров" -#: parser/parse_agg.c:949 +#: parser/parse_agg.c:947 msgid "window functions are not allowed in partition bound" msgstr "оконные функции нельзя применять в выражении границы секции" -#: parser/parse_agg.c:952 +#: parser/parse_agg.c:950 msgid "window functions are not allowed in partition key expressions" msgstr "оконные функции нельзя применять в выражениях ключа секционирования" -#: parser/parse_agg.c:955 +#: parser/parse_agg.c:953 msgid "window functions are not allowed in CALL arguments" msgstr "оконные функции нельзя применять в аргументах CALL" -#: parser/parse_agg.c:958 +#: parser/parse_agg.c:956 msgid "window functions are not allowed in COPY FROM WHERE conditions" msgstr "оконные функции нельзя применять в условиях COPY FROM WHERE" -#: parser/parse_agg.c:961 +#: parser/parse_agg.c:959 msgid "window functions are not allowed in column generation expressions" msgstr "оконные функции нельзя применять в выражениях генерируемых столбцов" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:984 parser/parse_clause.c:1845 +#: parser/parse_agg.c:982 parser/parse_clause.c:1845 #, c-format msgid "window functions are not allowed in %s" msgstr "оконные функции нельзя применять в конструкции %s" -#: parser/parse_agg.c:1018 parser/parse_clause.c:2678 +#: parser/parse_agg.c:1016 parser/parse_clause.c:2678 #, c-format msgid "window \"%s\" does not exist" msgstr "окно \"%s\" не существует" -#: parser/parse_agg.c:1102 +#: parser/parse_agg.c:1100 #, c-format msgid "too many grouping sets present (maximum 4096)" msgstr "слишком много наборов группирования (при максимуме 4096)" -#: parser/parse_agg.c:1242 +#: parser/parse_agg.c:1240 #, c-format msgid "" "aggregate functions are not allowed in a recursive query's recursive term" msgstr "" "в рекурсивной части рекурсивного запроса агрегатные функции недопустимы" -#: parser/parse_agg.c:1435 +#: parser/parse_agg.c:1433 #, c-format msgid "" "column \"%s.%s\" must appear in the GROUP BY clause or be used in an " @@ -18097,7 +18124,7 @@ msgstr "" "столбец \"%s.%s\" должен фигурировать в предложении GROUP BY или " "использоваться в агрегатной функции" -#: parser/parse_agg.c:1438 +#: parser/parse_agg.c:1436 #, c-format msgid "" "Direct arguments of an ordered-set aggregate must use only grouped columns." @@ -18105,13 +18132,13 @@ msgstr "" "Прямые аргументы сортирующей агрегатной функции могут включать только " "группируемые столбцы." -#: parser/parse_agg.c:1443 +#: parser/parse_agg.c:1441 #, c-format msgid "subquery uses ungrouped column \"%s.%s\" from outer query" msgstr "" "подзапрос использует негруппированный столбец \"%s.%s\" из внешнего запроса" -#: parser/parse_agg.c:1607 +#: parser/parse_agg.c:1605 #, c-format msgid "" "arguments to GROUPING must be grouping expressions of the associated query " @@ -19615,7 +19642,7 @@ msgstr "" msgid "inconsistent types deduced for parameter $%d" msgstr "для параметра $%d выведены несогласованные типы" -#: parser/parse_param.c:313 tcop/postgres.c:709 +#: parser/parse_param.c:313 tcop/postgres.c:713 #, c-format msgid "could not determine data type of parameter $%d" msgstr "не удалось определить тип данных параметра $%d" @@ -19893,74 +19920,79 @@ msgstr "неверное имя типа \"%s\"" msgid "cannot create partitioned table as inheritance child" msgstr "создать секционированную таблицу в виде потомка нельзя" -#: parser/parse_utilcmd.c:583 +#: parser/parse_utilcmd.c:475 +#, c-format +msgid "cannot set logged status of a temporary sequence" +msgstr "изменить состояние журналирования временной последовательности нельзя" + +#: parser/parse_utilcmd.c:611 #, c-format msgid "array of serial is not implemented" msgstr "массивы с типом serial не реализованы" -#: parser/parse_utilcmd.c:662 parser/parse_utilcmd.c:674 -#: parser/parse_utilcmd.c:733 +#: parser/parse_utilcmd.c:690 parser/parse_utilcmd.c:702 +#: parser/parse_utilcmd.c:761 #, c-format msgid "" "conflicting NULL/NOT NULL declarations for column \"%s\" of table \"%s\"" msgstr "конфликт NULL/NOT NULL в объявлении столбца \"%s\" таблицы \"%s\"" -#: parser/parse_utilcmd.c:686 +#: parser/parse_utilcmd.c:714 #, c-format msgid "multiple default values specified for column \"%s\" of table \"%s\"" msgstr "" "для столбца \"%s\" таблицы \"%s\" указано несколько значений по умолчанию" -#: parser/parse_utilcmd.c:703 +#: parser/parse_utilcmd.c:731 #, c-format msgid "identity columns are not supported on typed tables" msgstr "столбцы идентификации не поддерживаются с типизированными таблицами" -#: parser/parse_utilcmd.c:707 +#: parser/parse_utilcmd.c:735 #, c-format msgid "identity columns are not supported on partitions" msgstr "столбцы идентификации не поддерживаются с секциями" -#: parser/parse_utilcmd.c:716 +#: parser/parse_utilcmd.c:744 #, c-format msgid "multiple identity specifications for column \"%s\" of table \"%s\"" msgstr "" "для столбца \"%s\" таблицы \"%s\" свойство identity задано неоднократно" -#: parser/parse_utilcmd.c:746 +#: parser/parse_utilcmd.c:774 #, c-format msgid "generated columns are not supported on typed tables" msgstr "генерируемые столбцы не поддерживаются с типизированными таблицами" -#: parser/parse_utilcmd.c:750 +#: parser/parse_utilcmd.c:778 #, c-format msgid "generated columns are not supported on partitions" msgstr "генерируемые столбцы не поддерживаются с секциями" -#: parser/parse_utilcmd.c:755 +#: parser/parse_utilcmd.c:783 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" msgstr "" "для столбца \"%s\" таблицы \"%s\" указано несколько генерирующих выражений" -#: parser/parse_utilcmd.c:773 parser/parse_utilcmd.c:888 +#: parser/parse_utilcmd.c:801 parser/parse_utilcmd.c:916 #, c-format msgid "primary key constraints are not supported on foreign tables" msgstr "ограничения первичного ключа для сторонних таблиц не поддерживаются" -#: parser/parse_utilcmd.c:782 parser/parse_utilcmd.c:898 +#: parser/parse_utilcmd.c:810 parser/parse_utilcmd.c:926 #, c-format msgid "unique constraints are not supported on foreign tables" msgstr "ограничения уникальности для сторонних таблиц не поддерживаются" -#: parser/parse_utilcmd.c:827 +#: parser/parse_utilcmd.c:855 #, c-format msgid "both default and identity specified for column \"%s\" of table \"%s\"" msgstr "" "для столбца \"%s\" таблицы \"%s\" задано и значение по умолчанию, и свойство " "identity" -#: parser/parse_utilcmd.c:835 +#: parser/parse_utilcmd.c:863 #, c-format msgid "" "both default and generation expression specified for column \"%s\" of table " @@ -19969,7 +20001,7 @@ msgstr "" "для столбца \"%s\" таблицы \"%s\" задано и значение по умолчанию, и " "генерирующее выражение" -#: parser/parse_utilcmd.c:843 +#: parser/parse_utilcmd.c:871 #, c-format msgid "" "both identity and generation expression specified for column \"%s\" of table " @@ -19978,93 +20010,93 @@ msgstr "" "для столбца \"%s\" таблицы \"%s\" задано и генерирующее выражение, и " "свойство identity" -#: parser/parse_utilcmd.c:908 +#: parser/parse_utilcmd.c:936 #, c-format msgid "exclusion constraints are not supported on foreign tables" msgstr "ограничения-исключения для сторонних таблиц не поддерживаются" -#: parser/parse_utilcmd.c:914 +#: parser/parse_utilcmd.c:942 #, c-format msgid "exclusion constraints are not supported on partitioned tables" msgstr "ограничения-исключения для секционированных таблиц не поддерживаются" -#: parser/parse_utilcmd.c:979 +#: parser/parse_utilcmd.c:1007 #, c-format msgid "LIKE is not supported for creating foreign tables" msgstr "LIKE при создании сторонних таблиц не поддерживается" -#: parser/parse_utilcmd.c:992 +#: parser/parse_utilcmd.c:1020 #, c-format msgid "relation \"%s\" is invalid in LIKE clause" msgstr "отношение \"%s\" не подходит для предложения LIKE" -#: parser/parse_utilcmd.c:1760 parser/parse_utilcmd.c:1868 +#: parser/parse_utilcmd.c:1788 parser/parse_utilcmd.c:1896 #, c-format msgid "Index \"%s\" contains a whole-row table reference." msgstr "Индекс \"%s\" ссылается на тип всей строки таблицы." -#: parser/parse_utilcmd.c:2268 +#: parser/parse_utilcmd.c:2296 #, c-format msgid "cannot use an existing index in CREATE TABLE" msgstr "в CREATE TABLE нельзя использовать существующий индекс" -#: parser/parse_utilcmd.c:2288 +#: parser/parse_utilcmd.c:2316 #, c-format msgid "index \"%s\" is already associated with a constraint" msgstr "индекс \"%s\" уже связан с ограничением" -#: parser/parse_utilcmd.c:2309 +#: parser/parse_utilcmd.c:2337 #, c-format msgid "\"%s\" is not a unique index" msgstr "\"%s\" не является уникальным индексом" -#: parser/parse_utilcmd.c:2310 parser/parse_utilcmd.c:2317 -#: parser/parse_utilcmd.c:2324 parser/parse_utilcmd.c:2401 +#: parser/parse_utilcmd.c:2338 parser/parse_utilcmd.c:2345 +#: parser/parse_utilcmd.c:2352 parser/parse_utilcmd.c:2429 #, c-format msgid "Cannot create a primary key or unique constraint using such an index." msgstr "" "Создать первичный ключ или ограничение уникальности для такого индекса " "нельзя." -#: parser/parse_utilcmd.c:2316 +#: parser/parse_utilcmd.c:2344 #, c-format msgid "index \"%s\" contains expressions" msgstr "индекс \"%s\" содержит выражения" -#: parser/parse_utilcmd.c:2323 +#: parser/parse_utilcmd.c:2351 #, c-format msgid "\"%s\" is a partial index" msgstr "\"%s\" - частичный индекс" -#: parser/parse_utilcmd.c:2335 +#: parser/parse_utilcmd.c:2363 #, c-format msgid "\"%s\" is a deferrable index" msgstr "\"%s\" - откладываемый индекс" -#: parser/parse_utilcmd.c:2336 +#: parser/parse_utilcmd.c:2364 #, c-format msgid "Cannot create a non-deferrable constraint using a deferrable index." msgstr "" "Создать не откладываемое ограничение на базе откладываемого индекса нельзя." -#: parser/parse_utilcmd.c:2400 +#: parser/parse_utilcmd.c:2428 #, c-format msgid "index \"%s\" column number %d does not have default sorting behavior" msgstr "" "в индексе \"%s\" для столбца номер %d не определено поведение сортировки по " "умолчанию" -#: parser/parse_utilcmd.c:2557 +#: parser/parse_utilcmd.c:2585 #, c-format msgid "column \"%s\" appears twice in primary key constraint" msgstr "столбец \"%s\" фигурирует в первичном ключе дважды" -#: parser/parse_utilcmd.c:2563 +#: parser/parse_utilcmd.c:2591 #, c-format msgid "column \"%s\" appears twice in unique constraint" msgstr "столбец \"%s\" фигурирует в ограничении уникальности дважды" -#: parser/parse_utilcmd.c:2897 +#: parser/parse_utilcmd.c:2925 #, c-format msgid "" "index expressions and predicates can refer only to the table being indexed" @@ -20072,22 +20104,22 @@ msgstr "" "индексные выражения и предикаты могут ссылаться только на индексируемую " "таблицу" -#: parser/parse_utilcmd.c:2969 +#: parser/parse_utilcmd.c:2997 #, c-format msgid "statistics expressions can refer only to the table being referenced" msgstr "выражения статистики могут ссылаться только на целевую таблицу" -#: parser/parse_utilcmd.c:3012 +#: parser/parse_utilcmd.c:3040 #, c-format msgid "rules on materialized views are not supported" msgstr "правила для материализованных представлений не поддерживаются" -#: parser/parse_utilcmd.c:3075 +#: parser/parse_utilcmd.c:3103 #, c-format msgid "rule WHERE condition cannot contain references to other relations" msgstr "в условиях WHERE для правил нельзя ссылаться на другие отношения" -#: parser/parse_utilcmd.c:3148 +#: parser/parse_utilcmd.c:3176 #, c-format msgid "" "rules with WHERE conditions can only have SELECT, INSERT, UPDATE, or DELETE " @@ -20096,158 +20128,158 @@ msgstr "" "правила с условиями WHERE могут содержать только действия SELECT, INSERT, " "UPDATE или DELETE" -#: parser/parse_utilcmd.c:3166 parser/parse_utilcmd.c:3267 -#: rewrite/rewriteHandler.c:532 rewrite/rewriteManip.c:1021 +#: parser/parse_utilcmd.c:3194 parser/parse_utilcmd.c:3295 +#: rewrite/rewriteHandler.c:533 rewrite/rewriteManip.c:1021 #, c-format msgid "conditional UNION/INTERSECT/EXCEPT statements are not implemented" msgstr "условные операторы UNION/INTERSECT/EXCEPT не реализованы" -#: parser/parse_utilcmd.c:3184 +#: parser/parse_utilcmd.c:3212 #, c-format msgid "ON SELECT rule cannot use OLD" msgstr "в правиле ON SELECT нельзя использовать OLD" -#: parser/parse_utilcmd.c:3188 +#: parser/parse_utilcmd.c:3216 #, c-format msgid "ON SELECT rule cannot use NEW" msgstr "в правиле ON SELECT нельзя использовать NEW" -#: parser/parse_utilcmd.c:3197 +#: parser/parse_utilcmd.c:3225 #, c-format msgid "ON INSERT rule cannot use OLD" msgstr "в правиле ON INSERT нельзя использовать OLD" -#: parser/parse_utilcmd.c:3203 +#: parser/parse_utilcmd.c:3231 #, c-format msgid "ON DELETE rule cannot use NEW" msgstr "в правиле ON DELETE нельзя использовать NEW" -#: parser/parse_utilcmd.c:3231 +#: parser/parse_utilcmd.c:3259 #, c-format msgid "cannot refer to OLD within WITH query" msgstr "в запросе WITH нельзя ссылаться на OLD" -#: parser/parse_utilcmd.c:3238 +#: parser/parse_utilcmd.c:3266 #, c-format msgid "cannot refer to NEW within WITH query" msgstr "в запросе WITH нельзя ссылаться на NEW" -#: parser/parse_utilcmd.c:3688 +#: parser/parse_utilcmd.c:3716 #, c-format msgid "misplaced DEFERRABLE clause" msgstr "предложение DEFERRABLE расположено неправильно" -#: parser/parse_utilcmd.c:3693 parser/parse_utilcmd.c:3708 +#: parser/parse_utilcmd.c:3721 parser/parse_utilcmd.c:3736 #, c-format msgid "multiple DEFERRABLE/NOT DEFERRABLE clauses not allowed" msgstr "DEFERRABLE/NOT DEFERRABLE можно указать только один раз" -#: parser/parse_utilcmd.c:3703 +#: parser/parse_utilcmd.c:3731 #, c-format msgid "misplaced NOT DEFERRABLE clause" msgstr "предложение NOT DEFERRABLE расположено неправильно" -#: parser/parse_utilcmd.c:3716 parser/parse_utilcmd.c:3742 gram.y:5937 +#: parser/parse_utilcmd.c:3744 parser/parse_utilcmd.c:3770 gram.y:5944 #, c-format msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" msgstr "" "ограничение с характеристикой INITIALLY DEFERRED должно быть объявлено как " "DEFERRABLE" -#: parser/parse_utilcmd.c:3724 +#: parser/parse_utilcmd.c:3752 #, c-format msgid "misplaced INITIALLY DEFERRED clause" msgstr "предложение INITIALLY DEFERRED расположено неправильно" -#: parser/parse_utilcmd.c:3729 parser/parse_utilcmd.c:3755 +#: parser/parse_utilcmd.c:3757 parser/parse_utilcmd.c:3783 #, c-format msgid "multiple INITIALLY IMMEDIATE/DEFERRED clauses not allowed" msgstr "INITIALLY IMMEDIATE/DEFERRED можно указать только один раз" -#: parser/parse_utilcmd.c:3750 +#: parser/parse_utilcmd.c:3778 #, c-format msgid "misplaced INITIALLY IMMEDIATE clause" msgstr "предложение INITIALLY IMMEDIATE расположено неправильно" -#: parser/parse_utilcmd.c:3943 +#: parser/parse_utilcmd.c:3971 #, c-format msgid "" "CREATE specifies a schema (%s) different from the one being created (%s)" msgstr "в CREATE указана схема (%s), отличная от создаваемой (%s)" -#: parser/parse_utilcmd.c:3978 +#: parser/parse_utilcmd.c:4006 #, c-format msgid "\"%s\" is not a partitioned table" msgstr "\"%s\" — не секционированная таблица" -#: parser/parse_utilcmd.c:3985 +#: parser/parse_utilcmd.c:4013 #, c-format msgid "table \"%s\" is not partitioned" msgstr "таблица \"%s\" не является секционированной" -#: parser/parse_utilcmd.c:3992 +#: parser/parse_utilcmd.c:4020 #, c-format msgid "index \"%s\" is not partitioned" msgstr "индекс \"%s\" не секционирован" -#: parser/parse_utilcmd.c:4032 +#: parser/parse_utilcmd.c:4060 #, c-format msgid "a hash-partitioned table may not have a default partition" msgstr "у секционированной по хешу таблицы не может быть секции по умолчанию" -#: parser/parse_utilcmd.c:4049 +#: parser/parse_utilcmd.c:4077 #, c-format msgid "invalid bound specification for a hash partition" msgstr "неправильное указание ограничения для хеш-секции" -#: parser/parse_utilcmd.c:4055 partitioning/partbounds.c:4824 +#: parser/parse_utilcmd.c:4083 partitioning/partbounds.c:4824 #, c-format msgid "modulus for hash partition must be an integer value greater than zero" msgstr "модуль для хеш-секции должен быть положительным целым" -#: parser/parse_utilcmd.c:4062 partitioning/partbounds.c:4832 +#: parser/parse_utilcmd.c:4090 partitioning/partbounds.c:4832 #, c-format msgid "remainder for hash partition must be less than modulus" msgstr "остаток для хеш-секции должен быть меньше модуля" -#: parser/parse_utilcmd.c:4075 +#: parser/parse_utilcmd.c:4103 #, c-format msgid "invalid bound specification for a list partition" msgstr "неправильное указание ограничения для секции по списку" -#: parser/parse_utilcmd.c:4128 +#: parser/parse_utilcmd.c:4156 #, c-format msgid "invalid bound specification for a range partition" msgstr "неправильное указание ограничения для секции по диапазону" -#: parser/parse_utilcmd.c:4134 +#: parser/parse_utilcmd.c:4162 #, c-format msgid "FROM must specify exactly one value per partitioning column" msgstr "" "во FROM должно указываться ровно одно значение для секционирующего столбца" -#: parser/parse_utilcmd.c:4138 +#: parser/parse_utilcmd.c:4166 #, c-format msgid "TO must specify exactly one value per partitioning column" msgstr "" "в TO должно указываться ровно одно значение для секционирующего столбца" -#: parser/parse_utilcmd.c:4252 +#: parser/parse_utilcmd.c:4280 #, c-format msgid "cannot specify NULL in range bound" msgstr "указать NULL в диапазонном ограничении нельзя" -#: parser/parse_utilcmd.c:4301 +#: parser/parse_utilcmd.c:4329 #, c-format msgid "every bound following MAXVALUE must also be MAXVALUE" msgstr "за границей MAXVALUE могут следовать только границы MAXVALUE" -#: parser/parse_utilcmd.c:4308 +#: parser/parse_utilcmd.c:4336 #, c-format msgid "every bound following MINVALUE must also be MINVALUE" msgstr "за границей MINVALUE могут следовать только границы MINVALUE" -#: parser/parse_utilcmd.c:4351 +#: parser/parse_utilcmd.c:4379 #, c-format msgid "specified value cannot be cast to type %s for column \"%s\"" msgstr "указанное значение нельзя привести к типу %s столбца \"%s\"" @@ -20740,7 +20772,7 @@ msgstr "" "фоновый процесс \"%s\": параллельные исполнители не могут быть настроены для " "перезапуска" -#: postmaster/bgworker.c:730 tcop/postgres.c:3215 +#: postmaster/bgworker.c:730 tcop/postgres.c:3243 #, c-format msgid "terminating background worker \"%s\" due to administrator command" msgstr "завершение фонового процесса \"%s\" по команде администратора" @@ -21065,9 +21097,9 @@ msgstr "" "неподдерживаемый протокол клиентского приложения %u.%u; сервер поддерживает " "%u.0 - %u.%u" -#: postmaster/postmaster.c:2264 utils/misc/guc.c:7400 utils/misc/guc.c:7436 -#: utils/misc/guc.c:7506 utils/misc/guc.c:8944 utils/misc/guc.c:11986 -#: utils/misc/guc.c:12027 +#: postmaster/postmaster.c:2264 utils/misc/guc.c:7412 utils/misc/guc.c:7448 +#: utils/misc/guc.c:7518 utils/misc/guc.c:8962 utils/misc/guc.c:12004 +#: utils/misc/guc.c:12045 #, c-format msgid "invalid value for parameter \"%s\": \"%s\"" msgstr "неверное значение для параметра \"%s\": \"%s\"" @@ -21277,7 +21309,7 @@ msgstr "%s (PID %d) был завершён по сигналу %d: %s" #: postmaster/postmaster.c:3778 #, c-format msgid "%s (PID %d) exited with unrecognized status %d" -msgstr "%s (PID %d) завершился с неизвестным кодом состояния %d" +msgstr "%s (PID %d) завершился с нераспознанным кодом состояния %d" #: postmaster/postmaster.c:3978 #, c-format @@ -21524,7 +21556,7 @@ msgstr "команда архивации завершена по сигналу #: postmaster/shell_archive.c:148 #, c-format msgid "archive command exited with unrecognized status %d" -msgstr "команда архивации завершилась с неизвестным кодом состояния %d" +msgstr "команда архивации завершилась с нераспознанным кодом состояния %d" #: postmaster/syslogger.c:501 postmaster/syslogger.c:1222 #, c-format @@ -22018,37 +22050,36 @@ msgstr "" msgid "logical replication target relation \"%s.%s\" does not exist" msgstr "целевое отношение логической репликации \"%s.%s\" не существует" -#: replication/logical/reorderbuffer.c:3841 +#: replication/logical/reorderbuffer.c:3846 #, c-format msgid "could not write to data file for XID %u: %m" msgstr "не удалось записать в файл данных для XID %u: %m" -#: replication/logical/reorderbuffer.c:4187 -#: replication/logical/reorderbuffer.c:4212 +#: replication/logical/reorderbuffer.c:4192 +#: replication/logical/reorderbuffer.c:4217 #, c-format msgid "could not read from reorderbuffer spill file: %m" -msgstr "не удалось прочитать из файла подкачки буфера пересортировки: %m" +msgstr "не удалось прочитать файл подкачки буфера пересортировки: %m" -#: replication/logical/reorderbuffer.c:4191 -#: replication/logical/reorderbuffer.c:4216 +#: replication/logical/reorderbuffer.c:4196 +#: replication/logical/reorderbuffer.c:4221 #, c-format msgid "" "could not read from reorderbuffer spill file: read %d instead of %u bytes" msgstr "" -"не удалось прочитать из файла подкачки буфера пересортировки (прочитано " -"байт: %d, требовалось: %u)" +"не удалось прочитать файл подкачки буфера пересортировки (прочитано байт: " +"%d, требовалось: %u)" -#: replication/logical/reorderbuffer.c:4466 +#: replication/logical/reorderbuffer.c:4471 #, c-format msgid "could not remove file \"%s\" during removal of pg_replslot/%s/xid*: %m" msgstr "" "ошибка при удалении файла \"%s\" в процессе удаления pg_replslot/%s/xid*: %m" -#: replication/logical/reorderbuffer.c:4965 +#: replication/logical/reorderbuffer.c:4970 #, c-format msgid "could not read from file \"%s\": read %d instead of %d bytes" -msgstr "" -"не удалось прочитать из файла \"%s\" (прочитано байт: %d, требовалось: %d)" +msgstr "не удалось прочитать файл \"%s\" (прочитано байт: %d, требовалось: %d)" #: replication/logical/snapbuild.c:646 #, c-format @@ -22508,7 +22539,7 @@ msgstr "используются все слоты репликации" #: replication/slot.c:294 #, c-format msgid "Free one or increase max_replication_slots." -msgstr "Освободите ненужные или увеличьте параметр max_replication_slots." +msgstr "Освободите ненужный или увеличьте параметр max_replication_slots." #: replication/slot.c:472 replication/slotfuncs.c:727 #: utils/activity/pgstat_replslot.c:55 utils/adt/genfile.c:704 @@ -22910,9 +22941,9 @@ msgstr "" msgid "received replication command: %s" msgstr "получена команда репликации: %s" -#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1114 -#: tcop/postgres.c:1472 tcop/postgres.c:1712 tcop/postgres.c:2181 -#: tcop/postgres.c:2614 tcop/postgres.c:2692 +#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1118 +#: tcop/postgres.c:1476 tcop/postgres.c:1728 tcop/postgres.c:2209 +#: tcop/postgres.c:2642 tcop/postgres.c:2720 #, c-format msgid "" "current transaction is aborted, commands ignored until end of transaction " @@ -23191,7 +23222,7 @@ msgstr "правило \"%s\" для отношения\"%s\" не сущест msgid "renaming an ON SELECT rule is not allowed" msgstr "переименовывать правило ON SELECT нельзя" -#: rewrite/rewriteHandler.c:576 +#: rewrite/rewriteHandler.c:577 #, c-format msgid "" "WITH query name \"%s\" appears in both a rule action and the query being " @@ -23200,7 +23231,7 @@ msgstr "" "имя запроса WITH \"%s\" оказалось и в действии правила, и в переписываемом " "запросе" -#: rewrite/rewriteHandler.c:603 +#: rewrite/rewriteHandler.c:604 #, c-format msgid "" "INSERT...SELECT rule actions are not supported for queries having data-" @@ -23209,113 +23240,118 @@ msgstr "" "правила INSERT...SELECT не поддерживаются для запросов с операторами, " "изменяющими данные, в WITH" -#: rewrite/rewriteHandler.c:656 +#: rewrite/rewriteHandler.c:657 #, c-format msgid "cannot have RETURNING lists in multiple rules" msgstr "RETURNING можно определить только для одного правила" -#: rewrite/rewriteHandler.c:888 rewrite/rewriteHandler.c:927 +#: rewrite/rewriteHandler.c:889 rewrite/rewriteHandler.c:928 #, c-format msgid "cannot insert a non-DEFAULT value into column \"%s\"" msgstr "в столбец \"%s\" можно вставить только значение по умолчанию" -#: rewrite/rewriteHandler.c:890 rewrite/rewriteHandler.c:956 +#: rewrite/rewriteHandler.c:891 rewrite/rewriteHandler.c:957 #, c-format msgid "Column \"%s\" is an identity column defined as GENERATED ALWAYS." msgstr "" "Столбец \"%s\" является столбцом идентификации со свойством GENERATED ALWAYS." -#: rewrite/rewriteHandler.c:892 +#: rewrite/rewriteHandler.c:893 #, c-format msgid "Use OVERRIDING SYSTEM VALUE to override." msgstr "Для переопределения укажите OVERRIDING SYSTEM VALUE." -#: rewrite/rewriteHandler.c:954 rewrite/rewriteHandler.c:962 +#: rewrite/rewriteHandler.c:955 rewrite/rewriteHandler.c:963 #, c-format msgid "column \"%s\" can only be updated to DEFAULT" msgstr "столбцу \"%s\" можно присвоить только значение DEFAULT" -#: rewrite/rewriteHandler.c:1109 rewrite/rewriteHandler.c:1127 +#: rewrite/rewriteHandler.c:1110 rewrite/rewriteHandler.c:1128 #, c-format msgid "multiple assignments to same column \"%s\"" msgstr "многочисленные присвоения одному столбцу \"%s\"" -#: rewrite/rewriteHandler.c:2143 rewrite/rewriteHandler.c:4057 +#: rewrite/rewriteHandler.c:1743 rewrite/rewriteHandler.c:3145 +#, c-format +msgid "access to non-system view \"%s\" is restricted" +msgstr "доступ к несистемному представлению \"%s\" ограничен" + +#: rewrite/rewriteHandler.c:2152 rewrite/rewriteHandler.c:4074 #, c-format msgid "infinite recursion detected in rules for relation \"%s\"" msgstr "обнаружена бесконечная рекурсия в правилах для отношения \"%s\"" -#: rewrite/rewriteHandler.c:2228 +#: rewrite/rewriteHandler.c:2237 #, c-format msgid "infinite recursion detected in policy for relation \"%s\"" msgstr "обнаружена бесконечная рекурсия в политике для отношения \"%s\"" -#: rewrite/rewriteHandler.c:2548 +#: rewrite/rewriteHandler.c:2557 msgid "Junk view columns are not updatable." msgstr "Утилизируемые столбцы представлений не обновляются." -#: rewrite/rewriteHandler.c:2553 +#: rewrite/rewriteHandler.c:2562 msgid "" "View columns that are not columns of their base relation are not updatable." msgstr "" "Столбцы представлений, не являющиеся столбцами базовых отношений, не " "обновляются." -#: rewrite/rewriteHandler.c:2556 +#: rewrite/rewriteHandler.c:2565 msgid "View columns that refer to system columns are not updatable." msgstr "" "Столбцы представлений, ссылающиеся на системные столбцы, не обновляются." -#: rewrite/rewriteHandler.c:2559 +#: rewrite/rewriteHandler.c:2568 msgid "View columns that return whole-row references are not updatable." msgstr "" "Столбцы представлений, возвращающие ссылки на всю строку, не обновляются." -#: rewrite/rewriteHandler.c:2620 +#: rewrite/rewriteHandler.c:2629 msgid "Views containing DISTINCT are not automatically updatable." msgstr "Представления с DISTINCT не обновляются автоматически." -#: rewrite/rewriteHandler.c:2623 +#: rewrite/rewriteHandler.c:2632 msgid "Views containing GROUP BY are not automatically updatable." msgstr "Представления с GROUP BY не обновляются автоматически." -#: rewrite/rewriteHandler.c:2626 +#: rewrite/rewriteHandler.c:2635 msgid "Views containing HAVING are not automatically updatable." msgstr "Представления с HAVING не обновляются автоматически." -#: rewrite/rewriteHandler.c:2629 +#: rewrite/rewriteHandler.c:2638 msgid "" "Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable." msgstr "" "Представления с UNION, INTERSECT или EXCEPT не обновляются автоматически." -#: rewrite/rewriteHandler.c:2632 +#: rewrite/rewriteHandler.c:2641 msgid "Views containing WITH are not automatically updatable." msgstr "Представления с WITH не обновляются автоматически." -#: rewrite/rewriteHandler.c:2635 +#: rewrite/rewriteHandler.c:2644 msgid "Views containing LIMIT or OFFSET are not automatically updatable." msgstr "Представления с LIMIT или OFFSET не обновляются автоматически." -#: rewrite/rewriteHandler.c:2647 +#: rewrite/rewriteHandler.c:2656 msgid "Views that return aggregate functions are not automatically updatable." msgstr "" "Представления, возвращающие агрегатные функции, не обновляются автоматически." -#: rewrite/rewriteHandler.c:2650 +#: rewrite/rewriteHandler.c:2659 msgid "Views that return window functions are not automatically updatable." msgstr "" "Представления, возвращающие оконные функции, не обновляются автоматически." -#: rewrite/rewriteHandler.c:2653 +#: rewrite/rewriteHandler.c:2662 msgid "" "Views that return set-returning functions are not automatically updatable." msgstr "" "Представления, возвращающие функции с результатом-множеством, не обновляются " "автоматически." -#: rewrite/rewriteHandler.c:2660 rewrite/rewriteHandler.c:2664 -#: rewrite/rewriteHandler.c:2672 +#: rewrite/rewriteHandler.c:2669 rewrite/rewriteHandler.c:2673 +#: rewrite/rewriteHandler.c:2681 msgid "" "Views that do not select from a single table or view are not automatically " "updatable." @@ -23323,27 +23359,27 @@ msgstr "" "Представления, выбирающие данные не из одной таблицы или представления, не " "обновляются автоматически." -#: rewrite/rewriteHandler.c:2675 +#: rewrite/rewriteHandler.c:2684 msgid "Views containing TABLESAMPLE are not automatically updatable." msgstr "Представления, содержащие TABLESAMPLE, не обновляются автоматически." -#: rewrite/rewriteHandler.c:2699 +#: rewrite/rewriteHandler.c:2708 msgid "Views that have no updatable columns are not automatically updatable." msgstr "" "Представления, не содержащие обновляемых столбцов, не обновляются " "автоматически." -#: rewrite/rewriteHandler.c:3188 +#: rewrite/rewriteHandler.c:3205 #, c-format msgid "cannot insert into column \"%s\" of view \"%s\"" msgstr "вставить данные в столбец \"%s\" представления \"%s\" нельзя" -#: rewrite/rewriteHandler.c:3196 +#: rewrite/rewriteHandler.c:3213 #, c-format msgid "cannot update column \"%s\" of view \"%s\"" msgstr "изменить данные в столбце \"%s\" представления \"%s\" нельзя" -#: rewrite/rewriteHandler.c:3684 +#: rewrite/rewriteHandler.c:3701 #, c-format msgid "" "DO INSTEAD NOTIFY rules are not supported for data-modifying statements in " @@ -23352,7 +23388,7 @@ msgstr "" "правила DO INSTEAD NOTIFY не поддерживаются в операторах, изменяющих данные, " "в WITH" -#: rewrite/rewriteHandler.c:3695 +#: rewrite/rewriteHandler.c:3712 #, c-format msgid "" "DO INSTEAD NOTHING rules are not supported for data-modifying statements in " @@ -23361,7 +23397,7 @@ msgstr "" "правила DO INSTEAD NOTHING не поддерживаются в операторах, изменяющих " "данные, в WITH" -#: rewrite/rewriteHandler.c:3709 +#: rewrite/rewriteHandler.c:3726 #, c-format msgid "" "conditional DO INSTEAD rules are not supported for data-modifying statements " @@ -23370,13 +23406,13 @@ msgstr "" "условные правила DO INSTEAD не поддерживаются для операторов, изменяющих " "данные, в WITH" -#: rewrite/rewriteHandler.c:3713 +#: rewrite/rewriteHandler.c:3730 #, c-format msgid "DO ALSO rules are not supported for data-modifying statements in WITH" msgstr "" "правила DO ALSO не поддерживаются для операторов, изменяющих данные, в WITH" -#: rewrite/rewriteHandler.c:3718 +#: rewrite/rewriteHandler.c:3735 #, c-format msgid "" "multi-statement DO INSTEAD rules are not supported for data-modifying " @@ -23385,8 +23421,8 @@ msgstr "" "составные правила DO INSTEAD не поддерживаются для операторов, изменяющих " "данные, в WITH" -#: rewrite/rewriteHandler.c:3985 rewrite/rewriteHandler.c:3993 -#: rewrite/rewriteHandler.c:4001 +#: rewrite/rewriteHandler.c:4002 rewrite/rewriteHandler.c:4010 +#: rewrite/rewriteHandler.c:4018 #, c-format msgid "" "Views with conditional DO INSTEAD rules are not automatically updatable." @@ -23394,43 +23430,43 @@ msgstr "" "Представления в сочетании с правилами DO INSTEAD с условиями не обновляются " "автоматически." -#: rewrite/rewriteHandler.c:4106 +#: rewrite/rewriteHandler.c:4123 #, c-format msgid "cannot perform INSERT RETURNING on relation \"%s\"" msgstr "выполнить INSERT RETURNING для отношения \"%s\" нельзя" -#: rewrite/rewriteHandler.c:4108 +#: rewrite/rewriteHandler.c:4125 #, c-format msgid "" "You need an unconditional ON INSERT DO INSTEAD rule with a RETURNING clause." msgstr "" "Необходимо безусловное правило ON INSERT DO INSTEAD с предложением RETURNING." -#: rewrite/rewriteHandler.c:4113 +#: rewrite/rewriteHandler.c:4130 #, c-format msgid "cannot perform UPDATE RETURNING on relation \"%s\"" msgstr "выполнить UPDATE RETURNING для отношения \"%s\" нельзя" -#: rewrite/rewriteHandler.c:4115 +#: rewrite/rewriteHandler.c:4132 #, c-format msgid "" "You need an unconditional ON UPDATE DO INSTEAD rule with a RETURNING clause." msgstr "" "Необходимо безусловное правило ON UPDATE DO INSTEAD с предложением RETURNING." -#: rewrite/rewriteHandler.c:4120 +#: rewrite/rewriteHandler.c:4137 #, c-format msgid "cannot perform DELETE RETURNING on relation \"%s\"" msgstr "выполнить DELETE RETURNING для отношения \"%s\" нельзя" -#: rewrite/rewriteHandler.c:4122 +#: rewrite/rewriteHandler.c:4139 #, c-format msgid "" "You need an unconditional ON DELETE DO INSTEAD rule with a RETURNING clause." msgstr "" "Необходимо безусловное правило ON DELETE DO INSTEAD с предложением RETURNING." -#: rewrite/rewriteHandler.c:4140 +#: rewrite/rewriteHandler.c:4157 #, c-format msgid "" "INSERT with ON CONFLICT clause cannot be used with table that has INSERT or " @@ -23439,7 +23475,7 @@ msgstr "" "INSERT c предложением ON CONFLICT нельзя использовать с таблицей, для " "которой заданы правила INSERT или UPDATE" -#: rewrite/rewriteHandler.c:4197 +#: rewrite/rewriteHandler.c:4214 #, c-format msgid "" "WITH cannot be used in a query that is rewritten by rules into multiple " @@ -23715,7 +23751,7 @@ msgstr "" msgid "could not synchronize file system for file \"%s\": %m" msgstr "не удалось синхронизировать с ФС файл \"%s\": %m" -#: storage/file/fd.c:3619 +#: storage/file/fd.c:3614 #, c-format msgid "" "syncing data directory (pre-fsync), elapsed time: %ld.%02d s, current path: " @@ -23724,7 +23760,7 @@ msgstr "" "синхронизация каталога данных (подготовка к fsync), прошло времени: %ld.%02d " "с, текущий путь: %s" -#: storage/file/fd.c:3651 +#: storage/file/fd.c:3646 #, c-format msgid "" "syncing data directory (fsync), elapsed time: %ld.%02d s, current path: %s" @@ -23864,10 +23900,10 @@ msgid "invalid message size %zu in shared memory queue" msgstr "неверный размер сообщения %zu в очереди в разделяемой памяти" #: storage/ipc/shm_toc.c:118 storage/ipc/shm_toc.c:200 storage/lmgr/lock.c:997 -#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2855 storage/lmgr/lock.c:4269 -#: storage/lmgr/lock.c:4334 storage/lmgr/lock.c:4684 -#: storage/lmgr/predicate.c:2485 storage/lmgr/predicate.c:2500 -#: storage/lmgr/predicate.c:3990 storage/lmgr/predicate.c:5106 +#: storage/lmgr/lock.c:1035 storage/lmgr/lock.c:2865 storage/lmgr/lock.c:4279 +#: storage/lmgr/lock.c:4344 storage/lmgr/lock.c:4694 +#: storage/lmgr/predicate.c:2490 storage/lmgr/predicate.c:2505 +#: storage/lmgr/predicate.c:3995 storage/lmgr/predicate.c:5111 #: utils/hash/dynahash.c:1112 #, c-format msgid "out of shared memory" @@ -23977,13 +24013,13 @@ msgstr "процесс восстановления продолжает ожи msgid "recovery finished waiting after %ld.%03d ms: %s" msgstr "процесс восстановления завершил ожидание после %ld.%03d мс: %s" -#: storage/ipc/standby.c:883 tcop/postgres.c:3344 +#: storage/ipc/standby.c:883 tcop/postgres.c:3372 #, c-format msgid "canceling statement due to conflict with recovery" msgstr "" "выполнение оператора отменено из-за конфликта с процессом восстановления" -#: storage/ipc/standby.c:884 tcop/postgres.c:2499 +#: storage/ipc/standby.c:884 tcop/postgres.c:2527 #, c-format msgid "User transaction caused buffer deadlock with recovery." msgstr "" @@ -24178,13 +24214,13 @@ msgstr "" "В процессе восстановления для объектов базы данных может быть получена " "только блокировка RowExclusiveLock или менее сильная." -#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2856 -#: storage/lmgr/lock.c:4270 storage/lmgr/lock.c:4335 storage/lmgr/lock.c:4685 +#: storage/lmgr/lock.c:998 storage/lmgr/lock.c:1036 storage/lmgr/lock.c:2866 +#: storage/lmgr/lock.c:4280 storage/lmgr/lock.c:4345 storage/lmgr/lock.c:4695 #, c-format msgid "You might need to increase max_locks_per_transaction." msgstr "Возможно, следует увеличить параметр max_locks_per_transaction." -#: storage/lmgr/lock.c:3311 storage/lmgr/lock.c:3379 storage/lmgr/lock.c:3495 +#: storage/lmgr/lock.c:3321 storage/lmgr/lock.c:3389 storage/lmgr/lock.c:3505 #, c-format msgid "" "cannot PREPARE while holding both session-level and transaction-level locks " @@ -24204,7 +24240,7 @@ msgid "" "You might need to run fewer transactions at a time or increase " "max_connections." msgstr "" -"Попробуйте уменьшить число транзакций в секунду или увеличить параметр " +"Попробуйте уменьшить число одновременных транзакций или увеличить параметр " "max_connections." #: storage/lmgr/predicate.c:728 @@ -24216,13 +24252,13 @@ msgstr "" "в пуле недостаточно элементов для записи о потенциальном конфликте чтения/" "записи" -#: storage/lmgr/predicate.c:1695 +#: storage/lmgr/predicate.c:1700 #, c-format msgid "\"default_transaction_isolation\" is set to \"serializable\"." msgstr "" "Параметр \"default_transaction_isolation\" имеет значение \"serializable\"." -#: storage/lmgr/predicate.c:1696 +#: storage/lmgr/predicate.c:1701 #, c-format msgid "" "You can use \"SET default_transaction_isolation = 'repeatable read'\" to " @@ -24231,34 +24267,34 @@ msgstr "" "Чтобы изменить режим по умолчанию, выполните \"SET " "default_transaction_isolation = 'repeatable read'\"." -#: storage/lmgr/predicate.c:1747 +#: storage/lmgr/predicate.c:1752 #, c-format msgid "a snapshot-importing transaction must not be READ ONLY DEFERRABLE" msgstr "транзакция, импортирующая снимок, не должна быть READ ONLY DEFERRABLE" -#: storage/lmgr/predicate.c:1826 utils/time/snapmgr.c:569 +#: storage/lmgr/predicate.c:1831 utils/time/snapmgr.c:569 #: utils/time/snapmgr.c:575 #, c-format msgid "could not import the requested snapshot" msgstr "не удалось импортировать запрошенный снимок" -#: storage/lmgr/predicate.c:1827 utils/time/snapmgr.c:576 +#: storage/lmgr/predicate.c:1832 utils/time/snapmgr.c:576 #, c-format msgid "The source process with PID %d is not running anymore." msgstr "Исходный процесс с PID %d уже не работает." -#: storage/lmgr/predicate.c:2486 storage/lmgr/predicate.c:2501 -#: storage/lmgr/predicate.c:3991 +#: storage/lmgr/predicate.c:2491 storage/lmgr/predicate.c:2506 +#: storage/lmgr/predicate.c:3996 #, c-format msgid "You might need to increase max_pred_locks_per_transaction." msgstr "" "Возможно, следует увеличить значение параметра max_locks_per_transaction." -#: storage/lmgr/predicate.c:4122 storage/lmgr/predicate.c:4158 -#: storage/lmgr/predicate.c:4191 storage/lmgr/predicate.c:4199 -#: storage/lmgr/predicate.c:4238 storage/lmgr/predicate.c:4480 -#: storage/lmgr/predicate.c:4817 storage/lmgr/predicate.c:4829 -#: storage/lmgr/predicate.c:4876 storage/lmgr/predicate.c:4914 +#: storage/lmgr/predicate.c:4127 storage/lmgr/predicate.c:4163 +#: storage/lmgr/predicate.c:4196 storage/lmgr/predicate.c:4204 +#: storage/lmgr/predicate.c:4243 storage/lmgr/predicate.c:4485 +#: storage/lmgr/predicate.c:4822 storage/lmgr/predicate.c:4834 +#: storage/lmgr/predicate.c:4881 storage/lmgr/predicate.c:4919 #, c-format msgid "" "could not serialize access due to read/write dependencies among transactions" @@ -24266,11 +24302,11 @@ msgstr "" "не удалось сериализовать доступ из-за зависимостей чтения/записи между " "транзакциями" -#: storage/lmgr/predicate.c:4124 storage/lmgr/predicate.c:4160 -#: storage/lmgr/predicate.c:4193 storage/lmgr/predicate.c:4201 -#: storage/lmgr/predicate.c:4240 storage/lmgr/predicate.c:4482 -#: storage/lmgr/predicate.c:4819 storage/lmgr/predicate.c:4831 -#: storage/lmgr/predicate.c:4878 storage/lmgr/predicate.c:4916 +#: storage/lmgr/predicate.c:4129 storage/lmgr/predicate.c:4165 +#: storage/lmgr/predicate.c:4198 storage/lmgr/predicate.c:4206 +#: storage/lmgr/predicate.c:4245 storage/lmgr/predicate.c:4487 +#: storage/lmgr/predicate.c:4824 storage/lmgr/predicate.c:4836 +#: storage/lmgr/predicate.c:4883 storage/lmgr/predicate.c:4921 #, c-format msgid "The transaction might succeed if retried." msgstr "Транзакция может завершиться успешно при следующей попытке." @@ -24281,8 +24317,8 @@ msgid "" "number of requested standby connections exceeds max_wal_senders (currently " "%d)" msgstr "" -"число запрошенных подключений резервных серверов превосходит max_wal_senders " -"(сейчас: %d)" +"число запрошенных подключений резервных серверов превышает " +"\"max_wal_senders\" (сейчас: %d)" #: storage/lmgr/proc.c:1539 #, c-format @@ -24420,8 +24456,8 @@ msgstr "вызвать функцию \"%s\" через интерфейс fastp msgid "fastpath function call: \"%s\" (OID %u)" msgstr "вызов функции (через fastpath): \"%s\" (OID %u)" -#: tcop/fastpath.c:312 tcop/postgres.c:1341 tcop/postgres.c:1577 -#: tcop/postgres.c:2036 tcop/postgres.c:2280 +#: tcop/fastpath.c:312 tcop/postgres.c:1345 tcop/postgres.c:1581 +#: tcop/postgres.c:2052 tcop/postgres.c:2308 #, c-format msgid "duration: %s ms" msgstr "продолжительность: %s мс" @@ -24456,44 +24492,44 @@ msgstr "неверный размер аргумента (%d) в сообщен msgid "incorrect binary data format in function argument %d" msgstr "неправильный формат двоичных данных в аргументе функции %d" -#: tcop/postgres.c:444 tcop/postgres.c:4828 +#: tcop/postgres.c:448 tcop/postgres.c:4916 #, c-format msgid "invalid frontend message type %d" msgstr "неправильный тип клиентского сообщения %d" -#: tcop/postgres.c:1051 +#: tcop/postgres.c:1055 #, c-format msgid "statement: %s" msgstr "оператор: %s" -#: tcop/postgres.c:1346 +#: tcop/postgres.c:1350 #, c-format msgid "duration: %s ms statement: %s" msgstr "продолжительность: %s мс, оператор: %s" -#: tcop/postgres.c:1452 +#: tcop/postgres.c:1456 #, c-format msgid "cannot insert multiple commands into a prepared statement" msgstr "в подготовленный оператор нельзя вставить несколько команд" -#: tcop/postgres.c:1582 +#: tcop/postgres.c:1586 #, c-format msgid "duration: %s ms parse %s: %s" msgstr "продолжительность: %s мс, разбор %s: %s" # [SM]: TO REVIEW -#: tcop/postgres.c:1648 tcop/postgres.c:2595 +#: tcop/postgres.c:1653 tcop/postgres.c:2623 #, c-format msgid "unnamed prepared statement does not exist" msgstr "безымянный подготовленный оператор не существует" -#: tcop/postgres.c:1689 +#: tcop/postgres.c:1705 #, c-format msgid "bind message has %d parameter formats but %d parameters" msgstr "" "неверное число форматов параметров в сообщении Bind (%d, а параметров %d)" -#: tcop/postgres.c:1695 +#: tcop/postgres.c:1711 #, c-format msgid "" "bind message supplies %d parameters, but prepared statement \"%s\" requires " @@ -24502,113 +24538,113 @@ msgstr "" "в сообщении Bind передано неверное число параметров (%d, а подготовленный " "оператор \"%s\" требует %d)" -#: tcop/postgres.c:1914 +#: tcop/postgres.c:1930 #, c-format msgid "incorrect binary data format in bind parameter %d" msgstr "неверный формат двоичных данных в параметре Bind %d" -#: tcop/postgres.c:2041 +#: tcop/postgres.c:2057 #, c-format msgid "duration: %s ms bind %s%s%s: %s" msgstr "продолжительность: %s мс, сообщение Bind %s%s%s: %s" -#: tcop/postgres.c:2091 tcop/postgres.c:2678 +#: tcop/postgres.c:2108 tcop/postgres.c:2706 #, c-format msgid "portal \"%s\" does not exist" msgstr "портал \"%s\" не существует" -#: tcop/postgres.c:2160 +#: tcop/postgres.c:2188 #, c-format msgid "%s %s%s%s: %s" msgstr "%s %s%s%s: %s" -#: tcop/postgres.c:2162 tcop/postgres.c:2288 +#: tcop/postgres.c:2190 tcop/postgres.c:2316 msgid "execute fetch from" msgstr "выборка из" -#: tcop/postgres.c:2163 tcop/postgres.c:2289 +#: tcop/postgres.c:2191 tcop/postgres.c:2317 msgid "execute" msgstr "выполнение" -#: tcop/postgres.c:2285 +#: tcop/postgres.c:2313 #, c-format msgid "duration: %s ms %s %s%s%s: %s" msgstr "продолжительность: %s мс %s %s%s%s: %s" -#: tcop/postgres.c:2431 +#: tcop/postgres.c:2459 #, c-format msgid "prepare: %s" msgstr "подготовка: %s" -#: tcop/postgres.c:2456 +#: tcop/postgres.c:2484 #, c-format msgid "parameters: %s" msgstr "параметры: %s" -#: tcop/postgres.c:2471 +#: tcop/postgres.c:2499 #, c-format msgid "abort reason: recovery conflict" msgstr "причина прерывания: конфликт при восстановлении" -#: tcop/postgres.c:2487 +#: tcop/postgres.c:2515 #, c-format msgid "User was holding shared buffer pin for too long." msgstr "Пользователь удерживал фиксатор разделяемого буфера слишком долго." -#: tcop/postgres.c:2490 +#: tcop/postgres.c:2518 #, c-format msgid "User was holding a relation lock for too long." msgstr "Пользователь удерживал блокировку таблицы слишком долго." -#: tcop/postgres.c:2493 +#: tcop/postgres.c:2521 #, c-format msgid "User was or might have been using tablespace that must be dropped." msgstr "" "Пользователь использовал табличное пространство, которое должно быть удалено." -#: tcop/postgres.c:2496 +#: tcop/postgres.c:2524 #, c-format msgid "User query might have needed to see row versions that must be removed." msgstr "" "Запросу пользователя нужно было видеть версии строк, которые должны быть " "удалены." -#: tcop/postgres.c:2502 +#: tcop/postgres.c:2530 #, c-format msgid "User was connected to a database that must be dropped." msgstr "Пользователь был подключён к базе данных, которая должна быть удалена." -#: tcop/postgres.c:2541 +#: tcop/postgres.c:2569 #, c-format msgid "portal \"%s\" parameter $%d = %s" msgstr "портал \"%s\", параметр $%d = %s" -#: tcop/postgres.c:2544 +#: tcop/postgres.c:2572 #, c-format msgid "portal \"%s\" parameter $%d" msgstr "портал \"%s\", параметр $%d" -#: tcop/postgres.c:2550 +#: tcop/postgres.c:2578 #, c-format msgid "unnamed portal parameter $%d = %s" msgstr "неименованный портал, параметр $%d = %s" -#: tcop/postgres.c:2553 +#: tcop/postgres.c:2581 #, c-format msgid "unnamed portal parameter $%d" msgstr "неименованный портал, параметр $%d" -#: tcop/postgres.c:2898 +#: tcop/postgres.c:2926 #, c-format msgid "terminating connection because of unexpected SIGQUIT signal" msgstr "закрытие подключения из-за неожиданного сигнала SIGQUIT" -#: tcop/postgres.c:2904 +#: tcop/postgres.c:2932 #, c-format msgid "terminating connection because of crash of another server process" msgstr "закрытие подключения из-за краха другого серверного процесса" -#: tcop/postgres.c:2905 +#: tcop/postgres.c:2933 #, c-format msgid "" "The postmaster has commanded this server process to roll back the current " @@ -24619,7 +24655,7 @@ msgstr "" "транзакцию и завершиться, так как другой серверный процесс завершился " "аварийно и, возможно, разрушил разделяемую память." -#: tcop/postgres.c:2909 tcop/postgres.c:3270 +#: tcop/postgres.c:2937 tcop/postgres.c:3298 #, c-format msgid "" "In a moment you should be able to reconnect to the database and repeat your " @@ -24628,18 +24664,18 @@ msgstr "" "Вы сможете переподключиться к базе данных и повторить вашу команду сию " "минуту." -#: tcop/postgres.c:2916 +#: tcop/postgres.c:2944 #, c-format msgid "terminating connection due to immediate shutdown command" msgstr "" "закрытие подключения вследствие получения команды для немедленного отключения" -#: tcop/postgres.c:3002 +#: tcop/postgres.c:3030 #, c-format msgid "floating-point exception" msgstr "исключение в операции с плавающей точкой" -#: tcop/postgres.c:3003 +#: tcop/postgres.c:3031 #, c-format msgid "" "An invalid floating-point operation was signaled. This probably means an out-" @@ -24649,72 +24685,72 @@ msgstr "" "оказался вне допустимых рамок или произошла ошибка вычисления, например, " "деление на ноль." -#: tcop/postgres.c:3174 +#: tcop/postgres.c:3202 #, c-format msgid "canceling authentication due to timeout" msgstr "отмена проверки подлинности из-за тайм-аута" -#: tcop/postgres.c:3178 +#: tcop/postgres.c:3206 #, c-format msgid "terminating autovacuum process due to administrator command" msgstr "прекращение процесса автоочистки по команде администратора" -#: tcop/postgres.c:3182 +#: tcop/postgres.c:3210 #, c-format msgid "terminating logical replication worker due to administrator command" msgstr "завершение обработчика логической репликации по команде администратора" -#: tcop/postgres.c:3199 tcop/postgres.c:3209 tcop/postgres.c:3268 +#: tcop/postgres.c:3227 tcop/postgres.c:3237 tcop/postgres.c:3296 #, c-format msgid "terminating connection due to conflict with recovery" msgstr "закрытие подключения из-за конфликта с процессом восстановления" -#: tcop/postgres.c:3220 +#: tcop/postgres.c:3248 #, c-format msgid "terminating connection due to administrator command" msgstr "закрытие подключения по команде администратора" -#: tcop/postgres.c:3251 +#: tcop/postgres.c:3279 #, c-format msgid "connection to client lost" msgstr "подключение к клиенту потеряно" -#: tcop/postgres.c:3321 +#: tcop/postgres.c:3349 #, c-format msgid "canceling statement due to lock timeout" msgstr "выполнение оператора отменено из-за тайм-аута блокировки" -#: tcop/postgres.c:3328 +#: tcop/postgres.c:3356 #, c-format msgid "canceling statement due to statement timeout" msgstr "выполнение оператора отменено из-за тайм-аута" -#: tcop/postgres.c:3335 +#: tcop/postgres.c:3363 #, c-format msgid "canceling autovacuum task" msgstr "отмена задачи автоочистки" -#: tcop/postgres.c:3358 +#: tcop/postgres.c:3386 #, c-format msgid "canceling statement due to user request" msgstr "выполнение оператора отменено по запросу пользователя" -#: tcop/postgres.c:3372 +#: tcop/postgres.c:3400 #, c-format msgid "terminating connection due to idle-in-transaction timeout" msgstr "закрытие подключения из-за тайм-аута простоя в транзакции" -#: tcop/postgres.c:3383 +#: tcop/postgres.c:3411 #, c-format msgid "terminating connection due to idle-session timeout" msgstr "закрытие подключения из-за тайм-аута простоя сеанса" -#: tcop/postgres.c:3523 +#: tcop/postgres.c:3551 #, c-format msgid "stack depth limit exceeded" msgstr "превышен предел глубины стека" -#: tcop/postgres.c:3524 +#: tcop/postgres.c:3552 #, c-format msgid "" "Increase the configuration parameter \"max_stack_depth\" (currently %dkB), " @@ -24724,12 +24760,12 @@ msgstr "" "КБ), предварительно убедившись, что ОС предоставляет достаточный размер " "стека." -#: tcop/postgres.c:3587 +#: tcop/postgres.c:3615 #, c-format msgid "\"max_stack_depth\" must not exceed %ldkB." msgstr "Значение \"max_stack_depth\" не должно превышать %ld КБ." -#: tcop/postgres.c:3589 +#: tcop/postgres.c:3617 #, c-format msgid "" "Increase the platform's stack depth limit via \"ulimit -s\" or local " @@ -24738,49 +24774,49 @@ msgstr "" "Увеличьте предел глубины стека в системе с помощью команды \"ulimit -s\" или " "эквивалента в вашей ОС." -#: tcop/postgres.c:3945 +#: tcop/postgres.c:4033 #, c-format msgid "invalid command-line argument for server process: %s" msgstr "неверный аргумент командной строки для серверного процесса: %s" -#: tcop/postgres.c:3946 tcop/postgres.c:3952 +#: tcop/postgres.c:4034 tcop/postgres.c:4040 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Для дополнительной информации попробуйте \"%s --help\"." -#: tcop/postgres.c:3950 +#: tcop/postgres.c:4038 #, c-format msgid "%s: invalid command-line argument: %s" msgstr "%s: неверный аргумент командной строки: %s" -#: tcop/postgres.c:4003 +#: tcop/postgres.c:4091 #, c-format msgid "%s: no database nor user name specified" msgstr "%s: не указаны ни база данных, ни пользователь" -#: tcop/postgres.c:4730 +#: tcop/postgres.c:4818 #, c-format msgid "invalid CLOSE message subtype %d" msgstr "неверный подтип сообщения CLOSE: %d" -#: tcop/postgres.c:4765 +#: tcop/postgres.c:4853 #, c-format msgid "invalid DESCRIBE message subtype %d" msgstr "неверный подтип сообщения DESCRIBE: %d" -#: tcop/postgres.c:4849 +#: tcop/postgres.c:4937 #, c-format msgid "fastpath function calls not supported in a replication connection" msgstr "" "вызовы функций через fastpath не поддерживаются для реплицирующих соединений" -#: tcop/postgres.c:4853 +#: tcop/postgres.c:4941 #, c-format msgid "extended query protocol not supported in a replication connection" msgstr "" "протокол расширенных запросов не поддерживается для реплицирующих соединений" -#: tcop/postgres.c:5030 +#: tcop/postgres.c:5118 #, c-format msgid "" "disconnection: session time: %d:%02d:%02d.%03d user=%s database=%s " @@ -24999,7 +25035,7 @@ msgid "invalid regular expression: %s" msgstr "неверное регулярное выражение: %s" #: tsearch/spell.c:983 tsearch/spell.c:1000 tsearch/spell.c:1017 -#: tsearch/spell.c:1034 tsearch/spell.c:1099 gram.y:17812 gram.y:17829 +#: tsearch/spell.c:1034 tsearch/spell.c:1099 gram.y:17819 gram.y:17836 #, c-format msgid "syntax error" msgstr "ошибка синтаксиса" @@ -25111,38 +25147,38 @@ msgstr "Значение MaxFragments должно быть >= 0" msgid "could not unlink permanent statistics file \"%s\": %m" msgstr "ошибка удаления постоянного файла статистики \"%s\": %m" -#: utils/activity/pgstat.c:1229 +#: utils/activity/pgstat.c:1232 #, c-format msgid "invalid statistics kind: \"%s\"" msgstr "неверный вид статистики: \"%s\"" -#: utils/activity/pgstat.c:1309 +#: utils/activity/pgstat.c:1312 #, c-format msgid "could not open temporary statistics file \"%s\": %m" msgstr "не удалось открыть временный файл статистики \"%s\": %m" -#: utils/activity/pgstat.c:1415 +#: utils/activity/pgstat.c:1418 #, c-format msgid "could not write temporary statistics file \"%s\": %m" msgstr "не удалось записать во временный файл статистики \"%s\": %m" -#: utils/activity/pgstat.c:1424 +#: utils/activity/pgstat.c:1427 #, c-format msgid "could not close temporary statistics file \"%s\": %m" msgstr "не удалось закрыть временный файл статистики \"%s\": %m" -#: utils/activity/pgstat.c:1432 +#: utils/activity/pgstat.c:1435 #, c-format msgid "could not rename temporary statistics file \"%s\" to \"%s\": %m" msgstr "" "не удалось переименовать временный файл статистики из \"%s\" в \"%s\": %m" -#: utils/activity/pgstat.c:1481 +#: utils/activity/pgstat.c:1484 #, c-format msgid "could not open statistics file \"%s\": %m" msgstr "не удалось открыть файл статистики \"%s\": %m" -#: utils/activity/pgstat.c:1637 +#: utils/activity/pgstat.c:1640 #, c-format msgid "corrupted statistics file \"%s\"" msgstr "файл статистики \"%s\" испорчен" @@ -26919,8 +26955,8 @@ msgid "" "numeric argument of jsonpath item method .%s() is out of range for type " "double precision" msgstr "" -"числовой аргумент метода элемента jsonpath .%s() вне диапазона для типа " -"double precision" +"числовой аргумент метода элемента jsonpath .%s() вне диапазона типа double " +"precision" #: utils/adt/jsonpath_exec.c:1080 #, c-format @@ -27093,62 +27129,62 @@ msgstr "в табличном пространстве global никогда н msgid "%u is not a tablespace OID" msgstr "%u - это не OID табличного пространства" -#: utils/adt/misc.c:457 +#: utils/adt/misc.c:450 msgid "unreserved" msgstr "не зарезервировано" -#: utils/adt/misc.c:461 +#: utils/adt/misc.c:454 msgid "unreserved (cannot be function or type name)" msgstr "не зарезервировано (но не может быть именем типа или функции)" -#: utils/adt/misc.c:465 +#: utils/adt/misc.c:458 msgid "reserved (can be function or type name)" msgstr "зарезервировано (но может быть именем типа или функции)" -#: utils/adt/misc.c:469 +#: utils/adt/misc.c:462 msgid "reserved" msgstr "зарезервировано" -#: utils/adt/misc.c:480 +#: utils/adt/misc.c:473 msgid "can be bare label" msgstr "может быть открытой меткой" -#: utils/adt/misc.c:485 +#: utils/adt/misc.c:478 msgid "requires AS" msgstr "требует AS" -#: utils/adt/misc.c:732 utils/adt/misc.c:746 utils/adt/misc.c:785 -#: utils/adt/misc.c:791 utils/adt/misc.c:797 utils/adt/misc.c:820 +#: utils/adt/misc.c:725 utils/adt/misc.c:739 utils/adt/misc.c:778 +#: utils/adt/misc.c:784 utils/adt/misc.c:790 utils/adt/misc.c:813 #, c-format msgid "string is not a valid identifier: \"%s\"" msgstr "строка не является допустимым идентификатором: \"%s\"" -#: utils/adt/misc.c:734 +#: utils/adt/misc.c:727 #, c-format msgid "String has unclosed double quotes." msgstr "В строке не закрыты кавычки." -#: utils/adt/misc.c:748 +#: utils/adt/misc.c:741 #, c-format msgid "Quoted identifier must not be empty." msgstr "Идентификатор в кавычках не может быть пустым." -#: utils/adt/misc.c:787 +#: utils/adt/misc.c:780 #, c-format msgid "No valid identifier before \".\"." msgstr "Перед \".\" нет допустимого идентификатора." -#: utils/adt/misc.c:793 +#: utils/adt/misc.c:786 #, c-format msgid "No valid identifier after \".\"." msgstr "После \".\" нет допустимого идентификатора." -#: utils/adt/misc.c:853 +#: utils/adt/misc.c:846 #, c-format msgid "log format \"%s\" is not supported" msgstr "формат журнала \"%s\" не поддерживается" -#: utils/adt/misc.c:854 +#: utils/adt/misc.c:847 #, c-format msgid "The supported log formats are \"stderr\", \"csvlog\", and \"jsonlog\"." msgstr "Поддерживаются форматы журналов \"stderr\", \"csvlog\" и \"jsonlog\"." @@ -27657,7 +27693,7 @@ msgstr "" #: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 #: utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 #: utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 -#: utils/adt/regexp.c:1857 utils/misc/guc.c:11875 utils/misc/guc.c:11909 +#: utils/adt/regexp.c:1857 utils/misc/guc.c:11893 utils/misc/guc.c:11927 #, c-format msgid "invalid value for parameter \"%s\": %d" msgstr "неверное значение параметра \"%s\": %d" @@ -27699,19 +27735,19 @@ msgstr "имя \"%s\" имеют несколько функций" msgid "more than one operator named %s" msgstr "имя %s имеют несколько операторов" -#: utils/adt/regproc.c:710 utils/adt/regproc.c:751 gram.y:8771 +#: utils/adt/regproc.c:710 utils/adt/regproc.c:751 gram.y:8778 #, c-format msgid "missing argument" msgstr "отсутствует аргумент" -#: utils/adt/regproc.c:711 utils/adt/regproc.c:752 gram.y:8772 +#: utils/adt/regproc.c:711 utils/adt/regproc.c:752 gram.y:8779 #, c-format msgid "Use NONE to denote the missing argument of a unary operator." msgstr "" "Чтобы обозначить отсутствующий аргумент унарного оператора, укажите NONE." #: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 -#: utils/adt/ruleutils.c:10029 utils/adt/ruleutils.c:10198 +#: utils/adt/ruleutils.c:10053 utils/adt/ruleutils.c:10222 #, c-format msgid "too many arguments" msgstr "слишком много аргументов" @@ -27934,7 +27970,7 @@ msgstr "TIMESTAMP(%d)%s: точность должна быть неотрица msgid "TIMESTAMP(%d)%s precision reduced to maximum allowed, %d" msgstr "TIMESTAMP(%d)%s: точность уменьшена до дозволенного максимума: %d" -#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12899 +#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12917 #, c-format msgid "timestamp out of range: \"%s\"" msgstr "timestamp вне диапазона: \"%s\"" @@ -28596,22 +28632,22 @@ msgstr "" "не удалось зарегистрировать пространство имён XML с префиксом \"%s\" и URI " "\"%s\"" -#: utils/adt/xml.c:4503 +#: utils/adt/xml.c:4509 #, c-format msgid "DEFAULT namespace is not supported" msgstr "пространство имён DEFAULT не поддерживается" -#: utils/adt/xml.c:4532 +#: utils/adt/xml.c:4538 #, c-format msgid "row path filter must not be empty string" msgstr "путь отбираемых строк не должен быть пустым" -#: utils/adt/xml.c:4563 +#: utils/adt/xml.c:4572 #, c-format msgid "column path filter must not be empty string" msgstr "путь отбираемого столбца не должен быть пустым" -#: utils/adt/xml.c:4707 +#: utils/adt/xml.c:4719 #, c-format msgid "more than one value returned by column XPath expression" msgstr "выражение XPath, отбирающее столбец, возвратило более одного значения" @@ -28651,28 +28687,28 @@ msgstr "" msgid "cached plan must not change result type" msgstr "в кешированном плане не должен изменяться тип результата" -#: utils/cache/relcache.c:3754 +#: utils/cache/relcache.c:3755 #, c-format msgid "heap relfilenode value not set when in binary upgrade mode" msgstr "значение relfilenode для кучи не задано в режиме двоичного обновления" -#: utils/cache/relcache.c:3762 +#: utils/cache/relcache.c:3763 #, c-format msgid "unexpected request for new relfilenode in binary upgrade mode" msgstr "" "неожиданный запрос нового значения relfilenode в режиме двоичного обновления" -#: utils/cache/relcache.c:6473 +#: utils/cache/relcache.c:6476 #, c-format msgid "could not create relation-cache initialization file \"%s\": %m" msgstr "создать файл инициализации для кеша отношений \"%s\" не удалось: %m" -#: utils/cache/relcache.c:6475 +#: utils/cache/relcache.c:6478 #, c-format msgid "Continuing anyway, but there's something wrong." msgstr "Продолжаем всё равно, хотя что-то не так." -#: utils/cache/relcache.c:6797 +#: utils/cache/relcache.c:6800 #, c-format msgid "could not remove cache file \"%s\": %m" msgstr "не удалось стереть файл кеша \"%s\": %m" @@ -28972,7 +29008,7 @@ msgstr "каталог данных \"%s\" не существует" #: utils/init/miscinit.c:334 #, c-format msgid "could not read permissions of directory \"%s\": %m" -msgstr "не удалось считать права на каталог \"%s\": %m" +msgstr "не удалось прочитать права на каталог \"%s\": %m" #: utils/init/miscinit.c:342 #, c-format @@ -29000,7 +29036,7 @@ msgstr "для каталога данных \"%s\" установлены не msgid "Permissions should be u=rwx (0700) or u=rwx,g=rx (0750)." msgstr "Маска прав должна быть u=rwx (0700) или u=rwx,g=rx (0750)." -#: utils/init/miscinit.c:665 utils/misc/guc.c:7837 +#: utils/init/miscinit.c:665 utils/misc/guc.c:7855 #, c-format msgid "cannot set parameter \"%s\" within security-restricted operation" msgstr "" @@ -29112,7 +29148,7 @@ msgstr "" msgid "could not write lock file \"%s\": %m" msgstr "не удалось записать файл блокировки \"%s\": %m" -#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10843 +#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10861 #, c-format msgid "could not read from file \"%s\": %m" msgstr "не удалось прочитать файл \"%s\": %m" @@ -29407,189 +29443,189 @@ msgstr "" "для символа с последовательностью байт %s из кодировки \"%s\" нет " "эквивалента в \"%s\"" -#: utils/misc/guc.c:776 +#: utils/misc/guc.c:777 msgid "Ungrouped" msgstr "Разное" -#: utils/misc/guc.c:778 +#: utils/misc/guc.c:779 msgid "File Locations" msgstr "Расположения файлов" -#: utils/misc/guc.c:780 +#: utils/misc/guc.c:781 msgid "Connections and Authentication / Connection Settings" msgstr "Подключения и аутентификация / Параметры подключений" -#: utils/misc/guc.c:782 +#: utils/misc/guc.c:783 msgid "Connections and Authentication / Authentication" msgstr "Подключения и аутентификация / Аутентификация" -#: utils/misc/guc.c:784 +#: utils/misc/guc.c:785 msgid "Connections and Authentication / SSL" msgstr "Подключения и аутентификация / SSL" -#: utils/misc/guc.c:786 +#: utils/misc/guc.c:787 msgid "Resource Usage / Memory" msgstr "Использование ресурсов / Память" -#: utils/misc/guc.c:788 +#: utils/misc/guc.c:789 msgid "Resource Usage / Disk" msgstr "Использование ресурсов / Диск" -#: utils/misc/guc.c:790 +#: utils/misc/guc.c:791 msgid "Resource Usage / Kernel Resources" msgstr "Использование ресурсов / Ресурсы ядра" -#: utils/misc/guc.c:792 +#: utils/misc/guc.c:793 msgid "Resource Usage / Cost-Based Vacuum Delay" msgstr "Использование ресурсов / Задержка очистки по стоимости" -#: utils/misc/guc.c:794 +#: utils/misc/guc.c:795 msgid "Resource Usage / Background Writer" msgstr "Использование ресурсов / Фоновая запись" -#: utils/misc/guc.c:796 +#: utils/misc/guc.c:797 msgid "Resource Usage / Asynchronous Behavior" msgstr "Использование ресурсов / Асинхронное поведение" -#: utils/misc/guc.c:798 +#: utils/misc/guc.c:799 msgid "Write-Ahead Log / Settings" msgstr "Журнал WAL / Параметры" -#: utils/misc/guc.c:800 +#: utils/misc/guc.c:801 msgid "Write-Ahead Log / Checkpoints" msgstr "Журнал WAL / Контрольные точки" -#: utils/misc/guc.c:802 +#: utils/misc/guc.c:803 msgid "Write-Ahead Log / Archiving" msgstr "Журнал WAL / Архивация" -#: utils/misc/guc.c:804 +#: utils/misc/guc.c:805 msgid "Write-Ahead Log / Recovery" msgstr "Журнал WAL / Восстановление" -#: utils/misc/guc.c:806 +#: utils/misc/guc.c:807 msgid "Write-Ahead Log / Archive Recovery" msgstr "Журнал WAL / Восстановление из архива" -#: utils/misc/guc.c:808 +#: utils/misc/guc.c:809 msgid "Write-Ahead Log / Recovery Target" msgstr "Журнал WAL / Цель восстановления" -#: utils/misc/guc.c:810 +#: utils/misc/guc.c:811 msgid "Replication / Sending Servers" msgstr "Репликация / Передающие серверы" -#: utils/misc/guc.c:812 +#: utils/misc/guc.c:813 msgid "Replication / Primary Server" msgstr "Репликация / Ведущий сервер" -#: utils/misc/guc.c:814 +#: utils/misc/guc.c:815 msgid "Replication / Standby Servers" msgstr "Репликация / Резервные серверы" -#: utils/misc/guc.c:816 +#: utils/misc/guc.c:817 msgid "Replication / Subscribers" msgstr "Репликация / Подписчики" -#: utils/misc/guc.c:818 +#: utils/misc/guc.c:819 msgid "Query Tuning / Planner Method Configuration" msgstr "Настройка запросов / Конфигурация методов планировщика" -#: utils/misc/guc.c:820 +#: utils/misc/guc.c:821 msgid "Query Tuning / Planner Cost Constants" msgstr "Настройка запросов / Константы стоимости для планировщика" -#: utils/misc/guc.c:822 +#: utils/misc/guc.c:823 msgid "Query Tuning / Genetic Query Optimizer" msgstr "Настройка запросов / Генетический оптимизатор запросов" -#: utils/misc/guc.c:824 +#: utils/misc/guc.c:825 msgid "Query Tuning / Other Planner Options" msgstr "Настройка запросов / Другие параметры планировщика" -#: utils/misc/guc.c:826 +#: utils/misc/guc.c:827 msgid "Reporting and Logging / Where to Log" msgstr "Отчёты и протоколы / Куда записывать" -#: utils/misc/guc.c:828 +#: utils/misc/guc.c:829 msgid "Reporting and Logging / When to Log" msgstr "Отчёты и протоколы / Когда записывать" -#: utils/misc/guc.c:830 +#: utils/misc/guc.c:831 msgid "Reporting and Logging / What to Log" msgstr "Отчёты и протоколы / Что записывать" -#: utils/misc/guc.c:832 +#: utils/misc/guc.c:833 msgid "Reporting and Logging / Process Title" msgstr "Отчёты и протоколы / Заголовок процесса" -#: utils/misc/guc.c:834 +#: utils/misc/guc.c:835 msgid "Statistics / Monitoring" msgstr "Статистика / Мониторинг" -#: utils/misc/guc.c:836 +#: utils/misc/guc.c:837 msgid "Statistics / Cumulative Query and Index Statistics" msgstr "Статистика / Накопительная статистика по запросам и индексам" -#: utils/misc/guc.c:838 +#: utils/misc/guc.c:839 msgid "Autovacuum" msgstr "Автоочистка" -#: utils/misc/guc.c:840 +#: utils/misc/guc.c:841 msgid "Client Connection Defaults / Statement Behavior" msgstr "Параметры клиентских подключений по умолчанию / Поведение команд" -#: utils/misc/guc.c:842 +#: utils/misc/guc.c:843 msgid "Client Connection Defaults / Locale and Formatting" msgstr "" "Параметры клиентских подключений по умолчанию / Языковая среда и форматы" -#: utils/misc/guc.c:844 +#: utils/misc/guc.c:845 msgid "Client Connection Defaults / Shared Library Preloading" msgstr "" "Параметры клиентских подключений по умолчанию / Предзагрузка разделяемых " "библиотек" -#: utils/misc/guc.c:846 +#: utils/misc/guc.c:847 msgid "Client Connection Defaults / Other Defaults" msgstr "Параметры клиентских подключений по умолчанию / Другие параметры" -#: utils/misc/guc.c:848 +#: utils/misc/guc.c:849 msgid "Lock Management" msgstr "Управление блокировками" -#: utils/misc/guc.c:850 +#: utils/misc/guc.c:851 msgid "Version and Platform Compatibility / Previous PostgreSQL Versions" msgstr "Версия и совместимость платформ / Предыдущие версии PostgreSQL" -#: utils/misc/guc.c:852 +#: utils/misc/guc.c:853 msgid "Version and Platform Compatibility / Other Platforms and Clients" msgstr "Версия и совместимость платформ / Другие платформы и клиенты" -#: utils/misc/guc.c:854 +#: utils/misc/guc.c:855 msgid "Error Handling" msgstr "Обработка ошибок" -#: utils/misc/guc.c:856 +#: utils/misc/guc.c:857 msgid "Preset Options" msgstr "Предопределённые параметры" -#: utils/misc/guc.c:858 +#: utils/misc/guc.c:859 msgid "Customized Options" msgstr "Внесистемные параметры" -#: utils/misc/guc.c:860 +#: utils/misc/guc.c:861 msgid "Developer Options" msgstr "Параметры для разработчиков" -#: utils/misc/guc.c:918 +#: utils/misc/guc.c:919 msgid "" "Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\"." msgstr "" "Допустимые единицы измерения для этого параметра: \"B\", \"kB\", \"MB\", " "\"GB\" и \"TB\"." -#: utils/misc/guc.c:955 +#: utils/misc/guc.c:956 msgid "" "Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", " "and \"d\"." @@ -29597,91 +29633,91 @@ msgstr "" "Допустимые единицы измерения для этого параметра: \"us\", \"ms\", \"s\", " "\"min\", \"h\" и \"d\"." -#: utils/misc/guc.c:1017 +#: utils/misc/guc.c:1018 msgid "Enables the planner's use of sequential-scan plans." msgstr "" "Разрешает планировщику использовать планы последовательного сканирования." -#: utils/misc/guc.c:1027 +#: utils/misc/guc.c:1028 msgid "Enables the planner's use of index-scan plans." msgstr "Разрешает планировщику использовать планы сканирования по индексу." -#: utils/misc/guc.c:1037 +#: utils/misc/guc.c:1038 msgid "Enables the planner's use of index-only-scan plans." msgstr "Разрешает планировщику использовать планы сканирования только индекса." -#: utils/misc/guc.c:1047 +#: utils/misc/guc.c:1048 msgid "Enables the planner's use of bitmap-scan plans." msgstr "" "Разрешает планировщику использовать планы сканирования по битовой карте." -#: utils/misc/guc.c:1057 +#: utils/misc/guc.c:1058 msgid "Enables the planner's use of TID scan plans." msgstr "Разрешает планировщику использовать планы сканирования TID." -#: utils/misc/guc.c:1067 +#: utils/misc/guc.c:1068 msgid "Enables the planner's use of explicit sort steps." msgstr "Разрешает планировщику использовать шаги с явной сортировкой." -#: utils/misc/guc.c:1077 +#: utils/misc/guc.c:1078 msgid "Enables the planner's use of incremental sort steps." msgstr "" "Разрешает планировщику использовать шаги с инкрементальной сортировкой." -#: utils/misc/guc.c:1087 +#: utils/misc/guc.c:1088 msgid "Enables the planner's use of hashed aggregation plans." msgstr "Разрешает планировщику использовать планы агрегирования по хешу." -#: utils/misc/guc.c:1097 +#: utils/misc/guc.c:1098 msgid "Enables the planner's use of materialization." msgstr "Разрешает планировщику использовать материализацию." # well-spelled: мемоизацию -#: utils/misc/guc.c:1107 +#: utils/misc/guc.c:1108 msgid "Enables the planner's use of memoization." msgstr "Разрешает планировщику использовать мемоизацию." -#: utils/misc/guc.c:1117 +#: utils/misc/guc.c:1118 msgid "Enables the planner's use of nested-loop join plans." msgstr "" "Разрешает планировщику использовать планы соединения с вложенными циклами." -#: utils/misc/guc.c:1127 +#: utils/misc/guc.c:1128 msgid "Enables the planner's use of merge join plans." msgstr "Разрешает планировщику использовать планы соединения слиянием." -#: utils/misc/guc.c:1137 +#: utils/misc/guc.c:1138 msgid "Enables the planner's use of hash join plans." msgstr "Разрешает планировщику использовать планы соединения по хешу." -#: utils/misc/guc.c:1147 +#: utils/misc/guc.c:1148 msgid "Enables the planner's use of gather merge plans." msgstr "Разрешает планировщику использовать планы сбора слиянием." -#: utils/misc/guc.c:1157 +#: utils/misc/guc.c:1158 msgid "Enables partitionwise join." msgstr "Включает соединения с учётом секционирования." -#: utils/misc/guc.c:1167 +#: utils/misc/guc.c:1168 msgid "Enables partitionwise aggregation and grouping." msgstr "Включает агрегирование и группировку с учётом секционирования." -#: utils/misc/guc.c:1177 +#: utils/misc/guc.c:1178 msgid "Enables the planner's use of parallel append plans." msgstr "Разрешает планировщику использовать планы параллельного добавления." -#: utils/misc/guc.c:1187 +#: utils/misc/guc.c:1188 msgid "Enables the planner's use of parallel hash plans." msgstr "" "Разрешает планировщику использовать планы параллельного соединения по хешу." -#: utils/misc/guc.c:1197 +#: utils/misc/guc.c:1198 msgid "Enables plan-time and execution-time partition pruning." msgstr "" "Включает устранение секций во время планирования и во время выполнения " "запросов." -#: utils/misc/guc.c:1198 +#: utils/misc/guc.c:1199 msgid "" "Allows the query planner and executor to compare partition bounds to " "conditions in the query to determine which partitions must be scanned." @@ -29689,49 +29725,49 @@ msgstr "" "Разрешает планировщику и исполнителю запросов сопоставлять границы секций с " "условиями в запросе и выделять отдельные секции для сканирования." -#: utils/misc/guc.c:1209 +#: utils/misc/guc.c:1210 msgid "Enables the planner's use of async append plans." msgstr "Разрешает планировщику использовать планы асинхронного добавления." -#: utils/misc/guc.c:1219 +#: utils/misc/guc.c:1220 msgid "Enables genetic query optimization." msgstr "Включает генетическую оптимизацию запросов." -#: utils/misc/guc.c:1220 +#: utils/misc/guc.c:1221 msgid "This algorithm attempts to do planning without exhaustive searching." msgstr "Этот алгоритм пытается построить план без полного перебора." -#: utils/misc/guc.c:1231 +#: utils/misc/guc.c:1232 msgid "Shows whether the current user is a superuser." msgstr "Показывает, является ли текущий пользователь суперпользователем." -#: utils/misc/guc.c:1241 +#: utils/misc/guc.c:1242 msgid "Enables advertising the server via Bonjour." msgstr "Включает объявление сервера посредством Bonjour." -#: utils/misc/guc.c:1250 +#: utils/misc/guc.c:1251 msgid "Collects transaction commit time." msgstr "Записывает время фиксации транзакций." -#: utils/misc/guc.c:1259 +#: utils/misc/guc.c:1260 msgid "Enables SSL connections." msgstr "Разрешает SSL-подключения." -#: utils/misc/guc.c:1268 +#: utils/misc/guc.c:1269 msgid "Controls whether ssl_passphrase_command is called during server reload." msgstr "" "Определяет, будет ли вызываться ssl_passphrase_command при перезагрузке " "сервера." -#: utils/misc/guc.c:1277 +#: utils/misc/guc.c:1278 msgid "Give priority to server ciphersuite order." msgstr "Назначает более приоритетным набор шифров сервера." -#: utils/misc/guc.c:1286 +#: utils/misc/guc.c:1287 msgid "Forces synchronization of updates to disk." msgstr "Принудительная запись изменений на диск." -#: utils/misc/guc.c:1287 +#: utils/misc/guc.c:1288 msgid "" "The server will use the fsync() system call in several places to make sure " "that updates are physically written to disk. This ensures that a database " @@ -29742,11 +29778,11 @@ msgstr "" "обеспечивающую физическую запись данных на диск. Тем самым гарантируется, " "что кластер БД придёт в целостное состояние после отказа ОС или оборудования." -#: utils/misc/guc.c:1298 +#: utils/misc/guc.c:1299 msgid "Continues processing after a checksum failure." msgstr "Продолжает обработку при ошибке контрольной суммы." -#: utils/misc/guc.c:1299 +#: utils/misc/guc.c:1300 msgid "" "Detection of a checksum failure normally causes PostgreSQL to report an " "error, aborting the current transaction. Setting ignore_checksum_failure to " @@ -29760,11 +29796,11 @@ msgstr "" "что может привести к сбоям или другим серьёзным проблемам. Это имеет место, " "только если включён контроль целостности страниц." -#: utils/misc/guc.c:1313 +#: utils/misc/guc.c:1314 msgid "Continues processing past damaged page headers." msgstr "Продолжает обработку при повреждении заголовков страниц." -#: utils/misc/guc.c:1314 +#: utils/misc/guc.c:1315 msgid "" "Detection of a damaged page header normally causes PostgreSQL to report an " "error, aborting the current transaction. Setting zero_damaged_pages to true " @@ -29778,12 +29814,12 @@ msgstr "" "продолжит работу. Это приведёт к потере данных, а именно строк в " "повреждённой странице." -#: utils/misc/guc.c:1327 +#: utils/misc/guc.c:1328 msgid "Continues recovery after an invalid pages failure." msgstr "" "Продолжает восстановление после ошибок, связанных с неправильными страницами." -#: utils/misc/guc.c:1328 +#: utils/misc/guc.c:1329 msgid "" "Detection of WAL records having references to invalid pages during recovery " "causes PostgreSQL to raise a PANIC-level error, aborting the recovery. " @@ -29802,12 +29838,12 @@ msgstr "" "проблемам. Данный параметр действует только при восстановлении или в режиме " "резервного сервера." -#: utils/misc/guc.c:1346 +#: utils/misc/guc.c:1347 msgid "Writes full pages to WAL when first modified after a checkpoint." msgstr "" "Запись полных страниц в WAL при первом изменении после контрольной точки." -#: utils/misc/guc.c:1347 +#: utils/misc/guc.c:1348 msgid "" "A page write in process during an operating system crash might be only " "partially written to disk. During recovery, the row changes stored in WAL " @@ -29820,7 +29856,7 @@ msgstr "" "при первом изменении после контрольной точки, что позволяет полностью " "восстановить данные." -#: utils/misc/guc.c:1360 +#: utils/misc/guc.c:1361 msgid "" "Writes full pages to WAL when first modified after a checkpoint, even for a " "non-critical modification." @@ -29828,83 +29864,83 @@ msgstr "" "Запись полных страниц в WAL при первом изменении после контрольной точки, " "даже при некритическом изменении." -#: utils/misc/guc.c:1370 +#: utils/misc/guc.c:1371 msgid "Writes zeroes to new WAL files before first use." msgstr "Записывать нули в новые файлы WAL перед первым использованием." -#: utils/misc/guc.c:1380 +#: utils/misc/guc.c:1381 msgid "Recycles WAL files by renaming them." msgstr "Перерабатывать файлы WAL, производя переименование." -#: utils/misc/guc.c:1390 +#: utils/misc/guc.c:1391 msgid "Logs each checkpoint." msgstr "Протоколировать каждую контрольную точку." -#: utils/misc/guc.c:1399 +#: utils/misc/guc.c:1400 msgid "Logs each successful connection." msgstr "Протоколировать устанавливаемые соединения." -#: utils/misc/guc.c:1408 +#: utils/misc/guc.c:1409 msgid "Logs end of a session, including duration." msgstr "Протоколировать конец сеанса, отмечая длительность." -#: utils/misc/guc.c:1417 +#: utils/misc/guc.c:1418 msgid "Logs each replication command." msgstr "Протоколировать каждую команду репликации." -#: utils/misc/guc.c:1426 +#: utils/misc/guc.c:1427 msgid "Shows whether the running server has assertion checks enabled." msgstr "Показывает, включены ли проверки истинности на работающем сервере." -#: utils/misc/guc.c:1441 +#: utils/misc/guc.c:1442 msgid "Terminate session on any error." msgstr "Завершать сеансы при любой ошибке." -#: utils/misc/guc.c:1450 +#: utils/misc/guc.c:1451 msgid "Reinitialize server after backend crash." msgstr "Перезапускать систему БД при аварии серверного процесса." -#: utils/misc/guc.c:1459 +#: utils/misc/guc.c:1460 msgid "Remove temporary files after backend crash." msgstr "Удалять временные файлы после аварии обслуживающего процесса." -#: utils/misc/guc.c:1470 +#: utils/misc/guc.c:1471 msgid "Logs the duration of each completed SQL statement." msgstr "Протоколировать длительность каждого выполненного SQL-оператора." -#: utils/misc/guc.c:1479 +#: utils/misc/guc.c:1480 msgid "Logs each query's parse tree." msgstr "Протоколировать дерево разбора для каждого запроса." -#: utils/misc/guc.c:1488 +#: utils/misc/guc.c:1489 msgid "Logs each query's rewritten parse tree." msgstr "Протоколировать перезаписанное дерево разбора для каждого запроса." -#: utils/misc/guc.c:1497 +#: utils/misc/guc.c:1498 msgid "Logs each query's execution plan." msgstr "Протоколировать план выполнения каждого запроса." -#: utils/misc/guc.c:1506 +#: utils/misc/guc.c:1507 msgid "Indents parse and plan tree displays." msgstr "Отступы при отображении деревьев разбора и плана запросов." -#: utils/misc/guc.c:1515 +#: utils/misc/guc.c:1516 msgid "Writes parser performance statistics to the server log." msgstr "Запись статистики разбора запросов в протокол сервера." -#: utils/misc/guc.c:1524 +#: utils/misc/guc.c:1525 msgid "Writes planner performance statistics to the server log." msgstr "Запись статистики планирования в протокол сервера." -#: utils/misc/guc.c:1533 +#: utils/misc/guc.c:1534 msgid "Writes executor performance statistics to the server log." msgstr "Запись статистики выполнения запросов в протокол сервера." -#: utils/misc/guc.c:1542 +#: utils/misc/guc.c:1543 msgid "Writes cumulative performance statistics to the server log." msgstr "Запись общей статистики производительности в протокол сервера." -#: utils/misc/guc.c:1552 +#: utils/misc/guc.c:1553 msgid "" "Logs system resource usage statistics (memory and CPU) on various B-tree " "operations." @@ -29912,11 +29948,11 @@ msgstr "" "Фиксировать статистику использования системных ресурсов (памяти и " "процессора) при различных операциях с b-деревом." -#: utils/misc/guc.c:1564 +#: utils/misc/guc.c:1565 msgid "Collects information about executing commands." msgstr "Собирает информацию о выполняющихся командах." -#: utils/misc/guc.c:1565 +#: utils/misc/guc.c:1566 msgid "" "Enables the collection of information on the currently executing command of " "each session, along with the time at which that command began execution." @@ -29924,70 +29960,70 @@ msgstr "" "Включает сбор информации о командах, выполняющихся во всех сеансах, а также " "время запуска команды." -#: utils/misc/guc.c:1575 +#: utils/misc/guc.c:1576 msgid "Collects statistics on database activity." msgstr "Собирает статистику активности в БД." -#: utils/misc/guc.c:1584 +#: utils/misc/guc.c:1585 msgid "Collects timing statistics for database I/O activity." msgstr "Собирает статистику по времени активности ввода/вывода." -#: utils/misc/guc.c:1593 +#: utils/misc/guc.c:1594 msgid "Collects timing statistics for WAL I/O activity." msgstr "Собирает статистику по времени активности ввода/вывода WAL." -#: utils/misc/guc.c:1603 +#: utils/misc/guc.c:1604 msgid "Updates the process title to show the active SQL command." msgstr "Выводит в заголовок процесса активную SQL-команду." -#: utils/misc/guc.c:1604 +#: utils/misc/guc.c:1605 msgid "" "Enables updating of the process title every time a new SQL command is " "received by the server." msgstr "Отражает в заголовке процесса каждую SQL-команду, поступающую серверу." -#: utils/misc/guc.c:1617 +#: utils/misc/guc.c:1618 msgid "Starts the autovacuum subprocess." msgstr "Запускает подпроцесс автоочистки." -#: utils/misc/guc.c:1627 +#: utils/misc/guc.c:1628 msgid "Generates debugging output for LISTEN and NOTIFY." msgstr "Генерирует отладочные сообщения для LISTEN и NOTIFY." -#: utils/misc/guc.c:1639 +#: utils/misc/guc.c:1640 msgid "Emits information about lock usage." msgstr "Выдавать информацию о применяемых блокировках." -#: utils/misc/guc.c:1649 +#: utils/misc/guc.c:1650 msgid "Emits information about user lock usage." msgstr "Выдавать информацию о применяемых пользовательских блокировках." -#: utils/misc/guc.c:1659 +#: utils/misc/guc.c:1660 msgid "Emits information about lightweight lock usage." msgstr "Выдавать информацию о применяемых лёгких блокировках." -#: utils/misc/guc.c:1669 +#: utils/misc/guc.c:1670 msgid "" "Dumps information about all current locks when a deadlock timeout occurs." msgstr "" "Выводить информацию обо всех текущих блокировках в случае тайм-аута при " "взаимоблокировке." -#: utils/misc/guc.c:1681 +#: utils/misc/guc.c:1682 msgid "Logs long lock waits." msgstr "Протоколировать длительные ожидания в блокировках." -#: utils/misc/guc.c:1690 +#: utils/misc/guc.c:1691 msgid "Logs standby recovery conflict waits." msgstr "" "Протоколировать события ожидания разрешения конфликтов при восстановлении на " "ведомом." -#: utils/misc/guc.c:1699 +#: utils/misc/guc.c:1700 msgid "Logs the host name in the connection logs." msgstr "Записывать имя узла в протоколы подключений." -#: utils/misc/guc.c:1700 +#: utils/misc/guc.c:1701 msgid "" "By default, connection logs only show the IP address of the connecting host. " "If you want them to show the host name you can turn this on, but depending " @@ -29999,11 +30035,11 @@ msgstr "" "параметр, но учтите, что это может значительно повлиять на " "производительность." -#: utils/misc/guc.c:1711 +#: utils/misc/guc.c:1712 msgid "Treats \"expr=NULL\" as \"expr IS NULL\"." msgstr "Обрабатывать \"expr=NULL\" как \"expr IS NULL\"." -#: utils/misc/guc.c:1712 +#: utils/misc/guc.c:1713 msgid "" "When turned on, expressions of the form expr = NULL (or NULL = expr) are " "treated as expr IS NULL, that is, they return true if expr evaluates to the " @@ -30015,25 +30051,25 @@ msgstr "" "совпадает с NULL, и false в противном случае. По правилам expr = NULL всегда " "должно возвращать null (неопределённость)." -#: utils/misc/guc.c:1724 +#: utils/misc/guc.c:1725 msgid "Enables per-database user names." msgstr "Включает связывание имён пользователей с базами данных." -#: utils/misc/guc.c:1733 +#: utils/misc/guc.c:1734 msgid "Sets the default read-only status of new transactions." msgstr "" "Устанавливает режим \"только чтение\" по умолчанию для новых транзакций." -#: utils/misc/guc.c:1743 +#: utils/misc/guc.c:1744 msgid "Sets the current transaction's read-only status." msgstr "Устанавливает режим \"только чтение\" для текущей транзакции." -#: utils/misc/guc.c:1753 +#: utils/misc/guc.c:1754 msgid "Sets the default deferrable status of new transactions." msgstr "" "Устанавливает режим отложенного выполнения по умолчанию для новых транзакций." -#: utils/misc/guc.c:1762 +#: utils/misc/guc.c:1763 msgid "" "Whether to defer a read-only serializable transaction until it can be " "executed with no possible serialization failures." @@ -30041,26 +30077,26 @@ msgstr "" "Определяет, откладывать ли сериализуемую транзакцию \"только чтение\" до " "момента, когда сбой сериализации будет исключён." -#: utils/misc/guc.c:1772 +#: utils/misc/guc.c:1773 msgid "Enable row security." msgstr "Включает защиту на уровне строк." -#: utils/misc/guc.c:1773 +#: utils/misc/guc.c:1774 msgid "When enabled, row security will be applied to all users." msgstr "" "Когда включена, защита на уровне строк распространяется на всех " "пользователей." -#: utils/misc/guc.c:1781 +#: utils/misc/guc.c:1782 msgid "Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE." msgstr "" "Проверять тело подпрограмм в момент CREATE FUNCTION и CREATE PROCEDURE." -#: utils/misc/guc.c:1790 +#: utils/misc/guc.c:1791 msgid "Enable input of NULL elements in arrays." msgstr "Разрешать ввод элементов NULL в массивах." -#: utils/misc/guc.c:1791 +#: utils/misc/guc.c:1792 msgid "" "When turned on, unquoted NULL in an array input value means a null value; " "otherwise it is taken literally." @@ -30068,73 +30104,73 @@ msgstr "" "Когда этот параметр включён, NULL без кавычек при вводе в массив " "воспринимается как значение NULL, иначе — как строка." -#: utils/misc/guc.c:1807 +#: utils/misc/guc.c:1808 msgid "WITH OIDS is no longer supported; this can only be false." msgstr "" "WITH OIDS более не поддерживается; единственное допустимое значение — false." -#: utils/misc/guc.c:1817 +#: utils/misc/guc.c:1818 msgid "" "Start a subprocess to capture stderr output and/or csvlogs into log files." msgstr "" "Запускает подпроцесс для чтения stderr и/или csv-файлов и записи в файлы " "протоколов." -#: utils/misc/guc.c:1826 +#: utils/misc/guc.c:1827 msgid "Truncate existing log files of same name during log rotation." msgstr "" "Очищать уже существующий файл с тем же именем при прокручивании протокола." -#: utils/misc/guc.c:1837 +#: utils/misc/guc.c:1838 msgid "Emit information about resource usage in sorting." msgstr "Выдавать сведения об использовании ресурсов при сортировке." -#: utils/misc/guc.c:1851 +#: utils/misc/guc.c:1852 msgid "Generate debugging output for synchronized scanning." msgstr "Выдавать отладочные сообщения для синхронного сканирования." -#: utils/misc/guc.c:1866 +#: utils/misc/guc.c:1867 msgid "Enable bounded sorting using heap sort." msgstr "" "Разрешить ограниченную сортировку с применением пирамидальной сортировки." -#: utils/misc/guc.c:1879 +#: utils/misc/guc.c:1880 msgid "Emit WAL-related debugging output." msgstr "Выдавать отладочные сообщения, связанные с WAL." -#: utils/misc/guc.c:1891 +#: utils/misc/guc.c:1892 msgid "Shows whether datetimes are integer based." msgstr "Показывает, является ли реализация даты/времени целочисленной." -#: utils/misc/guc.c:1902 +#: utils/misc/guc.c:1903 msgid "" "Sets whether Kerberos and GSSAPI user names should be treated as case-" "insensitive." msgstr "" "Включает регистронезависимую обработку имён пользователей Kerberos и GSSAPI." -#: utils/misc/guc.c:1912 +#: utils/misc/guc.c:1913 msgid "Warn about backslash escapes in ordinary string literals." msgstr "Предупреждения о спецсимволах '\\' в обычных строках." -#: utils/misc/guc.c:1922 +#: utils/misc/guc.c:1923 msgid "Causes '...' strings to treat backslashes literally." msgstr "Включает буквальную обработку символов '\\' в строках '...'." -#: utils/misc/guc.c:1933 +#: utils/misc/guc.c:1934 msgid "Enable synchronized sequential scans." msgstr "Включить синхронизацию последовательного сканирования." -#: utils/misc/guc.c:1943 +#: utils/misc/guc.c:1944 msgid "Sets whether to include or exclude transaction with recovery target." msgstr "Определяет, включать ли транзакцию в целевую точку восстановления." -#: utils/misc/guc.c:1953 +#: utils/misc/guc.c:1954 msgid "Allows connections and queries during recovery." msgstr "" "Разрешает принимать новые подключения и запросы в процессе восстановления." -#: utils/misc/guc.c:1963 +#: utils/misc/guc.c:1964 msgid "" "Allows feedback from a hot standby to the primary that will avoid query " "conflicts." @@ -30142,19 +30178,19 @@ msgstr "" "Разрешает обратную связь сервера горячего резерва с основным для " "предотвращения конфликтов при длительных запросах." -#: utils/misc/guc.c:1973 +#: utils/misc/guc.c:1974 msgid "Shows whether hot standby is currently active." msgstr "Показывает, активен ли в настоящий момент режим горячего резерва." -#: utils/misc/guc.c:1984 +#: utils/misc/guc.c:1985 msgid "Allows modifications of the structure of system tables." msgstr "Разрешает модифицировать структуру системных таблиц." -#: utils/misc/guc.c:1995 +#: utils/misc/guc.c:1996 msgid "Disables reading from system indexes." msgstr "Запрещает использование системных индексов." -#: utils/misc/guc.c:1996 +#: utils/misc/guc.c:1997 msgid "" "It does not prevent updating the indexes, so it is safe to use. The worst " "consequence is slowness." @@ -30162,20 +30198,20 @@ msgstr "" "При этом индексы продолжают обновляться, так что данное поведение безопасно. " "Худшее следствие - замедление." -#: utils/misc/guc.c:2007 +#: utils/misc/guc.c:2008 msgid "Allows tablespaces directly inside pg_tblspc, for testing." msgstr "" "Позволяет размещать табличные пространства внутри pg_tblspc; предназначается " "для тестирования." -#: utils/misc/guc.c:2018 +#: utils/misc/guc.c:2019 msgid "" "Enables backward compatibility mode for privilege checks on large objects." msgstr "" "Включает режим обратной совместимости при проверке привилегий для больших " "объектов." -#: utils/misc/guc.c:2019 +#: utils/misc/guc.c:2020 msgid "" "Skips privilege checks when reading or modifying large objects, for " "compatibility with PostgreSQL releases prior to 9.0." @@ -30183,66 +30219,66 @@ msgstr "" "Пропускает проверки привилегий при чтении или изменении больших объектов " "(для совместимости с версиями PostgreSQL до 9.0)." -#: utils/misc/guc.c:2029 +#: utils/misc/guc.c:2030 msgid "When generating SQL fragments, quote all identifiers." msgstr "" "Генерируя SQL-фрагменты, заключать все идентификаторы в двойные кавычки." -#: utils/misc/guc.c:2039 +#: utils/misc/guc.c:2040 msgid "Shows whether data checksums are turned on for this cluster." msgstr "Показывает, включён ли в этом кластере контроль целостности данных." -#: utils/misc/guc.c:2050 +#: utils/misc/guc.c:2051 msgid "Add sequence number to syslog messages to avoid duplicate suppression." msgstr "" "Добавлять последовательный номер в сообщения syslog во избежание подавления " "повторов." -#: utils/misc/guc.c:2060 +#: utils/misc/guc.c:2061 msgid "Split messages sent to syslog by lines and to fit into 1024 bytes." msgstr "" "Разбивать сообщения, передаваемые в syslog, по строкам размером не больше " "1024 байт." -#: utils/misc/guc.c:2070 +#: utils/misc/guc.c:2071 msgid "Controls whether Gather and Gather Merge also run subplans." msgstr "" "Определяет, будут ли узлы сбора и сбора слиянием также выполнять подпланы." -#: utils/misc/guc.c:2071 +#: utils/misc/guc.c:2072 msgid "Should gather nodes also run subplans or just gather tuples?" msgstr "" "Должны ли узлы сбора также выполнять подпланы или только собирать кортежи?" -#: utils/misc/guc.c:2081 +#: utils/misc/guc.c:2082 msgid "Allow JIT compilation." msgstr "Включить JIT-компиляцию." -#: utils/misc/guc.c:2092 +#: utils/misc/guc.c:2093 msgid "Register JIT-compiled functions with debugger." msgstr "Регистрировать JIT-скомпилированные функции в отладчике." -#: utils/misc/guc.c:2109 +#: utils/misc/guc.c:2110 msgid "Write out LLVM bitcode to facilitate JIT debugging." msgstr "Выводить битовый код LLVM для облегчения отладки JIT." -#: utils/misc/guc.c:2120 +#: utils/misc/guc.c:2121 msgid "Allow JIT compilation of expressions." msgstr "Включить JIT-компиляцию выражений." -#: utils/misc/guc.c:2131 +#: utils/misc/guc.c:2132 msgid "Register JIT-compiled functions with perf profiler." msgstr "Регистрировать JIT-компилируемые функции в профилировщике perf." -#: utils/misc/guc.c:2148 +#: utils/misc/guc.c:2149 msgid "Allow JIT compilation of tuple deforming." msgstr "Разрешить JIT-компиляцию кода преобразования кортежей." -#: utils/misc/guc.c:2159 +#: utils/misc/guc.c:2160 msgid "Whether to continue running after a failure to sync data files." msgstr "Продолжать работу после ошибки при сохранении файлов данных на диске." -#: utils/misc/guc.c:2168 +#: utils/misc/guc.c:2169 msgid "" "Sets whether a WAL receiver should create a temporary replication slot if no " "permanent slot is configured." @@ -30250,28 +30286,28 @@ msgstr "" "Определяет, должен ли приёмник WAL создавать временный слот репликации, если " "не настроен постоянный слот." -#: utils/misc/guc.c:2186 +#: utils/misc/guc.c:2187 msgid "" "Sets the amount of time to wait before forcing a switch to the next WAL file." msgstr "" "Задаёт время задержки перед принудительным переключением на следующий файл " "WAL." -#: utils/misc/guc.c:2197 +#: utils/misc/guc.c:2198 msgid "" "Sets the amount of time to wait after authentication on connection startup." msgstr "" "Задаёт время ожидания после аутентификации при установлении соединения." -#: utils/misc/guc.c:2199 utils/misc/guc.c:2820 +#: utils/misc/guc.c:2200 utils/misc/guc.c:2821 msgid "This allows attaching a debugger to the process." msgstr "Это позволяет подключить к процессу отладчик." -#: utils/misc/guc.c:2208 +#: utils/misc/guc.c:2209 msgid "Sets the default statistics target." msgstr "Устанавливает ориентир статистики по умолчанию." -#: utils/misc/guc.c:2209 +#: utils/misc/guc.c:2210 msgid "" "This applies to table columns that have not had a column-specific target set " "via ALTER TABLE SET STATISTICS." @@ -30279,13 +30315,13 @@ msgstr "" "Это значение распространяется на столбцы таблицы, для которых ориентир " "статистики не задан явно через ALTER TABLE SET STATISTICS." -#: utils/misc/guc.c:2218 +#: utils/misc/guc.c:2219 msgid "Sets the FROM-list size beyond which subqueries are not collapsed." msgstr "" "Задаёт предел для списка FROM, при превышении которого подзапросы не " "сворачиваются." -#: utils/misc/guc.c:2220 +#: utils/misc/guc.c:2221 msgid "" "The planner will merge subqueries into upper queries if the resulting FROM " "list would have no more than this many items." @@ -30293,13 +30329,13 @@ msgstr "" "Планировщик объединит вложенные запросы с внешними, если в полученном списке " "FROM будет не больше заданного числа элементов." -#: utils/misc/guc.c:2231 +#: utils/misc/guc.c:2232 msgid "Sets the FROM-list size beyond which JOIN constructs are not flattened." msgstr "" "Задаёт предел для списка FROM, при превышении которого конструкции JOIN " "сохраняются." -#: utils/misc/guc.c:2233 +#: utils/misc/guc.c:2234 msgid "" "The planner will flatten explicit JOIN constructs into lists of FROM items " "whenever a list of no more than this many items would result." @@ -30307,34 +30343,34 @@ msgstr "" "Планировщик будет сносить явные конструкции JOIN в списки FROM, пока в " "результирующем списке не больше заданного числа элементов." -#: utils/misc/guc.c:2244 +#: utils/misc/guc.c:2245 msgid "Sets the threshold of FROM items beyond which GEQO is used." msgstr "" "Задаёт предел для списка FROM, при превышении которого применяется GEQO." -#: utils/misc/guc.c:2254 +#: utils/misc/guc.c:2255 msgid "GEQO: effort is used to set the default for other GEQO parameters." msgstr "" "GEQO: оценка усилий для планирования, задающая значения по умолчанию для " "других параметров GEQO." -#: utils/misc/guc.c:2264 +#: utils/misc/guc.c:2265 msgid "GEQO: number of individuals in the population." msgstr "GEQO: число особей в популяции." -#: utils/misc/guc.c:2265 utils/misc/guc.c:2275 +#: utils/misc/guc.c:2266 utils/misc/guc.c:2276 msgid "Zero selects a suitable default value." msgstr "При нуле выбирается подходящее значение по умолчанию." -#: utils/misc/guc.c:2274 +#: utils/misc/guc.c:2275 msgid "GEQO: number of iterations of the algorithm." msgstr "GEQO: число итераций алгоритма." -#: utils/misc/guc.c:2286 +#: utils/misc/guc.c:2287 msgid "Sets the time to wait on a lock before checking for deadlock." msgstr "Задаёт интервал ожидания в блокировке до проверки на взаимоблокировку." -#: utils/misc/guc.c:2297 +#: utils/misc/guc.c:2298 msgid "" "Sets the maximum delay before canceling queries when a hot standby server is " "processing archived WAL data." @@ -30342,7 +30378,7 @@ msgstr "" "Задаёт максимальную задержку до отмены запроса, когда сервер горячего " "резерва обрабатывает данные WAL из архива." -#: utils/misc/guc.c:2308 +#: utils/misc/guc.c:2309 msgid "" "Sets the maximum delay before canceling queries when a hot standby server is " "processing streamed WAL data." @@ -30350,13 +30386,13 @@ msgstr "" "Задаёт максимальную задержку до отмены запроса, когда сервер горячего " "резерва обрабатывает данные WAL из потока." -#: utils/misc/guc.c:2319 +#: utils/misc/guc.c:2320 msgid "Sets the minimum delay for applying changes during recovery." msgstr "" "Задаёт минимальную задержку для применения изменений в процессе " "восстановления." -#: utils/misc/guc.c:2330 +#: utils/misc/guc.c:2331 msgid "" "Sets the maximum interval between WAL receiver status reports to the sending " "server." @@ -30364,29 +30400,29 @@ msgstr "" "Задаёт максимальный интервал между отчётами о состоянии приёмника WAL, " "отправляемыми передающему серверу." -#: utils/misc/guc.c:2341 +#: utils/misc/guc.c:2342 msgid "Sets the maximum wait time to receive data from the sending server." msgstr "" "Задаёт предельное время ожидания для получения данных от передающего сервера." -#: utils/misc/guc.c:2352 +#: utils/misc/guc.c:2353 msgid "Sets the maximum number of concurrent connections." msgstr "Задаёт максимально возможное число подключений." -#: utils/misc/guc.c:2363 +#: utils/misc/guc.c:2364 msgid "Sets the number of connection slots reserved for superusers." msgstr "" "Определяет, сколько слотов подключений забронировано для суперпользователей." -#: utils/misc/guc.c:2373 +#: utils/misc/guc.c:2374 msgid "Amount of dynamic shared memory reserved at startup." msgstr "Объём динамической разделяемой памяти, резервируемый при запуске." -#: utils/misc/guc.c:2388 +#: utils/misc/guc.c:2389 msgid "Sets the number of shared memory buffers used by the server." msgstr "Задаёт количество буферов в разделяемой памяти, используемых сервером." -#: utils/misc/guc.c:2399 +#: utils/misc/guc.c:2400 msgid "" "Shows the size of the server's main shared memory area (rounded up to the " "nearest MB)." @@ -30394,29 +30430,29 @@ msgstr "" "Показывает объём основной области общей памяти сервера (округляется до " "ближайшего значения в мегабайтах)." -#: utils/misc/guc.c:2410 +#: utils/misc/guc.c:2411 msgid "Shows the number of huge pages needed for the main shared memory area." msgstr "" "Показывает количество огромных страниц, необходимое для основной области " "общей памяти." -#: utils/misc/guc.c:2411 +#: utils/misc/guc.c:2412 msgid "-1 indicates that the value could not be determined." msgstr "Значение -1 показывает, что определить это количество не удалось." -#: utils/misc/guc.c:2421 +#: utils/misc/guc.c:2422 msgid "Sets the maximum number of temporary buffers used by each session." msgstr "Задаёт предельное число временных буферов на один сеанс." -#: utils/misc/guc.c:2432 +#: utils/misc/guc.c:2433 msgid "Sets the TCP port the server listens on." msgstr "Задаёт TCP-порт для работы сервера." -#: utils/misc/guc.c:2442 +#: utils/misc/guc.c:2443 msgid "Sets the access permissions of the Unix-domain socket." msgstr "Задаёт права доступа для Unix-сокета." -#: utils/misc/guc.c:2443 +#: utils/misc/guc.c:2444 msgid "" "Unix-domain sockets use the usual Unix file system permission set. The " "parameter value is expected to be a numeric mode specification in the form " @@ -30428,11 +30464,11 @@ msgstr "" "воспринимаемом системными функциями chmod и umask. (Чтобы использовать " "привычный восьмеричный формат, добавьте в начало ноль (0).)" -#: utils/misc/guc.c:2457 +#: utils/misc/guc.c:2458 msgid "Sets the file permissions for log files." msgstr "Задаёт права доступа к файлам протоколов." -#: utils/misc/guc.c:2458 +#: utils/misc/guc.c:2459 msgid "" "The parameter value is expected to be a numeric mode specification in the " "form accepted by the chmod and umask system calls. (To use the customary " @@ -30442,11 +30478,11 @@ msgstr "" "функциями chmod и umask. (Чтобы использовать привычный восьмеричный формат, " "добавьте в начало ноль (0).)" -#: utils/misc/guc.c:2472 +#: utils/misc/guc.c:2473 msgid "Shows the mode of the data directory." msgstr "Показывает режим каталога данных." -#: utils/misc/guc.c:2473 +#: utils/misc/guc.c:2474 msgid "" "The parameter value is a numeric mode specification in the form accepted by " "the chmod and umask system calls. (To use the customary octal format the " @@ -30456,11 +30492,11 @@ msgstr "" "функциями chmod и umask. (Чтобы использовать привычный восьмеричный формат, " "добавьте в начало ноль (0).)" -#: utils/misc/guc.c:2486 +#: utils/misc/guc.c:2487 msgid "Sets the maximum memory to be used for query workspaces." msgstr "Задаёт предельный объём памяти для рабочих пространств запросов." -#: utils/misc/guc.c:2487 +#: utils/misc/guc.c:2488 msgid "" "This much memory can be used by each internal sort operation and hash table " "before switching to temporary disk files." @@ -30468,19 +30504,19 @@ msgstr "" "Такой объём памяти может использоваться каждой внутренней операцией " "сортировки и таблицей хешей до переключения на временные файлы на диске." -#: utils/misc/guc.c:2499 +#: utils/misc/guc.c:2500 msgid "Sets the maximum memory to be used for maintenance operations." msgstr "Задаёт предельный объём памяти для операций по обслуживанию." -#: utils/misc/guc.c:2500 +#: utils/misc/guc.c:2501 msgid "This includes operations such as VACUUM and CREATE INDEX." msgstr "Подразумеваются в частности операции VACUUM и CREATE INDEX." -#: utils/misc/guc.c:2510 +#: utils/misc/guc.c:2511 msgid "Sets the maximum memory to be used for logical decoding." msgstr "Задаёт предельный объём памяти для логического декодирования." -#: utils/misc/guc.c:2511 +#: utils/misc/guc.c:2512 msgid "" "This much memory can be used by each internal reorder buffer before spilling " "to disk." @@ -30488,85 +30524,85 @@ msgstr "" "Такой объём памяти может использоваться каждым внутренним буфером " "пересортировки до вымещения данных на диск." -#: utils/misc/guc.c:2527 +#: utils/misc/guc.c:2528 msgid "Sets the maximum stack depth, in kilobytes." msgstr "Задаёт максимальную глубину стека (в КБ)." -#: utils/misc/guc.c:2538 +#: utils/misc/guc.c:2539 msgid "Limits the total size of all temporary files used by each process." msgstr "" "Ограничивает общий размер всех временных файлов, доступный для каждого " "процесса." -#: utils/misc/guc.c:2539 +#: utils/misc/guc.c:2540 msgid "-1 means no limit." msgstr "-1 отключает ограничение." -#: utils/misc/guc.c:2549 +#: utils/misc/guc.c:2550 msgid "Vacuum cost for a page found in the buffer cache." msgstr "Стоимость очистки для страницы, найденной в кеше." -#: utils/misc/guc.c:2559 +#: utils/misc/guc.c:2560 msgid "Vacuum cost for a page not found in the buffer cache." msgstr "Стоимость очистки для страницы, не найденной в кеше." -#: utils/misc/guc.c:2569 +#: utils/misc/guc.c:2570 msgid "Vacuum cost for a page dirtied by vacuum." msgstr "Стоимость очистки для страницы, которая не была \"грязной\"." -#: utils/misc/guc.c:2579 +#: utils/misc/guc.c:2580 msgid "Vacuum cost amount available before napping." msgstr "Суммарная стоимость очистки, при которой нужна передышка." -#: utils/misc/guc.c:2589 +#: utils/misc/guc.c:2590 msgid "Vacuum cost amount available before napping, for autovacuum." msgstr "" "Суммарная стоимость очистки, при которой нужна передышка, для автоочистки." -#: utils/misc/guc.c:2599 +#: utils/misc/guc.c:2600 msgid "" "Sets the maximum number of simultaneously open files for each server process." msgstr "" "Задаёт предельное число одновременно открытых файлов для каждого серверного " "процесса." -#: utils/misc/guc.c:2612 +#: utils/misc/guc.c:2613 msgid "Sets the maximum number of simultaneously prepared transactions." msgstr "Задаёт предельное число одновременно подготовленных транзакций." -#: utils/misc/guc.c:2623 +#: utils/misc/guc.c:2624 msgid "Sets the minimum OID of tables for tracking locks." msgstr "Задаёт минимальный OID таблиц, для которых отслеживаются блокировки." -#: utils/misc/guc.c:2624 +#: utils/misc/guc.c:2625 msgid "Is used to avoid output on system tables." msgstr "Применяется для игнорирования системных таблиц." -#: utils/misc/guc.c:2633 +#: utils/misc/guc.c:2634 msgid "Sets the OID of the table with unconditionally lock tracing." msgstr "Задаёт OID таблицы для безусловного отслеживания блокировок." -#: utils/misc/guc.c:2645 +#: utils/misc/guc.c:2646 msgid "Sets the maximum allowed duration of any statement." msgstr "Задаёт предельную длительность для любого оператора." -#: utils/misc/guc.c:2646 utils/misc/guc.c:2657 utils/misc/guc.c:2668 -#: utils/misc/guc.c:2679 +#: utils/misc/guc.c:2647 utils/misc/guc.c:2658 utils/misc/guc.c:2669 +#: utils/misc/guc.c:2680 msgid "A value of 0 turns off the timeout." msgstr "Нулевое значение отключает тайм-аут." -#: utils/misc/guc.c:2656 +#: utils/misc/guc.c:2657 msgid "Sets the maximum allowed duration of any wait for a lock." msgstr "Задаёт максимальную продолжительность ожидания блокировок." -#: utils/misc/guc.c:2667 +#: utils/misc/guc.c:2668 msgid "" "Sets the maximum allowed idle time between queries, when in a transaction." msgstr "" "Задаёт предельно допустимую длительность простоя между запросами в " "транзакции." -#: utils/misc/guc.c:2678 +#: utils/misc/guc.c:2679 msgid "" "Sets the maximum allowed idle time between queries, when not in a " "transaction." @@ -30574,30 +30610,30 @@ msgstr "" "Задаёт предельно допустимую длительность простоя между запросами вне " "транзакций." -#: utils/misc/guc.c:2689 +#: utils/misc/guc.c:2690 msgid "Minimum age at which VACUUM should freeze a table row." msgstr "" "Минимальный возраст строк таблицы, при котором VACUUM может их заморозить." -#: utils/misc/guc.c:2699 +#: utils/misc/guc.c:2700 msgid "Age at which VACUUM should scan whole table to freeze tuples." msgstr "" "Возраст, при котором VACUUM должен сканировать всю таблицу с целью " "заморозить кортежи." -#: utils/misc/guc.c:2709 +#: utils/misc/guc.c:2710 msgid "Minimum age at which VACUUM should freeze a MultiXactId in a table row." msgstr "" "Минимальный возраст, при котором VACUUM будет замораживать MultiXactId в " "строке таблицы." -#: utils/misc/guc.c:2719 +#: utils/misc/guc.c:2720 msgid "Multixact age at which VACUUM should scan whole table to freeze tuples." msgstr "" "Возраст multixact, при котором VACUUM должен сканировать всю таблицу с целью " "заморозить кортежи." -#: utils/misc/guc.c:2729 +#: utils/misc/guc.c:2730 msgid "" "Number of transactions by which VACUUM and HOT cleanup should be deferred, " "if any." @@ -30605,14 +30641,14 @@ msgstr "" "Определяет, на сколько транзакций следует задержать старые строки, выполняя " "VACUUM или \"горячее\" обновление." -#: utils/misc/guc.c:2738 +#: utils/misc/guc.c:2739 msgid "" "Age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "" "Возраст, при котором VACUUM должен включить защиту от зацикливания во " "избежание отказа." -#: utils/misc/guc.c:2747 +#: utils/misc/guc.c:2748 msgid "" "Multixact age at which VACUUM should trigger failsafe to avoid a wraparound " "outage." @@ -30620,11 +30656,11 @@ msgstr "" "Возраст мультитранзакций, при котором VACUUM должен включить защиту от " "зацикливания во избежание отказа." -#: utils/misc/guc.c:2760 +#: utils/misc/guc.c:2761 msgid "Sets the maximum number of locks per transaction." msgstr "Задаёт предельное число блокировок на транзакцию." -#: utils/misc/guc.c:2761 +#: utils/misc/guc.c:2762 msgid "" "The shared lock table is sized on the assumption that at most " "max_locks_per_transaction * max_connections distinct objects will need to be " @@ -30634,11 +30670,11 @@ msgstr "" "один момент времени потребуется заблокировать не больше чем " "max_locks_per_transaction * max_connections различных объектов." -#: utils/misc/guc.c:2772 +#: utils/misc/guc.c:2773 msgid "Sets the maximum number of predicate locks per transaction." msgstr "Задаёт предельное число предикатных блокировок на транзакцию." -#: utils/misc/guc.c:2773 +#: utils/misc/guc.c:2774 msgid "" "The shared predicate lock table is sized on the assumption that at most " "max_pred_locks_per_transaction * max_connections distinct objects will need " @@ -30648,14 +30684,14 @@ msgstr "" "предположения, что в один момент времени потребуется заблокировать не больше " "чем max_pred_locks_per_transaction * max_connections различных объектов." -#: utils/misc/guc.c:2784 +#: utils/misc/guc.c:2785 msgid "" "Sets the maximum number of predicate-locked pages and tuples per relation." msgstr "" "Задаёт максимальное число страниц и кортежей, блокируемых предикатными " "блокировками в одном отношении." -#: utils/misc/guc.c:2785 +#: utils/misc/guc.c:2786 msgid "" "If more than this total of pages and tuples in the same relation are locked " "by a connection, those locks are replaced by a relation-level lock." @@ -30663,13 +30699,13 @@ msgstr "" "Если одним соединением блокируется больше этого общего числа страниц и " "кортежей, эти блокировки заменяются блокировкой на уровне отношения." -#: utils/misc/guc.c:2795 +#: utils/misc/guc.c:2796 msgid "Sets the maximum number of predicate-locked tuples per page." msgstr "" "Задаёт максимальное число кортежей, блокируемых предикатными блокировками в " "одной странице." -#: utils/misc/guc.c:2796 +#: utils/misc/guc.c:2797 msgid "" "If more than this number of tuples on the same page are locked by a " "connection, those locks are replaced by a page-level lock." @@ -30677,45 +30713,45 @@ msgstr "" "Если одним соединением блокируется больше этого числа кортежей на одной " "странице, эти блокировки заменяются блокировкой на уровне страницы." -#: utils/misc/guc.c:2806 +#: utils/misc/guc.c:2807 msgid "Sets the maximum allowed time to complete client authentication." msgstr "Ограничивает время, за которое клиент должен пройти аутентификацию." -#: utils/misc/guc.c:2818 +#: utils/misc/guc.c:2819 msgid "" "Sets the amount of time to wait before authentication on connection startup." msgstr "Задаёт время ожидания до аутентификации при установлении соединения." -#: utils/misc/guc.c:2830 +#: utils/misc/guc.c:2831 msgid "Buffer size for reading ahead in the WAL during recovery." msgstr "Размер буфера для упреждающего чтения WAL во время восстановления." -#: utils/misc/guc.c:2831 +#: utils/misc/guc.c:2832 msgid "" "Maximum distance to read ahead in the WAL to prefetch referenced data blocks." msgstr "" "Максимальный объём WAL, прочитываемый наперёд для осуществления предвыборки " "изменяемых блоков данных." -#: utils/misc/guc.c:2841 +#: utils/misc/guc.c:2842 msgid "Sets the size of WAL files held for standby servers." msgstr "" "Определяет предельный объём файлов WAL, сохраняемых для резервных серверов." -#: utils/misc/guc.c:2852 +#: utils/misc/guc.c:2853 msgid "Sets the minimum size to shrink the WAL to." msgstr "Задаёт минимальный размер WAL при сжатии." -#: utils/misc/guc.c:2864 +#: utils/misc/guc.c:2865 msgid "Sets the WAL size that triggers a checkpoint." msgstr "Задаёт размер WAL, при котором инициируется контрольная точка." -#: utils/misc/guc.c:2876 +#: utils/misc/guc.c:2877 msgid "Sets the maximum time between automatic WAL checkpoints." msgstr "" "Задаёт максимальное время между автоматическими контрольными точками WAL." -#: utils/misc/guc.c:2887 +#: utils/misc/guc.c:2888 msgid "" "Sets the maximum time before warning if checkpoints triggered by WAL volume " "happen too frequently." @@ -30723,7 +30759,7 @@ msgstr "" "Задаёт максимальный интервал, в котором выдаётся предупреждение о том, что " "контрольные точки, вызванные активностью WAL, происходят слишком часто." -#: utils/misc/guc.c:2889 +#: utils/misc/guc.c:2890 msgid "" "Write a message to the server log if checkpoints caused by the filling of " "WAL segment files happen more frequently than this amount of time. Zero " @@ -30733,48 +30769,48 @@ msgstr "" "контрольными точками, вызванными заполнением файлов сегментов WAL, меньше " "заданного значения. Нулевое значение отключает эти предупреждения." -#: utils/misc/guc.c:2902 utils/misc/guc.c:3120 utils/misc/guc.c:3168 +#: utils/misc/guc.c:2903 utils/misc/guc.c:3121 utils/misc/guc.c:3169 msgid "" "Number of pages after which previously performed writes are flushed to disk." msgstr "" "Число страниц, по достижении которого ранее выполненные операции записи " "сбрасываются на диск." -#: utils/misc/guc.c:2913 +#: utils/misc/guc.c:2914 msgid "Sets the number of disk-page buffers in shared memory for WAL." msgstr "Задаёт число буферов дисковых страниц в разделяемой памяти для WAL." -#: utils/misc/guc.c:2924 +#: utils/misc/guc.c:2925 msgid "Time between WAL flushes performed in the WAL writer." msgstr "Задержка между сбросом WAL в процессе, записывающем WAL." -#: utils/misc/guc.c:2935 +#: utils/misc/guc.c:2936 msgid "Amount of WAL written out by WAL writer that triggers a flush." msgstr "" "Объём WAL, обработанный пишущим WAL процессом, при котором инициируется " "сброс журнала на диск." -#: utils/misc/guc.c:2946 +#: utils/misc/guc.c:2947 msgid "Minimum size of new file to fsync instead of writing WAL." msgstr "" "Размер нового файла, при достижении которого файл не пишется в WAL, а " "сбрасывается на диск." -#: utils/misc/guc.c:2957 +#: utils/misc/guc.c:2958 msgid "Sets the maximum number of simultaneously running WAL sender processes." msgstr "" "Задаёт предельное число одновременно работающих процессов передачи WAL." -#: utils/misc/guc.c:2968 +#: utils/misc/guc.c:2969 msgid "Sets the maximum number of simultaneously defined replication slots." msgstr "Задаёт предельное число одновременно существующих слотов репликации." -#: utils/misc/guc.c:2978 +#: utils/misc/guc.c:2979 msgid "Sets the maximum WAL size that can be reserved by replication slots." msgstr "" "Задаёт максимальный размер WAL, который могут резервировать слоты репликации." -#: utils/misc/guc.c:2979 +#: utils/misc/guc.c:2980 msgid "" "Replication slots will be marked as failed, and segments released for " "deletion or recycling, if this much space is occupied by WAL on disk." @@ -30783,11 +30819,11 @@ msgstr "" "помечены как нерабочие, а сегменты будут освобождены для удаления или " "переработки." -#: utils/misc/guc.c:2991 +#: utils/misc/guc.c:2992 msgid "Sets the maximum time to wait for WAL replication." msgstr "Задаёт предельное время ожидания репликации WAL." -#: utils/misc/guc.c:3002 +#: utils/misc/guc.c:3003 msgid "" "Sets the delay in microseconds between transaction commit and flushing WAL " "to disk." @@ -30795,7 +30831,7 @@ msgstr "" "Задаёт задержку в микросекундах между фиксированием транзакций и сбросом WAL " "на диск." -#: utils/misc/guc.c:3014 +#: utils/misc/guc.c:3015 msgid "" "Sets the minimum number of concurrent open transactions required before " "performing commit_delay." @@ -30803,11 +30839,11 @@ msgstr "" "Задаёт минимальное число одновременно открытых транзакций, которое требуется " "для применения commit_delay." -#: utils/misc/guc.c:3025 +#: utils/misc/guc.c:3026 msgid "Sets the number of digits displayed for floating-point values." msgstr "Задаёт число выводимых цифр для чисел с плавающей точкой." -#: utils/misc/guc.c:3026 +#: utils/misc/guc.c:3027 msgid "" "This affects real, double precision, and geometric data types. A zero or " "negative parameter value is added to the standard number of digits (FLT_DIG " @@ -30819,7 +30855,7 @@ msgstr "" "(FLT_DIG или DBL_DIG соответственно). Положительное значение включает режим " "точного вывода." -#: utils/misc/guc.c:3038 +#: utils/misc/guc.c:3039 msgid "" "Sets the minimum execution time above which a sample of statements will be " "logged. Sampling is determined by log_statement_sample_rate." @@ -30828,22 +30864,22 @@ msgstr "" "которого он выводится в журнал. Выборка определяется параметром " "log_statement_sample_rate." -#: utils/misc/guc.c:3041 +#: utils/misc/guc.c:3042 msgid "Zero logs a sample of all queries. -1 turns this feature off." msgstr "При 0 выводятся все запросы в выборке; -1 отключает эти сообщения." -#: utils/misc/guc.c:3051 +#: utils/misc/guc.c:3052 msgid "" "Sets the minimum execution time above which all statements will be logged." msgstr "" "Задаёт предельное время выполнения любого оператора, при превышении которого " "он выводится в журнал." -#: utils/misc/guc.c:3053 +#: utils/misc/guc.c:3054 msgid "Zero prints all queries. -1 turns this feature off." msgstr "При 0 выводятся все запросы; -1 отключает эти сообщения." -#: utils/misc/guc.c:3063 +#: utils/misc/guc.c:3064 msgid "" "Sets the minimum execution time above which autovacuum actions will be " "logged." @@ -30851,12 +30887,12 @@ msgstr "" "Задаёт предельное время выполнения автоочистки, при превышении которого эта " "операция протоколируется в журнале." -#: utils/misc/guc.c:3065 +#: utils/misc/guc.c:3066 msgid "Zero prints all actions. -1 turns autovacuum logging off." msgstr "" "При 0 протоколируются все операции автоочистки; -1 отключает эти сообщения." -#: utils/misc/guc.c:3075 +#: utils/misc/guc.c:3076 msgid "" "Sets the maximum length in bytes of data logged for bind parameter values " "when logging statements." @@ -30864,11 +30900,11 @@ msgstr "" "Задаёт максимальный размер данных (в байтах), выводимых в значениях " "привязанных параметров при протоколировании операторов." -#: utils/misc/guc.c:3077 utils/misc/guc.c:3089 +#: utils/misc/guc.c:3078 utils/misc/guc.c:3090 msgid "-1 to print values in full." msgstr "При -1 значения выводятся полностью." -#: utils/misc/guc.c:3087 +#: utils/misc/guc.c:3088 msgid "" "Sets the maximum length in bytes of data logged for bind parameter values " "when logging statements, on error." @@ -30876,17 +30912,17 @@ msgstr "" "Задаёт максимальный размер данных (в байтах), выводимых в значениях " "привязанных параметров при протоколировании операторов в случае ошибки." -#: utils/misc/guc.c:3099 +#: utils/misc/guc.c:3100 msgid "Background writer sleep time between rounds." msgstr "Время простоя в процессе фоновой записи между подходами." -#: utils/misc/guc.c:3110 +#: utils/misc/guc.c:3111 msgid "Background writer maximum number of LRU pages to flush per round." msgstr "" "Максимальное число LRU-страниц, сбрасываемых за один подход, в процессе " "фоновой записи." -#: utils/misc/guc.c:3133 +#: utils/misc/guc.c:3134 msgid "" "Number of simultaneous requests that can be handled efficiently by the disk " "subsystem." @@ -30894,83 +30930,83 @@ msgstr "" "Число одновременных запросов, которые могут быть эффективно обработаны " "дисковой подсистемой." -#: utils/misc/guc.c:3151 +#: utils/misc/guc.c:3152 msgid "" "A variant of effective_io_concurrency that is used for maintenance work." msgstr "" "Вариация параметра effective_io_concurrency, предназначенная для операций " "обслуживания БД." -#: utils/misc/guc.c:3181 +#: utils/misc/guc.c:3182 msgid "Maximum number of concurrent worker processes." msgstr "Задаёт максимально возможное число рабочих процессов." -#: utils/misc/guc.c:3193 +#: utils/misc/guc.c:3194 msgid "Maximum number of logical replication worker processes." msgstr "" "Задаёт максимально возможное число рабочих процессов логической репликации." -#: utils/misc/guc.c:3205 +#: utils/misc/guc.c:3206 msgid "Maximum number of table synchronization workers per subscription." msgstr "" "Задаёт максимально возможное число процессов синхронизации таблиц для одной " "подписки." -#: utils/misc/guc.c:3215 +#: utils/misc/guc.c:3216 msgid "Sets the amount of time to wait before forcing log file rotation." msgstr "" "Задаёт время задержки перед принудительным переключением на следующий файл " "журнала." -#: utils/misc/guc.c:3227 +#: utils/misc/guc.c:3228 msgid "Sets the maximum size a log file can reach before being rotated." msgstr "" "Задаёт максимальный размер, которого может достичь файл журнала до " "переключения на другой файл." -#: utils/misc/guc.c:3239 +#: utils/misc/guc.c:3240 msgid "Shows the maximum number of function arguments." msgstr "Показывает максимально возможное число аргументов функций." -#: utils/misc/guc.c:3250 +#: utils/misc/guc.c:3251 msgid "Shows the maximum number of index keys." msgstr "Показывает максимально возможное число ключей в индексе." -#: utils/misc/guc.c:3261 +#: utils/misc/guc.c:3262 msgid "Shows the maximum identifier length." msgstr "Показывает максимально возможную длину идентификатора." -#: utils/misc/guc.c:3272 +#: utils/misc/guc.c:3273 msgid "Shows the size of a disk block." msgstr "Показывает размер дискового блока." -#: utils/misc/guc.c:3283 +#: utils/misc/guc.c:3284 msgid "Shows the number of pages per disk file." msgstr "Показывает число страниц в одном файле." -#: utils/misc/guc.c:3294 +#: utils/misc/guc.c:3295 msgid "Shows the block size in the write ahead log." msgstr "Показывает размер блока в журнале WAL." -#: utils/misc/guc.c:3305 +#: utils/misc/guc.c:3306 msgid "" "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgstr "" "Задаёт время задержки перед повторной попыткой обращения к WAL после неудачи." -#: utils/misc/guc.c:3317 +#: utils/misc/guc.c:3318 msgid "Shows the size of write ahead log segments." msgstr "Показывает размер сегментов журнала предзаписи." -#: utils/misc/guc.c:3330 +#: utils/misc/guc.c:3331 msgid "Time to sleep between autovacuum runs." msgstr "Время простоя между запусками автоочистки." -#: utils/misc/guc.c:3340 +#: utils/misc/guc.c:3341 msgid "Minimum number of tuple updates or deletes prior to vacuum." msgstr "Минимальное число изменений или удалений кортежей, вызывающее очистку." -#: utils/misc/guc.c:3349 +#: utils/misc/guc.c:3350 msgid "" "Minimum number of tuple inserts prior to vacuum, or -1 to disable insert " "vacuums." @@ -30978,27 +31014,27 @@ msgstr "" "Минимальное число добавлений кортежей, вызывающее очистку; при -1 такая " "очистка отключается." -#: utils/misc/guc.c:3358 +#: utils/misc/guc.c:3359 msgid "Minimum number of tuple inserts, updates, or deletes prior to analyze." msgstr "" "Минимальное число добавлений, изменений или удалений кортежей, вызывающее " "анализ." -#: utils/misc/guc.c:3368 +#: utils/misc/guc.c:3369 msgid "" "Age at which to autovacuum a table to prevent transaction ID wraparound." msgstr "" "Возраст, при котором необходима автоочистка таблицы для предотвращения " "зацикливания ID транзакций." -#: utils/misc/guc.c:3380 +#: utils/misc/guc.c:3381 msgid "" "Multixact age at which to autovacuum a table to prevent multixact wraparound." msgstr "" "Возраст multixact, при котором необходима автоочистка таблицы для " "предотвращения зацикливания multixact." -#: utils/misc/guc.c:3390 +#: utils/misc/guc.c:3391 msgid "" "Sets the maximum number of simultaneously running autovacuum worker " "processes." @@ -31006,30 +31042,30 @@ msgstr "" "Задаёт предельное число одновременно выполняющихся рабочих процессов " "автоочистки." -#: utils/misc/guc.c:3400 +#: utils/misc/guc.c:3401 msgid "" "Sets the maximum number of parallel processes per maintenance operation." msgstr "" "Задаёт максимальное число параллельных процессов на одну операцию " "обслуживания." -#: utils/misc/guc.c:3410 +#: utils/misc/guc.c:3411 msgid "Sets the maximum number of parallel processes per executor node." msgstr "Задаёт максимальное число параллельных процессов на узел исполнителя." -#: utils/misc/guc.c:3421 +#: utils/misc/guc.c:3422 msgid "" "Sets the maximum number of parallel workers that can be active at one time." msgstr "" -"Задаёт максимальное число параллельных процессов, которые могут быть активны " -"одновременно." +"Задаёт максимальное число параллельных исполнителей, которые могут быть " +"активны одновременно." -#: utils/misc/guc.c:3432 +#: utils/misc/guc.c:3433 msgid "Sets the maximum memory to be used by each autovacuum worker process." msgstr "" "Задаёт предельный объём памяти для каждого рабочего процесса автоочистки." -#: utils/misc/guc.c:3443 +#: utils/misc/guc.c:3444 msgid "" "Time before a snapshot is too old to read pages changed after the snapshot " "was taken." @@ -31037,33 +31073,33 @@ msgstr "" "Срок, по истечении которого снимок считается слишком старым для получения " "страниц, изменённых после создания снимка." -#: utils/misc/guc.c:3444 +#: utils/misc/guc.c:3445 msgid "A value of -1 disables this feature." msgstr "Значение -1 отключает это поведение." -#: utils/misc/guc.c:3454 +#: utils/misc/guc.c:3455 msgid "Time between issuing TCP keepalives." msgstr "Интервал между TCP-пакетами пульса (keep-alive)." -#: utils/misc/guc.c:3455 utils/misc/guc.c:3466 utils/misc/guc.c:3590 +#: utils/misc/guc.c:3456 utils/misc/guc.c:3467 utils/misc/guc.c:3591 msgid "A value of 0 uses the system default." msgstr "При нулевом значении действует системный параметр." -#: utils/misc/guc.c:3465 +#: utils/misc/guc.c:3466 msgid "Time between TCP keepalive retransmits." msgstr "Интервал между повторениями TCP-пакетов пульса (keep-alive)." -#: utils/misc/guc.c:3476 +#: utils/misc/guc.c:3477 msgid "SSL renegotiation is no longer supported; this can only be 0." msgstr "" "Повторное согласование SSL более не поддерживается; единственное допустимое " "значение - 0." -#: utils/misc/guc.c:3487 +#: utils/misc/guc.c:3488 msgid "Maximum number of TCP keepalive retransmits." msgstr "Максимальное число повторений TCP-пакетов пульса (keep-alive)." -#: utils/misc/guc.c:3488 +#: utils/misc/guc.c:3489 msgid "" "Number of consecutive keepalive retransmits that can be lost before a " "connection is considered dead. A value of 0 uses the system default." @@ -31072,15 +31108,15 @@ msgstr "" "чем соединение будет считаться пропавшим. При нулевом значении действует " "системный параметр." -#: utils/misc/guc.c:3499 +#: utils/misc/guc.c:3500 msgid "Sets the maximum allowed result for exact search by GIN." msgstr "Ограничивает результат точного поиска с использованием GIN." -#: utils/misc/guc.c:3510 +#: utils/misc/guc.c:3511 msgid "Sets the planner's assumption about the total size of the data caches." msgstr "Подсказывает планировщику примерный общий размер кешей данных." -#: utils/misc/guc.c:3511 +#: utils/misc/guc.c:3512 msgid "" "That is, the total size of the caches (kernel cache and shared buffers) used " "for PostgreSQL data files. This is measured in disk pages, which are " @@ -31090,12 +31126,12 @@ msgstr "" "попадают файлы данных PostgreSQL. Размер задаётся в дисковых страницах " "(обычно это 8 КБ)." -#: utils/misc/guc.c:3522 +#: utils/misc/guc.c:3523 msgid "Sets the minimum amount of table data for a parallel scan." msgstr "" "Задаёт минимальный объём данных в таблице для параллельного сканирования." -#: utils/misc/guc.c:3523 +#: utils/misc/guc.c:3524 msgid "" "If the planner estimates that it will read a number of table pages too small " "to reach this limit, a parallel scan will not be considered." @@ -31104,12 +31140,12 @@ msgstr "" "задано этим ограничением, он исключает параллельное сканирование из " "рассмотрения." -#: utils/misc/guc.c:3533 +#: utils/misc/guc.c:3534 msgid "Sets the minimum amount of index data for a parallel scan." msgstr "" "Задаёт минимальный объём данных в индексе для параллельного сканирования." -#: utils/misc/guc.c:3534 +#: utils/misc/guc.c:3535 msgid "" "If the planner estimates that it will read a number of index pages too small " "to reach this limit, a parallel scan will not be considered." @@ -31118,64 +31154,64 @@ msgstr "" "задано этим ограничением, он исключает параллельное сканирование из " "рассмотрения." -#: utils/misc/guc.c:3545 +#: utils/misc/guc.c:3546 msgid "Shows the server version as an integer." msgstr "Показывает версию сервера в виде целого числа." -#: utils/misc/guc.c:3556 +#: utils/misc/guc.c:3557 msgid "Log the use of temporary files larger than this number of kilobytes." msgstr "" "Фиксирует в протоколе превышение временными файлами заданного размера (в КБ)." -#: utils/misc/guc.c:3557 +#: utils/misc/guc.c:3558 msgid "Zero logs all files. The default is -1 (turning this feature off)." msgstr "" "При 0 отмечаются все файлы; при -1 эти сообщения отключаются (по умолчанию)." -#: utils/misc/guc.c:3567 +#: utils/misc/guc.c:3568 msgid "Sets the size reserved for pg_stat_activity.query, in bytes." msgstr "Задаёт размер, резервируемый для pg_stat_activity.query (в байтах)." -#: utils/misc/guc.c:3578 +#: utils/misc/guc.c:3579 msgid "Sets the maximum size of the pending list for GIN index." msgstr "Задаёт максимальный размер списка-очереди для GIN-индекса." -#: utils/misc/guc.c:3589 +#: utils/misc/guc.c:3590 msgid "TCP user timeout." msgstr "Пользовательский таймаут TCP." -#: utils/misc/guc.c:3600 +#: utils/misc/guc.c:3601 msgid "The size of huge page that should be requested." msgstr "Запрашиваемый размер огромных страниц." -#: utils/misc/guc.c:3611 +#: utils/misc/guc.c:3612 msgid "Aggressively flush system caches for debugging purposes." msgstr "Включает агрессивный сброс системных кешей для целей отладки." -#: utils/misc/guc.c:3634 +#: utils/misc/guc.c:3635 msgid "" "Sets the time interval between checks for disconnection while running " "queries." msgstr "" "Задаёт интервал между проверками подключения во время выполнения запросов." -#: utils/misc/guc.c:3645 +#: utils/misc/guc.c:3646 msgid "Time between progress updates for long-running startup operations." msgstr "" "Интервал между обновлениями состояния длительных операций, выполняемых при " "запуске." -#: utils/misc/guc.c:3647 +#: utils/misc/guc.c:3648 msgid "0 turns this feature off." msgstr "При 0 эта функциональность отключается." -#: utils/misc/guc.c:3666 +#: utils/misc/guc.c:3667 msgid "" "Sets the planner's estimate of the cost of a sequentially fetched disk page." msgstr "" "Задаёт для планировщика ориентир стоимости последовательного чтения страницы." -#: utils/misc/guc.c:3677 +#: utils/misc/guc.c:3678 msgid "" "Sets the planner's estimate of the cost of a nonsequentially fetched disk " "page." @@ -31183,13 +31219,13 @@ msgstr "" "Задаёт для планировщика ориентир стоимости непоследовательного чтения " "страницы." -#: utils/misc/guc.c:3688 +#: utils/misc/guc.c:3689 msgid "Sets the planner's estimate of the cost of processing each tuple (row)." msgstr "" "Задаёт для планировщика ориентир стоимости обработки каждого кортежа " "(строки)." -#: utils/misc/guc.c:3699 +#: utils/misc/guc.c:3700 msgid "" "Sets the planner's estimate of the cost of processing each index entry " "during an index scan." @@ -31197,7 +31233,7 @@ msgstr "" "Задаёт для планировщика ориентир стоимости обработки каждого элемента " "индекса в процессе сканирования индекса." -#: utils/misc/guc.c:3710 +#: utils/misc/guc.c:3711 msgid "" "Sets the planner's estimate of the cost of processing each operator or " "function call." @@ -31205,7 +31241,7 @@ msgstr "" "Задаёт для планировщика ориентир стоимости обработки каждого оператора или " "вызова функции." -#: utils/misc/guc.c:3721 +#: utils/misc/guc.c:3722 msgid "" "Sets the planner's estimate of the cost of passing each tuple (row) from " "worker to leader backend." @@ -31213,7 +31249,7 @@ msgstr "" "Задаёт для планировщика ориентир стоимости передачи каждого кортежа (строки) " "ведущему процессу от рабочего." -#: utils/misc/guc.c:3732 +#: utils/misc/guc.c:3733 msgid "" "Sets the planner's estimate of the cost of starting up worker processes for " "parallel query." @@ -31221,40 +31257,40 @@ msgstr "" "Задаёт для планировщика ориентир стоимости запуска рабочих процессов для " "параллельного выполнения запроса." -#: utils/misc/guc.c:3744 +#: utils/misc/guc.c:3745 msgid "Perform JIT compilation if query is more expensive." msgstr "Стоимость запроса, при превышении которой производится JIT-компиляция." -#: utils/misc/guc.c:3745 +#: utils/misc/guc.c:3746 msgid "-1 disables JIT compilation." msgstr "-1 отключает JIT-компиляцию." -#: utils/misc/guc.c:3755 +#: utils/misc/guc.c:3756 msgid "Optimize JIT-compiled functions if query is more expensive." msgstr "" "Стоимость запроса, при превышении которой оптимизируются JIT-" "скомпилированные функции." -#: utils/misc/guc.c:3756 +#: utils/misc/guc.c:3757 msgid "-1 disables optimization." msgstr "-1 отключает оптимизацию." -#: utils/misc/guc.c:3766 +#: utils/misc/guc.c:3767 msgid "Perform JIT inlining if query is more expensive." msgstr "Стоимость запроса, при которой выполняется встраивание JIT." -#: utils/misc/guc.c:3767 +#: utils/misc/guc.c:3768 msgid "-1 disables inlining." msgstr "-1 отключает встраивание кода." -#: utils/misc/guc.c:3777 +#: utils/misc/guc.c:3778 msgid "" "Sets the planner's estimate of the fraction of a cursor's rows that will be " "retrieved." msgstr "" "Задаёт для планировщика ориентир доли требуемых строк курсора в общем числе." -#: utils/misc/guc.c:3789 +#: utils/misc/guc.c:3790 msgid "" "Sets the planner's estimate of the average size of a recursive query's " "working table." @@ -31262,37 +31298,37 @@ msgstr "" "Задаёт для планировщика ориентир среднего размера рабочей таблицы в " "рекурсивном запросе." -#: utils/misc/guc.c:3801 +#: utils/misc/guc.c:3802 msgid "GEQO: selective pressure within the population." msgstr "GEQO: селективное давление в популяции." -#: utils/misc/guc.c:3812 +#: utils/misc/guc.c:3813 msgid "GEQO: seed for random path selection." msgstr "GEQO: отправное значение для случайного выбора пути." -#: utils/misc/guc.c:3823 +#: utils/misc/guc.c:3824 msgid "Multiple of work_mem to use for hash tables." msgstr "Множитель work_mem, определяющий объём памяти для хеш-таблиц." -#: utils/misc/guc.c:3834 +#: utils/misc/guc.c:3835 msgid "Multiple of the average buffer usage to free per round." msgstr "" "Множитель для среднего числа использованных буферов, определяющий число " "буферов, освобождаемых за один подход." -#: utils/misc/guc.c:3844 +#: utils/misc/guc.c:3845 msgid "Sets the seed for random-number generation." msgstr "Задаёт отправное значение для генератора случайных чисел." -#: utils/misc/guc.c:3855 +#: utils/misc/guc.c:3856 msgid "Vacuum cost delay in milliseconds." msgstr "Задержка очистки (в миллисекундах)." -#: utils/misc/guc.c:3866 +#: utils/misc/guc.c:3867 msgid "Vacuum cost delay in milliseconds, for autovacuum." msgstr "Задержка очистки для автоочистки (в миллисекундах)." -#: utils/misc/guc.c:3877 +#: utils/misc/guc.c:3878 msgid "" "Number of tuple updates or deletes prior to vacuum as a fraction of " "reltuples." @@ -31300,13 +31336,13 @@ msgstr "" "Отношение числа обновлений или удалений кортежей к reltuples, определяющее " "потребность в очистке." -#: utils/misc/guc.c:3887 +#: utils/misc/guc.c:3888 msgid "Number of tuple inserts prior to vacuum as a fraction of reltuples." msgstr "" "Отношение числа добавлений кортежей к reltuples, определяющее потребность в " "очистке." -#: utils/misc/guc.c:3897 +#: utils/misc/guc.c:3898 msgid "" "Number of tuple inserts, updates, or deletes prior to analyze as a fraction " "of reltuples." @@ -31314,7 +31350,7 @@ msgstr "" "Отношение числа добавлений, обновлений или удалений кортежей к reltuples, " "определяющее потребность в анализе." -#: utils/misc/guc.c:3907 +#: utils/misc/guc.c:3908 msgid "" "Time spent flushing dirty buffers during checkpoint, as fraction of " "checkpoint interval." @@ -31322,25 +31358,25 @@ msgstr "" "Отношение продолжительности сброса \"грязных\" буферов во время контрольной " "точки к интервалу контрольных точек." -#: utils/misc/guc.c:3917 +#: utils/misc/guc.c:3918 msgid "Fraction of statements exceeding log_min_duration_sample to be logged." msgstr "" "Доля записываемых в журнал операторов с длительностью, превышающей " "log_min_duration_sample." -#: utils/misc/guc.c:3918 +#: utils/misc/guc.c:3919 msgid "Use a value between 0.0 (never log) and 1.0 (always log)." msgstr "" "Может задаваться значением от 0.0 (не записывать никакие операторы) и 1.0 " "(записывать все)." -#: utils/misc/guc.c:3927 +#: utils/misc/guc.c:3928 msgid "Sets the fraction of transactions from which to log all statements." msgstr "" "Задаёт долю транзакций, все операторы которых будут записываться в журнал " "сервера." -#: utils/misc/guc.c:3928 +#: utils/misc/guc.c:3929 msgid "" "Use a value between 0.0 (never log) and 1.0 (log all statements for all " "transactions)." @@ -31348,48 +31384,48 @@ msgstr "" "Значение 0.0 означает — не записывать никакие транзакции, а значение 1.0 — " "записывать все операторы всех транзакций." -#: utils/misc/guc.c:3947 +#: utils/misc/guc.c:3948 msgid "Sets the shell command that will be called to archive a WAL file." msgstr "Задаёт команду оболочки, вызываемую для архивации файла WAL." -#: utils/misc/guc.c:3948 +#: utils/misc/guc.c:3949 msgid "This is used only if \"archive_library\" is not set." msgstr "Это параметр используется, только если не задан \"archive_library\"." -#: utils/misc/guc.c:3957 +#: utils/misc/guc.c:3958 msgid "Sets the library that will be called to archive a WAL file." msgstr "Задаёт библиотеку, вызываемую для архивации файла WAL." -#: utils/misc/guc.c:3958 +#: utils/misc/guc.c:3959 msgid "An empty string indicates that \"archive_command\" should be used." msgstr "" "Пустая строка указывает, что должен использоваться параметр " "\"archive_command\"." -#: utils/misc/guc.c:3967 +#: utils/misc/guc.c:3968 msgid "" "Sets the shell command that will be called to retrieve an archived WAL file." msgstr "" "Задаёт команду оболочки, которая будет вызываться для извлечения из архива " "файла WAL." -#: utils/misc/guc.c:3977 +#: utils/misc/guc.c:3978 msgid "Sets the shell command that will be executed at every restart point." msgstr "" "Задаёт команду оболочки, которая будет выполняться при каждой точке " "перезапуска." -#: utils/misc/guc.c:3987 +#: utils/misc/guc.c:3988 msgid "" "Sets the shell command that will be executed once at the end of recovery." msgstr "" "Задаёт команду оболочки, которая будет выполняться в конце восстановления." -#: utils/misc/guc.c:3997 +#: utils/misc/guc.c:3998 msgid "Specifies the timeline to recover into." msgstr "Указывает линию времени для выполнения восстановления." -#: utils/misc/guc.c:4007 +#: utils/misc/guc.c:4008 msgid "" "Set to \"immediate\" to end recovery as soon as a consistent state is " "reached." @@ -31397,24 +31433,24 @@ msgstr "" "Задайте значение \"immediate\", чтобы восстановление остановилось сразу " "после достижения согласованного состояния." -#: utils/misc/guc.c:4016 +#: utils/misc/guc.c:4017 msgid "Sets the transaction ID up to which recovery will proceed." msgstr "" "Задаёт идентификатор транзакции, вплоть до которой будет производиться " "восстановление." -#: utils/misc/guc.c:4025 +#: utils/misc/guc.c:4026 msgid "Sets the time stamp up to which recovery will proceed." msgstr "" "Задаёт момент времени, вплоть до которого будет производиться восстановление." -#: utils/misc/guc.c:4034 +#: utils/misc/guc.c:4035 msgid "Sets the named restore point up to which recovery will proceed." msgstr "" "Задаёт именованную точку восстановления, до которой будет производиться " "восстановление." -#: utils/misc/guc.c:4043 +#: utils/misc/guc.c:4044 msgid "" "Sets the LSN of the write-ahead log location up to which recovery will " "proceed." @@ -31422,71 +31458,71 @@ msgstr "" "Задаёт в виде LSN позицию в журнале предзаписи, до которой будет " "производиться восстановление." -#: utils/misc/guc.c:4053 +#: utils/misc/guc.c:4054 msgid "Specifies a file name whose presence ends recovery in the standby." msgstr "" "Задаёт имя файла, присутствие которого выводит ведомый из режима " "восстановления." -#: utils/misc/guc.c:4063 +#: utils/misc/guc.c:4064 msgid "Sets the connection string to be used to connect to the sending server." msgstr "" "Задаёт строку соединения, которая будет использоваться для подключения к " "передающему серверу." -#: utils/misc/guc.c:4074 +#: utils/misc/guc.c:4075 msgid "Sets the name of the replication slot to use on the sending server." msgstr "" "Задаёт имя слота репликации, который будет использоваться на передающем " "сервере." -#: utils/misc/guc.c:4084 +#: utils/misc/guc.c:4085 msgid "Sets the client's character set encoding." msgstr "Задаёт кодировку символов, используемую клиентом." -#: utils/misc/guc.c:4095 +#: utils/misc/guc.c:4096 msgid "Controls information prefixed to each log line." msgstr "Определяет содержимое префикса каждой строки протокола." -#: utils/misc/guc.c:4096 +#: utils/misc/guc.c:4097 msgid "If blank, no prefix is used." msgstr "При пустом значении префикс также отсутствует." -#: utils/misc/guc.c:4105 +#: utils/misc/guc.c:4106 msgid "Sets the time zone to use in log messages." msgstr "Задаёт часовой пояс для вывода времени в сообщениях протокола." -#: utils/misc/guc.c:4115 +#: utils/misc/guc.c:4116 msgid "Sets the display format for date and time values." msgstr "Устанавливает формат вывода дат и времени." -#: utils/misc/guc.c:4116 +#: utils/misc/guc.c:4117 msgid "Also controls interpretation of ambiguous date inputs." msgstr "Также помогает разбирать неоднозначно заданные вводимые даты." -#: utils/misc/guc.c:4127 +#: utils/misc/guc.c:4128 msgid "Sets the default table access method for new tables." msgstr "Задаёт табличный метод доступа по умолчанию для новых таблиц." -#: utils/misc/guc.c:4138 +#: utils/misc/guc.c:4139 msgid "Sets the default tablespace to create tables and indexes in." msgstr "" "Задаёт табличное пространство по умолчанию для новых таблиц и индексов." -#: utils/misc/guc.c:4139 +#: utils/misc/guc.c:4140 msgid "An empty string selects the database's default tablespace." msgstr "При пустом значении используется табличное пространство базы данных." -#: utils/misc/guc.c:4149 +#: utils/misc/guc.c:4150 msgid "Sets the tablespace(s) to use for temporary tables and sort files." msgstr "" "Задаёт табличное пространство(а) для временных таблиц и файлов сортировки." -#: utils/misc/guc.c:4160 +#: utils/misc/guc.c:4161 msgid "Sets the path for dynamically loadable modules." msgstr "Задаёт путь для динамически загружаемых модулей." -#: utils/misc/guc.c:4161 +#: utils/misc/guc.c:4162 msgid "" "If a dynamically loadable module needs to be opened and the specified name " "does not have a directory component (i.e., the name does not contain a " @@ -31496,79 +31532,79 @@ msgstr "" "указан путь (нет символа '/'), система будет искать этот файл в заданном " "пути." -#: utils/misc/guc.c:4174 +#: utils/misc/guc.c:4175 msgid "Sets the location of the Kerberos server key file." msgstr "Задаёт размещение файла с ключом Kerberos для данного сервера." -#: utils/misc/guc.c:4185 +#: utils/misc/guc.c:4186 msgid "Sets the Bonjour service name." msgstr "Задаёт название службы Bonjour." -#: utils/misc/guc.c:4197 +#: utils/misc/guc.c:4198 msgid "Shows the collation order locale." msgstr "Показывает правило сортировки." -#: utils/misc/guc.c:4208 +#: utils/misc/guc.c:4209 msgid "Shows the character classification and case conversion locale." msgstr "Показывает правило классификации символов и преобразования регистра." -#: utils/misc/guc.c:4219 +#: utils/misc/guc.c:4220 msgid "Sets the language in which messages are displayed." msgstr "Задаёт язык выводимых сообщений." -#: utils/misc/guc.c:4229 +#: utils/misc/guc.c:4230 msgid "Sets the locale for formatting monetary amounts." msgstr "Задаёт локаль для форматирования денежных сумм." -#: utils/misc/guc.c:4239 +#: utils/misc/guc.c:4240 msgid "Sets the locale for formatting numbers." msgstr "Задаёт локаль для форматирования чисел." -#: utils/misc/guc.c:4249 +#: utils/misc/guc.c:4250 msgid "Sets the locale for formatting date and time values." msgstr "Задаёт локаль для форматирования дат и времени." -#: utils/misc/guc.c:4259 +#: utils/misc/guc.c:4260 msgid "Lists shared libraries to preload into each backend." msgstr "" "Список разделяемых библиотек, заранее загружаемых в каждый обслуживающий " "процесс." -#: utils/misc/guc.c:4270 +#: utils/misc/guc.c:4271 msgid "Lists shared libraries to preload into server." msgstr "Список разделяемых библиотек, заранее загружаемых в память сервера." -#: utils/misc/guc.c:4281 +#: utils/misc/guc.c:4282 msgid "Lists unprivileged shared libraries to preload into each backend." msgstr "" "Список непривилегированных разделяемых библиотек, заранее загружаемых в " "каждый обслуживающий процесс." -#: utils/misc/guc.c:4292 +#: utils/misc/guc.c:4293 msgid "Sets the schema search order for names that are not schema-qualified." msgstr "Задаёт порядок просмотра схемы при поиске неполных имён." -#: utils/misc/guc.c:4304 +#: utils/misc/guc.c:4305 msgid "Shows the server (database) character set encoding." msgstr "Показывает кодировку символов сервера (базы данных)." -#: utils/misc/guc.c:4316 +#: utils/misc/guc.c:4317 msgid "Shows the server version." msgstr "Показывает версию сервера." -#: utils/misc/guc.c:4328 +#: utils/misc/guc.c:4329 msgid "Sets the current role." msgstr "Задаёт текущую роль." -#: utils/misc/guc.c:4340 +#: utils/misc/guc.c:4341 msgid "Sets the session user name." msgstr "Задаёт имя пользователя в сеансе." -#: utils/misc/guc.c:4351 +#: utils/misc/guc.c:4352 msgid "Sets the destination for server log output." msgstr "Определяет, куда будет выводиться протокол сервера." -#: utils/misc/guc.c:4352 +#: utils/misc/guc.c:4353 msgid "" "Valid values are combinations of \"stderr\", \"syslog\", \"csvlog\", " "\"jsonlog\", and \"eventlog\", depending on the platform." @@ -31576,24 +31612,24 @@ msgstr "" "Значение может включать сочетание слов \"stderr\", \"syslog\", \"csvlog\", " "\"jsonlog\" и \"eventlog\", в зависимости от платформы." -#: utils/misc/guc.c:4363 +#: utils/misc/guc.c:4364 msgid "Sets the destination directory for log files." msgstr "Задаёт целевой каталог для файлов протоколов." -#: utils/misc/guc.c:4364 +#: utils/misc/guc.c:4365 msgid "Can be specified as relative to the data directory or as absolute path." msgstr "" "Путь может быть абсолютным или указываться относительно каталога данных." -#: utils/misc/guc.c:4374 +#: utils/misc/guc.c:4375 msgid "Sets the file name pattern for log files." msgstr "Задаёт шаблон имени для файлов протоколов." -#: utils/misc/guc.c:4385 +#: utils/misc/guc.c:4386 msgid "Sets the program name used to identify PostgreSQL messages in syslog." msgstr "Задаёт имя программы для идентификации сообщений PostgreSQL в syslog." -#: utils/misc/guc.c:4396 +#: utils/misc/guc.c:4397 msgid "" "Sets the application name used to identify PostgreSQL messages in the event " "log." @@ -31601,121 +31637,121 @@ msgstr "" "Задаёт имя приложения для идентификации сообщений PostgreSQL в журнале " "событий." -#: utils/misc/guc.c:4407 +#: utils/misc/guc.c:4408 msgid "Sets the time zone for displaying and interpreting time stamps." msgstr "" "Задаёт часовой пояс для вывода и разбора строкового представления времени." -#: utils/misc/guc.c:4417 +#: utils/misc/guc.c:4418 msgid "Selects a file of time zone abbreviations." msgstr "Выбирает файл с сокращёнными названиями часовых поясов." -#: utils/misc/guc.c:4427 +#: utils/misc/guc.c:4428 msgid "Sets the owning group of the Unix-domain socket." msgstr "Задаёт группу-владельца Unix-сокета." -#: utils/misc/guc.c:4428 +#: utils/misc/guc.c:4429 msgid "" "The owning user of the socket is always the user that starts the server." msgstr "" "Собственно владельцем сокета всегда будет пользователь, запускающий сервер." -#: utils/misc/guc.c:4438 +#: utils/misc/guc.c:4439 msgid "Sets the directories where Unix-domain sockets will be created." msgstr "Задаёт каталоги, где будут создаваться Unix-сокеты." -#: utils/misc/guc.c:4453 +#: utils/misc/guc.c:4454 msgid "Sets the host name or IP address(es) to listen to." msgstr "Задаёт имя узла или IP-адрес(а) для привязки." -#: utils/misc/guc.c:4468 +#: utils/misc/guc.c:4469 msgid "Sets the server's data directory." msgstr "Определяет каталог данных сервера." -#: utils/misc/guc.c:4479 +#: utils/misc/guc.c:4480 msgid "Sets the server's main configuration file." msgstr "Определяет основной файл конфигурации сервера." -#: utils/misc/guc.c:4490 +#: utils/misc/guc.c:4491 msgid "Sets the server's \"hba\" configuration file." msgstr "Задаёт путь к файлу конфигурации \"hba\"." -#: utils/misc/guc.c:4501 +#: utils/misc/guc.c:4502 msgid "Sets the server's \"ident\" configuration file." msgstr "Задаёт путь к файлу конфигурации \"ident\"." -#: utils/misc/guc.c:4512 +#: utils/misc/guc.c:4513 msgid "Writes the postmaster PID to the specified file." msgstr "Файл, в который будет записан код процесса postmaster." -#: utils/misc/guc.c:4523 +#: utils/misc/guc.c:4524 msgid "Shows the name of the SSL library." msgstr "Показывает имя библиотеки SSL." -#: utils/misc/guc.c:4538 +#: utils/misc/guc.c:4539 msgid "Location of the SSL server certificate file." msgstr "Размещение файла сертификата сервера для SSL." -#: utils/misc/guc.c:4548 +#: utils/misc/guc.c:4549 msgid "Location of the SSL server private key file." msgstr "Размещение файла с закрытым ключом сервера для SSL." -#: utils/misc/guc.c:4558 +#: utils/misc/guc.c:4559 msgid "Location of the SSL certificate authority file." msgstr "Размещение файла центра сертификации для SSL." -#: utils/misc/guc.c:4568 +#: utils/misc/guc.c:4569 msgid "Location of the SSL certificate revocation list file." msgstr "Размещение файла со списком отзыва сертификатов для SSL." -#: utils/misc/guc.c:4578 +#: utils/misc/guc.c:4579 msgid "Location of the SSL certificate revocation list directory." msgstr "Размещение каталога со списками отзыва сертификатов для SSL." -#: utils/misc/guc.c:4588 +#: utils/misc/guc.c:4589 msgid "" "Number of synchronous standbys and list of names of potential synchronous " "ones." msgstr "" "Количество потенциально синхронных резервных серверов и список их имён." -#: utils/misc/guc.c:4599 +#: utils/misc/guc.c:4600 msgid "Sets default text search configuration." msgstr "Задаёт конфигурацию текстового поиска по умолчанию." -#: utils/misc/guc.c:4609 +#: utils/misc/guc.c:4610 msgid "Sets the list of allowed SSL ciphers." msgstr "Задаёт список допустимых алгоритмов шифрования для SSL." -#: utils/misc/guc.c:4624 +#: utils/misc/guc.c:4625 msgid "Sets the curve to use for ECDH." msgstr "Задаёт кривую для ECDH." -#: utils/misc/guc.c:4639 +#: utils/misc/guc.c:4640 msgid "Location of the SSL DH parameters file." msgstr "Размещение файла с параметрами SSL DH." -#: utils/misc/guc.c:4650 +#: utils/misc/guc.c:4651 msgid "Command to obtain passphrases for SSL." msgstr "Команда, позволяющая получить пароль для SSL." -#: utils/misc/guc.c:4661 +#: utils/misc/guc.c:4662 msgid "Sets the application name to be reported in statistics and logs." msgstr "" "Задаёт имя приложения, которое будет выводиться в статистике и протоколах." -#: utils/misc/guc.c:4672 +#: utils/misc/guc.c:4673 msgid "Sets the name of the cluster, which is included in the process title." msgstr "Задаёт имя кластера, которое будет добавляться в название процесса." -#: utils/misc/guc.c:4683 +#: utils/misc/guc.c:4684 msgid "" "Sets the WAL resource managers for which WAL consistency checks are done." msgstr "" "Задаёт перечень менеджеров ресурсов WAL, для которых выполняются проверки " "целостности WAL." -#: utils/misc/guc.c:4684 +#: utils/misc/guc.c:4685 msgid "" "Full-page images will be logged for all data blocks and cross-checked " "against the results of WAL replay." @@ -31723,28 +31759,32 @@ msgstr "" "При этом в журнал будут записываться образы полных страниц для всех блоков " "данных для сверки с результатами воспроизведения WAL." -#: utils/misc/guc.c:4694 +#: utils/misc/guc.c:4695 msgid "JIT provider to use." msgstr "Используемый провайдер JIT." -#: utils/misc/guc.c:4705 +#: utils/misc/guc.c:4706 msgid "Log backtrace for errors in these functions." msgstr "Записывать в журнал стек в случае ошибок в перечисленных функциях." -#: utils/misc/guc.c:4725 +#: utils/misc/guc.c:4717 +msgid "Prohibits access to non-system relations of specified kinds." +msgstr "Запрещает доступ к несистемным отношениям указанных видов." + +#: utils/misc/guc.c:4737 msgid "Sets whether \"\\'\" is allowed in string literals." msgstr "Определяет, можно ли использовать \"\\'\" в текстовых строках." -#: utils/misc/guc.c:4735 +#: utils/misc/guc.c:4747 msgid "Sets the output format for bytea." msgstr "Задаёт формат вывода данных типа bytea." -#: utils/misc/guc.c:4745 +#: utils/misc/guc.c:4757 msgid "Sets the message levels that are sent to the client." msgstr "Ограничивает уровень сообщений, передаваемых клиенту." -#: utils/misc/guc.c:4746 utils/misc/guc.c:4832 utils/misc/guc.c:4843 -#: utils/misc/guc.c:4919 +#: utils/misc/guc.c:4758 utils/misc/guc.c:4844 utils/misc/guc.c:4855 +#: utils/misc/guc.c:4931 msgid "" "Each level includes all the levels that follow it. The later the level, the " "fewer messages are sent." @@ -31752,16 +31792,16 @@ msgstr "" "Каждый уровень включает все последующие. Чем выше уровень, тем меньше " "сообщений." -#: utils/misc/guc.c:4756 +#: utils/misc/guc.c:4768 msgid "Enables in-core computation of query identifiers." msgstr "Включает внутреннее вычисление идентификаторов запросов." -#: utils/misc/guc.c:4766 +#: utils/misc/guc.c:4778 msgid "Enables the planner to use constraints to optimize queries." msgstr "" "Разрешает планировщику оптимизировать запросы, полагаясь на ограничения." -#: utils/misc/guc.c:4767 +#: utils/misc/guc.c:4779 msgid "" "Table scans will be skipped if their constraints guarantee that no rows " "match the query." @@ -31769,89 +31809,89 @@ msgstr "" "Сканирование таблицы не будет выполняться, если её ограничения гарантируют, " "что запросу не удовлетворяют никакие строки." -#: utils/misc/guc.c:4778 +#: utils/misc/guc.c:4790 msgid "Sets the default compression method for compressible values." msgstr "Задаёт выбираемый по умолчанию метод сжатия для сжимаемых значений." -#: utils/misc/guc.c:4789 +#: utils/misc/guc.c:4801 msgid "Sets the transaction isolation level of each new transaction." msgstr "Задаёт уровень изоляции транзакций для новых транзакций." -#: utils/misc/guc.c:4799 +#: utils/misc/guc.c:4811 msgid "Sets the current transaction's isolation level." msgstr "Задаёт текущий уровень изоляции транзакций." -#: utils/misc/guc.c:4810 +#: utils/misc/guc.c:4822 msgid "Sets the display format for interval values." msgstr "Задаёт формат отображения для внутренних значений." -#: utils/misc/guc.c:4821 +#: utils/misc/guc.c:4833 msgid "Sets the verbosity of logged messages." msgstr "Задаёт детализацию протоколируемых сообщений." -#: utils/misc/guc.c:4831 +#: utils/misc/guc.c:4843 msgid "Sets the message levels that are logged." msgstr "Ограничивает уровни протоколируемых сообщений." -#: utils/misc/guc.c:4842 +#: utils/misc/guc.c:4854 msgid "" "Causes all statements generating error at or above this level to be logged." msgstr "" "Включает протоколирование для SQL-операторов, выполненных с ошибкой этого " "или большего уровня." -#: utils/misc/guc.c:4853 +#: utils/misc/guc.c:4865 msgid "Sets the type of statements logged." msgstr "Задаёт тип протоколируемых операторов." -#: utils/misc/guc.c:4863 +#: utils/misc/guc.c:4875 msgid "Sets the syslog \"facility\" to be used when syslog enabled." msgstr "Задаёт получателя сообщений, отправляемых в syslog." -#: utils/misc/guc.c:4878 +#: utils/misc/guc.c:4890 msgid "Sets the session's behavior for triggers and rewrite rules." msgstr "" "Задаёт режим срабатывания триггеров и правил перезаписи для текущего сеанса." -#: utils/misc/guc.c:4888 +#: utils/misc/guc.c:4900 msgid "Sets the current transaction's synchronization level." msgstr "Задаёт уровень синхронизации текущей транзакции." -#: utils/misc/guc.c:4898 +#: utils/misc/guc.c:4910 msgid "Allows archiving of WAL files using archive_command." msgstr "Разрешает архивацию файлов WAL командой archive_command." -#: utils/misc/guc.c:4908 +#: utils/misc/guc.c:4920 msgid "Sets the action to perform upon reaching the recovery target." msgstr "" "Задаёт действие, которое будет выполняться по достижении цели восстановления." -#: utils/misc/guc.c:4918 +#: utils/misc/guc.c:4930 msgid "Enables logging of recovery-related debugging information." msgstr "" "Включает протоколирование отладочной информации, связанной с репликацией." -#: utils/misc/guc.c:4935 +#: utils/misc/guc.c:4947 msgid "Collects function-level statistics on database activity." msgstr "Включает сбор статистики активности в БД на уровне функций." -#: utils/misc/guc.c:4946 +#: utils/misc/guc.c:4958 msgid "Sets the consistency of accesses to statistics data." msgstr "Задаёт режим согласования доступа к данным статистики." -#: utils/misc/guc.c:4956 +#: utils/misc/guc.c:4968 msgid "Compresses full-page writes written in WAL file with specified method." msgstr "Сжимать данные записываемых в WAL полных страниц заданным методом." -#: utils/misc/guc.c:4966 +#: utils/misc/guc.c:4978 msgid "Sets the level of information written to the WAL." msgstr "Задаёт уровень информации, записываемой в WAL." -#: utils/misc/guc.c:4976 +#: utils/misc/guc.c:4988 msgid "Selects the dynamic shared memory implementation used." msgstr "Выбирает используемую реализацию динамической разделяемой памяти." -#: utils/misc/guc.c:4986 +#: utils/misc/guc.c:4998 msgid "" "Selects the shared memory implementation used for the main shared memory " "region." @@ -31859,15 +31899,15 @@ msgstr "" "Выбирает реализацию разделяемой памяти для управления основным блоком " "разделяемой памяти." -#: utils/misc/guc.c:4996 +#: utils/misc/guc.c:5008 msgid "Selects the method used for forcing WAL updates to disk." msgstr "Выбирает метод принудительной записи изменений в WAL на диск." -#: utils/misc/guc.c:5006 +#: utils/misc/guc.c:5018 msgid "Sets how binary values are to be encoded in XML." msgstr "Определяет, как должны кодироваться двоичные значения в XML." -#: utils/misc/guc.c:5016 +#: utils/misc/guc.c:5028 msgid "" "Sets whether XML data in implicit parsing and serialization operations is to " "be considered as documents or content fragments." @@ -31875,23 +31915,23 @@ msgstr "" "Определяет, следует ли рассматривать XML-данные в неявных операциях разбора " "и сериализации как документы или как фрагменты содержания." -#: utils/misc/guc.c:5027 +#: utils/misc/guc.c:5039 msgid "Use of huge pages on Linux or Windows." msgstr "Включает использование огромных страниц в Linux и в Windows." -#: utils/misc/guc.c:5037 +#: utils/misc/guc.c:5049 msgid "Prefetch referenced blocks during recovery." msgstr "Осуществлять предвыборку изменяемых блоков в процессе восстановления." -#: utils/misc/guc.c:5038 +#: utils/misc/guc.c:5050 msgid "Look ahead in the WAL to find references to uncached data." msgstr "Прочитывать WAL наперёд для вычисления ещё не кешированных блоков." -#: utils/misc/guc.c:5047 +#: utils/misc/guc.c:5059 msgid "Forces use of parallel query facilities." msgstr "Принудительно включает режим параллельного выполнения запросов." -#: utils/misc/guc.c:5048 +#: utils/misc/guc.c:5060 msgid "" "If possible, run query using a parallel worker and with parallel " "restrictions." @@ -31899,15 +31939,15 @@ msgstr "" "Если возможно, запрос выполняется параллельными исполнителями и с " "ограничениями параллельности." -#: utils/misc/guc.c:5058 +#: utils/misc/guc.c:5070 msgid "Chooses the algorithm for encrypting passwords." msgstr "Выбирает алгоритм шифрования паролей." -#: utils/misc/guc.c:5068 +#: utils/misc/guc.c:5080 msgid "Controls the planner's selection of custom or generic plan." msgstr "Управляет выбором специализированных или общих планов планировщиком." -#: utils/misc/guc.c:5069 +#: utils/misc/guc.c:5081 msgid "" "Prepared statements can have custom and generic plans, and the planner will " "attempt to choose which is better. This can be set to override the default " @@ -31917,28 +31957,28 @@ msgstr "" "планы, и планировщик пытается выбрать лучший вариант. Этот параметр " "позволяет переопределить поведение по умолчанию." -#: utils/misc/guc.c:5081 +#: utils/misc/guc.c:5093 msgid "Sets the minimum SSL/TLS protocol version to use." msgstr "" "Задаёт минимальную версию протокола SSL/TLS, которая может использоваться." -#: utils/misc/guc.c:5093 +#: utils/misc/guc.c:5105 msgid "Sets the maximum SSL/TLS protocol version to use." msgstr "" "Задаёт максимальную версию протокола SSL/TLS, которая может использоваться." -#: utils/misc/guc.c:5105 +#: utils/misc/guc.c:5117 msgid "" "Sets the method for synchronizing the data directory before crash recovery." msgstr "" "Задаёт метод синхронизации каталога данных перед восстановления после сбоя." -#: utils/misc/guc.c:5680 utils/misc/guc.c:5696 +#: utils/misc/guc.c:5692 utils/misc/guc.c:5708 #, c-format msgid "invalid configuration parameter name \"%s\"" msgstr "неверное имя параметра конфигурации: \"%s\"" -#: utils/misc/guc.c:5682 +#: utils/misc/guc.c:5694 #, c-format msgid "" "Custom parameter names must be two or more simple identifiers separated by " @@ -31947,22 +31987,22 @@ msgstr "" "Имена нестандартных параметров должны состоять из двух или более простых " "идентификаторов, разделённых точками." -#: utils/misc/guc.c:5698 +#: utils/misc/guc.c:5710 #, c-format msgid "\"%s\" is a reserved prefix." msgstr "\"%s\" — зарезервированный префикс." -#: utils/misc/guc.c:5712 +#: utils/misc/guc.c:5724 #, c-format msgid "unrecognized configuration parameter \"%s\"" msgstr "нераспознанный параметр конфигурации: \"%s\"" -#: utils/misc/guc.c:6104 +#: utils/misc/guc.c:6116 #, c-format msgid "%s: could not access directory \"%s\": %s\n" -msgstr "%s: ошибка доступа к каталогу \"%s\": %s\n" +msgstr "%s: ошибка при обращении к каталогу \"%s\": %s\n" -#: utils/misc/guc.c:6109 +#: utils/misc/guc.c:6121 #, c-format msgid "" "Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n" @@ -31970,7 +32010,7 @@ msgstr "" "Запустите initdb или pg_basebackup для инициализации каталога данных " "PostgreSQL.\n" -#: utils/misc/guc.c:6129 +#: utils/misc/guc.c:6141 #, c-format msgid "" "%s does not know where to find the server configuration file.\n" @@ -31981,12 +32021,12 @@ msgstr "" "Вы должны указать его расположение в параметре --config-file или -D, либо " "установить переменную окружения PGDATA.\n" -#: utils/misc/guc.c:6148 +#: utils/misc/guc.c:6160 #, c-format msgid "%s: could not access the server configuration file \"%s\": %s\n" msgstr "%s не может открыть файл конфигурации сервера \"%s\": %s\n" -#: utils/misc/guc.c:6174 +#: utils/misc/guc.c:6186 #, c-format msgid "" "%s does not know where to find the database system data.\n" @@ -31997,7 +32037,7 @@ msgstr "" "Их расположение можно задать как значение \"data_directory\" в файле \"%s\", " "либо передать в параметре -D, либо установить переменную окружения PGDATA.\n" -#: utils/misc/guc.c:6222 +#: utils/misc/guc.c:6234 #, c-format msgid "" "%s does not know where to find the \"hba\" configuration file.\n" @@ -32008,7 +32048,7 @@ msgstr "" "Его расположение можно задать как значение \"hba_file\" в файле \"%s\", либо " "передать в параметре -D, либо установить переменную окружения PGDATA.\n" -#: utils/misc/guc.c:6245 +#: utils/misc/guc.c:6257 #, c-format msgid "" "%s does not know where to find the \"ident\" configuration file.\n" @@ -32019,61 +32059,61 @@ msgstr "" "Его расположение можно задать как значение \"ident_file\" в файле \"%s\", " "либо передать в параметре -D, либо установить переменную окружения PGDATA.\n" -#: utils/misc/guc.c:7176 +#: utils/misc/guc.c:7188 msgid "Value exceeds integer range." msgstr "Значение выходит за рамки целых чисел." -#: utils/misc/guc.c:7412 +#: utils/misc/guc.c:7424 #, c-format msgid "%d%s%s is outside the valid range for parameter \"%s\" (%d .. %d)" msgstr "%d%s%s вне диапазона, допустимого для параметра \"%s\" (%d .. %d)" -#: utils/misc/guc.c:7448 +#: utils/misc/guc.c:7460 #, c-format msgid "%g%s%s is outside the valid range for parameter \"%s\" (%g .. %g)" msgstr "%g%s%s вне диапазона, допустимого для параметра \"%s\" (%g .. %g)" -#: utils/misc/guc.c:7649 utils/misc/guc.c:9103 +#: utils/misc/guc.c:7670 #, c-format -msgid "cannot set parameters during a parallel operation" -msgstr "устанавливать параметры во время параллельных операций нельзя" +msgid "parameter \"%s\" cannot be set during a parallel operation" +msgstr "параметр \"%s\" нельзя установить во время параллельной операции" -#: utils/misc/guc.c:7668 utils/misc/guc.c:8927 +#: utils/misc/guc.c:7686 utils/misc/guc.c:8945 #, c-format msgid "parameter \"%s\" cannot be changed" msgstr "параметр \"%s\" нельзя изменить" -#: utils/misc/guc.c:7691 utils/misc/guc.c:7915 utils/misc/guc.c:8013 -#: utils/misc/guc.c:8111 utils/misc/guc.c:8235 utils/misc/guc.c:8338 +#: utils/misc/guc.c:7709 utils/misc/guc.c:7933 utils/misc/guc.c:8031 +#: utils/misc/guc.c:8129 utils/misc/guc.c:8253 utils/misc/guc.c:8356 #: guc-file.l:353 #, c-format msgid "parameter \"%s\" cannot be changed without restarting the server" msgstr "параметр \"%s\" изменяется только при перезапуске сервера" -#: utils/misc/guc.c:7701 +#: utils/misc/guc.c:7719 #, c-format msgid "parameter \"%s\" cannot be changed now" msgstr "параметр \"%s\" нельзя изменить сейчас" -#: utils/misc/guc.c:7728 utils/misc/guc.c:7790 utils/misc/guc.c:8903 -#: utils/misc/guc.c:11811 +#: utils/misc/guc.c:7746 utils/misc/guc.c:7808 utils/misc/guc.c:8921 +#: utils/misc/guc.c:11829 #, c-format msgid "permission denied to set parameter \"%s\"" msgstr "нет прав для изменения параметра \"%s\"" -#: utils/misc/guc.c:7770 +#: utils/misc/guc.c:7788 #, c-format msgid "parameter \"%s\" cannot be set after connection start" msgstr "параметр \"%s\" нельзя задать после установления соединения" -#: utils/misc/guc.c:7829 +#: utils/misc/guc.c:7847 #, c-format msgid "cannot set parameter \"%s\" within security-definer function" msgstr "" "параметр \"%s\" нельзя задать в функции с контекстом безопасности " "определившего" -#: utils/misc/guc.c:8482 utils/misc/guc.c:8529 utils/misc/guc.c:10016 +#: utils/misc/guc.c:8500 utils/misc/guc.c:8547 utils/misc/guc.c:10034 #, c-format msgid "" "must be superuser or have privileges of pg_read_all_settings to examine " @@ -32082,72 +32122,77 @@ msgstr "" "чтобы прочитать \"%s\", нужно быть суперпользователем или иметь права роли " "pg_read_all_settings" -#: utils/misc/guc.c:8613 +#: utils/misc/guc.c:8631 #, c-format msgid "SET %s takes only one argument" msgstr "SET %s принимает только один аргумент" -#: utils/misc/guc.c:8893 +#: utils/misc/guc.c:8911 #, c-format msgid "permission denied to perform ALTER SYSTEM RESET ALL" msgstr "нет прав для выполнения ALTER SYSTEM RESET ALL" -#: utils/misc/guc.c:8960 +#: utils/misc/guc.c:8978 #, c-format msgid "parameter value for ALTER SYSTEM must not contain a newline" msgstr "значение параметра для ALTER SYSTEM не должно быть многострочным" -#: utils/misc/guc.c:9005 +#: utils/misc/guc.c:9023 #, c-format msgid "could not parse contents of file \"%s\"" msgstr "не удалось разобрать содержимое файла \"%s\"" -#: utils/misc/guc.c:9179 +#: utils/misc/guc.c:9121 +#, c-format +msgid "cannot set parameters during a parallel operation" +msgstr "устанавливать параметры во время параллельных операций нельзя" + +#: utils/misc/guc.c:9197 #, c-format msgid "SET LOCAL TRANSACTION SNAPSHOT is not implemented" msgstr "SET LOCAL TRANSACTION SNAPSHOT не реализовано" -#: utils/misc/guc.c:9266 +#: utils/misc/guc.c:9284 #, c-format msgid "SET requires parameter name" msgstr "SET требует имя параметра" -#: utils/misc/guc.c:9399 +#: utils/misc/guc.c:9417 #, c-format msgid "attempt to redefine parameter \"%s\"" msgstr "попытка переопределить параметр \"%s\"" -#: utils/misc/guc.c:9726 +#: utils/misc/guc.c:9744 #, c-format msgid "invalid configuration parameter name \"%s\", removing it" msgstr "неверное имя параметра конфигурации: \"%s\", он удаляется" -#: utils/misc/guc.c:9728 +#: utils/misc/guc.c:9746 #, c-format msgid "\"%s\" is now a reserved prefix." msgstr "Теперь \"%s\" — зарезервированный префикс." -#: utils/misc/guc.c:11251 +#: utils/misc/guc.c:11269 #, c-format msgid "while setting parameter \"%s\" to \"%s\"" msgstr "при назначении параметру \"%s\" значения \"%s\"" -#: utils/misc/guc.c:11420 +#: utils/misc/guc.c:11438 #, c-format msgid "parameter \"%s\" could not be set" msgstr "параметр \"%s\" нельзя установить" -#: utils/misc/guc.c:11512 +#: utils/misc/guc.c:11530 #, c-format msgid "could not parse setting for parameter \"%s\"" msgstr "не удалось разобрать значение параметра \"%s\"" -#: utils/misc/guc.c:11943 +#: utils/misc/guc.c:11961 #, c-format msgid "invalid value for parameter \"%s\": %g" msgstr "неверное значение параметра \"%s\": %g" -#: utils/misc/guc.c:12256 +#: utils/misc/guc.c:12274 #, c-format msgid "" "\"temp_buffers\" cannot be changed after any temporary tables have been " @@ -32156,23 +32201,23 @@ msgstr "" "параметр \"temp_buffers\" нельзя изменить после обращения к временным " "таблицам в текущем сеансе." -#: utils/misc/guc.c:12268 +#: utils/misc/guc.c:12286 #, c-format msgid "Bonjour is not supported by this build" msgstr "Bonjour не поддерживается в данной сборке" -#: utils/misc/guc.c:12281 +#: utils/misc/guc.c:12299 #, c-format msgid "SSL is not supported by this build" msgstr "SSL не поддерживается в данной сборке" -#: utils/misc/guc.c:12293 +#: utils/misc/guc.c:12311 #, c-format msgid "Cannot enable parameter when \"log_statement_stats\" is true." msgstr "" "Этот параметр нельзя включить, когда \"log_statement_stats\" равен true." -#: utils/misc/guc.c:12305 +#: utils/misc/guc.c:12323 #, c-format msgid "" "Cannot enable \"log_statement_stats\" when \"log_parser_stats\", " @@ -32182,52 +32227,52 @@ msgstr "" "\"log_parser_stats\", \"log_planner_stats\" или \"log_executor_stats\" равны " "true." -#: utils/misc/guc.c:12535 +#: utils/misc/guc.c:12553 #, c-format msgid "" "effective_io_concurrency must be set to 0 on platforms that lack " "posix_fadvise()." msgstr "" "Значение effective_io_concurrency должно равняться 0 на платформах, где " -"отсутствует lack posix_fadvise()." +"отсутствует posix_fadvise()." -#: utils/misc/guc.c:12548 +#: utils/misc/guc.c:12566 #, c-format msgid "" "maintenance_io_concurrency must be set to 0 on platforms that lack " "posix_fadvise()." msgstr "" "Значение maintenance_io_concurrency должно равняться 0 на платформах, где " -"отсутствует lack posix_fadvise()." +"отсутствует posix_fadvise()." -#: utils/misc/guc.c:12562 +#: utils/misc/guc.c:12580 #, c-format msgid "huge_page_size must be 0 on this platform." msgstr "Значение huge_page_size должно равняться 0 на этой платформе." -#: utils/misc/guc.c:12574 +#: utils/misc/guc.c:12592 #, c-format msgid "client_connection_check_interval must be set to 0 on this platform." msgstr "" "Значение client_connection_check_interval должно равняться 0 на этой " "платформе." -#: utils/misc/guc.c:12686 +#: utils/misc/guc.c:12704 #, c-format msgid "invalid character" msgstr "неверный символ" -#: utils/misc/guc.c:12746 +#: utils/misc/guc.c:12764 #, c-format msgid "recovery_target_timeline is not a valid number." msgstr "recovery_target_timeline не является допустимым числом." -#: utils/misc/guc.c:12786 +#: utils/misc/guc.c:12804 #, c-format msgid "multiple recovery targets specified" msgstr "указано несколько целей восстановления" -#: utils/misc/guc.c:12787 +#: utils/misc/guc.c:12805 #, c-format msgid "" "At most one of recovery_target, recovery_target_lsn, recovery_target_name, " @@ -32237,7 +32282,7 @@ msgstr "" "recovery_target_lsn, recovery_target_name, recovery_target_time, " "recovery_target_xid." -#: utils/misc/guc.c:12795 +#: utils/misc/guc.c:12813 #, c-format msgid "The only allowed value is \"immediate\"." msgstr "Единственное допустимое значение: \"immediate\"." @@ -32416,7 +32461,7 @@ msgstr "удалить активный портал \"%s\" нельзя" msgid "cannot PREPARE a transaction that has created a cursor WITH HOLD" msgstr "нельзя выполнить PREPARE для транзакции, создавшей курсор WITH HOLD" -#: utils/mmgr/portalmem.c:1232 +#: utils/mmgr/portalmem.c:1235 #, c-format msgid "" "cannot perform transaction commands inside a cursor loop that is not read-" @@ -32641,7 +32686,7 @@ msgstr "указания STDIN/STDOUT несовместимы с PROGRAM" msgid "WHERE clause not allowed with COPY TO" msgstr "предложение WHERE не допускается с COPY TO" -#: gram.y:3609 gram.y:3616 gram.y:12759 gram.y:12767 +#: gram.y:3609 gram.y:3616 gram.y:12766 gram.y:12774 #, c-format msgid "GLOBAL is deprecated in temporary table creation" msgstr "указание GLOBAL при создании временных таблиц устарело" @@ -32656,206 +32701,206 @@ msgstr "для генерируемого столбца должно указы msgid "a column list with %s is only supported for ON DELETE actions" msgstr "список столбцов с %s поддерживается только для действий ON DELETE" -#: gram.y:4974 +#: gram.y:4981 #, c-format msgid "CREATE EXTENSION ... FROM is no longer supported" msgstr "CREATE EXTENSION ... FROM более не поддерживается" -#: gram.y:5672 +#: gram.y:5679 #, c-format msgid "unrecognized row security option \"%s\"" msgstr "нераспознанный вариант политики безопасности строк \"%s\"" -#: gram.y:5673 +#: gram.y:5680 #, c-format msgid "Only PERMISSIVE or RESTRICTIVE policies are supported currently." msgstr "" "В настоящее время поддерживаются только политики PERMISSIVE и RESTRICTIVE." -#: gram.y:5758 +#: gram.y:5765 #, c-format msgid "CREATE OR REPLACE CONSTRAINT TRIGGER is not supported" msgstr "CREATE OR REPLACE CONSTRAINT TRIGGER не поддерживается" -#: gram.y:5795 +#: gram.y:5802 msgid "duplicate trigger events specified" msgstr "события триггера повторяются" -#: gram.y:5944 +#: gram.y:5951 #, c-format msgid "conflicting constraint properties" msgstr "противоречащие характеристики ограничения" -#: gram.y:6043 +#: gram.y:6050 #, c-format msgid "CREATE ASSERTION is not yet implemented" msgstr "оператор CREATE ASSERTION ещё не реализован" -#: gram.y:6451 +#: gram.y:6458 #, c-format msgid "RECHECK is no longer required" msgstr "RECHECK более не требуется" -#: gram.y:6452 +#: gram.y:6459 #, c-format msgid "Update your data type." msgstr "Обновите тип данных." -#: gram.y:8308 +#: gram.y:8315 #, c-format msgid "aggregates cannot have output arguments" msgstr "у агрегатных функций не может быть выходных аргументов" -#: gram.y:10993 gram.y:11012 +#: gram.y:11000 gram.y:11019 #, c-format msgid "WITH CHECK OPTION not supported on recursive views" msgstr "" "предложение WITH CHECK OPTION не поддерживается для рекурсивных представлений" -#: gram.y:12898 +#: gram.y:12905 #, c-format msgid "LIMIT #,# syntax is not supported" msgstr "синтаксис LIMIT #,# не поддерживается" -#: gram.y:12899 +#: gram.y:12906 #, c-format msgid "Use separate LIMIT and OFFSET clauses." msgstr "Используйте отдельные предложения LIMIT и OFFSET." -#: gram.y:13252 gram.y:13278 +#: gram.y:13259 gram.y:13285 #, c-format msgid "VALUES in FROM must have an alias" msgstr "список VALUES во FROM должен иметь псевдоним" -#: gram.y:13253 gram.y:13279 +#: gram.y:13260 gram.y:13286 #, c-format msgid "For example, FROM (VALUES ...) [AS] foo." msgstr "Например, FROM (VALUES ...) [AS] foo." -#: gram.y:13258 gram.y:13284 +#: gram.y:13265 gram.y:13291 #, c-format msgid "subquery in FROM must have an alias" msgstr "подзапрос во FROM должен иметь псевдоним" -#: gram.y:13259 gram.y:13285 +#: gram.y:13266 gram.y:13292 #, c-format msgid "For example, FROM (SELECT ...) [AS] foo." msgstr "Например, FROM (SELECT ...) [AS] foo." -#: gram.y:13803 +#: gram.y:13810 #, c-format msgid "only one DEFAULT value is allowed" msgstr "допускается только одно значение DEFAULT" -#: gram.y:13812 +#: gram.y:13819 #, c-format msgid "only one PATH value per column is allowed" msgstr "для столбца допускается только одно значение PATH" -#: gram.y:13821 +#: gram.y:13828 #, c-format msgid "conflicting or redundant NULL / NOT NULL declarations for column \"%s\"" msgstr "" "конфликтующие или избыточные объявления NULL/NOT NULL для столбца \"%s\"" -#: gram.y:13830 +#: gram.y:13837 #, c-format msgid "unrecognized column option \"%s\"" msgstr "нераспознанный параметр столбца \"%s\"" -#: gram.y:14084 +#: gram.y:14091 #, c-format msgid "precision for type float must be at least 1 bit" msgstr "тип float должен иметь точность минимум 1 бит" -#: gram.y:14093 +#: gram.y:14100 #, c-format msgid "precision for type float must be less than 54 bits" msgstr "тип float должен иметь точность меньше 54 бит" -#: gram.y:14596 +#: gram.y:14603 #, c-format msgid "wrong number of parameters on left side of OVERLAPS expression" msgstr "неверное число параметров в левой части выражения OVERLAPS" -#: gram.y:14601 +#: gram.y:14608 #, c-format msgid "wrong number of parameters on right side of OVERLAPS expression" msgstr "неверное число параметров в правой части выражения OVERLAPS" -#: gram.y:14778 +#: gram.y:14785 #, c-format msgid "UNIQUE predicate is not yet implemented" msgstr "предикат UNIQUE ещё не реализован" -#: gram.y:15156 +#: gram.y:15163 #, c-format msgid "cannot use multiple ORDER BY clauses with WITHIN GROUP" msgstr "ORDER BY с WITHIN GROUP можно указать только один раз" -#: gram.y:15161 +#: gram.y:15168 #, c-format msgid "cannot use DISTINCT with WITHIN GROUP" msgstr "DISTINCT нельзя использовать с WITHIN GROUP" -#: gram.y:15166 +#: gram.y:15173 #, c-format msgid "cannot use VARIADIC with WITHIN GROUP" msgstr "VARIADIC нельзя использовать с WITHIN GROUP" -#: gram.y:15703 gram.y:15727 +#: gram.y:15710 gram.y:15734 #, c-format msgid "frame start cannot be UNBOUNDED FOLLOWING" msgstr "началом рамки не может быть UNBOUNDED FOLLOWING" -#: gram.y:15708 +#: gram.y:15715 #, c-format msgid "frame starting from following row cannot end with current row" msgstr "" "рамка, начинающаяся со следующей строки, не может заканчиваться текущей" -#: gram.y:15732 +#: gram.y:15739 #, c-format msgid "frame end cannot be UNBOUNDED PRECEDING" msgstr "концом рамки не может быть UNBOUNDED PRECEDING" -#: gram.y:15738 +#: gram.y:15745 #, c-format msgid "frame starting from current row cannot have preceding rows" msgstr "" "рамка, начинающаяся с текущей строки, не может иметь предшествующих строк" -#: gram.y:15745 +#: gram.y:15752 #, c-format msgid "frame starting from following row cannot have preceding rows" msgstr "" "рамка, начинающаяся со следующей строки, не может иметь предшествующих строк" -#: gram.y:16370 +#: gram.y:16377 #, c-format msgid "type modifier cannot have parameter name" msgstr "параметр функции-модификатора типа должен быть безымянным" -#: gram.y:16376 +#: gram.y:16383 #, c-format msgid "type modifier cannot have ORDER BY" msgstr "модификатор типа не может включать ORDER BY" -#: gram.y:16444 gram.y:16451 gram.y:16458 +#: gram.y:16451 gram.y:16458 gram.y:16465 #, c-format msgid "%s cannot be used as a role name here" msgstr "%s нельзя использовать здесь как имя роли" -#: gram.y:16548 gram.y:17983 +#: gram.y:16555 gram.y:17990 #, c-format msgid "WITH TIES cannot be specified without ORDER BY clause" msgstr "WITH TIES нельзя задать без предложения ORDER BY" -#: gram.y:17662 gram.y:17849 +#: gram.y:17669 gram.y:17856 msgid "improper use of \"*\"" msgstr "недопустимое использование \"*\"" -#: gram.y:17913 +#: gram.y:17920 #, c-format msgid "" "an ordered-set aggregate with a VARIADIC direct argument must have one " @@ -32864,65 +32909,65 @@ msgstr "" "сортирующая агрегатная функция с непосредственным аргументом VARIADIC должна " "иметь один агрегатный аргумент VARIADIC того же типа данных" -#: gram.y:17950 +#: gram.y:17957 #, c-format msgid "multiple ORDER BY clauses not allowed" msgstr "ORDER BY можно указать только один раз" -#: gram.y:17961 +#: gram.y:17968 #, c-format msgid "multiple OFFSET clauses not allowed" msgstr "OFFSET можно указать только один раз" -#: gram.y:17970 +#: gram.y:17977 #, c-format msgid "multiple LIMIT clauses not allowed" msgstr "LIMIT можно указать только один раз" -#: gram.y:17979 +#: gram.y:17986 #, c-format msgid "multiple limit options not allowed" msgstr "параметры LIMIT можно указать только один раз" -#: gram.y:18006 +#: gram.y:18013 #, c-format msgid "multiple WITH clauses not allowed" msgstr "WITH можно указать только один раз" -#: gram.y:18199 +#: gram.y:18206 #, c-format msgid "OUT and INOUT arguments aren't allowed in TABLE functions" msgstr "в табличных функциях не может быть аргументов OUT и INOUT" -#: gram.y:18332 +#: gram.y:18339 #, c-format msgid "multiple COLLATE clauses not allowed" msgstr "COLLATE можно указать только один раз" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18370 gram.y:18383 +#: gram.y:18377 gram.y:18390 #, c-format msgid "%s constraints cannot be marked DEFERRABLE" msgstr "ограничения %s не могут иметь характеристики DEFERRABLE" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18396 +#: gram.y:18403 #, c-format msgid "%s constraints cannot be marked NOT VALID" msgstr "ограничения %s не могут иметь характеристики NOT VALID" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18409 +#: gram.y:18416 #, c-format msgid "%s constraints cannot be marked NO INHERIT" msgstr "ограничения %s не могут иметь характеристики NO INHERIT" -#: gram.y:18433 +#: gram.y:18440 #, c-format msgid "invalid publication object list" msgstr "неверный список объектов публикации" -#: gram.y:18434 +#: gram.y:18441 #, c-format msgid "" "One of TABLE or TABLES IN SCHEMA must be specified before a standalone table " @@ -32931,22 +32976,22 @@ msgstr "" "Перед именем отдельной таблицы или схемы нужно указать TABLE либо TABLES IN " "SCHEMA." -#: gram.y:18450 +#: gram.y:18457 #, c-format msgid "invalid table name" msgstr "неверное имя таблицы" -#: gram.y:18471 +#: gram.y:18478 #, c-format msgid "WHERE clause not allowed for schema" msgstr "предложение WHERE не допускается для схемы" -#: gram.y:18478 +#: gram.y:18485 #, c-format msgid "column specification not allowed for schema" msgstr "указание столбца не допускается для схемы" -#: gram.y:18492 +#: gram.y:18499 #, c-format msgid "invalid schema name" msgstr "неверное имя схемы" diff --git a/src/backend/po/sv.po b/src/backend/po/sv.po index fc4cda9282a..c3cbe11a052 100644 --- a/src/backend/po/sv.po +++ b/src/backend/po/sv.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-07-26 17:45+0000\n" -"PO-Revision-Date: 2024-07-28 01:05+0200\n" +"POT-Creation-Date: 2024-09-20 20:51+0000\n" +"PO-Revision-Date: 2024-09-21 22:53+0200\n" "Last-Translator: Dennis Björklund \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -172,7 +172,7 @@ msgstr "" #: storage/file/fd.c:3720 storage/smgr/md.c:541 utils/cache/relmapper.c:795 #: utils/cache/relmapper.c:912 utils/error/elog.c:1953 #: utils/init/miscinit.c:1374 utils/init/miscinit.c:1508 -#: utils/init/miscinit.c:1585 utils/misc/guc.c:8998 utils/misc/guc.c:9047 +#: utils/init/miscinit.c:1585 utils/misc/guc.c:9016 utils/misc/guc.c:9065 #, c-format msgid "could not open file \"%s\": %m" msgstr "kunde inte öppna fil \"%s\": %m" @@ -199,7 +199,7 @@ msgstr "kunde inte skriva fil \"%s\": %m" #: commands/dbcommands.c:514 replication/logical/snapbuild.c:1781 #: replication/slot.c:1684 replication/slot.c:1789 storage/file/fd.c:737 #: storage/file/fd.c:3741 storage/smgr/md.c:992 storage/smgr/md.c:1033 -#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8767 +#: storage/sync/sync.c:453 utils/cache/relmapper.c:961 utils/misc/guc.c:8785 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "kunde inte fsync:a fil \"%s\": %m" @@ -227,8 +227,8 @@ msgstr "kunde inte fsync:a fil \"%s\": %m" #: utils/adt/pg_locale.c:617 utils/adt/regexp.c:224 utils/fmgr/dfmgr.c:229 #: utils/hash/dynahash.c:513 utils/hash/dynahash.c:613 #: utils/hash/dynahash.c:1116 utils/mb/mbutils.c:401 utils/mb/mbutils.c:429 -#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5192 -#: utils/misc/guc.c:5208 utils/misc/guc.c:5221 utils/misc/guc.c:8745 +#: utils/mb/mbutils.c:814 utils/mb/mbutils.c:841 utils/misc/guc.c:5204 +#: utils/misc/guc.c:5220 utils/misc/guc.c:5233 utils/misc/guc.c:8763 #: utils/misc/tzparser.c:476 utils/mmgr/aset.c:476 utils/mmgr/dsa.c:702 #: utils/mmgr/dsa.c:724 utils/mmgr/dsa.c:805 utils/mmgr/generation.c:266 #: utils/mmgr/mcxt.c:888 utils/mmgr/mcxt.c:924 utils/mmgr/mcxt.c:962 @@ -710,7 +710,7 @@ msgid "could not open parent table of index \"%s\"" msgstr "kunde inte öppna föräldratabell för index \"%s\"" #: access/brin/brin.c:1111 access/brin/brin.c:1207 access/gin/ginfast.c:1087 -#: parser/parse_utilcmd.c:2303 +#: parser/parse_utilcmd.c:2331 #, c-format msgid "index \"%s\" is not valid" msgstr "index \"%s\" är inte giltigt" @@ -842,7 +842,7 @@ msgid "index row requires %zu bytes, maximum size is %zu" msgstr "indexrad kräver %zu byte, maximal storlek är %zu" #: access/common/printtup.c:292 tcop/fastpath.c:106 tcop/fastpath.c:453 -#: tcop/postgres.c:1921 +#: tcop/postgres.c:1937 #, c-format msgid "unsupported format code: %d" msgstr "ej stödd formatkod: %d" @@ -870,7 +870,7 @@ msgstr "RESET får inte ha med värden på parametrar" msgid "unrecognized parameter namespace \"%s\"" msgstr "okänd parameternamnrymd \"%s\"" -#: access/common/reloptions.c:1303 utils/misc/guc.c:13002 +#: access/common/reloptions.c:1303 utils/misc/guc.c:13020 #, c-format msgid "tables declared WITH OIDS are not supported" msgstr "tabeller deklarerade med WITH OIDS stöds inte" @@ -1064,7 +1064,7 @@ msgstr "kunde inte bestämma vilken jämförelse (collation) som skall användas #: access/hash/hashfunc.c:279 access/hash/hashfunc.c:336 catalog/heap.c:671 #: catalog/heap.c:677 commands/createas.c:206 commands/createas.c:515 -#: commands/indexcmds.c:1955 commands/tablecmds.c:17596 commands/view.c:86 +#: commands/indexcmds.c:1955 commands/tablecmds.c:17624 commands/view.c:86 #: regex/regc_pg_locale.c:243 utils/adt/formatting.c:1690 #: utils/adt/formatting.c:1812 utils/adt/formatting.c:1935 utils/adt/like.c:190 #: utils/adt/like_support.c:1025 utils/adt/varchar.c:733 @@ -1192,8 +1192,8 @@ msgstr "kunde inte trunkera fil \"%s\" till %u: %m" #: replication/logical/origin.c:660 replication/logical/snapbuild.c:1757 #: replication/slot.c:1666 storage/file/buffile.c:537 #: storage/file/copydir.c:207 utils/init/miscinit.c:1449 -#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8728 -#: utils/misc/guc.c:8759 utils/misc/guc.c:10757 utils/misc/guc.c:10771 +#: utils/init/miscinit.c:1460 utils/init/miscinit.c:1468 utils/misc/guc.c:8746 +#: utils/misc/guc.c:8777 utils/misc/guc.c:10775 utils/misc/guc.c:10789 #: utils/time/snapmgr.c:1266 utils/time/snapmgr.c:1273 #, c-format msgid "could not write to file \"%s\": %m" @@ -1444,7 +1444,7 @@ msgstr "kan inte använda index \"%s\" som håller på att indexeras om" #: access/index/indexam.c:208 catalog/objectaddress.c:1376 #: commands/indexcmds.c:2783 commands/tablecmds.c:271 commands/tablecmds.c:295 -#: commands/tablecmds.c:17282 commands/tablecmds.c:19076 +#: commands/tablecmds.c:17310 commands/tablecmds.c:19104 #, c-format msgid "\"%s\" is not an index" msgstr "\"%s\" är inte ett index" @@ -1470,7 +1470,7 @@ msgid "This may be because of a non-immutable index expression." msgstr "Det kan bero på ett icke-immutable indexuttryck." #: access/nbtree/nbtpage.c:159 access/nbtree/nbtpage.c:608 -#: parser/parse_utilcmd.c:2349 +#: parser/parse_utilcmd.c:2377 #, c-format msgid "index \"%s\" is not a btree" msgstr "index \"%s\" är inte ett btree" @@ -1542,8 +1542,8 @@ msgid "\"%s\" is an index" msgstr "\"%s\" är ett index" #: access/table/table.c:54 access/table/table.c:88 access/table/table.c:117 -#: access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:13976 -#: commands/tablecmds.c:17291 +#: access/table/table.c:150 catalog/aclchk.c:1842 commands/tablecmds.c:14004 +#: commands/tablecmds.c:17319 #, c-format msgid "\"%s\" is a composite type" msgstr "\"%s\" är en composite-typ" @@ -1558,7 +1558,7 @@ msgstr "tid (%u, %u) är inte giltigt för relation \"%s\"" msgid "%s cannot be empty." msgstr "%s får inte vara tom." -#: access/table/tableamapi.c:122 utils/misc/guc.c:12926 +#: access/table/tableamapi.c:122 utils/misc/guc.c:12944 #, c-format msgid "%s is too long (maximum %d characters)." msgstr "%s är för lång (maximalt %d tecken)." @@ -1610,7 +1610,7 @@ msgid "" "Execute a database-wide VACUUM in that database.\n" "You might also need to commit or roll back old prepared transactions, or drop stale replication slots." msgstr "" -"Utför en hela databasen-VACUUM i den databasen.\n" +"Utför en databas-VACUUM i hela den databasen.\n" "Du kan också behöva commit:a eller rulla tillbaka gamla förberedda transaktioner eller slänga gamla replikeringsslottar." #: access/transam/multixact.c:1029 @@ -2135,7 +2135,7 @@ msgstr "%s kan inte köras i ett transaktionsblock" #: access/transam/xact.c:3489 #, c-format msgid "%s cannot run inside a subtransaction" -msgstr "%s kan inte köras i ett undertransaktionsblock" +msgstr "%s kan inte köras i en undertransaktion" #. translator: %s represents an SQL statement name #: access/transam/xact.c:3499 @@ -2218,7 +2218,7 @@ msgstr "kan inte commit:a subtransaktioner undert en parallell operation" #: access/transam/xact.c:5251 #, c-format msgid "cannot have more than 2^32-1 subtransactions in a transaction" -msgstr "kan inte ha mer än 2^32-1 subtransaktioner i en transaktion" +msgstr "kan inte ha mer än 2^32-1 undertransaktioner i en transaktion" #: access/transam/xlog.c:1465 #, c-format @@ -2251,7 +2251,7 @@ msgstr "krävd WAL-katalog \"%s\" finns inte" msgid "creating missing WAL directory \"%s\"" msgstr "skapar saknad WAL-katalog \"%s\"" -#: access/transam/xlog.c:3819 commands/dbcommands.c:3115 +#: access/transam/xlog.c:3819 commands/dbcommands.c:3132 #, c-format msgid "could not create missing directory \"%s\": %m" msgstr "kunde inte skapa saknad katalog \"%s\": %m" @@ -2749,7 +2749,7 @@ msgstr "Återställningskontrollfunktioner kan bara köras under återställning #: access/transam/xlogfuncs.c:430 access/transam/xlogfuncs.c:460 #, c-format msgid "standby promotion is ongoing" -msgstr "standby-befordring pågår" +msgstr "standby-befordran pågår" #: access/transam/xlogfuncs.c:431 access/transam/xlogfuncs.c:461 #, c-format @@ -3345,7 +3345,7 @@ msgstr "nedstängning av WAL-mottagarprocess efterfrågad" #: access/transam/xlogrecovery.c:4423 #, c-format msgid "received promote request" -msgstr "tog emot förfrågan om befordring" +msgstr "tog emot förfrågan om befordran" #: access/transam/xlogrecovery.c:4436 #, c-format @@ -3646,12 +3646,12 @@ msgstr "kunde inte sätta komprimeringens arbetarantal till %d: %s" msgid "-X requires a power of two value between 1 MB and 1 GB" msgstr "-X kräver ett tvåpotensvärde mellan 1 MB och 1 GB" -#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3906 +#: bootstrap/bootstrap.c:280 postmaster/postmaster.c:846 tcop/postgres.c:3994 #, c-format msgid "--%s requires a value" msgstr "--%s kräver ett värde" -#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3911 +#: bootstrap/bootstrap.c:285 postmaster/postmaster.c:851 tcop/postgres.c:3999 #, c-format msgid "-c %s requires a value" msgstr "-c %s kräver ett värde" @@ -3816,26 +3816,26 @@ msgstr "kan inte använda IN SCHEMA-klausul samtidigt som GRANT/REVOKE ON SCHEMA #: catalog/aclchk.c:1587 catalog/catalog.c:648 catalog/objectaddress.c:1543 #: catalog/pg_publication.c:510 commands/analyze.c:391 commands/copy.c:779 -#: commands/sequence.c:1670 commands/tablecmds.c:7320 commands/tablecmds.c:7476 +#: commands/sequence.c:1673 commands/tablecmds.c:7320 commands/tablecmds.c:7476 #: commands/tablecmds.c:7526 commands/tablecmds.c:7600 #: commands/tablecmds.c:7670 commands/tablecmds.c:7782 #: commands/tablecmds.c:7876 commands/tablecmds.c:7935 #: commands/tablecmds.c:8024 commands/tablecmds.c:8054 #: commands/tablecmds.c:8182 commands/tablecmds.c:8264 #: commands/tablecmds.c:8420 commands/tablecmds.c:8542 -#: commands/tablecmds.c:12281 commands/tablecmds.c:12462 -#: commands/tablecmds.c:12622 commands/tablecmds.c:13819 -#: commands/tablecmds.c:16388 commands/trigger.c:954 parser/analyze.c:2517 +#: commands/tablecmds.c:12298 commands/tablecmds.c:12490 +#: commands/tablecmds.c:12650 commands/tablecmds.c:13847 +#: commands/tablecmds.c:16416 commands/trigger.c:954 parser/analyze.c:2517 #: parser/parse_relation.c:725 parser/parse_target.c:1077 -#: parser/parse_type.c:144 parser/parse_utilcmd.c:3437 -#: parser/parse_utilcmd.c:3473 parser/parse_utilcmd.c:3515 utils/adt/acl.c:2869 +#: parser/parse_type.c:144 parser/parse_utilcmd.c:3465 +#: parser/parse_utilcmd.c:3501 parser/parse_utilcmd.c:3543 utils/adt/acl.c:2869 #: utils/adt/ruleutils.c:2828 #, c-format msgid "column \"%s\" of relation \"%s\" does not exist" msgstr "kolumn \"%s\" i relation \"%s\" existerar inte" #: catalog/aclchk.c:1850 catalog/objectaddress.c:1383 commands/sequence.c:1179 -#: commands/tablecmds.c:253 commands/tablecmds.c:17255 utils/adt/acl.c:2077 +#: commands/tablecmds.c:253 commands/tablecmds.c:17283 utils/adt/acl.c:2077 #: utils/adt/acl.c:2107 utils/adt/acl.c:2139 utils/adt/acl.c:2171 #: utils/adt/acl.c:2199 utils/adt/acl.c:2229 #, c-format @@ -4018,8 +4018,8 @@ msgid "permission denied for schema %s" msgstr "rättighet saknas för schema %s" #: catalog/aclchk.c:3602 commands/sequence.c:667 commands/sequence.c:893 -#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1768 -#: commands/sequence.c:1829 +#: commands/sequence.c:935 commands/sequence.c:976 commands/sequence.c:1771 +#: commands/sequence.c:1832 #, c-format msgid "permission denied for sequence %s" msgstr "rättighet saknas för sekvens %s" @@ -4239,7 +4239,7 @@ msgstr "attribut %d i relation med OID %u existerar inte" msgid "relation with OID %u does not exist" msgstr "relation med OID %u existerar inte" -#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2615 +#: catalog/aclchk.c:4184 catalog/aclchk.c:5602 commands/dbcommands.c:2632 #, c-format msgid "database with OID %u does not exist" msgstr "databas med OID %u finns inte" @@ -4376,7 +4376,7 @@ msgstr "måste vara en superuser för att anropa %s()" msgid "pg_nextoid() can only be used on system catalogs" msgstr "pg_nextoid() kan bara användas på systemkataloger" -#: catalog/catalog.c:640 parser/parse_utilcmd.c:2296 +#: catalog/catalog.c:640 parser/parse_utilcmd.c:2324 #, c-format msgid "index \"%s\" does not belong to table \"%s\"" msgstr "index \"%s\" tillhör inte tabell \"%s\"" @@ -4438,12 +4438,12 @@ msgstr "kan inte ta bort %s eftersom andra objekt beror på den" #: catalog/dependency.c:1201 catalog/dependency.c:1208 #: catalog/dependency.c:1219 commands/tablecmds.c:1325 -#: commands/tablecmds.c:14461 commands/tablespace.c:476 commands/user.c:1008 +#: commands/tablecmds.c:14489 commands/tablespace.c:476 commands/user.c:1008 #: commands/view.c:522 libpq/auth.c:329 replication/syncrep.c:1043 -#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7402 -#: utils/misc/guc.c:7438 utils/misc/guc.c:7508 utils/misc/guc.c:11880 -#: utils/misc/guc.c:11914 utils/misc/guc.c:11948 utils/misc/guc.c:11991 -#: utils/misc/guc.c:12033 +#: storage/lmgr/deadlock.c:1151 storage/lmgr/proc.c:1421 utils/misc/guc.c:7414 +#: utils/misc/guc.c:7450 utils/misc/guc.c:7520 utils/misc/guc.c:11898 +#: utils/misc/guc.c:11932 utils/misc/guc.c:11966 utils/misc/guc.c:12009 +#: utils/misc/guc.c:12051 #, c-format msgid "%s" msgstr "%s" @@ -4624,14 +4624,14 @@ msgstr "Detta skulle leda till att den genererade kolumnen beror på sitt eget v msgid "generation expression is not immutable" msgstr "genereringsuttryck är inte immutable" -#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1290 +#: catalog/heap.c:2812 rewrite/rewriteHandler.c:1291 #, c-format msgid "column \"%s\" is of type %s but default expression is of type %s" msgstr "kolumn \"%s\" har typ %s men default-uttryck har typen %s" #: catalog/heap.c:2817 commands/prepare.c:334 parser/analyze.c:2741 #: parser/parse_target.c:594 parser/parse_target.c:891 -#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1295 +#: parser/parse_target.c:901 rewrite/rewriteHandler.c:1296 #, c-format msgid "You will need to rewrite or cast the expression." msgstr "Du måste skriva om eller typomvandla uttrycket." @@ -4666,7 +4666,7 @@ msgstr "Tabell \"%s\" refererar till \"%s\"." msgid "Truncate table \"%s\" at the same time, or use TRUNCATE ... CASCADE." msgstr "Trunkera tabellen \"%s\" samtidigt, eller använd TRUNCATE ... CASCADE." -#: catalog/index.c:224 parser/parse_utilcmd.c:2201 +#: catalog/index.c:224 parser/parse_utilcmd.c:2229 #, c-format msgid "multiple primary keys for table \"%s\" are not allowed" msgstr "multipla primärnycklar för tabell \"%s\" tillåts inte" @@ -4837,7 +4837,7 @@ msgstr "textsökkonfiguration \"%s\" finns inte" msgid "cross-database references are not implemented: %s" msgstr "referenser till andra databaser är inte implementerat: %s" -#: catalog/namespace.c:2889 gram.y:18258 gram.y:18298 parser/parse_expr.c:813 +#: catalog/namespace.c:2889 gram.y:18265 gram.y:18305 parser/parse_expr.c:813 #: parser/parse_target.c:1276 #, c-format msgid "improper qualified name (too many dotted names): %s" @@ -4890,32 +4890,32 @@ msgid "cannot create temporary tables during a parallel operation" msgstr "kan inte skapa temporära tabeller under en parallell operation" #: catalog/namespace.c:4338 commands/tablespace.c:1236 commands/variable.c:64 -#: utils/misc/guc.c:12065 utils/misc/guc.c:12167 +#: tcop/postgres.c:3649 utils/misc/guc.c:12083 utils/misc/guc.c:12185 #, c-format msgid "List syntax is invalid." msgstr "List-syntaxen är ogiltig." #: catalog/objectaddress.c:1391 commands/policy.c:96 commands/policy.c:376 #: commands/tablecmds.c:247 commands/tablecmds.c:289 commands/tablecmds.c:2181 -#: commands/tablecmds.c:12398 +#: commands/tablecmds.c:12426 #, c-format msgid "\"%s\" is not a table" msgstr "\"%s\" är inte en tabell" #: catalog/objectaddress.c:1398 commands/tablecmds.c:259 -#: commands/tablecmds.c:17260 commands/view.c:119 +#: commands/tablecmds.c:17288 commands/view.c:119 #, c-format msgid "\"%s\" is not a view" msgstr "\"%s\" är inte en vy" #: catalog/objectaddress.c:1405 commands/matview.c:186 commands/tablecmds.c:265 -#: commands/tablecmds.c:17265 +#: commands/tablecmds.c:17293 #, c-format msgid "\"%s\" is not a materialized view" msgstr "\"%s\" är inte en materialiserad vy" #: catalog/objectaddress.c:1412 commands/tablecmds.c:283 -#: commands/tablecmds.c:17270 +#: commands/tablecmds.c:17298 #, c-format msgid "\"%s\" is not a foreign table" msgstr "\"%s\" är inte en främmande tabell" @@ -4959,7 +4959,7 @@ msgid "user mapping for user \"%s\" on server \"%s\" does not exist" msgstr "användarmappning för användare \"%s\" på server \"%s\" finns inte" #: catalog/objectaddress.c:1854 commands/foreigncmds.c:430 -#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:691 +#: commands/foreigncmds.c:993 commands/foreigncmds.c:1356 foreign/foreign.c:701 #, c-format msgid "server \"%s\" does not exist" msgstr "server \"%s\" finns inte" @@ -5676,7 +5676,7 @@ msgid "The partition is being detached concurrently or has an unfinished detach. msgstr "Partitionen kopplas loss parallellt eller har en bortkoppling som inte är slutförd." #: catalog/pg_inherits.c:596 commands/tablecmds.c:4528 -#: commands/tablecmds.c:15577 +#: commands/tablecmds.c:15605 #, c-format msgid "Use ALTER TABLE ... DETACH PARTITION ... FINALIZE to complete the pending detach operation." msgstr "Använd ALTER TABLE ... DETACH PARTITION ... FINALIZE för att slutföra den pågående bortkopplingsoperationen." @@ -6361,7 +6361,7 @@ msgstr "kan inte klustra temporära tabeller för andra sessioner" msgid "there is no previously clustered index for table \"%s\"" msgstr "det finns inget tidigare klustrat index för tabell \"%s\"" -#: commands/cluster.c:190 commands/tablecmds.c:14275 commands/tablecmds.c:16156 +#: commands/cluster.c:190 commands/tablecmds.c:14303 commands/tablecmds.c:16184 #, c-format msgid "index \"%s\" for table \"%s\" does not exist" msgstr "index \"%s\" för tabell \"%s\" finns inte" @@ -6376,7 +6376,7 @@ msgstr "kan inte klustra en delad katalog" msgid "cannot vacuum temporary tables of other sessions" msgstr "kan inte städa temporära tabeller för andra sessioner" -#: commands/cluster.c:511 commands/tablecmds.c:16166 +#: commands/cluster.c:511 commands/tablecmds.c:16194 #, c-format msgid "\"%s\" is not an index for table \"%s\"" msgstr "\"%s\" är inte ett index för tabell \"%s\"" @@ -6501,12 +6501,12 @@ msgstr "jämförelse \"%s\" för kodning \"%s\" finns redan i schema \"%s\"" msgid "collation \"%s\" already exists in schema \"%s\"" msgstr "jämförelse \"%s\" finns redan i schema \"%s\"" -#: commands/collationcmds.c:395 commands/dbcommands.c:2432 +#: commands/collationcmds.c:395 commands/dbcommands.c:2449 #, c-format msgid "changing version from %s to %s" msgstr "byter version från %s till %s" -#: commands/collationcmds.c:410 commands/dbcommands.c:2445 +#: commands/collationcmds.c:410 commands/dbcommands.c:2462 #, c-format msgid "version has not changed" msgstr "versionen har inte ändrats" @@ -6532,10 +6532,10 @@ msgstr "kunde inte köra kommandot \"%s\": %m" msgid "no usable system locales were found" msgstr "inga användbara systemlokaler hittades" -#: commands/comment.c:61 commands/dbcommands.c:1549 commands/dbcommands.c:1761 -#: commands/dbcommands.c:1874 commands/dbcommands.c:2068 -#: commands/dbcommands.c:2310 commands/dbcommands.c:2405 -#: commands/dbcommands.c:2515 commands/dbcommands.c:3014 +#: commands/comment.c:61 commands/dbcommands.c:1551 commands/dbcommands.c:1778 +#: commands/dbcommands.c:1891 commands/dbcommands.c:2085 +#: commands/dbcommands.c:2327 commands/dbcommands.c:2422 +#: commands/dbcommands.c:2532 commands/dbcommands.c:3031 #: utils/init/postinit.c:947 utils/init/postinit.c:1011 #: utils/init/postinit.c:1083 #, c-format @@ -6648,7 +6648,7 @@ msgstr "argumentet till flaggan \"%s\" måste vara en lista med kolumnnamn" msgid "argument to option \"%s\" must be a valid encoding name" msgstr "argumentet till flaggan \"%s\" måste vara ett giltigt kodningsnamn" -#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2258 +#: commands/copy.c:560 commands/dbcommands.c:849 commands/dbcommands.c:2275 #, c-format msgid "option \"%s\" not recognized" msgstr "flaggan \"%s\" känns inte igen" @@ -6666,12 +6666,12 @@ msgstr "kan inte ange NULL i läget BINARY" #: commands/copy.c:599 #, c-format msgid "COPY delimiter must be a single one-byte character" -msgstr "COPY-avdelaren måste vara ett ensamt en-byte-tecken" +msgstr "COPY-separatorn måste vara ett ensamt en-byte-tecken" #: commands/copy.c:606 #, c-format msgid "COPY delimiter cannot be newline or carriage return" -msgstr "COPY-avdelaren kan inte vara nyradstecken eller vagnretur" +msgstr "COPY-separatorn kan inte vara nyradstecken eller vagnretur" #: commands/copy.c:612 #, c-format @@ -6681,7 +6681,7 @@ msgstr "null-representationen för COPY kan inte använda tecknen för nyrad ell #: commands/copy.c:629 #, c-format msgid "COPY delimiter cannot be \"%s\"" -msgstr "COPY-avdelaren kan inte vara \"%s\"" +msgstr "COPY-separatorn kan inte vara \"%s\"" #: commands/copy.c:635 #, c-format @@ -6701,7 +6701,7 @@ msgstr "COPY-quote måste vara ett ensamt en-byte-tecken" #: commands/copy.c:651 #, c-format msgid "COPY delimiter and quote must be different" -msgstr "COPY-avdelare och quote måste vara olika" +msgstr "COPY-separator och quote måste vara olika" #: commands/copy.c:657 #, c-format @@ -6840,7 +6840,7 @@ msgstr "kan inte utföra COPY FREEZE på grund av tidigare transaktionsaktivitet #: commands/copyfrom.c:646 #, c-format msgid "cannot perform COPY FREEZE because the table was not created or truncated in the current subtransaction" -msgstr "kan inte utföra COPY FREEZE då tabellen inte skapades eller trunkerades i den nuvarande subtransaktionen" +msgstr "kan inte utföra COPY FREEZE då tabellen inte skapades eller trunkerades i den nuvarande undertransaktionen" #: commands/copyfrom.c:1270 commands/copyto.c:611 #, c-format @@ -6913,7 +6913,7 @@ msgid "could not read from COPY file: %m" msgstr "kunde inte läsa från COPY-fil: %m" #: commands/copyfromparse.c:278 commands/copyfromparse.c:303 -#: tcop/postgres.c:358 +#: tcop/postgres.c:362 #, c-format msgid "unexpected EOF on client connection with an open transaction" msgstr "oväntat EOF från klientanslutning med öppen transaktion" @@ -7175,7 +7175,7 @@ msgstr "\"%s\" är inte ett giltigt kodningsnamn" msgid "unrecognized locale provider: %s" msgstr "okänd lokalleverantör: %s" -#: commands/dbcommands.c:920 commands/dbcommands.c:2291 commands/user.c:237 +#: commands/dbcommands.c:920 commands/dbcommands.c:2308 commands/user.c:237 #: commands/user.c:611 #, c-format msgid "invalid connection limit: %d" @@ -7196,7 +7196,7 @@ msgstr "malldatabasen \"%s\" existerar inte" msgid "cannot use invalid database \"%s\" as template" msgstr "kan inte använda ogiltig databas \"%s\" som mall" -#: commands/dbcommands.c:976 commands/dbcommands.c:2320 +#: commands/dbcommands.c:976 commands/dbcommands.c:2337 #: utils/init/postinit.c:1026 #, c-format msgid "Use DROP DATABASE to drop invalid databases." @@ -7312,7 +7312,7 @@ msgstr "Malldatabasen skapades med jämförelseversion (collation) %s men operat msgid "Rebuild all objects in the template database that use the default collation and run ALTER DATABASE %s REFRESH COLLATION VERSION, or build PostgreSQL with the right library version." msgstr "Bygg om alla objekt i malldatabasen som använder default jämförelse (collation) och kör ALTER DATABASE %s REFRESH COLLATION VERSION eller bygg PostgreSQL med rätt bibliotekversion." -#: commands/dbcommands.c:1186 commands/dbcommands.c:1920 +#: commands/dbcommands.c:1186 commands/dbcommands.c:1937 #, c-format msgid "pg_global cannot be used as default tablespace" msgstr "pg_global kan inte användas som standard-tablespace" @@ -7327,7 +7327,7 @@ msgstr "kan inte sätta ny standard-tablespace \"%s\"" msgid "There is a conflict because database \"%s\" already has some tables in this tablespace." msgstr "Det finns en konflikt eftersom databasen \"%s\" redan har några tabeller i detta tabellutrymme." -#: commands/dbcommands.c:1244 commands/dbcommands.c:1790 +#: commands/dbcommands.c:1244 commands/dbcommands.c:1807 #, c-format msgid "database \"%s\" already exists" msgstr "databas \"%s\" finns redan" @@ -7362,132 +7362,132 @@ msgstr "Den valda LC_CTYPE-inställningen kräver kodning \"%s\"." msgid "The chosen LC_COLLATE setting requires encoding \"%s\"." msgstr "Den valda LC_COLLATE-inställningen kräver kodning \"%s\"." -#: commands/dbcommands.c:1556 +#: commands/dbcommands.c:1558 #, c-format msgid "database \"%s\" does not exist, skipping" msgstr "databasen \"%s\" existerar inte, hoppar över" -#: commands/dbcommands.c:1580 +#: commands/dbcommands.c:1582 #, c-format msgid "cannot drop a template database" msgstr "kan inte ta bort en malldatabas" -#: commands/dbcommands.c:1586 +#: commands/dbcommands.c:1588 #, c-format msgid "cannot drop the currently open database" msgstr "kan inte ta bort den databas som används just nu" -#: commands/dbcommands.c:1599 +#: commands/dbcommands.c:1601 #, c-format msgid "database \"%s\" is used by an active logical replication slot" msgstr "databasen \"%s\" används av en aktiv logisk replikeringsslot" -#: commands/dbcommands.c:1601 +#: commands/dbcommands.c:1603 #, c-format msgid "There is %d active slot." msgid_plural "There are %d active slots." msgstr[0] "Det är %d aktiv slot." msgstr[1] "Det är %d aktiva slottar." -#: commands/dbcommands.c:1615 +#: commands/dbcommands.c:1617 #, c-format msgid "database \"%s\" is being used by logical replication subscription" msgstr "databasen \"%s\" används av logisk replikeringsprenumeration" -#: commands/dbcommands.c:1617 +#: commands/dbcommands.c:1619 #, c-format msgid "There is %d subscription." msgid_plural "There are %d subscriptions." msgstr[0] "Det finns %d prenumeration." msgstr[1] "Det finns %d prenumerationer." -#: commands/dbcommands.c:1638 commands/dbcommands.c:1812 -#: commands/dbcommands.c:1942 +#: commands/dbcommands.c:1640 commands/dbcommands.c:1829 +#: commands/dbcommands.c:1959 #, c-format msgid "database \"%s\" is being accessed by other users" msgstr "databasen \"%s\" används av andra användare" -#: commands/dbcommands.c:1772 +#: commands/dbcommands.c:1789 #, c-format msgid "permission denied to rename database" msgstr "rättighet saknas för att döpa om databas" -#: commands/dbcommands.c:1801 +#: commands/dbcommands.c:1818 #, c-format msgid "current database cannot be renamed" msgstr "den använda databasen får inte döpas om" -#: commands/dbcommands.c:1898 +#: commands/dbcommands.c:1915 #, c-format msgid "cannot change the tablespace of the currently open database" msgstr "kan inte ändra tablespace på den databas som används just nu" -#: commands/dbcommands.c:2004 +#: commands/dbcommands.c:2021 #, c-format msgid "some relations of database \"%s\" are already in tablespace \"%s\"" msgstr "vissa relationer i databasen \"%s\" finns redan i tablespace \"%s\"" -#: commands/dbcommands.c:2006 +#: commands/dbcommands.c:2023 #, c-format msgid "You must move them back to the database's default tablespace before using this command." msgstr "Du måste flytta tillbaka dem till tabellens standard-tablespace innan du använder detta kommando." -#: commands/dbcommands.c:2133 commands/dbcommands.c:2852 -#: commands/dbcommands.c:3152 commands/dbcommands.c:3266 +#: commands/dbcommands.c:2150 commands/dbcommands.c:2869 +#: commands/dbcommands.c:3169 commands/dbcommands.c:3283 #, c-format msgid "some useless files may be left behind in old database directory \"%s\"" msgstr "några värdelösa filer kan lämnas kvar i gammal databaskatalog \"%s\"" -#: commands/dbcommands.c:2194 +#: commands/dbcommands.c:2211 #, c-format msgid "unrecognized DROP DATABASE option \"%s\"" msgstr "okänd DROP DATABASE-flagga \"%s\"" -#: commands/dbcommands.c:2272 +#: commands/dbcommands.c:2289 #, c-format msgid "option \"%s\" cannot be specified with other options" msgstr "flaggan \"%s\" kan inte anges tillsammans med andra flaggor" -#: commands/dbcommands.c:2319 +#: commands/dbcommands.c:2336 #, c-format msgid "cannot alter invalid database \"%s\"" msgstr "kan inte ändra på ogiltig database \"%s\"" -#: commands/dbcommands.c:2336 +#: commands/dbcommands.c:2353 #, c-format msgid "cannot disallow connections for current database" msgstr "kan inte förbjuda anslutningar till nuvarande databas" -#: commands/dbcommands.c:2555 +#: commands/dbcommands.c:2572 #, c-format msgid "permission denied to change owner of database" msgstr "rättighet saknas för att byta ägare på databasen" -#: commands/dbcommands.c:2958 +#: commands/dbcommands.c:2975 #, c-format msgid "There are %d other session(s) and %d prepared transaction(s) using the database." msgstr "Det finns %d andra session(er) och %d förberedda transaktion(er) som använder databasen." -#: commands/dbcommands.c:2961 +#: commands/dbcommands.c:2978 #, c-format msgid "There is %d other session using the database." msgid_plural "There are %d other sessions using the database." msgstr[0] "Det finns %d annan session som använder databasen." msgstr[1] "Det finns %d andra sessioner som använder databasen." -#: commands/dbcommands.c:2966 storage/ipc/procarray.c:3859 +#: commands/dbcommands.c:2983 storage/ipc/procarray.c:3859 #, c-format msgid "There is %d prepared transaction using the database." msgid_plural "There are %d prepared transactions using the database." msgstr[0] "Det finns %d förberedd transaktion som använder databasen" msgstr[1] "Det finns %d förberedda transaktioner som använder databasen" -#: commands/dbcommands.c:3108 +#: commands/dbcommands.c:3125 #, c-format msgid "missing directory \"%s\"" msgstr "saknar katalog \"%s\"" -#: commands/dbcommands.c:3168 commands/tablespace.c:190 +#: commands/dbcommands.c:3185 commands/tablespace.c:190 #: commands/tablespace.c:654 #, c-format msgid "could not stat directory \"%s\": %m" @@ -7543,7 +7543,7 @@ msgstr "Använd DROP AGGREGATE för att ta bort aggregatfunktioner." #: commands/dropcmds.c:158 commands/sequence.c:475 commands/tablecmds.c:3622 #: commands/tablecmds.c:3780 commands/tablecmds.c:3832 -#: commands/tablecmds.c:16583 tcop/utility.c:1332 +#: commands/tablecmds.c:16611 tcop/utility.c:1332 #, c-format msgid "relation \"%s\" does not exist, skipping" msgstr "relation \"%s\" finns inte, hoppar över" @@ -7858,7 +7858,7 @@ msgid "parameter \"%s\" cannot be set in a secondary extension control file" msgstr "parameter \"%s\" kan inte sättas i sekundär utökningskontrollfil" #: commands/extension.c:563 commands/extension.c:571 commands/extension.c:579 -#: utils/misc/guc.c:7380 +#: utils/misc/guc.c:7392 #, c-format msgid "parameter \"%s\" requires a Boolean value" msgstr "parameter \"%s\" kräver ett boolskt värde" @@ -8068,7 +8068,7 @@ msgstr "Måste vara superuser för att byta ägare på en främmande data-omvand msgid "The owner of a foreign-data wrapper must be a superuser." msgstr "Ägaren av en främmande data-omvandlare måste vara en superuser." -#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:669 +#: commands/foreigncmds.c:291 commands/foreigncmds.c:707 foreign/foreign.c:679 #, c-format msgid "foreign-data wrapper \"%s\" does not exist" msgstr "främmande data-omvandlare \"%s\" finns inte" @@ -8128,7 +8128,7 @@ msgstr "användarmappning för \"%s\" finns inte för servern \"%s\"" msgid "user mapping for \"%s\" does not exist for server \"%s\", skipping" msgstr "användarmappning för \"%s\" finns inte för servern \"%s\", hoppar över" -#: commands/foreigncmds.c:1507 foreign/foreign.c:390 +#: commands/foreigncmds.c:1507 foreign/foreign.c:400 #, c-format msgid "foreign-data wrapper \"%s\" has no handler" msgstr "främmande data-omvandlare \"%s\" har ingen hanterare" @@ -8616,13 +8616,13 @@ msgstr "Tabell \"%s\" innehåller partitioner som är främmande tabeller." msgid "functions in index predicate must be marked IMMUTABLE" msgstr "funktioner i indexpredikat måste vara markerade IMMUTABLE" -#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2545 -#: parser/parse_utilcmd.c:2680 +#: commands/indexcmds.c:1821 parser/parse_utilcmd.c:2573 +#: parser/parse_utilcmd.c:2708 #, c-format msgid "column \"%s\" named in key does not exist" msgstr "kolumn \"%s\" angiven i en nyckel existerar inte" -#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1831 +#: commands/indexcmds.c:1845 parser/parse_utilcmd.c:1859 #, c-format msgid "expressions are not supported in included columns" msgstr "uttryck stöds inte i inkluderade kolumner" @@ -8657,8 +8657,8 @@ msgstr "inkluderad kolumn stöder inte NULLS FIRST/LAST-flaggor" msgid "could not determine which collation to use for index expression" msgstr "kunde inte bestämma vilken jämförelse (collation) som skulle användas för indexuttryck" -#: commands/indexcmds.c:1962 commands/tablecmds.c:17603 commands/typecmds.c:807 -#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3795 +#: commands/indexcmds.c:1962 commands/tablecmds.c:17631 commands/typecmds.c:807 +#: parser/parse_expr.c:2690 parser/parse_type.c:570 parser/parse_utilcmd.c:3823 #: utils/adt/misc.c:601 #, c-format msgid "collations are not supported by type %s" @@ -8694,8 +8694,8 @@ msgstr "accessmetod \"%s\" stöder inte ASC/DESC-flaggor" msgid "access method \"%s\" does not support NULLS FIRST/LAST options" msgstr "accessmetod \"%s\" stöder inte NULLS FIRST/LAST-flaggor" -#: commands/indexcmds.c:2144 commands/tablecmds.c:17628 -#: commands/tablecmds.c:17634 commands/typecmds.c:2302 +#: commands/indexcmds.c:2144 commands/tablecmds.c:17656 +#: commands/tablecmds.c:17662 commands/typecmds.c:2302 #, c-format msgid "data type %s has no default operator class for access method \"%s\"" msgstr "datatyp %s har ingen standardoperatorklass för accessmetod \"%s\"" @@ -8812,7 +8812,7 @@ msgstr "kan inte låsa relationen \"%s\"" msgid "CONCURRENTLY cannot be used when the materialized view is not populated" msgstr "CONCURRENTLY kan inte användas när den materialiserade vyn inte är populerad" -#: commands/matview.c:199 gram.y:17995 +#: commands/matview.c:199 gram.y:18002 #, c-format msgid "%s and %s options cannot be used together" msgstr "flaggorna %s och %s kan inte användas ihop" @@ -9112,8 +9112,8 @@ msgstr "operatorattribut \"%s\" kan inte ändras" #: commands/policy.c:89 commands/policy.c:382 commands/statscmds.c:149 #: commands/tablecmds.c:1606 commands/tablecmds.c:2194 #: commands/tablecmds.c:3432 commands/tablecmds.c:6354 -#: commands/tablecmds.c:9197 commands/tablecmds.c:17181 -#: commands/tablecmds.c:17216 commands/trigger.c:328 commands/trigger.c:1378 +#: commands/tablecmds.c:9197 commands/tablecmds.c:17209 +#: commands/tablecmds.c:17244 commands/trigger.c:328 commands/trigger.c:1378 #: commands/trigger.c:1488 rewrite/rewriteDefine.c:279 #: rewrite/rewriteDefine.c:963 rewrite/rewriteRemove.c:80 #, c-format @@ -9462,98 +9462,98 @@ msgstr "lastval är inte definierad ännu i denna session" msgid "setval: value %lld is out of bounds for sequence \"%s\" (%lld..%lld)" msgstr "setval: värdet %lld är utanför giltigt intervall för sekvensen \"%s\" (%lld..%lld)" -#: commands/sequence.c:1372 +#: commands/sequence.c:1375 #, c-format msgid "invalid sequence option SEQUENCE NAME" msgstr "ogiltig sekvensinställning SEQUENCE NAME" -#: commands/sequence.c:1398 +#: commands/sequence.c:1401 #, c-format msgid "identity column type must be smallint, integer, or bigint" msgstr "identitetskolumntyp måste vara smallint, integer eller bigint" -#: commands/sequence.c:1399 +#: commands/sequence.c:1402 #, c-format msgid "sequence type must be smallint, integer, or bigint" msgstr "sekvenstyp måste vara smallint, integer eller bigint" -#: commands/sequence.c:1433 +#: commands/sequence.c:1436 #, c-format msgid "INCREMENT must not be zero" msgstr "INCREMENT får inte vara noll" -#: commands/sequence.c:1481 +#: commands/sequence.c:1484 #, c-format msgid "MAXVALUE (%lld) is out of range for sequence data type %s" msgstr "MAXVALUE (%lld) är utanför giltigt intervall för sekvensdatatyp %s" -#: commands/sequence.c:1513 +#: commands/sequence.c:1516 #, c-format msgid "MINVALUE (%lld) is out of range for sequence data type %s" msgstr "MINVALUE (%lld) är utanför giltigt intervall för sekvensdatatyp %s" -#: commands/sequence.c:1521 +#: commands/sequence.c:1524 #, c-format msgid "MINVALUE (%lld) must be less than MAXVALUE (%lld)" msgstr "MINVALUE (%lld) måste vara mindre än MAXVALUE (%lld)" -#: commands/sequence.c:1542 +#: commands/sequence.c:1545 #, c-format msgid "START value (%lld) cannot be less than MINVALUE (%lld)" msgstr "START-värde (%lld) kan inte vara mindre än MINVALUE (%lld)" -#: commands/sequence.c:1548 +#: commands/sequence.c:1551 #, c-format msgid "START value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "START-värde (%lld) kan inte vara större än MAXVALUE (%lld)" -#: commands/sequence.c:1572 +#: commands/sequence.c:1575 #, c-format msgid "RESTART value (%lld) cannot be less than MINVALUE (%lld)" msgstr "RESTART-värde (%lld) kan inte vara mindre än MINVALUE (%lld)" -#: commands/sequence.c:1578 +#: commands/sequence.c:1581 #, c-format msgid "RESTART value (%lld) cannot be greater than MAXVALUE (%lld)" msgstr "RESTART-värde (%lld) kan inte vara större än MAXVALUE (%lld)" -#: commands/sequence.c:1589 +#: commands/sequence.c:1592 #, c-format msgid "CACHE (%lld) must be greater than zero" msgstr "CACHE (%lld) måste vara större än noll" -#: commands/sequence.c:1625 +#: commands/sequence.c:1628 #, c-format msgid "invalid OWNED BY option" msgstr "ogiltigt alternativ till OWNED BY" -#: commands/sequence.c:1626 +#: commands/sequence.c:1629 #, c-format msgid "Specify OWNED BY table.column or OWNED BY NONE." msgstr "Ange OWNED BY tabell.kolumn eller OWNED BY NONE." -#: commands/sequence.c:1651 +#: commands/sequence.c:1654 #, c-format msgid "sequence cannot be owned by relation \"%s\"" msgstr "sekvens kan inte ägas av relationen \"%s\"" -#: commands/sequence.c:1659 +#: commands/sequence.c:1662 #, c-format msgid "sequence must have same owner as table it is linked to" msgstr "sekvensen måste ha samma ägare som tabellen den är länkad till" -#: commands/sequence.c:1663 +#: commands/sequence.c:1666 #, c-format msgid "sequence must be in same schema as table it is linked to" msgstr "tabellen måste vara i samma schema som tabellen den är länkad till" -#: commands/sequence.c:1685 +#: commands/sequence.c:1688 #, c-format msgid "cannot change ownership of identity sequence" msgstr "kan inte byta ägare på identitetssekvens" -#: commands/sequence.c:1686 commands/tablecmds.c:13966 -#: commands/tablecmds.c:16603 +#: commands/sequence.c:1689 commands/tablecmds.c:13994 +#: commands/tablecmds.c:16631 #, c-format msgid "Sequence \"%s\" is linked to table \"%s\"." msgstr "Sekvens \"%s\" är länkad till tabell \"%s\"" @@ -9886,8 +9886,8 @@ msgstr "materialiserad vy \"%s\" finns inte, hoppar över" msgid "Use DROP MATERIALIZED VIEW to remove a materialized view." msgstr "Använd DROP MATERIALIZED VIEW för att ta bort en materialiserad vy." -#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19119 -#: parser/parse_utilcmd.c:2277 +#: commands/tablecmds.c:269 commands/tablecmds.c:293 commands/tablecmds.c:19147 +#: parser/parse_utilcmd.c:2305 #, c-format msgid "index \"%s\" does not exist" msgstr "index \"%s\" finns inte" @@ -9910,8 +9910,8 @@ msgstr "\"%s\" är inte en typ" msgid "Use DROP TYPE to remove a type." msgstr "Använd DROP TYPE för att ta bort en typ." -#: commands/tablecmds.c:281 commands/tablecmds.c:13805 -#: commands/tablecmds.c:16306 +#: commands/tablecmds.c:281 commands/tablecmds.c:13833 +#: commands/tablecmds.c:16334 #, c-format msgid "foreign table \"%s\" does not exist" msgstr "främmande tabell \"%s\" finns inte" @@ -9935,7 +9935,7 @@ msgstr "ON COMMIT kan bara användas på temporära tabeller" msgid "cannot create temporary table within security-restricted operation" msgstr "kan inte skapa temporär tabell i en säkerhetsbegränsad operation" -#: commands/tablecmds.c:765 commands/tablecmds.c:15113 +#: commands/tablecmds.c:765 commands/tablecmds.c:15141 #, c-format msgid "relation \"%s\" would be inherited from more than once" msgstr "relationen \"%s\" skulle ärvas mer än en gång" @@ -10005,7 +10005,7 @@ msgstr "kan inte trunkera främmande tabell \"%s\"" msgid "cannot truncate temporary tables of other sessions" msgstr "kan inte trunkera temporära tabeller tillhörande andra sessioner" -#: commands/tablecmds.c:2459 commands/tablecmds.c:15010 +#: commands/tablecmds.c:2459 commands/tablecmds.c:15038 #, c-format msgid "cannot inherit from partitioned table \"%s\"" msgstr "kan inte ärva från partitionerad tabell \"%s\"" @@ -10015,8 +10015,8 @@ msgstr "kan inte ärva från partitionerad tabell \"%s\"" msgid "cannot inherit from partition \"%s\"" msgstr "kan inte ärva från partition \"%s\"" -#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2507 -#: parser/parse_utilcmd.c:2649 +#: commands/tablecmds.c:2472 parser/parse_utilcmd.c:2535 +#: parser/parse_utilcmd.c:2677 #, c-format msgid "inherited relation \"%s\" is not a table or foreign table" msgstr "ärvd relation \"%s\" är inte en tabell eller främmande tabell" @@ -10026,12 +10026,12 @@ msgstr "ärvd relation \"%s\" är inte en tabell eller främmande tabell" msgid "cannot create a temporary relation as partition of permanent relation \"%s\"" msgstr "kan inte skapa en temporär relation som partition till en permanent relation \"%s\"" -#: commands/tablecmds.c:2493 commands/tablecmds.c:14989 +#: commands/tablecmds.c:2493 commands/tablecmds.c:15017 #, c-format msgid "cannot inherit from temporary relation \"%s\"" msgstr "kan inte ärva från en temporär relation \"%s\"" -#: commands/tablecmds.c:2503 commands/tablecmds.c:14997 +#: commands/tablecmds.c:2503 commands/tablecmds.c:15025 #, c-format msgid "cannot inherit from temporary relation of another session" msgstr "kan inte ärva från en temporär relation i en annan session" @@ -10086,19 +10086,19 @@ msgid "inherited column \"%s\" has a generation conflict" msgstr "ärvd kolumn \"%s\" har en genereringskonflikt" #: commands/tablecmds.c:2714 commands/tablecmds.c:2769 -#: commands/tablecmds.c:12496 parser/parse_utilcmd.c:1269 -#: parser/parse_utilcmd.c:1312 parser/parse_utilcmd.c:1759 -#: parser/parse_utilcmd.c:1867 +#: commands/tablecmds.c:12524 parser/parse_utilcmd.c:1297 +#: parser/parse_utilcmd.c:1340 parser/parse_utilcmd.c:1787 +#: parser/parse_utilcmd.c:1895 #, c-format msgid "cannot convert whole-row table reference" msgstr "kan inte konvertera hela-raden-tabellreferens" -#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1270 +#: commands/tablecmds.c:2715 parser/parse_utilcmd.c:1298 #, c-format msgid "Generation expression for column \"%s\" contains a whole-row reference to table \"%s\"." msgstr "Genereringsuttryck för kolumn \"%s\" innehåller en hela-raden-referens på tabellen \"%s\"." -#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1313 +#: commands/tablecmds.c:2770 parser/parse_utilcmd.c:1341 #, c-format msgid "Constraint \"%s\" contains a whole-row reference to table \"%s\"." msgstr "Villkor \"%s\" innehåller en hela-raden-referens på tabellen \"%s\"." @@ -10331,12 +10331,12 @@ msgstr "kan inte lägga till kolumn till typad tabell" msgid "cannot add column to a partition" msgstr "kan inte lägga till kolumn till partition" -#: commands/tablecmds.c:6829 commands/tablecmds.c:15240 +#: commands/tablecmds.c:6829 commands/tablecmds.c:15268 #, c-format msgid "child table \"%s\" has different type for column \"%s\"" msgstr "barntabell \"%s\" har annan typ på kolumn \"%s\"" -#: commands/tablecmds.c:6835 commands/tablecmds.c:15247 +#: commands/tablecmds.c:6835 commands/tablecmds.c:15275 #, c-format msgid "child table \"%s\" has different collation for column \"%s\"" msgstr "barntabell \"%s\" har annan jämförelse (collation) på kolumn \"%s\"" @@ -10366,13 +10366,13 @@ msgstr "kolumn \"%s\" i relation \"%s\" finns redan, hoppar över" msgid "column \"%s\" of relation \"%s\" already exists" msgstr "kolumn \"%s\" i relation \"%s\" finns redan" -#: commands/tablecmds.c:7291 commands/tablecmds.c:12135 +#: commands/tablecmds.c:7291 commands/tablecmds.c:12152 #, c-format msgid "cannot remove constraint from only the partitioned table when partitions exist" msgstr "kan inte ta bort villkor från bara den partitionerade tabellen när partitioner finns" #: commands/tablecmds.c:7292 commands/tablecmds.c:7609 -#: commands/tablecmds.c:8610 commands/tablecmds.c:12136 +#: commands/tablecmds.c:8610 commands/tablecmds.c:12153 #, c-format msgid "Do not specify the ONLY keyword." msgstr "Ange inte nyckelordet ONLY." @@ -10382,8 +10382,8 @@ msgstr "Ange inte nyckelordet ONLY." #: commands/tablecmds.c:7885 commands/tablecmds.c:7944 #: commands/tablecmds.c:8063 commands/tablecmds.c:8202 #: commands/tablecmds.c:8272 commands/tablecmds.c:8428 -#: commands/tablecmds.c:12290 commands/tablecmds.c:13828 -#: commands/tablecmds.c:16397 +#: commands/tablecmds.c:12307 commands/tablecmds.c:13856 +#: commands/tablecmds.c:16425 #, c-format msgid "cannot alter system column \"%s\"" msgstr "kan inte ändra systemkolumn \"%s\"" @@ -10618,676 +10618,687 @@ msgstr "Nyckelkolumner \"%s\" och \"%s\" har inkompatibla typer %s och %s." msgid "column \"%s\" referenced in ON DELETE SET action must be part of foreign key" msgstr "kolumn \"%s\" refererad i ON DELETE SET-aktion måste vara en del av en främmande nyckel" -#: commands/tablecmds.c:9866 commands/tablecmds.c:10334 -#: parser/parse_utilcmd.c:799 parser/parse_utilcmd.c:928 +#: commands/tablecmds.c:9866 commands/tablecmds.c:10351 +#: parser/parse_utilcmd.c:827 parser/parse_utilcmd.c:956 #, c-format msgid "foreign key constraints are not supported on foreign tables" msgstr "främmande nyckel-villkor stöds inte för främmande tabeller" -#: commands/tablecmds.c:10886 commands/tablecmds.c:11167 -#: commands/tablecmds.c:12092 commands/tablecmds.c:12167 +#: commands/tablecmds.c:10334 +#, c-format +msgid "can't attach table \"%s\" as a partition which is referenced by foreign key \"%s\"" +msgstr "kan inte ansluta tabell \"%s\" som en partition vilken refereras av främmande nyckel \"%s\"" + +#: commands/tablecmds.c:10903 commands/tablecmds.c:11184 +#: commands/tablecmds.c:12109 commands/tablecmds.c:12184 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist" msgstr "villkor \"%s\" i relation \"%s\" finns inte" -#: commands/tablecmds.c:10893 +#: commands/tablecmds.c:10910 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key constraint" msgstr "villkor \"%s\" i relation \"%s\" är inte ett främmande nyckelvillkor" -#: commands/tablecmds.c:10931 +#: commands/tablecmds.c:10948 #, c-format msgid "cannot alter constraint \"%s\" on relation \"%s\"" msgstr "kan inte ändra villkoret \"%s\" i relation \"%s\"" -#: commands/tablecmds.c:10934 +#: commands/tablecmds.c:10951 #, c-format msgid "Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\"." msgstr "Villkoret \"%s\" är härlett från villkoret \"%s\" i relation \"%s\"" -#: commands/tablecmds.c:10936 +#: commands/tablecmds.c:10953 #, c-format msgid "You may alter the constraint it derives from, instead." msgstr "Du kan istället ändra på villkoret det är härlett från." -#: commands/tablecmds.c:11175 +#: commands/tablecmds.c:11192 #, c-format msgid "constraint \"%s\" of relation \"%s\" is not a foreign key or check constraint" msgstr "villkor \"%s\" i relation \"%s\" är inte en främmande nyckel eller ett check-villkor" -#: commands/tablecmds.c:11253 +#: commands/tablecmds.c:11270 #, c-format msgid "constraint must be validated on child tables too" msgstr "villkoret måste valideras för barntabellerna också" -#: commands/tablecmds.c:11343 +#: commands/tablecmds.c:11360 #, c-format msgid "column \"%s\" referenced in foreign key constraint does not exist" msgstr "kolumn \"%s\" som refereras till i främmande nyckelvillkor finns inte" -#: commands/tablecmds.c:11349 +#: commands/tablecmds.c:11366 #, c-format msgid "system columns cannot be used in foreign keys" msgstr "systemkolumner kan inte användas i främmande nycklar" -#: commands/tablecmds.c:11353 +#: commands/tablecmds.c:11370 #, c-format msgid "cannot have more than %d keys in a foreign key" msgstr "kan inte ha mer än %d nycklar i en främmande nyckel" -#: commands/tablecmds.c:11419 +#: commands/tablecmds.c:11436 #, c-format msgid "cannot use a deferrable primary key for referenced table \"%s\"" msgstr "kan inte använda en \"deferrable\" primärnyckel för refererad tabell \"%s\"" -#: commands/tablecmds.c:11436 +#: commands/tablecmds.c:11453 #, c-format msgid "there is no primary key for referenced table \"%s\"" msgstr "det finns ingen primärnyckel för refererad tabell \"%s\"" -#: commands/tablecmds.c:11505 +#: commands/tablecmds.c:11522 #, c-format msgid "foreign key referenced-columns list must not contain duplicates" msgstr "främmande nyckel-refererade kolumnlistor får inte innehålla duplikat" -#: commands/tablecmds.c:11599 +#: commands/tablecmds.c:11616 #, c-format msgid "cannot use a deferrable unique constraint for referenced table \"%s\"" msgstr "kan inte använda ett \"deferrable\" unikt integritetsvillkor för refererad tabell \"%s\"" -#: commands/tablecmds.c:11604 +#: commands/tablecmds.c:11621 #, c-format msgid "there is no unique constraint matching given keys for referenced table \"%s\"" msgstr "finns inget unique-villkor som matchar de givna nycklarna i den refererade tabellen \"%s\"" -#: commands/tablecmds.c:12048 +#: commands/tablecmds.c:12065 #, c-format msgid "cannot drop inherited constraint \"%s\" of relation \"%s\"" msgstr "kan inte ta bort ärvt villkor \"%s\" i relation \"%s\"" -#: commands/tablecmds.c:12098 +#: commands/tablecmds.c:12115 #, c-format msgid "constraint \"%s\" of relation \"%s\" does not exist, skipping" msgstr "villkor \"%s\" i relation \"%s\" finns inte, hoppar över" -#: commands/tablecmds.c:12274 +#: commands/tablecmds.c:12291 #, c-format msgid "cannot alter column type of typed table" msgstr "kan inte ändra kolumntyp på typad tabell" -#: commands/tablecmds.c:12301 +#: commands/tablecmds.c:12317 +#, c-format +msgid "cannot specify USING when altering type of generated column" +msgstr "kan inte ange USING när man ändrar typ på en genererad kolumn" + +#: commands/tablecmds.c:12318 commands/tablecmds.c:17474 +#: commands/tablecmds.c:17564 commands/trigger.c:668 +#: rewrite/rewriteHandler.c:930 rewrite/rewriteHandler.c:965 +#, c-format +msgid "Column \"%s\" is a generated column." +msgstr "Kolumnen \"%s\" är en genererad kolumn." + +#: commands/tablecmds.c:12328 #, c-format msgid "cannot alter inherited column \"%s\"" msgstr "kan inte ändra ärvd kolumn \"%s\"" -#: commands/tablecmds.c:12310 +#: commands/tablecmds.c:12337 #, c-format msgid "cannot alter column \"%s\" because it is part of the partition key of relation \"%s\"" msgstr "kan inte ändra kolumnen \"%s\" då den är del av partitionsnyckeln för relationen \"%s\"" -#: commands/tablecmds.c:12360 +#: commands/tablecmds.c:12387 #, c-format msgid "result of USING clause for column \"%s\" cannot be cast automatically to type %s" msgstr "resultatet av USING-klausul för kolumn \"%s\" kan inte automatiskt typomvandlas till typen %s" -#: commands/tablecmds.c:12363 +#: commands/tablecmds.c:12390 #, c-format msgid "You might need to add an explicit cast." msgstr "Du kan behöva lägga till en explicit typomvandling." -#: commands/tablecmds.c:12367 +#: commands/tablecmds.c:12394 #, c-format msgid "column \"%s\" cannot be cast automatically to type %s" msgstr "kolumn \"%s\" kan inte automatiskt typomvandlas till typ %s" #. translator: USING is SQL, don't translate it -#: commands/tablecmds.c:12370 +#: commands/tablecmds.c:12398 #, c-format msgid "You might need to specify \"USING %s::%s\"." msgstr "Du kan behöva ange \"USING %s::%s\"." -#: commands/tablecmds.c:12469 +#: commands/tablecmds.c:12497 #, c-format msgid "cannot alter inherited column \"%s\" of relation \"%s\"" msgstr "kan inte ändra ärvd kolumn \"%s\" i relation \"%s\"" -#: commands/tablecmds.c:12497 +#: commands/tablecmds.c:12525 #, c-format msgid "USING expression contains a whole-row table reference." msgstr "USING-uttryck innehåller en hela-raden-tabellreferens." -#: commands/tablecmds.c:12508 +#: commands/tablecmds.c:12536 #, c-format msgid "type of inherited column \"%s\" must be changed in child tables too" msgstr "typen av den ärvda kolumnen \"%s\" måste ändras i barntabellerna också" -#: commands/tablecmds.c:12633 +#: commands/tablecmds.c:12661 #, c-format msgid "cannot alter type of column \"%s\" twice" msgstr "kan inte ändra typen på kolumn \"%s\" två gånger" -#: commands/tablecmds.c:12671 +#: commands/tablecmds.c:12699 #, c-format msgid "generation expression for column \"%s\" cannot be cast automatically to type %s" msgstr "genereringsuttryck för kolumn \"%s\" kan inte automatiskt typomvandlas till typ %s" -#: commands/tablecmds.c:12676 +#: commands/tablecmds.c:12704 #, c-format msgid "default for column \"%s\" cannot be cast automatically to type %s" msgstr "\"default\" för kolumn \"%s\" kan inte automatiskt typomvandlas till typ \"%s\"" -#: commands/tablecmds.c:12764 +#: commands/tablecmds.c:12792 #, c-format msgid "cannot alter type of a column used by a function or procedure" msgstr "kan inte ändra typ på en kolumn som används av en funktion eller procedur" -#: commands/tablecmds.c:12765 commands/tablecmds.c:12779 -#: commands/tablecmds.c:12798 commands/tablecmds.c:12816 -#: commands/tablecmds.c:12874 +#: commands/tablecmds.c:12793 commands/tablecmds.c:12807 +#: commands/tablecmds.c:12826 commands/tablecmds.c:12844 +#: commands/tablecmds.c:12902 #, c-format msgid "%s depends on column \"%s\"" msgstr "%s beror på kolumn \"%s\"" -#: commands/tablecmds.c:12778 +#: commands/tablecmds.c:12806 #, c-format msgid "cannot alter type of a column used by a view or rule" msgstr "kan inte ändra typ på en kolumn som används av en vy eller en regel" -#: commands/tablecmds.c:12797 +#: commands/tablecmds.c:12825 #, c-format msgid "cannot alter type of a column used in a trigger definition" msgstr "kan inte ändra typ på en kolumn som används i en triggerdefinition" -#: commands/tablecmds.c:12815 +#: commands/tablecmds.c:12843 #, c-format msgid "cannot alter type of a column used in a policy definition" msgstr "kan inte ändra typ på en kolumn som används av i en policydefinition" -#: commands/tablecmds.c:12846 +#: commands/tablecmds.c:12874 #, c-format msgid "cannot alter type of a column used by a generated column" msgstr "kan inte ändra typ på en kolumn som används av en genererad kolumn" -#: commands/tablecmds.c:12847 +#: commands/tablecmds.c:12875 #, c-format msgid "Column \"%s\" is used by generated column \"%s\"." msgstr "Kolumn \"%s\" används av genererad kolumn \"%s\"." -#: commands/tablecmds.c:12873 +#: commands/tablecmds.c:12901 #, c-format msgid "cannot alter type of a column used by a publication WHERE clause" msgstr "kan inte ändra typ på en kolumn som används av en publicerings WHERE-klausul" -#: commands/tablecmds.c:13936 commands/tablecmds.c:13948 +#: commands/tablecmds.c:13964 commands/tablecmds.c:13976 #, c-format msgid "cannot change owner of index \"%s\"" msgstr "kan inte byta ägare på index \"%s\"" -#: commands/tablecmds.c:13938 commands/tablecmds.c:13950 +#: commands/tablecmds.c:13966 commands/tablecmds.c:13978 #, c-format msgid "Change the ownership of the index's table, instead." msgstr "Byt ägare på indexets tabell istället." -#: commands/tablecmds.c:13964 +#: commands/tablecmds.c:13992 #, c-format msgid "cannot change owner of sequence \"%s\"" msgstr "kan inte byta ägare på sekvens \"%s\"" -#: commands/tablecmds.c:13978 commands/tablecmds.c:17292 -#: commands/tablecmds.c:17311 +#: commands/tablecmds.c:14006 commands/tablecmds.c:17320 +#: commands/tablecmds.c:17339 #, c-format msgid "Use ALTER TYPE instead." msgstr "Använd ALTER TYPE istället." -#: commands/tablecmds.c:13987 +#: commands/tablecmds.c:14015 #, c-format msgid "cannot change owner of relation \"%s\"" msgstr "kan inte byta ägare på relationen \"%s\"" -#: commands/tablecmds.c:14349 +#: commands/tablecmds.c:14377 #, c-format msgid "cannot have multiple SET TABLESPACE subcommands" msgstr "kan inte ha flera underkommandon SET TABLESPACE" -#: commands/tablecmds.c:14426 +#: commands/tablecmds.c:14454 #, c-format msgid "cannot set options for relation \"%s\"" msgstr "kan inte sätta inställningar på relationen \"%s\"" -#: commands/tablecmds.c:14460 commands/view.c:521 +#: commands/tablecmds.c:14488 commands/view.c:521 #, c-format msgid "WITH CHECK OPTION is supported only on automatically updatable views" msgstr "WITH CHECK OPTION stöds bara på automatiskt uppdateringsbara vyer" -#: commands/tablecmds.c:14710 +#: commands/tablecmds.c:14738 #, c-format msgid "only tables, indexes, and materialized views exist in tablespaces" msgstr "bara tabeller, index och materialiserade vyer finns i tablespace:er" -#: commands/tablecmds.c:14722 +#: commands/tablecmds.c:14750 #, c-format msgid "cannot move relations in to or out of pg_global tablespace" msgstr "kan inte flytta relationer in eller ut från tablespace pg_global" -#: commands/tablecmds.c:14814 +#: commands/tablecmds.c:14842 #, c-format msgid "aborting because lock on relation \"%s.%s\" is not available" msgstr "avbryter då lås på relation \"%s.%s\" inte är tillgängligt" -#: commands/tablecmds.c:14830 +#: commands/tablecmds.c:14858 #, c-format msgid "no matching relations in tablespace \"%s\" found" msgstr "inga matchande relationer i tablespace \"%s\" hittades" -#: commands/tablecmds.c:14948 +#: commands/tablecmds.c:14976 #, c-format msgid "cannot change inheritance of typed table" msgstr "kan inte ändra arv på en typad tabell" -#: commands/tablecmds.c:14953 commands/tablecmds.c:15509 +#: commands/tablecmds.c:14981 commands/tablecmds.c:15537 #, c-format msgid "cannot change inheritance of a partition" msgstr "kan inte ändra arv på en partition" -#: commands/tablecmds.c:14958 +#: commands/tablecmds.c:14986 #, c-format msgid "cannot change inheritance of partitioned table" msgstr "kan inte ändra arv på en partitionerad tabell" -#: commands/tablecmds.c:15004 +#: commands/tablecmds.c:15032 #, c-format msgid "cannot inherit to temporary relation of another session" msgstr "kan inte ärva av en temporär tabell för en annan session" -#: commands/tablecmds.c:15017 +#: commands/tablecmds.c:15045 #, c-format msgid "cannot inherit from a partition" msgstr "kan inte ärva från en partition" -#: commands/tablecmds.c:15039 commands/tablecmds.c:17947 +#: commands/tablecmds.c:15067 commands/tablecmds.c:17975 #, c-format msgid "circular inheritance not allowed" msgstr "cirkulärt arv är inte tillåtet" -#: commands/tablecmds.c:15040 commands/tablecmds.c:17948 +#: commands/tablecmds.c:15068 commands/tablecmds.c:17976 #, c-format msgid "\"%s\" is already a child of \"%s\"." msgstr "\"%s\" är redan ett barn till \"%s\"" -#: commands/tablecmds.c:15053 +#: commands/tablecmds.c:15081 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming an inheritance child" msgstr "trigger \"%s\" förhindrar tabell \"%s\" från att bli ett arvsbarn" -#: commands/tablecmds.c:15055 +#: commands/tablecmds.c:15083 #, c-format msgid "ROW triggers with transition tables are not supported in inheritance hierarchies." msgstr "ROW-triggrar med övergångstabeller stöds inte i arvshierarkier." -#: commands/tablecmds.c:15258 +#: commands/tablecmds.c:15286 #, c-format msgid "column \"%s\" in child table must be marked NOT NULL" msgstr "kolumn \"%s\" i barntabell måste vara markerad NOT NULL" -#: commands/tablecmds.c:15267 +#: commands/tablecmds.c:15295 #, c-format msgid "column \"%s\" in child table must be a generated column" msgstr "kolumn \"%s\" i barntabell måste vara en genererad kolumn" -#: commands/tablecmds.c:15317 +#: commands/tablecmds.c:15345 #, c-format msgid "column \"%s\" in child table has a conflicting generation expression" msgstr "kolumn \"%s\" i barntabell har ett motstridigt genereringsuttryck" -#: commands/tablecmds.c:15345 +#: commands/tablecmds.c:15373 #, c-format msgid "child table is missing column \"%s\"" msgstr "barntabell saknar kolumn \"%s\"" -#: commands/tablecmds.c:15433 +#: commands/tablecmds.c:15461 #, c-format msgid "child table \"%s\" has different definition for check constraint \"%s\"" msgstr "barntabell \"%s\" har annan definition av check-villkor \"%s\"" -#: commands/tablecmds.c:15441 +#: commands/tablecmds.c:15469 #, c-format msgid "constraint \"%s\" conflicts with non-inherited constraint on child table \"%s\"" msgstr "villkor \"%s\" står i konflikt med icke-ärvt villkor på barntabell \"%s\"" -#: commands/tablecmds.c:15452 +#: commands/tablecmds.c:15480 #, c-format msgid "constraint \"%s\" conflicts with NOT VALID constraint on child table \"%s\"" msgstr "villkor \"%s\" står i konflikt med NOT VALID-villkor på barntabell \"%s\"" -#: commands/tablecmds.c:15487 +#: commands/tablecmds.c:15515 #, c-format msgid "child table is missing constraint \"%s\"" msgstr "barntabell saknar riktighetsvillkor \"%s\"" -#: commands/tablecmds.c:15573 +#: commands/tablecmds.c:15601 #, c-format msgid "partition \"%s\" already pending detach in partitioned table \"%s.%s\"" msgstr "partition \"%s\" har redan en pågående bortkoppling i partitionerad tabell \"%s.%s\"" -#: commands/tablecmds.c:15602 commands/tablecmds.c:15650 +#: commands/tablecmds.c:15630 commands/tablecmds.c:15678 #, c-format msgid "relation \"%s\" is not a partition of relation \"%s\"" msgstr "relationen \"%s\" är inte partition av relationen \"%s\"" -#: commands/tablecmds.c:15656 +#: commands/tablecmds.c:15684 #, c-format msgid "relation \"%s\" is not a parent of relation \"%s\"" msgstr "relationen \"%s\" är inte en förälder till relationen \"%s\"" -#: commands/tablecmds.c:15884 +#: commands/tablecmds.c:15912 #, c-format msgid "typed tables cannot inherit" msgstr "typade tabeller kan inte ärva" -#: commands/tablecmds.c:15914 +#: commands/tablecmds.c:15942 #, c-format msgid "table is missing column \"%s\"" msgstr "tabell saknar kolumn \"%s\"" -#: commands/tablecmds.c:15925 +#: commands/tablecmds.c:15953 #, c-format msgid "table has column \"%s\" where type requires \"%s\"" msgstr "tabell har kolumn \"%s\" där typen kräver \"%s\"" -#: commands/tablecmds.c:15934 +#: commands/tablecmds.c:15962 #, c-format msgid "table \"%s\" has different type for column \"%s\"" msgstr "tabell \"%s\" har annan typ på kolumn \"%s\"" -#: commands/tablecmds.c:15948 +#: commands/tablecmds.c:15976 #, c-format msgid "table has extra column \"%s\"" msgstr "tabell har extra kolumn \"%s\"" -#: commands/tablecmds.c:16000 +#: commands/tablecmds.c:16028 #, c-format msgid "\"%s\" is not a typed table" msgstr "\"%s\" är inte en typad tabell" -#: commands/tablecmds.c:16174 +#: commands/tablecmds.c:16202 #, c-format msgid "cannot use non-unique index \"%s\" as replica identity" msgstr "kan inte använda icke-unikt index \"%s\" som replikaidentitet" -#: commands/tablecmds.c:16180 +#: commands/tablecmds.c:16208 #, c-format msgid "cannot use non-immediate index \"%s\" as replica identity" msgstr "kan inte använda icke-immediate-index \"%s\" som replikaidentitiet" -#: commands/tablecmds.c:16186 +#: commands/tablecmds.c:16214 #, c-format msgid "cannot use expression index \"%s\" as replica identity" msgstr "kan inte använda uttrycksindex \"%s\" som replikaidentitiet" -#: commands/tablecmds.c:16192 +#: commands/tablecmds.c:16220 #, c-format msgid "cannot use partial index \"%s\" as replica identity" msgstr "kan inte använda partiellt index \"%s\" som replikaidentitiet" -#: commands/tablecmds.c:16209 +#: commands/tablecmds.c:16237 #, c-format msgid "index \"%s\" cannot be used as replica identity because column %d is a system column" msgstr "index \"%s\" kan inte användas som replikaidentitet då kolumn %d är en systemkolumn" -#: commands/tablecmds.c:16216 +#: commands/tablecmds.c:16244 #, c-format msgid "index \"%s\" cannot be used as replica identity because column \"%s\" is nullable" msgstr "index \"%s\" kan inte användas som replikaidentitet då kolumn \"%s\" kan vare null" -#: commands/tablecmds.c:16463 +#: commands/tablecmds.c:16491 #, c-format msgid "cannot change logged status of table \"%s\" because it is temporary" msgstr "kan inte ändra loggningsstatus för tabell \"%s\" då den är temporär" -#: commands/tablecmds.c:16487 +#: commands/tablecmds.c:16515 #, c-format msgid "cannot change table \"%s\" to unlogged because it is part of a publication" msgstr "kan inte ändra tabell \"%s\" till ologgad då den är del av en publicering" -#: commands/tablecmds.c:16489 +#: commands/tablecmds.c:16517 #, c-format msgid "Unlogged relations cannot be replicated." msgstr "Ologgade relatrioner kan inte replikeras." -#: commands/tablecmds.c:16534 +#: commands/tablecmds.c:16562 #, c-format msgid "could not change table \"%s\" to logged because it references unlogged table \"%s\"" msgstr "kunde inte ändra tabell \"%s\" till loggad då den refererar till ologgad tabell \"%s\"" -#: commands/tablecmds.c:16544 +#: commands/tablecmds.c:16572 #, c-format msgid "could not change table \"%s\" to unlogged because it references logged table \"%s\"" msgstr "kunde inte ändra tabell \"%s\" till ologgad då den refererar till loggad tabell \"%s\"" -#: commands/tablecmds.c:16602 +#: commands/tablecmds.c:16630 #, c-format msgid "cannot move an owned sequence into another schema" msgstr "kan inte flytta en ägd sekvens till ett annan schema." -#: commands/tablecmds.c:16704 +#: commands/tablecmds.c:16732 #, c-format msgid "relation \"%s\" already exists in schema \"%s\"" msgstr "relationen \"%s\" finns redan i schema \"%s\"" -#: commands/tablecmds.c:17125 +#: commands/tablecmds.c:17153 #, c-format msgid "\"%s\" is not a table or materialized view" msgstr "\"%s\" är inte en tabell eller materialiserad vy" -#: commands/tablecmds.c:17275 +#: commands/tablecmds.c:17303 #, c-format msgid "\"%s\" is not a composite type" msgstr "\"%s\" är inte en composite-typ" -#: commands/tablecmds.c:17303 +#: commands/tablecmds.c:17331 #, c-format msgid "cannot change schema of index \"%s\"" msgstr "kan inte byta schema på indexet \"%s\"" -#: commands/tablecmds.c:17305 commands/tablecmds.c:17317 +#: commands/tablecmds.c:17333 commands/tablecmds.c:17345 #, c-format msgid "Change the schema of the table instead." msgstr "Byt ägare på tabellen istället." -#: commands/tablecmds.c:17309 +#: commands/tablecmds.c:17337 #, c-format msgid "cannot change schema of composite type \"%s\"" msgstr "kan inte byta schema på composite-typen \"%s\"." -#: commands/tablecmds.c:17315 +#: commands/tablecmds.c:17343 #, c-format msgid "cannot change schema of TOAST table \"%s\"" msgstr "kan inte byta schema på TOAST-tabellen \"%s\"" -#: commands/tablecmds.c:17352 +#: commands/tablecmds.c:17380 #, c-format msgid "unrecognized partitioning strategy \"%s\"" msgstr "okänd partitioneringsstrategi \"%s\"" -#: commands/tablecmds.c:17360 +#: commands/tablecmds.c:17388 #, c-format msgid "cannot use \"list\" partition strategy with more than one column" msgstr "kan inte använda list-partioneringsstrategi med mer än en kolumn" -#: commands/tablecmds.c:17426 +#: commands/tablecmds.c:17454 #, c-format msgid "column \"%s\" named in partition key does not exist" msgstr "kolumn \"%s\" angiven i partitioneringsnyckel existerar inte" -#: commands/tablecmds.c:17434 +#: commands/tablecmds.c:17462 #, c-format msgid "cannot use system column \"%s\" in partition key" msgstr "kan inte använda systemkolumn \"%s\" i partitioneringsnyckel" -#: commands/tablecmds.c:17445 commands/tablecmds.c:17535 +#: commands/tablecmds.c:17473 commands/tablecmds.c:17563 #, c-format msgid "cannot use generated column in partition key" msgstr "kan inte använda genererad kolumn i partitioneringsnyckel" -#: commands/tablecmds.c:17446 commands/tablecmds.c:17536 commands/trigger.c:668 -#: rewrite/rewriteHandler.c:929 rewrite/rewriteHandler.c:964 -#, c-format -msgid "Column \"%s\" is a generated column." -msgstr "Kolumnen \"%s\" är en genererad kolumn." - -#: commands/tablecmds.c:17518 +#: commands/tablecmds.c:17546 #, c-format msgid "partition key expressions cannot contain system column references" msgstr "partitioneringsnyckeluttryck kan inte innehålla systemkolumnreferenser" -#: commands/tablecmds.c:17565 +#: commands/tablecmds.c:17593 #, c-format msgid "functions in partition key expression must be marked IMMUTABLE" msgstr "funktioner i partitioneringsuttryck måste vara markerade IMMUTABLE" -#: commands/tablecmds.c:17574 +#: commands/tablecmds.c:17602 #, c-format msgid "cannot use constant expression as partition key" msgstr "kan inte använda konstant uttryck som partitioneringsnyckel" -#: commands/tablecmds.c:17595 +#: commands/tablecmds.c:17623 #, c-format msgid "could not determine which collation to use for partition expression" msgstr "kunde inte lista vilken jämförelse (collation) som skulle användas för partitionsuttryck" -#: commands/tablecmds.c:17630 +#: commands/tablecmds.c:17658 #, c-format msgid "You must specify a hash operator class or define a default hash operator class for the data type." msgstr "Du måste ange en hash-operatorklass eller definiera en default hash-operatorklass för datatypen." -#: commands/tablecmds.c:17636 +#: commands/tablecmds.c:17664 #, c-format msgid "You must specify a btree operator class or define a default btree operator class for the data type." msgstr "Du måste ange en btree-operatorklass eller definiera en default btree-operatorklass för datatypen." -#: commands/tablecmds.c:17887 +#: commands/tablecmds.c:17915 #, c-format msgid "\"%s\" is already a partition" msgstr "\"%s\" är redan en partition" -#: commands/tablecmds.c:17893 +#: commands/tablecmds.c:17921 #, c-format msgid "cannot attach a typed table as partition" msgstr "kan inte ansluta en typad tabell som partition" -#: commands/tablecmds.c:17909 +#: commands/tablecmds.c:17937 #, c-format msgid "cannot attach inheritance child as partition" msgstr "kan inte ansluta ett arvsbarn som partition" -#: commands/tablecmds.c:17923 +#: commands/tablecmds.c:17951 #, c-format msgid "cannot attach inheritance parent as partition" msgstr "kan inte ansluta en arvsförälder som partition" -#: commands/tablecmds.c:17957 +#: commands/tablecmds.c:17985 #, c-format msgid "cannot attach a temporary relation as partition of permanent relation \"%s\"" msgstr "kan inte ansluta en temporär relation som partition till en permanent relation \"%s\"" -#: commands/tablecmds.c:17965 +#: commands/tablecmds.c:17993 #, c-format msgid "cannot attach a permanent relation as partition of temporary relation \"%s\"" msgstr "kan inte ansluta en permanent relation som partition till en temporär relation \"%s\"" -#: commands/tablecmds.c:17973 +#: commands/tablecmds.c:18001 #, c-format msgid "cannot attach as partition of temporary relation of another session" msgstr "kan inte ansluta en partition från en temporär relation som tillhör en annan session" -#: commands/tablecmds.c:17980 +#: commands/tablecmds.c:18008 #, c-format msgid "cannot attach temporary relation of another session as partition" msgstr "kan inte ansluta en temporär relation tillhörande en annan session som partition" -#: commands/tablecmds.c:18000 +#: commands/tablecmds.c:18028 #, c-format msgid "table \"%s\" contains column \"%s\" not found in parent \"%s\"" msgstr "tabell \"%s\" innehåller kolumn \"%s\" som inte finns i föräldern \"%s\"" -#: commands/tablecmds.c:18003 +#: commands/tablecmds.c:18031 #, c-format msgid "The new partition may contain only the columns present in parent." msgstr "Den nya partitionen får bara innehålla kolumner som finns i föräldern." -#: commands/tablecmds.c:18015 +#: commands/tablecmds.c:18043 #, c-format msgid "trigger \"%s\" prevents table \"%s\" from becoming a partition" msgstr "trigger \"%s\" förhindrar att tabell \"%s\" blir en partition" -#: commands/tablecmds.c:18017 +#: commands/tablecmds.c:18045 #, c-format msgid "ROW triggers with transition tables are not supported on partitions." msgstr "ROW-triggrar med övergångstabeller stöds inte för partitioner." -#: commands/tablecmds.c:18196 +#: commands/tablecmds.c:18224 #, c-format msgid "cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"" msgstr "kan inte ansluta främmande tabell \"%s\" som en partition till partitionerad tabell \"%s\"" -#: commands/tablecmds.c:18199 +#: commands/tablecmds.c:18227 #, c-format msgid "Partitioned table \"%s\" contains unique indexes." msgstr "Partitionerad tabell \"%s\" innehåller unika index." -#: commands/tablecmds.c:18514 +#: commands/tablecmds.c:18542 #, c-format msgid "cannot detach partitions concurrently when a default partition exists" msgstr "kan inte parallellt koppla bort en partitionerad tabell när en default-partition finns" -#: commands/tablecmds.c:18623 +#: commands/tablecmds.c:18651 #, c-format msgid "partitioned table \"%s\" was removed concurrently" msgstr "partitionerad tabell \"%s\" togs bort parallellt" -#: commands/tablecmds.c:18629 +#: commands/tablecmds.c:18657 #, c-format msgid "partition \"%s\" was removed concurrently" msgstr "partition \"%s\" togs bort parallellt" -#: commands/tablecmds.c:19153 commands/tablecmds.c:19173 -#: commands/tablecmds.c:19193 commands/tablecmds.c:19212 -#: commands/tablecmds.c:19254 +#: commands/tablecmds.c:19181 commands/tablecmds.c:19201 +#: commands/tablecmds.c:19221 commands/tablecmds.c:19240 +#: commands/tablecmds.c:19282 #, c-format msgid "cannot attach index \"%s\" as a partition of index \"%s\"" msgstr "kan inte ansluta index \"%s\" som en partition till index \"%s\"" -#: commands/tablecmds.c:19156 +#: commands/tablecmds.c:19184 #, c-format msgid "Index \"%s\" is already attached to another index." msgstr "Index \"%s\" är redan ansluten till ett annat index." -#: commands/tablecmds.c:19176 +#: commands/tablecmds.c:19204 #, c-format msgid "Index \"%s\" is not an index on any partition of table \"%s\"." msgstr "Index \"%s\" är inte ett index för någon partition av tabell \"%s\"." -#: commands/tablecmds.c:19196 +#: commands/tablecmds.c:19224 #, c-format msgid "The index definitions do not match." msgstr "Indexdefinitionerna matchar inte." -#: commands/tablecmds.c:19215 +#: commands/tablecmds.c:19243 #, c-format msgid "The index \"%s\" belongs to a constraint in table \"%s\" but no constraint exists for index \"%s\"." msgstr "Indexet \"%s\" tillhör ett villkor på tabell \"%s\" men det finns inga villkor för indexet \"%s\"." -#: commands/tablecmds.c:19257 +#: commands/tablecmds.c:19285 #, c-format msgid "Another index is already attached for partition \"%s\"." msgstr "Ett annat index är redan anslutet för partition \"%s\"." -#: commands/tablecmds.c:19494 +#: commands/tablecmds.c:19522 #, c-format msgid "column data type %s does not support compression" msgstr "kolumndatatypen %s stöder inte komprimering" -#: commands/tablecmds.c:19501 +#: commands/tablecmds.c:19529 #, c-format msgid "invalid compression method \"%s\"" msgstr "ogiltig komprimeringsmetod \"%s\"" @@ -12173,8 +12184,8 @@ msgstr "måste vara en superuser för att skapa bypassrls-användare" msgid "permission denied to create role" msgstr "rättighet saknas för att skapa roll" -#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16437 -#: gram.y:16483 utils/adt/acl.c:5331 utils/adt/acl.c:5337 +#: commands/user.c:287 commands/user.c:1139 commands/user.c:1146 gram.y:16444 +#: gram.y:16490 utils/adt/acl.c:5331 utils/adt/acl.c:5337 #, c-format msgid "role name \"%s\" is reserved" msgstr "rollnamnet \"%s\" är reserverat" @@ -12520,7 +12531,8 @@ msgid_plural "launched %d parallel vacuum workers for index cleanup (planned: %d msgstr[0] "startade %d parallell städarbetare för indexupprensning (planerat: %d)" msgstr[1] "startade %d parallella städarbetare för indexupprensning (planerat: %d)" -#: commands/variable.c:165 utils/misc/guc.c:12115 utils/misc/guc.c:12193 +#: commands/variable.c:165 tcop/postgres.c:3665 utils/misc/guc.c:12133 +#: utils/misc/guc.c:12211 #, c-format msgid "Unrecognized key word: \"%s\"." msgstr "Okänt nyckelord: \"%s\"" @@ -12578,7 +12590,7 @@ msgstr "SET TRANSACTION ISOLATION LEVEL måste anropas innan någon fråga" #: commands/variable.c:541 #, c-format msgid "SET TRANSACTION ISOLATION LEVEL must not be called in a subtransaction" -msgstr "SET TRANSACTION ISOLATION LEVEL får inte anropas i en subtransaktion" +msgstr "SET TRANSACTION ISOLATION LEVEL får inte anropas i en undertransaktion" #: commands/variable.c:548 storage/lmgr/predicate.c:1694 #, c-format @@ -12593,7 +12605,7 @@ msgstr "Du kan använda REPEATABLE READ istället." #: commands/variable.c:567 #, c-format msgid "SET TRANSACTION [NOT] DEFERRABLE cannot be called within a subtransaction" -msgstr "SET TRANSACTION [NOT] DEFERRABLE får inte anropas i en subtransaktion" +msgstr "SET TRANSACTION [NOT] DEFERRABLE får inte anropas i en undertransaktion" #: commands/variable.c:573 #, c-format @@ -12746,7 +12758,7 @@ msgstr "Fråga levererar ett värde för en borttagen kolumn vid position %d." msgid "Table has type %s at ordinal position %d, but query expects %s." msgstr "Tabellen har typ %s vid position %d, men frågan förväntar sig %s." -#: executor/execExpr.c:1098 parser/parse_agg.c:837 +#: executor/execExpr.c:1098 parser/parse_agg.c:835 #, c-format msgid "window function calls cannot be nested" msgstr "fönsterfunktionanrop kan inte nästlas" @@ -12913,175 +12925,175 @@ msgstr "Nyckel %s står i konflilkt med existerande nyckel %s." msgid "Key conflicts with existing key." msgstr "Nyckel står i konflikt med existerande nyckel." -#: executor/execMain.c:1009 +#: executor/execMain.c:1011 #, c-format msgid "cannot change sequence \"%s\"" msgstr "kan inte ändra sekvens \"%s\"" -#: executor/execMain.c:1015 +#: executor/execMain.c:1017 #, c-format msgid "cannot change TOAST relation \"%s\"" msgstr "kan inte ändra TOAST-relation \"%s\"" -#: executor/execMain.c:1033 rewrite/rewriteHandler.c:3103 -#: rewrite/rewriteHandler.c:3983 +#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3112 +#: rewrite/rewriteHandler.c:4000 #, c-format msgid "cannot insert into view \"%s\"" msgstr "kan inte sätta in i vy \"%s\"" -#: executor/execMain.c:1035 rewrite/rewriteHandler.c:3106 -#: rewrite/rewriteHandler.c:3986 +#: executor/execMain.c:1037 rewrite/rewriteHandler.c:3115 +#: rewrite/rewriteHandler.c:4003 #, c-format msgid "To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule." msgstr "För att tillåta insättning i en vy så skapa en INSTEAD OF INSERT-trigger eller en villkorslös ON INSERT DO INSTEAD-regel." -#: executor/execMain.c:1041 rewrite/rewriteHandler.c:3111 -#: rewrite/rewriteHandler.c:3991 +#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3120 +#: rewrite/rewriteHandler.c:4008 #, c-format msgid "cannot update view \"%s\"" msgstr "kan inte uppdatera vy \"%s\"" -#: executor/execMain.c:1043 rewrite/rewriteHandler.c:3114 -#: rewrite/rewriteHandler.c:3994 +#: executor/execMain.c:1045 rewrite/rewriteHandler.c:3123 +#: rewrite/rewriteHandler.c:4011 #, c-format msgid "To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule." msgstr "För att tillåta uppdatering av en vy så skapa en INSTEAD OF UPDATE-trigger eller en villkorslös ON UPDATE DO INSTEAD-regel." -#: executor/execMain.c:1049 rewrite/rewriteHandler.c:3119 -#: rewrite/rewriteHandler.c:3999 +#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3128 +#: rewrite/rewriteHandler.c:4016 #, c-format msgid "cannot delete from view \"%s\"" msgstr "kan inte radera från vy \"%s\"" -#: executor/execMain.c:1051 rewrite/rewriteHandler.c:3122 -#: rewrite/rewriteHandler.c:4002 +#: executor/execMain.c:1053 rewrite/rewriteHandler.c:3131 +#: rewrite/rewriteHandler.c:4019 #, c-format msgid "To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule." msgstr "För att tillåta bortagning i en vy så skapa en INSTEAD OF DELETE-trigger eller en villkorslös ON DELETE DO INSTEAD-regel." -#: executor/execMain.c:1062 +#: executor/execMain.c:1064 #, c-format msgid "cannot change materialized view \"%s\"" msgstr "kan inte ändra materialiserad vy \"%s\"" -#: executor/execMain.c:1074 +#: executor/execMain.c:1076 #, c-format msgid "cannot insert into foreign table \"%s\"" msgstr "kan inte sätta in i främmande tabell \"%s\"" -#: executor/execMain.c:1080 +#: executor/execMain.c:1082 #, c-format msgid "foreign table \"%s\" does not allow inserts" msgstr "främmande tabell \"%s\" tillåter inte insättningar" -#: executor/execMain.c:1087 +#: executor/execMain.c:1089 #, c-format msgid "cannot update foreign table \"%s\"" msgstr "kan inte uppdatera främmande tabell \"%s\"" -#: executor/execMain.c:1093 +#: executor/execMain.c:1095 #, c-format msgid "foreign table \"%s\" does not allow updates" msgstr "främmande tabell \"%s\" tillåter inte uppdateringar" -#: executor/execMain.c:1100 +#: executor/execMain.c:1102 #, c-format msgid "cannot delete from foreign table \"%s\"" msgstr "kan inte radera från främmande tabell \"%s\"" -#: executor/execMain.c:1106 +#: executor/execMain.c:1108 #, c-format msgid "foreign table \"%s\" does not allow deletes" msgstr "främmande tabell \"%s\" tillåter inte radering" -#: executor/execMain.c:1117 +#: executor/execMain.c:1119 #, c-format msgid "cannot change relation \"%s\"" msgstr "kan inte ändra relation \"%s\"" -#: executor/execMain.c:1144 +#: executor/execMain.c:1146 #, c-format msgid "cannot lock rows in sequence \"%s\"" msgstr "kan inte låsa rader i sekvens \"%s\"" -#: executor/execMain.c:1151 +#: executor/execMain.c:1153 #, c-format msgid "cannot lock rows in TOAST relation \"%s\"" msgstr "kan inte låsa rader i TOAST-relation \"%s\"" -#: executor/execMain.c:1158 +#: executor/execMain.c:1160 #, c-format msgid "cannot lock rows in view \"%s\"" msgstr "kan inte låsa rader i vy \"%s\"" -#: executor/execMain.c:1166 +#: executor/execMain.c:1168 #, c-format msgid "cannot lock rows in materialized view \"%s\"" msgstr "kan inte låsa rader i materialiserad vy \"%s\"" -#: executor/execMain.c:1175 executor/execMain.c:2685 +#: executor/execMain.c:1177 executor/execMain.c:2687 #: executor/nodeLockRows.c:136 #, c-format msgid "cannot lock rows in foreign table \"%s\"" msgstr "kan inte låsa rader i främmande tabell \"%s\"" -#: executor/execMain.c:1181 +#: executor/execMain.c:1183 #, c-format msgid "cannot lock rows in relation \"%s\"" msgstr "kan inte låsa rader i relation \"%s\"" -#: executor/execMain.c:1888 +#: executor/execMain.c:1890 #, c-format msgid "new row for relation \"%s\" violates partition constraint" msgstr "ny rad för relation \"%s\" bryter mot partitionesvillkoret" -#: executor/execMain.c:1890 executor/execMain.c:1973 executor/execMain.c:2023 -#: executor/execMain.c:2132 +#: executor/execMain.c:1892 executor/execMain.c:1975 executor/execMain.c:2025 +#: executor/execMain.c:2134 #, c-format msgid "Failing row contains %s." msgstr "Misslyckande rad innehåller %s." -#: executor/execMain.c:1970 +#: executor/execMain.c:1972 #, c-format msgid "null value in column \"%s\" of relation \"%s\" violates not-null constraint" msgstr "null-värde i kolumn \"%s\" i relation \"%s\" bryter mot not-null-villkoret" -#: executor/execMain.c:2021 +#: executor/execMain.c:2023 #, c-format msgid "new row for relation \"%s\" violates check constraint \"%s\"" msgstr "ny rad för relation \"%s\" bryter mot check-villkor \"%s\"" -#: executor/execMain.c:2130 +#: executor/execMain.c:2132 #, c-format msgid "new row violates check option for view \"%s\"" msgstr "ny rad bryter mot check-villkor för vy \"%s\"" -#: executor/execMain.c:2140 +#: executor/execMain.c:2142 #, c-format msgid "new row violates row-level security policy \"%s\" for table \"%s\"" msgstr "ny rad bryter mot radsäkerhetspolicy \"%s\" i tabell \"%s\"" -#: executor/execMain.c:2145 +#: executor/execMain.c:2147 #, c-format msgid "new row violates row-level security policy for table \"%s\"" msgstr "ny rad bryter mot radsäkerhetspolicy i tabell \"%s\"" -#: executor/execMain.c:2153 +#: executor/execMain.c:2155 #, c-format msgid "target row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "målraden bryter mot radsäkerhetspolicyen \"%s\" (USING-uttryck) i tabellen \"%s\"" -#: executor/execMain.c:2158 +#: executor/execMain.c:2160 #, c-format msgid "target row violates row-level security policy (USING expression) for table \"%s\"" msgstr "målraden bryter mot radsäkerhetspolicyn (USING-uttryck) i tabellen \"%s\"" -#: executor/execMain.c:2165 +#: executor/execMain.c:2167 #, c-format msgid "new row violates row-level security policy \"%s\" (USING expression) for table \"%s\"" msgstr "ny rad bryter mot radsäkerhetspolicy \"%s\" (USING-uttryck) i tabell \"%s\"" -#: executor/execMain.c:2170 +#: executor/execMain.c:2172 #, c-format msgid "new row violates row-level security policy (USING expression) for table \"%s\"" msgstr "ny rad bryter mot radsäkerhetspolicy (USING-uttryck) i tabell \"%s\"" @@ -13240,7 +13252,7 @@ msgid "%s is not allowed in an SQL function" msgstr "%s är inte tillåtet i en SQL-funktion" #. translator: %s is a SQL statement name -#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2648 +#: executor/functions.c:528 executor/spi.c:1742 executor/spi.c:2650 #, c-format msgid "%s is not allowed in a non-volatile function" msgstr "%s tillåts inte i en icke-volatile-funktion" @@ -13307,7 +13319,7 @@ msgstr "returtyp %s stöds inte för SQL-funktioner" msgid "aggregate %u needs to have compatible input type and transition type" msgstr "aggregat %u måste ha kompatibel indatatyp och övergångstyp" -#: executor/nodeAgg.c:3952 parser/parse_agg.c:679 parser/parse_agg.c:707 +#: executor/nodeAgg.c:3952 parser/parse_agg.c:677 parser/parse_agg.c:705 #, c-format msgid "aggregate function calls cannot be nested" msgstr "aggregatfunktionsanrop kan inte nästlas" @@ -13493,12 +13505,12 @@ msgstr "ogiltig transaktionsavslutning" #: executor/spi.c:257 #, c-format msgid "cannot commit while a subtransaction is active" -msgstr "kan inte commit:a när en subtransaktion är aktiv" +msgstr "kan inte commit:a när en undertransaktion är aktiv" #: executor/spi.c:348 #, c-format msgid "cannot roll back while a subtransaction is active" -msgstr "kan inte rulla tillbaka när en subtransaktion är aktiv" +msgstr "kan inte rulla tillbaka när en undertransaktion är aktiv" #: executor/spi.c:472 #, c-format @@ -13536,28 +13548,28 @@ msgstr "DECLARE SCROLL CURSOR ... FOR UPDATE/SHARE stöds inte" msgid "Scrollable cursors must be READ ONLY." msgstr "Scrollbara markörer måste vara READ ONLY." -#: executor/spi.c:2487 +#: executor/spi.c:2489 #, c-format msgid "empty query does not return tuples" msgstr "en tom fråga returnerar inga tupler" #. translator: %s is name of a SQL command, eg INSERT -#: executor/spi.c:2561 +#: executor/spi.c:2563 #, c-format msgid "%s query does not return tuples" msgstr "%s-fråga returnerar inga tupler" -#: executor/spi.c:2975 +#: executor/spi.c:2977 #, c-format msgid "SQL expression \"%s\"" msgstr "SQL-uttryck \"%s\"" -#: executor/spi.c:2980 +#: executor/spi.c:2982 #, c-format msgid "PL/pgSQL assignment \"%s\"" msgstr "PL/pgSQL-tilldelning \"%s\"" -#: executor/spi.c:2983 +#: executor/spi.c:2985 #, c-format msgid "SQL statement \"%s\"" msgstr "SQL-sats: \"%s\"" @@ -13567,22 +13579,28 @@ msgstr "SQL-sats: \"%s\"" msgid "could not send tuple to shared-memory queue" msgstr "kunde inte skicka tupel till kö i delat minne: %m" -#: foreign/foreign.c:221 +#: foreign/foreign.c:222 #, c-format msgid "user mapping not found for \"%s\"" msgstr "användarmappning hittades inte för \"%s\"" -#: foreign/foreign.c:638 +#: foreign/foreign.c:332 optimizer/plan/createplan.c:7123 +#: optimizer/util/plancat.c:477 +#, c-format +msgid "access to non-system foreign table is restricted" +msgstr "access till icke-system främmande tabell är begränsad" + +#: foreign/foreign.c:648 #, c-format msgid "invalid option \"%s\"" msgstr "ogiltig flagga \"%s\"" -#: foreign/foreign.c:640 +#: foreign/foreign.c:650 #, c-format msgid "Valid options in this context are: %s" msgstr "Giltiga flaggor i detta kontext är: %s" -#: foreign/foreign.c:642 +#: foreign/foreign.c:652 #, c-format msgid "There are no valid options in this context." msgstr "Det finns inga giltiga flaggor i detta kontext." @@ -13662,7 +13680,7 @@ msgstr "STDIN/STDOUT tillåts inte med PROGRAM" msgid "WHERE clause not allowed with COPY TO" msgstr "WHERE-klausul tillåts inte med COPY TO" -#: gram.y:3609 gram.y:3616 gram.y:12759 gram.y:12767 +#: gram.y:3609 gram.y:3616 gram.y:12766 gram.y:12774 #, c-format msgid "GLOBAL is deprecated in temporary table creation" msgstr "GLOBAL när man skapar temporära tabeller är på utgående och kommer tas bort" @@ -13682,304 +13700,304 @@ msgstr "MATCH PARTIAL är inte implementerat ännu" msgid "a column list with %s is only supported for ON DELETE actions" msgstr "en kolumnlista med %s stöds bara vi ON DELETE-aktioner" -#: gram.y:4974 +#: gram.y:4981 #, c-format msgid "CREATE EXTENSION ... FROM is no longer supported" msgstr "CREATE EXTENSION .. FROM stöds inte längre" -#: gram.y:5672 +#: gram.y:5679 #, c-format msgid "unrecognized row security option \"%s\"" msgstr "okänd radsäkerhetsflagga \"%s\"" -#: gram.y:5673 +#: gram.y:5680 #, c-format msgid "Only PERMISSIVE or RESTRICTIVE policies are supported currently." msgstr "Bara policys PERMISSIVE och RESTRICTIVE stöds för tillfället." -#: gram.y:5758 +#: gram.y:5765 #, c-format msgid "CREATE OR REPLACE CONSTRAINT TRIGGER is not supported" msgstr "CREATE OR REPLACE CONSTRAINT TRIGGER stöds inte" -#: gram.y:5795 +#: gram.y:5802 msgid "duplicate trigger events specified" msgstr "multipla triggerhändelser angivna" -#: gram.y:5937 parser/parse_utilcmd.c:3716 parser/parse_utilcmd.c:3742 +#: gram.y:5944 parser/parse_utilcmd.c:3744 parser/parse_utilcmd.c:3770 #, c-format msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" msgstr "villkor deklarerat INITIALLY DEFERRED måste vara DEFERRABLE" -#: gram.y:5944 +#: gram.y:5951 #, c-format msgid "conflicting constraint properties" msgstr "motstridiga vilkorsegenskaper" -#: gram.y:6043 +#: gram.y:6050 #, c-format msgid "CREATE ASSERTION is not yet implemented" msgstr "CREATE ASSERTION är inte implementerat ännu" -#: gram.y:6451 +#: gram.y:6458 #, c-format msgid "RECHECK is no longer required" msgstr "RECHECK krävs inte längre" -#: gram.y:6452 +#: gram.y:6459 #, c-format msgid "Update your data type." msgstr "Uppdatera din datatyp" -#: gram.y:8308 +#: gram.y:8315 #, c-format msgid "aggregates cannot have output arguments" msgstr "aggregat kan inte ha utdataargument" -#: gram.y:8771 utils/adt/regproc.c:710 utils/adt/regproc.c:751 +#: gram.y:8778 utils/adt/regproc.c:710 utils/adt/regproc.c:751 #, c-format msgid "missing argument" msgstr "argument saknas" -#: gram.y:8772 utils/adt/regproc.c:711 utils/adt/regproc.c:752 +#: gram.y:8779 utils/adt/regproc.c:711 utils/adt/regproc.c:752 #, c-format msgid "Use NONE to denote the missing argument of a unary operator." msgstr "Använd NONE för att markera det saknade argumentet för en unär operator." -#: gram.y:10993 gram.y:11012 +#: gram.y:11000 gram.y:11019 #, c-format msgid "WITH CHECK OPTION not supported on recursive views" msgstr "WITH CHECK OPTION stöds inte för rekursiva vyer" -#: gram.y:12898 +#: gram.y:12905 #, c-format msgid "LIMIT #,# syntax is not supported" msgstr "LIMIT #,#-syntax stöds inte" -#: gram.y:12899 +#: gram.y:12906 #, c-format msgid "Use separate LIMIT and OFFSET clauses." msgstr "Använd separata klausuler LIMIT och OFFSET." -#: gram.y:13252 gram.y:13278 +#: gram.y:13259 gram.y:13285 #, c-format msgid "VALUES in FROM must have an alias" msgstr "VALUES i FROM måste ha ett alias" -#: gram.y:13253 gram.y:13279 +#: gram.y:13260 gram.y:13286 #, c-format msgid "For example, FROM (VALUES ...) [AS] foo." msgstr "Till exempel, FROM (VALUES ...) [AS] foo" -#: gram.y:13258 gram.y:13284 +#: gram.y:13265 gram.y:13291 #, c-format msgid "subquery in FROM must have an alias" msgstr "subfråga i FROM måste ha ett alias" -#: gram.y:13259 gram.y:13285 +#: gram.y:13266 gram.y:13292 #, c-format msgid "For example, FROM (SELECT ...) [AS] foo." msgstr "Till exempel, FROM (SELECT ...) [AS] foo" -#: gram.y:13803 +#: gram.y:13810 #, c-format msgid "only one DEFAULT value is allowed" msgstr "bara ett DEFAULT-värde tillåts" -#: gram.y:13812 +#: gram.y:13819 #, c-format msgid "only one PATH value per column is allowed" msgstr "bara ett PATH-värde per kolumn tillåts" -#: gram.y:13821 +#: gram.y:13828 #, c-format msgid "conflicting or redundant NULL / NOT NULL declarations for column \"%s\"" msgstr "motstridiga eller överflödiga NULL / NOT NULL-deklarationer för kolumnen \"%s\"" -#: gram.y:13830 +#: gram.y:13837 #, c-format msgid "unrecognized column option \"%s\"" msgstr "okänd kolumnflagga \"%s\"" -#: gram.y:14084 +#: gram.y:14091 #, c-format msgid "precision for type float must be at least 1 bit" msgstr "precisionen för typen float måste vara minst 1 bit" -#: gram.y:14093 +#: gram.y:14100 #, c-format msgid "precision for type float must be less than 54 bits" msgstr "precisionen för typen float måste vara mindre än 54 bits" -#: gram.y:14596 +#: gram.y:14603 #, c-format msgid "wrong number of parameters on left side of OVERLAPS expression" msgstr "fel antal parametrar på vänster sida om OVERLAPS-uttryck" -#: gram.y:14601 +#: gram.y:14608 #, c-format msgid "wrong number of parameters on right side of OVERLAPS expression" msgstr "fel antal parametrar på höger sida om OVERLAPS-uttryck" -#: gram.y:14778 +#: gram.y:14785 #, c-format msgid "UNIQUE predicate is not yet implemented" msgstr "UNIQUE-predikat är inte implementerat ännu" -#: gram.y:15156 +#: gram.y:15163 #, c-format msgid "cannot use multiple ORDER BY clauses with WITHIN GROUP" msgstr "kan inte ha multipla ORDER BY-klausuler med WITHIN GROUP" -#: gram.y:15161 +#: gram.y:15168 #, c-format msgid "cannot use DISTINCT with WITHIN GROUP" msgstr "kan inte använda DISTINCT med WITHIN GROUP" -#: gram.y:15166 +#: gram.y:15173 #, c-format msgid "cannot use VARIADIC with WITHIN GROUP" msgstr "kan inte använda VARIADIC med WITHIN GROUP" -#: gram.y:15703 gram.y:15727 +#: gram.y:15710 gram.y:15734 #, c-format msgid "frame start cannot be UNBOUNDED FOLLOWING" msgstr "fönsterramstart kan inte vara UNBOUNDED FOLLOWING" -#: gram.y:15708 +#: gram.y:15715 #, c-format msgid "frame starting from following row cannot end with current row" msgstr "fönsterram som startar på efterföljande rad kan inte sluta på nuvarande rad" -#: gram.y:15732 +#: gram.y:15739 #, c-format msgid "frame end cannot be UNBOUNDED PRECEDING" msgstr "fönsterramslut kan inte vara UNBOUNDED PRECEDING" -#: gram.y:15738 +#: gram.y:15745 #, c-format msgid "frame starting from current row cannot have preceding rows" msgstr "fönsterram som startar på aktuell rad kan inte ha föregående rader" -#: gram.y:15745 +#: gram.y:15752 #, c-format msgid "frame starting from following row cannot have preceding rows" msgstr "fönsterram som startar på efterföljande rad kan inte ha föregående rader" -#: gram.y:16370 +#: gram.y:16377 #, c-format msgid "type modifier cannot have parameter name" msgstr "typmodifierare kan inte ha paremeternamn" -#: gram.y:16376 +#: gram.y:16383 #, c-format msgid "type modifier cannot have ORDER BY" msgstr "typmodifierare kan inte ha ORDER BY" -#: gram.y:16444 gram.y:16451 gram.y:16458 +#: gram.y:16451 gram.y:16458 gram.y:16465 #, c-format msgid "%s cannot be used as a role name here" msgstr "%s kan inte användas som ett rollnamn här" -#: gram.y:16548 gram.y:17983 +#: gram.y:16555 gram.y:17990 #, c-format msgid "WITH TIES cannot be specified without ORDER BY clause" msgstr "WITH TIES kan inte anges utan en ORDER BY-klausul" -#: gram.y:17662 gram.y:17849 +#: gram.y:17669 gram.y:17856 msgid "improper use of \"*\"" msgstr "felaktig användning av \"*\"" -#: gram.y:17812 gram.y:17829 tsearch/spell.c:983 tsearch/spell.c:1000 +#: gram.y:17819 gram.y:17836 tsearch/spell.c:983 tsearch/spell.c:1000 #: tsearch/spell.c:1017 tsearch/spell.c:1034 tsearch/spell.c:1099 #, c-format msgid "syntax error" msgstr "syntaxfel" -#: gram.y:17913 +#: gram.y:17920 #, c-format msgid "an ordered-set aggregate with a VARIADIC direct argument must have one VARIADIC aggregated argument of the same data type" msgstr "ett sorterad-mängd-aggregat med ett direkt VARIADIC-argument måste ha ett aggregerat VARIADIC-argument av samma datatype" -#: gram.y:17950 +#: gram.y:17957 #, c-format msgid "multiple ORDER BY clauses not allowed" msgstr "multipla ORDER BY-klausuler tillåts inte" -#: gram.y:17961 +#: gram.y:17968 #, c-format msgid "multiple OFFSET clauses not allowed" msgstr "multipla OFFSET-klausuler tillåts inte" -#: gram.y:17970 +#: gram.y:17977 #, c-format msgid "multiple LIMIT clauses not allowed" msgstr "multipla LIMIT-klausuler tillåts inte" -#: gram.y:17979 +#: gram.y:17986 #, c-format msgid "multiple limit options not allowed" msgstr "multipla limit-alternativ tillåts inte" -#: gram.y:18006 +#: gram.y:18013 #, c-format msgid "multiple WITH clauses not allowed" msgstr "multipla WITH-klausuler tillåts inte" -#: gram.y:18199 +#: gram.y:18206 #, c-format msgid "OUT and INOUT arguments aren't allowed in TABLE functions" msgstr "OUT och INOUT-argument tillåts inte i TABLE-funktioner" -#: gram.y:18332 +#: gram.y:18339 #, c-format msgid "multiple COLLATE clauses not allowed" msgstr "multipla COLLATE-klausuler tillåts inte" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18370 gram.y:18383 +#: gram.y:18377 gram.y:18390 #, c-format msgid "%s constraints cannot be marked DEFERRABLE" msgstr "%s-villkor kan inte markeras DEFERRABLE" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18396 +#: gram.y:18403 #, c-format msgid "%s constraints cannot be marked NOT VALID" msgstr "%s-villkor kan inte markeras NOT VALID" #. translator: %s is CHECK, UNIQUE, or similar -#: gram.y:18409 +#: gram.y:18416 #, c-format msgid "%s constraints cannot be marked NO INHERIT" msgstr "%s-villkor kan inte markeras NO INHERIT" -#: gram.y:18433 +#: gram.y:18440 #, c-format msgid "invalid publication object list" msgstr "ogiltig objektlista för publicering" -#: gram.y:18434 +#: gram.y:18441 #, c-format msgid "One of TABLE or TABLES IN SCHEMA must be specified before a standalone table or schema name." msgstr "En av TABLE eller ALL TABLES IN SCHEMA måste anges innan en enskild tabell eller ett schemanamn." -#: gram.y:18450 +#: gram.y:18457 #, c-format msgid "invalid table name" msgstr "ogiltigt tabellnamn" -#: gram.y:18471 +#: gram.y:18478 #, c-format msgid "WHERE clause not allowed for schema" msgstr "WHERE-klausul tillåts inte för schema" -#: gram.y:18478 +#: gram.y:18485 #, c-format msgid "column specification not allowed for schema" msgstr "kolumnspecifikation tillåts inte för schema" -#: gram.y:18492 +#: gram.y:18499 #, c-format msgid "invalid schema name" msgstr "ogiltigt schemanamn" @@ -13989,9 +14007,9 @@ msgstr "ogiltigt schemanamn" msgid "unrecognized configuration parameter \"%s\" in file \"%s\" line %d" msgstr "okänd konfigurationsparameter \"%s\" i fil \"%s\" rad %d" -#: guc-file.l:353 utils/misc/guc.c:7691 utils/misc/guc.c:7915 -#: utils/misc/guc.c:8013 utils/misc/guc.c:8111 utils/misc/guc.c:8235 -#: utils/misc/guc.c:8338 +#: guc-file.l:353 utils/misc/guc.c:7709 utils/misc/guc.c:7933 +#: utils/misc/guc.c:8031 utils/misc/guc.c:8129 utils/misc/guc.c:8253 +#: utils/misc/guc.c:8356 #, c-format msgid "parameter \"%s\" cannot be changed without restarting the server" msgstr "parameter \"%s\" kan inte ändras utan att starta om servern" @@ -15022,133 +15040,133 @@ msgstr "kunde inte sätta SSL-protokollversionsintervall" msgid "\"%s\" cannot be higher than \"%s\"" msgstr "\"%s\" får inte vara högre än \"%s\"" -#: libpq/be-secure-openssl.c:294 +#: libpq/be-secure-openssl.c:293 #, c-format msgid "could not set the cipher list (no valid ciphers available)" msgstr "kunde inte sätta kryptolistan (inga giltiga krypton är tillgängliga)" -#: libpq/be-secure-openssl.c:314 +#: libpq/be-secure-openssl.c:313 #, c-format msgid "could not load root certificate file \"%s\": %s" msgstr "kunde inte ladda root-certifikatfilen \"%s\": %s" -#: libpq/be-secure-openssl.c:363 +#: libpq/be-secure-openssl.c:362 #, c-format msgid "could not load SSL certificate revocation list file \"%s\": %s" msgstr "kunde inte ladda fil \"%s\" med certifikatåterkallningslista för SSL: %s" -#: libpq/be-secure-openssl.c:371 +#: libpq/be-secure-openssl.c:370 #, c-format msgid "could not load SSL certificate revocation list directory \"%s\": %s" msgstr "kunde inte ladda katalog \"%s\" för certifikatåterkallning: %s" -#: libpq/be-secure-openssl.c:379 +#: libpq/be-secure-openssl.c:378 #, c-format msgid "could not load SSL certificate revocation list file \"%s\" or directory \"%s\": %s" msgstr "kunde inte ladda fil \"%s\" eller katalog \"%s\" med certifikatåterkallning för SSL: %s" -#: libpq/be-secure-openssl.c:437 +#: libpq/be-secure-openssl.c:436 #, c-format msgid "could not initialize SSL connection: SSL context not set up" msgstr "kunde inte initiera SSL-uppkoppling: SSL-kontex ej uppsatt" -#: libpq/be-secure-openssl.c:448 +#: libpq/be-secure-openssl.c:447 #, c-format msgid "could not initialize SSL connection: %s" msgstr "kunde inte initiera SSL-uppkoppling: %s" -#: libpq/be-secure-openssl.c:456 +#: libpq/be-secure-openssl.c:455 #, c-format msgid "could not set SSL socket: %s" msgstr "kunde inte sätta SSL-uttag (socket): %s" -#: libpq/be-secure-openssl.c:512 +#: libpq/be-secure-openssl.c:511 #, c-format msgid "could not accept SSL connection: %m" msgstr "kunde inte acceptera SSL-uppkoppling: %m" -#: libpq/be-secure-openssl.c:516 libpq/be-secure-openssl.c:569 +#: libpq/be-secure-openssl.c:515 libpq/be-secure-openssl.c:568 #, c-format msgid "could not accept SSL connection: EOF detected" msgstr "kunde inte starta SSL-anslutning: hittade EOF" -#: libpq/be-secure-openssl.c:555 +#: libpq/be-secure-openssl.c:554 #, c-format msgid "could not accept SSL connection: %s" msgstr "kunde inte acceptera SSL-uppkoppling: %s" -#: libpq/be-secure-openssl.c:558 +#: libpq/be-secure-openssl.c:557 #, c-format msgid "This may indicate that the client does not support any SSL protocol version between %s and %s." msgstr "Detta kan tyda på att servern inte stöder någon SSL-protokolversion mellan %s och %s." -#: libpq/be-secure-openssl.c:574 libpq/be-secure-openssl.c:763 -#: libpq/be-secure-openssl.c:833 +#: libpq/be-secure-openssl.c:573 libpq/be-secure-openssl.c:762 +#: libpq/be-secure-openssl.c:832 #, c-format msgid "unrecognized SSL error code: %d" msgstr "okänd SSL-felkod: %d" -#: libpq/be-secure-openssl.c:620 +#: libpq/be-secure-openssl.c:619 #, c-format msgid "SSL certificate's common name contains embedded null" msgstr "SSL-certifikatets \"comman name\" innehåller null-värden" -#: libpq/be-secure-openssl.c:666 +#: libpq/be-secure-openssl.c:665 #, c-format msgid "SSL certificate's distinguished name contains embedded null" msgstr "SSL-certifikatets utskiljande namn innehåller null-värden" -#: libpq/be-secure-openssl.c:752 libpq/be-secure-openssl.c:817 +#: libpq/be-secure-openssl.c:751 libpq/be-secure-openssl.c:816 #, c-format msgid "SSL error: %s" msgstr "SSL-fel: %s" -#: libpq/be-secure-openssl.c:994 +#: libpq/be-secure-openssl.c:993 #, c-format msgid "could not open DH parameters file \"%s\": %m" msgstr "kunde inte öppna DH-parameterfil \"%s\": %m" -#: libpq/be-secure-openssl.c:1006 +#: libpq/be-secure-openssl.c:1005 #, c-format msgid "could not load DH parameters file: %s" msgstr "kunde inte ladda DH-parameterfil: %s" -#: libpq/be-secure-openssl.c:1016 +#: libpq/be-secure-openssl.c:1015 #, c-format msgid "invalid DH parameters: %s" msgstr "ogiltiga DH-parametrar: %s" -#: libpq/be-secure-openssl.c:1025 +#: libpq/be-secure-openssl.c:1024 #, c-format msgid "invalid DH parameters: p is not prime" msgstr "ogiltiga DH-parametrar: p är inte ett primtal" -#: libpq/be-secure-openssl.c:1034 +#: libpq/be-secure-openssl.c:1033 #, c-format msgid "invalid DH parameters: neither suitable generator or safe prime" msgstr "ogiltiga DH-parametrar: varken lämplig generator eller säkert primtal" -#: libpq/be-secure-openssl.c:1195 +#: libpq/be-secure-openssl.c:1194 #, c-format msgid "DH: could not load DH parameters" msgstr "DH: kunde inte ladda DH-parametrar" -#: libpq/be-secure-openssl.c:1203 +#: libpq/be-secure-openssl.c:1202 #, c-format msgid "DH: could not set DH parameters: %s" msgstr "DH: kunde inte sätta DH-parametrar: %s" -#: libpq/be-secure-openssl.c:1230 +#: libpq/be-secure-openssl.c:1229 #, c-format msgid "ECDH: unrecognized curve name: %s" msgstr "ECDH: okänt kurvnamn: %s" -#: libpq/be-secure-openssl.c:1239 +#: libpq/be-secure-openssl.c:1238 #, c-format msgid "ECDH: could not create key" msgstr "ECDH: kunde inte skapa nyckel" -#: libpq/be-secure-openssl.c:1267 +#: libpq/be-secure-openssl.c:1266 msgid "no SSL error reported" msgstr "inget SSL-fel rapporterat" @@ -15702,7 +15720,7 @@ msgstr "det finns ingen klientanslutning" msgid "could not receive data from client: %m" msgstr "kunde inte ta emot data från klient: %m" -#: libpq/pqcomm.c:1179 tcop/postgres.c:4373 +#: libpq/pqcomm.c:1179 tcop/postgres.c:4461 #, c-format msgid "terminating connection because protocol synchronization was lost" msgstr "stänger anslutning då protokollsynkroniseringen tappades" @@ -16087,7 +16105,7 @@ msgstr "ej namngiven portal med parametrar: %s" msgid "FULL JOIN is only supported with merge-joinable or hash-joinable join conditions" msgstr "FULL JOIN stöds bara med villkor som är merge-joinbara eller hash-joinbara" -#: optimizer/plan/createplan.c:7101 parser/parse_merge.c:187 +#: optimizer/plan/createplan.c:7102 parser/parse_merge.c:187 #: parser/parse_merge.c:194 #, c-format msgid "cannot execute MERGE on relation \"%s\"" @@ -16100,44 +16118,44 @@ msgid "%s cannot be applied to the nullable side of an outer join" msgstr "%s kan inte appliceras på den nullbara sidan av en outer join" #. translator: %s is a SQL row locking clause such as FOR UPDATE -#: optimizer/plan/planner.c:1344 parser/analyze.c:1763 parser/analyze.c:2019 +#: optimizer/plan/planner.c:1350 parser/analyze.c:1763 parser/analyze.c:2019 #: parser/analyze.c:3201 #, c-format msgid "%s is not allowed with UNION/INTERSECT/EXCEPT" msgstr "%s tillåts inte med UNION/INTERSECT/EXCEPT" -#: optimizer/plan/planner.c:2045 optimizer/plan/planner.c:3702 +#: optimizer/plan/planner.c:2051 optimizer/plan/planner.c:3708 #, c-format msgid "could not implement GROUP BY" msgstr "kunde inte implementera GROUP BY" -#: optimizer/plan/planner.c:2046 optimizer/plan/planner.c:3703 -#: optimizer/plan/planner.c:4346 optimizer/prep/prepunion.c:1046 +#: optimizer/plan/planner.c:2052 optimizer/plan/planner.c:3709 +#: optimizer/plan/planner.c:4352 optimizer/prep/prepunion.c:1046 #, c-format msgid "Some of the datatypes only support hashing, while others only support sorting." msgstr "Några av datatyperna stöder bara hash:ning medan andra bara stöder sortering." -#: optimizer/plan/planner.c:4345 +#: optimizer/plan/planner.c:4351 #, c-format msgid "could not implement DISTINCT" msgstr "kunde inte implementera DISTINCT" -#: optimizer/plan/planner.c:5466 +#: optimizer/plan/planner.c:5472 #, c-format msgid "could not implement window PARTITION BY" msgstr "kunde inte implementera fönster-PARTITION BY" -#: optimizer/plan/planner.c:5467 +#: optimizer/plan/planner.c:5473 #, c-format msgid "Window partitioning columns must be of sortable datatypes." msgstr "Fönsterpartitioneringskolumner måsta ha en sorterbar datatyp." -#: optimizer/plan/planner.c:5471 +#: optimizer/plan/planner.c:5477 #, c-format msgid "could not implement window ORDER BY" msgstr "kunde inte implementera fönster-ORDER BY" -#: optimizer/plan/planner.c:5472 +#: optimizer/plan/planner.c:5478 #, c-format msgid "Window ordering columns must be of sortable datatypes." msgstr "Fönsterordningskolumner måste ha en sorterbar datatyp." @@ -16163,32 +16181,32 @@ msgstr "kunde inte implementera %s" msgid "SQL function \"%s\" during inlining" msgstr "SQL-funktion \"%s\" vid inline:ing" -#: optimizer/util/plancat.c:142 +#: optimizer/util/plancat.c:143 #, c-format msgid "cannot open relation \"%s\"" msgstr "kan inte öppna relationen \"%s\"" -#: optimizer/util/plancat.c:151 +#: optimizer/util/plancat.c:152 #, c-format msgid "cannot access temporary or unlogged relations during recovery" msgstr "kan inte accessa temporära eller ologgade relationer under återställning" -#: optimizer/util/plancat.c:693 +#: optimizer/util/plancat.c:705 #, c-format msgid "whole row unique index inference specifications are not supported" msgstr "inferens av unikt index för hel rad stöds inte" -#: optimizer/util/plancat.c:710 +#: optimizer/util/plancat.c:722 #, c-format msgid "constraint in ON CONFLICT clause has no associated index" msgstr "villkor för ON CONFLICT-klausul har inget associerat index" -#: optimizer/util/plancat.c:760 +#: optimizer/util/plancat.c:772 #, c-format msgid "ON CONFLICT DO UPDATE not supported with exclusion constraints" msgstr "ON CONFLICT DO UPDATE stöds inte med uteslutningsvillkor" -#: optimizer/util/plancat.c:870 +#: optimizer/util/plancat.c:882 #, c-format msgid "there is no unique or exclusion constraint matching the ON CONFLICT specification" msgstr "finns inget unik eller uteslutningsvillkor som matchar ON CONFLICT-specifikationen" @@ -16431,308 +16449,308 @@ msgstr "aggregatfunktioner tillåts inte i JOIN-villkor" msgid "grouping operations are not allowed in JOIN conditions" msgstr "gruppoperationer tillåts inte i JOIN-villkor" -#: parser/parse_agg.c:385 +#: parser/parse_agg.c:383 msgid "aggregate functions are not allowed in FROM clause of their own query level" msgstr "aggregatfunktioner tillåts inte i FROM-klausul på sin egen frågenivå" -#: parser/parse_agg.c:387 +#: parser/parse_agg.c:385 msgid "grouping operations are not allowed in FROM clause of their own query level" msgstr "gruppoperationer tillåts inte i FROM-klausul på sin egen frågenivå" -#: parser/parse_agg.c:392 +#: parser/parse_agg.c:390 msgid "aggregate functions are not allowed in functions in FROM" msgstr "aggregatfunktioner tillåts inte i funktioner i FROM" -#: parser/parse_agg.c:394 +#: parser/parse_agg.c:392 msgid "grouping operations are not allowed in functions in FROM" msgstr "gruppoperationer tillåts inte i funktioner i FROM" -#: parser/parse_agg.c:402 +#: parser/parse_agg.c:400 msgid "aggregate functions are not allowed in policy expressions" msgstr "aggregatfunktioner tillåts inte i policyuttryck" -#: parser/parse_agg.c:404 +#: parser/parse_agg.c:402 msgid "grouping operations are not allowed in policy expressions" msgstr "gruppoperationer tillåts inte i policyuttryck" -#: parser/parse_agg.c:421 +#: parser/parse_agg.c:419 msgid "aggregate functions are not allowed in window RANGE" msgstr "aggregatfunktioner tillåts inte i fönster-RANGE" -#: parser/parse_agg.c:423 +#: parser/parse_agg.c:421 msgid "grouping operations are not allowed in window RANGE" msgstr "grupperingsoperationer tillåts inte i fönster-RANGE" -#: parser/parse_agg.c:428 +#: parser/parse_agg.c:426 msgid "aggregate functions are not allowed in window ROWS" msgstr "aggregatfunktioner tillåts inte i fönster-RADER" -#: parser/parse_agg.c:430 +#: parser/parse_agg.c:428 msgid "grouping operations are not allowed in window ROWS" msgstr "grupperingsfunktioner tillåts inte i fönster-RADER" -#: parser/parse_agg.c:435 +#: parser/parse_agg.c:433 msgid "aggregate functions are not allowed in window GROUPS" msgstr "aggregatfunktioner tillåts inte i fönster-GROUPS" -#: parser/parse_agg.c:437 +#: parser/parse_agg.c:435 msgid "grouping operations are not allowed in window GROUPS" msgstr "grupperingsfunktioner tillåts inte i fönster-GROUPS" -#: parser/parse_agg.c:450 +#: parser/parse_agg.c:448 msgid "aggregate functions are not allowed in MERGE WHEN conditions" msgstr "aggregatfunktioner tillåts inte i MERGE WHEN-villkor" -#: parser/parse_agg.c:452 +#: parser/parse_agg.c:450 msgid "grouping operations are not allowed in MERGE WHEN conditions" msgstr "gruppoperationer tillåts inte i MERGE WHEN-villkor" -#: parser/parse_agg.c:478 +#: parser/parse_agg.c:476 msgid "aggregate functions are not allowed in check constraints" msgstr "aggregatfunktioner tillåts inte i check-villkor" -#: parser/parse_agg.c:480 +#: parser/parse_agg.c:478 msgid "grouping operations are not allowed in check constraints" msgstr "gruppoperationer tillåts inte i check-villkor" -#: parser/parse_agg.c:487 +#: parser/parse_agg.c:485 msgid "aggregate functions are not allowed in DEFAULT expressions" msgstr "aggregatfunktioner tillåts inte i DEFAULT-uttryck" -#: parser/parse_agg.c:489 +#: parser/parse_agg.c:487 msgid "grouping operations are not allowed in DEFAULT expressions" msgstr "grupperingsoperationer tillåts inte i DEFAULT-uttryck" -#: parser/parse_agg.c:494 +#: parser/parse_agg.c:492 msgid "aggregate functions are not allowed in index expressions" msgstr "aggregatfunktioner tillåts inte i indexuttryck" -#: parser/parse_agg.c:496 +#: parser/parse_agg.c:494 msgid "grouping operations are not allowed in index expressions" msgstr "gruppoperationer tillåts inte i indexuttryck" -#: parser/parse_agg.c:501 +#: parser/parse_agg.c:499 msgid "aggregate functions are not allowed in index predicates" msgstr "aggregatfunktionsanrop tillåts inte i indexpredikat" -#: parser/parse_agg.c:503 +#: parser/parse_agg.c:501 msgid "grouping operations are not allowed in index predicates" msgstr "gruppoperationer tillåts inte i indexpredikat" -#: parser/parse_agg.c:508 +#: parser/parse_agg.c:506 msgid "aggregate functions are not allowed in statistics expressions" msgstr "aggregatfunktioner tillåts inte i statistikuttryck" -#: parser/parse_agg.c:510 +#: parser/parse_agg.c:508 msgid "grouping operations are not allowed in statistics expressions" msgstr "gruppoperationer tillåts inte i statistikuttryck" -#: parser/parse_agg.c:515 +#: parser/parse_agg.c:513 msgid "aggregate functions are not allowed in transform expressions" msgstr "aggregatfunktioner tillåts inte i transform-uttryck" -#: parser/parse_agg.c:517 +#: parser/parse_agg.c:515 msgid "grouping operations are not allowed in transform expressions" msgstr "gruppoperationer tillåts inte i transforme-uttryck" -#: parser/parse_agg.c:522 +#: parser/parse_agg.c:520 msgid "aggregate functions are not allowed in EXECUTE parameters" msgstr "aggregatfunktioner tillåts inte i EXECUTE-parametrar" -#: parser/parse_agg.c:524 +#: parser/parse_agg.c:522 msgid "grouping operations are not allowed in EXECUTE parameters" msgstr "gruppoperationer tillåts inte i EXECUTE-parametrar" -#: parser/parse_agg.c:529 +#: parser/parse_agg.c:527 msgid "aggregate functions are not allowed in trigger WHEN conditions" msgstr "aggregatfunktioner tillåts inte i WHEN-villkor" -#: parser/parse_agg.c:531 +#: parser/parse_agg.c:529 msgid "grouping operations are not allowed in trigger WHEN conditions" msgstr "gruppoperationer tillåts inte i WHEN-villkor" -#: parser/parse_agg.c:536 +#: parser/parse_agg.c:534 msgid "aggregate functions are not allowed in partition bound" msgstr "aggregatfunktioner tillåts inte i partitionsgräns" -#: parser/parse_agg.c:538 +#: parser/parse_agg.c:536 msgid "grouping operations are not allowed in partition bound" msgstr "gruppoperationer tillåts inte i partitionsgräns" -#: parser/parse_agg.c:543 +#: parser/parse_agg.c:541 msgid "aggregate functions are not allowed in partition key expressions" msgstr "aggregatfunktioner tillåts inte i partitionsnyckeluttryck" -#: parser/parse_agg.c:545 +#: parser/parse_agg.c:543 msgid "grouping operations are not allowed in partition key expressions" msgstr "gruppoperationer tillåts inte i partitionsnyckeluttryck" -#: parser/parse_agg.c:551 +#: parser/parse_agg.c:549 msgid "aggregate functions are not allowed in column generation expressions" msgstr "aggregatfunktioner tillåts inte i kolumngenereringsuttryck" -#: parser/parse_agg.c:553 +#: parser/parse_agg.c:551 msgid "grouping operations are not allowed in column generation expressions" msgstr "gruppoperationer tillåts inte i kolumngenereringsuttryck" -#: parser/parse_agg.c:559 +#: parser/parse_agg.c:557 msgid "aggregate functions are not allowed in CALL arguments" msgstr "aggregatfunktioner tillåts inte i CALL-argument" -#: parser/parse_agg.c:561 +#: parser/parse_agg.c:559 msgid "grouping operations are not allowed in CALL arguments" msgstr "gruppoperationer tillåts inte i CALL-argument" -#: parser/parse_agg.c:567 +#: parser/parse_agg.c:565 msgid "aggregate functions are not allowed in COPY FROM WHERE conditions" msgstr "aggregatfunktioner tillåts inte i COPY FROM WHERE-villkor" -#: parser/parse_agg.c:569 +#: parser/parse_agg.c:567 msgid "grouping operations are not allowed in COPY FROM WHERE conditions" msgstr "gruppoperationer tillåts inte i COPY FROM WHERE-villkor" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:596 parser/parse_clause.c:1836 +#: parser/parse_agg.c:594 parser/parse_clause.c:1836 #, c-format msgid "aggregate functions are not allowed in %s" msgstr "aggregatfunktioner tillåts inte i %s" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:599 +#: parser/parse_agg.c:597 #, c-format msgid "grouping operations are not allowed in %s" msgstr "gruppoperationer tillåts inte i %s" -#: parser/parse_agg.c:700 +#: parser/parse_agg.c:698 #, c-format msgid "outer-level aggregate cannot contain a lower-level variable in its direct arguments" msgstr "yttre aggregat kan inte innehålla inre variabel i sitt direkta argument" -#: parser/parse_agg.c:778 +#: parser/parse_agg.c:776 #, c-format msgid "aggregate function calls cannot contain set-returning function calls" msgstr "aggregatfunktionsanrop kan inte innehålla mängdreturnerande funktionsanrop" -#: parser/parse_agg.c:779 parser/parse_expr.c:1674 parser/parse_expr.c:2156 +#: parser/parse_agg.c:777 parser/parse_expr.c:1674 parser/parse_expr.c:2156 #: parser/parse_func.c:883 #, c-format msgid "You might be able to move the set-returning function into a LATERAL FROM item." msgstr "Du kanske kan flytta den mängdreturnerande funktionen in i en LATERAL FROM-konstruktion." -#: parser/parse_agg.c:784 +#: parser/parse_agg.c:782 #, c-format msgid "aggregate function calls cannot contain window function calls" msgstr "aggregatfunktionsanrop kan inte innehålla fönsterfunktionanrop" -#: parser/parse_agg.c:863 +#: parser/parse_agg.c:861 msgid "window functions are not allowed in JOIN conditions" msgstr "fönsterfunktioner tillåts inte i JOIN-villkor" -#: parser/parse_agg.c:870 +#: parser/parse_agg.c:868 msgid "window functions are not allowed in functions in FROM" msgstr "fönsterfunktioner tillåts inte i funktioner i FROM" -#: parser/parse_agg.c:876 +#: parser/parse_agg.c:874 msgid "window functions are not allowed in policy expressions" msgstr "fönsterfunktioner tillåts inte i policy-uttryck" -#: parser/parse_agg.c:889 +#: parser/parse_agg.c:887 msgid "window functions are not allowed in window definitions" msgstr "fönsterfunktioner tillåts inte i fönsterdefinitioner" -#: parser/parse_agg.c:900 +#: parser/parse_agg.c:898 msgid "window functions are not allowed in MERGE WHEN conditions" msgstr "fönsterfunktioner tillåts inte i MERGE WHEN-villkor" -#: parser/parse_agg.c:924 +#: parser/parse_agg.c:922 msgid "window functions are not allowed in check constraints" msgstr "fönsterfunktioner tillåts inte i check-villkor" -#: parser/parse_agg.c:928 +#: parser/parse_agg.c:926 msgid "window functions are not allowed in DEFAULT expressions" msgstr "fönsterfunktioner tillåts inte i DEFAULT-uttryck" -#: parser/parse_agg.c:931 +#: parser/parse_agg.c:929 msgid "window functions are not allowed in index expressions" msgstr "fönsterfunktioner tillåts inte i indexuttryck" -#: parser/parse_agg.c:934 +#: parser/parse_agg.c:932 msgid "window functions are not allowed in statistics expressions" msgstr "fönsterfunktioner tillåts inte i statistikuttryck" -#: parser/parse_agg.c:937 +#: parser/parse_agg.c:935 msgid "window functions are not allowed in index predicates" msgstr "fönsterfunktioner tillåts inte i indexpredikat" -#: parser/parse_agg.c:940 +#: parser/parse_agg.c:938 msgid "window functions are not allowed in transform expressions" msgstr "fönsterfunktioner tillåts inte i transform-uttrycket" -#: parser/parse_agg.c:943 +#: parser/parse_agg.c:941 msgid "window functions are not allowed in EXECUTE parameters" msgstr "fönsterfunktioner tillåts inte i EXECUTE-parametrar" -#: parser/parse_agg.c:946 +#: parser/parse_agg.c:944 msgid "window functions are not allowed in trigger WHEN conditions" msgstr "fönsterfunktioner tillåts inte i WHEN-villkor" -#: parser/parse_agg.c:949 +#: parser/parse_agg.c:947 msgid "window functions are not allowed in partition bound" msgstr "fönsterfunktioner tillåts inte i partitiongräns" -#: parser/parse_agg.c:952 +#: parser/parse_agg.c:950 msgid "window functions are not allowed in partition key expressions" msgstr "fönsterfunktioner tillåts inte i partitionsnyckeluttryck" -#: parser/parse_agg.c:955 +#: parser/parse_agg.c:953 msgid "window functions are not allowed in CALL arguments" msgstr "fönsterfunktioner tillåts inte i CALL-argument" -#: parser/parse_agg.c:958 +#: parser/parse_agg.c:956 msgid "window functions are not allowed in COPY FROM WHERE conditions" msgstr "fönsterfunktioner tillåts inte i COPY FROM WHERE-villkor" -#: parser/parse_agg.c:961 +#: parser/parse_agg.c:959 msgid "window functions are not allowed in column generation expressions" msgstr "fönsterfunktioner tillåts inte i kolumngenereringsuttryck" #. translator: %s is name of a SQL construct, eg GROUP BY -#: parser/parse_agg.c:984 parser/parse_clause.c:1845 +#: parser/parse_agg.c:982 parser/parse_clause.c:1845 #, c-format msgid "window functions are not allowed in %s" msgstr "fönsterfunktioner tillåts inte i %s" -#: parser/parse_agg.c:1018 parser/parse_clause.c:2678 +#: parser/parse_agg.c:1016 parser/parse_clause.c:2678 #, c-format msgid "window \"%s\" does not exist" msgstr "fönster \"%s\" finns inte" -#: parser/parse_agg.c:1102 +#: parser/parse_agg.c:1100 #, c-format msgid "too many grouping sets present (maximum 4096)" msgstr "för många grupperingsmängder (maximalt 4096)" -#: parser/parse_agg.c:1242 +#: parser/parse_agg.c:1240 #, c-format msgid "aggregate functions are not allowed in a recursive query's recursive term" msgstr "aggregatfunktioner tillåts inte i en rekursiv frågas rekursiva term" -#: parser/parse_agg.c:1435 +#: parser/parse_agg.c:1433 #, c-format msgid "column \"%s.%s\" must appear in the GROUP BY clause or be used in an aggregate function" msgstr "kolumn \"%s.%s\" måste stå med i GROUP BY-klausulen eller användas i en aggregatfunktion" -#: parser/parse_agg.c:1438 +#: parser/parse_agg.c:1436 #, c-format msgid "Direct arguments of an ordered-set aggregate must use only grouped columns." msgstr "Direkta argument till en sorterad-mängd-aggregat får bara använda grupperade kolumner." -#: parser/parse_agg.c:1443 +#: parser/parse_agg.c:1441 #, c-format msgid "subquery uses ungrouped column \"%s.%s\" from outer query" msgstr "underfråga använder ogrupperad kolumn \"%s.%s\" från yttre fråga" -#: parser/parse_agg.c:1607 +#: parser/parse_agg.c:1605 #, c-format msgid "arguments to GROUPING must be grouping expressions of the associated query level" msgstr "argument till GROUPING måste vare grupputtryck på den tillhörande frågenivån" @@ -18015,7 +18033,7 @@ msgstr "op ANY/ALL (array) kräver att operatorn inte returnerar en mängd" msgid "inconsistent types deduced for parameter $%d" msgstr "inkonsistenta typer härledda för parameter $%d" -#: parser/parse_param.c:313 tcop/postgres.c:709 +#: parser/parse_param.c:313 tcop/postgres.c:713 #, c-format msgid "could not determine data type of parameter $%d" msgstr "kunde inte lista ut datatypen för parameter $%d" @@ -18252,325 +18270,330 @@ msgstr "ogiltigt typnamn \"%s\"" msgid "cannot create partitioned table as inheritance child" msgstr "kan inte skapa partitionerad tabell som barnarv" -#: parser/parse_utilcmd.c:583 +#: parser/parse_utilcmd.c:475 +#, c-format +msgid "cannot set logged status of a temporary sequence" +msgstr "kan inte sätta loggningsstatus för en temporär sekvens" + +#: parser/parse_utilcmd.c:611 #, c-format msgid "array of serial is not implemented" msgstr "array med serial är inte implementerat" -#: parser/parse_utilcmd.c:662 parser/parse_utilcmd.c:674 -#: parser/parse_utilcmd.c:733 +#: parser/parse_utilcmd.c:690 parser/parse_utilcmd.c:702 +#: parser/parse_utilcmd.c:761 #, c-format msgid "conflicting NULL/NOT NULL declarations for column \"%s\" of table \"%s\"" msgstr "motstridiga NULL/NOT NULL-villkor för kolumnen \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:686 +#: parser/parse_utilcmd.c:714 #, c-format msgid "multiple default values specified for column \"%s\" of table \"%s\"" msgstr "multipla default-värden angivna för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:703 +#: parser/parse_utilcmd.c:731 #, c-format msgid "identity columns are not supported on typed tables" msgstr "identitetskolumner stöds inte på typade tabeller" -#: parser/parse_utilcmd.c:707 +#: parser/parse_utilcmd.c:735 #, c-format msgid "identity columns are not supported on partitions" msgstr "identitetskolumner stöds inte för partitioner" -#: parser/parse_utilcmd.c:716 +#: parser/parse_utilcmd.c:744 #, c-format msgid "multiple identity specifications for column \"%s\" of table \"%s\"" msgstr "multipla identitetspecifikationer för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:746 +#: parser/parse_utilcmd.c:774 #, c-format msgid "generated columns are not supported on typed tables" msgstr "genererade kolumner stöds inte på typade tabeller" -#: parser/parse_utilcmd.c:750 +#: parser/parse_utilcmd.c:778 #, c-format msgid "generated columns are not supported on partitions" msgstr "genererade kolumner stöds inte för partitioner" -#: parser/parse_utilcmd.c:755 +#: parser/parse_utilcmd.c:783 #, c-format msgid "multiple generation clauses specified for column \"%s\" of table \"%s\"" msgstr "multipla genereringsklausuler angivna för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:773 parser/parse_utilcmd.c:888 +#: parser/parse_utilcmd.c:801 parser/parse_utilcmd.c:916 #, c-format msgid "primary key constraints are not supported on foreign tables" msgstr "primärnyckelvillkor stöds inte på främmande tabeller" -#: parser/parse_utilcmd.c:782 parser/parse_utilcmd.c:898 +#: parser/parse_utilcmd.c:810 parser/parse_utilcmd.c:926 #, c-format msgid "unique constraints are not supported on foreign tables" msgstr "unika villkor stöds inte på främmande tabeller" -#: parser/parse_utilcmd.c:827 +#: parser/parse_utilcmd.c:855 #, c-format msgid "both default and identity specified for column \"%s\" of table \"%s\"" msgstr "både default och identity angiven för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:835 +#: parser/parse_utilcmd.c:863 #, c-format msgid "both default and generation expression specified for column \"%s\" of table \"%s\"" msgstr "både default och genereringsuttryck angiven för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:843 +#: parser/parse_utilcmd.c:871 #, c-format msgid "both identity and generation expression specified for column \"%s\" of table \"%s\"" msgstr "både identity och genereringsuttryck angiven för kolumn \"%s\" i tabell \"%s\"" -#: parser/parse_utilcmd.c:908 +#: parser/parse_utilcmd.c:936 #, c-format msgid "exclusion constraints are not supported on foreign tables" msgstr "uteslutningsvillkor stöds inte på främmande tabeller" -#: parser/parse_utilcmd.c:914 +#: parser/parse_utilcmd.c:942 #, c-format msgid "exclusion constraints are not supported on partitioned tables" msgstr "uteslutningsvillkor stöds inte för partitionerade tabeller" -#: parser/parse_utilcmd.c:979 +#: parser/parse_utilcmd.c:1007 #, c-format msgid "LIKE is not supported for creating foreign tables" msgstr "LIKE stöds inte för att skapa främmande tabeller" -#: parser/parse_utilcmd.c:992 +#: parser/parse_utilcmd.c:1020 #, c-format msgid "relation \"%s\" is invalid in LIKE clause" msgstr "relationen \"%s\" är ogiltig i LIKE-klausul" -#: parser/parse_utilcmd.c:1760 parser/parse_utilcmd.c:1868 +#: parser/parse_utilcmd.c:1788 parser/parse_utilcmd.c:1896 #, c-format msgid "Index \"%s\" contains a whole-row table reference." msgstr "Index \"%s\" innehåller en hela-raden-referens." -#: parser/parse_utilcmd.c:2268 +#: parser/parse_utilcmd.c:2296 #, c-format msgid "cannot use an existing index in CREATE TABLE" msgstr "kan inte använda ett existerande index i CREATE TABLE" -#: parser/parse_utilcmd.c:2288 +#: parser/parse_utilcmd.c:2316 #, c-format msgid "index \"%s\" is already associated with a constraint" msgstr "index \"%s\" är redan associerad med ett villkor" -#: parser/parse_utilcmd.c:2309 +#: parser/parse_utilcmd.c:2337 #, c-format msgid "\"%s\" is not a unique index" msgstr "\"%s\" är inte ett unikt index" -#: parser/parse_utilcmd.c:2310 parser/parse_utilcmd.c:2317 -#: parser/parse_utilcmd.c:2324 parser/parse_utilcmd.c:2401 +#: parser/parse_utilcmd.c:2338 parser/parse_utilcmd.c:2345 +#: parser/parse_utilcmd.c:2352 parser/parse_utilcmd.c:2429 #, c-format msgid "Cannot create a primary key or unique constraint using such an index." msgstr "Kan inte skapa en primärnyckel eller ett unikt villkor med hjälp av ett sådant index." -#: parser/parse_utilcmd.c:2316 +#: parser/parse_utilcmd.c:2344 #, c-format msgid "index \"%s\" contains expressions" msgstr "index \"%s\" innehåller uttryck" -#: parser/parse_utilcmd.c:2323 +#: parser/parse_utilcmd.c:2351 #, c-format msgid "\"%s\" is a partial index" msgstr "\"%s\" är ett partiellt index" -#: parser/parse_utilcmd.c:2335 +#: parser/parse_utilcmd.c:2363 #, c-format msgid "\"%s\" is a deferrable index" msgstr "\"%s\" är ett \"deferrable\" index" -#: parser/parse_utilcmd.c:2336 +#: parser/parse_utilcmd.c:2364 #, c-format msgid "Cannot create a non-deferrable constraint using a deferrable index." msgstr "Kan inte skapa ett icke-\"deferrable\" integritetsvillkor från ett \"deferrable\" index." -#: parser/parse_utilcmd.c:2400 +#: parser/parse_utilcmd.c:2428 #, c-format msgid "index \"%s\" column number %d does not have default sorting behavior" msgstr "index \"%s\" kolumn nummer %d har ingen standard för sorteringsbeteende" -#: parser/parse_utilcmd.c:2557 +#: parser/parse_utilcmd.c:2585 #, c-format msgid "column \"%s\" appears twice in primary key constraint" msgstr "kolumn \"%s\" finns med två gånger i primära nyckel-villkoret" -#: parser/parse_utilcmd.c:2563 +#: parser/parse_utilcmd.c:2591 #, c-format msgid "column \"%s\" appears twice in unique constraint" msgstr "kolumn \"%s\" finns med två gånger i unique-villkoret" -#: parser/parse_utilcmd.c:2897 +#: parser/parse_utilcmd.c:2925 #, c-format msgid "index expressions and predicates can refer only to the table being indexed" msgstr "indexuttryck och predikat kan bara referera till tabellen som indexeras" -#: parser/parse_utilcmd.c:2969 +#: parser/parse_utilcmd.c:2997 #, c-format msgid "statistics expressions can refer only to the table being referenced" msgstr "statistikuttryck kan bara referera till tabellen som är refererad" -#: parser/parse_utilcmd.c:3012 +#: parser/parse_utilcmd.c:3040 #, c-format msgid "rules on materialized views are not supported" msgstr "regler på materialiserade vyer stöds inte" -#: parser/parse_utilcmd.c:3075 +#: parser/parse_utilcmd.c:3103 #, c-format msgid "rule WHERE condition cannot contain references to other relations" msgstr "WHERE-villkor i regel kan inte innehålla referenser till andra relationer" -#: parser/parse_utilcmd.c:3148 +#: parser/parse_utilcmd.c:3176 #, c-format msgid "rules with WHERE conditions can only have SELECT, INSERT, UPDATE, or DELETE actions" msgstr "regler med WHERE-villkor kan bara innehålla SELECT-, INSERT-, UPDATE- eller DELETE-handlingar" -#: parser/parse_utilcmd.c:3166 parser/parse_utilcmd.c:3267 -#: rewrite/rewriteHandler.c:532 rewrite/rewriteManip.c:1021 +#: parser/parse_utilcmd.c:3194 parser/parse_utilcmd.c:3295 +#: rewrite/rewriteHandler.c:533 rewrite/rewriteManip.c:1021 #, c-format msgid "conditional UNION/INTERSECT/EXCEPT statements are not implemented" msgstr "UNION-/INTERSECT-/EXCEPT-satser med villkor är inte implementerat" -#: parser/parse_utilcmd.c:3184 +#: parser/parse_utilcmd.c:3212 #, c-format msgid "ON SELECT rule cannot use OLD" msgstr "ON SELECT-regel kan inte använda OLD" -#: parser/parse_utilcmd.c:3188 +#: parser/parse_utilcmd.c:3216 #, c-format msgid "ON SELECT rule cannot use NEW" msgstr "ON SELECT-regel kan inte använda NEW" -#: parser/parse_utilcmd.c:3197 +#: parser/parse_utilcmd.c:3225 #, c-format msgid "ON INSERT rule cannot use OLD" msgstr "ON INSERT-regel kan inte använda OLD" -#: parser/parse_utilcmd.c:3203 +#: parser/parse_utilcmd.c:3231 #, c-format msgid "ON DELETE rule cannot use NEW" msgstr "ON DELETE-regel kan inte använda NEW" -#: parser/parse_utilcmd.c:3231 +#: parser/parse_utilcmd.c:3259 #, c-format msgid "cannot refer to OLD within WITH query" msgstr "kan inte referera till OLD i WITH-fråga" -#: parser/parse_utilcmd.c:3238 +#: parser/parse_utilcmd.c:3266 #, c-format msgid "cannot refer to NEW within WITH query" msgstr "kan inte referera till NEW i WITH-fråga" -#: parser/parse_utilcmd.c:3688 +#: parser/parse_utilcmd.c:3716 #, c-format msgid "misplaced DEFERRABLE clause" msgstr "felplacerad DEFERRABLE-klausul" -#: parser/parse_utilcmd.c:3693 parser/parse_utilcmd.c:3708 +#: parser/parse_utilcmd.c:3721 parser/parse_utilcmd.c:3736 #, c-format msgid "multiple DEFERRABLE/NOT DEFERRABLE clauses not allowed" msgstr "multipla DEFERRABLE/NOT DEFERRABLE-klausuler tillåts inte" -#: parser/parse_utilcmd.c:3703 +#: parser/parse_utilcmd.c:3731 #, c-format msgid "misplaced NOT DEFERRABLE clause" msgstr "felplacerad NOT DEFERRABLE-klausul" -#: parser/parse_utilcmd.c:3724 +#: parser/parse_utilcmd.c:3752 #, c-format msgid "misplaced INITIALLY DEFERRED clause" msgstr "felplacerad INITIALLY DEFERRED-klausul" -#: parser/parse_utilcmd.c:3729 parser/parse_utilcmd.c:3755 +#: parser/parse_utilcmd.c:3757 parser/parse_utilcmd.c:3783 #, c-format msgid "multiple INITIALLY IMMEDIATE/DEFERRED clauses not allowed" msgstr "multipla INITIALLY IMMEDIATE/DEFERRED-klausuler tillåts inte" -#: parser/parse_utilcmd.c:3750 +#: parser/parse_utilcmd.c:3778 #, c-format msgid "misplaced INITIALLY IMMEDIATE clause" msgstr "felplacerad klausul INITIALLY IMMEDIATE" -#: parser/parse_utilcmd.c:3943 +#: parser/parse_utilcmd.c:3971 #, c-format msgid "CREATE specifies a schema (%s) different from the one being created (%s)" msgstr "CREATE anger ett schema (%s) som skiljer sig från det som skapas (%s)" -#: parser/parse_utilcmd.c:3978 +#: parser/parse_utilcmd.c:4006 #, c-format msgid "\"%s\" is not a partitioned table" msgstr "\"%s\" är inte en partitionerad tabell" -#: parser/parse_utilcmd.c:3985 +#: parser/parse_utilcmd.c:4013 #, c-format msgid "table \"%s\" is not partitioned" msgstr "tabell \"%s\" är inte partitionerad" -#: parser/parse_utilcmd.c:3992 +#: parser/parse_utilcmd.c:4020 #, c-format msgid "index \"%s\" is not partitioned" msgstr "index \"%s\" är inte partitionerad" -#: parser/parse_utilcmd.c:4032 +#: parser/parse_utilcmd.c:4060 #, c-format msgid "a hash-partitioned table may not have a default partition" msgstr "en hash-partitionerad tabell får inte ha en standardpartition" -#: parser/parse_utilcmd.c:4049 +#: parser/parse_utilcmd.c:4077 #, c-format msgid "invalid bound specification for a hash partition" msgstr "ogiltig gränsangivelse för hash-partition" -#: parser/parse_utilcmd.c:4055 partitioning/partbounds.c:4824 +#: parser/parse_utilcmd.c:4083 partitioning/partbounds.c:4824 #, c-format msgid "modulus for hash partition must be an integer value greater than zero" msgstr "modulo för hash-partition vara ett heltalsvärde större än noll" -#: parser/parse_utilcmd.c:4062 partitioning/partbounds.c:4832 +#: parser/parse_utilcmd.c:4090 partitioning/partbounds.c:4832 #, c-format msgid "remainder for hash partition must be less than modulus" msgstr "rest för hash-partition måste vara lägre än modulo" -#: parser/parse_utilcmd.c:4075 +#: parser/parse_utilcmd.c:4103 #, c-format msgid "invalid bound specification for a list partition" msgstr "ogiltig gränsangivelse för listpartition" -#: parser/parse_utilcmd.c:4128 +#: parser/parse_utilcmd.c:4156 #, c-format msgid "invalid bound specification for a range partition" msgstr "ogiltig gränsangivelse för range-partition" -#: parser/parse_utilcmd.c:4134 +#: parser/parse_utilcmd.c:4162 #, c-format msgid "FROM must specify exactly one value per partitioning column" msgstr "FROM måste ge exakt ett värde per partitionerande kolumn" -#: parser/parse_utilcmd.c:4138 +#: parser/parse_utilcmd.c:4166 #, c-format msgid "TO must specify exactly one value per partitioning column" msgstr "TO måste ge exakt ett värde per partitionerande kolumn" -#: parser/parse_utilcmd.c:4252 +#: parser/parse_utilcmd.c:4280 #, c-format msgid "cannot specify NULL in range bound" msgstr "kan inte ange NULL i range-gräns" -#: parser/parse_utilcmd.c:4301 +#: parser/parse_utilcmd.c:4329 #, c-format msgid "every bound following MAXVALUE must also be MAXVALUE" msgstr "varje gräns efter MAXVALUE måste också vara MAXVALUE" -#: parser/parse_utilcmd.c:4308 +#: parser/parse_utilcmd.c:4336 #, c-format msgid "every bound following MINVALUE must also be MINVALUE" msgstr "varje gräns efter MINVALUE måste också vara MINVALUE" -#: parser/parse_utilcmd.c:4351 +#: parser/parse_utilcmd.c:4379 #, c-format msgid "specified value cannot be cast to type %s for column \"%s\"" msgstr "angivet värde kan inte typomvandlas till typ %s för kolumn \"%s\"" @@ -18960,7 +18983,7 @@ msgstr "bakgrundsarbetare \"%s\": ogiltigt omstartsintervall" msgid "background worker \"%s\": parallel workers may not be configured for restart" msgstr "bakgrundsarbetare \"%s\": parallella arbetare kan inte konfigureras för omstart" -#: postmaster/bgworker.c:730 tcop/postgres.c:3215 +#: postmaster/bgworker.c:730 tcop/postgres.c:3243 #, c-format msgid "terminating background worker \"%s\" due to administrator command" msgstr "terminerar bakgrundsarbetare \"%s\" pga administratörskommando" @@ -19240,9 +19263,9 @@ msgstr "tog emot okrypterad data efter GSSAPI-krypteringsförfrågan" msgid "unsupported frontend protocol %u.%u: server supports %u.0 to %u.%u" msgstr "inget stöd för framändans protokoll %u.%u: servern stöder %u.0 till %u.%u" -#: postmaster/postmaster.c:2264 utils/misc/guc.c:7400 utils/misc/guc.c:7436 -#: utils/misc/guc.c:7506 utils/misc/guc.c:8944 utils/misc/guc.c:11986 -#: utils/misc/guc.c:12027 +#: postmaster/postmaster.c:2264 utils/misc/guc.c:7412 utils/misc/guc.c:7448 +#: utils/misc/guc.c:7518 utils/misc/guc.c:8962 utils/misc/guc.c:12004 +#: utils/misc/guc.c:12045 #, c-format msgid "invalid value for parameter \"%s\": \"%s\"" msgstr "ogiltigt värde för parameter \"%s\": \"%s\"" @@ -20825,7 +20848,7 @@ msgstr "Denna slot har invaliderats då den överskred maximal reserverad storle #: replication/walsender.c:1283 #, c-format msgid "terminating walsender process after promotion" -msgstr "stänger ner walsender-process efter befordring" +msgstr "stänger ner walsender-process efter befordran" #: replication/walsender.c:1704 #, c-format @@ -20842,9 +20865,9 @@ msgstr "kan inte köra SQL-kommandon i WAL-sändare för fysisk replikering" msgid "received replication command: %s" msgstr "tog emot replikeringskommando: %s" -#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1114 -#: tcop/postgres.c:1472 tcop/postgres.c:1712 tcop/postgres.c:2181 -#: tcop/postgres.c:2614 tcop/postgres.c:2692 +#: replication/walsender.c:1780 tcop/fastpath.c:208 tcop/postgres.c:1118 +#: tcop/postgres.c:1476 tcop/postgres.c:1728 tcop/postgres.c:2209 +#: tcop/postgres.c:2642 tcop/postgres.c:2720 #, c-format msgid "current transaction is aborted, commands ignored until end of transaction block" msgstr "aktuella transaktionen har avbrutits, alla kommandon ignoreras tills slutet på transaktionen" @@ -21090,198 +21113,203 @@ msgstr "regel \"%s\" för relation \"%s\" existerar inte" msgid "renaming an ON SELECT rule is not allowed" msgstr "byta namn på en ON SELECT-regel tillåts inte" -#: rewrite/rewriteHandler.c:576 +#: rewrite/rewriteHandler.c:577 #, c-format msgid "WITH query name \"%s\" appears in both a rule action and the query being rewritten" msgstr "WITH-frågenamn \"%s\" finns både i en regelhändelse och i frågan som skrivs om" -#: rewrite/rewriteHandler.c:603 +#: rewrite/rewriteHandler.c:604 #, c-format msgid "INSERT...SELECT rule actions are not supported for queries having data-modifying statements in WITH" msgstr "INSERT...SELECT-regler stöds inte för frågor som har datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:656 +#: rewrite/rewriteHandler.c:657 #, c-format msgid "cannot have RETURNING lists in multiple rules" msgstr "kan inte ha RETURNING-listor i multipla regler" -#: rewrite/rewriteHandler.c:888 rewrite/rewriteHandler.c:927 +#: rewrite/rewriteHandler.c:889 rewrite/rewriteHandler.c:928 #, c-format msgid "cannot insert a non-DEFAULT value into column \"%s\"" msgstr "kan inte sätta in ett icke-DEFAULT-värde i kolumn \"%s\"" -#: rewrite/rewriteHandler.c:890 rewrite/rewriteHandler.c:956 +#: rewrite/rewriteHandler.c:891 rewrite/rewriteHandler.c:957 #, c-format msgid "Column \"%s\" is an identity column defined as GENERATED ALWAYS." msgstr "Kolumn \"%s\" är en identitetskolumn definierad som GENERATED ALWAYS." -#: rewrite/rewriteHandler.c:892 +#: rewrite/rewriteHandler.c:893 #, c-format msgid "Use OVERRIDING SYSTEM VALUE to override." msgstr "Använd OVERRIDING SYSTEM VALUE för att överskugga." -#: rewrite/rewriteHandler.c:954 rewrite/rewriteHandler.c:962 +#: rewrite/rewriteHandler.c:955 rewrite/rewriteHandler.c:963 #, c-format msgid "column \"%s\" can only be updated to DEFAULT" msgstr "kolumn \"%s\" kan bara uppdateras till DEFAULT" -#: rewrite/rewriteHandler.c:1109 rewrite/rewriteHandler.c:1127 +#: rewrite/rewriteHandler.c:1110 rewrite/rewriteHandler.c:1128 #, c-format msgid "multiple assignments to same column \"%s\"" msgstr "flera tilldelningar till samma kolumn \"%s\"" -#: rewrite/rewriteHandler.c:2143 rewrite/rewriteHandler.c:4057 +#: rewrite/rewriteHandler.c:1743 rewrite/rewriteHandler.c:3145 +#, c-format +msgid "access to non-system view \"%s\" is restricted" +msgstr "access till icke-system vy \"%s\" är begränsad" + +#: rewrite/rewriteHandler.c:2152 rewrite/rewriteHandler.c:4074 #, c-format msgid "infinite recursion detected in rules for relation \"%s\"" msgstr "oändlig rekursion detekterad i reglerna för relation \"%s\"" -#: rewrite/rewriteHandler.c:2228 +#: rewrite/rewriteHandler.c:2237 #, c-format msgid "infinite recursion detected in policy for relation \"%s\"" msgstr "oändlig rekursion detekterad i policy för relation \"%s\"" -#: rewrite/rewriteHandler.c:2548 +#: rewrite/rewriteHandler.c:2557 msgid "Junk view columns are not updatable." msgstr "Skräpkolumner i vy är inte uppdateringsbara." -#: rewrite/rewriteHandler.c:2553 +#: rewrite/rewriteHandler.c:2562 msgid "View columns that are not columns of their base relation are not updatable." msgstr "Vykolumner som inte är kolumner i dess basrelation är inte uppdateringsbara." -#: rewrite/rewriteHandler.c:2556 +#: rewrite/rewriteHandler.c:2565 msgid "View columns that refer to system columns are not updatable." msgstr "Vykolumner som refererar till systemkolumner är inte uppdateringsbara." -#: rewrite/rewriteHandler.c:2559 +#: rewrite/rewriteHandler.c:2568 msgid "View columns that return whole-row references are not updatable." msgstr "Vykolumner som returnerar hel-rad-referenser är inte uppdateringsbara." -#: rewrite/rewriteHandler.c:2620 +#: rewrite/rewriteHandler.c:2629 msgid "Views containing DISTINCT are not automatically updatable." msgstr "Vyer som innehåller DISTINCT är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2623 +#: rewrite/rewriteHandler.c:2632 msgid "Views containing GROUP BY are not automatically updatable." msgstr "Vyer som innehåller GROUP BY är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2626 +#: rewrite/rewriteHandler.c:2635 msgid "Views containing HAVING are not automatically updatable." msgstr "Vyer som innehåller HAVING är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2629 +#: rewrite/rewriteHandler.c:2638 msgid "Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable." msgstr "Vyer som innehåller UNION, INTERSECT eller EXCEPT är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2632 +#: rewrite/rewriteHandler.c:2641 msgid "Views containing WITH are not automatically updatable." msgstr "Vyer som innehåller WITH är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2635 +#: rewrite/rewriteHandler.c:2644 msgid "Views containing LIMIT or OFFSET are not automatically updatable." msgstr "Vyer som innehåller LIMIT eller OFFSET är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2647 +#: rewrite/rewriteHandler.c:2656 msgid "Views that return aggregate functions are not automatically updatable." msgstr "Vyer som returnerar aggregatfunktioner är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2650 +#: rewrite/rewriteHandler.c:2659 msgid "Views that return window functions are not automatically updatable." msgstr "Vyer som returnerar fönsterfunktioner uppdateras inte automatiskt." -#: rewrite/rewriteHandler.c:2653 +#: rewrite/rewriteHandler.c:2662 msgid "Views that return set-returning functions are not automatically updatable." msgstr "Vyer som returnerar mängd-returnerande funktioner är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2660 rewrite/rewriteHandler.c:2664 -#: rewrite/rewriteHandler.c:2672 +#: rewrite/rewriteHandler.c:2669 rewrite/rewriteHandler.c:2673 +#: rewrite/rewriteHandler.c:2681 msgid "Views that do not select from a single table or view are not automatically updatable." msgstr "Vyer som inte läser från en ensam tabell eller vy är inte automatiskt uppdateringsbar." -#: rewrite/rewriteHandler.c:2675 +#: rewrite/rewriteHandler.c:2684 msgid "Views containing TABLESAMPLE are not automatically updatable." msgstr "Vyer som innehåller TABLESAMPLE är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:2699 +#: rewrite/rewriteHandler.c:2708 msgid "Views that have no updatable columns are not automatically updatable." msgstr "Vyer som inte har några uppdateringsbara kolumner är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:3188 +#: rewrite/rewriteHandler.c:3205 #, c-format msgid "cannot insert into column \"%s\" of view \"%s\"" msgstr "kan inte insert:a i kolumn \"%s\" i vy \"%s\"" -#: rewrite/rewriteHandler.c:3196 +#: rewrite/rewriteHandler.c:3213 #, c-format msgid "cannot update column \"%s\" of view \"%s\"" msgstr "kan inte uppdatera kolumn \"%s\" i view \"%s\"" -#: rewrite/rewriteHandler.c:3684 +#: rewrite/rewriteHandler.c:3701 #, c-format msgid "DO INSTEAD NOTIFY rules are not supported for data-modifying statements in WITH" msgstr "DO INSTEAD NOTIFY-regler stöds inte för datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:3695 +#: rewrite/rewriteHandler.c:3712 #, c-format msgid "DO INSTEAD NOTHING rules are not supported for data-modifying statements in WITH" msgstr "DO INSTEAD NOTHING-regler stöds inte för datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:3709 +#: rewrite/rewriteHandler.c:3726 #, c-format msgid "conditional DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "villkorliga DO INSTEAD-regler stöds inte för datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:3713 +#: rewrite/rewriteHandler.c:3730 #, c-format msgid "DO ALSO rules are not supported for data-modifying statements in WITH" msgstr "DO ALSO-regler stöds inte för datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:3718 +#: rewrite/rewriteHandler.c:3735 #, c-format msgid "multi-statement DO INSTEAD rules are not supported for data-modifying statements in WITH" msgstr "fler-satsiga DO INSTEAD-regler stöds inte för datamodifierande satser i WITH" -#: rewrite/rewriteHandler.c:3985 rewrite/rewriteHandler.c:3993 -#: rewrite/rewriteHandler.c:4001 +#: rewrite/rewriteHandler.c:4002 rewrite/rewriteHandler.c:4010 +#: rewrite/rewriteHandler.c:4018 #, c-format msgid "Views with conditional DO INSTEAD rules are not automatically updatable." msgstr "Vyer med villkorliga DO INSTEAD-regler är inte automatiskt uppdateringsbara." -#: rewrite/rewriteHandler.c:4106 +#: rewrite/rewriteHandler.c:4123 #, c-format msgid "cannot perform INSERT RETURNING on relation \"%s\"" msgstr "kan inte utföra INSERT RETURNING på relation \"%s\"" -#: rewrite/rewriteHandler.c:4108 +#: rewrite/rewriteHandler.c:4125 #, c-format msgid "You need an unconditional ON INSERT DO INSTEAD rule with a RETURNING clause." msgstr "Du behöver en villkorslös ON INSERT DO INSTEAD-regel med en RETURNING-klausul." -#: rewrite/rewriteHandler.c:4113 +#: rewrite/rewriteHandler.c:4130 #, c-format msgid "cannot perform UPDATE RETURNING on relation \"%s\"" msgstr "kan inte utföra UPDATE RETURNING på relation \"%s\"" -#: rewrite/rewriteHandler.c:4115 +#: rewrite/rewriteHandler.c:4132 #, c-format msgid "You need an unconditional ON UPDATE DO INSTEAD rule with a RETURNING clause." msgstr "Du behöver en villkorslös ON UPDATE DO INSTEAD-regel med en RETURNING-klausul." -#: rewrite/rewriteHandler.c:4120 +#: rewrite/rewriteHandler.c:4137 #, c-format msgid "cannot perform DELETE RETURNING on relation \"%s\"" msgstr "kan inte utföra DELETE RETURNING på relation \"%s\"" -#: rewrite/rewriteHandler.c:4122 +#: rewrite/rewriteHandler.c:4139 #, c-format msgid "You need an unconditional ON DELETE DO INSTEAD rule with a RETURNING clause." msgstr "Du behöver en villkorslös ON DELETE DO INSTEAD-regel med en RETURNING-klausul." -#: rewrite/rewriteHandler.c:4140 +#: rewrite/rewriteHandler.c:4157 #, c-format msgid "INSERT with ON CONFLICT clause cannot be used with table that has INSERT or UPDATE rules" msgstr "INSERT med ON CONFLICT-klausul kan inte användas med tabell som har INSERT- eller UPDATE-regler" -#: rewrite/rewriteHandler.c:4197 +#: rewrite/rewriteHandler.c:4214 #, c-format msgid "WITH cannot be used in a query that is rewritten by rules into multiple queries" msgstr "WITH kan inte användas i en fråga där regler skrivit om den till flera olika frågor" @@ -21860,12 +21888,12 @@ msgstr "återställning väntar fortfarande efter %ld.%03d ms: %s" msgid "recovery finished waiting after %ld.%03d ms: %s" msgstr "återställning slutade vänta efter efter %ld.%03d ms: %s" -#: storage/ipc/standby.c:883 tcop/postgres.c:3344 +#: storage/ipc/standby.c:883 tcop/postgres.c:3372 #, c-format msgid "canceling statement due to conflict with recovery" msgstr "avbryter sats på grund av konflikt med återställning" -#: storage/ipc/standby.c:884 tcop/postgres.c:2499 +#: storage/ipc/standby.c:884 tcop/postgres.c:2527 #, c-format msgid "User transaction caused buffer deadlock with recovery." msgstr "Användartransaktion orsakade deadlock för buffer vid återställning." @@ -22247,8 +22275,8 @@ msgstr "kan inte anropa funktionen \"%s\" via fastpath-interface" msgid "fastpath function call: \"%s\" (OID %u)" msgstr "fastpath funktionsanrop: \"%s\" (OID %u)" -#: tcop/fastpath.c:312 tcop/postgres.c:1341 tcop/postgres.c:1577 -#: tcop/postgres.c:2036 tcop/postgres.c:2280 +#: tcop/fastpath.c:312 tcop/postgres.c:1345 tcop/postgres.c:1581 +#: tcop/postgres.c:2052 tcop/postgres.c:2308 #, c-format msgid "duration: %s ms" msgstr "varaktighet %s ms" @@ -22278,295 +22306,295 @@ msgstr "ogiltig argumentstorlek %d i funktionsaropsmeddelande" msgid "incorrect binary data format in function argument %d" msgstr "inkorrekt binärt dataformat i funktionsargument %d" -#: tcop/postgres.c:444 tcop/postgres.c:4828 +#: tcop/postgres.c:448 tcop/postgres.c:4916 #, c-format msgid "invalid frontend message type %d" msgstr "ogiltig frontend-meddelandetyp %d" -#: tcop/postgres.c:1051 +#: tcop/postgres.c:1055 #, c-format msgid "statement: %s" msgstr "sats: %s" -#: tcop/postgres.c:1346 +#: tcop/postgres.c:1350 #, c-format msgid "duration: %s ms statement: %s" msgstr "varaktighet: %s ms sats: %s" -#: tcop/postgres.c:1452 +#: tcop/postgres.c:1456 #, c-format msgid "cannot insert multiple commands into a prepared statement" msgstr "kan inte stoppa in multipla kommandon i en förberedd sats" -#: tcop/postgres.c:1582 +#: tcop/postgres.c:1586 #, c-format msgid "duration: %s ms parse %s: %s" msgstr "varaktighet: %s ms parse %s: %s" -#: tcop/postgres.c:1648 tcop/postgres.c:2595 +#: tcop/postgres.c:1653 tcop/postgres.c:2623 #, c-format msgid "unnamed prepared statement does not exist" msgstr "förberedd sats utan namn existerar inte" -#: tcop/postgres.c:1689 +#: tcop/postgres.c:1705 #, c-format msgid "bind message has %d parameter formats but %d parameters" msgstr "bind-meddelande har %d parameterformat men %d parametrar" -#: tcop/postgres.c:1695 +#: tcop/postgres.c:1711 #, c-format msgid "bind message supplies %d parameters, but prepared statement \"%s\" requires %d" msgstr "bind-meddelande ger %d parametrar men förberedd sats \"%s\" kräver %d" -#: tcop/postgres.c:1914 +#: tcop/postgres.c:1930 #, c-format msgid "incorrect binary data format in bind parameter %d" msgstr "inkorrekt binärdataformat i bind-parameter %d" -#: tcop/postgres.c:2041 +#: tcop/postgres.c:2057 #, c-format msgid "duration: %s ms bind %s%s%s: %s" msgstr "varaktighet: %s ms bind %s%s%s: %s" -#: tcop/postgres.c:2091 tcop/postgres.c:2678 +#: tcop/postgres.c:2108 tcop/postgres.c:2706 #, c-format msgid "portal \"%s\" does not exist" msgstr "portal \"%s\" existerar inte" -#: tcop/postgres.c:2160 +#: tcop/postgres.c:2188 #, c-format msgid "%s %s%s%s: %s" msgstr "%s %s%s%s: %s" -#: tcop/postgres.c:2162 tcop/postgres.c:2288 +#: tcop/postgres.c:2190 tcop/postgres.c:2316 msgid "execute fetch from" msgstr "kör hämtning från" -#: tcop/postgres.c:2163 tcop/postgres.c:2289 +#: tcop/postgres.c:2191 tcop/postgres.c:2317 msgid "execute" msgstr "kör" -#: tcop/postgres.c:2285 +#: tcop/postgres.c:2313 #, c-format msgid "duration: %s ms %s %s%s%s: %s" msgstr "varaktighet: %s ms %s %s%s%s: %s" -#: tcop/postgres.c:2431 +#: tcop/postgres.c:2459 #, c-format msgid "prepare: %s" msgstr "prepare: %s" -#: tcop/postgres.c:2456 +#: tcop/postgres.c:2484 #, c-format msgid "parameters: %s" msgstr "parametrar: %s" -#: tcop/postgres.c:2471 +#: tcop/postgres.c:2499 #, c-format msgid "abort reason: recovery conflict" msgstr "abortskäl: återställningskonflikt" -#: tcop/postgres.c:2487 +#: tcop/postgres.c:2515 #, c-format msgid "User was holding shared buffer pin for too long." msgstr "Användaren höll delad bufferfastlåsning för länge." -#: tcop/postgres.c:2490 +#: tcop/postgres.c:2518 #, c-format msgid "User was holding a relation lock for too long." msgstr "Användare höll ett relationslås för länge." -#: tcop/postgres.c:2493 +#: tcop/postgres.c:2521 #, c-format msgid "User was or might have been using tablespace that must be dropped." msgstr "Användaren använde eller har använt ett tablespace som tagits bort." -#: tcop/postgres.c:2496 +#: tcop/postgres.c:2524 #, c-format msgid "User query might have needed to see row versions that must be removed." msgstr "Användarfrågan kan ha behövt se radversioner som har tagits bort." -#: tcop/postgres.c:2502 +#: tcop/postgres.c:2530 #, c-format msgid "User was connected to a database that must be dropped." msgstr "Användare var ansluten till databas som måste slängas." -#: tcop/postgres.c:2541 +#: tcop/postgres.c:2569 #, c-format msgid "portal \"%s\" parameter $%d = %s" msgstr "portal \"%s\" parameter $%d = %s" -#: tcop/postgres.c:2544 +#: tcop/postgres.c:2572 #, c-format msgid "portal \"%s\" parameter $%d" msgstr "portal \"%s\" parameter $%d" -#: tcop/postgres.c:2550 +#: tcop/postgres.c:2578 #, c-format msgid "unnamed portal parameter $%d = %s" msgstr "ej namngiven portalparameter $%d = %s" -#: tcop/postgres.c:2553 +#: tcop/postgres.c:2581 #, c-format msgid "unnamed portal parameter $%d" msgstr "ej namngiven portalparameter $%d" -#: tcop/postgres.c:2898 +#: tcop/postgres.c:2926 #, c-format msgid "terminating connection because of unexpected SIGQUIT signal" msgstr "stänger anslutning på grund av oväntad SIGQUIT-signal" -#: tcop/postgres.c:2904 +#: tcop/postgres.c:2932 #, c-format msgid "terminating connection because of crash of another server process" msgstr "avbryter anslutning på grund av en krash i en annan serverprocess" -#: tcop/postgres.c:2905 +#: tcop/postgres.c:2933 #, c-format msgid "The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory." msgstr "Postmastern har sagt åt denna serverprocess att rulla tillbaka den aktuella transaktionen och avsluta då en annan process har avslutats onormalt och har eventuellt trasat sönder delat minne." -#: tcop/postgres.c:2909 tcop/postgres.c:3270 +#: tcop/postgres.c:2937 tcop/postgres.c:3298 #, c-format msgid "In a moment you should be able to reconnect to the database and repeat your command." msgstr "Du kan strax återansluta till databasen och upprepa kommandot." -#: tcop/postgres.c:2916 +#: tcop/postgres.c:2944 #, c-format msgid "terminating connection due to immediate shutdown command" msgstr "stänger anslutning på grund av kommando för omedelbar nedstängning" -#: tcop/postgres.c:3002 +#: tcop/postgres.c:3030 #, c-format msgid "floating-point exception" msgstr "flyttalsavbrott" -#: tcop/postgres.c:3003 +#: tcop/postgres.c:3031 #, c-format msgid "An invalid floating-point operation was signaled. This probably means an out-of-range result or an invalid operation, such as division by zero." msgstr "En ogiltig flyttalsoperation har signalerats. Detta beror troligen på ett resultat som är utanför giltigt intervall eller en ogiltig operation så som division med noll." -#: tcop/postgres.c:3174 +#: tcop/postgres.c:3202 #, c-format msgid "canceling authentication due to timeout" msgstr "avbryter autentisering på grund av timeout" -#: tcop/postgres.c:3178 +#: tcop/postgres.c:3206 #, c-format msgid "terminating autovacuum process due to administrator command" msgstr "avslutar autovacuum-process på grund av ett administratörskommando" -#: tcop/postgres.c:3182 +#: tcop/postgres.c:3210 #, c-format msgid "terminating logical replication worker due to administrator command" msgstr "avslutar logisk replikeringsarbetare på grund av ett administratörskommando" -#: tcop/postgres.c:3199 tcop/postgres.c:3209 tcop/postgres.c:3268 +#: tcop/postgres.c:3227 tcop/postgres.c:3237 tcop/postgres.c:3296 #, c-format msgid "terminating connection due to conflict with recovery" msgstr "avslutar anslutning på grund av konflikt med återställning" -#: tcop/postgres.c:3220 +#: tcop/postgres.c:3248 #, c-format msgid "terminating connection due to administrator command" msgstr "avslutar anslutning på grund av ett administratörskommando" -#: tcop/postgres.c:3251 +#: tcop/postgres.c:3279 #, c-format msgid "connection to client lost" msgstr "anslutning till klient har brutits" -#: tcop/postgres.c:3321 +#: tcop/postgres.c:3349 #, c-format msgid "canceling statement due to lock timeout" msgstr "avbryter sats på grund av lås-timeout" -#: tcop/postgres.c:3328 +#: tcop/postgres.c:3356 #, c-format msgid "canceling statement due to statement timeout" msgstr "avbryter sats på grund av sats-timeout" -#: tcop/postgres.c:3335 +#: tcop/postgres.c:3363 #, c-format msgid "canceling autovacuum task" msgstr "avbryter autovacuum-uppgift" -#: tcop/postgres.c:3358 +#: tcop/postgres.c:3386 #, c-format msgid "canceling statement due to user request" msgstr "avbryter sats på användares begäran" -#: tcop/postgres.c:3372 +#: tcop/postgres.c:3400 #, c-format msgid "terminating connection due to idle-in-transaction timeout" msgstr "terminerar anslutning på grund av idle-in-transaction-timeout" -#: tcop/postgres.c:3383 +#: tcop/postgres.c:3411 #, c-format msgid "terminating connection due to idle-session timeout" msgstr "stänger anslutning på grund av idle-session-timeout" -#: tcop/postgres.c:3523 +#: tcop/postgres.c:3551 #, c-format msgid "stack depth limit exceeded" msgstr "maximalt stackdjup överskridet" -#: tcop/postgres.c:3524 +#: tcop/postgres.c:3552 #, c-format msgid "Increase the configuration parameter \"max_stack_depth\" (currently %dkB), after ensuring the platform's stack depth limit is adequate." msgstr "Öka konfigurationsparametern \"max_stack_depth\" (nu %dkB) efter att ha undersökt att plattformens gräns för stackdjup är tillräcklig." -#: tcop/postgres.c:3587 +#: tcop/postgres.c:3615 #, c-format msgid "\"max_stack_depth\" must not exceed %ldkB." msgstr "\"max_stack_depth\" får ej överskrida %ldkB." -#: tcop/postgres.c:3589 +#: tcop/postgres.c:3617 #, c-format msgid "Increase the platform's stack depth limit via \"ulimit -s\" or local equivalent." msgstr "Öka plattformens stackdjupbegränsning via \"ulimit -s\" eller motsvarande." -#: tcop/postgres.c:3945 +#: tcop/postgres.c:4033 #, c-format msgid "invalid command-line argument for server process: %s" msgstr "ogiltigt kommandoradsargument för serverprocess: %s" -#: tcop/postgres.c:3946 tcop/postgres.c:3952 +#: tcop/postgres.c:4034 tcop/postgres.c:4040 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Försök med \"%s --help\" för mer information." -#: tcop/postgres.c:3950 +#: tcop/postgres.c:4038 #, c-format msgid "%s: invalid command-line argument: %s" msgstr "%s: ogiltigt kommandoradsargument: %s" -#: tcop/postgres.c:4003 +#: tcop/postgres.c:4091 #, c-format msgid "%s: no database nor user name specified" msgstr "%s: ingen databas eller användarnamn angivet" -#: tcop/postgres.c:4730 +#: tcop/postgres.c:4818 #, c-format msgid "invalid CLOSE message subtype %d" msgstr "ogiltig subtyp %d för CLOSE-meddelande" -#: tcop/postgres.c:4765 +#: tcop/postgres.c:4853 #, c-format msgid "invalid DESCRIBE message subtype %d" msgstr "ogiltig subtyp %d för DESCRIBE-meddelande" -#: tcop/postgres.c:4849 +#: tcop/postgres.c:4937 #, c-format msgid "fastpath function calls not supported in a replication connection" msgstr "fastpath-funktionsanrop stöds inte i en replikeringsanslutning" -#: tcop/postgres.c:4853 +#: tcop/postgres.c:4941 #, c-format msgid "extended query protocol not supported in a replication connection" msgstr "utökat frågeprotokoll stöds inte i en replikeringsanslutning" -#: tcop/postgres.c:5030 +#: tcop/postgres.c:5118 #, c-format msgid "disconnection: session time: %d:%02d:%02d.%03d user=%s database=%s host=%s%s%s" msgstr "nedkoppling: sessionstid: %d:%02d:%02d.%03d användare=%s databas=%s värd=%s%s%s" @@ -22679,7 +22707,7 @@ msgstr "kunde inte öppna synonymordboksfil \"%s\": %m" #: tsearch/dict_thesaurus.c:212 #, c-format msgid "unexpected delimiter" -msgstr "oväntad avdelare" +msgstr "oväntad separator" #: tsearch/dict_thesaurus.c:262 tsearch/dict_thesaurus.c:278 #, c-format @@ -23612,17 +23640,17 @@ msgstr "Detta tidszonsnamn finns i konfigurationsfilen för tidszonsförkortning msgid "invalid Datum pointer" msgstr "ogiltigt Datum-pekare" -#: utils/adt/dbsize.c:747 utils/adt/dbsize.c:813 +#: utils/adt/dbsize.c:751 utils/adt/dbsize.c:817 #, c-format msgid "invalid size: \"%s\"" msgstr "ogiltig storlek: \"%s\"" -#: utils/adt/dbsize.c:814 +#: utils/adt/dbsize.c:818 #, c-format msgid "Invalid size unit: \"%s\"." msgstr "Ogiltig storleksenhet: \"%s\"." -#: utils/adt/dbsize.c:815 +#: utils/adt/dbsize.c:819 #, c-format msgid "Valid units are \"bytes\", \"kB\", \"MB\", \"GB\", \"TB\", and \"PB\"." msgstr "Giltiga enheter är \"bytes\", \"kB\", \"MB\", \"GB\", \"TB\" och \"PB\"." @@ -23796,7 +23824,7 @@ msgstr "undre och övre gräns måste vara ändliga" #: utils/adt/float.c:4069 utils/adt/numeric.c:1815 #, c-format msgid "lower bound cannot equal upper bound" -msgstr "lägre gräns kan inte vara samma som övre gräns" +msgstr "undre gräns kan inte vara samma som övre gräns" #: utils/adt/formatting.c:561 #, c-format @@ -24593,7 +24621,7 @@ msgstr "jsonpaths medlemsväljare med wildcard kan bara appliceras på ett objek #: utils/adt/jsonpath_exec.c:1006 #, c-format msgid "jsonpath item method .%s() can only be applied to an array" -msgstr "jsonpaths elementmetod .%s() lkan bara applicerar på en array" +msgstr "jsonpaths elementmetod .%s() kan bara applicerars på en array" #: utils/adt/jsonpath_exec.c:1059 #, c-format @@ -24608,7 +24636,7 @@ msgstr "strängargument till jsonpaths elementmetod .%s() är inte en giltig rep #: utils/adt/jsonpath_exec.c:1093 #, c-format msgid "jsonpath item method .%s() can only be applied to a string or numeric value" -msgstr "jsonpaths elementmetod .%s() kan bara applicerar på en sträng eller ett numeriskt värde" +msgstr "jsonpaths elementmetod .%s() kan bara applicerars på en sträng eller ett numeriskt värde" #: utils/adt/jsonpath_exec.c:1586 #, c-format @@ -24633,7 +24661,7 @@ msgstr "jsonpaths elementmetod .%s() kan bara appliceras på ett numeriskt värd #: utils/adt/jsonpath_exec.c:1799 #, c-format msgid "jsonpath item method .%s() can only be applied to a string" -msgstr "jsonpaths elementmetod .%s() lkan bara applicerar på en sträng" +msgstr "jsonpaths elementmetod .%s() kan bara appliceras på en sträng" #: utils/adt/jsonpath_exec.c:1902 #, c-format @@ -25281,7 +25309,7 @@ msgstr "Om du menade att använda regexp_replace() med en startstartparameter s #: utils/adt/regexp.c:702 utils/adt/regexp.c:711 utils/adt/regexp.c:1068 #: utils/adt/regexp.c:1132 utils/adt/regexp.c:1141 utils/adt/regexp.c:1150 #: utils/adt/regexp.c:1159 utils/adt/regexp.c:1839 utils/adt/regexp.c:1848 -#: utils/adt/regexp.c:1857 utils/misc/guc.c:11875 utils/misc/guc.c:11909 +#: utils/adt/regexp.c:1857 utils/misc/guc.c:11893 utils/misc/guc.c:11927 #, c-format msgid "invalid value for parameter \"%s\": %d" msgstr "ogiltigt värde för parameter \"%s\": %d" @@ -25320,7 +25348,7 @@ msgid "more than one operator named %s" msgstr "mer än en operator med namn %s" #: utils/adt/regproc.c:715 utils/adt/regproc.c:756 utils/adt/regproc.c:2055 -#: utils/adt/ruleutils.c:10029 utils/adt/ruleutils.c:10198 +#: utils/adt/ruleutils.c:10053 utils/adt/ruleutils.c:10222 #, c-format msgid "too many arguments" msgstr "för många argument" @@ -25521,7 +25549,7 @@ msgstr "prceision för TIMESTAMP(%d)%s kan inte vara negativ" msgid "TIMESTAMP(%d)%s precision reduced to maximum allowed, %d" msgstr "precision för TIMESTAMP(%d)%s reducerad till högsta tillåtna, %d" -#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12899 +#: utils/adt/timestamp.c:179 utils/adt/timestamp.c:437 utils/misc/guc.c:12917 #, c-format msgid "timestamp out of range: \"%s\"" msgstr "timestamp utanför giltigt intervall: \"%s\"" @@ -25762,7 +25790,7 @@ msgstr "kolumnen \"%s\" är inte av typen tsvector" #: utils/adt/tsvector_op.c:2642 #, c-format msgid "configuration column \"%s\" does not exist" -msgstr "konfigurationskolumnen \"%s\" existerar inte" +msgstr "kolumnen \"%s\" för konfiguration existerar inte" #: utils/adt/tsvector_op.c:2648 #, c-format @@ -25772,12 +25800,12 @@ msgstr "kolumn \"%s\" har inte regconfig-typ" #: utils/adt/tsvector_op.c:2655 #, c-format msgid "configuration column \"%s\" must not be null" -msgstr "konfigurationskolumn \"%s\" får inte vara null" +msgstr "kolumn \"%s\" för konfiguration får inte vara null" #: utils/adt/tsvector_op.c:2668 #, c-format msgid "text search configuration name \"%s\" must be schema-qualified" -msgstr "Textsökkonfigurationsnamn \"%s\" måste vara angivet med schema" +msgstr "Konfigurationsnamn \"%s\" för textsök måste vara angivet med schema" #: utils/adt/tsvector_op.c:2693 #, c-format @@ -26150,22 +26178,22 @@ msgstr "varken namnrymdnamn eller URI får vara null" msgid "could not register XML namespace with name \"%s\" and URI \"%s\"" msgstr "kunde inte registrera XML-namnrymd med namn \"%s\" och URL \"%s\"" -#: utils/adt/xml.c:4503 +#: utils/adt/xml.c:4509 #, c-format msgid "DEFAULT namespace is not supported" msgstr "namnrymden DEFAULT stöds inte" -#: utils/adt/xml.c:4532 +#: utils/adt/xml.c:4538 #, c-format msgid "row path filter must not be empty string" msgstr "sökvägsfilter för rad får inte vara tomma strängen" -#: utils/adt/xml.c:4563 +#: utils/adt/xml.c:4572 #, c-format msgid "column path filter must not be empty string" msgstr "sokvägsfilter för kolumn får inte vara tomma strängen" -#: utils/adt/xml.c:4707 +#: utils/adt/xml.c:4719 #, c-format msgid "more than one value returned by column XPath expression" msgstr "mer än ett värde returnerades från kolumns XPath-uttryck" @@ -26534,7 +26562,7 @@ msgstr "datakatalogen \"%s\" har felaktiga rättigheter" msgid "Permissions should be u=rwx (0700) or u=rwx,g=rx (0750)." msgstr "Rättigheterna skall vara u=rwx (0700) eller u=rwx,g=rx (0750)." -#: utils/init/miscinit.c:665 utils/misc/guc.c:7837 +#: utils/init/miscinit.c:665 utils/misc/guc.c:7855 #, c-format msgid "cannot set parameter \"%s\" within security-restricted operation" msgstr "kan inte sätta parameter \"%s\" från en säkerhetsbegränsad operation" @@ -26635,7 +26663,7 @@ msgstr "Filen verkar ha lämnats kvar av misstag, men kan inte tas bort. Ta bort msgid "could not write lock file \"%s\": %m" msgstr "kunde inte skriva låsfil \"%s\": %m" -#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10843 +#: utils/init/miscinit.c:1385 utils/init/miscinit.c:1527 utils/misc/guc.c:10861 #, c-format msgid "could not read from file \"%s\": %m" msgstr "kunde inte läsa från fil \"%s\": %m" @@ -26893,1967 +26921,1971 @@ msgstr "ogiltigt byte-sekvens för kodning \"%s\": %s" msgid "character with byte sequence %s in encoding \"%s\" has no equivalent in encoding \"%s\"" msgstr "tecken med byte-sekvens %s i kodning \"%s\" har inget motsvarande i kodning \"%s\"" -#: utils/misc/guc.c:776 +#: utils/misc/guc.c:777 msgid "Ungrouped" msgstr "Ej grupperad" -#: utils/misc/guc.c:778 +#: utils/misc/guc.c:779 msgid "File Locations" msgstr "Filplatser" -#: utils/misc/guc.c:780 +#: utils/misc/guc.c:781 msgid "Connections and Authentication / Connection Settings" msgstr "Uppkopplingar och Autentisering / Uppkopplingsinställningar" -#: utils/misc/guc.c:782 +#: utils/misc/guc.c:783 msgid "Connections and Authentication / Authentication" msgstr "Uppkopplingar och Autentisering / Autentisering" -#: utils/misc/guc.c:784 +#: utils/misc/guc.c:785 msgid "Connections and Authentication / SSL" msgstr "Uppkopplingar och Autentisering / SSL" -#: utils/misc/guc.c:786 +#: utils/misc/guc.c:787 msgid "Resource Usage / Memory" msgstr "Resursanvändning / Minne" -#: utils/misc/guc.c:788 +#: utils/misc/guc.c:789 msgid "Resource Usage / Disk" msgstr "Resursanvändning / Disk" -#: utils/misc/guc.c:790 +#: utils/misc/guc.c:791 msgid "Resource Usage / Kernel Resources" msgstr "Resursanvändning / Kärnresurser" -#: utils/misc/guc.c:792 +#: utils/misc/guc.c:793 msgid "Resource Usage / Cost-Based Vacuum Delay" msgstr "Resursanvändning / Kostnadsbaserad Vacuum-fördröjning" -#: utils/misc/guc.c:794 +#: utils/misc/guc.c:795 msgid "Resource Usage / Background Writer" msgstr "Resursanvändning / Bakgrundskrivare" -#: utils/misc/guc.c:796 +#: utils/misc/guc.c:797 msgid "Resource Usage / Asynchronous Behavior" msgstr "Resursanvändning / Asynkront beteende" -#: utils/misc/guc.c:798 +#: utils/misc/guc.c:799 msgid "Write-Ahead Log / Settings" msgstr "Write-Ahead Log / Inställningar" -#: utils/misc/guc.c:800 +#: utils/misc/guc.c:801 msgid "Write-Ahead Log / Checkpoints" msgstr "Write-Ahead Log / Checkpoint:er" -#: utils/misc/guc.c:802 +#: utils/misc/guc.c:803 msgid "Write-Ahead Log / Archiving" msgstr "Write-Ahead Log / Arkivering" -#: utils/misc/guc.c:804 +#: utils/misc/guc.c:805 msgid "Write-Ahead Log / Recovery" msgstr "Write-Ahead Log / Återställning" -#: utils/misc/guc.c:806 +#: utils/misc/guc.c:807 msgid "Write-Ahead Log / Archive Recovery" msgstr "Write-Ahead Log / Återställning från arkiv" -#: utils/misc/guc.c:808 +#: utils/misc/guc.c:809 msgid "Write-Ahead Log / Recovery Target" msgstr "Write-Ahead Log / Återställningsmål" -#: utils/misc/guc.c:810 +#: utils/misc/guc.c:811 msgid "Replication / Sending Servers" msgstr "Replilering / Skickande servrar" -#: utils/misc/guc.c:812 +#: utils/misc/guc.c:813 msgid "Replication / Primary Server" msgstr "Replikering / Primärserver" -#: utils/misc/guc.c:814 +#: utils/misc/guc.c:815 msgid "Replication / Standby Servers" msgstr "Replikering / Standby-servrar" -#: utils/misc/guc.c:816 +#: utils/misc/guc.c:817 msgid "Replication / Subscribers" msgstr "Replikering / Prenumeranter" -#: utils/misc/guc.c:818 +#: utils/misc/guc.c:819 msgid "Query Tuning / Planner Method Configuration" msgstr "Frågeoptimering / Planeringsmetodinställningar" -#: utils/misc/guc.c:820 +#: utils/misc/guc.c:821 msgid "Query Tuning / Planner Cost Constants" msgstr "Frågeoptimering / Plannerarens kostnadskonstanter" -#: utils/misc/guc.c:822 +#: utils/misc/guc.c:823 msgid "Query Tuning / Genetic Query Optimizer" msgstr "Frågeoptimering / Genetisk frågeoptimerare" -#: utils/misc/guc.c:824 +#: utils/misc/guc.c:825 msgid "Query Tuning / Other Planner Options" msgstr "Frågeoptimering / Andra planeringsinställningar" -#: utils/misc/guc.c:826 +#: utils/misc/guc.c:827 msgid "Reporting and Logging / Where to Log" msgstr "Rapportering och loggning / Logga var?" -#: utils/misc/guc.c:828 +#: utils/misc/guc.c:829 msgid "Reporting and Logging / When to Log" msgstr "Rapportering och loggning / Logga när?" -#: utils/misc/guc.c:830 +#: utils/misc/guc.c:831 msgid "Reporting and Logging / What to Log" msgstr "Rapportering och loggning / Logga vad?" -#: utils/misc/guc.c:832 +#: utils/misc/guc.c:833 msgid "Reporting and Logging / Process Title" msgstr "Rapportering och loggning / Processtitel" -#: utils/misc/guc.c:834 +#: utils/misc/guc.c:835 msgid "Statistics / Monitoring" msgstr "Statistik / Övervakning" -#: utils/misc/guc.c:836 +#: utils/misc/guc.c:837 msgid "Statistics / Cumulative Query and Index Statistics" msgstr "Statistik / Ihopsamlad fråge- och index-statistik" -#: utils/misc/guc.c:838 +#: utils/misc/guc.c:839 msgid "Autovacuum" msgstr "Autovacuum" -#: utils/misc/guc.c:840 +#: utils/misc/guc.c:841 msgid "Client Connection Defaults / Statement Behavior" msgstr "Standard för klientanslutning / Satsbeteende" -#: utils/misc/guc.c:842 +#: utils/misc/guc.c:843 msgid "Client Connection Defaults / Locale and Formatting" msgstr "Standard för klientanslutning / Lokal och formattering" -#: utils/misc/guc.c:844 +#: utils/misc/guc.c:845 msgid "Client Connection Defaults / Shared Library Preloading" msgstr "Standard för klientanslutning / Förladdning av delat bibliotek" -#: utils/misc/guc.c:846 +#: utils/misc/guc.c:847 msgid "Client Connection Defaults / Other Defaults" msgstr "Standard för klientanslutning / Övriga standardvärden" -#: utils/misc/guc.c:848 +#: utils/misc/guc.c:849 msgid "Lock Management" msgstr "Låshantering" -#: utils/misc/guc.c:850 +#: utils/misc/guc.c:851 msgid "Version and Platform Compatibility / Previous PostgreSQL Versions" msgstr "Version och plattformskompabilitet / Tidigare PostrgreSQL-versioner" -#: utils/misc/guc.c:852 +#: utils/misc/guc.c:853 msgid "Version and Platform Compatibility / Other Platforms and Clients" msgstr "Version och plattformskompabilitet / Andra plattformar och klienter" -#: utils/misc/guc.c:854 +#: utils/misc/guc.c:855 msgid "Error Handling" msgstr "Felhantering" -#: utils/misc/guc.c:856 +#: utils/misc/guc.c:857 msgid "Preset Options" msgstr "Förinställningsflaggor" -#: utils/misc/guc.c:858 +#: utils/misc/guc.c:859 msgid "Customized Options" msgstr "Ändrade flaggor" -#: utils/misc/guc.c:860 +#: utils/misc/guc.c:861 msgid "Developer Options" msgstr "Utvecklarflaggor" -#: utils/misc/guc.c:918 +#: utils/misc/guc.c:919 msgid "Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\"." msgstr "Giltiga enheter för denna parameter är \"B\", \"kB\", \"MB\", \"GB\" och \"TB\"." -#: utils/misc/guc.c:955 +#: utils/misc/guc.c:956 msgid "Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\"." msgstr "Giltiga enheter för denna parameter är \"us\", \"ms\", \"s\", \"min\", \"h\" och \"d\"." -#: utils/misc/guc.c:1017 +#: utils/misc/guc.c:1018 msgid "Enables the planner's use of sequential-scan plans." msgstr "Aktiverar planerarens användning av planer med sekvensiell skanning." -#: utils/misc/guc.c:1027 +#: utils/misc/guc.c:1028 msgid "Enables the planner's use of index-scan plans." msgstr "Aktiverar planerarens användning av planer med indexskanning." -#: utils/misc/guc.c:1037 +#: utils/misc/guc.c:1038 msgid "Enables the planner's use of index-only-scan plans." msgstr "Aktiverar planerarens användning av planer med skanning av enbart index." -#: utils/misc/guc.c:1047 +#: utils/misc/guc.c:1048 msgid "Enables the planner's use of bitmap-scan plans." msgstr "Aktiverar planerarens användning av planer med bitmapskanning." -#: utils/misc/guc.c:1057 +#: utils/misc/guc.c:1058 msgid "Enables the planner's use of TID scan plans." msgstr "Aktiverar planerarens användning av planer med TID-skanning." -#: utils/misc/guc.c:1067 +#: utils/misc/guc.c:1068 msgid "Enables the planner's use of explicit sort steps." msgstr "Slår på planerarens användning av explicita sorteringssteg." -#: utils/misc/guc.c:1077 +#: utils/misc/guc.c:1078 msgid "Enables the planner's use of incremental sort steps." msgstr "Aktiverar planerarens användning av inkrementella sorteringssteg." -#: utils/misc/guc.c:1087 +#: utils/misc/guc.c:1088 msgid "Enables the planner's use of hashed aggregation plans." msgstr "Aktiverar planerarens användning av planer med hash-aggregering" -#: utils/misc/guc.c:1097 +#: utils/misc/guc.c:1098 msgid "Enables the planner's use of materialization." msgstr "Aktiverar planerarens användning av materialisering." -#: utils/misc/guc.c:1107 +#: utils/misc/guc.c:1108 msgid "Enables the planner's use of memoization." msgstr "Aktiverar planerarens användning av memoization." -#: utils/misc/guc.c:1117 +#: utils/misc/guc.c:1118 msgid "Enables the planner's use of nested-loop join plans." msgstr "Aktiverar planerarens användning av planer med nästlad loop-join," -#: utils/misc/guc.c:1127 +#: utils/misc/guc.c:1128 msgid "Enables the planner's use of merge join plans." msgstr "Aktiverar planerarens användning av merge-join-planer." -#: utils/misc/guc.c:1137 +#: utils/misc/guc.c:1138 msgid "Enables the planner's use of hash join plans." msgstr "Aktiverar planerarens användning av hash-join-planer." -#: utils/misc/guc.c:1147 +#: utils/misc/guc.c:1148 msgid "Enables the planner's use of gather merge plans." msgstr "Aktiverar planerarens användning av planer med gather-merge." -#: utils/misc/guc.c:1157 +#: utils/misc/guc.c:1158 msgid "Enables partitionwise join." msgstr "Aktiverar join per partition." -#: utils/misc/guc.c:1167 +#: utils/misc/guc.c:1168 msgid "Enables partitionwise aggregation and grouping." msgstr "Aktiverar aggregering och gruppering per partition." -#: utils/misc/guc.c:1177 +#: utils/misc/guc.c:1178 msgid "Enables the planner's use of parallel append plans." msgstr "Aktiverar planerarens användning av planer med parallell append." -#: utils/misc/guc.c:1187 +#: utils/misc/guc.c:1188 msgid "Enables the planner's use of parallel hash plans." msgstr "Aktiverar planerarens användning av planer med parallell hash." -#: utils/misc/guc.c:1197 +#: utils/misc/guc.c:1198 msgid "Enables plan-time and execution-time partition pruning." msgstr "Aktiverar rensning av partitioner vid planering och vid körning." -#: utils/misc/guc.c:1198 +#: utils/misc/guc.c:1199 msgid "Allows the query planner and executor to compare partition bounds to conditions in the query to determine which partitions must be scanned." msgstr "Tillåter att frågeplaneraren och exekveraren jämför partitionsgränser med villkor i frågan för att bestämma vilka partitioner som skall skannas." -#: utils/misc/guc.c:1209 +#: utils/misc/guc.c:1210 msgid "Enables the planner's use of async append plans." msgstr "Aktiverar planerarens användning av planer med async append." -#: utils/misc/guc.c:1219 +#: utils/misc/guc.c:1220 msgid "Enables genetic query optimization." msgstr "Aktiverar genetisk frågeoptimering." -#: utils/misc/guc.c:1220 +#: utils/misc/guc.c:1221 msgid "This algorithm attempts to do planning without exhaustive searching." msgstr "Denna algoritm försöker utföra planering utan fullständig sökning." -#: utils/misc/guc.c:1231 +#: utils/misc/guc.c:1232 msgid "Shows whether the current user is a superuser." msgstr "Visar om den aktuella användaren är en superuser." -#: utils/misc/guc.c:1241 +#: utils/misc/guc.c:1242 msgid "Enables advertising the server via Bonjour." msgstr "Aktiverar annonsering av servern via Bonjour." -#: utils/misc/guc.c:1250 +#: utils/misc/guc.c:1251 msgid "Collects transaction commit time." msgstr "Samlar in tid för transaktions-commit." -#: utils/misc/guc.c:1259 +#: utils/misc/guc.c:1260 msgid "Enables SSL connections." msgstr "Tillåter SSL-anslutningar." -#: utils/misc/guc.c:1268 +#: utils/misc/guc.c:1269 msgid "Controls whether ssl_passphrase_command is called during server reload." msgstr "Styr hurvida ssl_passphrase_command anropas vid omladdning av server." -#: utils/misc/guc.c:1277 +#: utils/misc/guc.c:1278 msgid "Give priority to server ciphersuite order." msgstr "Ge prioritet till serverns ordning av kryptometoder." -#: utils/misc/guc.c:1286 +#: utils/misc/guc.c:1287 msgid "Forces synchronization of updates to disk." msgstr "Tvingar synkronisering av uppdateringar till disk." -#: utils/misc/guc.c:1287 +#: utils/misc/guc.c:1288 msgid "The server will use the fsync() system call in several places to make sure that updates are physically written to disk. This ensures that a database cluster will recover to a consistent state after an operating system or hardware crash." msgstr "Servern kommer använda systemanropet fsync() på ett antal platser för att se till att uppdateringar fysiskt skrivs till disk. Detta för att säkerställa att databasklustret kan starta i ett konsistent tillstånd efter en operativsystemkrash eller hårdvarukrash." -#: utils/misc/guc.c:1298 +#: utils/misc/guc.c:1299 msgid "Continues processing after a checksum failure." msgstr "Fortsätter processande efter checksummefel." -#: utils/misc/guc.c:1299 +#: utils/misc/guc.c:1300 msgid "Detection of a checksum failure normally causes PostgreSQL to report an error, aborting the current transaction. Setting ignore_checksum_failure to true causes the system to ignore the failure (but still report a warning), and continue processing. This behavior could cause crashes or other serious problems. Only has an effect if checksums are enabled." msgstr "Normalt vid detektion av checksummefel så rapporterar PostgreSQL felet och avbryter den aktuella transaktionen. Sätts ignore_checksum_failure till true så kommer systemet hoppa över felet (men fortfarande rapportera en varning). Detta beteende kan orsaka krasher eller andra allvarliga problem. Detta påverkas bara om checksummor är påslaget." -#: utils/misc/guc.c:1313 +#: utils/misc/guc.c:1314 msgid "Continues processing past damaged page headers." msgstr "Fortsätter processande efter trasiga sidhuvuden." -#: utils/misc/guc.c:1314 +#: utils/misc/guc.c:1315 msgid "Detection of a damaged page header normally causes PostgreSQL to report an error, aborting the current transaction. Setting zero_damaged_pages to true causes the system to instead report a warning, zero out the damaged page, and continue processing. This behavior will destroy data, namely all the rows on the damaged page." msgstr "Normalt vid detektion av trasiga sidhuvuden så rapporterar PostgreSQL felet och avbryter den aktuella transaktionen. Sätts zero_damaged_pages till true så kommer systemet istället rapportera en varning, nollställa den trasiga sidan samt fortsätta processa. Detta kommer förstöra data (alla rader i den trasiga sidan)." -#: utils/misc/guc.c:1327 +#: utils/misc/guc.c:1328 msgid "Continues recovery after an invalid pages failure." msgstr "Fortsätter återställande efter fel på grund av ogiltiga sidor." -#: utils/misc/guc.c:1328 +#: utils/misc/guc.c:1329 msgid "Detection of WAL records having references to invalid pages during recovery causes PostgreSQL to raise a PANIC-level error, aborting the recovery. Setting ignore_invalid_pages to true causes the system to ignore invalid page references in WAL records (but still report a warning), and continue recovery. This behavior may cause crashes, data loss, propagate or hide corruption, or other serious problems. Only has an effect during recovery or in standby mode." msgstr "Normalt vid detektion av WAL-poster som refererar till ogiltiga sidor under återställning så kommer PostgreSQL att signalera ett fel på PANIC-nivå och avbryta återställningen. Sätts ignore_invalid_pages till true så kommer systemet hoppa över ogiltiga sidreferenser i WAL-poster (men fortfarande rapportera en varning) och fortsätta återställningen. Detta beteende kan orsaka krasher, dataförluster, sprida eller dölja korruption eller ge andra allvarliga problem. Detta påverkar bara under återställning eller i standby-läge." -#: utils/misc/guc.c:1346 +#: utils/misc/guc.c:1347 msgid "Writes full pages to WAL when first modified after a checkpoint." msgstr "Skriver fulla sidor till WAL första gången de ändras efter en checkpoint." -#: utils/misc/guc.c:1347 +#: utils/misc/guc.c:1348 msgid "A page write in process during an operating system crash might be only partially written to disk. During recovery, the row changes stored in WAL are not enough to recover. This option writes pages when first modified after a checkpoint to WAL so full recovery is possible." msgstr "En sidskrivning som sker vid en operativsystemkrash kan bli delvis utskriven till disk. Under återställning så kommer radändringar i WAL:en inte vara tillräckligt för att återställa datan. Denna flagga skriver ut sidor först efter att en WAL-checkpoint gjorts vilket gör att full återställning kan ske." -#: utils/misc/guc.c:1360 +#: utils/misc/guc.c:1361 msgid "Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification." msgstr "Skriver fulla sidor till WAL första gången de ändras efter en checkpoint, även för ickekritisk ändring." -#: utils/misc/guc.c:1370 +#: utils/misc/guc.c:1371 msgid "Writes zeroes to new WAL files before first use." msgstr "Skriv nollor till nya WAL-filer innan första användning." -#: utils/misc/guc.c:1380 +#: utils/misc/guc.c:1381 msgid "Recycles WAL files by renaming them." msgstr "Återanvänder WAL-filer genom att byta namn på dem." -#: utils/misc/guc.c:1390 +#: utils/misc/guc.c:1391 msgid "Logs each checkpoint." msgstr "Logga varje checkpoint." -#: utils/misc/guc.c:1399 +#: utils/misc/guc.c:1400 msgid "Logs each successful connection." msgstr "Logga varje lyckad anslutning." -#: utils/misc/guc.c:1408 +#: utils/misc/guc.c:1409 msgid "Logs end of a session, including duration." msgstr "Loggar slut på session, inklusive längden." -#: utils/misc/guc.c:1417 +#: utils/misc/guc.c:1418 msgid "Logs each replication command." msgstr "Loggar alla replikeringskommanon." -#: utils/misc/guc.c:1426 +#: utils/misc/guc.c:1427 msgid "Shows whether the running server has assertion checks enabled." msgstr "Visar om den körande servern har assert-kontroller påslagna." -#: utils/misc/guc.c:1441 +#: utils/misc/guc.c:1442 msgid "Terminate session on any error." msgstr "Avbryt sessionen vid fel." -#: utils/misc/guc.c:1450 +#: utils/misc/guc.c:1451 msgid "Reinitialize server after backend crash." msgstr "Återinitiera servern efter en backend-krash." -#: utils/misc/guc.c:1459 +#: utils/misc/guc.c:1460 msgid "Remove temporary files after backend crash." msgstr "Ta bort temporära filer efter en backend-krash." -#: utils/misc/guc.c:1470 +#: utils/misc/guc.c:1471 msgid "Logs the duration of each completed SQL statement." msgstr "Loggar tiden för varje avslutad SQL-sats." -#: utils/misc/guc.c:1479 +#: utils/misc/guc.c:1480 msgid "Logs each query's parse tree." msgstr "Loggar alla frågors parse-träd." -#: utils/misc/guc.c:1488 +#: utils/misc/guc.c:1489 msgid "Logs each query's rewritten parse tree." msgstr "Logga alla frågors omskrivet parse-träd." -#: utils/misc/guc.c:1497 +#: utils/misc/guc.c:1498 msgid "Logs each query's execution plan." msgstr "Logga alla frågors körningsplan." -#: utils/misc/guc.c:1506 +#: utils/misc/guc.c:1507 msgid "Indents parse and plan tree displays." msgstr "Indentera parse och planeringsträdutskrifter" -#: utils/misc/guc.c:1515 +#: utils/misc/guc.c:1516 msgid "Writes parser performance statistics to the server log." msgstr "Skriver parserns prestandastatistik till serverloggen." -#: utils/misc/guc.c:1524 +#: utils/misc/guc.c:1525 msgid "Writes planner performance statistics to the server log." msgstr "Skriver planerarens prestandastatistik till serverloggen." -#: utils/misc/guc.c:1533 +#: utils/misc/guc.c:1534 msgid "Writes executor performance statistics to the server log." msgstr "Skrivere exekverarens prestandastatistik till serverloggen." -#: utils/misc/guc.c:1542 +#: utils/misc/guc.c:1543 msgid "Writes cumulative performance statistics to the server log." msgstr "Skriver ackumulerad prestandastatistik till serverloggen." -#: utils/misc/guc.c:1552 +#: utils/misc/guc.c:1553 msgid "Logs system resource usage statistics (memory and CPU) on various B-tree operations." msgstr "Loggar statisik för användning av systemresurser (minne och CPU) för olika B-tree-operationer." -#: utils/misc/guc.c:1564 +#: utils/misc/guc.c:1565 msgid "Collects information about executing commands." msgstr "Samla information om körda kommanon." -#: utils/misc/guc.c:1565 +#: utils/misc/guc.c:1566 msgid "Enables the collection of information on the currently executing command of each session, along with the time at which that command began execution." msgstr "Slår på insamling av information om det nu körande kommandot för varje session, tillsammans med klockslaget när det kommandot började köra." -#: utils/misc/guc.c:1575 +#: utils/misc/guc.c:1576 msgid "Collects statistics on database activity." msgstr "Samla in statistik om databasaktivitet." -#: utils/misc/guc.c:1584 +#: utils/misc/guc.c:1585 msgid "Collects timing statistics for database I/O activity." msgstr "Samla in timingstatistik om databasens I/O-aktivitet." -#: utils/misc/guc.c:1593 +#: utils/misc/guc.c:1594 msgid "Collects timing statistics for WAL I/O activity." msgstr "Samla in timingstatistik om I/O-aktivitet för WAL." -#: utils/misc/guc.c:1603 +#: utils/misc/guc.c:1604 msgid "Updates the process title to show the active SQL command." msgstr "Uppdaterar processtitel till att visa aktivt SQL-kommando." -#: utils/misc/guc.c:1604 +#: utils/misc/guc.c:1605 msgid "Enables updating of the process title every time a new SQL command is received by the server." msgstr "Slår på uppdatering av processtiteln varje gång ett nytt SQL-kommando tas emot av servern." -#: utils/misc/guc.c:1617 +#: utils/misc/guc.c:1618 msgid "Starts the autovacuum subprocess." msgstr "Starta autovacuum-barnprocess." -#: utils/misc/guc.c:1627 +#: utils/misc/guc.c:1628 msgid "Generates debugging output for LISTEN and NOTIFY." msgstr "Skapar debug-output för LISTEN och NOTIFY." -#: utils/misc/guc.c:1639 +#: utils/misc/guc.c:1640 msgid "Emits information about lock usage." msgstr "Visar information om låsanvändning." -#: utils/misc/guc.c:1649 +#: utils/misc/guc.c:1650 msgid "Emits information about user lock usage." msgstr "Visar information om användares låsanvändning." -#: utils/misc/guc.c:1659 +#: utils/misc/guc.c:1660 msgid "Emits information about lightweight lock usage." msgstr "Visar information om lättviktig låsanvändning." -#: utils/misc/guc.c:1669 +#: utils/misc/guc.c:1670 msgid "Dumps information about all current locks when a deadlock timeout occurs." msgstr "Dumpar information om alla aktuella lås när en deadlock-timeout sker." -#: utils/misc/guc.c:1681 +#: utils/misc/guc.c:1682 msgid "Logs long lock waits." msgstr "Loggar långa väntetider på lås." -#: utils/misc/guc.c:1690 +#: utils/misc/guc.c:1691 msgid "Logs standby recovery conflict waits." msgstr "Loggar väntande på återställningskonflikter i standby" -#: utils/misc/guc.c:1699 +#: utils/misc/guc.c:1700 msgid "Logs the host name in the connection logs." msgstr "Loggar hostnamnet i anslutningsloggen." -#: utils/misc/guc.c:1700 +#: utils/misc/guc.c:1701 msgid "By default, connection logs only show the IP address of the connecting host. If you want them to show the host name you can turn this on, but depending on your host name resolution setup it might impose a non-negligible performance penalty." msgstr "Som standard visar anslutningsloggen bara IP-adressen för den anslutande värden. Om du vill att värdnamnet skall visas så kan du slå på detta men beroende på hur uppsättningen av namnuppslag är gjored så kan detta ha en markant prestandapåverkan." -#: utils/misc/guc.c:1711 +#: utils/misc/guc.c:1712 msgid "Treats \"expr=NULL\" as \"expr IS NULL\"." msgstr "Tolkar \"uttryck=NULL\" som \"uttryck IS NULL\"." -#: utils/misc/guc.c:1712 +#: utils/misc/guc.c:1713 msgid "When turned on, expressions of the form expr = NULL (or NULL = expr) are treated as expr IS NULL, that is, they return true if expr evaluates to the null value, and false otherwise. The correct behavior of expr = NULL is to always return null (unknown)." msgstr "Om påslagen så kommer uttryck på formen uttryck = NULL (eller NULL = uttryck) att behandlas som uttryck IS NULL, det vill säga returnera true om uttryck evalueras till värdet null eller evalueras till false annars. Det korrekta beteendet för uttryck = NULL är att alltid returnera null (okänt)." -#: utils/misc/guc.c:1724 +#: utils/misc/guc.c:1725 msgid "Enables per-database user names." msgstr "Aktiverar användarnamn per databas." -#: utils/misc/guc.c:1733 +#: utils/misc/guc.c:1734 msgid "Sets the default read-only status of new transactions." msgstr "Ställer in standard read-only-status för nya transaktioner." -#: utils/misc/guc.c:1743 +#: utils/misc/guc.c:1744 msgid "Sets the current transaction's read-only status." msgstr "Ställer in nuvarande transaktions read-only-status." -#: utils/misc/guc.c:1753 +#: utils/misc/guc.c:1754 msgid "Sets the default deferrable status of new transactions." msgstr "Ställer in standard deferrable-status för nya transaktioner." -#: utils/misc/guc.c:1762 +#: utils/misc/guc.c:1763 msgid "Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures." msgstr "Bestämmer om en serialiserbar transaktion för läsning kommer fördröjas tills den kan köras utan serialiseringsfel." -#: utils/misc/guc.c:1772 +#: utils/misc/guc.c:1773 msgid "Enable row security." msgstr "Aktiverar radsäkerhet." -#: utils/misc/guc.c:1773 +#: utils/misc/guc.c:1774 msgid "When enabled, row security will be applied to all users." msgstr "Om aktiv så kommer radsäkerhet användas för alla användare." -#: utils/misc/guc.c:1781 +#: utils/misc/guc.c:1782 msgid "Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE." msgstr "Kontrollera funktionskroppen vid CREATE FUNCTION och CREATE PROCEDURE." -#: utils/misc/guc.c:1790 +#: utils/misc/guc.c:1791 msgid "Enable input of NULL elements in arrays." msgstr "Aktiverar inmatning av NULL-element i arrayer." -#: utils/misc/guc.c:1791 +#: utils/misc/guc.c:1792 msgid "When turned on, unquoted NULL in an array input value means a null value; otherwise it is taken literally." msgstr "Om påslagen så kommer ej citerade NULL i indatavärden för en array betyda värdet null, annars tolkas det bokstavligt." -#: utils/misc/guc.c:1807 +#: utils/misc/guc.c:1808 msgid "WITH OIDS is no longer supported; this can only be false." msgstr "WITH OIDS stöds inte längre; denna kan bara vara false." -#: utils/misc/guc.c:1817 +#: utils/misc/guc.c:1818 msgid "Start a subprocess to capture stderr output and/or csvlogs into log files." msgstr "Starta en subprocess för att fånga output från stderr och/eller csv-loggar till loggfiler." -#: utils/misc/guc.c:1826 +#: utils/misc/guc.c:1827 msgid "Truncate existing log files of same name during log rotation." msgstr "Trunkera existerande loggfiler med samma namn under loggrotering." -#: utils/misc/guc.c:1837 +#: utils/misc/guc.c:1838 msgid "Emit information about resource usage in sorting." msgstr "Skicka ut information om resursanvändning vid sortering." -#: utils/misc/guc.c:1851 +#: utils/misc/guc.c:1852 msgid "Generate debugging output for synchronized scanning." msgstr "Generera debug-output för synkroniserad skanning." -#: utils/misc/guc.c:1866 +#: utils/misc/guc.c:1867 msgid "Enable bounded sorting using heap sort." msgstr "Slår på begränsad sortering med heap-sort." -#: utils/misc/guc.c:1879 +#: utils/misc/guc.c:1880 msgid "Emit WAL-related debugging output." msgstr "Skicka ut WAL-relaterad debug-data." -#: utils/misc/guc.c:1891 +#: utils/misc/guc.c:1892 msgid "Shows whether datetimes are integer based." msgstr "Visa hurvida datetime är heltalsbaserad" -#: utils/misc/guc.c:1902 +#: utils/misc/guc.c:1903 msgid "Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive." msgstr "Anger hurvida Kerberos- och GSSAPI-användarnamn skall tolkas skiftlägesokänsligt." -#: utils/misc/guc.c:1912 +#: utils/misc/guc.c:1913 msgid "Warn about backslash escapes in ordinary string literals." msgstr "Varna om backåtstreck-escape i vanliga stränglitteraler." -#: utils/misc/guc.c:1922 +#: utils/misc/guc.c:1923 msgid "Causes '...' strings to treat backslashes literally." msgstr "Gör att '...'-stängar tolkar bakåtstreck bokstavligt." -#: utils/misc/guc.c:1933 +#: utils/misc/guc.c:1934 msgid "Enable synchronized sequential scans." msgstr "Slå på synkroniserad sekvensiell skanning." -#: utils/misc/guc.c:1943 +#: utils/misc/guc.c:1944 msgid "Sets whether to include or exclude transaction with recovery target." msgstr "Anger hurvida man skall inkludera eller exkludera transaktion för återställningmål." -#: utils/misc/guc.c:1953 +#: utils/misc/guc.c:1954 msgid "Allows connections and queries during recovery." msgstr "Tillåt anslutningar och frågor under återställning." -#: utils/misc/guc.c:1963 +#: utils/misc/guc.c:1964 msgid "Allows feedback from a hot standby to the primary that will avoid query conflicts." msgstr "Tillåter feedback från en hot standby till primären för att undvika frågekonflikter." -#: utils/misc/guc.c:1973 +#: utils/misc/guc.c:1974 msgid "Shows whether hot standby is currently active." msgstr "Visar hurvida hot standby är aktiv för närvarande." -#: utils/misc/guc.c:1984 +#: utils/misc/guc.c:1985 msgid "Allows modifications of the structure of system tables." msgstr "Tillåter strukturförändringar av systemtabeller." -#: utils/misc/guc.c:1995 +#: utils/misc/guc.c:1996 msgid "Disables reading from system indexes." msgstr "Stänger av läsning från systemindex." -#: utils/misc/guc.c:1996 +#: utils/misc/guc.c:1997 msgid "It does not prevent updating the indexes, so it is safe to use. The worst consequence is slowness." msgstr "Det förhindrar inte uppdatering av index så det är helt säkert att använda. Det värsta som kan hända är att det är långsamt." -#: utils/misc/guc.c:2007 +#: utils/misc/guc.c:2008 msgid "Allows tablespaces directly inside pg_tblspc, for testing." msgstr "Tillåter tabellutrymmen direkt inuti pg_tblspc, för testning" -#: utils/misc/guc.c:2018 +#: utils/misc/guc.c:2019 msgid "Enables backward compatibility mode for privilege checks on large objects." msgstr "Slår på bakåtkompabilitetsläge för rättighetskontroller på stora objekt." -#: utils/misc/guc.c:2019 +#: utils/misc/guc.c:2020 msgid "Skips privilege checks when reading or modifying large objects, for compatibility with PostgreSQL releases prior to 9.0." msgstr "Hoppar över rättighetskontroller vid läsning eller modifiering av stora objekt, för kompabilitet med PostgreSQL-releaser innan 9.0." -#: utils/misc/guc.c:2029 +#: utils/misc/guc.c:2030 msgid "When generating SQL fragments, quote all identifiers." msgstr "När SQL-fragment genereras så citera alla identifierare." -#: utils/misc/guc.c:2039 +#: utils/misc/guc.c:2040 msgid "Shows whether data checksums are turned on for this cluster." msgstr "Visar om datachecksummor är påslagna för detta kluster." -#: utils/misc/guc.c:2050 +#: utils/misc/guc.c:2051 msgid "Add sequence number to syslog messages to avoid duplicate suppression." msgstr "Lägg till sekvensnummer till syslog-meddelanden för att undvika att duplikat tas bort." -#: utils/misc/guc.c:2060 +#: utils/misc/guc.c:2061 msgid "Split messages sent to syslog by lines and to fit into 1024 bytes." msgstr "Dela meddelanden som skickas till syslog till egna rader och begränsa till 1024 byte." -#: utils/misc/guc.c:2070 +#: utils/misc/guc.c:2071 msgid "Controls whether Gather and Gather Merge also run subplans." msgstr "Bestämmer om \"Gather\" och \"Gather Merge\" också exekverar subplaner." -#: utils/misc/guc.c:2071 +#: utils/misc/guc.c:2072 msgid "Should gather nodes also run subplans or just gather tuples?" msgstr "Skall gather-noder också exekvera subplaner eller bara samla in tupler?" -#: utils/misc/guc.c:2081 +#: utils/misc/guc.c:2082 msgid "Allow JIT compilation." msgstr "Tillåt JIT-kompilering." -#: utils/misc/guc.c:2092 +#: utils/misc/guc.c:2093 msgid "Register JIT-compiled functions with debugger." msgstr "Registrera JIT-kompilerade funktioner hos debuggern." -#: utils/misc/guc.c:2109 +#: utils/misc/guc.c:2110 msgid "Write out LLVM bitcode to facilitate JIT debugging." msgstr "Skriv ut LLVM-bitkod för att möjliggöra JIT-debuggning." -#: utils/misc/guc.c:2120 +#: utils/misc/guc.c:2121 msgid "Allow JIT compilation of expressions." msgstr "Tillåt JIT-kompilering av uttryck." -#: utils/misc/guc.c:2131 +#: utils/misc/guc.c:2132 msgid "Register JIT-compiled functions with perf profiler." msgstr "Registrera JIT-kompilerade funktioner med perf-profilerare." -#: utils/misc/guc.c:2148 +#: utils/misc/guc.c:2149 msgid "Allow JIT compilation of tuple deforming." msgstr "Tillåt JIT-kompilering av tupeluppdelning." -#: utils/misc/guc.c:2159 +#: utils/misc/guc.c:2160 msgid "Whether to continue running after a failure to sync data files." msgstr "Hurvida vi skall fortsätta efter ett fel att synka datafiler." -#: utils/misc/guc.c:2168 +#: utils/misc/guc.c:2169 msgid "Sets whether a WAL receiver should create a temporary replication slot if no permanent slot is configured." msgstr "Anger hurvida en WAL-mottagare skall skapa en temporär replikeringsslot om ingen permanent slot är konfigurerad." -#: utils/misc/guc.c:2186 +#: utils/misc/guc.c:2187 msgid "Sets the amount of time to wait before forcing a switch to the next WAL file." msgstr "Sätter tiden vi väntar innan vi tvingar ett byte till nästa WAL-fil." -#: utils/misc/guc.c:2197 +#: utils/misc/guc.c:2198 msgid "Sets the amount of time to wait after authentication on connection startup." msgstr "Sätter tiden att vänta efter authentiserng vid uppstart av anslutningen." -#: utils/misc/guc.c:2199 utils/misc/guc.c:2820 +#: utils/misc/guc.c:2200 utils/misc/guc.c:2821 msgid "This allows attaching a debugger to the process." msgstr "Detta tillåter att man ansluter en debugger till processen." -#: utils/misc/guc.c:2208 +#: utils/misc/guc.c:2209 msgid "Sets the default statistics target." msgstr "Sätter standardstatistikmålet." -#: utils/misc/guc.c:2209 +#: utils/misc/guc.c:2210 msgid "This applies to table columns that have not had a column-specific target set via ALTER TABLE SET STATISTICS." msgstr "Detta gäller tabellkolumner som inte har ett kolumnspecifikt mål satt med ALTER TABLE SET STATISTICS." -#: utils/misc/guc.c:2218 +#: utils/misc/guc.c:2219 msgid "Sets the FROM-list size beyond which subqueries are not collapsed." msgstr "Sätter en övre gräns på FROM-listans storlek där subfrågor slås isär." -#: utils/misc/guc.c:2220 +#: utils/misc/guc.c:2221 msgid "The planner will merge subqueries into upper queries if the resulting FROM list would have no more than this many items." msgstr "Planeraren kommer slå samman subfrågor med yttre frågor om den resulterande FROM-listan inte har fler än så här många poster." -#: utils/misc/guc.c:2231 +#: utils/misc/guc.c:2232 msgid "Sets the FROM-list size beyond which JOIN constructs are not flattened." msgstr "Sätter en övre gräns på FROM-listans storlek där JOIN-konstruktioner plattas till." -#: utils/misc/guc.c:2233 +#: utils/misc/guc.c:2234 msgid "The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result." msgstr "Planeraren kommer platta till explicita JOIN-konstruktioner till listor av FROM-poster när resultatet blir en lista med max så här många poster." -#: utils/misc/guc.c:2244 +#: utils/misc/guc.c:2245 msgid "Sets the threshold of FROM items beyond which GEQO is used." msgstr "Sätter en undre gräns på antal FROM-poster när GEQO används." -#: utils/misc/guc.c:2254 +#: utils/misc/guc.c:2255 msgid "GEQO: effort is used to set the default for other GEQO parameters." msgstr "GEQO: effort används som standard för andra GEQO-parametrar." -#: utils/misc/guc.c:2264 +#: utils/misc/guc.c:2265 msgid "GEQO: number of individuals in the population." msgstr "GEQO: antal individer i populationen." -#: utils/misc/guc.c:2265 utils/misc/guc.c:2275 +#: utils/misc/guc.c:2266 utils/misc/guc.c:2276 msgid "Zero selects a suitable default value." msgstr "Noll väljer ett lämpligt standardvärde." -#: utils/misc/guc.c:2274 +#: utils/misc/guc.c:2275 msgid "GEQO: number of iterations of the algorithm." msgstr "GEQO: antal iterationer för algoritmen." -#: utils/misc/guc.c:2286 +#: utils/misc/guc.c:2287 msgid "Sets the time to wait on a lock before checking for deadlock." msgstr "Sätter tiden som väntas på ett lås innan kontroll av deadlock sker." -#: utils/misc/guc.c:2297 +#: utils/misc/guc.c:2298 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data." msgstr "Sätter maximal fördröjning innan frågor avbryts när en \"hot standby\"-server processar arkiverad WAL-data." -#: utils/misc/guc.c:2308 +#: utils/misc/guc.c:2309 msgid "Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data." msgstr "Sätter maximal fördröjning innan frågor avbryts när en \"hot stanby\"-server processar strömmad WAL-data." -#: utils/misc/guc.c:2319 +#: utils/misc/guc.c:2320 msgid "Sets the minimum delay for applying changes during recovery." msgstr "Ställer in minsta fördröjning för att applicera ändringar under återställning." -#: utils/misc/guc.c:2330 +#: utils/misc/guc.c:2331 msgid "Sets the maximum interval between WAL receiver status reports to the sending server." msgstr "Sätter maximalt intervall mellan statusrapporter till skickande server från WAL-mottagaren." -#: utils/misc/guc.c:2341 +#: utils/misc/guc.c:2342 msgid "Sets the maximum wait time to receive data from the sending server." msgstr "Sätter maximal väntetid för att ta emot data från skickande server." -#: utils/misc/guc.c:2352 +#: utils/misc/guc.c:2353 msgid "Sets the maximum number of concurrent connections." msgstr "Sätter maximalt antal samtidiga anslutningar." -#: utils/misc/guc.c:2363 +#: utils/misc/guc.c:2364 msgid "Sets the number of connection slots reserved for superusers." msgstr "Sätter antalet anslutningsslottar som reserverats för superusers." -#: utils/misc/guc.c:2373 +#: utils/misc/guc.c:2374 msgid "Amount of dynamic shared memory reserved at startup." msgstr "Mängd dynamiskt delat minne som reserveras vid uppstart" -#: utils/misc/guc.c:2388 +#: utils/misc/guc.c:2389 msgid "Sets the number of shared memory buffers used by the server." msgstr "Sätter antalet delade minnesbuffrar som används av servern." -#: utils/misc/guc.c:2399 +#: utils/misc/guc.c:2400 msgid "Shows the size of the server's main shared memory area (rounded up to the nearest MB)." msgstr "Visa storlek på serverns huvudsakliga delade minnesarea (avrundat upp till närmaste MB)." -#: utils/misc/guc.c:2410 +#: utils/misc/guc.c:2411 msgid "Shows the number of huge pages needed for the main shared memory area." msgstr "Visa antal stora sidor som krävs för den huvudsakliga delade minnesarean." -#: utils/misc/guc.c:2411 +#: utils/misc/guc.c:2412 msgid "-1 indicates that the value could not be determined." msgstr "-1 betyder att värdet inte kunde bestämmas." -#: utils/misc/guc.c:2421 +#: utils/misc/guc.c:2422 msgid "Sets the maximum number of temporary buffers used by each session." msgstr "Sätter maximalt antal temporära buffertar som används per session." -#: utils/misc/guc.c:2432 +#: utils/misc/guc.c:2433 msgid "Sets the TCP port the server listens on." msgstr "Sätter TCP-porten som servern lyssnar på." -#: utils/misc/guc.c:2442 +#: utils/misc/guc.c:2443 msgid "Sets the access permissions of the Unix-domain socket." msgstr "Sätter accessrättigheter för Unix-domainuttag (socket)." -#: utils/misc/guc.c:2443 +#: utils/misc/guc.c:2444 msgid "Unix-domain sockets use the usual Unix file system permission set. The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Unixdomänuttag (socket) använder unix vanliga filsystemsrättigheter. Parametervärdet förväntas vara en numerisk rättighetsangivelse så som accepteras av systemanropen chmod och umask. (För att använda det vanliga oktala formatet så måste numret börja med 0 (noll).)" -#: utils/misc/guc.c:2457 +#: utils/misc/guc.c:2458 msgid "Sets the file permissions for log files." msgstr "Sätter filrättigheter för loggfiler." -#: utils/misc/guc.c:2458 +#: utils/misc/guc.c:2459 msgid "The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Parametervärdet förväntas vara en numerisk rättighetsangivelse så som accepteras av systemanropen chmod och umask. (För att använda det vanliga oktala formatet så måste numret börja med 0 (noll).)" -#: utils/misc/guc.c:2472 +#: utils/misc/guc.c:2473 msgid "Shows the mode of the data directory." msgstr "Visar rättigheter för datakatalog" -#: utils/misc/guc.c:2473 +#: utils/misc/guc.c:2474 msgid "The parameter value is a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)" msgstr "Parametervärdet är en numerisk rättighetsangivelse så som accepteras av systemanropen chmod och umask. (För att använda det vanliga oktala formatet så måste numret börja med 0 (noll).)" -#: utils/misc/guc.c:2486 +#: utils/misc/guc.c:2487 msgid "Sets the maximum memory to be used for query workspaces." msgstr "Sätter maximalt minne som används för frågors arbetsyta." -#: utils/misc/guc.c:2487 +#: utils/misc/guc.c:2488 msgid "This much memory can be used by each internal sort operation and hash table before switching to temporary disk files." msgstr "Så här mycket minne kan användas av varje intern sorteringsoperation resp. hash-tabell innan temporära filer på disk börjar användas." -#: utils/misc/guc.c:2499 +#: utils/misc/guc.c:2500 msgid "Sets the maximum memory to be used for maintenance operations." msgstr "Sätter det maximala minnet som får användas för underhållsoperationer." -#: utils/misc/guc.c:2500 +#: utils/misc/guc.c:2501 msgid "This includes operations such as VACUUM and CREATE INDEX." msgstr "Detta inkluderar operationer som VACUUM och CREATE INDEX." -#: utils/misc/guc.c:2510 +#: utils/misc/guc.c:2511 msgid "Sets the maximum memory to be used for logical decoding." msgstr "Sätter det maximala minnet som får användas för logisk avkodning." -#: utils/misc/guc.c:2511 +#: utils/misc/guc.c:2512 msgid "This much memory can be used by each internal reorder buffer before spilling to disk." msgstr "Så här mycket minne kan användas av varje intern omsorteringsbuffer innan data spills till disk." -#: utils/misc/guc.c:2527 +#: utils/misc/guc.c:2528 msgid "Sets the maximum stack depth, in kilobytes." msgstr "Sätter det maximala stackdjupet, i kilobyte." -#: utils/misc/guc.c:2538 +#: utils/misc/guc.c:2539 msgid "Limits the total size of all temporary files used by each process." msgstr "Begränsar den totala storleken för alla temporära filer som används i en process." -#: utils/misc/guc.c:2539 +#: utils/misc/guc.c:2540 msgid "-1 means no limit." msgstr "-1 betyder ingen gräns." -#: utils/misc/guc.c:2549 +#: utils/misc/guc.c:2550 msgid "Vacuum cost for a page found in the buffer cache." msgstr "Vacuum-kostnad för en sida som hittas i buffer-cache:n." -#: utils/misc/guc.c:2559 +#: utils/misc/guc.c:2560 msgid "Vacuum cost for a page not found in the buffer cache." msgstr "Vacuum-kostnad för en sida som inte hittas i buffer-cache:n." -#: utils/misc/guc.c:2569 +#: utils/misc/guc.c:2570 msgid "Vacuum cost for a page dirtied by vacuum." msgstr "Vacuum-kostnad för sidor som smutsats ner vid vacuum." -#: utils/misc/guc.c:2579 +#: utils/misc/guc.c:2580 msgid "Vacuum cost amount available before napping." msgstr "Vacuum-kostnad kvar innan pausande." -#: utils/misc/guc.c:2589 +#: utils/misc/guc.c:2590 msgid "Vacuum cost amount available before napping, for autovacuum." msgstr "Vacuum-kostnad kvar innan pausande, för autovacuum." -#: utils/misc/guc.c:2599 +#: utils/misc/guc.c:2600 msgid "Sets the maximum number of simultaneously open files for each server process." msgstr "Sätter det maximala antalet filer som en serverprocess kan ha öppna på en gång." -#: utils/misc/guc.c:2612 +#: utils/misc/guc.c:2613 msgid "Sets the maximum number of simultaneously prepared transactions." msgstr "Sätter det maximala antalet förberedda transaktioner man får ha på en gång." -#: utils/misc/guc.c:2623 +#: utils/misc/guc.c:2624 msgid "Sets the minimum OID of tables for tracking locks." msgstr "Sätter minsta tabell-OID för spårning av lås." -#: utils/misc/guc.c:2624 +#: utils/misc/guc.c:2625 msgid "Is used to avoid output on system tables." msgstr "Används för att undvika utdata för systemtabeller." -#: utils/misc/guc.c:2633 +#: utils/misc/guc.c:2634 msgid "Sets the OID of the table with unconditionally lock tracing." msgstr "Sätter OID för tabellen med ovillkorlig låsspårning." -#: utils/misc/guc.c:2645 +#: utils/misc/guc.c:2646 msgid "Sets the maximum allowed duration of any statement." msgstr "Sätter den maximala tiden som en sats får köra." -#: utils/misc/guc.c:2646 utils/misc/guc.c:2657 utils/misc/guc.c:2668 -#: utils/misc/guc.c:2679 +#: utils/misc/guc.c:2647 utils/misc/guc.c:2658 utils/misc/guc.c:2669 +#: utils/misc/guc.c:2680 msgid "A value of 0 turns off the timeout." msgstr "Värdet 0 stänger av timeout:en." -#: utils/misc/guc.c:2656 +#: utils/misc/guc.c:2657 msgid "Sets the maximum allowed duration of any wait for a lock." msgstr "Sätter den maximala tiden som man får vänta på ett lås." -#: utils/misc/guc.c:2667 +#: utils/misc/guc.c:2668 msgid "Sets the maximum allowed idle time between queries, when in a transaction." msgstr "Sätter den maximalt tillåtna inaktiva tiden mellan frågor i en transaktion." -#: utils/misc/guc.c:2678 +#: utils/misc/guc.c:2679 msgid "Sets the maximum allowed idle time between queries, when not in a transaction." msgstr "Sätter den maximalt tillåtna inaktiva tiden mellan frågor utanför en transaktion." -#: utils/misc/guc.c:2689 +#: utils/misc/guc.c:2690 msgid "Minimum age at which VACUUM should freeze a table row." msgstr "Minimal ålder där VACUUM skall frysa en tabellrad." -#: utils/misc/guc.c:2699 +#: utils/misc/guc.c:2700 msgid "Age at which VACUUM should scan whole table to freeze tuples." msgstr "Ålder där VACUUM skall skanna hela tabellen för att frysa tupler." -#: utils/misc/guc.c:2709 +#: utils/misc/guc.c:2710 msgid "Minimum age at which VACUUM should freeze a MultiXactId in a table row." msgstr "Minsta ålder där VACUUM skall frysa en MultiXactId i en tabellrad." -#: utils/misc/guc.c:2719 +#: utils/misc/guc.c:2720 msgid "Multixact age at which VACUUM should scan whole table to freeze tuples." msgstr "Multixact-ålder där VACUUM skall skanna hela tabellen för att frysa tupler." -#: utils/misc/guc.c:2729 +#: utils/misc/guc.c:2730 msgid "Number of transactions by which VACUUM and HOT cleanup should be deferred, if any." msgstr "Antalet transaktioner som VACUUM och HOT-städning skall fördröjas (om någon)." -#: utils/misc/guc.c:2738 +#: utils/misc/guc.c:2739 msgid "Age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Ålder där VACUUM skall startas som skyddsåtgärd för att undvika wraparound-stopp." -#: utils/misc/guc.c:2747 +#: utils/misc/guc.c:2748 msgid "Multixact age at which VACUUM should trigger failsafe to avoid a wraparound outage." msgstr "Multixact-ålder där VACUUM skall startas som skyddsåtgärd för att undvika wraparound-stopp." -#: utils/misc/guc.c:2760 +#: utils/misc/guc.c:2761 msgid "Sets the maximum number of locks per transaction." msgstr "Sätter det maximala antalet lås per transaktion." -#: utils/misc/guc.c:2761 +#: utils/misc/guc.c:2762 msgid "The shared lock table is sized on the assumption that at most max_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "Den delade låstabellen har storlek efter antagandet att maximalt max_locks_per_transaction * max_connections olika objekt kommer behöva låsas vid en tidpunkt." -#: utils/misc/guc.c:2772 +#: utils/misc/guc.c:2773 msgid "Sets the maximum number of predicate locks per transaction." msgstr "Sätter det maximala antalet predikatlås per transaktion." -#: utils/misc/guc.c:2773 +#: utils/misc/guc.c:2774 msgid "The shared predicate lock table is sized on the assumption that at most max_pred_locks_per_transaction * max_connections distinct objects will need to be locked at any one time." msgstr "Den delade predikatlåstabellen har storlek efter antagandet att maximalt max_pred_locks_per_transaction * max_connections olika objekt kommer behöva låsas vid en tidpunkt." -#: utils/misc/guc.c:2784 +#: utils/misc/guc.c:2785 msgid "Sets the maximum number of predicate-locked pages and tuples per relation." msgstr "Sätter det maximala antalet predikatlåsta sidor och tupler per relation." -#: utils/misc/guc.c:2785 +#: utils/misc/guc.c:2786 msgid "If more than this total of pages and tuples in the same relation are locked by a connection, those locks are replaced by a relation-level lock." msgstr "Om fler än detta totala antal sidor och tupler för samma relation är låsta av en anslutning så ersätts dessa lås med ett lås på relationen." -#: utils/misc/guc.c:2795 +#: utils/misc/guc.c:2796 msgid "Sets the maximum number of predicate-locked tuples per page." msgstr "Sätter det maximala antalet predikatlåsta tupler per sida." -#: utils/misc/guc.c:2796 +#: utils/misc/guc.c:2797 msgid "If more than this number of tuples on the same page are locked by a connection, those locks are replaced by a page-level lock." msgstr "Om fler än detta antal tupler på samma sida är låsta av en anslutning så ersätts dessa lås med ett lås på sidan." -#: utils/misc/guc.c:2806 +#: utils/misc/guc.c:2807 msgid "Sets the maximum allowed time to complete client authentication." msgstr "Sätter maximalt tillåten tid att slutföra klientautentisering." -#: utils/misc/guc.c:2818 +#: utils/misc/guc.c:2819 msgid "Sets the amount of time to wait before authentication on connection startup." msgstr "Sätter tiden att vänta före authentiserng vid uppstart av anslutningen.." -#: utils/misc/guc.c:2830 +#: utils/misc/guc.c:2831 msgid "Buffer size for reading ahead in the WAL during recovery." msgstr "Bufferstorlek för read-ahead av WAL vid återställning." -#: utils/misc/guc.c:2831 +#: utils/misc/guc.c:2832 msgid "Maximum distance to read ahead in the WAL to prefetch referenced data blocks." msgstr "Maximal längd att läsa i förväg av WAL för att prefetch:a refererade datablock." -#: utils/misc/guc.c:2841 +#: utils/misc/guc.c:2842 msgid "Sets the size of WAL files held for standby servers." msgstr "Sätter storlek på WAL-filer som sparas för standby-servrar." -#: utils/misc/guc.c:2852 +#: utils/misc/guc.c:2853 msgid "Sets the minimum size to shrink the WAL to." msgstr "Sätter maximal storlek som WAL kan krympas till." -#: utils/misc/guc.c:2864 +#: utils/misc/guc.c:2865 msgid "Sets the WAL size that triggers a checkpoint." msgstr "Sätter WAL-storlek som triggar en checkpoint." -#: utils/misc/guc.c:2876 +#: utils/misc/guc.c:2877 msgid "Sets the maximum time between automatic WAL checkpoints." msgstr "Sätter maximal tid mellan två automatiska WAL-checkpoint:er." -#: utils/misc/guc.c:2887 +#: utils/misc/guc.c:2888 msgid "Sets the maximum time before warning if checkpoints triggered by WAL volume happen too frequently." msgstr "Sätter maximal tid innan en varning ges för att stor WAL-volymn gör att checkpoint triggas för ofta." -#: utils/misc/guc.c:2889 +#: utils/misc/guc.c:2890 msgid "Write a message to the server log if checkpoints caused by the filling of WAL segment files happen more frequently than this amount of time. Zero turns off the warning." msgstr "Skriv ett meddelande i serverloggen om checkpoint:er som orsakas av fulla WAL-segmentfiler händer oftare än denna tid. Noll stänger av varningen." -#: utils/misc/guc.c:2902 utils/misc/guc.c:3120 utils/misc/guc.c:3168 +#: utils/misc/guc.c:2903 utils/misc/guc.c:3121 utils/misc/guc.c:3169 msgid "Number of pages after which previously performed writes are flushed to disk." msgstr "Antal sidor varefter tidigare skrivningar flush:as till disk." -#: utils/misc/guc.c:2913 +#: utils/misc/guc.c:2914 msgid "Sets the number of disk-page buffers in shared memory for WAL." msgstr "Sätter antal buffrar för disksidor i delat minne för WAL." -#: utils/misc/guc.c:2924 +#: utils/misc/guc.c:2925 msgid "Time between WAL flushes performed in the WAL writer." msgstr "Tid mellan WAL-flush:ar utförda i WAL-skrivaren." -#: utils/misc/guc.c:2935 +#: utils/misc/guc.c:2936 msgid "Amount of WAL written out by WAL writer that triggers a flush." msgstr "Mängden WAL utskrivna av WAL-skrivaren som triggar en flush." -#: utils/misc/guc.c:2946 +#: utils/misc/guc.c:2947 msgid "Minimum size of new file to fsync instead of writing WAL." msgstr "Minimal storlek på ny fil som skall fsync:as istället för att skriva till WAL." -#: utils/misc/guc.c:2957 +#: utils/misc/guc.c:2958 msgid "Sets the maximum number of simultaneously running WAL sender processes." msgstr "Sätter maximalt antal samtidigt körande WAL-sändarprocesser." -#: utils/misc/guc.c:2968 +#: utils/misc/guc.c:2969 msgid "Sets the maximum number of simultaneously defined replication slots." msgstr "Sätter maximalt antal samtidigt definierade replikeringsslottar." -#: utils/misc/guc.c:2978 +#: utils/misc/guc.c:2979 msgid "Sets the maximum WAL size that can be reserved by replication slots." msgstr "Sätter maximalt WAL-storlek som kan reserveras av replikeringsslottar." -#: utils/misc/guc.c:2979 +#: utils/misc/guc.c:2980 msgid "Replication slots will be marked as failed, and segments released for deletion or recycling, if this much space is occupied by WAL on disk." msgstr "Replikeringsslottar kommer markeras som misslyckade och segment kommer släppas till borttagning eller återanvändning när så här mycket plats används av WAL på disk." -#: utils/misc/guc.c:2991 +#: utils/misc/guc.c:2992 msgid "Sets the maximum time to wait for WAL replication." msgstr "Sätter maximal tid att vänta på WAL-replikering." -#: utils/misc/guc.c:3002 +#: utils/misc/guc.c:3003 msgid "Sets the delay in microseconds between transaction commit and flushing WAL to disk." msgstr "Sätter fördröjning i mikrosekunder mellan transaktions-commit ochj flush:ning av WAL till disk." -#: utils/misc/guc.c:3014 +#: utils/misc/guc.c:3015 msgid "Sets the minimum number of concurrent open transactions required before performing commit_delay." msgstr "Sätter minsta antal samtida öppna transaktioner som krävs innan vi utför en commit_delay." -#: utils/misc/guc.c:3025 +#: utils/misc/guc.c:3026 msgid "Sets the number of digits displayed for floating-point values." msgstr "Sätter antal siffror som visas för flyttalsvärden." -#: utils/misc/guc.c:3026 +#: utils/misc/guc.c:3027 msgid "This affects real, double precision, and geometric data types. A zero or negative parameter value is added to the standard number of digits (FLT_DIG or DBL_DIG as appropriate). Any value greater than zero selects precise output mode." msgstr "Detta påverkar real, double precision och geometriska datatyper. Noll eller negativt parametervärde läggs till standard antal siffror (FLT_DIG eller DBL_DIG respektive). Ett värde större än noll väljer ett exakt utmatningsläge." -#: utils/misc/guc.c:3038 +#: utils/misc/guc.c:3039 msgid "Sets the minimum execution time above which a sample of statements will be logged. Sampling is determined by log_statement_sample_rate." msgstr "Sätter minimal körtid där ett urval av långsammare satser kommer loggas. Urvalet bestämms av log_statement_sample_rate." -#: utils/misc/guc.c:3041 +#: utils/misc/guc.c:3042 msgid "Zero logs a sample of all queries. -1 turns this feature off." msgstr "Noll loggar ett urval som inkluderar alla frågor. -1 stänger av denna funktion." -#: utils/misc/guc.c:3051 +#: utils/misc/guc.c:3052 msgid "Sets the minimum execution time above which all statements will be logged." msgstr "Sätter minimal körtid där alla långsammare satser kommer loggas." -#: utils/misc/guc.c:3053 +#: utils/misc/guc.c:3054 msgid "Zero prints all queries. -1 turns this feature off." msgstr "Noll skriver ut alla frågor. -1 stänger av denna finess." -#: utils/misc/guc.c:3063 +#: utils/misc/guc.c:3064 msgid "Sets the minimum execution time above which autovacuum actions will be logged." msgstr "Sätter minimal körtid där långsammare autovacuum-operationer kommer loggas." -#: utils/misc/guc.c:3065 +#: utils/misc/guc.c:3066 msgid "Zero prints all actions. -1 turns autovacuum logging off." msgstr "Noll skriver ut alla operationer. -1 stänger av autovacuum." -#: utils/misc/guc.c:3075 +#: utils/misc/guc.c:3076 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements." msgstr "Sätter maximal längd i byte på data som loggas för bind-parametrar vid loggning av satser." -#: utils/misc/guc.c:3077 utils/misc/guc.c:3089 +#: utils/misc/guc.c:3078 utils/misc/guc.c:3090 msgid "-1 to print values in full." msgstr "-1 för att skriva ut hela värden." -#: utils/misc/guc.c:3087 +#: utils/misc/guc.c:3088 msgid "Sets the maximum length in bytes of data logged for bind parameter values when logging statements, on error." msgstr "Sätter maximal längs i byte på data som loggas för bind-parametrar vid loggning av satser i samband med fel." -#: utils/misc/guc.c:3099 +#: utils/misc/guc.c:3100 msgid "Background writer sleep time between rounds." msgstr "Bakgrundsskrivarens sleep-tid mellan körningar." -#: utils/misc/guc.c:3110 +#: utils/misc/guc.c:3111 msgid "Background writer maximum number of LRU pages to flush per round." msgstr "Bakgrundsskrivarens maximala antal LRU-sidor som flush:as per omgång." -#: utils/misc/guc.c:3133 +#: utils/misc/guc.c:3134 msgid "Number of simultaneous requests that can be handled efficiently by the disk subsystem." msgstr "Antal samtidiga förfrågningar som kan effektivt kan hanteras av disksystemet." -#: utils/misc/guc.c:3151 +#: utils/misc/guc.c:3152 msgid "A variant of effective_io_concurrency that is used for maintenance work." msgstr "En variant av effective_io_concurrency som används för underhållsarbete." -#: utils/misc/guc.c:3181 +#: utils/misc/guc.c:3182 msgid "Maximum number of concurrent worker processes." msgstr "Maximalt antal samtidiga arbetsprocesser." -#: utils/misc/guc.c:3193 +#: utils/misc/guc.c:3194 msgid "Maximum number of logical replication worker processes." msgstr "Maximalt antal arbetsprocesser för logisk replikering." -#: utils/misc/guc.c:3205 +#: utils/misc/guc.c:3206 msgid "Maximum number of table synchronization workers per subscription." msgstr "Maximalt antal arbetare som synkroniserar tabeller per prenumeration." -#: utils/misc/guc.c:3215 +#: utils/misc/guc.c:3216 msgid "Sets the amount of time to wait before forcing log file rotation." msgstr "Sätter tiden vi väntar innan vi tvingar rotering av loggfil." -#: utils/misc/guc.c:3227 +#: utils/misc/guc.c:3228 msgid "Sets the maximum size a log file can reach before being rotated." msgstr "Sätter maximalt storlek en loggfil kan bli innan vi tvingar rotering." -#: utils/misc/guc.c:3239 +#: utils/misc/guc.c:3240 msgid "Shows the maximum number of function arguments." msgstr "Visar maximalt antal funktionsargument." -#: utils/misc/guc.c:3250 +#: utils/misc/guc.c:3251 msgid "Shows the maximum number of index keys." msgstr "Visar maximalt antal indexnycklar." -#: utils/misc/guc.c:3261 +#: utils/misc/guc.c:3262 msgid "Shows the maximum identifier length." msgstr "Visar den maximala identifierarlängden." -#: utils/misc/guc.c:3272 +#: utils/misc/guc.c:3273 msgid "Shows the size of a disk block." msgstr "Visar storleken på ett diskblock." -#: utils/misc/guc.c:3283 +#: utils/misc/guc.c:3284 msgid "Shows the number of pages per disk file." msgstr "Visar antal sidor per diskfil." -#: utils/misc/guc.c:3294 +#: utils/misc/guc.c:3295 msgid "Shows the block size in the write ahead log." msgstr "Visar blockstorleken i the write-ahead-loggen." -#: utils/misc/guc.c:3305 +#: utils/misc/guc.c:3306 msgid "Sets the time to wait before retrying to retrieve WAL after a failed attempt." msgstr "Sätter väntetiden innan databasen försöker ta emot WAL efter ett misslyckat försök." -#: utils/misc/guc.c:3317 +#: utils/misc/guc.c:3318 msgid "Shows the size of write ahead log segments." msgstr "Visar storleken på write-ahead-log-segment." -#: utils/misc/guc.c:3330 +#: utils/misc/guc.c:3331 msgid "Time to sleep between autovacuum runs." msgstr "Tid att sova mellan körningar av autovacuum." -#: utils/misc/guc.c:3340 +#: utils/misc/guc.c:3341 msgid "Minimum number of tuple updates or deletes prior to vacuum." msgstr "Minst antal tupel-uppdateringar eller raderingar innan vacuum." -#: utils/misc/guc.c:3349 +#: utils/misc/guc.c:3350 msgid "Minimum number of tuple inserts prior to vacuum, or -1 to disable insert vacuums." msgstr "Minsta antal tupel-insert innnan vacuum eller -1 för att stänga av insert-vacuum." -#: utils/misc/guc.c:3358 +#: utils/misc/guc.c:3359 msgid "Minimum number of tuple inserts, updates, or deletes prior to analyze." msgstr "Minsta antal tupel-insert, -update eller -delete innan analyze." -#: utils/misc/guc.c:3368 +#: utils/misc/guc.c:3369 msgid "Age at which to autovacuum a table to prevent transaction ID wraparound." msgstr "Ålder då autovacuum körs på en tabell för att förhindra wrapaound på transaktions-ID." -#: utils/misc/guc.c:3380 +#: utils/misc/guc.c:3381 msgid "Multixact age at which to autovacuum a table to prevent multixact wraparound." msgstr "Ålder på multixact då autovacuum körs på en tabell för att förhindra wrapaound på multixact." -#: utils/misc/guc.c:3390 +#: utils/misc/guc.c:3391 msgid "Sets the maximum number of simultaneously running autovacuum worker processes." msgstr "Sätter maximalt antal samtidigt körande arbetsprocesser för autovacuum." -#: utils/misc/guc.c:3400 +#: utils/misc/guc.c:3401 msgid "Sets the maximum number of parallel processes per maintenance operation." msgstr "Sätter maximalt antal parallella processer per underhållsoperation." -#: utils/misc/guc.c:3410 +#: utils/misc/guc.c:3411 msgid "Sets the maximum number of parallel processes per executor node." msgstr "Sätter maximalt antal parallella processer per exekveringsnod." -#: utils/misc/guc.c:3421 +#: utils/misc/guc.c:3422 msgid "Sets the maximum number of parallel workers that can be active at one time." msgstr "Sätter maximalt antal parallella arbetare som kan vara aktiva på en gång." -#: utils/misc/guc.c:3432 +#: utils/misc/guc.c:3433 msgid "Sets the maximum memory to be used by each autovacuum worker process." msgstr "Sätter maximalt minne som kan användas av varje arbetsprocess för autovacuum." -#: utils/misc/guc.c:3443 +#: utils/misc/guc.c:3444 msgid "Time before a snapshot is too old to read pages changed after the snapshot was taken." msgstr "Tid innan ett snapshot är för gammalt för att läsa sidor som ändrats efter snapshot:en tagits." -#: utils/misc/guc.c:3444 +#: utils/misc/guc.c:3445 msgid "A value of -1 disables this feature." msgstr "Värdet -1 stänger av denna funktion." -#: utils/misc/guc.c:3454 +#: utils/misc/guc.c:3455 msgid "Time between issuing TCP keepalives." msgstr "Tid mellan skickande av TCP-keepalive." -#: utils/misc/guc.c:3455 utils/misc/guc.c:3466 utils/misc/guc.c:3590 +#: utils/misc/guc.c:3456 utils/misc/guc.c:3467 utils/misc/guc.c:3591 msgid "A value of 0 uses the system default." msgstr "Värdet 0 anger systemets standardvärde." -#: utils/misc/guc.c:3465 +#: utils/misc/guc.c:3466 msgid "Time between TCP keepalive retransmits." msgstr "Tid mellan omsändning av TCP-keepalive." -#: utils/misc/guc.c:3476 +#: utils/misc/guc.c:3477 msgid "SSL renegotiation is no longer supported; this can only be 0." msgstr "SSL-förhandling stöds inte längre; denna kan bara vara 0." -#: utils/misc/guc.c:3487 +#: utils/misc/guc.c:3488 msgid "Maximum number of TCP keepalive retransmits." msgstr "Maximalt antal omsändningar av TCP-keepalive." -#: utils/misc/guc.c:3488 +#: utils/misc/guc.c:3489 msgid "Number of consecutive keepalive retransmits that can be lost before a connection is considered dead. A value of 0 uses the system default." msgstr "Atalet keepalive-omsändingar i rad som kan försvinna innan en anslutning anses vara död. Värdet 0 betyder systemstandardvärdet." -#: utils/misc/guc.c:3499 +#: utils/misc/guc.c:3500 msgid "Sets the maximum allowed result for exact search by GIN." msgstr "Sätter maximalt tillåtna resultat för exakt sökning med GIN." -#: utils/misc/guc.c:3510 +#: utils/misc/guc.c:3511 msgid "Sets the planner's assumption about the total size of the data caches." msgstr "Sätter planerarens antagande om totala storleken på datacachen." -#: utils/misc/guc.c:3511 +#: utils/misc/guc.c:3512 msgid "That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. This is measured in disk pages, which are normally 8 kB each." msgstr "Det är totala storleken på cachen (kernelcache och delade buffertar) som användas för PostgreSQLs datafiler. Det mäts i disksidor som normalt är 8 kb styck." -#: utils/misc/guc.c:3522 +#: utils/misc/guc.c:3523 msgid "Sets the minimum amount of table data for a parallel scan." msgstr "Sätter minsta mängd tabelldata för en parallell skanning." -#: utils/misc/guc.c:3523 +#: utils/misc/guc.c:3524 msgid "If the planner estimates that it will read a number of table pages too small to reach this limit, a parallel scan will not be considered." msgstr "Om planeraren beräknar att den kommer läsa för få tabellsidor för att nå denna gräns så kommer den inte försöka med en parallell skanning." -#: utils/misc/guc.c:3533 +#: utils/misc/guc.c:3534 msgid "Sets the minimum amount of index data for a parallel scan." msgstr "Anger minimala mängden indexdata för en parallell scan." -#: utils/misc/guc.c:3534 +#: utils/misc/guc.c:3535 msgid "If the planner estimates that it will read a number of index pages too small to reach this limit, a parallel scan will not be considered." msgstr "Om planeraren beräknar att den kommer läsa för få indexsidor för att nå denna gräns så kommer den inte försöka med en parallell skanning." -#: utils/misc/guc.c:3545 +#: utils/misc/guc.c:3546 msgid "Shows the server version as an integer." msgstr "Visar serverns version som ett heltal." -#: utils/misc/guc.c:3556 +#: utils/misc/guc.c:3557 msgid "Log the use of temporary files larger than this number of kilobytes." msgstr "Logga användning av temporära filer som är större än detta antal kilobyte." -#: utils/misc/guc.c:3557 +#: utils/misc/guc.c:3558 msgid "Zero logs all files. The default is -1 (turning this feature off)." msgstr "Noll loggar alla filer. Standard är -1 (stänger av denna finess)." -#: utils/misc/guc.c:3567 +#: utils/misc/guc.c:3568 msgid "Sets the size reserved for pg_stat_activity.query, in bytes." msgstr "Ställer in storleken reserverad för pg_stat_activity.query, i byte." -#: utils/misc/guc.c:3578 +#: utils/misc/guc.c:3579 msgid "Sets the maximum size of the pending list for GIN index." msgstr "Sätter maximal storlek på väntelistan för GIN-index." -#: utils/misc/guc.c:3589 +#: utils/misc/guc.c:3590 msgid "TCP user timeout." msgstr "Användartimeout för TCP." -#: utils/misc/guc.c:3600 +#: utils/misc/guc.c:3601 msgid "The size of huge page that should be requested." msgstr "Storleken på stora sidor skall hämtas." -#: utils/misc/guc.c:3611 +#: utils/misc/guc.c:3612 msgid "Aggressively flush system caches for debugging purposes." msgstr "Flush:a systemcache aggressivt för att förenkla debugging." -#: utils/misc/guc.c:3634 +#: utils/misc/guc.c:3635 msgid "Sets the time interval between checks for disconnection while running queries." msgstr "Sätter tidsintervall mellan test för nedkoppling när frågor körs." -#: utils/misc/guc.c:3645 +#: utils/misc/guc.c:3646 msgid "Time between progress updates for long-running startup operations." msgstr "Tid mellan uppdatering av progress för startupoperationer som kör länge." -#: utils/misc/guc.c:3647 +#: utils/misc/guc.c:3648 msgid "0 turns this feature off." msgstr "0 stänger av denna finess." -#: utils/misc/guc.c:3666 +#: utils/misc/guc.c:3667 msgid "Sets the planner's estimate of the cost of a sequentially fetched disk page." msgstr "Ställer in planerarens estimat av kostnaden för att hämta en disksida sekvensiellt." -#: utils/misc/guc.c:3677 +#: utils/misc/guc.c:3678 msgid "Sets the planner's estimate of the cost of a nonsequentially fetched disk page." msgstr "Ställer in planerarens estimat av kostnaden för att hämta en disksida icke-sekvensiellt." -#: utils/misc/guc.c:3688 +#: utils/misc/guc.c:3689 msgid "Sets the planner's estimate of the cost of processing each tuple (row)." msgstr "Ställer in planerarens estimat av kostnaden för att processa varje tupel (rad)." -#: utils/misc/guc.c:3699 +#: utils/misc/guc.c:3700 msgid "Sets the planner's estimate of the cost of processing each index entry during an index scan." msgstr "Sätter planerarens kostnadsuppskattning för att processa varje indexpost under en indexskanning." -#: utils/misc/guc.c:3710 +#: utils/misc/guc.c:3711 msgid "Sets the planner's estimate of the cost of processing each operator or function call." msgstr "Sätter planerarens kostnadsuppskattning för att processa varje operator- eller funktions-anrop." -#: utils/misc/guc.c:3721 +#: utils/misc/guc.c:3722 msgid "Sets the planner's estimate of the cost of passing each tuple (row) from worker to leader backend." msgstr "Sätter planerarens kostnadsuppskattning för att skicka varje tupel (rad) från en arbetare till ledar-backend:en. " -#: utils/misc/guc.c:3732 +#: utils/misc/guc.c:3733 msgid "Sets the planner's estimate of the cost of starting up worker processes for parallel query." msgstr "Sätter planerarens kostnadsuppskattning för att starta upp en arbetsprocess för en parallell fråga." -#: utils/misc/guc.c:3744 +#: utils/misc/guc.c:3745 msgid "Perform JIT compilation if query is more expensive." msgstr "Utför JIT-kompilering om frågan är dyrare." -#: utils/misc/guc.c:3745 +#: utils/misc/guc.c:3746 msgid "-1 disables JIT compilation." msgstr "-1 stänger av JIT-kompilering." -#: utils/misc/guc.c:3755 +#: utils/misc/guc.c:3756 msgid "Optimize JIT-compiled functions if query is more expensive." msgstr "Optimera JIT-kompilerade funktioner om frågan är dyrare." -#: utils/misc/guc.c:3756 +#: utils/misc/guc.c:3757 msgid "-1 disables optimization." msgstr "-1 stänger av optimering." -#: utils/misc/guc.c:3766 +#: utils/misc/guc.c:3767 msgid "Perform JIT inlining if query is more expensive." msgstr "Utför JIT-\"inlining\" om frågan är dyrare." -#: utils/misc/guc.c:3767 +#: utils/misc/guc.c:3768 msgid "-1 disables inlining." msgstr "-1 stänger av \"inlining\"" -#: utils/misc/guc.c:3777 +#: utils/misc/guc.c:3778 msgid "Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved." msgstr "Sätter planerarens uppskattning av hur stor del av markörens rader som kommer hämtas. " -#: utils/misc/guc.c:3789 +#: utils/misc/guc.c:3790 msgid "Sets the planner's estimate of the average size of a recursive query's working table." msgstr "Sätter planerarens uppskattning av genomsnittliga storleken på en rekursiv frågas arbetstabell." -#: utils/misc/guc.c:3801 +#: utils/misc/guc.c:3802 msgid "GEQO: selective pressure within the population." msgstr "GEQO: selektionstryck inom populationen." -#: utils/misc/guc.c:3812 +#: utils/misc/guc.c:3813 msgid "GEQO: seed for random path selection." msgstr "GEQO: slumptalsfrö för val av slumpad sökväg." -#: utils/misc/guc.c:3823 +#: utils/misc/guc.c:3824 msgid "Multiple of work_mem to use for hash tables." msgstr "Multipel av work_mem för att använda till hash-tabeller." -#: utils/misc/guc.c:3834 +#: utils/misc/guc.c:3835 msgid "Multiple of the average buffer usage to free per round." msgstr "Multipel av genomsnittlig bufferanvändning som frias per runda." -#: utils/misc/guc.c:3844 +#: utils/misc/guc.c:3845 msgid "Sets the seed for random-number generation." msgstr "Sätter fröet för slumptalsgeneratorn." -#: utils/misc/guc.c:3855 +#: utils/misc/guc.c:3856 msgid "Vacuum cost delay in milliseconds." msgstr "Städkostfördröjning i millisekunder." -#: utils/misc/guc.c:3866 +#: utils/misc/guc.c:3867 msgid "Vacuum cost delay in milliseconds, for autovacuum." msgstr "Städkostfördröjning i millisekunder, för autovacuum." -#: utils/misc/guc.c:3877 +#: utils/misc/guc.c:3878 msgid "Number of tuple updates or deletes prior to vacuum as a fraction of reltuples." msgstr "Antalet tupeluppdateringar eller borttagningar innan vacuum relativt reltuples." -#: utils/misc/guc.c:3887 +#: utils/misc/guc.c:3888 msgid "Number of tuple inserts prior to vacuum as a fraction of reltuples." msgstr "Antal tupelinsättningar innan vacuum relativt reltuples." -#: utils/misc/guc.c:3897 +#: utils/misc/guc.c:3898 msgid "Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples." msgstr "Antalet tupelinsättningar, uppdateringar eller borttagningar innan analyze relativt reltuples." -#: utils/misc/guc.c:3907 +#: utils/misc/guc.c:3908 msgid "Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval." msgstr "Tid lagd på att flusha nedsmutsade buffrar vid checkpoint relativt checkpoint-intervallet." -#: utils/misc/guc.c:3917 +#: utils/misc/guc.c:3918 msgid "Fraction of statements exceeding log_min_duration_sample to be logged." msgstr "Bråkdel av satser som överskrider log_min_duration_sample som skall loggas." -#: utils/misc/guc.c:3918 +#: utils/misc/guc.c:3919 msgid "Use a value between 0.0 (never log) and 1.0 (always log)." msgstr "Använd ett värde mellan 0.0 (logga aldrig) och 1.0 (logga alltid)." -#: utils/misc/guc.c:3927 +#: utils/misc/guc.c:3928 msgid "Sets the fraction of transactions from which to log all statements." msgstr "Ställer in bråkdel av transaktionerna från vilka alla satser skall loggas." -#: utils/misc/guc.c:3928 +#: utils/misc/guc.c:3929 msgid "Use a value between 0.0 (never log) and 1.0 (log all statements for all transactions)." msgstr "Använd ett värde mellan 0.0 (logga aldrig) till 1.0 (logga all satser i alla transaktioner)." -#: utils/misc/guc.c:3947 +#: utils/misc/guc.c:3948 msgid "Sets the shell command that will be called to archive a WAL file." msgstr "Sätter shell-kommandot som kommer anropas för att arkivera en WAL-fil." -#: utils/misc/guc.c:3948 +#: utils/misc/guc.c:3949 msgid "This is used only if \"archive_library\" is not set." msgstr "Detta används enbart om \"archive_library\" inte är satt." -#: utils/misc/guc.c:3957 +#: utils/misc/guc.c:3958 msgid "Sets the library that will be called to archive a WAL file." msgstr "Sätter biblioteket som kommer anropas för att arkivera en WAL-fil." -#: utils/misc/guc.c:3958 +#: utils/misc/guc.c:3959 msgid "An empty string indicates that \"archive_command\" should be used." msgstr "En tom sträng betyder att \"archive_command\" skall användas." -#: utils/misc/guc.c:3967 +#: utils/misc/guc.c:3968 msgid "Sets the shell command that will be called to retrieve an archived WAL file." msgstr "Sätter shell-kommandot som kommer anropas för att få en arkiverad WAL-fil." -#: utils/misc/guc.c:3977 +#: utils/misc/guc.c:3978 msgid "Sets the shell command that will be executed at every restart point." msgstr "Sätter shell-kommandot som kommer anropas vid varje omstartspunkt." -#: utils/misc/guc.c:3987 +#: utils/misc/guc.c:3988 msgid "Sets the shell command that will be executed once at the end of recovery." msgstr "Sätter shell-kommandot som kommer anropas en gång i slutet av en återställning." -#: utils/misc/guc.c:3997 +#: utils/misc/guc.c:3998 msgid "Specifies the timeline to recover into." msgstr "Anger tidslinjen att återställa till." -#: utils/misc/guc.c:4007 +#: utils/misc/guc.c:4008 msgid "Set to \"immediate\" to end recovery as soon as a consistent state is reached." msgstr "Sätt till \"immediate\" för att avsluta återställning så snart ett konsistent tillstånd uppnås." -#: utils/misc/guc.c:4016 +#: utils/misc/guc.c:4017 msgid "Sets the transaction ID up to which recovery will proceed." msgstr "Sätter transaktions-ID som återställning kommer gå till." -#: utils/misc/guc.c:4025 +#: utils/misc/guc.c:4026 msgid "Sets the time stamp up to which recovery will proceed." msgstr "Sätter tidsstämpel som återställning kommer gå till." -#: utils/misc/guc.c:4034 +#: utils/misc/guc.c:4035 msgid "Sets the named restore point up to which recovery will proceed." msgstr "Sätter namngiven återställningspunkt som återställning kommer gå till." -#: utils/misc/guc.c:4043 +#: utils/misc/guc.c:4044 msgid "Sets the LSN of the write-ahead log location up to which recovery will proceed." msgstr "Sätter LSN för write-ahead-logg-position som återställning kommer få till." -#: utils/misc/guc.c:4053 +#: utils/misc/guc.c:4054 msgid "Specifies a file name whose presence ends recovery in the standby." msgstr "Anger ett filnamn vars närvaro gör att återställning avslutas i en standby." -#: utils/misc/guc.c:4063 +#: utils/misc/guc.c:4064 msgid "Sets the connection string to be used to connect to the sending server." msgstr "Sätter anslutningssträng som anvönds för att ansluta till skickande server." -#: utils/misc/guc.c:4074 +#: utils/misc/guc.c:4075 msgid "Sets the name of the replication slot to use on the sending server." msgstr "Sätter namnet på replikeringsslotten som skall användas av den skickande servern." -#: utils/misc/guc.c:4084 +#: utils/misc/guc.c:4085 msgid "Sets the client's character set encoding." msgstr "Ställer in klientens teckenkodning." -#: utils/misc/guc.c:4095 +#: utils/misc/guc.c:4096 msgid "Controls information prefixed to each log line." msgstr "Styr information prefixat till varje loggrad." -#: utils/misc/guc.c:4096 +#: utils/misc/guc.c:4097 msgid "If blank, no prefix is used." msgstr "Om tom så används inget prefix." -#: utils/misc/guc.c:4105 +#: utils/misc/guc.c:4106 msgid "Sets the time zone to use in log messages." msgstr "Sätter tidszonen som används i loggmeddelanden." -#: utils/misc/guc.c:4115 +#: utils/misc/guc.c:4116 msgid "Sets the display format for date and time values." msgstr "Sätter displayformat för datum och tidvärden." -#: utils/misc/guc.c:4116 +#: utils/misc/guc.c:4117 msgid "Also controls interpretation of ambiguous date inputs." msgstr "Styr också tolkning av tvetydig datumindata." -#: utils/misc/guc.c:4127 +#: utils/misc/guc.c:4128 msgid "Sets the default table access method for new tables." msgstr "Ställer in standard tabellaccessmetod för nya tabeller." -#: utils/misc/guc.c:4138 +#: utils/misc/guc.c:4139 msgid "Sets the default tablespace to create tables and indexes in." msgstr "Ställer in standard tabellutrymme där tabeller och index skapas." -#: utils/misc/guc.c:4139 +#: utils/misc/guc.c:4140 msgid "An empty string selects the database's default tablespace." msgstr "En tom sträng väljer databasens standardtabellutrymme." -#: utils/misc/guc.c:4149 +#: utils/misc/guc.c:4150 msgid "Sets the tablespace(s) to use for temporary tables and sort files." msgstr "Ställer in tablespace för temporära tabeller och sorteringsfiler." -#: utils/misc/guc.c:4160 +#: utils/misc/guc.c:4161 msgid "Sets the path for dynamically loadable modules." msgstr "Sätter sökvägen till dynamiskt laddade moduler." -#: utils/misc/guc.c:4161 +#: utils/misc/guc.c:4162 msgid "If a dynamically loadable module needs to be opened and the specified name does not have a directory component (i.e., the name does not contain a slash), the system will search this path for the specified file." msgstr "Om en dynamiskt laddad modul behöver öppnas och det angivna namnet inte har en katalogkomponent (dvs, namnet inte innehåller snedstreck) så kommer systemet använda denna sökväg för filen." -#: utils/misc/guc.c:4174 +#: utils/misc/guc.c:4175 msgid "Sets the location of the Kerberos server key file." msgstr "Ställer in platsen för Kerberos servernyckelfil." -#: utils/misc/guc.c:4185 +#: utils/misc/guc.c:4186 msgid "Sets the Bonjour service name." msgstr "Sätter Bonjour-tjänstens namn." -#: utils/misc/guc.c:4197 +#: utils/misc/guc.c:4198 msgid "Shows the collation order locale." msgstr "Visar lokal för jämförelseordning." -#: utils/misc/guc.c:4208 +#: utils/misc/guc.c:4209 msgid "Shows the character classification and case conversion locale." msgstr "Visar lokal för teckenklassificering samt skiftlägeskonvertering." -#: utils/misc/guc.c:4219 +#: utils/misc/guc.c:4220 msgid "Sets the language in which messages are displayed." msgstr "Sätter språket som meddelanden visas i." -#: utils/misc/guc.c:4229 +#: utils/misc/guc.c:4230 msgid "Sets the locale for formatting monetary amounts." msgstr "Sätter lokalen för att formattera monetära belopp." -#: utils/misc/guc.c:4239 +#: utils/misc/guc.c:4240 msgid "Sets the locale for formatting numbers." msgstr "Ställer in lokalen för att formattera nummer." -#: utils/misc/guc.c:4249 +#: utils/misc/guc.c:4250 msgid "Sets the locale for formatting date and time values." msgstr "Sätter lokalen för att formattera datum och tider." -#: utils/misc/guc.c:4259 +#: utils/misc/guc.c:4260 msgid "Lists shared libraries to preload into each backend." msgstr "Listar delade bibliotek som skall förladdas i varje backend." -#: utils/misc/guc.c:4270 +#: utils/misc/guc.c:4271 msgid "Lists shared libraries to preload into server." msgstr "Listar delade bibliotek som skall förladdas i servern." -#: utils/misc/guc.c:4281 +#: utils/misc/guc.c:4282 msgid "Lists unprivileged shared libraries to preload into each backend." msgstr "Listar ej priviligerade delade bibliotek som förladdas in i varje backend." -#: utils/misc/guc.c:4292 +#: utils/misc/guc.c:4293 msgid "Sets the schema search order for names that are not schema-qualified." msgstr "Sätter schemats sökordning för namn som inte är schema-prefixade." -#: utils/misc/guc.c:4304 +#: utils/misc/guc.c:4305 msgid "Shows the server (database) character set encoding." msgstr "Visar serverns (databasens) teckenkodning." -#: utils/misc/guc.c:4316 +#: utils/misc/guc.c:4317 msgid "Shows the server version." msgstr "Visar serverversionen" -#: utils/misc/guc.c:4328 +#: utils/misc/guc.c:4329 msgid "Sets the current role." msgstr "Ställer in den aktiva rollen." -#: utils/misc/guc.c:4340 +#: utils/misc/guc.c:4341 msgid "Sets the session user name." msgstr "Sätter sessionens användarnamn." -#: utils/misc/guc.c:4351 +#: utils/misc/guc.c:4352 msgid "Sets the destination for server log output." msgstr "Sätter serverloggens destination." -#: utils/misc/guc.c:4352 +#: utils/misc/guc.c:4353 msgid "Valid values are combinations of \"stderr\", \"syslog\", \"csvlog\", \"jsonlog\", and \"eventlog\", depending on the platform." msgstr "Giltiga värden är kombinationer av \"stderr\", \"syslog\", \"csvlog\", \"jsonlog\" och \"eventlog\", beroende på plattform." -#: utils/misc/guc.c:4363 +#: utils/misc/guc.c:4364 msgid "Sets the destination directory for log files." msgstr "Sätter destinationskatalogen för loggfiler." -#: utils/misc/guc.c:4364 +#: utils/misc/guc.c:4365 msgid "Can be specified as relative to the data directory or as absolute path." msgstr "Kan anges relativt datakatalogen eller som en absolut sökväg." -#: utils/misc/guc.c:4374 +#: utils/misc/guc.c:4375 msgid "Sets the file name pattern for log files." msgstr "Sätter filnamnsmallen för loggfiler." -#: utils/misc/guc.c:4385 +#: utils/misc/guc.c:4386 msgid "Sets the program name used to identify PostgreSQL messages in syslog." msgstr "Sätter programnamnet som används för att identifiera PostgreSQLs meddelanden i syslog." -#: utils/misc/guc.c:4396 +#: utils/misc/guc.c:4397 msgid "Sets the application name used to identify PostgreSQL messages in the event log." msgstr "Sätter applikationsnamnet som används för att identifiera PostgreSQLs meddelanden i händelseloggen." -#: utils/misc/guc.c:4407 +#: utils/misc/guc.c:4408 msgid "Sets the time zone for displaying and interpreting time stamps." msgstr "Ställer in tidszon för visande och tolkande av tidsstämplar." -#: utils/misc/guc.c:4417 +#: utils/misc/guc.c:4418 msgid "Selects a file of time zone abbreviations." msgstr "Väljer en fil för tidszonsförkortningar." -#: utils/misc/guc.c:4427 +#: utils/misc/guc.c:4428 msgid "Sets the owning group of the Unix-domain socket." msgstr "Sätter ägande grupp för Unix-domainuttaget (socket)." -#: utils/misc/guc.c:4428 +#: utils/misc/guc.c:4429 msgid "The owning user of the socket is always the user that starts the server." msgstr "Ägaren av uttaget (socker) är alltid användaren som startar servern." -#: utils/misc/guc.c:4438 +#: utils/misc/guc.c:4439 msgid "Sets the directories where Unix-domain sockets will be created." msgstr "Ställer in kataloger där Unix-domän-uttag (socket) kommer skapas." -#: utils/misc/guc.c:4453 +#: utils/misc/guc.c:4454 msgid "Sets the host name or IP address(es) to listen to." msgstr "Sätter värdnamn eller IP-adress(er) att lyssna på." -#: utils/misc/guc.c:4468 +#: utils/misc/guc.c:4469 msgid "Sets the server's data directory." msgstr "Ställer in serverns datakatalog." -#: utils/misc/guc.c:4479 +#: utils/misc/guc.c:4480 msgid "Sets the server's main configuration file." msgstr "Sätter serverns huvudkonfigurationsfil." -#: utils/misc/guc.c:4490 +#: utils/misc/guc.c:4491 msgid "Sets the server's \"hba\" configuration file." msgstr "Sätter serverns \"hba\"-konfigurationsfil." -#: utils/misc/guc.c:4501 +#: utils/misc/guc.c:4502 msgid "Sets the server's \"ident\" configuration file." msgstr "Sätter serverns \"ident\"-konfigurationsfil." -#: utils/misc/guc.c:4512 +#: utils/misc/guc.c:4513 msgid "Writes the postmaster PID to the specified file." msgstr "Skriver postmaster-PID till angiven fil." -#: utils/misc/guc.c:4523 +#: utils/misc/guc.c:4524 msgid "Shows the name of the SSL library." msgstr "Visar namnet på SSL-biblioteket." -#: utils/misc/guc.c:4538 +#: utils/misc/guc.c:4539 msgid "Location of the SSL server certificate file." msgstr "Plats för serverns SSL-certifikatfil." -#: utils/misc/guc.c:4548 +#: utils/misc/guc.c:4549 msgid "Location of the SSL server private key file." msgstr "Plats för serverns privata SSL-nyckelfil." -#: utils/misc/guc.c:4558 +#: utils/misc/guc.c:4559 msgid "Location of the SSL certificate authority file." msgstr "Plats för SSL-certifikats auktoritetsfil." -#: utils/misc/guc.c:4568 +#: utils/misc/guc.c:4569 msgid "Location of the SSL certificate revocation list file." msgstr "Plats för SSL-certifikats återkallningsfil." -#: utils/misc/guc.c:4578 +#: utils/misc/guc.c:4579 msgid "Location of the SSL certificate revocation list directory." msgstr "Plats av katalog för SSL-certifikats återkallningslistor." -#: utils/misc/guc.c:4588 +#: utils/misc/guc.c:4589 msgid "Number of synchronous standbys and list of names of potential synchronous ones." msgstr "Antalet synkrona standby och en lista med namn på potentiellt synkrona sådana." -#: utils/misc/guc.c:4599 +#: utils/misc/guc.c:4600 msgid "Sets default text search configuration." msgstr "Ställer in standard textsökkonfiguration." -#: utils/misc/guc.c:4609 +#: utils/misc/guc.c:4610 msgid "Sets the list of allowed SSL ciphers." msgstr "Ställer in listan med tillåtna SSL-krypton." -#: utils/misc/guc.c:4624 +#: utils/misc/guc.c:4625 msgid "Sets the curve to use for ECDH." msgstr "Ställer in kurvan att använda för ECDH." -#: utils/misc/guc.c:4639 +#: utils/misc/guc.c:4640 msgid "Location of the SSL DH parameters file." msgstr "Plats för SSL DH-parameterfil." -#: utils/misc/guc.c:4650 +#: utils/misc/guc.c:4651 msgid "Command to obtain passphrases for SSL." msgstr "Kommando för att hämta lösenfraser för SSL." -#: utils/misc/guc.c:4661 +#: utils/misc/guc.c:4662 msgid "Sets the application name to be reported in statistics and logs." msgstr "Sätter applikationsnamn som rapporteras i statistik och loggar." -#: utils/misc/guc.c:4672 +#: utils/misc/guc.c:4673 msgid "Sets the name of the cluster, which is included in the process title." msgstr "Sätter namnet på klustret som inkluderas i processtiteln." -#: utils/misc/guc.c:4683 +#: utils/misc/guc.c:4684 msgid "Sets the WAL resource managers for which WAL consistency checks are done." msgstr "Sätter WAL-resurshanterare som WAL-konsistenskontoller görs med." -#: utils/misc/guc.c:4684 +#: utils/misc/guc.c:4685 msgid "Full-page images will be logged for all data blocks and cross-checked against the results of WAL replay." msgstr "Hela sidkopior kommer loggas för alla datablock och kontrolleras mot resultatet av en WAL-uppspelning." -#: utils/misc/guc.c:4694 +#: utils/misc/guc.c:4695 msgid "JIT provider to use." msgstr "JIT-leverantör som används." -#: utils/misc/guc.c:4705 +#: utils/misc/guc.c:4706 msgid "Log backtrace for errors in these functions." msgstr "Loggar backtrace vid fel i dessa funktioner." -#: utils/misc/guc.c:4725 +#: utils/misc/guc.c:4717 +msgid "Prohibits access to non-system relations of specified kinds." +msgstr "Förhindrar access till icke-system-relationer av angivna sorter." + +#: utils/misc/guc.c:4737 msgid "Sets whether \"\\'\" is allowed in string literals." msgstr "Anger hurvida \"\\'\" tillåts i sträng-literaler." -#: utils/misc/guc.c:4735 +#: utils/misc/guc.c:4747 msgid "Sets the output format for bytea." msgstr "Ställer in output-format för bytea." -#: utils/misc/guc.c:4745 +#: utils/misc/guc.c:4757 msgid "Sets the message levels that are sent to the client." msgstr "Ställer in meddelandenivåer som skickas till klienten." -#: utils/misc/guc.c:4746 utils/misc/guc.c:4832 utils/misc/guc.c:4843 -#: utils/misc/guc.c:4919 +#: utils/misc/guc.c:4758 utils/misc/guc.c:4844 utils/misc/guc.c:4855 +#: utils/misc/guc.c:4931 msgid "Each level includes all the levels that follow it. The later the level, the fewer messages are sent." msgstr "Varje nivå inkluderar de efterföljande nivåerna. Ju senare nivå destå färre meddlanden skickas." -#: utils/misc/guc.c:4756 +#: utils/misc/guc.c:4768 msgid "Enables in-core computation of query identifiers." msgstr "Slår på intern uträkning av identifierare för frågor." -#: utils/misc/guc.c:4766 +#: utils/misc/guc.c:4778 msgid "Enables the planner to use constraints to optimize queries." msgstr "Slår på planerarens användning av integritetsvillkor för att optimera frågor." -#: utils/misc/guc.c:4767 +#: utils/misc/guc.c:4779 msgid "Table scans will be skipped if their constraints guarantee that no rows match the query." msgstr "Tabellskanningar kommer hoppas över om dess integritetsvillkor garanterar att inga rader komma matchas av frågan." -#: utils/misc/guc.c:4778 +#: utils/misc/guc.c:4790 msgid "Sets the default compression method for compressible values." msgstr "Ställer in standard komprimeringsmetod för komprimeringsbara värden." -#: utils/misc/guc.c:4789 +#: utils/misc/guc.c:4801 msgid "Sets the transaction isolation level of each new transaction." msgstr "Ställer in isolationsnivån för nya transaktioner." -#: utils/misc/guc.c:4799 +#: utils/misc/guc.c:4811 msgid "Sets the current transaction's isolation level." msgstr "Sätter den aktuella transaktionsisolationsnivån." -#: utils/misc/guc.c:4810 +#: utils/misc/guc.c:4822 msgid "Sets the display format for interval values." msgstr "Ställer in visningsformat för intervallvärden." -#: utils/misc/guc.c:4821 +#: utils/misc/guc.c:4833 msgid "Sets the verbosity of logged messages." msgstr "Ställer in pratighet för loggade meddelanden." -#: utils/misc/guc.c:4831 +#: utils/misc/guc.c:4843 msgid "Sets the message levels that are logged." msgstr "Ställer in meddelandenivåer som loggas." -#: utils/misc/guc.c:4842 +#: utils/misc/guc.c:4854 msgid "Causes all statements generating error at or above this level to be logged." msgstr "Gör att alla satser som genererar fel vid eller över denna nivå kommer loggas." -#: utils/misc/guc.c:4853 +#: utils/misc/guc.c:4865 msgid "Sets the type of statements logged." msgstr "Ställer in vilken sorts satser som loggas." -#: utils/misc/guc.c:4863 +#: utils/misc/guc.c:4875 msgid "Sets the syslog \"facility\" to be used when syslog enabled." msgstr "Ställer in syslog-\"facility\" som används när syslog är påslagen." -#: utils/misc/guc.c:4878 +#: utils/misc/guc.c:4890 msgid "Sets the session's behavior for triggers and rewrite rules." msgstr "Sätter sessionens beteende för triggrar och omskrivningsregler." -#: utils/misc/guc.c:4888 +#: utils/misc/guc.c:4900 msgid "Sets the current transaction's synchronization level." msgstr "Ställer in den nuvarande transaktionens synkroniseringsnivå." -#: utils/misc/guc.c:4898 +#: utils/misc/guc.c:4910 msgid "Allows archiving of WAL files using archive_command." msgstr "Tillåter arkivering av WAL-filer med hjälp av archive_command." -#: utils/misc/guc.c:4908 +#: utils/misc/guc.c:4920 msgid "Sets the action to perform upon reaching the recovery target." msgstr "Sätter handling som skall utföras när återställningsmål nås." -#: utils/misc/guc.c:4918 +#: utils/misc/guc.c:4930 msgid "Enables logging of recovery-related debugging information." msgstr "Slår på loggning av återställningsrelaterad debug-information." -#: utils/misc/guc.c:4935 +#: utils/misc/guc.c:4947 msgid "Collects function-level statistics on database activity." msgstr "Samlar in statistik på funktionsnivå över databasaktivitet." -#: utils/misc/guc.c:4946 +#: utils/misc/guc.c:4958 msgid "Sets the consistency of accesses to statistics data." msgstr "Sätter konsistensinställning för accesser av statistikdata." -#: utils/misc/guc.c:4956 +#: utils/misc/guc.c:4968 msgid "Compresses full-page writes written in WAL file with specified method." msgstr "Komprimerar skrivning av hela sidor i WAL-filen med angiven metod." -#: utils/misc/guc.c:4966 +#: utils/misc/guc.c:4978 msgid "Sets the level of information written to the WAL." msgstr "Ställer in mängden information som skrivs till WAL." -#: utils/misc/guc.c:4976 +#: utils/misc/guc.c:4988 msgid "Selects the dynamic shared memory implementation used." msgstr "Väljer implementation som används för dynamiskt delat minne." -#: utils/misc/guc.c:4986 +#: utils/misc/guc.c:4998 msgid "Selects the shared memory implementation used for the main shared memory region." msgstr "Väljer implementation för delat minne som används för det delade minnets huvudregionen." -#: utils/misc/guc.c:4996 +#: utils/misc/guc.c:5008 msgid "Selects the method used for forcing WAL updates to disk." msgstr "Väljer metod för att tvinga WAL-uppdateringar till disk." -#: utils/misc/guc.c:5006 +#: utils/misc/guc.c:5018 msgid "Sets how binary values are to be encoded in XML." msgstr "Ställer in hur binära värden kodas i XML." -#: utils/misc/guc.c:5016 +#: utils/misc/guc.c:5028 msgid "Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments." msgstr "Anger hurvida XML-data vid implicit parsning och serialiseringsoperationer ses som dokument eller innehållsfragment." -#: utils/misc/guc.c:5027 +#: utils/misc/guc.c:5039 msgid "Use of huge pages on Linux or Windows." msgstr "Använd stora sidor på Linux resp. Windows." -#: utils/misc/guc.c:5037 +#: utils/misc/guc.c:5049 msgid "Prefetch referenced blocks during recovery." msgstr "Prefetch:a refererade block vid återställning." -#: utils/misc/guc.c:5038 +#: utils/misc/guc.c:5050 msgid "Look ahead in the WAL to find references to uncached data." msgstr "Sök framåt i WAL för att hitta referenser till icke cache:ad data." -#: utils/misc/guc.c:5047 +#: utils/misc/guc.c:5059 msgid "Forces use of parallel query facilities." msgstr "Tvingar användning av parallella frågefinesser." -#: utils/misc/guc.c:5048 +#: utils/misc/guc.c:5060 msgid "If possible, run query using a parallel worker and with parallel restrictions." msgstr "Om det är möjligt så kör fråga med en parallell arbetare och med parallella begränsningar." -#: utils/misc/guc.c:5058 +#: utils/misc/guc.c:5070 msgid "Chooses the algorithm for encrypting passwords." msgstr "Väljer algoritm för att kryptera lösenord." -#: utils/misc/guc.c:5068 +#: utils/misc/guc.c:5080 msgid "Controls the planner's selection of custom or generic plan." msgstr "Styr planerarens användning av egendefinierad eller generell plan." -#: utils/misc/guc.c:5069 +#: utils/misc/guc.c:5081 msgid "Prepared statements can have custom and generic plans, and the planner will attempt to choose which is better. This can be set to override the default behavior." msgstr "Preparerade satser kan ha egendefinierade och generella planer och planeraren kommer försöka välja den som är bäst. Detta kan anges att övertrumfa standardbeteendet." -#: utils/misc/guc.c:5081 +#: utils/misc/guc.c:5093 msgid "Sets the minimum SSL/TLS protocol version to use." msgstr "Sätter minsta SSL/TLS-protokollversion som skall användas." -#: utils/misc/guc.c:5093 +#: utils/misc/guc.c:5105 msgid "Sets the maximum SSL/TLS protocol version to use." msgstr "Sätter högsta SSL/TLS-protokollversion som skall användas." -#: utils/misc/guc.c:5105 +#: utils/misc/guc.c:5117 msgid "Sets the method for synchronizing the data directory before crash recovery." msgstr "Ställer in metoden för att synkronisera datakatalogen innan kraschåterställning." -#: utils/misc/guc.c:5680 utils/misc/guc.c:5696 +#: utils/misc/guc.c:5692 utils/misc/guc.c:5708 #, c-format msgid "invalid configuration parameter name \"%s\"" msgstr "ogiltig konfigurationsparameter \"%s\"" -#: utils/misc/guc.c:5682 +#: utils/misc/guc.c:5694 #, c-format msgid "Custom parameter names must be two or more simple identifiers separated by dots." msgstr "Egenskapade parameternamn måste vara två eller fler enkla identifierare separerade med punkter." -#: utils/misc/guc.c:5698 +#: utils/misc/guc.c:5710 #, c-format msgid "\"%s\" is a reserved prefix." msgstr "\"%s\" är ett reserverat prefix." -#: utils/misc/guc.c:5712 +#: utils/misc/guc.c:5724 #, c-format msgid "unrecognized configuration parameter \"%s\"" msgstr "okänd konfigurationsparameter \"%s\"" -#: utils/misc/guc.c:6104 +#: utils/misc/guc.c:6116 #, c-format msgid "%s: could not access directory \"%s\": %s\n" msgstr "%s: kunde inte komma åt katalogen \"%s\": %s\n" -#: utils/misc/guc.c:6109 +#: utils/misc/guc.c:6121 #, c-format msgid "Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n" msgstr "Kör initdb eller pg_basebackup för att initiera en PostgreSQL-datakatalog.\n" -#: utils/misc/guc.c:6129 +#: utils/misc/guc.c:6141 #, c-format msgid "" "%s does not know where to find the server configuration file.\n" @@ -28862,12 +28894,12 @@ msgstr "" "%s vet inte var servens konfigurationsfil är.\n" "Du måste ange flaggan --config-file eller -D alternativt sätta omgivningsvariabeln PGDATA.\n" -#: utils/misc/guc.c:6148 +#: utils/misc/guc.c:6160 #, c-format msgid "%s: could not access the server configuration file \"%s\": %s\n" msgstr "%s: har inte åtkomst till serverns konfigureringsfil \"%s\": %s\n" -#: utils/misc/guc.c:6174 +#: utils/misc/guc.c:6186 #, c-format msgid "" "%s does not know where to find the database system data.\n" @@ -28876,7 +28908,7 @@ msgstr "" "%s vet inte var databasens systemdata är.\n" "Det kan anges med \"data_directory\" i \"%s\" eller med flaggan -D alternativt genom att sätta omgivningsvariabeln PGDATA.\n" -#: utils/misc/guc.c:6222 +#: utils/misc/guc.c:6234 #, c-format msgid "" "%s does not know where to find the \"hba\" configuration file.\n" @@ -28885,7 +28917,7 @@ msgstr "" "%s vet inte var \"hba\"-konfigurationsfilen är.\n" "Detta kan anges som \"hba_file\" i \"%s\" eller med flaggan -D alternativt genom att sätta omgivningsvariabeln PGDATA.\n" -#: utils/misc/guc.c:6245 +#: utils/misc/guc.c:6257 #, c-format msgid "" "%s does not know where to find the \"ident\" configuration file.\n" @@ -28894,187 +28926,192 @@ msgstr "" "%s vet inte var \"ident\"-konfigurationsfilen är.\n" "Detta kan anges som \"ident_file\" i \"%s\" eller med flaggan -D alternativt genom att sätta omgivningsvariabeln PGDATA.\n" -#: utils/misc/guc.c:7176 +#: utils/misc/guc.c:7188 msgid "Value exceeds integer range." msgstr "Värde överskriver heltalsintervall." -#: utils/misc/guc.c:7412 +#: utils/misc/guc.c:7424 #, c-format msgid "%d%s%s is outside the valid range for parameter \"%s\" (%d .. %d)" msgstr "%d%s%s är utanför giltigt intervall för parameter \"%s\" (%d .. %d)" -#: utils/misc/guc.c:7448 +#: utils/misc/guc.c:7460 #, c-format msgid "%g%s%s is outside the valid range for parameter \"%s\" (%g .. %g)" msgstr "%g%s%s är utanför giltigt intervall för parameter \"%s\" (%g .. %g)" -#: utils/misc/guc.c:7649 utils/misc/guc.c:9103 +#: utils/misc/guc.c:7670 #, c-format -msgid "cannot set parameters during a parallel operation" -msgstr "kan inte sätta parametrar under en parallell operation" +msgid "parameter \"%s\" cannot be set during a parallel operation" +msgstr "parameter \"%s\" can inte sättas under en parallell operation" -#: utils/misc/guc.c:7668 utils/misc/guc.c:8927 +#: utils/misc/guc.c:7686 utils/misc/guc.c:8945 #, c-format msgid "parameter \"%s\" cannot be changed" msgstr "parameter \"%s\" kan inte ändras" -#: utils/misc/guc.c:7701 +#: utils/misc/guc.c:7719 #, c-format msgid "parameter \"%s\" cannot be changed now" msgstr "parameter \"%s\" kan inte ändras nu" -#: utils/misc/guc.c:7728 utils/misc/guc.c:7790 utils/misc/guc.c:8903 -#: utils/misc/guc.c:11811 +#: utils/misc/guc.c:7746 utils/misc/guc.c:7808 utils/misc/guc.c:8921 +#: utils/misc/guc.c:11829 #, c-format msgid "permission denied to set parameter \"%s\"" msgstr "rättighet saknas för att sätta parameter \"%s\"" -#: utils/misc/guc.c:7770 +#: utils/misc/guc.c:7788 #, c-format msgid "parameter \"%s\" cannot be set after connection start" msgstr "parameter \"%s\" kan inte ändras efter uppkopplingen startats" -#: utils/misc/guc.c:7829 +#: utils/misc/guc.c:7847 #, c-format msgid "cannot set parameter \"%s\" within security-definer function" msgstr "kan inte sätta parameter \"%s\" inom en security-definer-funktion" -#: utils/misc/guc.c:8482 utils/misc/guc.c:8529 utils/misc/guc.c:10016 +#: utils/misc/guc.c:8500 utils/misc/guc.c:8547 utils/misc/guc.c:10034 #, c-format msgid "must be superuser or have privileges of pg_read_all_settings to examine \"%s\"" msgstr "måste vara superuser eller ha rättigheter från pg_read_all_settings för att undersöka \"%s\"" -#: utils/misc/guc.c:8613 +#: utils/misc/guc.c:8631 #, c-format msgid "SET %s takes only one argument" msgstr "SET %s tar bara ett argument" -#: utils/misc/guc.c:8893 +#: utils/misc/guc.c:8911 #, c-format msgid "permission denied to perform ALTER SYSTEM RESET ALL" msgstr "rättighet saknas för att utföra ALTER SYSTEM RESET ALL" -#: utils/misc/guc.c:8960 +#: utils/misc/guc.c:8978 #, c-format msgid "parameter value for ALTER SYSTEM must not contain a newline" msgstr "parametervärde till ALTER SYSTEM kan inte innehålla nyradstecken" -#: utils/misc/guc.c:9005 +#: utils/misc/guc.c:9023 #, c-format msgid "could not parse contents of file \"%s\"" msgstr "kunde inte parsa innehållet i fil \"%s\"" -#: utils/misc/guc.c:9179 +#: utils/misc/guc.c:9121 +#, c-format +msgid "cannot set parameters during a parallel operation" +msgstr "kan inte sätta parametrar under en parallell operation" + +#: utils/misc/guc.c:9197 #, c-format msgid "SET LOCAL TRANSACTION SNAPSHOT is not implemented" msgstr "SET LOCAL TRANSACTION SNAPSHOT är inte implementerat ännu" -#: utils/misc/guc.c:9266 +#: utils/misc/guc.c:9284 #, c-format msgid "SET requires parameter name" msgstr "SET kräver ett parameternamn" -#: utils/misc/guc.c:9399 +#: utils/misc/guc.c:9417 #, c-format msgid "attempt to redefine parameter \"%s\"" msgstr "försök att omdefiniera parameter \"%s\"" -#: utils/misc/guc.c:9726 +#: utils/misc/guc.c:9744 #, c-format msgid "invalid configuration parameter name \"%s\", removing it" msgstr "ogiltigt konfigurationsparameternamn \"%s\", tas bort" -#: utils/misc/guc.c:9728 +#: utils/misc/guc.c:9746 #, c-format msgid "\"%s\" is now a reserved prefix." msgstr "\"%s\" är nu ett reserverat prefix." -#: utils/misc/guc.c:11251 +#: utils/misc/guc.c:11269 #, c-format msgid "while setting parameter \"%s\" to \"%s\"" msgstr "vid sättande av parameter \"%s\" till \"%s\"" -#: utils/misc/guc.c:11420 +#: utils/misc/guc.c:11438 #, c-format msgid "parameter \"%s\" could not be set" msgstr "parameter \"%s\" kunde inte sättas" -#: utils/misc/guc.c:11512 +#: utils/misc/guc.c:11530 #, c-format msgid "could not parse setting for parameter \"%s\"" msgstr "kunde inte tolka inställningen för parameter \"%s\"" -#: utils/misc/guc.c:11943 +#: utils/misc/guc.c:11961 #, c-format msgid "invalid value for parameter \"%s\": %g" msgstr "ogiltigt värde för parameter \"%s\": %g" -#: utils/misc/guc.c:12256 +#: utils/misc/guc.c:12274 #, c-format msgid "\"temp_buffers\" cannot be changed after any temporary tables have been accessed in the session." msgstr "\"temp_buffers\" kan inte ändras efter att man använt temporära tabeller i sessionen." -#: utils/misc/guc.c:12268 +#: utils/misc/guc.c:12286 #, c-format msgid "Bonjour is not supported by this build" msgstr "Bonjour stöds inte av detta bygge" -#: utils/misc/guc.c:12281 +#: utils/misc/guc.c:12299 #, c-format msgid "SSL is not supported by this build" msgstr "SSL stöds inte av detta bygge" -#: utils/misc/guc.c:12293 +#: utils/misc/guc.c:12311 #, c-format msgid "Cannot enable parameter when \"log_statement_stats\" is true." msgstr "Kan inte slå på parameter när \"log_statement_stats\" är satt." -#: utils/misc/guc.c:12305 +#: utils/misc/guc.c:12323 #, c-format msgid "Cannot enable \"log_statement_stats\" when \"log_parser_stats\", \"log_planner_stats\", or \"log_executor_stats\" is true." msgstr "Kan inte slå på \"log_statement_stats\" när \"log_parser_stats\", \"log_planner_stats\" eller \"log_executor_stats\" är satta." -#: utils/misc/guc.c:12535 +#: utils/misc/guc.c:12553 #, c-format msgid "effective_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "effective_io_concurrency måste sättas till 0 på plattformar som saknar posix_fadvise()." -#: utils/misc/guc.c:12548 +#: utils/misc/guc.c:12566 #, c-format msgid "maintenance_io_concurrency must be set to 0 on platforms that lack posix_fadvise()." msgstr "maintenance_io_concurrency måste sättas till 0 på plattformar som saknar posix_fadvise()." -#: utils/misc/guc.c:12562 +#: utils/misc/guc.c:12580 #, c-format msgid "huge_page_size must be 0 on this platform." msgstr "huge_page_size måste vara 0 på denna plattform." -#: utils/misc/guc.c:12574 +#: utils/misc/guc.c:12592 #, c-format msgid "client_connection_check_interval must be set to 0 on this platform." msgstr "client_connection_check_interval måste sättas till 0 på denna plattform." -#: utils/misc/guc.c:12686 +#: utils/misc/guc.c:12704 #, c-format msgid "invalid character" msgstr "ogiltigt tecken" -#: utils/misc/guc.c:12746 +#: utils/misc/guc.c:12764 #, c-format msgid "recovery_target_timeline is not a valid number." msgstr "recovery_target_timeline är inte ett giltigt nummer." -#: utils/misc/guc.c:12786 +#: utils/misc/guc.c:12804 #, c-format msgid "multiple recovery targets specified" msgstr "multipla återställningsmål angivna" -#: utils/misc/guc.c:12787 +#: utils/misc/guc.c:12805 #, c-format msgid "At most one of recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time, recovery_target_xid may be set." msgstr "Som mest en av recovery_target, recovery_target_lsn, recovery_target_name, recovery_target_time och recovery_target_xid kan sättas." -#: utils/misc/guc.c:12795 +#: utils/misc/guc.c:12813 #, c-format msgid "The only allowed value is \"immediate\"." msgstr "Det enda tillåtna värdet är \"immediate\"." @@ -29308,7 +29345,7 @@ msgstr "Källtransaktionen kör inte längre." #: utils/time/snapmgr.c:1164 #, c-format msgid "cannot export a snapshot from a subtransaction" -msgstr "kan inte exportera ett snapshot från en subtransaktion" +msgstr "kan inte exportera ett snapshot från en undertransaktion" #: utils/time/snapmgr.c:1323 utils/time/snapmgr.c:1328 #: utils/time/snapmgr.c:1333 utils/time/snapmgr.c:1348 diff --git a/src/backend/regex/regc_color.c b/src/backend/regex/regc_color.c index 30bda0e5ad0..8ae788f5195 100644 --- a/src/backend/regex/regc_color.c +++ b/src/backend/regex/regc_color.c @@ -1075,9 +1075,19 @@ colorcomplement(struct nfa *nfa, assert(of != from); - /* A RAINBOW arc matches all colors, making the complement empty */ + /* + * A RAINBOW arc matches all colors, making the complement empty. But we + * can't just return without making any arcs, because that would leave the + * NFA disconnected which would break any future delsub(). Instead, make + * a CANTMATCH arc. Also set the HASCANTMATCH flag so we know we need to + * clean that up at the start of NFA optimization. + */ if (findarc(of, PLAIN, RAINBOW) != NULL) + { + newarc(nfa, CANTMATCH, 0, from, to); + nfa->flags |= HASCANTMATCH; return; + } /* Otherwise, transiently mark the colors that appear in of's out-arcs */ for (a = of->outs; a != NULL; a = a->outchain) @@ -1089,6 +1099,12 @@ colorcomplement(struct nfa *nfa, assert(!UNUSEDCOLOR(cd)); cd->flags |= COLMARK; } + + /* + * There's no syntax for re-complementing a color set, so we cannot + * see CANTMATCH arcs here. + */ + assert(a->type != CANTMATCH); } /* Scan colors, clear transient marks, add arcs for unmarked colors */ diff --git a/src/backend/regex/regc_nfa.c b/src/backend/regex/regc_nfa.c index 60fb0bec5d7..4b19740788e 100644 --- a/src/backend/regex/regc_nfa.c +++ b/src/backend/regex/regc_nfa.c @@ -1490,6 +1490,7 @@ removetraverse(struct nfa *nfa, { case PLAIN: case EMPTY: + case CANTMATCH: /* nothing to do */ break; case AHEAD: @@ -1627,6 +1628,12 @@ optimize(struct nfa *nfa, if (verbose) fprintf(f, "\ninitial cleanup:\n"); #endif + /* If we have any CANTMATCH arcs, drop them; but this is uncommon */ + if (nfa->flags & HASCANTMATCH) + { + removecantmatch(nfa); + nfa->flags &= ~HASCANTMATCH; + } cleanup(nfa); /* may simplify situation */ #ifdef REG_DEBUG if (verbose) @@ -2222,9 +2229,12 @@ fixempties(struct nfa *nfa, * current target state. totalinarcs is probably a considerable * overestimate of the space needed, but the NFA is unlikely to be large * enough at this point to make it worth being smarter. + * + * Note: totalinarcs could be zero, and some machines return NULL for + * malloc(0). Don't throw an error if so. */ arcarray = (struct arc **) MALLOC(totalinarcs * sizeof(struct arc *)); - if (arcarray == NULL) + if (arcarray == NULL && totalinarcs != 0) { NERR(REG_ESPACE); FREE(inarcsorig); @@ -2950,6 +2960,34 @@ clonesuccessorstates(struct nfa *nfa, } } +/* + * removecantmatch - remove CANTMATCH arcs, which are no longer useful + * once we are done with the parsing phase. (We need them only to + * preserve connectedness of NFA subgraphs during parsing.) + */ +static void +removecantmatch(struct nfa *nfa) +{ + struct state *s; + + for (s = nfa->states; s != NULL; s = s->next) + { + struct arc *a; + struct arc *nexta; + + for (a = s->outs; a != NULL; a = nexta) + { + nexta = a->outchain; + if (a->type == CANTMATCH) + { + freearc(nfa, a); + if (NISERR()) + return; + } + } + } +} + /* * cleanup - clean up NFA after optimizations */ @@ -3659,6 +3697,8 @@ dumpnfa(struct nfa *nfa, fprintf(f, ", eol [%ld]", (long) nfa->eos[1]); if (nfa->flags & HASLACONS) fprintf(f, ", haslacons"); + if (nfa->flags & HASCANTMATCH) + fprintf(f, ", hascantmatch"); if (nfa->flags & MATCHALL) { fprintf(f, ", minmatchall %d", nfa->minmatchall); @@ -3781,6 +3821,9 @@ dumparc(struct arc *a, break; case EMPTY: break; + case CANTMATCH: + fprintf(f, "X"); + break; default: fprintf(f, "0x%x/0%lo", a->type, (long) a->co); break; diff --git a/src/backend/regex/regcomp.c b/src/backend/regex/regcomp.c index 473738040bb..6fbe15f3781 100644 --- a/src/backend/regex/regcomp.c +++ b/src/backend/regex/regcomp.c @@ -177,6 +177,7 @@ static void breakconstraintloop(struct nfa *, struct state *); static void clonesuccessorstates(struct nfa *, struct state *, struct state *, struct state *, struct arc *, char *, char *, int); +static void removecantmatch(struct nfa *); static void cleanup(struct nfa *); static void markreachable(struct nfa *, struct state *, struct state *, struct state *); static void markcanreach(struct nfa *, struct state *, struct state *, struct state *); @@ -299,6 +300,7 @@ struct vars #define BEHIND 'r' /* color-lookbehind arc */ #define WBDRY 'w' /* word boundary constraint */ #define NWBDRY 'W' /* non-word-boundary constraint */ +#define CANTMATCH 'x' /* arc that cannot match anything */ #define SBEGIN 'A' /* beginning of string (even if not BOL) */ #define SEND 'Z' /* end of string (even if not EOL) */ @@ -2326,6 +2328,7 @@ nfanode(struct vars *v, nfa = newnfa(v, v->cm, v->nfa); NOERRZ(); dupnfa(nfa, t->begin, t->end, nfa->init, nfa->final); + nfa->flags = v->nfa->flags; if (!ISERR()) specialcolors(nfa); if (!ISERR()) diff --git a/src/backend/replication/logical/logical.c b/src/backend/replication/logical/logical.c index 48ae02ca386..a53d42e88a6 100644 --- a/src/backend/replication/logical/logical.c +++ b/src/backend/replication/logical/logical.c @@ -1680,6 +1680,7 @@ LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart /* don't overwrite if have a newer restart lsn */ if (restart_lsn <= slot->data.restart_lsn) { + SpinLockRelease(&slot->mutex); } /* @@ -1690,6 +1691,7 @@ LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart { slot->candidate_restart_valid = current_lsn; slot->candidate_restart_lsn = restart_lsn; + SpinLockRelease(&slot->mutex); /* our candidate can directly be used */ updated_lsn = true; @@ -1700,7 +1702,7 @@ LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart * might never end up updating if the receiver acks too slowly. A missed * value here will just cause some extra effort after reconnecting. */ - if (slot->candidate_restart_valid == InvalidXLogRecPtr) + else if (slot->candidate_restart_valid == InvalidXLogRecPtr) { slot->candidate_restart_valid = current_lsn; slot->candidate_restart_lsn = restart_lsn; diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 3a68a393d23..d5cde20a1c9 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -329,15 +329,20 @@ ReorderBufferAllocate(void) sizeof(ReorderBufferTXN)); /* - * XXX the allocation sizes used below pre-date generation context's block - * growing code. These values should likely be benchmarked and set to - * more suitable values. + * To minimize memory fragmentation caused by long-running transactions + * with changes spanning multiple memory blocks, we use a single + * fixed-size memory block for decoded tuple storage. The performance + * testing showed that the default memory block size maintains logical + * decoding performance without causing fragmentation due to concurrent + * transactions. One might think that we can use the max size as + * SLAB_LARGE_BLOCK_SIZE but the test also showed it doesn't help resolve + * the memory fragmentation. */ buffer->tup_context = GenerationContextCreate(new_ctx, "Tuples", - SLAB_LARGE_BLOCK_SIZE, - SLAB_LARGE_BLOCK_SIZE, - SLAB_LARGE_BLOCK_SIZE); + SLAB_DEFAULT_BLOCK_SIZE, + SLAB_DEFAULT_BLOCK_SIZE, + SLAB_DEFAULT_BLOCK_SIZE); hash_ctl.keysize = sizeof(TransactionId); hash_ctl.entrysize = sizeof(ReorderBufferTXNByIdEnt); diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c index c353acc5e43..fbd8db99a36 100644 --- a/src/backend/rewrite/rewriteHandler.c +++ b/src/backend/rewrite/rewriteHandler.c @@ -61,6 +61,12 @@ typedef struct acquireLocksOnSubLinks_context bool for_execute; /* AcquireRewriteLocks' forExecute param */ } acquireLocksOnSubLinks_context; +typedef struct fireRIRonSubLink_context +{ + List *activeRIRs; + bool hasRowSecurity; +} fireRIRonSubLink_context; + static bool acquireLocksOnSubLinks(Node *node, acquireLocksOnSubLinks_context *context); static Query *rewriteRuleAction(Query *parsetree, @@ -1863,6 +1869,12 @@ ApplyRetrieveRule(Query *parsetree, */ rule_action = fireRIRrules(rule_action, activeRIRs); + /* + * Make sure the query is marked as having row security if the view query + * does. + */ + parsetree->hasRowSecurity |= rule_action->hasRowSecurity; + /* * Now, plug the view query in as a subselect, converting the relation's * original RTE to a subquery RTE. @@ -1988,7 +2000,7 @@ markQueryForLocking(Query *qry, Node *jtnode, * the SubLink's subselect link with the possibly-rewritten subquery. */ static bool -fireRIRonSubLink(Node *node, List *activeRIRs) +fireRIRonSubLink(Node *node, fireRIRonSubLink_context *context) { if (node == NULL) return false; @@ -1998,7 +2010,13 @@ fireRIRonSubLink(Node *node, List *activeRIRs) /* Do what we came for */ sub->subselect = (Node *) fireRIRrules((Query *) sub->subselect, - activeRIRs); + context->activeRIRs); + + /* + * Remember if any of the sublinks have row security. + */ + context->hasRowSecurity |= ((Query *) sub->subselect)->hasRowSecurity; + /* Fall through to process lefthand args of SubLink */ } @@ -2007,7 +2025,7 @@ fireRIRonSubLink(Node *node, List *activeRIRs) * subselects of subselects for us. */ return expression_tree_walker(node, fireRIRonSubLink, - (void *) activeRIRs); + (void *) context); } @@ -2068,6 +2086,13 @@ fireRIRrules(Query *parsetree, List *activeRIRs) if (rte->rtekind == RTE_SUBQUERY) { rte->subquery = fireRIRrules(rte->subquery, activeRIRs); + + /* + * While we are here, make sure the query is marked as having row + * security if any of its subqueries do. + */ + parsetree->hasRowSecurity |= rte->subquery->hasRowSecurity; + continue; } @@ -2181,6 +2206,12 @@ fireRIRrules(Query *parsetree, List *activeRIRs) cte->ctequery = (Node *) fireRIRrules((Query *) cte->ctequery, activeRIRs); + + /* + * While we are here, make sure the query is marked as having row + * security if any of its CTEs do. + */ + parsetree->hasRowSecurity |= ((Query *) cte->ctequery)->hasRowSecurity; } /* @@ -2188,9 +2219,22 @@ fireRIRrules(Query *parsetree, List *activeRIRs) * the rtable and cteList. */ if (parsetree->hasSubLinks) - query_tree_walker(parsetree, fireRIRonSubLink, (void *) activeRIRs, + { + fireRIRonSubLink_context context; + + context.activeRIRs = activeRIRs; + context.hasRowSecurity = false; + + query_tree_walker(parsetree, fireRIRonSubLink, (void *) &context, QTW_IGNORE_RC_SUBQUERIES); + /* + * Make sure the query is marked as having row security if any of its + * sublinks do. + */ + parsetree->hasRowSecurity |= context.hasRowSecurity; + } + /* * Apply any row-level security policies. We do this last because it * requires special recursion detection if the new quals have sublink @@ -2229,6 +2273,7 @@ fireRIRrules(Query *parsetree, List *activeRIRs) if (hasSubLinks) { acquireLocksOnSubLinks_context context; + fireRIRonSubLink_context fire_context; /* * Recursively process the new quals, checking for infinite @@ -2259,11 +2304,21 @@ fireRIRrules(Query *parsetree, List *activeRIRs) * Now that we have the locks on anything added by * get_row_security_policies, fire any RIR rules for them. */ + fire_context.activeRIRs = activeRIRs; + fire_context.hasRowSecurity = false; + expression_tree_walker((Node *) securityQuals, - fireRIRonSubLink, (void *) activeRIRs); + fireRIRonSubLink, (void *) &fire_context); expression_tree_walker((Node *) withCheckOptions, - fireRIRonSubLink, (void *) activeRIRs); + fireRIRonSubLink, (void *) &fire_context); + + /* + * We can ignore the value of fire_context.hasRowSecurity + * since we only reach this code in cases where hasRowSecurity + * is already true. + */ + Assert(hasRowSecurity); activeRIRs = list_delete_last(activeRIRs); } diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 8d7ef91785e..38af6d1af3f 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -3440,7 +3440,6 @@ SyncDataDirectory(void) */ xlog_is_symlink = false; -#ifndef WIN32 { struct stat st; @@ -3452,10 +3451,6 @@ SyncDataDirectory(void) else if (S_ISLNK(st.st_mode)) xlog_is_symlink = true; } -#else - if (pgwin32_is_junction("pg_wal")) - xlog_is_symlink = true; -#endif #ifdef HAVE_SYNCFS if (recovery_init_sync_method == RECOVERY_INIT_SYNC_METHOD_SYNCFS) diff --git a/src/backend/storage/ipc/sinvaladt.c b/src/backend/storage/ipc/sinvaladt.c index 59310b708fb..21f0ff97579 100644 --- a/src/backend/storage/ipc/sinvaladt.c +++ b/src/backend/storage/ipc/sinvaladt.c @@ -757,6 +757,47 @@ SICleanupQueue(bool callerHasWriteLock, int minFree) } } +/* + * SIResetAll + * Mark all active backends as "reset" + * + * Use this when we don't know what needs to be invalidated. It's a + * cluster-wide InvalidateSystemCaches(). This was a back-branch-only remedy + * to avoid a WAL format change. + * + * The implementation is like SICleanupQueue(false, MAXNUMMESSAGES + 1), with + * one addition. SICleanupQueue() assumes minFree << MAXNUMMESSAGES, so it + * assumes hasMessages==true for any backend it resets. We're resetting even + * fully-caught-up backends, so we set hasMessages. + */ +void +SIResetAll(void) +{ + SISeg *segP = shmInvalBuffer; + int i; + + LWLockAcquire(SInvalWriteLock, LW_EXCLUSIVE); + LWLockAcquire(SInvalReadLock, LW_EXCLUSIVE); + + for (i = 0; i < segP->lastBackend; i++) + { + ProcState *stateP = &segP->procState[i]; + + if (stateP->procPid == 0 || stateP->sendOnly) + continue; + + /* Consuming the reset will update "nextMsgNum" and "signaled". */ + stateP->resetState = true; + stateP->hasMessages = true; + } + + segP->minMsgNum = segP->maxMsgNum; + segP->nextThreshold = CLEANUP_MIN; + + LWLockRelease(SInvalReadLock); + LWLockRelease(SInvalWriteLock); +} + /* * GetNextLocalTransactionId --- allocate a new LocalTransactionId diff --git a/src/backend/storage/lmgr/lock.c b/src/backend/storage/lmgr/lock.c index 6d2063d1c14..13dec52b4ce 100644 --- a/src/backend/storage/lmgr/lock.c +++ b/src/backend/storage/lmgr/lock.c @@ -2339,6 +2339,16 @@ LockReleaseAll(LOCKMETHODID lockmethodid, bool allLocks) locallock->numLockOwners = 0; } +#ifdef USE_ASSERT_CHECKING + + /* + * Tuple locks are currently held only for short durations within a + * transaction. Check that we didn't forget to release one. + */ + if (LOCALLOCK_LOCKTAG(*locallock) == LOCKTAG_TUPLE && !allLocks) + elog(WARNING, "tuple lock held at commit"); +#endif + /* * If the lock or proclock pointers are NULL, this lock was taken via * the relation fast-path (and is not known to have been transferred). diff --git a/src/backend/storage/lmgr/predicate.c b/src/backend/storage/lmgr/predicate.c index 7f5d38026ac..29ad1245061 100644 --- a/src/backend/storage/lmgr/predicate.c +++ b/src/backend/storage/lmgr/predicate.c @@ -918,12 +918,17 @@ SerialAdd(TransactionId xid, SerCommitSeqNo minConflictCommitSeqNo) LWLockAcquire(SerialSLRULock, LW_EXCLUSIVE); /* - * If no serializable transactions are active, there shouldn't be anything - * to push out to the SLRU. Hitting this assert would mean there's - * something wrong with the earlier cleanup logic. + * If 'xid' is older than the global xmin (== tailXid), there's no need to + * store it, after all. This can happen if the oldest transaction holding + * back the global xmin just finished, making 'xid' uninteresting, but + * ClearOldPredicateLocks() has not yet run. */ tailXid = serialControl->tailXid; - Assert(TransactionIdIsValid(tailXid)); + if (!TransactionIdIsValid(tailXid) || TransactionIdPrecedes(xid, tailXid)) + { + LWLockRelease(SerialSLRULock); + return; + } /* * If the SLRU is currently unused, zero out the whole active region from diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 9309c4b2cdb..d0b21a0ae0f 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -1632,6 +1632,7 @@ exec_bind_message(StringInfo input_message) char msec_str[32]; ParamsErrorCbData params_data; ErrorContextCallback params_errcxt; + ListCell *lc; /* Get the fixed part of the message */ portal_name = pq_getmsgstring(input_message); @@ -1667,6 +1668,17 @@ exec_bind_message(StringInfo input_message) pgstat_report_activity(STATE_RUNNING, psrc->query_string); + foreach(lc, psrc->query_list) + { + Query *query = lfirst_node(Query, lc); + + if (query->queryId != UINT64CONST(0)) + { + pgstat_report_query_id(query->queryId, false); + break; + } + } + set_ps_display("BIND"); if (save_log_statement_stats) @@ -2090,6 +2102,7 @@ exec_execute_message(const char *portal_name, long max_rows) char msec_str[32]; ParamsErrorCbData params_data; ErrorContextCallback params_errcxt; + ListCell *lc; /* Adjust destination to tell printtup.c what to do */ dest = whereToSendOutput; @@ -2136,6 +2149,17 @@ exec_execute_message(const char *portal_name, long max_rows) pgstat_report_activity(STATE_RUNNING, sourceText); + foreach(lc, portal->stmts) + { + PlannedStmt *stmt = lfirst_node(PlannedStmt, lc); + + if (stmt->queryId != UINT64CONST(0)) + { + pgstat_report_query_id(stmt->queryId, false); + break; + } + } + set_ps_display(GetCommandTagName(portal->commandTag)); if (save_log_statement_stats) diff --git a/src/backend/utils/activity/pgstat.c b/src/backend/utils/activity/pgstat.c index 0b697cee4fd..2c36bf5b794 100644 --- a/src/backend/utils/activity/pgstat.c +++ b/src/backend/utils/activity/pgstat.c @@ -810,6 +810,9 @@ pgstat_fetch_entry(PgStat_Kind kind, Oid dboid, Oid objoid) pgstat_prep_snapshot(); + /* clear padding */ + memset(&key, 0, sizeof(struct PgStat_HashKey)); + key.kind = kind; key.dboid = dboid; key.objoid = objoid; diff --git a/src/backend/utils/activity/pgstat_shmem.c b/src/backend/utils/activity/pgstat_shmem.c index 15d9ea1f30a..c04181c978c 100644 --- a/src/backend/utils/activity/pgstat_shmem.c +++ b/src/backend/utils/activity/pgstat_shmem.c @@ -273,6 +273,11 @@ pgstat_init_entry(PgStat_Kind kind, * further if a longer lived reference is needed. */ pg_atomic_init_u32(&shhashent->refcount, 1); + + /* + * Initialize "generation" to 0, as freshly created. + */ + pg_atomic_init_u32(&shhashent->generation, 0); shhashent->dropped = false; chunk = dsa_allocate0(pgStatLocal.dsa, pgstat_get_kind_info(kind)->shared_size); @@ -296,6 +301,12 @@ pgstat_reinit_entry(PgStat_Kind kind, PgStatShared_HashEntry *shhashent) /* mark as not dropped anymore */ pg_atomic_fetch_add_u32(&shhashent->refcount, 1); + + /* + * Increment "generation", to let any backend with local references know + * that what they point to is outdated. + */ + pg_atomic_fetch_add_u32(&shhashent->generation, 1); shhashent->dropped = false; /* reinitialize content */ @@ -336,6 +347,7 @@ pgstat_acquire_entry_ref(PgStat_EntryRef *entry_ref, entry_ref->shared_stats = shheader; entry_ref->shared_entry = shhashent; + entry_ref->generation = pg_atomic_read_u32(&shhashent->generation); } /* @@ -401,11 +413,18 @@ PgStat_EntryRef * pgstat_get_entry_ref(PgStat_Kind kind, Oid dboid, Oid objoid, bool create, bool *created_entry) { - PgStat_HashKey key = {.kind = kind,.dboid = dboid,.objoid = objoid}; + PgStat_HashKey key; PgStatShared_HashEntry *shhashent; PgStatShared_Common *shheader = NULL; PgStat_EntryRef *entry_ref; + /* clear padding */ + memset(&key, 0, sizeof(struct PgStat_HashKey)); + + key.kind = kind; + key.dboid = dboid; + key.objoid = objoid; + /* * passing in created_entry only makes sense if we possibly could create * entry. @@ -494,7 +513,8 @@ pgstat_get_entry_ref(PgStat_Kind kind, Oid dboid, Oid objoid, bool create, * case are replication slot stats, where a new slot can be * created with the same index just after dropping. But oid * wraparound can lead to other cases as well. We just reset the - * stats to their plain state. + * stats to their plain state, while incrementing its "generation" + * in the shared entry for any remaining local references. */ shheader = pgstat_reinit_entry(kind, shhashent); pgstat_acquire_entry_ref(entry_ref, shhashent, shheader); @@ -561,10 +581,27 @@ pgstat_release_entry_ref(PgStat_HashKey key, PgStat_EntryRef *entry_ref, if (!shent) elog(ERROR, "could not find just referenced shared stats entry"); - Assert(pg_atomic_read_u32(&entry_ref->shared_entry->refcount) == 0); - Assert(entry_ref->shared_entry == shent); - - pgstat_free_entry(shent, NULL); + /* + * This entry may have been reinitialized while trying to release + * it, so double-check that it has not been reused while holding a + * lock on its shared entry. + */ + if (pg_atomic_read_u32(&entry_ref->shared_entry->generation) == + entry_ref->generation) + { + /* Same "generation", so we're OK with the removal */ + Assert(pg_atomic_read_u32(&entry_ref->shared_entry->refcount) == 0); + Assert(entry_ref->shared_entry == shent); + pgstat_free_entry(shent, NULL); + } + else + { + /* + * Shared stats entry has been reinitialized, so do not drop + * its shared entry, only release its lock. + */ + dshash_release_lock(pgStatLocal.shared_hash, shent); + } } } @@ -876,10 +913,17 @@ pgstat_drop_database_and_contents(Oid dboid) bool pgstat_drop_entry(PgStat_Kind kind, Oid dboid, Oid objoid) { - PgStat_HashKey key = {.kind = kind,.dboid = dboid,.objoid = objoid}; + PgStat_HashKey key; PgStatShared_HashEntry *shent; bool freed = true; + /* clear padding */ + memset(&key, 0, sizeof(struct PgStat_HashKey)); + + key.kind = kind; + key.dboid = dboid; + key.objoid = objoid; + /* delete local reference */ if (pgStatEntryRefHash) { diff --git a/src/backend/utils/adt/misc.c b/src/backend/utils/adt/misc.c index 6d8fa920cdb..7d5d57d6d58 100644 --- a/src/backend/utils/adt/misc.c +++ b/src/backend/utils/adt/misc.c @@ -283,9 +283,7 @@ pg_tablespace_location(PG_FUNCTION_ARGS) char sourcepath[MAXPGPATH]; char targetpath[MAXPGPATH]; int rllen; -#ifndef WIN32 struct stat st; -#endif /* * It's useful to apply this function to pg_class.reltablespace, wherein @@ -316,10 +314,6 @@ pg_tablespace_location(PG_FUNCTION_ARGS) * created with allow_in_place_tablespaces enabled. If a directory is * found, a relative path to the data directory is returned. */ -#ifdef WIN32 - if (!pgwin32_is_junction(sourcepath)) - PG_RETURN_TEXT_P(cstring_to_text(sourcepath)); -#else if (lstat(sourcepath, &st) < 0) { ereport(ERROR, @@ -330,7 +324,6 @@ pg_tablespace_location(PG_FUNCTION_ARGS) if (!S_ISLNK(st.st_mode)) PG_RETURN_TEXT_P(cstring_to_text(sourcepath)); -#endif /* * In presence of a link or a junction point, return the path pointing to. diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index 80af7ff166b..d8dd92dd7cc 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -1741,7 +1741,7 @@ get_collation_actual_version(char collprovider, const char *collcollate) locale_t loc; /* Look up FreeBSD collation version. */ - loc = newlocale(LC_COLLATE, collcollate, NULL); + loc = newlocale(LC_COLLATE_MASK, collcollate, NULL); if (loc) { collversion = diff --git a/src/backend/utils/adt/ruleutils.c b/src/backend/utils/adt/ruleutils.c index 0e2d63fdc77..dadcaeffeb3 100644 --- a/src/backend/utils/adt/ruleutils.c +++ b/src/backend/utils/adt/ruleutils.c @@ -7885,17 +7885,31 @@ get_name_for_var_field(Var *var, int fieldno, /* * We're deparsing a Plan tree so we don't have complete * RTE entries (in particular, rte->subquery is NULL). But - * the only place we'd see a Var directly referencing a - * SUBQUERY RTE is in a SubqueryScan plan node, and we can - * look into the child plan's tlist instead. + * the only place we'd normally see a Var directly + * referencing a SUBQUERY RTE is in a SubqueryScan plan + * node, and we can look into the child plan's tlist + * instead. An exception occurs if the subquery was + * proven empty and optimized away: then we'd find such a + * Var in a childless Result node, and there's nothing in + * the plan tree that would let us figure out what it had + * originally referenced. In that case, fall back on + * printing "fN", analogously to the default column names + * for RowExprs. */ TargetEntry *tle; deparse_namespace save_dpns; const char *result; if (!dpns->inner_plan) - elog(ERROR, "failed to find plan for subquery %s", - rte->eref->aliasname); + { + char *dummy_name = palloc(32); + + Assert(dpns->plan && IsA(dpns->plan, Result)); + snprintf(dummy_name, 32, "f%d", fieldno); + return dummy_name; + } + Assert(dpns->plan && IsA(dpns->plan, SubqueryScan)); + tle = get_tle_by_resno(dpns->inner_tlist, attnum); if (!tle) elog(ERROR, "bogus varattno for subquery var: %d", @@ -8004,20 +8018,30 @@ get_name_for_var_field(Var *var, int fieldno, { /* * We're deparsing a Plan tree so we don't have a CTE - * list. But the only places we'd see a Var directly - * referencing a CTE RTE are in CteScan or WorkTableScan - * plan nodes. For those cases, set_deparse_plan arranged - * for dpns->inner_plan to be the plan node that emits the - * CTE or RecursiveUnion result, and we can look at its - * tlist instead. + * list. But the only places we'd normally see a Var + * directly referencing a CTE RTE are in CteScan or + * WorkTableScan plan nodes. For those cases, + * set_deparse_plan arranged for dpns->inner_plan to be + * the plan node that emits the CTE or RecursiveUnion + * result, and we can look at its tlist instead. As + * above, this can fail if the CTE has been proven empty, + * in which case fall back to "fN". */ TargetEntry *tle; deparse_namespace save_dpns; const char *result; if (!dpns->inner_plan) - elog(ERROR, "failed to find plan for CTE %s", - rte->eref->aliasname); + { + char *dummy_name = palloc(32); + + Assert(dpns->plan && IsA(dpns->plan, Result)); + snprintf(dummy_name, 32, "f%d", fieldno); + return dummy_name; + } + Assert(dpns->plan && (IsA(dpns->plan, CteScan) || + IsA(dpns->plan, WorkTableScan))); + tle = get_tle_by_resno(dpns->inner_tlist, attnum); if (!tle) elog(ERROR, "bogus varattno for subquery var: %d", diff --git a/src/backend/utils/adt/xml.c b/src/backend/utils/adt/xml.c index d42ce713e61..f041c411603 100644 --- a/src/backend/utils/adt/xml.c +++ b/src/backend/utils/adt/xml.c @@ -4154,7 +4154,13 @@ xpath_internal(text *xpath_expr_text, xmltype *data, ArrayType *namespaces, } } - xpathcomp = xmlXPathCompile(xpath_expr); + /* + * Note: here and elsewhere, be careful to use xmlXPathCtxtCompile not + * xmlXPathCompile. In libxml2 2.13.3 and older, the latter function + * fails to defend itself against recursion-to-stack-overflow. See + * https://gitlab.gnome.org/GNOME/libxml2/-/issues/799 + */ + xpathcomp = xmlXPathCtxtCompile(xpathctx, xpath_expr); if (xpathcomp == NULL || xmlerrcxt->err_occurred) xml_ereport(xmlerrcxt, ERROR, ERRCODE_INTERNAL_ERROR, "invalid XPath expression"); @@ -4533,7 +4539,10 @@ XmlTableSetRowFilter(TableFuncScanState *state, const char *path) xstr = pg_xmlCharStrndup(path, strlen(path)); - xtCxt->xpathcomp = xmlXPathCompile(xstr); + /* We require XmlTableSetDocument to have been done already */ + Assert(xtCxt->xpathcxt != NULL); + + xtCxt->xpathcomp = xmlXPathCtxtCompile(xtCxt->xpathcxt, xstr); if (xtCxt->xpathcomp == NULL || xtCxt->xmlerrcxt->err_occurred) xml_ereport(xtCxt->xmlerrcxt, ERROR, ERRCODE_SYNTAX_ERROR, "invalid XPath expression"); @@ -4564,7 +4573,10 @@ XmlTableSetColumnFilter(TableFuncScanState *state, const char *path, int colnum) xstr = pg_xmlCharStrndup(path, strlen(path)); - xtCxt->xpathscomp[colnum] = xmlXPathCompile(xstr); + /* We require XmlTableSetDocument to have been done already */ + Assert(xtCxt->xpathcxt != NULL); + + xtCxt->xpathscomp[colnum] = xmlXPathCtxtCompile(xtCxt->xpathcxt, xstr); if (xtCxt->xpathscomp[colnum] == NULL || xtCxt->xmlerrcxt->err_occurred) xml_ereport(xtCxt->xmlerrcxt, ERROR, ERRCODE_DATA_EXCEPTION, "invalid XPath expression"); diff --git a/src/backend/utils/cache/relcache.c b/src/backend/utils/cache/relcache.c index 22e92187071..8c9d70f3c0b 100644 --- a/src/backend/utils/cache/relcache.c +++ b/src/backend/utils/cache/relcache.c @@ -73,6 +73,8 @@ #include "nodes/makefuncs.h" #include "nodes/nodeFuncs.h" #include "optimizer/optimizer.h" +#include "parser/parser.h" +#include "postmaster/autovacuum.h" #include "pgstat.h" #include "rewrite/rewriteDefine.h" #include "rewrite/rowsecurity.h" @@ -3725,11 +3727,13 @@ RelationSetNewRelfilenode(Relation relation, char persistence) { Oid newrelfilenode; Relation pg_class; + ItemPointerData otid; HeapTuple tuple; Form_pg_class classform; MultiXactId minmulti = InvalidMultiXactId; TransactionId freezeXid = InvalidTransactionId; RelFileNode newrnode; + bool is_enr = false; if (!IsBinaryUpgrade) { @@ -3767,11 +3771,17 @@ RelationSetNewRelfilenode(Relation relation, char persistence) */ pg_class = table_open(RelationRelationId, RowExclusiveLock); - tuple = SearchSysCacheCopy1(RELOID, - ObjectIdGetDatum(RelationGetRelid(relation))); + is_enr = (sql_dialect == SQL_DIALECT_TSQL && get_ENR_withoid(currentQueryEnv, RelationGetRelid(relation), ENR_TSQL_TEMP)); + if (is_enr) + tuple = SearchSysCacheCopy1(RELOID, + ObjectIdGetDatum(RelationGetRelid(relation))); + else + tuple = SearchSysCacheLockedCopy1(RELOID, + ObjectIdGetDatum(RelationGetRelid(relation))); if (!HeapTupleIsValid(tuple)) elog(ERROR, "could not find tuple for relation %u", RelationGetRelid(relation)); + otid = tuple->t_self; classform = (Form_pg_class) GETSTRUCT(tuple); /* @@ -3891,9 +3901,11 @@ RelationSetNewRelfilenode(Relation relation, char persistence) classform->relminmxid = minmulti; classform->relpersistence = persistence; - CatalogTupleUpdate(pg_class, &tuple->t_self, tuple); + CatalogTupleUpdate(pg_class, &otid, tuple); } + if (!is_enr) + UnlockTuple(pg_class, &otid, InplaceUpdateTupleLock); heap_freetuple(tuple); table_close(pg_class, RowExclusiveLock); diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index ee9c2b8b44f..bf10416851a 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -76,7 +76,10 @@ #include "catalog/pg_type.h" #include "catalog/pg_user_mapping.h" #include "lib/qunique.h" +#include "miscadmin.h" +#include "storage/lmgr.h" #include "utils/catcache.h" +#include "utils/inval.h" #include "utils/rel.h" #include "utils/syscache.h" @@ -1247,6 +1250,104 @@ ReleaseSysCache(HeapTuple tuple) ReleaseCatCache(tuple); } +/* + * SearchSysCacheLocked1 + * + * Combine SearchSysCache1() with acquiring a LOCKTAG_TUPLE at mode + * InplaceUpdateTupleLock. This is a tool for complying with the + * README.tuplock section "Locking to write inplace-updated tables". After + * the caller's heap_update(), it should UnlockTuple(InplaceUpdateTupleLock) + * and ReleaseSysCache(). + * + * The returned tuple may be the subject of an uncommitted update, so this + * doesn't prevent the "tuple concurrently updated" error. + * + * Note: For Babelfish, this function should not be used if the target tuple is + * for an ENR entry, as there is no physical tid for ENR catalog tuples (since ENR + * entries hold all catalog data internally in their cache). Use SearchSysCache1() instead + * to look up tuples for catalogs for ENR entries, and also skip the UnlockTuple() call + * in such cases. + */ +HeapTuple +SearchSysCacheLocked1(int cacheId, + Datum key1) +{ + ItemPointerData tid; + LOCKTAG tag; + Oid dboid = + SysCache[cacheId]->cc_relisshared ? InvalidOid : MyDatabaseId; + Oid reloid = cacheinfo[cacheId].reloid; + + /*---------- + * Since inplace updates may happen just before our LockTuple(), we must + * return content acquired after LockTuple() of the TID we return. If we + * just fetched twice instead of looping, the following sequence would + * defeat our locking: + * + * GRANT: SearchSysCache1() = TID (1,5) + * GRANT: LockTuple(pg_class, (1,5)) + * [no more inplace update of (1,5) until we release the lock] + * CLUSTER: SearchSysCache1() = TID (1,5) + * CLUSTER: heap_update() = TID (1,8) + * CLUSTER: COMMIT + * GRANT: SearchSysCache1() = TID (1,8) + * GRANT: return (1,8) from SearchSysCacheLocked1() + * VACUUM: SearchSysCache1() = TID (1,8) + * VACUUM: LockTuple(pg_class, (1,8)) # two TIDs now locked for one rel + * VACUUM: inplace update + * GRANT: heap_update() = (1,9) # lose inplace update + * + * In the happy case, this takes two fetches, one to determine the TID to + * lock and another to get the content and confirm the TID didn't change. + * + * This is valid even if the row gets updated to a new TID, the old TID + * becomes LP_UNUSED, and the row gets updated back to its old TID. We'd + * still hold the right LOCKTAG_TUPLE and a copy of the row captured after + * the LOCKTAG_TUPLE. + */ + ItemPointerSetInvalid(&tid); + for (;;) + { + HeapTuple tuple; + LOCKMODE lockmode = InplaceUpdateTupleLock; + + tuple = SearchSysCache1(cacheId, key1); + if (ItemPointerIsValid(&tid)) + { + if (!HeapTupleIsValid(tuple)) + { + LockRelease(&tag, lockmode, false); + return tuple; + } + if (ItemPointerEquals(&tid, &tuple->t_self)) + return tuple; + LockRelease(&tag, lockmode, false); + } + else if (!HeapTupleIsValid(tuple)) + return tuple; + + tid = tuple->t_self; + ReleaseSysCache(tuple); + /* like: LockTuple(rel, &tid, lockmode) */ + SET_LOCKTAG_TUPLE(tag, dboid, reloid, + ItemPointerGetBlockNumber(&tid), + ItemPointerGetOffsetNumber(&tid)); + (void) LockAcquire(&tag, lockmode, false, false); + + /* + * If an inplace update just finished, ensure we process the syscache + * inval. XXX this is insufficient: the inplace updater may not yet + * have reached AtEOXact_Inval(). See test at inplace-inval.spec. + * + * If a heap_update() call just released its LOCKTAG_TUPLE, we'll + * probably find the old tuple and reach "tuple concurrently updated". + * If that heap_update() aborts, our LOCKTAG_TUPLE blocks inplace + * updates while our caller works. + */ + AcceptInvalidationMessages(); + } +} + /* * SearchSysCacheCopy * @@ -1273,6 +1374,31 @@ SearchSysCacheCopy(int cacheId, return newtuple; } +/* + * SearchSysCacheLockedCopy1 + * + * Meld SearchSysCacheLockedCopy1 with SearchSysCacheCopy(). After the + * caller's heap_update(), it should UnlockTuple(InplaceUpdateTupleLock) and + * heap_freetuple(). + * + * See SearchSysCacheLocked1() for notes about ENR entries (do not use this + * function for tuples related to ENR entries). + */ +HeapTuple +SearchSysCacheLockedCopy1(int cacheId, + Datum key1) +{ + HeapTuple tuple, + newtuple; + + tuple = SearchSysCacheLocked1(cacheId, key1); + if (!HeapTupleIsValid(tuple)) + return tuple; + newtuple = heap_copytuple(tuple); + ReleaseSysCache(tuple); + return newtuple; +} + /* * SearchSysCacheExists * diff --git a/src/backend/utils/error/csvlog.c b/src/backend/utils/error/csvlog.c index 5c49bc4209e..37774156a69 100644 --- a/src/backend/utils/error/csvlog.c +++ b/src/backend/utils/error/csvlog.c @@ -122,7 +122,7 @@ write_csvlog(ErrorData *edata) appendStringInfoChar(&buf, ','); /* session id */ - appendStringInfo(&buf, "%lx.%x", (long) MyStartTime, MyProcPid); + appendStringInfo(&buf, "%" INT64_MODIFIER "x.%x", MyStartTime, MyProcPid); appendStringInfoChar(&buf, ','); /* Line number */ diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c index 49ca199f2e8..65a2a962b54 100644 --- a/src/backend/utils/error/elog.c +++ b/src/backend/utils/error/elog.c @@ -2619,12 +2619,12 @@ log_line_prefix(StringInfo buf, ErrorData *edata) { char strfbuf[128]; - snprintf(strfbuf, sizeof(strfbuf) - 1, "%lx.%x", - (long) (MyStartTime), MyProcPid); + snprintf(strfbuf, sizeof(strfbuf) - 1, "%" INT64_MODIFIER "x.%x", + MyStartTime, MyProcPid); appendStringInfo(buf, "%*s", padding, strfbuf); } else - appendStringInfo(buf, "%lx.%x", (long) (MyStartTime), MyProcPid); + appendStringInfo(buf, "%" INT64_MODIFIER "x.%x", MyStartTime, MyProcPid); break; case 'p': if (padding != 0) diff --git a/src/backend/utils/error/jsonlog.c b/src/backend/utils/error/jsonlog.c index 27ad7686d81..fd7e564ed87 100644 --- a/src/backend/utils/error/jsonlog.c +++ b/src/backend/utils/error/jsonlog.c @@ -170,8 +170,8 @@ write_jsonlog(ErrorData *edata) } /* Session id */ - appendJSONKeyValueFmt(&buf, "session_id", true, "%lx.%x", - (long) MyStartTime, MyProcPid); + appendJSONKeyValueFmt(&buf, "session_id", true, "%" INT64_MODIFIER "x.%x", + MyStartTime, MyProcPid); /* Line number */ appendJSONKeyValueFmt(&buf, "line_num", false, "%ld", log_line_number); diff --git a/src/backend/utils/init/miscinit.c b/src/backend/utils/init/miscinit.c index 2556a3cb377..b0897c47415 100644 --- a/src/backend/utils/init/miscinit.c +++ b/src/backend/utils/init/miscinit.c @@ -29,6 +29,7 @@ #include #include "access/htup_details.h" +#include "access/parallel.h" #include "catalog/pg_authid.h" #include "common/file_perm.h" #include "libpq/libpq.h" @@ -508,7 +509,7 @@ GetOuterUserId(void) static void -SetOuterUserId(Oid userid) +SetOuterUserId(Oid userid, bool is_superuser) { AssertState(SecurityRestrictionContext == 0); AssertArg(OidIsValid(userid)); @@ -516,6 +517,11 @@ SetOuterUserId(Oid userid) /* We force the effective user ID to match, too */ CurrentUserId = userid; + + /* Also update the is_superuser GUC to match OuterUserId's property */ + SetConfigOption("is_superuser", + is_superuser ? "on" : "off", + PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); } @@ -529,6 +535,12 @@ GetSessionUserId(void) return SessionUserId; } +bool +GetSessionUserIsSuperuser(void) +{ + Assert(OidIsValid(SessionUserId)); + return SessionUserIsSuperuser; +} static void SetSessionUserId(Oid userid, bool is_superuser) @@ -537,15 +549,11 @@ SetSessionUserId(Oid userid, bool is_superuser) AssertArg(OidIsValid(userid)); SessionUserId = userid; SessionUserIsSuperuser = is_superuser; - SetRoleIsActive = false; - - /* We force the effective user IDs to match, too */ - OuterUserId = userid; - CurrentUserId = userid; } /* - * GetAuthenticatedUserId - get the authenticated user ID + * GetAuthenticatedUserId/SetAuthenticatedUserId - get/set the authenticated + * user ID */ Oid GetAuthenticatedUserId(void) @@ -554,6 +562,32 @@ GetAuthenticatedUserId(void) return AuthenticatedUserId; } +/* + * Return whether the authenticated user was superuser at connection start. + */ +bool +GetAuthenticatedUserIsSuperuser(void) +{ + Assert(OidIsValid(AuthenticatedUserId)); + return AuthenticatedUserIsSuperuser; +} + +void +SetAuthenticatedUserId(Oid userid, bool is_superuser) +{ + Assert(OidIsValid(userid)); + + /* call only once */ + Assert(!OidIsValid(AuthenticatedUserId)); + + AuthenticatedUserId = userid; + AuthenticatedUserIsSuperuser = is_superuser; + + /* Also mark our PGPROC entry with the authenticated user id */ + /* (We assume this is an atomic store so no lock is needed) */ + MyProc->roleId = userid; +} + /* * GetUserIdAndSecContext/SetUserIdAndSecContext - get/set the current user ID @@ -699,6 +733,7 @@ InitializeSessionUserId(const char *rolename, Oid roleid) HeapTuple roleTup; Form_pg_authid rform; char *rname; + bool is_superuser; /* * Don't do scans if we're bootstrapping, none of the system catalogs @@ -706,9 +741,6 @@ InitializeSessionUserId(const char *rolename, Oid roleid) */ AssertState(!IsBootstrapProcessingMode()); - /* call only once */ - AssertState(!OidIsValid(AuthenticatedUserId)); - /* * Make sure syscache entries are flushed for recent catalog changes. This * allows us to find roles that were created on-the-fly during @@ -716,36 +748,70 @@ InitializeSessionUserId(const char *rolename, Oid roleid) */ AcceptInvalidationMessages(); + /* + * Look up the role, either by name if that's given or by OID if not. + * Normally we have to fail if we don't find it, but in parallel workers + * just return without doing anything: all the critical work has been done + * already. The upshot of that is that if the role has been deleted, we + * will not enforce its rolconnlimit against parallel workers anymore. + */ if (rolename != NULL) { roleTup = SearchSysCache1(AUTHNAME, PointerGetDatum(rolename)); if (!HeapTupleIsValid(roleTup)) + { + if (InitializingParallelWorker) + return; ereport(FATAL, (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION), errmsg("role \"%s\" does not exist", rolename))); + } } else { roleTup = SearchSysCache1(AUTHOID, ObjectIdGetDatum(roleid)); if (!HeapTupleIsValid(roleTup)) + { + if (InitializingParallelWorker) + return; ereport(FATAL, (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION), errmsg("role with OID %u does not exist", roleid))); + } } rform = (Form_pg_authid) GETSTRUCT(roleTup); roleid = rform->oid; rname = NameStr(rform->rolname); + is_superuser = rform->rolsuper; - AuthenticatedUserId = roleid; - AuthenticatedUserIsSuperuser = rform->rolsuper; - - /* This sets OuterUserId/CurrentUserId too */ - SetSessionUserId(roleid, AuthenticatedUserIsSuperuser); + /* In a parallel worker, ParallelWorkerMain already set these variables */ + if (!InitializingParallelWorker) + { + SetAuthenticatedUserId(roleid, is_superuser); - /* Also mark our PGPROC entry with the authenticated user id */ - /* (We assume this is an atomic store so no lock is needed) */ - MyProc->roleId = roleid; + /* + * Set SessionUserId and related variables, including "role", via the + * GUC mechanisms. + * + * Note: ideally we would use PGC_S_DYNAMIC_DEFAULT here, so that + * session_authorization could subsequently be changed from + * pg_db_role_setting entries. Instead, session_authorization in + * pg_db_role_setting has no effect. Changing that would require + * solving two problems: + * + * 1. If pg_db_role_setting has values for both session_authorization + * and role, we could not be sure which order those would be applied + * in, and it would matter. + * + * 2. Sites may have years-old session_authorization entries. There's + * not been any particular reason to remove them. Ending the dormancy + * of those entries could seriously change application behavior, so + * only a major release should do that. + */ + SetConfigOption("session_authorization", rname, + PGC_BACKEND, PGC_S_OVERRIDE); + } /* * These next checks are not enforced when in standalone mode, so that @@ -774,7 +840,7 @@ InitializeSessionUserId(const char *rolename, Oid roleid) * just document that the connection limit is approximate. */ if (rform->rolconnlimit >= 0 && - !AuthenticatedUserIsSuperuser && + !is_superuser && CountUserBackends(roleid) > rform->rolconnlimit) ereport(FATAL, (errcode(ERRCODE_TOO_MANY_CONNECTIONS), @@ -782,13 +848,6 @@ InitializeSessionUserId(const char *rolename, Oid roleid) rname))); } - /* Record username and superuser status as GUC settings too */ - SetConfigOption("session_authorization", rname, - PGC_BACKEND, PGC_S_OVERRIDE); - SetConfigOption("is_superuser", - AuthenticatedUserIsSuperuser ? "on" : "off", - PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); - ReleaseSysCache(roleTup); } @@ -811,48 +870,39 @@ InitializeSessionUserIdStandalone(void) AuthenticatedUserId = BOOTSTRAP_SUPERUSERID; AuthenticatedUserIsSuperuser = true; - SetSessionUserId(BOOTSTRAP_SUPERUSERID, true); - /* - * XXX This should set SetConfigOption("session_authorization"), too. - * Since we don't, C code will get NULL, and current_setting() will get an - * empty string. + * XXX Ideally we'd do this via SetConfigOption("session_authorization"), + * but we lack the role name needed to do that, and we can't fetch it + * because one reason for this special case is to be able to start up even + * if something's happened to the BOOTSTRAP_SUPERUSERID's pg_authid row. + * Since we don't set the GUC itself, C code will see the value as NULL, + * and current_setting() will report an empty string within this session. */ - SetConfigOption("is_superuser", "on", - PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); + SetSessionAuthorization(BOOTSTRAP_SUPERUSERID, true); + + /* We could do SetConfigOption("role"), but let's be consistent */ + SetCurrentRoleId(InvalidOid, false); } /* * Change session auth ID while running * - * Only a superuser may set auth ID to something other than himself. Note - * that in case of multiple SETs in a single session, the original userid's - * superuserness is what matters. But we set the GUC variable is_superuser - * to indicate whether the *current* session userid is a superuser. - * - * Note: this is not an especially clean place to do the permission check. - * It's OK because the check does not require catalog access and can't - * fail during an end-of-transaction GUC reversion, but we may someday - * have to push it up into assign_session_authorization. + * The SQL standard says that SET SESSION AUTHORIZATION implies SET ROLE NONE. + * We mechanize that at higher levels not here, because this is the GUC + * assign hook for "session_authorization", and it must be commutative with + * SetCurrentRoleId (the hook for "role") because guc.c provides no guarantees + * which will run first during cases such as transaction rollback. Therefore, + * we update derived state (OuterUserId/CurrentUserId/is_superuser) only if + * !SetRoleIsActive. */ void SetSessionAuthorization(Oid userid, bool is_superuser) { - /* Must have authenticated already, else can't make permission check */ - AssertState(OidIsValid(AuthenticatedUserId)); - - if (userid != AuthenticatedUserId && - !AuthenticatedUserIsSuperuser) - ereport(ERROR, - (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), - errmsg("permission denied to set session authorization"))); - SetSessionUserId(userid, is_superuser); - SetConfigOption("is_superuser", - is_superuser ? "on" : "off", - PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); + if (!SetRoleIsActive) + SetOuterUserId(userid, is_superuser); } /* @@ -888,28 +938,25 @@ SetCurrentRoleId(Oid roleid, bool is_superuser) /* * Get correct info if it's SET ROLE NONE * - * If SessionUserId hasn't been set yet, just do nothing --- the eventual - * SetSessionUserId call will fix everything. This is needed since we - * will get called during GUC initialization. + * If SessionUserId hasn't been set yet, do nothing beyond updating + * SetRoleIsActive --- the eventual SetSessionAuthorization call will + * update the derived state. This is needed since we will get called + * during GUC initialization. */ if (!OidIsValid(roleid)) { + SetRoleIsActive = false; + if (!OidIsValid(SessionUserId)) return; roleid = SessionUserId; is_superuser = SessionUserIsSuperuser; - - SetRoleIsActive = false; } else SetRoleIsActive = true; - SetOuterUserId(roleid); - - SetConfigOption("is_superuser", - is_superuser ? "on" : "off", - PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); + SetOuterUserId(roleid, is_superuser); } @@ -1220,10 +1267,10 @@ CreateLockFile(const char *filename, bool amPostmaster, * both datadir and socket lockfiles; although more stuff may get added to * the datadir lockfile later. */ - snprintf(buffer, sizeof(buffer), "%d\n%s\n%ld\n%d\n%s\n", + snprintf(buffer, sizeof(buffer), "%d\n%s\n" INT64_FORMAT "\n%d\n%s\n", amPostmaster ? (int) my_pid : -((int) my_pid), DataDir, - (long) MyStartTime, + MyStartTime, PostPortNumber, socketDir); diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index a78c3f05a8b..220f251212d 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -22,6 +22,7 @@ #include "access/genam.h" #include "access/heapam.h" #include "access/htup_details.h" +#include "access/parallel.h" #include "access/session.h" #include "access/sysattr.h" #include "access/tableam.h" @@ -849,7 +850,23 @@ InitPostgres(const char *in_dbname, Oid dboid, else { InitializeSessionUserId(username, useroid); - am_superuser = superuser(); + + /* + * In a parallel worker, set am_superuser based on the + * authenticated user ID, not the current role. This is pretty + * dubious but it matches our historical behavior. Note that this + * value of am_superuser is used only for connection-privilege + * checks here and in CheckMyDatabase (we won't reach + * process_startup_options in a background worker). + * + * In other cases, there's been no opportunity for the current + * role to diverge from the authenticated user ID yet, so we can + * just rely on superuser() and avoid an extra catalog lookup. + */ + if (InitializingParallelWorker) + am_superuser = superuser_arg(GetAuthenticatedUserId()); + else + am_superuser = superuser(); } } else diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 96b036b50eb..e1c5c7eb950 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1260,7 +1260,7 @@ static struct config_bool ConfigureNamesBool[] = {"is_superuser", PGC_INTERNAL, UNGROUPED, gettext_noop("Shows whether the current user is a superuser."), NULL, - GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE + GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE | GUC_ALLOW_IN_PARALLEL }, &session_auth_is_superuser, false, @@ -4743,7 +4743,7 @@ static struct config_string ConfigureNamesString[] = { {"restrict_nonsystem_relation_kind", PGC_USERSET, CLIENT_CONN_STATEMENT, - gettext_noop("Sets relation kinds of non-system relation to restrict use"), + gettext_noop("Prohibits access to non-system relations of specified kinds."), NULL, GUC_LIST_INPUT | GUC_NOT_IN_SAMPLE }, @@ -7614,10 +7614,12 @@ parse_and_validate_value(struct config_generic *record, * * Return value: * +1: the value is valid and was successfully applied. - * 0: the name or value is invalid (but see below). - * -1: the value was not applied because of context, priority, or changeVal. + * 0: the name or value is invalid, or it's invalid to try to set + * this GUC now; but elevel was less than ERROR (see below). + * -1: no error detected, but the value was not applied, either + * because changeVal is false or there is some overriding setting. * - * If there is an error (non-existing option, invalid value) then an + * If there is an error (non-existing option, invalid value, etc) then an * ereport(ERROR) is thrown *unless* this is called for a source for which * we don't want an ERROR (currently, those are defaults, the config file, * and per-database or per-user settings, as well as callers who specify @@ -7697,6 +7699,10 @@ set_config_option_ext(const char *name, const char *value, elevel = ERROR; } + record = find_option(name, true, false, elevel); + if (record == NULL) + return 0; + /* * GUC_ACTION_SAVE changes are acceptable during a parallel operation, * because the current worker will also pop the change. We're probably @@ -7704,19 +7710,19 @@ set_config_option_ext(const char *name, const char *value, * body should observe the change, and peer workers do not share in the * execution of a function call started by this worker. * + * Also allow normal setting if the GUC is marked GUC_ALLOW_IN_PARALLEL. + * * Other changes might need to affect other workers, so forbid them. */ - if (IsInParallelMode() && changeVal && action != GUC_ACTION_SAVE) + if (IsInParallelMode() && changeVal && action != GUC_ACTION_SAVE && + (record->flags & GUC_ALLOW_IN_PARALLEL) == 0) { ereport(elevel, (errcode(ERRCODE_INVALID_TRANSACTION_STATE), - errmsg("cannot set parameters during a parallel operation"))); - return -1; - } - - record = find_option(name, true, false, elevel); - if (record == NULL) + errmsg("parameter \"%s\" cannot be set during a parallel operation", + name))); return 0; + } /* * Check if the option can be set at this time. See guc.h for the precise @@ -8233,6 +8239,9 @@ set_config_option_ext(const char *name, const char *value, case PGC_STRING: { struct config_string *conf = (struct config_string *) record; + GucContext orig_context = context; + GucSource orig_source = source; + Oid orig_srole = srole; #define newval (newval_union.stringval) @@ -8318,6 +8327,44 @@ set_config_option_ext(const char *name, const char *value, conf->gen.source = source; conf->gen.scontext = context; conf->gen.srole = srole; + + /* + * Ugly hack: during SET session_authorization, forcibly + * do SET ROLE NONE with the same context/source/etc, so + * that the effects will have identical lifespan. This is + * required by the SQL spec, and it's not possible to do + * it within the variable's check hook or assign hook + * because our APIs for those don't pass enough info. + * However, don't do it if is_reload: in that case we + * expect that if "role" isn't supposed to be default, it + * has been or will be set by a separate reload action. + * + * Also, for the call from InitializeSessionUserId with + * source == PGC_S_OVERRIDE, use PGC_S_DYNAMIC_DEFAULT for + * "role"'s source, so that it's still possible to set + * "role" from pg_db_role_setting entries. (See notes in + * InitializeSessionUserId before changing this.) + * + * A fine point: for RESET session_authorization, we do + * "RESET role" not "SET ROLE NONE" (by passing down NULL + * rather than "none" for the value). This would have the + * same effects in typical cases, but if the reset value + * of "role" is not "none" it seems better to revert to + * that. + */ + if (!is_reload && + strcmp(conf->gen.name, "session_authorization") == 0) + (void) set_config_option_ext("role", + value ? "none" : NULL, + orig_context, + (orig_source == PGC_S_OVERRIDE) + ? PGC_S_DYNAMIC_DEFAULT + : orig_source, + orig_srole, + action, + true, + elevel, + false); } if (makeDefault) @@ -10976,12 +11023,6 @@ can_skip_gucvar(struct config_generic *gconf) * mechanisms (if indeed they aren't compile-time constants). So we may * always skip these. * - * Role must be handled specially because its current value can be an - * invalid value (for instance, if someone dropped the role since we set - * it). So if we tried to serialize it normally, we might get a failure. - * We skip it here, and use another mechanism to ensure the worker has the - * right value. - * * For all other GUCs, we skip if the GUC has its compiled-in default * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means * we don't send GUCs that have their default values, which typically @@ -10990,8 +11031,8 @@ can_skip_gucvar(struct config_generic *gconf) * comments in RestoreGUCState for more info. */ return gconf->context == PGC_POSTMASTER || - gconf->context == PGC_INTERNAL || gconf->source == PGC_S_DEFAULT || - strcmp(gconf->name, "role") == 0; + gconf->context == PGC_INTERNAL || + gconf->source == PGC_S_DEFAULT; } /* diff --git a/src/backend/utils/mmgr/portalmem.c b/src/backend/utils/mmgr/portalmem.c index 7409593c968..47437db1224 100644 --- a/src/backend/utils/mmgr/portalmem.c +++ b/src/backend/utils/mmgr/portalmem.c @@ -1151,6 +1151,9 @@ pg_cursor(PG_FUNCTION_ARGS) /* report only "visible" entries */ if (!portal->visible) continue; + /* also ignore it if PortalDefineQuery hasn't been called yet */ + if (!portal->sourceText) + continue; MemSet(nulls, 0, sizeof(nulls)); diff --git a/src/bin/initdb/po/es.po b/src/bin/initdb/po/es.po index db52ae98eac..379a4be0e03 100644 --- a/src/bin/initdb/po/es.po +++ b/src/bin/initdb/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: initdb (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:54+0000\n" +"POT-Creation-Date: 2024-11-09 06:24+0000\n" "PO-Revision-Date: 2023-05-24 19:23+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -92,33 +92,33 @@ msgstr "memoria agotada\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "no se puede duplicar un puntero nulo (error interno)\n" -#: ../../common/file_utils.c:87 ../../common/file_utils.c:451 +#: ../../common/file_utils.c:86 ../../common/file_utils.c:446 #, c-format msgid "could not stat file \"%s\": %m" msgstr "no se pudo hacer stat al archivo «%s»: %m" -#: ../../common/file_utils.c:166 ../../common/pgfnames.c:48 +#: ../../common/file_utils.c:161 ../../common/pgfnames.c:48 #, c-format msgid "could not open directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" -#: ../../common/file_utils.c:200 ../../common/pgfnames.c:69 +#: ../../common/file_utils.c:195 ../../common/pgfnames.c:69 #, c-format msgid "could not read directory \"%s\": %m" msgstr "no se pudo leer el directorio «%s»: %m" -#: ../../common/file_utils.c:232 ../../common/file_utils.c:291 -#: ../../common/file_utils.c:365 +#: ../../common/file_utils.c:227 ../../common/file_utils.c:286 +#: ../../common/file_utils.c:360 #, c-format msgid "could not open file \"%s\": %m" msgstr "no se pudo abrir el archivo «%s»: %m" -#: ../../common/file_utils.c:303 ../../common/file_utils.c:373 +#: ../../common/file_utils.c:298 ../../common/file_utils.c:368 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "no se pudo sincronizar (fsync) archivo «%s»: %m" -#: ../../common/file_utils.c:383 +#: ../../common/file_utils.c:378 #, c-format msgid "could not rename file \"%s\" to \"%s\": %m" msgstr "no se pudo renombrar el archivo de «%s» a «%s»: %m" @@ -222,12 +222,12 @@ msgstr "el proceso hijo fue terminado por una señal %d: %s" msgid "child process exited with unrecognized status %d" msgstr "el proceso hijo terminó con código no reconocido %d" -#: ../../port/dirmod.c:221 +#: ../../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "no se pudo definir un junction para «%s»: %s\n" -#: ../../port/dirmod.c:298 +#: ../../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "no se pudo obtener junction para «%s»: %s\n" diff --git a/src/bin/initdb/po/fr.po b/src/bin/initdb/po/fr.po index 7d2097e08b2..dd70c24f1f0 100644 --- a/src/bin/initdb/po/fr.po +++ b/src/bin/initdb/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-09-26 08:19+0000\n" -"PO-Revision-Date: 2022-09-26 14:05+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -1078,219 +1078,3 @@ msgstr "" "\n" " %s\n" "\n" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid "%s: The password file was not generated. Please report this problem.\n" -#~ msgstr "" -#~ "%s : le fichier de mots de passe n'a pas été créé.\n" -#~ "Merci de rapporter ce problème.\n" - -#~ msgid "%s: could not access directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu accéder au répertoire « %s » : %s\n" - -#~ msgid "%s: could not access file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu accéder au fichier « %s » : %s\n" - -#~ msgid "%s: could not close directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "%s: could not create directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le répertoire « %s » : %s\n" - -#~ msgid "%s: could not create symbolic link \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le lien symbolique « %s » : %s\n" - -#~ msgid "%s: could not determine valid short version string\n" -#~ msgstr "%s : n'a pas pu déterminer une chaîne de version courte valide\n" - -#~ msgid "%s: could not execute command \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu exécuter la commande « %s » : %s\n" - -#~ msgid "%s: could not fsync file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu synchroniser sur disque le fichier « %s » : %s\n" - -#~ msgid "%s: could not get current user name: %s\n" -#~ msgstr "%s : n'a pas pu obtenir le nom de l'utilisateur courant : %s\n" - -#~ msgid "%s: could not obtain information about current user: %s\n" -#~ msgstr "%s : n'a pas pu obtenir d'informations sur l'utilisateur courant : %s\n" - -#~ msgid "%s: could not open directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "%s: could not open file \"%s\" for reading: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » en lecture : %s\n" - -#~ msgid "%s: could not open file \"%s\" for writing: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » en écriture : %s\n" - -#~ msgid "%s: could not open file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "%s: could not read directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "%s: could not rename file \"%s\" to \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu renommer le fichier « %s » en « %s » : %s\n" - -#~ msgid "%s: could not stat file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu récupérer les informations sur le fichier « %s » : %s\n" - -#~ msgid "%s: could not to allocate SIDs: error code %lu\n" -#~ msgstr "%s : n'a pas pu allouer les SID : code d'erreur %lu\n" - -#~ msgid "%s: could not write file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu écrire le fichier « %s » : %s\n" - -#~ msgid "%s: failed to remove contents of transaction log directory\n" -#~ msgstr "%s : échec de la suppression du contenu du répertoire des journaux de transaction\n" - -#~ msgid "%s: failed to remove transaction log directory\n" -#~ msgstr "%s : échec de la suppression du répertoire des journaux de transaction\n" - -#~ msgid "%s: failed to restore old locale \"%s\"\n" -#~ msgstr "%s : n'a pas pu restaurer l'ancienne locale « %s »\n" - -#~ msgid "%s: file \"%s\" does not exist\n" -#~ msgstr "%s : le fichier « %s » n'existe pas\n" - -#~ msgid "%s: invalid locale name \"%s\"\n" -#~ msgstr "%s : nom de locale invalide (« %s »)\n" - -#~ msgid "%s: locale name has non-ASCII characters, skipped: \"%s\"\n" -#~ msgstr "%s : le nom de la locale contient des caractères non ASCII, ignoré : « %s »\n" - -#~ msgid "%s: locale name too long, skipped: \"%s\"\n" -#~ msgstr "%s : nom de locale trop long, ignoré : « %s »\n" - -#~ msgid "%s: out of memory\n" -#~ msgstr "%s : mémoire épuisée\n" - -#~ msgid "%s: removing contents of transaction log directory \"%s\"\n" -#~ msgstr "%s : suppression du contenu du répertoire des journaux de transaction « %s »\n" - -#~ msgid "%s: removing transaction log directory \"%s\"\n" -#~ msgstr "%s : suppression du répertoire des journaux de transaction « %s »\n" - -#~ msgid "%s: symlinks are not supported on this platform\n" -#~ msgstr "%s : les liens symboliques ne sont pas supportés sur cette plateforme\n" - -#~ msgid "%s: transaction log directory \"%s\" not removed at user's request\n" -#~ msgstr "" -#~ "%s : répertoire des journaux de transaction « %s » non supprimé à la demande\n" -#~ "de l'utilisateur\n" - -#~ msgid "%s: unrecognized authentication method \"%s\"\n" -#~ msgstr "%s : méthode d'authentification « %s » inconnue.\n" - -#~ msgid "No usable system locales were found.\n" -#~ msgstr "Aucune locale système utilisable n'a été trouvée.\n" - -#~ msgid "" -#~ "The program \"postgres\" is needed by %s but was not found in the\n" -#~ "same directory as \"%s\".\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « postgres » est nécessaire à %s mais n'a pas été trouvé dans\n" -#~ "le même répertoire que « %s ».\n" -#~ "Vérifiez votre installation." - -#~ msgid "" -#~ "The program \"postgres\" was found by \"%s\"\n" -#~ "but was not the same version as %s.\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « postgres » a été trouvé par « %s » mais n'est pas de la même\n" -#~ "version que « %s ».\n" -#~ "Vérifiez votre installation." - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#~ msgid "Use the option \"--debug\" to see details.\n" -#~ msgstr "Utilisez l'option « --debug » pour voir le détail.\n" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "copying template1 to postgres ... " -#~ msgstr "copie de template1 vers postgres... " - -#~ msgid "copying template1 to template0 ... " -#~ msgstr "copie de template1 vers template0... " - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu modifier le répertoire par « %s » : %s" - -#~ msgid "could not open directory \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "could not read directory \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "could not stat file or directory \"%s\": %s\n" -#~ msgstr "" -#~ "n'a pas pu récupérer les informations sur le fichier ou répertoire\n" -#~ "« %s » : %s\n" - -#~ msgid "creating collations ... " -#~ msgstr "création des collationnements... " - -#~ msgid "creating conversions ... " -#~ msgstr "création des conversions... " - -#~ msgid "creating dictionaries ... " -#~ msgstr "création des dictionnaires... " - -#~ msgid "creating information schema ... " -#~ msgstr "création du schéma d'informations... " - -#~ msgid "creating system views ... " -#~ msgstr "création des vues système... " - -#~ msgid "creating template1 database in %s/base/1 ... " -#~ msgstr "création de la base de données template1 dans %s/base/1... " - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "initializing dependencies ... " -#~ msgstr "initialisation des dépendances... " - -#~ msgid "initializing pg_authid ... " -#~ msgstr "initialisation de pg_authid... " - -#~ msgid "loading PL/pgSQL server-side language ... " -#~ msgstr "chargement du langage PL/pgSQL... " - -#~ msgid "loading system objects' descriptions ... " -#~ msgstr "chargement de la description des objets système... " - -#~ msgid "not supported on this platform\n" -#~ msgstr "non supporté sur cette plateforme\n" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" - -#~ msgid "setting password ... " -#~ msgstr "initialisation du mot de passe... " - -#~ msgid "setting privileges on built-in objects ... " -#~ msgstr "initialisation des droits sur les objets internes... " - -#~ msgid "vacuuming database template1 ... " -#~ msgstr "lancement du vacuum sur la base de données template1... " diff --git a/src/bin/initdb/po/ru.po b/src/bin/initdb/po/ru.po index 047d2d8cf98..4001cc27f41 100644 --- a/src/bin/initdb/po/ru.po +++ b/src/bin/initdb/po/ru.po @@ -6,13 +6,13 @@ # Sergey Burladyan , 2009. # Andrey Sudnik , 2010. # Dmitriy Olshevskiy , 2014. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: initdb (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2022-09-29 10:17+0300\n" -"PO-Revision-Date: 2022-09-29 11:39+0300\n" +"POT-Creation-Date: 2024-11-09 07:47+0300\n" +"PO-Revision-Date: 2024-09-07 06:49+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -94,33 +94,33 @@ msgstr "нехватка памяти\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "попытка дублирования нулевого указателя (внутренняя ошибка)\n" -#: ../../common/file_utils.c:87 ../../common/file_utils.c:451 +#: ../../common/file_utils.c:86 ../../common/file_utils.c:446 #, c-format msgid "could not stat file \"%s\": %m" msgstr "не удалось получить информацию о файле \"%s\": %m" -#: ../../common/file_utils.c:166 ../../common/pgfnames.c:48 +#: ../../common/file_utils.c:161 ../../common/pgfnames.c:48 #, c-format msgid "could not open directory \"%s\": %m" msgstr "не удалось открыть каталог \"%s\": %m" -#: ../../common/file_utils.c:200 ../../common/pgfnames.c:69 +#: ../../common/file_utils.c:195 ../../common/pgfnames.c:69 #, c-format msgid "could not read directory \"%s\": %m" msgstr "не удалось прочитать каталог \"%s\": %m" -#: ../../common/file_utils.c:232 ../../common/file_utils.c:291 -#: ../../common/file_utils.c:365 +#: ../../common/file_utils.c:227 ../../common/file_utils.c:286 +#: ../../common/file_utils.c:360 #, c-format msgid "could not open file \"%s\": %m" msgstr "не удалось открыть файл \"%s\": %m" -#: ../../common/file_utils.c:303 ../../common/file_utils.c:373 +#: ../../common/file_utils.c:298 ../../common/file_utils.c:368 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "не удалось синхронизировать с ФС файл \"%s\": %m" -#: ../../common/file_utils.c:383 +#: ../../common/file_utils.c:378 #, c-format msgid "could not rename file \"%s\" to \"%s\": %m" msgstr "не удалось переименовать файл \"%s\" в \"%s\": %m" @@ -222,14 +222,14 @@ msgstr "дочерний процесс завершён по сигналу %d: #: ../../common/wait_error.c:72 #, c-format msgid "child process exited with unrecognized status %d" -msgstr "дочерний процесс завершился с нераспознанным состоянием %d" +msgstr "дочерний процесс завершился с нераспознанным кодом состояния %d" -#: ../../port/dirmod.c:221 +#: ../../port/dirmod.c:247 #, c-format msgid "could not set junction for \"%s\": %s\n" msgstr "не удалось создать связь для каталога \"%s\": %s\n" -#: ../../port/dirmod.c:298 +#: ../../port/dirmod.c:324 #, c-format msgid "could not get junction for \"%s\": %s\n" msgstr "не удалось получить связь для каталога \"%s\": %s\n" @@ -345,7 +345,7 @@ msgstr "" #: initdb.c:780 #, c-format msgid "could not access file \"%s\": %m" -msgstr "нет доступа к файлу \"%s\": %m" +msgstr "ошибка при обращении к файлу \"%s\": %m" #: initdb.c:787 #, c-format @@ -952,7 +952,7 @@ msgstr "" #: initdb.c:2605 initdb.c:2675 initdb.c:3058 #, c-format msgid "could not access directory \"%s\": %m" -msgstr "ошибка доступа к каталогу \"%s\": %m" +msgstr "ошибка при обращении к каталогу \"%s\": %m" #: initdb.c:2626 #, c-format diff --git a/src/bin/pg_amcheck/po/es.po b/src/bin/pg_amcheck/po/es.po index b9802b30ddd..9c4f38adf3a 100644 --- a/src/bin/pg_amcheck/po/es.po +++ b/src/bin/pg_amcheck/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_amcheck (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:55+0000\n" +"POT-Creation-Date: 2024-11-09 06:25+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_amcheck/po/fr.po b/src/bin/pg_amcheck/po/fr.po index 9fc553f23b7..69d3e520a05 100644 --- a/src/bin/pg_amcheck/po/fr.po +++ b/src/bin/pg_amcheck/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-05-14 10:19+0000\n" -"PO-Revision-Date: 2022-05-14 17:15+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:277 #, c-format @@ -556,50 +556,3 @@ msgstr "aucune base de données connectable à vérifier correspondant à « %s #, c-format msgid "internal error: received unexpected relation pattern_id %d" msgstr "erreur interne : a reçu un pattern_id %d inattendu de la relation" - -#~ msgid "" -#~ "\n" -#~ "Other Options:\n" -#~ msgstr "" -#~ "\n" -#~ "Autres options:\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide, puis quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version, puis quitte\n" - -#~ msgid " -e, --echo show the commands being sent to the server\n" -#~ msgstr " -e, --echo affiche les commandes envoyées au serveur\n" - -#~ msgid " -q, --quiet don't write any messages\n" -#~ msgstr " -q, --quiet n'écrit aucun message\n" - -#~ msgid " -q, --quiet don't write any messages\n" -#~ msgstr " -q, --quiet n'écrit aucun message\n" - -#~ msgid " -v, --verbose write a lot of output\n" -#~ msgstr " -v, --verbose mode verbeux\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#, c-format -#~ msgid "command was: %s" -#~ msgstr "la commande était : %s" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "invalid skip option" -#~ msgstr "option skip invalide" - -#, c-format -#~ msgid "number of parallel jobs must be at least 1" -#~ msgstr "le nombre maximum de jobs en parallèle doit être au moins de 1" - -#~ msgid "number of parallel jobs must be at least 1\n" -#~ msgstr "le nombre de jobs parallèles doit être au moins de 1\n" diff --git a/src/bin/pg_amcheck/po/ru.po b/src/bin/pg_amcheck/po/ru.po index 8b665458518..684bccdf445 100644 --- a/src/bin/pg_amcheck/po/ru.po +++ b/src/bin/pg_amcheck/po/ru.po @@ -1,10 +1,10 @@ -# Alexander Lakhin , 2021, 2022. +# Alexander Lakhin , 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: pg_amcheck (PostgreSQL) 14\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-08-27 14:52+0300\n" -"PO-Revision-Date: 2022-09-05 13:33+0300\n" +"PO-Revision-Date: 2024-09-05 08:23+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -457,8 +457,8 @@ msgstr "" msgid "" " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог " -"сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или " +"каталог сокетов\n" #: pg_amcheck.c:1168 #, c-format diff --git a/src/bin/pg_archivecleanup/po/es.po b/src/bin/pg_archivecleanup/po/es.po index f76c77b9aa5..260b55dce11 100644 --- a/src/bin/pg_archivecleanup/po/es.po +++ b/src/bin/pg_archivecleanup/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_archivecleanup (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:56+0000\n" +"POT-Creation-Date: 2024-11-09 06:25+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_archivecleanup/po/fr.po b/src/bin/pg_archivecleanup/po/fr.po index 0ac310cc701..7986566196a 100644 --- a/src/bin/pg_archivecleanup/po/fr.po +++ b/src/bin/pg_archivecleanup/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:273 #, c-format @@ -186,33 +186,3 @@ msgstr "doit spécifier le plus ancien journal de transactions conservé" #, c-format msgid "too many command-line arguments" msgstr "trop d'arguments en ligne de commande" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid "%s: ERROR: could not remove file \"%s\": %s\n" -#~ msgstr "%s : ERREUR : n'a pas pu supprimer le fichier « %s » : %s\n" - -#~ msgid "%s: file \"%s\" would be removed\n" -#~ msgstr "%s : le fichier « %s » serait supprimé\n" - -#~ msgid "%s: keeping WAL file \"%s\" and later\n" -#~ msgstr "%s : conservation du fichier WAL « %s » et des suivants\n" - -#~ msgid "%s: removing file \"%s\"\n" -#~ msgstr "%s : suppression du fichier « %s »\n" - -#~ msgid "%s: too many parameters\n" -#~ msgstr "%s : trop de paramètres\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " diff --git a/src/bin/pg_archivecleanup/po/ru.po b/src/bin/pg_archivecleanup/po/ru.po index c28de42aa18..acf84faf1ea 100644 --- a/src/bin/pg_archivecleanup/po/ru.po +++ b/src/bin/pg_archivecleanup/po/ru.po @@ -1,13 +1,13 @@ # Russian message translation file for pg_archivecleanup # Copyright (C) 2017 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2017, 2019, 2020, 2022. +# Alexander Lakhin , 2017, 2019, 2020, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: pg_archivecleanup (PostgreSQL) 10\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-08-27 14:52+0300\n" -"PO-Revision-Date: 2022-09-05 13:34+0300\n" +"PO-Revision-Date: 2024-09-07 06:17+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -124,7 +124,7 @@ msgstr " -V, --version показать версию и выйти\n" #: pg_archivecleanup.c:258 #, c-format msgid " -x EXT clean up files if they have this extension\n" -msgstr " -x РСШ убрать файлы с заданным расширением\n" +msgstr " -x РСШ удалить файлы с заданным расширением\n" #: pg_archivecleanup.c:259 #, c-format diff --git a/src/bin/pg_basebackup/po/es.po b/src/bin/pg_basebackup/po/es.po index a734d30c657..472a2191a67 100644 --- a/src/bin/pg_basebackup/po/es.po +++ b/src/bin/pg_basebackup/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_basebackup (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:53+0000\n" +"POT-Creation-Date: 2024-11-09 06:23+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -92,36 +92,36 @@ msgstr "memoria agotada\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "no se puede duplicar un puntero nulo (error interno)\n" -#: ../../common/file_utils.c:87 ../../common/file_utils.c:451 +#: ../../common/file_utils.c:86 ../../common/file_utils.c:446 #: pg_receivewal.c:380 pg_recvlogical.c:341 #, c-format msgid "could not stat file \"%s\": %m" msgstr "no se pudo hacer stat al archivo «%s»: %m" -#: ../../common/file_utils.c:166 pg_receivewal.c:303 +#: ../../common/file_utils.c:161 pg_receivewal.c:303 #, c-format msgid "could not open directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" -#: ../../common/file_utils.c:200 pg_receivewal.c:532 +#: ../../common/file_utils.c:195 pg_receivewal.c:532 #, c-format msgid "could not read directory \"%s\": %m" msgstr "no se pudo leer el directorio «%s»: %m" -#: ../../common/file_utils.c:232 ../../common/file_utils.c:291 -#: ../../common/file_utils.c:365 ../../fe_utils/recovery_gen.c:121 +#: ../../common/file_utils.c:227 ../../common/file_utils.c:286 +#: ../../common/file_utils.c:360 ../../fe_utils/recovery_gen.c:121 #: pg_receivewal.c:447 #, c-format msgid "could not open file \"%s\": %m" msgstr "no se pudo abrir el archivo «%s»: %m" -#: ../../common/file_utils.c:303 ../../common/file_utils.c:373 +#: ../../common/file_utils.c:298 ../../common/file_utils.c:368 #: pg_recvlogical.c:196 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "no se pudo sincronizar (fsync) archivo «%s»: %m" -#: ../../common/file_utils.c:383 pg_basebackup.c:2267 walmethods.c:459 +#: ../../common/file_utils.c:378 pg_basebackup.c:2267 walmethods.c:459 #, c-format msgid "could not rename file \"%s\" to \"%s\": %m" msgstr "no se pudo renombrar el archivo de «%s» a «%s»: %m" diff --git a/src/bin/pg_basebackup/po/fr.po b/src/bin/pg_basebackup/po/fr.po index f8be071f071..8c959e32643 100644 --- a/src/bin/pg_basebackup/po/fr.po +++ b/src/bin/pg_basebackup/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-09-26 08:18+0000\n" -"PO-Revision-Date: 2022-09-26 14:09+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -1836,362 +1836,3 @@ msgstr "suppression non supportée avec la compression" #: walmethods.c:1291 msgid "could not close compression stream" msgstr "n'a pas pu fermer le flux de compression" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#, c-format -#~ msgid "" -#~ " --compression-method=METHOD\n" -#~ " method to compress logs\n" -#~ msgstr "" -#~ " --compression-method=METHODE\n" -#~ " méthode pour compresser les journaux\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide puis quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version puis quitte\n" - -#, c-format -#~ msgid " -Z, --compress=0-9 compress tar output with given compression level\n" -#~ msgstr "" -#~ " -Z, --compress=0-9 compresse la sortie tar avec le niveau de\n" -#~ " compression indiqué\n" - -#, c-format -#~ msgid " -Z, --compress=1-9 compress logs with given compression level\n" -#~ msgstr "" -#~ " -Z, --compress=0-9 compresse les journaux avec le niveau de\n" -#~ " compression indiqué\n" - -#~ msgid " -x, --xlog include required WAL files in backup (fetch mode)\n" -#~ msgstr "" -#~ " -x, --xlog inclut les journaux de transactions nécessaires\n" -#~ " dans la sauvegarde (mode fetch)\n" - -#~ msgid "%s: WAL directory \"%s\" not removed at user's request\n" -#~ msgstr "%s : répertoire des journaux de transactions « %s » non supprimé à la demande de l'utilisateur\n" - -#~ msgid "%s: WAL directory location must be an absolute path\n" -#~ msgstr "" -#~ "%s : l'emplacement du répertoire des journaux de transactions doit être\n" -#~ "indiqué avec un chemin absolu\n" - -#~ msgid "%s: WAL streaming can only be used in plain mode\n" -#~ msgstr "%s : le flux de journaux de transactions peut seulement être utilisé en mode plain\n" - -#~ msgid "%s: cannot specify both --xlog and --xlog-method\n" -#~ msgstr "%s : ne peut pas spécifier à la fois --xlog et --xlog-method\n" - -#~ msgid "%s: child process did not exit normally\n" -#~ msgstr "%s : le processus fils n'a pas quitté normalement\n" - -#~ msgid "%s: child process exited with error %d\n" -#~ msgstr "%s : le processus fils a quitté avec le code erreur %d\n" - -#~ msgid "%s: could not access directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu accéder au répertoire « %s » : %s\n" - -#~ msgid "%s: could not clear search_path: %s" -#~ msgstr "%s : n'a pas pu effacer search_path : %s" - -#~ msgid "%s: could not close directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "%s: could not close file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu fermer le fichier « %s » : %s\n" - -#~ msgid "%s: could not close file %s: %s\n" -#~ msgstr "%s : n'a pas pu fermer le fichier %s : %s\n" - -#~ msgid "%s: could not connect to server\n" -#~ msgstr "%s : n'a pas pu se connecter au serveur\n" - -#~ msgid "%s: could not connect to server: %s" -#~ msgstr "%s : n'a pas pu se connecter au serveur : %s" - -#~ msgid "%s: could not create archive status file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le fichier de statut d'archivage « %s » : %s\n" - -#~ msgid "%s: could not create directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le répertoire « %s » : %s\n" - -#~ msgid "%s: could not create file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le fichier « %s » : %s\n" - -#~ msgid "%s: could not create symbolic link \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le lien symbolique « %s » : %s\n" - -#~ msgid "%s: could not fsync file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu synchroniser sur disque le fichier « %s » : %s\n" - -#~ msgid "%s: could not fsync log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu synchroniser sur disque le fichier « %s » : %s\n" - -#~ msgid "%s: could not get current position in file %s: %s\n" -#~ msgstr "%s : n'a pas pu obtenir la position courant dans le fichier %s : %s\n" - -#~ msgid "%s: could not identify system: %s" -#~ msgstr "%s : n'a pas pu identifier le système : %s" - -#~ msgid "%s: could not identify system: %s\n" -#~ msgstr "%s : n'a pas pu identifier le système : %s\n" - -#~ msgid "%s: could not identify system: got %d rows and %d fields, expected %d rows and %d or more fields\n" -#~ msgstr "" -#~ "%s : n'a pas pu identifier le système, a récupéré %d lignes et %d champs,\n" -#~ "attendait %d lignes et %d champs (ou plus)\n" - -#~ msgid "%s: could not open WAL segment %s: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le segment WAL %s : %s\n" - -#~ msgid "%s: could not open directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "%s: could not open file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "%s: could not open log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le journal applicatif « %s » : %s\n" - -#~ msgid "%s: could not open timeline history file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le journal historique de la timeline « %s » : %s\n" - -#~ msgid "%s: could not open write-ahead log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le journal de transactions « %s » : %s\n" - -#~ msgid "%s: could not pad WAL segment %s: %s\n" -#~ msgstr "%s : n'a pas pu terminer le segment WAL %s : %s\n" - -#~ msgid "%s: could not pad transaction log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu remplir de zéros le journal de transactions « %s » : %s\n" - -#~ msgid "%s: could not parse file mode\n" -#~ msgstr "%s : n'a pas pu analyser le mode du fichier\n" - -#~ msgid "%s: could not parse file size\n" -#~ msgstr "%s : n'a pas pu analyser la taille du fichier\n" - -#~ msgid "%s: could not parse log start position from value \"%s\"\n" -#~ msgstr "%s : n'a pas pu analyser la position de départ des WAL à partir de la valeur « %s »\n" - -#~ msgid "%s: could not parse transaction log file name \"%s\"\n" -#~ msgstr "%s : n'a pas pu analyser le nom du journal de transactions « %s »\n" - -#~ msgid "%s: could not read copy data: %s\n" -#~ msgstr "%s : n'a pas pu lire les données du COPY : %s\n" - -#~ msgid "%s: could not read directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "%s: could not receive data from WAL stream: %s" -#~ msgstr "%s : n'a pas pu recevoir des données du flux de WAL : %s" - -#~ msgid "%s: could not rename file \"%s\" to \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu renommer le fichier « %s » en « %s » : %s\n" - -#~ msgid "%s: could not rename file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu renommer le fichier « %s » : %s\n" - -#~ msgid "%s: could not seek back to beginning of WAL segment %s: %s\n" -#~ msgstr "%s : n'a pas pu se déplacer au début du segment WAL %s : %s\n" - -#~ msgid "%s: could not seek to beginning of transaction log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu rechercher le début du journal de transaction « %s » : %s\n" - -#~ msgid "%s: could not send base backup command: %s" -#~ msgstr "%s : n'a pas pu envoyer la commande de sauvegarde de base : %s" - -#~ msgid "%s: could not set permissions on directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas configurer les droits sur le répertoire « %s » : %s\n" - -#~ msgid "%s: could not set permissions on file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu configurer les droits sur le fichier « %s » : %s\n" - -#~ msgid "%s: could not stat WAL segment %s: %s\n" -#~ msgstr "%s : n'a pas pu récupérer les informations sur le segment WAL %s : %s\n" - -#~ msgid "%s: could not stat file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu récupérer les informations sur le fichier « %s » : %s\n" - -#~ msgid "%s: could not stat transaction log file \"%s\": %s\n" -#~ msgstr "" -#~ "%s : n'a pas pu récupérer les informations sur le journal de transactions\n" -#~ "« %s » : %s\n" - -#~ msgid "%s: could not write to file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu écrire dans le fichier « %s » : %s\n" - -#~ msgid "%s: data directory \"%s\" not removed at user's request\n" -#~ msgstr "%s : répertoire des données « %s » non supprimé à la demande de l'utilisateur\n" - -#~ msgid "%s: directory \"%s\" exists but is not empty\n" -#~ msgstr "%s : le répertoire « %s » existe mais n'est pas vide\n" - -#~ msgid "%s: failed to remove WAL directory\n" -#~ msgstr "%s : échec de la suppression du répertoire des journaux de transactions\n" - -#~ msgid "%s: failed to remove contents of WAL directory\n" -#~ msgstr "%s : échec de la suppression du contenu du répertoire des journaux de transactions\n" - -#~ msgid "%s: failed to remove contents of data directory\n" -#~ msgstr "%s : échec de la suppression du contenu du répertoire des données\n" - -#~ msgid "%s: failed to remove data directory\n" -#~ msgstr "%s : échec de la suppression du répertoire des données\n" - -#~ msgid "%s: invalid format of xlog location: %s\n" -#~ msgstr "%s : format invalide de l'emplacement du journal de transactions : %s\n" - -#~ msgid "%s: invalid port number \"%s\"\n" -#~ msgstr "%s : numéro de port invalide : « %s »\n" - -#~ msgid "%s: invalid socket: %s" -#~ msgstr "%s : socket invalide : %s" - -#~ msgid "%s: keepalive message has incorrect size %d\n" -#~ msgstr "%s : le message keepalive a une taille %d incorrecte\n" - -#~ msgid "%s: no start point returned from server\n" -#~ msgstr "%s : aucun point de redémarrage renvoyé du serveur\n" - -#~ msgid "%s: out of memory\n" -#~ msgstr "%s : mémoire épuisée\n" - -#~ msgid "%s: removing WAL directory \"%s\"\n" -#~ msgstr "%s : suppression du répertoire des journaux de transactions « %s »\n" - -#~ msgid "%s: removing contents of WAL directory \"%s\"\n" -#~ msgstr "%s : suppression du contenu du répertoire des journaux de transactions « %s »\n" - -#~ msgid "%s: removing contents of data directory \"%s\"\n" -#~ msgstr "%s : suppression du contenu du répertoire des données « %s »\n" - -#~ msgid "%s: removing data directory \"%s\"\n" -#~ msgstr "%s : suppression du répertoire des données « %s »\n" - -#~ msgid "%s: select() failed: %s\n" -#~ msgstr "%s : échec de select() : %s\n" - -#~ msgid "%s: socket not open" -#~ msgstr "%s : socket non ouvert" - -#~ msgid "%s: symlinks are not supported on this platform\n" -#~ msgstr "%s : les liens symboliques ne sont pas supportés sur cette plateforme\n" - -#~ msgid "%s: timeline does not match between base backup and streaming connection\n" -#~ msgstr "" -#~ "%s : la timeline ne correspond pas entre la sauvegarde des fichiers et la\n" -#~ "connexion de réplication\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "--create-slot and --no-slot are incompatible options" -#~ msgstr "--create-slot et --no-slot sont des options incompatibles" - -#~ msgid "--no-manifest and --manifest-checksums are incompatible options" -#~ msgstr "--no-manifest et --manifest-checksums sont des options incompatibles" - -#~ msgid "--no-manifest and --manifest-force-encode are incompatible options" -#~ msgstr "--no-manifest et --manifest-force-encode sont des options incompatibles" - -#~ msgid "--progress and --no-estimate-size are incompatible options" -#~ msgstr "--progress et --no-estimate-size sont des options incompatibles" - -#, c-format -#~ msgid "This build does not support compression with %s." -#~ msgstr "Cette construction ne supporte pas la compression avec %s." - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#, c-format -#~ msgid "cannot use --compress with --compression-method=%s" -#~ msgstr "ne peut pas utiliser --compress avec --compression-method=%s" - -#, c-format -#~ msgid "could not check file \"%s\"" -#~ msgstr "n'a pas pu vérifier le fichier « %s »" - -#~ msgid "could not connect to server: %s" -#~ msgstr "n'a pas pu se connecter au serveur : %s" - -#, c-format -#~ msgid "could not find replication slot \"%s\"" -#~ msgstr "n'a pas pu trouver le slot de réplication « %s »" - -#, c-format -#~ msgid "could not get write-ahead log end position from server: %s" -#~ msgstr "n'a pas pu obtenir la position finale des journaux de transactions à partir du serveur : %s" - -#~ msgid "deflate failed" -#~ msgstr "échec en décompression" - -#~ msgid "deflateEnd failed" -#~ msgstr "échec de deflateEnd" - -#~ msgid "deflateInit2 failed" -#~ msgstr "échec de deflateInit2" - -#~ msgid "deflateParams failed" -#~ msgstr "échec de deflateParams" - -#~ msgid "deflateReset failed" -#~ msgstr "échec de deflateReset" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#, c-format -#~ msgid "invalid compression level \"%s\"" -#~ msgstr "niveau de compression « %s » invalide" - -#, c-format -#~ msgid "invalid fsync interval \"%s\"" -#~ msgstr "intervalle fsync « %s » invalide" - -#, c-format -#~ msgid "invalid port number \"%s\"" -#~ msgstr "numéro de port invalide : « %s »" - -#, c-format -#~ msgid "invalid status interval \"%s\"" -#~ msgstr "intervalle « %s » invalide du statut" - -#, c-format -#~ msgid "invalid tar block header size: %zu" -#~ msgstr "taille invalide de l'en-tête de bloc du fichier tar : %zu" - -#, c-format -#~ msgid "log streamer with pid %d exiting" -#~ msgstr "le processus d'envoi des journaux de PID %d quitte" - -#, c-format -#~ msgid "no value specified for --compress, switching to default" -#~ msgstr "aucune valeur indiquée pour --compression, utilise la valeur par défaut" - -#~ msgid "select() failed: %m" -#~ msgstr "échec de select() : %m" - -#, c-format -#~ msgid "unknown compression option \"%s\"" -#~ msgstr "option de compression « %s » inconnue" - -#, c-format -#~ msgid "unrecognized link indicator \"%c\"" -#~ msgstr "indicateur de lien « %c » non reconnu" diff --git a/src/bin/pg_basebackup/po/ru.po b/src/bin/pg_basebackup/po/ru.po index 7099dc69a63..76aa8f87b30 100644 --- a/src/bin/pg_basebackup/po/ru.po +++ b/src/bin/pg_basebackup/po/ru.po @@ -1,13 +1,13 @@ # Russian message translation file for pg_basebackup # Copyright (C) 2012-2016 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_basebackup (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2023-09-11 15:32+0300\n" -"PO-Revision-Date: 2022-09-29 12:01+0300\n" +"POT-Creation-Date: 2024-11-09 07:47+0300\n" +"PO-Revision-Date: 2024-09-07 11:12+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -92,36 +92,36 @@ msgstr "нехватка памяти\n" msgid "cannot duplicate null pointer (internal error)\n" msgstr "попытка дублирования нулевого указателя (внутренняя ошибка)\n" -#: ../../common/file_utils.c:87 ../../common/file_utils.c:451 +#: ../../common/file_utils.c:86 ../../common/file_utils.c:446 #: pg_receivewal.c:380 pg_recvlogical.c:341 #, c-format msgid "could not stat file \"%s\": %m" msgstr "не удалось получить информацию о файле \"%s\": %m" -#: ../../common/file_utils.c:166 pg_receivewal.c:303 +#: ../../common/file_utils.c:161 pg_receivewal.c:303 #, c-format msgid "could not open directory \"%s\": %m" msgstr "не удалось открыть каталог \"%s\": %m" -#: ../../common/file_utils.c:200 pg_receivewal.c:532 +#: ../../common/file_utils.c:195 pg_receivewal.c:532 #, c-format msgid "could not read directory \"%s\": %m" msgstr "не удалось прочитать каталог \"%s\": %m" -#: ../../common/file_utils.c:232 ../../common/file_utils.c:291 -#: ../../common/file_utils.c:365 ../../fe_utils/recovery_gen.c:121 +#: ../../common/file_utils.c:227 ../../common/file_utils.c:286 +#: ../../common/file_utils.c:360 ../../fe_utils/recovery_gen.c:121 #: pg_receivewal.c:447 #, c-format msgid "could not open file \"%s\": %m" msgstr "не удалось открыть файл \"%s\": %m" -#: ../../common/file_utils.c:303 ../../common/file_utils.c:373 +#: ../../common/file_utils.c:298 ../../common/file_utils.c:368 #: pg_recvlogical.c:196 #, c-format msgid "could not fsync file \"%s\": %m" msgstr "не удалось синхронизировать с ФС файл \"%s\": %m" -#: ../../common/file_utils.c:383 pg_basebackup.c:2267 walmethods.c:459 +#: ../../common/file_utils.c:378 pg_basebackup.c:2267 walmethods.c:459 #, c-format msgid "could not rename file \"%s\" to \"%s\": %m" msgstr "не удалось переименовать файл \"%s\" в \"%s\": %m" @@ -644,7 +644,9 @@ msgstr " -d, --dbname=СТРОКА строка подключения\n" #: pg_basebackup.c:432 pg_receivewal.c:100 pg_recvlogical.c:105 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" -msgstr " -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +msgstr "" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" #: pg_basebackup.c:433 pg_receivewal.c:101 pg_recvlogical.c:106 #, c-format @@ -745,7 +747,7 @@ msgstr "каталог \"%s\" существует, но он не пуст" #: pg_basebackup.c:766 #, c-format msgid "could not access directory \"%s\": %m" -msgstr "ошибка доступа к каталогу \"%s\": %m" +msgstr "ошибка при обращении к каталогу \"%s\": %m" #: pg_basebackup.c:843 #, c-format diff --git a/src/bin/pg_checksums/pg_checksums.c b/src/bin/pg_checksums/pg_checksums.c index 1af65cd2de8..941e4292174 100644 --- a/src/bin/pg_checksums/pg_checksums.c +++ b/src/bin/pg_checksums/pg_checksums.c @@ -388,11 +388,7 @@ scan_directory(const char *basedir, const char *subdir, bool sizeonly) if (!sizeonly) scan_file(fn, segmentno); } -#ifndef WIN32 else if (S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode)) -#else - else if (S_ISDIR(st.st_mode) || pgwin32_is_junction(fn)) -#endif { /* * If going through the entries of pg_tblspc, we assume to operate diff --git a/src/bin/pg_checksums/po/es.po b/src/bin/pg_checksums/po/es.po index 9e31ba57a10..bfeb0431203 100644 --- a/src/bin/pg_checksums/po/es.po +++ b/src/bin/pg_checksums/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_checksums (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:57+0000\n" +"POT-Creation-Date: 2024-11-09 06:26+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: pgsql-es-ayuda \n" @@ -206,7 +206,7 @@ msgstr "checksums activados en archivo «%s»" msgid "could not open directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" -#: pg_checksums.c:346 pg_checksums.c:419 +#: pg_checksums.c:346 pg_checksums.c:415 #, c-format msgid "could not stat file \"%s\": %m" msgstr "no se pudo hacer stat al archivo «%s»: %m" @@ -216,117 +216,117 @@ msgstr "no se pudo hacer stat al archivo «%s»: %m" msgid "invalid segment number %d in file name \"%s\"" msgstr "número de segmento %d no válido en nombre de archivo «%s»" -#: pg_checksums.c:516 pg_checksums.c:532 pg_checksums.c:542 pg_checksums.c:550 +#: pg_checksums.c:512 pg_checksums.c:528 pg_checksums.c:538 pg_checksums.c:546 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Pruebe «%s --help» para mayor información." -#: pg_checksums.c:531 +#: pg_checksums.c:527 #, c-format msgid "no data directory specified" msgstr "no se especificó el directorio de datos" -#: pg_checksums.c:540 +#: pg_checksums.c:536 #, c-format msgid "too many command-line arguments (first is \"%s\")" msgstr "demasiados argumentos en la línea de órdenes (el primero es «%s»)" -#: pg_checksums.c:549 +#: pg_checksums.c:545 #, c-format msgid "option -f/--filenode can only be used with --check" msgstr "la opción -f/--filenode sólo puede usarse con --check" -#: pg_checksums.c:557 +#: pg_checksums.c:553 #, c-format msgid "pg_control CRC value is incorrect" msgstr "el valor de CRC de pg_control es incorrecto" -#: pg_checksums.c:560 +#: pg_checksums.c:556 #, c-format msgid "cluster is not compatible with this version of pg_checksums" msgstr "el clúster no es compatible con esta versión de pg_checksums" -#: pg_checksums.c:564 +#: pg_checksums.c:560 #, c-format msgid "database cluster is not compatible" msgstr "el clúster de bases de datos no es compatible" -#: pg_checksums.c:565 +#: pg_checksums.c:561 #, c-format msgid "The database cluster was initialized with block size %u, but pg_checksums was compiled with block size %u." msgstr "El clúster fue inicializado con tamaño de bloque %u, pero pg_checksums fue compilado con tamaño de bloques %u." -#: pg_checksums.c:577 +#: pg_checksums.c:573 #, c-format msgid "cluster must be shut down" msgstr "el clúster debe estar apagado" -#: pg_checksums.c:581 +#: pg_checksums.c:577 #, c-format msgid "data checksums are not enabled in cluster" msgstr "los checksums de datos no están activados en el clúster" -#: pg_checksums.c:585 +#: pg_checksums.c:581 #, c-format msgid "data checksums are already disabled in cluster" msgstr "los checksums de datos ya están desactivados en el clúster" -#: pg_checksums.c:589 +#: pg_checksums.c:585 #, c-format msgid "data checksums are already enabled in cluster" msgstr "los checksums de datos ya están activados en el clúster" -#: pg_checksums.c:613 +#: pg_checksums.c:609 #, c-format msgid "Checksum operation completed\n" msgstr "Operación de checksums completa\n" -#: pg_checksums.c:614 +#: pg_checksums.c:610 #, c-format msgid "Files scanned: %lld\n" msgstr "Archivos recorridos: %lld\n" -#: pg_checksums.c:615 +#: pg_checksums.c:611 #, c-format msgid "Blocks scanned: %lld\n" msgstr "Bloques recorridos: %lld\n" -#: pg_checksums.c:618 +#: pg_checksums.c:614 #, c-format msgid "Bad checksums: %lld\n" msgstr "Checksums incorrectos: %lld\n" -#: pg_checksums.c:619 pg_checksums.c:651 +#: pg_checksums.c:615 pg_checksums.c:647 #, c-format msgid "Data checksum version: %u\n" msgstr "Versión de checksums de datos: %u\n" -#: pg_checksums.c:626 +#: pg_checksums.c:622 #, c-format msgid "Files written: %lld\n" msgstr "Archivos escritos: %lld\n" -#: pg_checksums.c:627 +#: pg_checksums.c:623 #, c-format msgid "Blocks written: %lld\n" msgstr "Bloques escritos: %lld\n" -#: pg_checksums.c:643 +#: pg_checksums.c:639 #, c-format msgid "syncing data directory" msgstr "sincronizando directorio de datos" -#: pg_checksums.c:647 +#: pg_checksums.c:643 #, c-format msgid "updating control file" msgstr "actualizando archivo de control" -#: pg_checksums.c:653 +#: pg_checksums.c:649 #, c-format msgid "Checksums enabled in cluster\n" msgstr "Checksums activos en el clúster\n" -#: pg_checksums.c:655 +#: pg_checksums.c:651 #, c-format msgid "Checksums disabled in cluster\n" msgstr "Checksums inactivos en el clúster\n" diff --git a/src/bin/pg_checksums/po/fr.po b/src/bin/pg_checksums/po/fr.po index dcdb4c74f15..294cebe55d3 100644 --- a/src/bin/pg_checksums/po/fr.po +++ b/src/bin/pg_checksums/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-05-14 10:21+0000\n" -"PO-Revision-Date: 2022-05-14 17:15+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:277 #, c-format @@ -336,39 +336,3 @@ msgstr "Sommes de contrôle sur les données activées sur cette instance\n" #, c-format msgid "Checksums disabled in cluster\n" msgstr "Sommes de contrôle sur les données désactivées sur cette instance\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide puis quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version puis quitte\n" - -#~ msgid "%s: could not open directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "%s: could not open file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "%s: could not stat file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu récupérer les informations sur le fichier « %s » : %s\n" - -#~ msgid "%s: no data directory specified\n" -#~ msgstr "%s : aucun répertoire de données indiqué\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#, c-format -#~ msgid "invalid filenode specification, must be numeric: %s" -#~ msgstr "spécification invalide du relfilnode, doit être numérique : %s" diff --git a/src/bin/pg_checksums/po/ru.po b/src/bin/pg_checksums/po/ru.po index 04ee37432a4..a8801fd6b19 100644 --- a/src/bin/pg_checksums/po/ru.po +++ b/src/bin/pg_checksums/po/ru.po @@ -1,9 +1,9 @@ -# Alexander Lakhin , 2019, 2020, 2021, 2022. +# Alexander Lakhin , 2019, 2020, 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: pg_verify_checksums (PostgreSQL) 11\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-05-04 10:36+0300\n" +"POT-Creation-Date: 2024-11-09 07:47+0300\n" "PO-Revision-Date: 2022-09-05 13:34+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" @@ -213,7 +213,7 @@ msgstr "контрольные суммы в файле \"%s\" включены" msgid "could not open directory \"%s\": %m" msgstr "не удалось открыть каталог \"%s\": %m" -#: pg_checksums.c:346 pg_checksums.c:419 +#: pg_checksums.c:346 pg_checksums.c:415 #, c-format msgid "could not stat file \"%s\": %m" msgstr "не удалось получить информацию о файле \"%s\": %m" @@ -223,42 +223,42 @@ msgstr "не удалось получить информацию о файле msgid "invalid segment number %d in file name \"%s\"" msgstr "неверный номер сегмента %d в имени файла \"%s\"" -#: pg_checksums.c:516 pg_checksums.c:532 pg_checksums.c:542 pg_checksums.c:550 +#: pg_checksums.c:512 pg_checksums.c:528 pg_checksums.c:538 pg_checksums.c:546 #, c-format msgid "Try \"%s --help\" for more information." msgstr "Для дополнительной информации попробуйте \"%s --help\"." -#: pg_checksums.c:531 +#: pg_checksums.c:527 #, c-format msgid "no data directory specified" msgstr "каталог данных не указан" -#: pg_checksums.c:540 +#: pg_checksums.c:536 #, c-format msgid "too many command-line arguments (first is \"%s\")" msgstr "слишком много аргументов командной строки (первый: \"%s\")" -#: pg_checksums.c:549 +#: pg_checksums.c:545 #, c-format msgid "option -f/--filenode can only be used with --check" msgstr "параметр -f/--filenode можно использовать только с --check" -#: pg_checksums.c:557 +#: pg_checksums.c:553 #, c-format msgid "pg_control CRC value is incorrect" msgstr "ошибка контрольного значения в pg_control" -#: pg_checksums.c:560 +#: pg_checksums.c:556 #, c-format msgid "cluster is not compatible with this version of pg_checksums" msgstr "кластер несовместим с этой версией pg_checksums" -#: pg_checksums.c:564 +#: pg_checksums.c:560 #, c-format msgid "database cluster is not compatible" msgstr "несовместимый кластер баз данных" -#: pg_checksums.c:565 +#: pg_checksums.c:561 #, c-format msgid "" "The database cluster was initialized with block size %u, but pg_checksums " @@ -267,77 +267,77 @@ msgstr "" "Кластер баз данных был инициализирован с размером блока %u, а утилита " "pg_checksums скомпилирована для размера блока %u." -#: pg_checksums.c:577 +#: pg_checksums.c:573 #, c-format msgid "cluster must be shut down" msgstr "кластер должен быть отключён" -#: pg_checksums.c:581 +#: pg_checksums.c:577 #, c-format msgid "data checksums are not enabled in cluster" msgstr "контрольные суммы в кластере не включены" -#: pg_checksums.c:585 +#: pg_checksums.c:581 #, c-format msgid "data checksums are already disabled in cluster" msgstr "контрольные суммы в кластере уже отключены" -#: pg_checksums.c:589 +#: pg_checksums.c:585 #, c-format msgid "data checksums are already enabled in cluster" msgstr "контрольные суммы в кластере уже включены" -#: pg_checksums.c:613 +#: pg_checksums.c:609 #, c-format msgid "Checksum operation completed\n" msgstr "Обработка контрольных сумм завершена\n" -#: pg_checksums.c:614 +#: pg_checksums.c:610 #, c-format msgid "Files scanned: %lld\n" msgstr "Просканировано файлов: %lld\n" -#: pg_checksums.c:615 +#: pg_checksums.c:611 #, c-format msgid "Blocks scanned: %lld\n" msgstr "Просканировано блоков: %lld\n" -#: pg_checksums.c:618 +#: pg_checksums.c:614 #, c-format msgid "Bad checksums: %lld\n" msgstr "Неверные контрольные суммы: %lld\n" -#: pg_checksums.c:619 pg_checksums.c:651 +#: pg_checksums.c:615 pg_checksums.c:647 #, c-format msgid "Data checksum version: %u\n" msgstr "Версия контрольных сумм данных: %u\n" -#: pg_checksums.c:626 +#: pg_checksums.c:622 #, c-format msgid "Files written: %lld\n" msgstr "Записано файлов: %lld\n" -#: pg_checksums.c:627 +#: pg_checksums.c:623 #, c-format msgid "Blocks written: %lld\n" msgstr "Записано блоков: %lld\n" -#: pg_checksums.c:643 +#: pg_checksums.c:639 #, c-format msgid "syncing data directory" msgstr "синхронизация каталога данных" -#: pg_checksums.c:647 +#: pg_checksums.c:643 #, c-format msgid "updating control file" msgstr "модификация управляющего файла" -#: pg_checksums.c:653 +#: pg_checksums.c:649 #, c-format msgid "Checksums enabled in cluster\n" msgstr "Контрольные суммы в кластере включены\n" -#: pg_checksums.c:655 +#: pg_checksums.c:651 #, c-format msgid "Checksums disabled in cluster\n" msgstr "Контрольные суммы в кластере отключены\n" diff --git a/src/bin/pg_config/po/es.po b/src/bin/pg_config/po/es.po index a84601c361d..6a349313f40 100644 --- a/src/bin/pg_config/po/es.po +++ b/src/bin/pg_config/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_config (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:52+0000\n" +"POT-Creation-Date: 2024-11-09 06:22+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_config/po/fr.po b/src/bin/pg_config/po/fr.po index 0fb56a72ab1..edd8a70ad67 100644 --- a/src/bin/pg_config/po/fr.po +++ b/src/bin/pg_config/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../common/config_info.c:134 ../../common/config_info.c:142 #: ../../common/config_info.c:150 ../../common/config_info.c:158 @@ -290,36 +290,3 @@ msgstr "%s : n'a pas pu trouver l'exécutable du programme\n" #, c-format msgid "%s: invalid argument: %s\n" msgstr "%s : argument invalide : %s\n" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide puis quitte\n" - -#~ msgid "child process exited with unrecognized status %d" -#~ msgstr "le processus fils a quitté avec un statut %d non reconnu" - -#~ msgid "child process was terminated by signal %d" -#~ msgstr "le processus fils a été terminé par le signal %d" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "child process was terminated by exception 0x%X" -#~ msgstr "le processus fils a été terminé par l'exception 0x%X" - -#~ msgid "child process exited with exit code %d" -#~ msgstr "le processus fils a quitté avec le code de sortie %d" - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu changer le répertoire par « %s » : %s" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" diff --git a/src/bin/pg_config/po/ru.po b/src/bin/pg_config/po/ru.po index 4aa7a59d443..44c2c9966bd 100644 --- a/src/bin/pg_config/po/ru.po +++ b/src/bin/pg_config/po/ru.po @@ -5,7 +5,7 @@ # Serguei A. Mokhov , 2004-2005. # Sergey Burladyan , 2009, 2012. # Andrey Sudnik , 2010. -# Alexander Lakhin , 2012-2016, 2017, 2019, 2020, 2021, 2023. +# Alexander Lakhin , 2012-2016, 2017, 2019, 2020, 2021, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_config (PostgreSQL current)\n" diff --git a/src/bin/pg_controldata/po/es.po b/src/bin/pg_controldata/po/es.po index cf1dc18939b..081c1c016fd 100644 --- a/src/bin/pg_controldata/po/es.po +++ b/src/bin/pg_controldata/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_controldata (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:56+0000\n" +"POT-Creation-Date: 2024-11-09 06:26+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_controldata/po/fr.po b/src/bin/pg_controldata/po/fr.po index c9c0f013988..f9112c66f66 100644 --- a/src/bin/pg_controldata/po/fr.po +++ b/src/bin/pg_controldata/po/fr.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -22,7 +22,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../common/controldata_utils.c:73 #, c-format @@ -405,7 +405,7 @@ msgstr "oui" #: pg_controldata.c:287 #, c-format msgid "wal_level setting: %s\n" -msgstr "Paramètrage actuel de wal_level : %s\n" +msgstr "Paramétrage actuel de wal_level : %s\n" #: pg_controldata.c:289 #, c-format @@ -415,7 +415,7 @@ msgstr "Paramétrage actuel de wal_log_hints : %s\n" #: pg_controldata.c:291 #, c-format msgid "max_connections setting: %d\n" -msgstr "Paramètrage actuel de max_connections : %d\n" +msgstr "Paramétrage actuel de max_connections : %d\n" #: pg_controldata.c:293 #, c-format @@ -518,52 +518,3 @@ msgstr "Version des sommes de contrôle des pages de données : %u\n" #, c-format msgid "Mock authentication nonce: %s\n" msgstr "Nonce pour simuler une identité: %s\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide et quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version et quitte\n" - -#~ msgid "%s: could not open file \"%s\" for reading: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » en lecture : %s\n" - -#~ msgid "%s: could not read file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le fichier « %s » : %s\n" - -#~ msgid "%s: could not read file \"%s\": read %d of %d\n" -#~ msgstr "%s : n'a pas pu lire le fichier « %s » : a lu %d sur %d\n" - -#~ msgid "Float4 argument passing: %s\n" -#~ msgstr "Passage d'argument float4 : %s\n" - -#~ msgid "Prior checkpoint location: %X/%X\n" -#~ msgstr "Point de contrôle précédent : %X/%X\n" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#~ msgid "" -#~ "Usage:\n" -#~ " %s [OPTION] [DATADIR]\n" -#~ "\n" -#~ "Options:\n" -#~ " --help show this help, then exit\n" -#~ " --version output version information, then exit\n" -#~ msgstr "" -#~ "Usage :\n" -#~ " %s [OPTION] [RÉP_DONNÉES]\n" -#~ "\n" -#~ "Options :\n" -#~ " --help affiche cette aide et quitte\n" -#~ " --version affiche les informations de version et quitte\n" - -#~ msgid "calculated CRC checksum does not match value stored in file" -#~ msgstr "la somme de contrôle CRC calculée ne correspond par à la valeur enregistrée dans le fichier" - -#~ msgid "floating-point numbers" -#~ msgstr "nombres à virgule flottante" diff --git a/src/bin/pg_controldata/po/ru.po b/src/bin/pg_controldata/po/ru.po index f33621cd75c..333a13f8a5b 100644 --- a/src/bin/pg_controldata/po/ru.po +++ b/src/bin/pg_controldata/po/ru.po @@ -4,7 +4,7 @@ # Serguei A. Mokhov , 2002-2004. # Oleg Bartunov , 2004. # Andrey Sudnik , 2011. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: pg_controldata (PostgreSQL current)\n" diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index f58320b8060..2818af51958 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -624,7 +624,7 @@ wait_for_postmaster_start(pgpid_t pm_pid, bool do_checkpoint) * Allow 2 seconds slop for possible cross-process clock skew. */ pmpid = atol(optlines[LOCK_FILE_LINE_PID - 1]); - pmstart = atol(optlines[LOCK_FILE_LINE_START_TIME - 1]); + pmstart = atoll(optlines[LOCK_FILE_LINE_START_TIME - 1]); if (pmstart >= start_time - 2 && #ifndef WIN32 pmpid == pm_pid diff --git a/src/bin/pg_ctl/po/es.po b/src/bin/pg_ctl/po/es.po index fbb787d7310..1f4fbc82f52 100644 --- a/src/bin/pg_ctl/po/es.po +++ b/src/bin/pg_ctl/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_ctl (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:53+0000\n" +"POT-Creation-Date: 2024-11-09 06:22+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_ctl/po/fr.po b/src/bin/pg_ctl/po/fr.po index a7e8f11d416..e250ad4c31c 100644 --- a/src/bin/pg_ctl/po/fr.po +++ b/src/bin/pg_ctl/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../common/exec.c:144 ../../common/exec.c:261 ../../common/exec.c:307 #, c-format @@ -895,127 +895,3 @@ msgid "%s: no database directory specified and environment variable PGDATA unset msgstr "" "%s : aucun répertoire de bases de données indiqué et variable\n" "d'environnement PGDATA non initialisée\n" - -#~ msgid "" -#~ "\n" -#~ "%s: -w option cannot use a relative socket directory specification\n" -#~ msgstr "" -#~ "\n" -#~ "%s : l'option -w ne peut pas utiliser un chemin relatif vers le répertoire de\n" -#~ "la socket\n" - -#~ msgid "" -#~ "\n" -#~ "%s: -w option is not supported when starting a pre-9.1 server\n" -#~ msgstr "" -#~ "\n" -#~ "%s : l'option -w n'est pas supportée lors du démarrage d'un serveur pré-9.1\n" - -#~ msgid "" -#~ "\n" -#~ "%s: this data directory appears to be running a pre-existing postmaster\n" -#~ msgstr "" -#~ "\n" -#~ "%s : ce répertoire des données semble être utilisé par un postmaster déjà existant\n" - -#~ msgid "" -#~ "\n" -#~ "Options for stop, restart, or promote:\n" -#~ msgstr "" -#~ "\n" -#~ "Options pour l'arrêt, le redémarrage ou la promotion :\n" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid " %s start [-w] [-t SECS] [-D DATADIR] [-s] [-l FILENAME] [-o \"OPTIONS\"]\n" -#~ msgstr "" -#~ " %s start [-w] [-t SECS] [-D RÉP_DONNÉES] [-s] [-l NOM_FICHIER]\n" -#~ " [-o \"OPTIONS\"]\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid "" -#~ "%s is a utility to start, stop, restart, reload configuration files,\n" -#~ "report the status of a PostgreSQL server, or signal a PostgreSQL process.\n" -#~ "\n" -#~ msgstr "" -#~ "%s est un outil qui permet de démarrer, arrêter, redémarrer, recharger les\n" -#~ "les fichiers de configuration, rapporter le statut d'un serveur PostgreSQL\n" -#~ "ou d'envoyer un signal à un processus PostgreSQL\n" -#~ "\n" - -#~ msgid "%s: could not create log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu créer le fichier de traces « %s » : %s\n" - -#~ msgid "%s: could not open process token: %lu\n" -#~ msgstr "%s : n'a pas pu ouvrir le jeton du processus : %lu\n" - -#~ msgid "%s: could not start server: exit code was %d\n" -#~ msgstr "%s : n'a pas pu démarrer le serveur : le code de sortie est %d\n" - -#~ msgid "%s: could not wait for server because of misconfiguration\n" -#~ msgstr "%s : n'a pas pu attendre le serveur à cause d'une mauvaise configuration\n" - -#~ msgid "" -#~ "(The default is to wait for shutdown, but not for start or restart.)\n" -#~ "\n" -#~ msgstr "" -#~ "(Le comportement par défaut attend l'arrêt, pas le démarrage ou le\n" -#~ "redémarrage.)\n" -#~ "\n" - -#, c-format -#~ msgid "" -#~ "The program \"%s\" is needed by %s but was not found in the\n" -#~ "same directory as \"%s\".\n" -#~ "Check your installation.\n" -#~ msgstr "" -#~ "Le programme « %s » est nécessaire pour %s, mais n'a pas été trouvé\n" -#~ "dans le même répertoire que « %s ».\n" -#~ "Vérifiez votre installation.\n" - -#, c-format -#~ msgid "" -#~ "The program \"%s\" was found by \"%s\"\n" -#~ "but was not the same version as %s.\n" -#~ "Check your installation.\n" -#~ msgstr "" -#~ "Le programme « %s » a été trouvé par « %s »\n" -#~ "mais n'est pas de la même version que %s.\n" -#~ "Vérifiez votre installation.\n" - -#~ msgid "" -#~ "WARNING: online backup mode is active\n" -#~ "Shutdown will not complete until pg_stop_backup() is called.\n" -#~ "\n" -#~ msgstr "" -#~ "ATTENTION : le mode de sauvegarde en ligne est activé.\n" -#~ "L'arrêt ne surviendra qu'au moment où pg_stop_backup() sera appelé.\n" -#~ "\n" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu modifier le répertoire par « %s » : %s" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" - -#~ msgid "server is still starting up\n" -#~ msgstr "le serveur est toujours en cours de démarrage\n" diff --git a/src/bin/pg_ctl/po/ru.po b/src/bin/pg_ctl/po/ru.po index b8e1edc8eee..088b856fb84 100644 --- a/src/bin/pg_ctl/po/ru.po +++ b/src/bin/pg_ctl/po/ru.po @@ -6,13 +6,13 @@ # Sergey Burladyan , 2009, 2012. # Andrey Sudnik , 2010. # Dmitriy Olshevskiy , 2014. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_ctl (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-08-27 14:52+0300\n" -"PO-Revision-Date: 2022-09-05 13:35+0300\n" +"PO-Revision-Date: 2024-09-07 06:47+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -101,7 +101,7 @@ msgstr "дочерний процесс завершён по сигналу %d: #: ../../common/wait_error.c:72 #, c-format msgid "child process exited with unrecognized status %d" -msgstr "дочерний процесс завершился с нераспознанным состоянием %d" +msgstr "дочерний процесс завершился с нераспознанным кодом состояния %d" #: ../../port/path.c:775 #, c-format @@ -116,7 +116,7 @@ msgstr "%s: каталог \"%s\" не существует\n" #: pg_ctl.c:263 #, c-format msgid "%s: could not access directory \"%s\": %s\n" -msgstr "%s: ошибка доступа к каталогу \"%s\": %s\n" +msgstr "%s: ошибка при обращении к каталогу \"%s\": %s\n" #: pg_ctl.c:276 #, c-format diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index fc6ae615338..ac404e54a3b 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -17104,6 +17104,15 @@ dumpSequence(Archive *fout, const TableInfo *tbinfo) appendPQExpBufferStr(query, "BY DEFAULT"); appendPQExpBuffer(query, " AS IDENTITY (\n SEQUENCE NAME %s\n", fmtQualifiedDumpable(tbinfo)); + + /* + * Emit persistence option only if it's different from the owning + * table's. This avoids using this new syntax unnecessarily. + */ + if (tbinfo->relpersistence != owning_tab->relpersistence) + appendPQExpBuffer(query, " %s\n", + tbinfo->relpersistence == RELPERSISTENCE_UNLOGGED ? + "UNLOGGED" : "LOGGED"); } else { @@ -17136,15 +17145,7 @@ dumpSequence(Archive *fout, const TableInfo *tbinfo) cache, (cycled ? "\n CYCLE" : "")); if (tbinfo->is_identity_sequence) - { appendPQExpBufferStr(query, "\n);\n"); - if (tbinfo->relpersistence != owning_tab->relpersistence) - appendPQExpBuffer(query, - "ALTER SEQUENCE %s SET %s;\n", - fmtQualifiedDumpable(tbinfo), - tbinfo->relpersistence == RELPERSISTENCE_UNLOGGED ? - "UNLOGGED" : "LOGGED"); - } else appendPQExpBufferStr(query, ";\n"); diff --git a/src/bin/pg_dump/po/es.po b/src/bin/pg_dump/po/es.po index 9b0ea912f62..c9e8c9f1dfb 100644 --- a/src/bin/pg_dump/po/es.po +++ b/src/bin/pg_dump/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_dump (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:55+0000\n" +"POT-Creation-Date: 2024-11-09 06:24+0000\n" "PO-Revision-Date: 2023-05-08 11:16+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -610,7 +610,7 @@ msgstr "reestableciendo objeto grande con OID %u" msgid "could not create large object %u: %s" msgstr "no se pudo crear el objeto grande %u: %s" -#: pg_backup_archiver.c:1378 pg_dump.c:3629 +#: pg_backup_archiver.c:1378 pg_dump.c:3654 #, c-format msgid "could not open large object %u: %s" msgstr "no se pudo abrir el objeto grande %u: %s" @@ -1074,7 +1074,7 @@ msgstr "PQputCopyEnd regresó un error: %s" msgid "COPY failed for table \"%s\": %s" msgstr "COPY falló para la tabla «%s»: %s" -#: pg_backup_db.c:522 pg_dump.c:2128 +#: pg_backup_db.c:522 pg_dump.c:2140 #, c-format msgid "unexpected extra results during COPY of table \"%s\"" msgstr "resultados extra inesperados durante el COPY de la tabla «%s»" @@ -1251,7 +1251,7 @@ msgstr "se encontró un encabezado corrupto en %s (esperado %d, calculado %d) en msgid "unrecognized section name: \"%s\"" msgstr "nombre de sección «%s» no reconocido" -#: pg_backup_utils.c:55 pg_dump.c:628 pg_dump.c:645 pg_dumpall.c:340 +#: pg_backup_utils.c:55 pg_dump.c:629 pg_dump.c:646 pg_dumpall.c:340 #: pg_dumpall.c:350 pg_dumpall.c:358 pg_dumpall.c:366 pg_dumpall.c:373 #: pg_dumpall.c:383 pg_dumpall.c:458 pg_restore.c:291 pg_restore.c:307 #: pg_restore.c:321 @@ -1264,72 +1264,72 @@ msgstr "Pruebe «%s --help» para mayor información." msgid "out of on_exit_nicely slots" msgstr "elementos on_exit_nicely agotados" -#: pg_dump.c:643 pg_dumpall.c:348 pg_restore.c:305 +#: pg_dump.c:644 pg_dumpall.c:348 pg_restore.c:305 #, c-format msgid "too many command-line arguments (first is \"%s\")" msgstr "demasiados argumentos en la línea de órdenes (el primero es «%s»)" -#: pg_dump.c:662 pg_restore.c:328 +#: pg_dump.c:663 pg_restore.c:328 #, c-format msgid "options -s/--schema-only and -a/--data-only cannot be used together" msgstr "las opciones -s/--schema-only y -a/--data-only no pueden usarse juntas" -#: pg_dump.c:665 +#: pg_dump.c:666 #, c-format msgid "options -s/--schema-only and --include-foreign-data cannot be used together" msgstr "las opciones -s/--schema-only y --include-foreign-data no pueden usarse juntas" -#: pg_dump.c:668 +#: pg_dump.c:669 #, c-format msgid "option --include-foreign-data is not supported with parallel backup" msgstr "la opción --include-foreign-data no está soportado con respaldo en paralelo" -#: pg_dump.c:671 pg_restore.c:331 +#: pg_dump.c:672 pg_restore.c:331 #, c-format msgid "options -c/--clean and -a/--data-only cannot be used together" msgstr "las opciones -c/--clean y -a/--data-only no pueden usarse juntas" -#: pg_dump.c:674 pg_dumpall.c:378 pg_restore.c:356 +#: pg_dump.c:675 pg_dumpall.c:378 pg_restore.c:356 #, c-format msgid "option --if-exists requires option -c/--clean" msgstr "la opción --if-exists requiere la opción -c/--clean" -#: pg_dump.c:681 +#: pg_dump.c:682 #, c-format msgid "option --on-conflict-do-nothing requires option --inserts, --rows-per-insert, or --column-inserts" msgstr "la opción --on-conflict-do-nothing requiere la opción --inserts, --rows-per-insert o --column-inserts" -#: pg_dump.c:703 +#: pg_dump.c:704 #, c-format msgid "requested compression not available in this installation -- archive will be uncompressed" msgstr "la compresión solicitada no está soportada en esta instalación -- el archivador será sin compresión" -#: pg_dump.c:716 +#: pg_dump.c:717 #, c-format msgid "parallel backup only supported by the directory format" msgstr "el volcado en paralelo sólo está soportado por el formato «directory»" -#: pg_dump.c:762 +#: pg_dump.c:763 #, c-format msgid "last built-in OID is %u" msgstr "el último OID interno es %u" -#: pg_dump.c:771 +#: pg_dump.c:772 #, c-format msgid "no matching schemas were found" msgstr "no se encontraron esquemas coincidentes" -#: pg_dump.c:785 +#: pg_dump.c:786 #, c-format msgid "no matching tables were found" msgstr "no se encontraron tablas coincidentes" -#: pg_dump.c:807 +#: pg_dump.c:808 #, c-format msgid "no matching extensions were found" msgstr "no se encontraron extensiones coincidentes" -#: pg_dump.c:990 +#: pg_dump.c:991 #, c-format msgid "" "%s dumps a database as a text file or to other formats.\n" @@ -1338,17 +1338,17 @@ msgstr "" "%s extrae una base de datos en formato de texto o en otros formatos.\n" "\n" -#: pg_dump.c:991 pg_dumpall.c:605 pg_restore.c:433 +#: pg_dump.c:992 pg_dumpall.c:605 pg_restore.c:433 #, c-format msgid "Usage:\n" msgstr "Empleo:\n" -#: pg_dump.c:992 +#: pg_dump.c:993 #, c-format msgid " %s [OPTION]... [DBNAME]\n" msgstr " %s [OPCIÓN]... [NOMBREDB]\n" -#: pg_dump.c:994 pg_dumpall.c:608 pg_restore.c:436 +#: pg_dump.c:995 pg_dumpall.c:608 pg_restore.c:436 #, c-format msgid "" "\n" @@ -1357,12 +1357,12 @@ msgstr "" "\n" "Opciones generales:\n" -#: pg_dump.c:995 +#: pg_dump.c:996 #, c-format msgid " -f, --file=FILENAME output file or directory name\n" msgstr " -f, --file=ARCHIVO nombre del archivo o directorio de salida\n" -#: pg_dump.c:996 +#: pg_dump.c:997 #, c-format msgid "" " -F, --format=c|d|t|p output file format (custom, directory, tar,\n" @@ -1371,42 +1371,42 @@ msgstr "" " -F, --format=c|d|t|p Formato del archivo de salida (c=personalizado, \n" " d=directorio, t=tar, p=texto (por omisión))\n" -#: pg_dump.c:998 +#: pg_dump.c:999 #, c-format msgid " -j, --jobs=NUM use this many parallel jobs to dump\n" msgstr " -j, --jobs=NUM máximo de procesos paralelos para volcar\n" -#: pg_dump.c:999 pg_dumpall.c:610 +#: pg_dump.c:1000 pg_dumpall.c:610 #, c-format msgid " -v, --verbose verbose mode\n" msgstr " -v, --verbose modo verboso\n" -#: pg_dump.c:1000 pg_dumpall.c:611 +#: pg_dump.c:1001 pg_dumpall.c:611 #, c-format msgid " -V, --version output version information, then exit\n" msgstr " -V, --version mostrar información de version y salir\n" -#: pg_dump.c:1001 +#: pg_dump.c:1002 #, c-format msgid " -Z, --compress=0-9 compression level for compressed formats\n" msgstr " -Z, --compress=0-9 nivel de compresión para formatos comprimidos\n" -#: pg_dump.c:1002 pg_dumpall.c:612 +#: pg_dump.c:1003 pg_dumpall.c:612 #, c-format msgid " --lock-wait-timeout=TIMEOUT fail after waiting TIMEOUT for a table lock\n" msgstr " --lock-wait-timeout=SEGS espera a lo más SEGS segundos obtener un lock\n" -#: pg_dump.c:1003 pg_dumpall.c:639 +#: pg_dump.c:1004 pg_dumpall.c:639 #, c-format msgid " --no-sync do not wait for changes to be written safely to disk\n" msgstr " --no-sync no esperar que los cambios se sincronicen a disco\n" -#: pg_dump.c:1004 pg_dumpall.c:613 +#: pg_dump.c:1005 pg_dumpall.c:613 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help mostrar esta ayuda y salir\n" -#: pg_dump.c:1006 pg_dumpall.c:614 +#: pg_dump.c:1007 pg_dumpall.c:614 #, c-format msgid "" "\n" @@ -1415,54 +1415,54 @@ msgstr "" "\n" "Opciones que controlan el contenido de la salida:\n" -#: pg_dump.c:1007 pg_dumpall.c:615 +#: pg_dump.c:1008 pg_dumpall.c:615 #, c-format msgid " -a, --data-only dump only the data, not the schema\n" msgstr " -a, --data-only extrae sólo los datos, no el esquema\n" -#: pg_dump.c:1008 +#: pg_dump.c:1009 #, c-format msgid " -b, --blobs include large objects in dump\n" msgstr " -b, --blobs incluye objetos grandes en la extracción\n" -#: pg_dump.c:1009 +#: pg_dump.c:1010 #, c-format msgid " -B, --no-blobs exclude large objects in dump\n" msgstr " -B, --no-blobs excluye objetos grandes en la extracción\n" -#: pg_dump.c:1010 pg_restore.c:447 +#: pg_dump.c:1011 pg_restore.c:447 #, c-format msgid " -c, --clean clean (drop) database objects before recreating\n" msgstr " -c, --clean tira (drop) la base de datos antes de crearla\n" -#: pg_dump.c:1011 +#: pg_dump.c:1012 #, c-format msgid " -C, --create include commands to create database in dump\n" msgstr "" " -C, --create incluye órdenes para crear la base de datos\n" " en la extracción\n" -#: pg_dump.c:1012 +#: pg_dump.c:1013 #, c-format msgid " -e, --extension=PATTERN dump the specified extension(s) only\n" msgstr " -e, --extension=PATRÓN extrae sólo la o las extensiones nombradas\n" -#: pg_dump.c:1013 pg_dumpall.c:617 +#: pg_dump.c:1014 pg_dumpall.c:617 #, c-format msgid " -E, --encoding=ENCODING dump the data in encoding ENCODING\n" msgstr " -E, --encoding=CODIF extrae los datos con la codificación CODIF\n" -#: pg_dump.c:1014 +#: pg_dump.c:1015 #, c-format msgid " -n, --schema=PATTERN dump the specified schema(s) only\n" msgstr " -n, --schema=PATRÓN extrae sólo el o los esquemas nombrados\n" -#: pg_dump.c:1015 +#: pg_dump.c:1016 #, c-format msgid " -N, --exclude-schema=PATTERN do NOT dump the specified schema(s)\n" msgstr " -N, --exclude-schema=PATRÓN NO extrae el o los esquemas nombrados\n" -#: pg_dump.c:1016 +#: pg_dump.c:1017 #, c-format msgid "" " -O, --no-owner skip restoration of object ownership in\n" @@ -1471,58 +1471,58 @@ msgstr "" " -O, --no-owner en formato de sólo texto, no reestablece\n" " los dueños de los objetos\n" -#: pg_dump.c:1018 pg_dumpall.c:621 +#: pg_dump.c:1019 pg_dumpall.c:621 #, c-format msgid " -s, --schema-only dump only the schema, no data\n" msgstr " -s, --schema-only extrae sólo el esquema, no los datos\n" -#: pg_dump.c:1019 +#: pg_dump.c:1020 #, c-format msgid " -S, --superuser=NAME superuser user name to use in plain-text format\n" msgstr " -S, --superuser=NAME superusuario a utilizar en el volcado de texto\n" -#: pg_dump.c:1020 +#: pg_dump.c:1021 #, c-format msgid " -t, --table=PATTERN dump the specified table(s) only\n" msgstr " -t, --table=PATRÓN extrae sólo la o las tablas nombradas\n" -#: pg_dump.c:1021 +#: pg_dump.c:1022 #, c-format msgid " -T, --exclude-table=PATTERN do NOT dump the specified table(s)\n" msgstr " -T, --exclude-table=PATRÓN NO extrae la o las tablas nombradas\n" -#: pg_dump.c:1022 pg_dumpall.c:624 +#: pg_dump.c:1023 pg_dumpall.c:624 #, c-format msgid " -x, --no-privileges do not dump privileges (grant/revoke)\n" msgstr " -x, --no-privileges no extrae los privilegios (grant/revoke)\n" -#: pg_dump.c:1023 pg_dumpall.c:625 +#: pg_dump.c:1024 pg_dumpall.c:625 #, c-format msgid " --binary-upgrade for use by upgrade utilities only\n" msgstr " --binary-upgrade sólo para uso de utilidades de upgrade\n" -#: pg_dump.c:1024 pg_dumpall.c:626 +#: pg_dump.c:1025 pg_dumpall.c:626 #, c-format msgid " --column-inserts dump data as INSERT commands with column names\n" msgstr "" " --column-inserts extrae los datos usando INSERT con nombres\n" " de columnas\n" -#: pg_dump.c:1025 pg_dumpall.c:627 +#: pg_dump.c:1026 pg_dumpall.c:627 #, c-format msgid " --disable-dollar-quoting disable dollar quoting, use SQL standard quoting\n" msgstr "" " --disable-dollar-quoting deshabilita el uso de «delimitadores de dólar»,\n" " usa delimitadores de cadena estándares\n" -#: pg_dump.c:1026 pg_dumpall.c:628 pg_restore.c:464 +#: pg_dump.c:1027 pg_dumpall.c:628 pg_restore.c:464 #, c-format msgid " --disable-triggers disable triggers during data-only restore\n" msgstr "" " --disable-triggers deshabilita los disparadores (triggers) durante el\n" " restablecimiento de la extracción de sólo-datos\n" -#: pg_dump.c:1027 +#: pg_dump.c:1028 #, c-format msgid "" " --enable-row-security enable row security (dump only content user has\n" @@ -1531,22 +1531,22 @@ msgstr "" " --enable-row-security activa seguridad de filas (volcar sólo el\n" " contenido al que el usuario tiene acceso)\n" -#: pg_dump.c:1029 +#: pg_dump.c:1030 #, c-format msgid " --exclude-table-data=PATTERN do NOT dump data for the specified table(s)\n" msgstr " --exclude-table-data=PATRÓN NO extrae los datos de la(s) tablas nombradas\n" -#: pg_dump.c:1030 pg_dumpall.c:630 +#: pg_dump.c:1031 pg_dumpall.c:630 #, c-format msgid " --extra-float-digits=NUM override default setting for extra_float_digits\n" msgstr " --extra-float-digits=NUM usa este valor para extra_float_digits\n" -#: pg_dump.c:1031 pg_dumpall.c:631 pg_restore.c:466 +#: pg_dump.c:1032 pg_dumpall.c:631 pg_restore.c:466 #, c-format msgid " --if-exists use IF EXISTS when dropping objects\n" msgstr " --if-exists usa IF EXISTS al eliminar objetos\n" -#: pg_dump.c:1032 +#: pg_dump.c:1033 #, c-format msgid "" " --include-foreign-data=PATTERN\n" @@ -1557,93 +1557,93 @@ msgstr "" " incluye datos de tablas foráneas en servidores\n" " que coinciden con PATRÓN\n" -#: pg_dump.c:1035 pg_dumpall.c:632 +#: pg_dump.c:1036 pg_dumpall.c:632 #, c-format msgid " --inserts dump data as INSERT commands, rather than COPY\n" msgstr " --inserts extrae los datos usando INSERT, en vez de COPY\n" -#: pg_dump.c:1036 pg_dumpall.c:633 +#: pg_dump.c:1037 pg_dumpall.c:633 #, c-format msgid " --load-via-partition-root load partitions via the root table\n" msgstr " --load-via-partition-root cargar particiones a través de tabla raíz\n" -#: pg_dump.c:1037 pg_dumpall.c:634 +#: pg_dump.c:1038 pg_dumpall.c:634 #, c-format msgid " --no-comments do not dump comments\n" msgstr " --no-comments no volcar los comentarios\n" -#: pg_dump.c:1038 pg_dumpall.c:635 +#: pg_dump.c:1039 pg_dumpall.c:635 #, c-format msgid " --no-publications do not dump publications\n" msgstr " --no-publications no volcar las publicaciones\n" -#: pg_dump.c:1039 pg_dumpall.c:637 +#: pg_dump.c:1040 pg_dumpall.c:637 #, c-format msgid " --no-security-labels do not dump security label assignments\n" msgstr " --no-security-labels no volcar asignaciones de etiquetas de seguridad\n" -#: pg_dump.c:1040 pg_dumpall.c:638 +#: pg_dump.c:1041 pg_dumpall.c:638 #, c-format msgid " --no-subscriptions do not dump subscriptions\n" msgstr " --no-subscriptions no volcar las suscripciones\n" -#: pg_dump.c:1041 pg_dumpall.c:640 +#: pg_dump.c:1042 pg_dumpall.c:640 #, c-format msgid " --no-table-access-method do not dump table access methods\n" msgstr " --no-table-access-method no volcar métodos de acceso de tablas\n" -#: pg_dump.c:1042 pg_dumpall.c:641 +#: pg_dump.c:1043 pg_dumpall.c:641 #, c-format msgid " --no-tablespaces do not dump tablespace assignments\n" msgstr " --no-tablespaces no volcar asignaciones de tablespace\n" -#: pg_dump.c:1043 pg_dumpall.c:642 +#: pg_dump.c:1044 pg_dumpall.c:642 #, c-format msgid " --no-toast-compression do not dump TOAST compression methods\n" msgstr " --no-toast-compression no volcar métodos de compresión TOAST\n" -#: pg_dump.c:1044 pg_dumpall.c:643 +#: pg_dump.c:1045 pg_dumpall.c:643 #, c-format msgid " --no-unlogged-table-data do not dump unlogged table data\n" msgstr " --no-unlogged-table-data no volcar datos de tablas unlogged\n" -#: pg_dump.c:1045 pg_dumpall.c:644 +#: pg_dump.c:1046 pg_dumpall.c:644 #, c-format msgid " --on-conflict-do-nothing add ON CONFLICT DO NOTHING to INSERT commands\n" msgstr " --on-conflict-do-nothing agregar ON CONFLICT DO NOTHING a órdenes INSERT\n" -#: pg_dump.c:1046 pg_dumpall.c:645 +#: pg_dump.c:1047 pg_dumpall.c:645 #, c-format msgid " --quote-all-identifiers quote all identifiers, even if not key words\n" msgstr "" " --quote-all-identifiers entrecomilla todos los identificadores, incluso\n" " si no son palabras clave\n" -#: pg_dump.c:1047 pg_dumpall.c:646 +#: pg_dump.c:1048 pg_dumpall.c:646 #, c-format msgid " --rows-per-insert=NROWS number of rows per INSERT; implies --inserts\n" msgstr " --rows-per-insert=NUMFILAS número de filas por INSERT; implica --inserts\n" -#: pg_dump.c:1048 +#: pg_dump.c:1049 #, c-format msgid " --section=SECTION dump named section (pre-data, data, or post-data)\n" msgstr "" " --section=SECCIÓN volcar la sección nombrada (pre-data, data,\n" " post-data)\n" -#: pg_dump.c:1049 +#: pg_dump.c:1050 #, c-format msgid " --serializable-deferrable wait until the dump can run without anomalies\n" msgstr "" " --serializable-deferrable espera hasta que el respaldo pueda completarse\n" " sin anomalías\n" -#: pg_dump.c:1050 +#: pg_dump.c:1051 #, c-format msgid " --snapshot=SNAPSHOT use given snapshot for the dump\n" msgstr " --snapshot=SNAPSHOT use el snapshot dado para la extracción\n" -#: pg_dump.c:1051 pg_restore.c:476 +#: pg_dump.c:1052 pg_restore.c:476 #, c-format msgid "" " --strict-names require table and/or schema include patterns to\n" @@ -1652,7 +1652,7 @@ msgstr "" " --strict-names requerir al menos una coincidencia para cada patrón\n" " de nombre de tablas y esquemas\n" -#: pg_dump.c:1053 pg_dumpall.c:647 pg_restore.c:478 +#: pg_dump.c:1054 pg_dumpall.c:647 pg_restore.c:478 #, c-format msgid "" " --use-set-session-authorization\n" @@ -1663,7 +1663,7 @@ msgstr "" " usa órdenes SESSION AUTHORIZATION en lugar de\n" " ALTER OWNER para cambiar los dueño de los objetos\n" -#: pg_dump.c:1057 pg_dumpall.c:651 pg_restore.c:482 +#: pg_dump.c:1058 pg_dumpall.c:651 pg_restore.c:482 #, c-format msgid "" "\n" @@ -1672,46 +1672,46 @@ msgstr "" "\n" "Opciones de conexión:\n" -#: pg_dump.c:1058 +#: pg_dump.c:1059 #, c-format msgid " -d, --dbname=DBNAME database to dump\n" msgstr " -d, --dbname=NOMBRE nombre de la base de datos que volcar\n" -#: pg_dump.c:1059 pg_dumpall.c:653 pg_restore.c:483 +#: pg_dump.c:1060 pg_dumpall.c:653 pg_restore.c:483 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" " -h, --host=ANFITRIÓN anfitrión de la base de datos o\n" " directorio del enchufe (socket)\n" -#: pg_dump.c:1060 pg_dumpall.c:655 pg_restore.c:484 +#: pg_dump.c:1061 pg_dumpall.c:655 pg_restore.c:484 #, c-format msgid " -p, --port=PORT database server port number\n" msgstr " -p, --port=PUERTO número del puerto de la base de datos\n" -#: pg_dump.c:1061 pg_dumpall.c:656 pg_restore.c:485 +#: pg_dump.c:1062 pg_dumpall.c:656 pg_restore.c:485 #, c-format msgid " -U, --username=NAME connect as specified database user\n" msgstr " -U, --username=USUARIO nombre de usuario con el cual conectarse\n" -#: pg_dump.c:1062 pg_dumpall.c:657 pg_restore.c:486 +#: pg_dump.c:1063 pg_dumpall.c:657 pg_restore.c:486 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password nunca pedir una contraseña\n" -#: pg_dump.c:1063 pg_dumpall.c:658 pg_restore.c:487 +#: pg_dump.c:1064 pg_dumpall.c:658 pg_restore.c:487 #, c-format msgid " -W, --password force password prompt (should happen automatically)\n" msgstr "" " -W, --password fuerza un prompt para la contraseña\n" " (debería ser automático)\n" -#: pg_dump.c:1064 pg_dumpall.c:659 +#: pg_dump.c:1065 pg_dumpall.c:659 #, c-format msgid " --role=ROLENAME do SET ROLE before dump\n" msgstr " --role=ROL ejecuta SET ROLE antes del volcado\n" -#: pg_dump.c:1066 +#: pg_dump.c:1067 #, c-format msgid "" "\n" @@ -1724,453 +1724,453 @@ msgstr "" "de la variable de ambiente PGDATABASE.\n" "\n" -#: pg_dump.c:1068 pg_dumpall.c:663 pg_restore.c:494 +#: pg_dump.c:1069 pg_dumpall.c:663 pg_restore.c:494 #, c-format msgid "Report bugs to <%s>.\n" msgstr "Reporte errores a <%s>.\n" -#: pg_dump.c:1069 pg_dumpall.c:664 pg_restore.c:495 +#: pg_dump.c:1070 pg_dumpall.c:664 pg_restore.c:495 #, c-format msgid "%s home page: <%s>\n" msgstr "Sitio web de %s: <%s>\n" -#: pg_dump.c:1088 pg_dumpall.c:488 +#: pg_dump.c:1089 pg_dumpall.c:488 #, c-format msgid "invalid client encoding \"%s\" specified" msgstr "la codificación de cliente especificada «%s» no es válida" -#: pg_dump.c:1226 +#: pg_dump.c:1234 #, c-format msgid "parallel dumps from standby servers are not supported by this server version" msgstr "Los volcados en paralelo desde servidores standby no están soportados por esta versión de servidor." -#: pg_dump.c:1291 +#: pg_dump.c:1299 #, c-format msgid "invalid output format \"%s\" specified" msgstr "el formato de salida especificado «%s» no es válido" -#: pg_dump.c:1332 pg_dump.c:1388 pg_dump.c:1441 pg_dumpall.c:1285 +#: pg_dump.c:1340 pg_dump.c:1396 pg_dump.c:1449 pg_dumpall.c:1285 #, c-format msgid "improper qualified name (too many dotted names): %s" msgstr "el nombre no es válido (demasiados puntos): %s" -#: pg_dump.c:1340 +#: pg_dump.c:1348 #, c-format msgid "no matching schemas were found for pattern \"%s\"" msgstr "no se encontraron esquemas coincidentes para el patrón «%s»" -#: pg_dump.c:1393 +#: pg_dump.c:1401 #, c-format msgid "no matching extensions were found for pattern \"%s\"" msgstr "no se encontraron extensiones coincidentes para el patrón «%s»" -#: pg_dump.c:1446 +#: pg_dump.c:1454 #, c-format msgid "no matching foreign servers were found for pattern \"%s\"" msgstr "no se encontraron servidores foráneos coincidentes para el patrón «%s»" -#: pg_dump.c:1509 +#: pg_dump.c:1517 #, c-format msgid "improper relation name (too many dotted names): %s" msgstr "el nombre de relación no es válido (demasiados puntos): %s" -#: pg_dump.c:1520 +#: pg_dump.c:1528 #, c-format msgid "no matching tables were found for pattern \"%s\"" msgstr "no se encontraron tablas coincidentes para el patrón «%s»" -#: pg_dump.c:1547 +#: pg_dump.c:1555 #, c-format msgid "You are currently not connected to a database." msgstr "No está conectado a una base de datos." -#: pg_dump.c:1550 +#: pg_dump.c:1558 #, c-format msgid "cross-database references are not implemented: %s" msgstr "no están implementadas las referencias entre bases de datos: %s" -#: pg_dump.c:2003 +#: pg_dump.c:2011 #, c-format msgid "dumping contents of table \"%s.%s\"" msgstr "extrayendo el contenido de la tabla «%s.%s»" -#: pg_dump.c:2109 +#: pg_dump.c:2121 #, c-format msgid "Dumping the contents of table \"%s\" failed: PQgetCopyData() failed." msgstr "Falló la extracción del contenido de la tabla «%s»: PQgetCopyData() falló." -#: pg_dump.c:2110 pg_dump.c:2120 +#: pg_dump.c:2122 pg_dump.c:2132 #, c-format msgid "Error message from server: %s" msgstr "Mensaje de error del servidor: %s" -#: pg_dump.c:2111 pg_dump.c:2121 +#: pg_dump.c:2123 pg_dump.c:2133 #, c-format msgid "Command was: %s" msgstr "La orden era: % s" -#: pg_dump.c:2119 +#: pg_dump.c:2131 #, c-format msgid "Dumping the contents of table \"%s\" failed: PQgetResult() failed." msgstr "Falló la extracción del contenido de la tabla «%s»: PQgetResult() falló." -#: pg_dump.c:2201 +#: pg_dump.c:2222 #, c-format msgid "wrong number of fields retrieved from table \"%s\"" msgstr "se obtuvo un número incorrecto de campos de la tabla «%s»" -#: pg_dump.c:2897 +#: pg_dump.c:2922 #, c-format msgid "saving database definition" msgstr "salvando las definiciones de la base de datos" -#: pg_dump.c:2993 +#: pg_dump.c:3018 #, c-format msgid "unrecognized locale provider: %s" msgstr "proveedor de configuración regional no reconocido: %s" -#: pg_dump.c:3339 +#: pg_dump.c:3364 #, c-format msgid "saving encoding = %s" msgstr "salvando codificaciones = %s" -#: pg_dump.c:3364 +#: pg_dump.c:3389 #, c-format msgid "saving standard_conforming_strings = %s" msgstr "salvando standard_conforming_strings = %s" -#: pg_dump.c:3403 +#: pg_dump.c:3428 #, c-format msgid "could not parse result of current_schemas()" msgstr "no se pudo interpretar la salida de current_schemas()" -#: pg_dump.c:3422 +#: pg_dump.c:3447 #, c-format msgid "saving search_path = %s" msgstr "salvando search_path = %s" -#: pg_dump.c:3460 +#: pg_dump.c:3485 #, c-format msgid "reading large objects" msgstr "leyendo objetos grandes" -#: pg_dump.c:3598 +#: pg_dump.c:3623 #, c-format msgid "saving large objects" msgstr "salvando objetos grandes" -#: pg_dump.c:3639 +#: pg_dump.c:3664 #, c-format msgid "error reading large object %u: %s" msgstr "error al leer el objeto grande %u: %s" -#: pg_dump.c:3745 +#: pg_dump.c:3770 #, c-format msgid "reading row-level security policies" msgstr "leyendo políticas de seguridad a nivel de registros" -#: pg_dump.c:3886 +#: pg_dump.c:3911 #, c-format msgid "unexpected policy command type: %c" msgstr "tipo de orden inesperada en política: %c" -#: pg_dump.c:4336 pg_dump.c:4654 pg_dump.c:11861 pg_dump.c:17750 -#: pg_dump.c:17752 pg_dump.c:18373 +#: pg_dump.c:4361 pg_dump.c:4701 pg_dump.c:11908 pg_dump.c:17798 +#: pg_dump.c:17800 pg_dump.c:18421 #, c-format msgid "could not parse %s array" msgstr "no se pudo interpretar el arreglo %s" -#: pg_dump.c:4522 +#: pg_dump.c:4569 #, c-format msgid "subscriptions not dumped because current user is not a superuser" msgstr "no se volcaron las suscripciones porque el usuario actual no es un superusuario" -#: pg_dump.c:5036 +#: pg_dump.c:5083 #, c-format msgid "could not find parent extension for %s %s" msgstr "no se pudo encontrar la extensión padre para %s %s" -#: pg_dump.c:5181 +#: pg_dump.c:5228 #, c-format msgid "schema with OID %u does not exist" msgstr "no existe el esquema con OID %u" -#: pg_dump.c:6637 pg_dump.c:17014 +#: pg_dump.c:6684 pg_dump.c:17062 #, c-format msgid "failed sanity check, parent table with OID %u of sequence with OID %u not found" msgstr "falló la revisión de integridad, no se encontró la tabla padre con OID %u de la secuencia con OID %u" -#: pg_dump.c:6780 +#: pg_dump.c:6827 #, c-format msgid "failed sanity check, table OID %u appearing in pg_partitioned_table not found" msgstr "falló la revisión de integridad, el OID %u que aparece en pg_partitioned_table no fue encontrado" -#: pg_dump.c:7011 pg_dump.c:7282 pg_dump.c:7753 pg_dump.c:8420 pg_dump.c:8541 -#: pg_dump.c:8695 +#: pg_dump.c:7058 pg_dump.c:7329 pg_dump.c:7800 pg_dump.c:8467 pg_dump.c:8588 +#: pg_dump.c:8742 #, c-format msgid "unrecognized table OID %u" msgstr "OID de tabla %u no reconocido" -#: pg_dump.c:7015 +#: pg_dump.c:7062 #, c-format msgid "unexpected index data for table \"%s\"" msgstr "datos de índice inesperados para la tabla «%s»" -#: pg_dump.c:7514 +#: pg_dump.c:7561 #, c-format msgid "failed sanity check, parent table with OID %u of pg_rewrite entry with OID %u not found" msgstr "falló la revisión de integridad, no se encontró la tabla padre con OID %u del elemento con OID %u de pg_rewrite" -#: pg_dump.c:7805 +#: pg_dump.c:7852 #, c-format msgid "query produced null referenced table name for foreign key trigger \"%s\" on table \"%s\" (OID of table: %u)" msgstr "la consulta produjo un nombre de tabla nulo para la llave foránea del disparador \"%s\" en la tabla «%s» (OID de la tabla: %u)" -#: pg_dump.c:8424 +#: pg_dump.c:8471 #, c-format msgid "unexpected column data for table \"%s\"" msgstr "información de columnas para la tabla «%s» inesperada" -#: pg_dump.c:8454 +#: pg_dump.c:8501 #, c-format msgid "invalid column numbering in table \"%s\"" msgstr "numeración de columnas no válida en la tabla «%s»" -#: pg_dump.c:8503 +#: pg_dump.c:8550 #, c-format msgid "finding table default expressions" msgstr "encontrando expresiones default de tablas" -#: pg_dump.c:8545 +#: pg_dump.c:8592 #, c-format msgid "invalid adnum value %d for table \"%s\"" msgstr "el valor de adnum %d para la tabla «%s» no es válido" -#: pg_dump.c:8645 +#: pg_dump.c:8692 #, c-format msgid "finding table check constraints" msgstr "encontrando restricciones CHECK de tablas" -#: pg_dump.c:8699 +#: pg_dump.c:8746 #, c-format msgid "expected %d check constraint on table \"%s\" but found %d" msgid_plural "expected %d check constraints on table \"%s\" but found %d" msgstr[0] "se esperaban %d restricciones CHECK en la tabla «%s» pero se encontraron %d" msgstr[1] "se esperaban %d restricciones CHECK en la tabla «%s» pero se encontraron %d" -#: pg_dump.c:8703 +#: pg_dump.c:8750 #, c-format msgid "The system catalogs might be corrupted." msgstr "Los catálogos del sistema podrían estar corruptos." -#: pg_dump.c:9393 +#: pg_dump.c:9440 #, c-format msgid "role with OID %u does not exist" msgstr "no existe el rol con OID %u" -#: pg_dump.c:9505 pg_dump.c:9534 +#: pg_dump.c:9552 pg_dump.c:9581 #, c-format msgid "unsupported pg_init_privs entry: %u %u %d" msgstr "entrada en pg_init_privs no soportada: %u %u %d" -#: pg_dump.c:10355 +#: pg_dump.c:10402 #, c-format msgid "typtype of data type \"%s\" appears to be invalid" msgstr "el typtype del tipo «%s» parece no ser válido" -#: pg_dump.c:11930 +#: pg_dump.c:11977 #, c-format msgid "unrecognized provolatile value for function \"%s\"" msgstr "el valor del atributo «provolatile» para la función «%s» es desconocido" -#: pg_dump.c:11980 pg_dump.c:13843 +#: pg_dump.c:12027 pg_dump.c:13890 #, c-format msgid "unrecognized proparallel value for function \"%s\"" msgstr "el valor del atributo «proparallel» para la función «%s» es desconocido" -#: pg_dump.c:12112 pg_dump.c:12218 pg_dump.c:12225 +#: pg_dump.c:12159 pg_dump.c:12265 pg_dump.c:12272 #, c-format msgid "could not find function definition for function with OID %u" msgstr "no se encontró la definición de la función con OID %u" -#: pg_dump.c:12151 +#: pg_dump.c:12198 #, c-format msgid "bogus value in pg_cast.castfunc or pg_cast.castmethod field" msgstr "valor no válido en los campos pg_cast.castfunc o pg_cast.castmethod" -#: pg_dump.c:12154 +#: pg_dump.c:12201 #, c-format msgid "bogus value in pg_cast.castmethod field" msgstr "valor no válido en el campo pg_cast.castmethod" -#: pg_dump.c:12244 +#: pg_dump.c:12291 #, c-format msgid "bogus transform definition, at least one of trffromsql and trftosql should be nonzero" msgstr "definición errónea de transformación; al menos uno de trffromsql y trftosql debe ser distinto de cero" -#: pg_dump.c:12261 +#: pg_dump.c:12308 #, c-format msgid "bogus value in pg_transform.trffromsql field" msgstr "valor erróneo en el campo pg_transform.trffromsql" -#: pg_dump.c:12282 +#: pg_dump.c:12329 #, c-format msgid "bogus value in pg_transform.trftosql field" msgstr "valor erróneo en el campo pg_transform.trftosql" -#: pg_dump.c:12427 +#: pg_dump.c:12474 #, c-format msgid "postfix operators are not supported anymore (operator \"%s\")" msgstr "los operadores postfix ya no están soportados (operador «%s»)" -#: pg_dump.c:12597 +#: pg_dump.c:12644 #, c-format msgid "could not find operator with OID %s" msgstr "no se pudo encontrar el operador con OID %s" -#: pg_dump.c:12665 +#: pg_dump.c:12712 #, c-format msgid "invalid type \"%c\" of access method \"%s\"" msgstr "el tipo «%c» para el método de acceso «%s» no es válido" -#: pg_dump.c:13319 pg_dump.c:13372 +#: pg_dump.c:13366 pg_dump.c:13419 #, c-format msgid "unrecognized collation provider: %s" msgstr "proveedor de ordenamiento no reconocido: %s" -#: pg_dump.c:13328 pg_dump.c:13337 pg_dump.c:13347 pg_dump.c:13356 +#: pg_dump.c:13375 pg_dump.c:13384 pg_dump.c:13394 pg_dump.c:13403 #, c-format msgid "invalid collation \"%s\"" msgstr "ordenamiento \"%s\" no válido" -#: pg_dump.c:13762 +#: pg_dump.c:13809 #, c-format msgid "unrecognized aggfinalmodify value for aggregate \"%s\"" msgstr "valor de aggfinalmodify no reconocido para la agregación «%s»" -#: pg_dump.c:13818 +#: pg_dump.c:13865 #, c-format msgid "unrecognized aggmfinalmodify value for aggregate \"%s\"" msgstr "valor de aggmfinalmodify no reconocido para la agregación «%s»" -#: pg_dump.c:14536 +#: pg_dump.c:14583 #, c-format msgid "unrecognized object type in default privileges: %d" msgstr "tipo de objeto desconocido en privilegios por omisión: %d" -#: pg_dump.c:14552 +#: pg_dump.c:14599 #, c-format msgid "could not parse default ACL list (%s)" msgstr "no se pudo interpretar la lista de ACL (%s)" -#: pg_dump.c:14634 +#: pg_dump.c:14681 #, c-format msgid "could not parse initial ACL list (%s) or default (%s) for object \"%s\" (%s)" msgstr "no se pudo interpretar la lista ACL inicial (%s) o por defecto (%s) para el objeto «%s» (%s)" -#: pg_dump.c:14659 +#: pg_dump.c:14706 #, c-format msgid "could not parse ACL list (%s) or default (%s) for object \"%s\" (%s)" msgstr "no se pudo interpretar la lista de ACL (%s) o por defecto (%s) para el objeto «%s» (%s)" -#: pg_dump.c:15197 +#: pg_dump.c:15244 #, c-format msgid "query to obtain definition of view \"%s\" returned no data" msgstr "la consulta para obtener la definición de la vista «%s» no regresó datos" -#: pg_dump.c:15200 +#: pg_dump.c:15247 #, c-format msgid "query to obtain definition of view \"%s\" returned more than one definition" msgstr "la consulta para obtener la definición de la vista «%s» regresó más de una definición" -#: pg_dump.c:15207 +#: pg_dump.c:15254 #, c-format msgid "definition of view \"%s\" appears to be empty (length zero)" msgstr "la definición de la vista «%s» parece estar vacía (tamaño cero)" -#: pg_dump.c:15291 +#: pg_dump.c:15338 #, c-format msgid "WITH OIDS is not supported anymore (table \"%s\")" msgstr "WITH OIDS ya no está soportado (tabla «%s»)" -#: pg_dump.c:16220 +#: pg_dump.c:16267 #, c-format msgid "invalid column number %d for table \"%s\"" msgstr "el número de columna %d no es válido para la tabla «%s»" -#: pg_dump.c:16298 +#: pg_dump.c:16345 #, c-format msgid "could not parse index statistic columns" msgstr "no se pudieron interpretar columnas de estadísticas de índices" -#: pg_dump.c:16300 +#: pg_dump.c:16347 #, c-format msgid "could not parse index statistic values" msgstr "no se pudieron interpretar valores de estadísticas de índices" -#: pg_dump.c:16302 +#: pg_dump.c:16349 #, c-format msgid "mismatched number of columns and values for index statistics" msgstr "no coincide el número de columnas con el de valores para estadísticas de índices" -#: pg_dump.c:16520 +#: pg_dump.c:16567 #, c-format msgid "missing index for constraint \"%s\"" msgstr "falta un índice para restricción «%s»" -#: pg_dump.c:16748 +#: pg_dump.c:16795 #, c-format msgid "unrecognized constraint type: %c" msgstr "tipo de restricción inesperado: %c" -#: pg_dump.c:16849 pg_dump.c:17078 +#: pg_dump.c:16896 pg_dump.c:17126 #, c-format msgid "query to get data of sequence \"%s\" returned %d row (expected 1)" msgid_plural "query to get data of sequence \"%s\" returned %d rows (expected 1)" msgstr[0] "la consulta para obtener los datos de la secuencia «%s» regresó %d entrada, pero se esperaba 1" msgstr[1] "la consulta para obtener los datos de la secuencia «%s» regresó %d entradas, pero se esperaba 1" -#: pg_dump.c:16881 +#: pg_dump.c:16928 #, c-format msgid "unrecognized sequence type: %s" msgstr "tipo no reconocido de secuencia: %s" -#: pg_dump.c:17170 +#: pg_dump.c:17218 #, c-format msgid "unexpected tgtype value: %d" msgstr "tgtype no esperado: %d" -#: pg_dump.c:17242 +#: pg_dump.c:17290 #, c-format msgid "invalid argument string (%s) for trigger \"%s\" on table \"%s\"" msgstr "argumento de cadena (%s) no válido para el disparador (trigger) «%s» en la tabla «%s»" -#: pg_dump.c:17511 +#: pg_dump.c:17559 #, c-format msgid "query to get rule \"%s\" for table \"%s\" failed: wrong number of rows returned" msgstr "la consulta para obtener la regla «%s» asociada con la tabla «%s» falló: retornó un número incorrecto de renglones" -#: pg_dump.c:17664 +#: pg_dump.c:17712 #, c-format msgid "could not find referenced extension %u" msgstr "no se pudo encontrar la extensión referenciada %u" -#: pg_dump.c:17754 +#: pg_dump.c:17802 #, c-format msgid "mismatched number of configurations and conditions for extension" msgstr "no coincide el número de configuraciones con el de condiciones para extensión" -#: pg_dump.c:17886 +#: pg_dump.c:17934 #, c-format msgid "reading dependency data" msgstr "obteniendo datos de dependencias" -#: pg_dump.c:17972 +#: pg_dump.c:18020 #, c-format msgid "no referencing object %u %u" msgstr "no existe el objeto referenciante %u %u" -#: pg_dump.c:17983 +#: pg_dump.c:18031 #, c-format msgid "no referenced object %u %u" msgstr "no existe el objeto referenciado %u %u" diff --git a/src/bin/pg_dump/po/fr.po b/src/bin/pg_dump/po/fr.po index bf0fb08b2f1..433d9508f66 100644 --- a/src/bin/pg_dump/po/fr.po +++ b/src/bin/pg_dump/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2023-09-05 17:36+0000\n" -"PO-Revision-Date: 2023-09-05 22:02+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -2700,705 +2700,3 @@ msgstr "" "Si aucun nom de fichier n'est fourni en entrée, alors l'entrée standard est\n" "utilisée.\n" "\n" - -#, c-format -#~ msgid " %s" -#~ msgstr " %s" - -#~ msgid " --disable-triggers disable triggers during data-only restore\n" -#~ msgstr "" -#~ " --disable-triggers désactiver les déclencheurs lors de la\n" -#~ " restauration des données seules\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide puis quitte\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#, c-format -#~ msgid " --no-synchronized-snapshots do not use synchronized snapshots in parallel jobs\n" -#~ msgstr "" -#~ " --no-synchronized-snapshots n'utilise pas de snapshots synchronisés pour les\n" -#~ " jobs en parallèle\n" - -#~ msgid "" -#~ " --use-set-session-authorization\n" -#~ " use SET SESSION AUTHORIZATION commands instead of\n" -#~ " ALTER OWNER commands to set ownership\n" -#~ msgstr "" -#~ " --use-set-session-authorization\n" -#~ " utilise les commandes SET SESSION AUTHORIZATION\n" -#~ " au lieu des commandes ALTER OWNER pour les\n" -#~ " modifier les propriétaires\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version puis quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid " -O, --no-owner skip restoration of object ownership\n" -#~ msgstr "" -#~ " -O, --no-owner omettre la restauration des possessions des\n" -#~ " objets\n" - -#~ msgid " -c, --clean clean (drop) database objects before recreating\n" -#~ msgstr "" -#~ " -c, --clean nettoie/supprime les bases de données avant de\n" -#~ " les créer\n" - -#~ msgid " -o, --oids include OIDs in dump\n" -#~ msgstr " -o, --oids inclut les OID dans la sauvegarde\n" - -#~ msgid "%s: could not connect to database \"%s\": %s" -#~ msgstr "%s : n'a pas pu se connecter à la base de données « %s » : %s" - -#~ msgid "%s: could not open the output file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier de sauvegarde « %s » : %s\n" - -#~ msgid "%s: could not parse ACL list (%s) for database \"%s\"\n" -#~ msgstr "%s : n'a pas pu analyser la liste d'ACL (%s) pour la base de données « %s »\n" - -#~ msgid "%s: could not parse version \"%s\"\n" -#~ msgstr "%s : n'a pas pu analyser la version « %s »\n" - -#~ msgid "%s: executing %s\n" -#~ msgstr "%s : exécute %s\n" - -#~ msgid "%s: invalid -X option -- %s\n" -#~ msgstr "%s : option -X invalide -- %s\n" - -#~ msgid "%s: invalid client encoding \"%s\" specified\n" -#~ msgstr "%s : encodage client indiqué (« %s ») invalide\n" - -#~ msgid "%s: invalid number of parallel jobs\n" -#~ msgstr "%s : nombre de jobs en parallèle invalide\n" - -#~ msgid "%s: option --if-exists requires option -c/--clean\n" -#~ msgstr "%s : l'option --if-exists nécessite l'option -c/--clean\n" - -#~ msgid "%s: options -c/--clean and -a/--data-only cannot be used together\n" -#~ msgstr "" -#~ "%s : les options « -c/--clean » et « -a/--data-only » ne peuvent pas être\n" -#~ "utilisées conjointement\n" - -#~ msgid "%s: options -s/--schema-only and -a/--data-only cannot be used together\n" -#~ msgstr "" -#~ "%s : les options « -s/--schema-only » et « -a/--data-only » ne peuvent pas être\n" -#~ "utilisées conjointement\n" - -#~ msgid "%s: out of memory\n" -#~ msgstr "%s : mémoire épuisée\n" - -#~ msgid "%s: query failed: %s" -#~ msgstr "%s : échec de la requête : %s" - -#~ msgid "%s: query was: %s\n" -#~ msgstr "%s : la requête était : %s\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "(The INSERT command cannot set OIDs.)\n" -#~ msgstr "(La commande INSERT ne peut pas positionner les OID.)\n" - -#~ msgid "*** aborted because of error\n" -#~ msgstr "*** interrompu du fait d'erreurs\n" - -#~ msgid "-C and -1 are incompatible options\n" -#~ msgstr "-C et -1 sont des options incompatibles\n" - -#~ msgid "-C and -c are incompatible options\n" -#~ msgstr "-C et -c sont des options incompatibles\n" - -#~ msgid "LOCK TABLE failed for \"%s\": %s" -#~ msgstr "LOCK TABLE échoué pour la table « %s » : %s" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#~ msgid "SQL command failed\n" -#~ msgstr "la commande SQL a échoué\n" - -#, c-format -#~ msgid "" -#~ "Synchronized snapshots are not supported by this server version.\n" -#~ "Run with --no-synchronized-snapshots instead if you do not need\n" -#~ "synchronized snapshots." -#~ msgstr "" -#~ "Les snapshots synchronisés ne sont pas supportés par cette version serveur.\n" -#~ "Lancez avec --no-synchronized-snapshots à la place si vous n'avez pas besoin\n" -#~ "de snapshots synchronisés." - -#~ msgid "" -#~ "Synchronized snapshots are not supported on standby servers.\n" -#~ "Run with --no-synchronized-snapshots instead if you do not need\n" -#~ "synchronized snapshots.\n" -#~ msgstr "" -#~ "Les snapshots synchronisés ne sont pas supportés sur les serveurs de stadby.\n" -#~ "Lancez avec --no-synchronized-snapshots à la place si vous n'avez pas besoin\n" -#~ "de snapshots synchronisés.\n" - -#, c-format -#~ msgid "" -#~ "Synchronized snapshots on standby servers are not supported by this server version.\n" -#~ "Run with --no-synchronized-snapshots instead if you do not need\n" -#~ "synchronized snapshots." -#~ msgstr "" -#~ "Les snapshots synchronisés sur les serveurs standbys ne sont pas supportés par cette version serveur.\n" -#~ "Lancez avec --no-synchronized-snapshots à la place si vous n'avez pas besoin\n" -#~ "de snapshots synchronisés." - -#~ msgid "TOC Entry %s at %s (length %s, checksum %d)\n" -#~ msgstr "entrée TOC %s à %s (longueur %s, somme de contrôle %d)\n" - -#, c-format -#~ msgid "The command was: %s" -#~ msgstr "La commande était : %s" - -#~ msgid "" -#~ "The program \"pg_dump\" is needed by %s but was not found in the\n" -#~ "same directory as \"%s\".\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « pg_dump » est nécessaire à %s mais n'a pas été trouvé dans le\n" -#~ "même répertoire que « %s ».\n" -#~ "Vérifiez votre installation." - -#~ msgid "" -#~ "The program \"pg_dump\" was found by \"%s\"\n" -#~ "but was not the same version as %s.\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « pg_dump » a été trouvé par « %s »\n" -#~ "mais n'a pas la même version que %s.\n" -#~ "Vérifiez votre installation." - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#~ msgid "" -#~ "WARNING:\n" -#~ " This format is for demonstration purposes; it is not intended for\n" -#~ " normal use. Files will be written in the current working directory.\n" -#~ msgstr "" -#~ "ATTENTION :\n" -#~ " Ce format est présent dans un but de démonstration ; il n'est pas prévu\n" -#~ " pour une utilisation normale. Les fichiers seront écrits dans le\n" -#~ " répertoire actuel.\n" - -#~ msgid "WARNING: could not parse reloptions array\n" -#~ msgstr "ATTENTION : n'a pas pu analyser le tableau reloptions\n" - -#~ msgid "WSAStartup failed: %d" -#~ msgstr "WSAStartup a échoué : %d" - -#~ msgid "aggregate function %s could not be dumped correctly for this database version; ignored" -#~ msgstr "la fonction d'aggrégat %s n'a pas pu être sauvegardée correctement avec cette version de la base de données ; ignorée" - -#~ msgid "allocating AH for %s, format %d\n" -#~ msgstr "allocation d'AH pour %s, format %d\n" - -#~ msgid "archive member too large for tar format\n" -#~ msgstr "membre de l'archive trop volumineux pour le format tar\n" - -#~ msgid "archiver" -#~ msgstr "archiveur" - -#~ msgid "archiver (db)" -#~ msgstr "programme d'archivage (db)" - -#~ msgid "attempting to ascertain archive format\n" -#~ msgstr "tentative d'identification du format de l'archive\n" - -#, c-format -#~ msgid "bogus value in proargmodes array" -#~ msgstr "valeur erronée dans le tableau proargmodes" - -#~ msgid "cannot duplicate null pointer\n" -#~ msgstr "ne peut pas dupliquer un pointeur nul\n" - -#~ msgid "cannot reopen non-seekable file\n" -#~ msgstr "ne peut pas rouvrir le fichier non cherchable\n" - -#~ msgid "cannot reopen stdin\n" -#~ msgstr "ne peut pas rouvrir stdin\n" - -#~ msgid "child process was terminated by signal %d" -#~ msgstr "le processus fils a été terminé par le signal %d" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "compress_io" -#~ msgstr "compression_io" - -#, c-format -#~ msgid "compression level must be in range 0..9" -#~ msgstr "le niveau de compression doit être compris entre 0 et 9" - -#~ msgid "compression support is disabled in this format\n" -#~ msgstr "le support de la compression est désactivé avec ce format\n" - -#~ msgid "connecting to database \"%s\" as user \"%s\"" -#~ msgstr "connexion à la base de données « %s » en tant qu'utilisateur « %s »" - -#~ msgid "connection needs password" -#~ msgstr "la connexion nécessite un mot de passe" - -#~ msgid "connection to database \"%s\" failed: %s" -#~ msgstr "la connexion à la base de données « %s » a échoué : %s" - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu changer le répertoire par « %s » : %s" - -#~ msgid "could not close data file after reading\n" -#~ msgstr "n'a pas pu fermer le fichier de données après lecture\n" - -#~ msgid "could not close directory \"%s\": %s\n" -#~ msgstr "n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "could not close large object file\n" -#~ msgstr "n'a pas pu fermer le fichier du « Large Object »\n" - -#, c-format -#~ msgid "could not close tar member: %m" -#~ msgstr "n'a pas pu fermer le membre de tar : %m" - -#~ msgid "could not connect to database \"%s\": %s" -#~ msgstr "n'a pas pu se connecter à la base de données « %s » : %s" - -#~ msgid "could not create directory \"%s\": %s\n" -#~ msgstr "n'a pas pu créer le répertoire « %s » : %s\n" - -#~ msgid "could not create worker thread: %s\n" -#~ msgstr "n'a pas pu créer le fil de travail: %s\n" - -#~ msgid "could not find block ID %d in archive -- possibly due to out-of-order restore request, which cannot be handled due to lack of data offsets in archive" -#~ msgstr "" -#~ "n'a pas pu trouver l'identifiant de bloc %d dans l'archive --\n" -#~ "il est possible que cela soit dû à une demande de restauration dans un ordre\n" -#~ "différent, qui n'a pas pu être géré à cause d'un manque d'information de\n" -#~ "position dans l'archive" - -#~ msgid "could not find entry for pg_indexes in pg_class\n" -#~ msgstr "n'a pas pu trouver l'entrée de pg_indexes dans pg_class\n" - -#~ msgid "could not find slot of finished worker\n" -#~ msgstr "n'a pas pu trouver l'emplacement du worker qui vient de terminer\n" - -#~ msgid "could not get relation name for OID %u: %s\n" -#~ msgstr "n'a pas pu obtenir le nom de la relation pour l'OID %u: %s\n" - -#~ msgid "could not identify current directory: %s" -#~ msgstr "n'a pas pu identifier le répertoire courant : %s" - -#~ msgid "could not open large object TOC for input: %s\n" -#~ msgstr "n'a pas pu ouvrir la TOC du « Large Object » en entrée : %s\n" - -#~ msgid "could not open large object TOC for output: %s\n" -#~ msgstr "n'a pas pu ouvrir la TOC du « Large Object » en sortie : %s\n" - -#~ msgid "could not open output file \"%s\" for writing\n" -#~ msgstr "n'a pas pu ouvrir le fichier de sauvegarde « %s » en écriture\n" - -#, c-format -#~ msgid "could not open temporary file" -#~ msgstr "n'a pas pu ouvrir le fichier temporaire" - -#~ msgid "could not output padding at end of tar member\n" -#~ msgstr "n'a pas pu remplir la fin du membre de tar\n" - -#~ msgid "could not parse ACL (%s) for large object %u" -#~ msgstr "n'a pas pu analyser la liste ACL (%s) du « Large Object » %u" - -#, c-format -#~ msgid "could not parse extension condition array" -#~ msgstr "n'a pas pu analyser le tableau de condition de l'extension" - -#, c-format -#~ msgid "could not parse extension configuration array" -#~ msgstr "n'a pas pu analyser le tableau de configuration des extensions" - -#~ msgid "could not parse index collation name array" -#~ msgstr "n'a pas pu analyser le tableau des noms de collation de l'index" - -#~ msgid "could not parse index collation version array" -#~ msgstr "n'a pas pu analyser le tableau des versions de collation de l'index" - -#, c-format -#~ msgid "could not parse proallargtypes array" -#~ msgstr "n'a pas pu analyser le tableau proallargtypes" - -#, c-format -#~ msgid "could not parse proargmodes array" -#~ msgstr "n'a pas pu analyser le tableau proargmodes" - -#, c-format -#~ msgid "could not parse proargnames array" -#~ msgstr "n'a pas pu analyser le tableau proargnames" - -#, c-format -#~ msgid "could not parse proconfig array" -#~ msgstr "n'a pas pu analyser le tableau proconfig" - -#, c-format -#~ msgid "could not parse subpublications array" -#~ msgstr "n'a pas pu analyser le tableau de sous-publications" - -#~ msgid "could not parse version string \"%s\"\n" -#~ msgstr "n'a pas pu analyser la chaîne de version « %s »\n" - -#~ msgid "could not read directory \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "could not reconnect to database" -#~ msgstr "n'a pas pu se reconnecter à la base de données" - -#~ msgid "could not reconnect to database: %s" -#~ msgstr "n'a pas pu se reconnecter à la base de données : %s" - -#~ msgid "could not set default_with_oids: %s" -#~ msgstr "n'a pas pu configurer default_with_oids : %s" - -#~ msgid "could not write byte\n" -#~ msgstr "n'a pas pu écrire l'octet\n" - -#~ msgid "could not write byte: %s\n" -#~ msgstr "n'a pas pu écrire un octet : %s\n" - -#~ msgid "could not write null block at end of tar archive\n" -#~ msgstr "n'a pas pu écrire le bloc nul à la fin de l'archive tar\n" - -#~ msgid "could not write to custom output routine\n" -#~ msgstr "n'a pas pu écrire vers la routine de sauvegarde personnalisée\n" - -#~ msgid "could not write to large object (result: %lu, expected: %lu)" -#~ msgstr "n'a pas pu écrire le « Large Object » (résultat : %lu, attendu : %lu)" - -#~ msgid "custom archiver" -#~ msgstr "programme d'archivage personnalisé" - -#~ msgid "directory archiver" -#~ msgstr "archiveur répertoire" - -#~ msgid "dumpBlobs(): could not open large object %u: %s" -#~ msgstr "dumpBlobs() : n'a pas pu ouvrir le « Large Object » %u : %s" - -#~ msgid "dumpDatabase(): could not find pg_largeobject.relfrozenxid\n" -#~ msgstr "dumpDatabase() : n'a pas pu trouver pg_largeobject.relfrozenxid\n" - -#~ msgid "dumpDatabase(): could not find pg_largeobject_metadata.relfrozenxid\n" -#~ msgstr "dumpDatabase() : n'a pas pu trouver pg_largeobject_metadata.relfrozenxid\n" - -#~ msgid "dumping a specific TOC data block out of order is not supported without ID on this input stream (fseek required)\n" -#~ msgstr "" -#~ "la sauvegarde d'un bloc de données spécifique du TOC dans le désordre n'est\n" -#~ "pas supporté sans identifiant sur ce flux d'entrée (fseek requis)\n" - -#~ msgid "entering restore_toc_entries_parallel\n" -#~ msgstr "entrée dans restore_toc_entries_parallel\n" - -#~ msgid "entering restore_toc_entries_postfork\n" -#~ msgstr "entrée dans restore_toc_entries_prefork\n" - -#~ msgid "entering restore_toc_entries_prefork\n" -#~ msgstr "entrée dans restore_toc_entries_prefork\n" - -#~ msgid "error during backup\n" -#~ msgstr "erreur lors de la sauvegarde\n" - -#~ msgid "error in ListenToWorkers(): %s\n" -#~ msgstr "erreur dans ListenToWorkers(): %s\n" - -#~ msgid "error processing a parallel work item\n" -#~ msgstr "erreur durant le traitement en parallèle d'un item\n" - -#, c-format -#~ msgid "extra_float_digits must be in range -15..3" -#~ msgstr "extra_float_digits doit être dans l'intervalle -15 à 3" - -#~ msgid "failed to connect to database\n" -#~ msgstr "n'a pas pu se connecter à la base de données\n" - -#~ msgid "failed to reconnect to database\n" -#~ msgstr "la reconnexion à la base de données a échoué\n" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "file archiver" -#~ msgstr "programme d'archivage de fichiers" - -#, c-format -#~ msgid "finding check constraints for table \"%s.%s\"" -#~ msgstr "recherche des contraintes de vérification pour la table « %s.%s »" - -#, c-format -#~ msgid "finding default expressions of table \"%s.%s\"" -#~ msgstr "recherche des expressions par défaut de la table « %s.%s »" - -#, c-format -#~ msgid "finding the columns and types of table \"%s.%s\"" -#~ msgstr "recherche des colonnes et types de la table « %s.%s »" - -#~ msgid "found more than one entry for pg_indexes in pg_class\n" -#~ msgstr "a trouvé plusieurs entrées pour pg_indexes dans la table pg_class\n" - -#~ msgid "found more than one pg_database entry for this database\n" -#~ msgstr "a trouvé plusieurs entrées dans pg_database pour cette base de données\n" - -#~ msgid "ftell mismatch with expected position -- ftell used" -#~ msgstr "ftell ne correspond pas à la position attendue -- ftell utilisé" - -#~ msgid "internal error -- neither th nor fh specified in _tarReadRaw()" -#~ msgstr "erreur interne -- ni th ni fh ne sont précisés dans _tarReadRaw()" - -#~ msgid "invalid COPY statement -- could not find \"copy\" in string \"%s\"\n" -#~ msgstr "instruction COPY invalide -- n'a pas pu trouver « copy » dans la chaîne « %s »\n" - -#~ msgid "invalid COPY statement -- could not find \"from stdin\" in string \"%s\" starting at position %lu\n" -#~ msgstr "" -#~ "instruction COPY invalide -- n'a pas pu trouver « from stdin » dans la\n" -#~ "chaîne « %s » à partir de la position %lu\n" - -#~ msgid "invalid TOASTCOMPRESSION item: %s" -#~ msgstr "élément TOASTCOMPRESSION invalide : %s" - -#, c-format -#~ msgid "invalid number of parallel jobs" -#~ msgstr "nombre de jobs parallèles invalide" - -#, c-format -#~ msgid "maximum number of parallel jobs is %d" -#~ msgstr "le nombre maximum de jobs en parallèle est %d" - -#~ msgid "mismatch in actual vs. predicted file position (%s vs. %s)\n" -#~ msgstr "" -#~ "pas de correspondance entre la position réelle et celle prévue du fichier\n" -#~ "(%s vs. %s)\n" - -#~ msgid "mismatched number of collation names and versions for index" -#~ msgstr "nombre différent de noms et versions de collation pour l'index" - -#~ msgid "missing pg_database entry for database \"%s\"\n" -#~ msgstr "entrée manquante dans pg_database pour la base de données « %s »\n" - -#~ msgid "missing pg_database entry for this database\n" -#~ msgstr "entrée pg_database manquante pour cette base de données\n" - -#~ msgid "moving from position %s to next member at file position %s\n" -#~ msgstr "déplacement de la position %s vers le prochain membre à la position %s du fichier\n" - -#~ msgid "no item ready\n" -#~ msgstr "aucun élément prêt\n" - -#~ msgid "no label definitions found for enum ID %u\n" -#~ msgstr "aucune définition de label trouvée pour l'ID enum %u\n" - -#~ msgid "now at file position %s\n" -#~ msgstr "maintenant en position %s du fichier\n" - -#~ msgid "option --index-collation-versions-unknown only works in binary upgrade mode" -#~ msgstr "l'option --index-collation-versions-unknown fonctionne seulement dans le mode de mise à jour binaire" - -#~ msgid "options --inserts/--column-inserts and -o/--oids cannot be used together\n" -#~ msgstr "" -#~ "les options « --inserts/--column-inserts » et « -o/--oids » ne\n" -#~ "peuvent pas être utilisées conjointement\n" - -#, c-format -#~ msgid "owner of aggregate function \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la fonction d'agrégat « %s » semble être invalide" - -#, c-format -#~ msgid "owner of data type \"%s\" appears to be invalid" -#~ msgstr "le propriétaire du type de données « %s » semble être invalide" - -#, c-format -#~ msgid "owner of function \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la fonction « %s » semble être invalide" - -#, c-format -#~ msgid "owner of operator \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de l'opérateur « %s » semble être invalide" - -#, c-format -#~ msgid "owner of operator class \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la classe d'opérateur « %s » semble être invalide" - -#, c-format -#~ msgid "owner of operator family \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la famille d'opérateur « %s » semble être invalide" - -#, c-format -#~ msgid "owner of publication \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la publication « %s » semble être invalide" - -#, c-format -#~ msgid "owner of schema \"%s\" appears to be invalid" -#~ msgstr "le propriétaire du schéma « %s » semble être invalide" - -#, c-format -#~ msgid "owner of subscription \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la souscription « %s » semble être invalide" - -#, c-format -#~ msgid "owner of table \"%s\" appears to be invalid" -#~ msgstr "le propriétaire de la table « %s » semble être invalide" - -#~ msgid "parallel archiver" -#~ msgstr "archiveur en parallèle" - -#~ msgid "parallel_restore should not return\n" -#~ msgstr "parallel_restore ne devrait pas retourner\n" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" - -#~ msgid "pclose failed: %s" -#~ msgstr "échec de pclose : %s" - -#~ msgid "query returned %d foreign server entry for foreign table \"%s\"\n" -#~ msgid_plural "query returned %d foreign server entries for foreign table \"%s\"\n" -#~ msgstr[0] "la requête a renvoyé %d entrée de serveur distant pour la table distante « %s »\n" -#~ msgstr[1] "la requête a renvoyé %d entrées de serveurs distants pour la table distante « %s »\n" - -#~ msgid "query returned %d row instead of one: %s\n" -#~ msgid_plural "query returned %d rows instead of one: %s\n" -#~ msgstr[0] "la requête a renvoyé %d ligne au lieu d'une seule : %s\n" -#~ msgstr[1] "la requête a renvoyé %d lignes au lieu d'une seule : %s\n" - -#~ msgid "query returned %d rows instead of one: %s\n" -#~ msgstr "la requête a renvoyé %d lignes au lieu d'une seule : %s\n" - -#~ msgid "query returned more than one (%d) pg_database entry for database \"%s\"\n" -#~ msgstr "" -#~ "la requête a renvoyé plusieurs (%d) entrées pg_database pour la base de\n" -#~ "données « %s »\n" - -#~ msgid "query returned no rows: %s\n" -#~ msgstr "la requête n'a renvoyé aucune ligne : %s\n" - -#~ msgid "query to get data of sequence \"%s\" returned name \"%s\"\n" -#~ msgstr "" -#~ "la requête permettant d'obtenir les données de la séquence « %s » a renvoyé\n" -#~ "le nom « %s »\n" - -#~ msgid "query was: %s\n" -#~ msgstr "la requête était : %s\n" - -#~ msgid "read %lu byte into lookahead buffer\n" -#~ msgid_plural "read %lu bytes into lookahead buffer\n" -#~ msgstr[0] "lecture de %lu octet dans le tampon prévisionnel\n" -#~ msgstr[1] "lecture de %lu octets dans le tampon prévisionnel\n" - -#~ msgid "read TOC entry %d (ID %d) for %s %s\n" -#~ msgstr "lecture de l'entrée %d de la TOC (ID %d) pour %s %s\n" - -#~ msgid "reading extended statistics for table \"%s.%s\"\n" -#~ msgstr "lecture des statistiques étendues pour la table « %s.%s »\n" - -#, c-format -#~ msgid "reading foreign key constraints for table \"%s.%s\"" -#~ msgstr "lecture des contraintes de clés étrangères pour la table « %s.%s »" - -#, c-format -#~ msgid "reading indexes for table \"%s.%s\"" -#~ msgstr "lecture des index de la table « %s.%s »" - -#~ msgid "reading policies for table \"%s.%s\"" -#~ msgstr "lecture des politiques pour la table « %s.%s »" - -#~ msgid "reading row security enabled for table \"%s.%s\"" -#~ msgstr "lecture de l'activation de la sécurité niveau ligne pour la table « %s.%s »" - -#, c-format -#~ msgid "reading triggers for table \"%s.%s\"" -#~ msgstr "lecture des triggers pour la table « %s.%s »" - -#~ msgid "reconnection to database \"%s\" failed: %s" -#~ msgstr "reconnexion à la base de données « %s » échouée : %s" - -#~ msgid "reducing dependencies for %d\n" -#~ msgstr "réduction des dépendances pour %d\n" - -#~ msgid "requested %d byte, got %d from lookahead and %d from file\n" -#~ msgid_plural "requested %d bytes, got %d from lookahead and %d from file\n" -#~ msgstr[0] "%d octet requis, %d obtenu de « lookahead » et %d du fichier\n" -#~ msgstr[1] "%d octets requis, %d obtenus de « lookahead » et %d du fichier\n" - -#~ msgid "restoring large object OID %u\n" -#~ msgstr "restauration du « Large Object » d'OID %u\n" - -#, c-format -#~ msgid "rows-per-insert must be in range %d..%d" -#~ msgstr "le nombre de lignes par insertion doit être compris entre %d et %d" - -#~ msgid "saving default_toast_compression = %s" -#~ msgstr "sauvegarde de default_toast_compression = %s" - -#~ msgid "saving large object properties\n" -#~ msgstr "sauvegarde des propriétés des « Large Objects »\n" - -#~ msgid "schema with OID %u does not exist\n" -#~ msgstr "le schéma d'OID %u n'existe pas\n" - -#~ msgid "select() failed: %m" -#~ msgstr "échec de select() : %m" - -#~ msgid "select() failed: %s\n" -#~ msgstr "échec de select() : %s\n" - -#~ msgid "server version must be at least 7.3 to use schema selection switches\n" -#~ msgstr "" -#~ "le serveur doit être de version 7.3 ou supérieure pour utiliser les options\n" -#~ "de sélection du schéma\n" - -#~ msgid "setting owner and privileges for %s \"%s\"\n" -#~ msgstr "réglage du propriétaire et des droits pour %s « %s »\n" - -#~ msgid "setting owner and privileges for %s \"%s.%s\"\n" -#~ msgstr "réglage du propriétaire et des droits pour %s « %s.%s»\n" - -#~ msgid "skipping tar member %s\n" -#~ msgstr "omission du membre %s du tar\n" - -#~ msgid "sorter" -#~ msgstr "tri" - -#~ msgid "tar archiver" -#~ msgstr "archiveur tar" - -#~ msgid "terminated by user\n" -#~ msgstr "terminé par l'utilisateur\n" - -#~ msgid "transferring dependency %d -> %d to %d\n" -#~ msgstr "transfert de la dépendance %d -> %d vers %d\n" - -#~ msgid "unexpected end of file\n" -#~ msgstr "fin de fichier inattendu\n" - -#~ msgid "unrecognized collation provider: %s\n" -#~ msgstr "fournisseur de collationnement non reconnu : %s\n" - -#~ msgid "unrecognized command on communication channel: %s\n" -#~ msgstr "commande inconnue sur le canal de communucation: %s\n" - -#~ msgid "worker is terminating\n" -#~ msgstr "le worker est en cours d'arrêt\n" - -#~ msgid "worker process crashed: status %d\n" -#~ msgstr "crash du processus worker : statut %d\n" diff --git a/src/bin/pg_dump/po/ru.po b/src/bin/pg_dump/po/ru.po index cc958eb8956..74f01a579ca 100644 --- a/src/bin/pg_dump/po/ru.po +++ b/src/bin/pg_dump/po/ru.po @@ -5,13 +5,13 @@ # Oleg Bartunov , 2004. # Sergey Burladyan , 2012. # Dmitriy Olshevskiy , 2014. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_dump (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-01 12:51+0300\n" -"PO-Revision-Date: 2023-08-30 14:18+0300\n" +"POT-Creation-Date: 2024-09-19 11:25+0300\n" +"PO-Revision-Date: 2024-09-07 07:35+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -119,7 +119,7 @@ msgstr "дочерний процесс завершён по сигналу %d: #: ../../common/wait_error.c:72 #, c-format msgid "child process exited with unrecognized status %d" -msgstr "дочерний процесс завершился с нераспознанным состоянием %d" +msgstr "дочерний процесс завершился с нераспознанным кодом состояния %d" #: ../../fe_utils/option_utils.c:69 #, c-format @@ -629,7 +629,7 @@ msgstr "восстановление большого объекта с OID %u" msgid "could not create large object %u: %s" msgstr "не удалось создать большой объект %u: %s" -#: pg_backup_archiver.c:1378 pg_dump.c:3629 +#: pg_backup_archiver.c:1378 pg_dump.c:3654 #, c-format msgid "could not open large object %u: %s" msgstr "не удалось открыть большой объект %u: %s" @@ -1113,7 +1113,7 @@ msgstr "ошибка в PQputCopyEnd: %s" msgid "COPY failed for table \"%s\": %s" msgstr "сбой команды COPY для таблицы \"%s\": %s" -#: pg_backup_db.c:522 pg_dump.c:2128 +#: pg_backup_db.c:522 pg_dump.c:2140 #, c-format msgid "unexpected extra results during COPY of table \"%s\"" msgstr "неожиданные лишние результаты получены при COPY для таблицы \"%s\"" @@ -1300,7 +1300,7 @@ msgstr "" msgid "unrecognized section name: \"%s\"" msgstr "нераспознанное имя раздела: \"%s\"" -#: pg_backup_utils.c:55 pg_dump.c:628 pg_dump.c:645 pg_dumpall.c:340 +#: pg_backup_utils.c:55 pg_dump.c:629 pg_dump.c:646 pg_dumpall.c:340 #: pg_dumpall.c:350 pg_dumpall.c:358 pg_dumpall.c:366 pg_dumpall.c:373 #: pg_dumpall.c:383 pg_dumpall.c:458 pg_restore.c:291 pg_restore.c:307 #: pg_restore.c:321 @@ -1313,41 +1313,41 @@ msgstr "Для дополнительной информации попробу msgid "out of on_exit_nicely slots" msgstr "превышен предел обработчиков штатного выхода" -#: pg_dump.c:643 pg_dumpall.c:348 pg_restore.c:305 +#: pg_dump.c:644 pg_dumpall.c:348 pg_restore.c:305 #, c-format msgid "too many command-line arguments (first is \"%s\")" msgstr "слишком много аргументов командной строки (первый: \"%s\")" -#: pg_dump.c:662 pg_restore.c:328 +#: pg_dump.c:663 pg_restore.c:328 #, c-format msgid "options -s/--schema-only and -a/--data-only cannot be used together" msgstr "параметры -s/--schema-only и -a/--data-only исключают друг друга" -#: pg_dump.c:665 +#: pg_dump.c:666 #, c-format msgid "" "options -s/--schema-only and --include-foreign-data cannot be used together" msgstr "" "параметры -s/--schema-only и --include-foreign-data исключают друг друга" -#: pg_dump.c:668 +#: pg_dump.c:669 #, c-format msgid "option --include-foreign-data is not supported with parallel backup" msgstr "" "параметр --include-foreign-data не поддерживается при копировании в " "параллельном режиме" -#: pg_dump.c:671 pg_restore.c:331 +#: pg_dump.c:672 pg_restore.c:331 #, c-format msgid "options -c/--clean and -a/--data-only cannot be used together" msgstr "параметры -c/--clean и -a/--data-only исключают друг друга" -#: pg_dump.c:674 pg_dumpall.c:378 pg_restore.c:356 +#: pg_dump.c:675 pg_dumpall.c:378 pg_restore.c:356 #, c-format msgid "option --if-exists requires option -c/--clean" msgstr "параметр --if-exists требует указания -c/--clean" -#: pg_dump.c:681 +#: pg_dump.c:682 #, c-format msgid "" "option --on-conflict-do-nothing requires option --inserts, --rows-per-" @@ -1356,7 +1356,7 @@ msgstr "" "параметр --on-conflict-do-nothing требует указания --inserts, --rows-per-" "insert или --column-inserts" -#: pg_dump.c:703 +#: pg_dump.c:704 #, c-format msgid "" "requested compression not available in this installation -- archive will be " @@ -1365,34 +1365,34 @@ msgstr "" "установленная версия программы не поддерживает сжатие -- архив не будет " "сжиматься" -#: pg_dump.c:716 +#: pg_dump.c:717 #, c-format msgid "parallel backup only supported by the directory format" msgstr "" "параллельное резервное копирование поддерживается только с форматом " "\"каталог\"" -#: pg_dump.c:762 +#: pg_dump.c:763 #, c-format msgid "last built-in OID is %u" msgstr "последний системный OID: %u" -#: pg_dump.c:771 +#: pg_dump.c:772 #, c-format msgid "no matching schemas were found" msgstr "соответствующие схемы не найдены" -#: pg_dump.c:785 +#: pg_dump.c:786 #, c-format msgid "no matching tables were found" msgstr "соответствующие таблицы не найдены" -#: pg_dump.c:807 +#: pg_dump.c:808 #, c-format msgid "no matching extensions were found" msgstr "соответствующие расширения не найдены" -#: pg_dump.c:990 +#: pg_dump.c:991 #, c-format msgid "" "%s dumps a database as a text file or to other formats.\n" @@ -1401,17 +1401,17 @@ msgstr "" "%s сохраняет резервную копию БД в текстовом файле или другом виде.\n" "\n" -#: pg_dump.c:991 pg_dumpall.c:605 pg_restore.c:433 +#: pg_dump.c:992 pg_dumpall.c:605 pg_restore.c:433 #, c-format msgid "Usage:\n" msgstr "Использование:\n" -#: pg_dump.c:992 +#: pg_dump.c:993 #, c-format msgid " %s [OPTION]... [DBNAME]\n" msgstr " %s [ПАРАМЕТР]... [ИМЯ_БД]\n" -#: pg_dump.c:994 pg_dumpall.c:608 pg_restore.c:436 +#: pg_dump.c:995 pg_dumpall.c:608 pg_restore.c:436 #, c-format msgid "" "\n" @@ -1420,12 +1420,12 @@ msgstr "" "\n" "Общие параметры:\n" -#: pg_dump.c:995 +#: pg_dump.c:996 #, c-format msgid " -f, --file=FILENAME output file or directory name\n" msgstr " -f, --file=ИМЯ имя выходного файла или каталога\n" -#: pg_dump.c:996 +#: pg_dump.c:997 #, c-format msgid "" " -F, --format=c|d|t|p output file format (custom, directory, tar,\n" @@ -1435,7 +1435,7 @@ msgstr "" " (пользовательский | каталог | tar |\n" " текстовый (по умолчанию))\n" -#: pg_dump.c:998 +#: pg_dump.c:999 #, c-format msgid " -j, --jobs=NUM use this many parallel jobs to dump\n" msgstr "" @@ -1443,23 +1443,23 @@ msgstr "" "число\n" " заданий\n" -#: pg_dump.c:999 pg_dumpall.c:610 +#: pg_dump.c:1000 pg_dumpall.c:610 #, c-format msgid " -v, --verbose verbose mode\n" msgstr " -v, --verbose режим подробных сообщений\n" -#: pg_dump.c:1000 pg_dumpall.c:611 +#: pg_dump.c:1001 pg_dumpall.c:611 #, c-format msgid " -V, --version output version information, then exit\n" msgstr " -V, --version показать версию и выйти\n" -#: pg_dump.c:1001 +#: pg_dump.c:1002 #, c-format msgid "" " -Z, --compress=0-9 compression level for compressed formats\n" msgstr " -Z, --compress=0-9 уровень сжатия при архивации\n" -#: pg_dump.c:1002 pg_dumpall.c:612 +#: pg_dump.c:1003 pg_dumpall.c:612 #, c-format msgid "" " --lock-wait-timeout=TIMEOUT fail after waiting TIMEOUT for a table lock\n" @@ -1467,7 +1467,7 @@ msgstr "" " --lock-wait-timeout=ТАЙМ-АУТ прервать операцию при тайм-ауте блокировки " "таблицы\n" -#: pg_dump.c:1003 pg_dumpall.c:639 +#: pg_dump.c:1004 pg_dumpall.c:639 #, c-format msgid "" " --no-sync do not wait for changes to be written safely " @@ -1476,12 +1476,12 @@ msgstr "" " --no-sync не ждать надёжного сохранения изменений на " "диске\n" -#: pg_dump.c:1004 pg_dumpall.c:613 +#: pg_dump.c:1005 pg_dumpall.c:613 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help показать эту справку и выйти\n" -#: pg_dump.c:1006 pg_dumpall.c:614 +#: pg_dump.c:1007 pg_dumpall.c:614 #, c-format msgid "" "\n" @@ -1490,22 +1490,22 @@ msgstr "" "\n" "Параметры, управляющие выводом:\n" -#: pg_dump.c:1007 pg_dumpall.c:615 +#: pg_dump.c:1008 pg_dumpall.c:615 #, c-format msgid " -a, --data-only dump only the data, not the schema\n" msgstr " -a, --data-only выгрузить только данные, без схемы\n" -#: pg_dump.c:1008 +#: pg_dump.c:1009 #, c-format msgid " -b, --blobs include large objects in dump\n" msgstr " -b, --blobs выгрузить также большие объекты\n" -#: pg_dump.c:1009 +#: pg_dump.c:1010 #, c-format msgid " -B, --no-blobs exclude large objects in dump\n" msgstr " -B, --no-blobs исключить из выгрузки большие объекты\n" -#: pg_dump.c:1010 pg_restore.c:447 +#: pg_dump.c:1011 pg_restore.c:447 #, c-format msgid "" " -c, --clean clean (drop) database objects before " @@ -1514,7 +1514,7 @@ msgstr "" " -c, --clean очистить (удалить) объекты БД при " "восстановлении\n" -#: pg_dump.c:1011 +#: pg_dump.c:1012 #, c-format msgid "" " -C, --create include commands to create database in dump\n" @@ -1522,28 +1522,28 @@ msgstr "" " -C, --create добавить в копию команды создания базы " "данных\n" -#: pg_dump.c:1012 +#: pg_dump.c:1013 #, c-format msgid " -e, --extension=PATTERN dump the specified extension(s) only\n" msgstr "" " -e, --extension=ШАБЛОН выгрузить только указанное расширение(я)\n" -#: pg_dump.c:1013 pg_dumpall.c:617 +#: pg_dump.c:1014 pg_dumpall.c:617 #, c-format msgid " -E, --encoding=ENCODING dump the data in encoding ENCODING\n" msgstr " -E, --encoding=КОДИРОВКА выгружать данные в заданной кодировке\n" -#: pg_dump.c:1014 +#: pg_dump.c:1015 #, c-format msgid " -n, --schema=PATTERN dump the specified schema(s) only\n" msgstr " -n, --schema=ШАБЛОН выгрузить только указанную схему(ы)\n" -#: pg_dump.c:1015 +#: pg_dump.c:1016 #, c-format msgid " -N, --exclude-schema=PATTERN do NOT dump the specified schema(s)\n" msgstr " -N, --exclude-schema=ШАБЛОН НЕ выгружать указанную схему(ы)\n" -#: pg_dump.c:1016 +#: pg_dump.c:1017 #, c-format msgid "" " -O, --no-owner skip restoration of object ownership in\n" @@ -1552,12 +1552,12 @@ msgstr "" " -O, --no-owner не восстанавливать владение объектами\n" " при использовании текстового формата\n" -#: pg_dump.c:1018 pg_dumpall.c:621 +#: pg_dump.c:1019 pg_dumpall.c:621 #, c-format msgid " -s, --schema-only dump only the schema, no data\n" msgstr " -s, --schema-only выгрузить только схему, без данных\n" -#: pg_dump.c:1019 +#: pg_dump.c:1020 #, c-format msgid "" " -S, --superuser=NAME superuser user name to use in plain-text " @@ -1566,27 +1566,27 @@ msgstr "" " -S, --superuser=ИМЯ имя пользователя, который будет задействован\n" " при восстановлении из текстового формата\n" -#: pg_dump.c:1020 +#: pg_dump.c:1021 #, c-format msgid " -t, --table=PATTERN dump the specified table(s) only\n" msgstr " -t, --table=ШАБЛОН выгрузить только указанную таблицу(ы)\n" -#: pg_dump.c:1021 +#: pg_dump.c:1022 #, c-format msgid " -T, --exclude-table=PATTERN do NOT dump the specified table(s)\n" msgstr " -T, --exclude-table=ШАБЛОН НЕ выгружать указанную таблицу(ы)\n" -#: pg_dump.c:1022 pg_dumpall.c:624 +#: pg_dump.c:1023 pg_dumpall.c:624 #, c-format msgid " -x, --no-privileges do not dump privileges (grant/revoke)\n" msgstr " -x, --no-privileges не выгружать права (назначение/отзыв)\n" -#: pg_dump.c:1023 pg_dumpall.c:625 +#: pg_dump.c:1024 pg_dumpall.c:625 #, c-format msgid " --binary-upgrade for use by upgrade utilities only\n" msgstr " --binary-upgrade только для утилит обновления БД\n" -#: pg_dump.c:1024 pg_dumpall.c:626 +#: pg_dump.c:1025 pg_dumpall.c:626 #, c-format msgid "" " --column-inserts dump data as INSERT commands with column " @@ -1595,7 +1595,7 @@ msgstr "" " --column-inserts выгружать данные в виде INSERT с именами " "столбцов\n" -#: pg_dump.c:1025 pg_dumpall.c:627 +#: pg_dump.c:1026 pg_dumpall.c:627 #, c-format msgid "" " --disable-dollar-quoting disable dollar quoting, use SQL standard " @@ -1604,7 +1604,7 @@ msgstr "" " --disable-dollar-quoting отключить спецстроки с $, выводить строки\n" " по стандарту SQL\n" -#: pg_dump.c:1026 pg_dumpall.c:628 pg_restore.c:464 +#: pg_dump.c:1027 pg_dumpall.c:628 pg_restore.c:464 #, c-format msgid "" " --disable-triggers disable triggers during data-only restore\n" @@ -1612,7 +1612,7 @@ msgstr "" " --disable-triggers отключить триггеры при восстановлении\n" " только данных, без схемы\n" -#: pg_dump.c:1027 +#: pg_dump.c:1028 #, c-format msgid "" " --enable-row-security enable row security (dump only content user " @@ -1623,7 +1623,7 @@ msgstr "" "только\n" " те данные, которые доступны пользователю)\n" -#: pg_dump.c:1029 +#: pg_dump.c:1030 #, c-format msgid "" " --exclude-table-data=PATTERN do NOT dump data for the specified table(s)\n" @@ -1631,7 +1631,7 @@ msgstr "" " --exclude-table-data=ШАБЛОН НЕ выгружать данные указанной таблицы " "(таблиц)\n" -#: pg_dump.c:1030 pg_dumpall.c:630 +#: pg_dump.c:1031 pg_dumpall.c:630 #, c-format msgid "" " --extra-float-digits=NUM override default setting for " @@ -1639,13 +1639,13 @@ msgid "" msgstr "" " --extra-float-digits=ЧИСЛО переопределить значение extra_float_digits\n" -#: pg_dump.c:1031 pg_dumpall.c:631 pg_restore.c:466 +#: pg_dump.c:1032 pg_dumpall.c:631 pg_restore.c:466 #, c-format msgid " --if-exists use IF EXISTS when dropping objects\n" msgstr "" " --if-exists применять IF EXISTS при удалении объектов\n" -#: pg_dump.c:1032 +#: pg_dump.c:1033 #, c-format msgid "" " --include-foreign-data=PATTERN\n" @@ -1656,7 +1656,7 @@ msgstr "" " включать в копию данные сторонних таблиц с\n" " серверов с именами, подпадающими под ШАБЛОН\n" -#: pg_dump.c:1035 pg_dumpall.c:632 +#: pg_dump.c:1036 pg_dumpall.c:632 #, c-format msgid "" " --inserts dump data as INSERT commands, rather than " @@ -1665,57 +1665,57 @@ msgstr "" " --inserts выгрузить данные в виде команд INSERT, не " "COPY\n" -#: pg_dump.c:1036 pg_dumpall.c:633 +#: pg_dump.c:1037 pg_dumpall.c:633 #, c-format msgid " --load-via-partition-root load partitions via the root table\n" msgstr "" " --load-via-partition-root загружать секции через главную таблицу\n" -#: pg_dump.c:1037 pg_dumpall.c:634 +#: pg_dump.c:1038 pg_dumpall.c:634 #, c-format msgid " --no-comments do not dump comments\n" msgstr " --no-comments не выгружать комментарии\n" -#: pg_dump.c:1038 pg_dumpall.c:635 +#: pg_dump.c:1039 pg_dumpall.c:635 #, c-format msgid " --no-publications do not dump publications\n" msgstr " --no-publications не выгружать публикации\n" -#: pg_dump.c:1039 pg_dumpall.c:637 +#: pg_dump.c:1040 pg_dumpall.c:637 #, c-format msgid " --no-security-labels do not dump security label assignments\n" msgstr "" " --no-security-labels не выгружать назначения меток безопасности\n" -#: pg_dump.c:1040 pg_dumpall.c:638 +#: pg_dump.c:1041 pg_dumpall.c:638 #, c-format msgid " --no-subscriptions do not dump subscriptions\n" msgstr " --no-subscriptions не выгружать подписки\n" -#: pg_dump.c:1041 pg_dumpall.c:640 +#: pg_dump.c:1042 pg_dumpall.c:640 #, c-format msgid " --no-table-access-method do not dump table access methods\n" msgstr " --no-table-access-method не выгружать табличные методы доступа\n" -#: pg_dump.c:1042 pg_dumpall.c:641 +#: pg_dump.c:1043 pg_dumpall.c:641 #, c-format msgid " --no-tablespaces do not dump tablespace assignments\n" msgstr "" " --no-tablespaces не выгружать назначения табличных " "пространств\n" -#: pg_dump.c:1043 pg_dumpall.c:642 +#: pg_dump.c:1044 pg_dumpall.c:642 #, c-format msgid " --no-toast-compression do not dump TOAST compression methods\n" msgstr " --no-toast-compression не выгружать методы сжатия TOAST\n" -#: pg_dump.c:1044 pg_dumpall.c:643 +#: pg_dump.c:1045 pg_dumpall.c:643 #, c-format msgid " --no-unlogged-table-data do not dump unlogged table data\n" msgstr "" " --no-unlogged-table-data не выгружать данные нежурналируемых таблиц\n" -#: pg_dump.c:1045 pg_dumpall.c:644 +#: pg_dump.c:1046 pg_dumpall.c:644 #, c-format msgid "" " --on-conflict-do-nothing add ON CONFLICT DO NOTHING to INSERT " @@ -1724,7 +1724,7 @@ msgstr "" " --on-conflict-do-nothing добавлять ON CONFLICT DO NOTHING в команды " "INSERT\n" -#: pg_dump.c:1046 pg_dumpall.c:645 +#: pg_dump.c:1047 pg_dumpall.c:645 #, c-format msgid "" " --quote-all-identifiers quote all identifiers, even if not key words\n" @@ -1732,7 +1732,7 @@ msgstr "" " --quote-all-identifiers заключать в кавычки все идентификаторы,\n" " а не только ключевые слова\n" -#: pg_dump.c:1047 pg_dumpall.c:646 +#: pg_dump.c:1048 pg_dumpall.c:646 #, c-format msgid "" " --rows-per-insert=NROWS number of rows per INSERT; implies --inserts\n" @@ -1740,7 +1740,7 @@ msgstr "" " --rows-per-insert=ЧИСЛО число строк в одном INSERT; подразумевает --" "inserts\n" -#: pg_dump.c:1048 +#: pg_dump.c:1049 #, c-format msgid "" " --section=SECTION dump named section (pre-data, data, or post-" @@ -1749,7 +1749,7 @@ msgstr "" " --section=РАЗДЕЛ выгрузить заданный раздел\n" " (pre-data, data или post-data)\n" -#: pg_dump.c:1049 +#: pg_dump.c:1050 #, c-format msgid "" " --serializable-deferrable wait until the dump can run without " @@ -1758,13 +1758,13 @@ msgstr "" " --serializable-deferrable дождаться момента для выгрузки данных без " "аномалий\n" -#: pg_dump.c:1050 +#: pg_dump.c:1051 #, c-format msgid " --snapshot=SNAPSHOT use given snapshot for the dump\n" msgstr "" " --snapshot=СНИМОК использовать при выгрузке заданный снимок\n" -#: pg_dump.c:1051 pg_restore.c:476 +#: pg_dump.c:1052 pg_restore.c:476 #, c-format msgid "" " --strict-names require table and/or schema include patterns " @@ -1777,7 +1777,7 @@ msgstr "" "минимум\n" " один объект\n" -#: pg_dump.c:1053 pg_dumpall.c:647 pg_restore.c:478 +#: pg_dump.c:1054 pg_dumpall.c:647 pg_restore.c:478 #, c-format msgid "" " --use-set-session-authorization\n" @@ -1789,7 +1789,7 @@ msgstr "" " устанавливать владельца, используя команды\n" " SET SESSION AUTHORIZATION вместо ALTER OWNER\n" -#: pg_dump.c:1057 pg_dumpall.c:651 pg_restore.c:482 +#: pg_dump.c:1058 pg_dumpall.c:651 pg_restore.c:482 #, c-format msgid "" "\n" @@ -1798,33 +1798,34 @@ msgstr "" "\n" "Параметры подключения:\n" -#: pg_dump.c:1058 +#: pg_dump.c:1059 #, c-format msgid " -d, --dbname=DBNAME database to dump\n" msgstr " -d, --dbname=БД имя базы данных для выгрузки\n" -#: pg_dump.c:1059 pg_dumpall.c:653 pg_restore.c:483 +#: pg_dump.c:1060 pg_dumpall.c:653 pg_restore.c:483 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" -#: pg_dump.c:1060 pg_dumpall.c:655 pg_restore.c:484 +#: pg_dump.c:1061 pg_dumpall.c:655 pg_restore.c:484 #, c-format msgid " -p, --port=PORT database server port number\n" msgstr " -p, --port=ПОРТ номер порта сервера БД\n" -#: pg_dump.c:1061 pg_dumpall.c:656 pg_restore.c:485 +#: pg_dump.c:1062 pg_dumpall.c:656 pg_restore.c:485 #, c-format msgid " -U, --username=NAME connect as specified database user\n" msgstr " -U, --username=ИМЯ имя пользователя баз данных\n" -#: pg_dump.c:1062 pg_dumpall.c:657 pg_restore.c:486 +#: pg_dump.c:1063 pg_dumpall.c:657 pg_restore.c:486 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password не запрашивать пароль\n" -#: pg_dump.c:1063 pg_dumpall.c:658 pg_restore.c:487 +#: pg_dump.c:1064 pg_dumpall.c:658 pg_restore.c:487 #, c-format msgid "" " -W, --password force password prompt (should happen " @@ -1832,12 +1833,12 @@ msgid "" msgstr "" " -W, --password запрашивать пароль всегда (обычно не требуется)\n" -#: pg_dump.c:1064 pg_dumpall.c:659 +#: pg_dump.c:1065 pg_dumpall.c:659 #, c-format msgid " --role=ROLENAME do SET ROLE before dump\n" msgstr " --role=ИМЯ_РОЛИ выполнить SET ROLE перед выгрузкой\n" -#: pg_dump.c:1066 +#: pg_dump.c:1067 #, c-format msgid "" "\n" @@ -1850,22 +1851,22 @@ msgstr "" "PGDATABASE.\n" "\n" -#: pg_dump.c:1068 pg_dumpall.c:663 pg_restore.c:494 +#: pg_dump.c:1069 pg_dumpall.c:663 pg_restore.c:494 #, c-format msgid "Report bugs to <%s>.\n" msgstr "Об ошибках сообщайте по адресу <%s>.\n" -#: pg_dump.c:1069 pg_dumpall.c:664 pg_restore.c:495 +#: pg_dump.c:1070 pg_dumpall.c:664 pg_restore.c:495 #, c-format msgid "%s home page: <%s>\n" msgstr "Домашняя страница %s: <%s>\n" -#: pg_dump.c:1088 pg_dumpall.c:488 +#: pg_dump.c:1089 pg_dumpall.c:488 #, c-format msgid "invalid client encoding \"%s\" specified" msgstr "указана неверная клиентская кодировка \"%s\"" -#: pg_dump.c:1226 +#: pg_dump.c:1234 #, c-format msgid "" "parallel dumps from standby servers are not supported by this server version" @@ -1873,160 +1874,160 @@ msgstr "" "выгрузка дампа в параллельном режиме с ведомых серверов не поддерживается " "данной версией сервера" -#: pg_dump.c:1291 +#: pg_dump.c:1299 #, c-format msgid "invalid output format \"%s\" specified" msgstr "указан неверный формат вывода: \"%s\"" -#: pg_dump.c:1332 pg_dump.c:1388 pg_dump.c:1441 pg_dumpall.c:1285 +#: pg_dump.c:1340 pg_dump.c:1396 pg_dump.c:1449 pg_dumpall.c:1285 #, c-format msgid "improper qualified name (too many dotted names): %s" msgstr "неверное полное имя (слишком много компонентов): %s" -#: pg_dump.c:1340 +#: pg_dump.c:1348 #, c-format msgid "no matching schemas were found for pattern \"%s\"" msgstr "схемы, соответствующие шаблону \"%s\", не найдены" -#: pg_dump.c:1393 +#: pg_dump.c:1401 #, c-format msgid "no matching extensions were found for pattern \"%s\"" msgstr "расширения, соответствующие шаблону \"%s\", не найдены" -#: pg_dump.c:1446 +#: pg_dump.c:1454 #, c-format msgid "no matching foreign servers were found for pattern \"%s\"" msgstr "сторонние серверы, соответствующие шаблону \"%s\", не найдены" -#: pg_dump.c:1509 +#: pg_dump.c:1517 #, c-format msgid "improper relation name (too many dotted names): %s" msgstr "неверное имя отношения (слишком много компонентов): %s" -#: pg_dump.c:1520 +#: pg_dump.c:1528 #, c-format msgid "no matching tables were found for pattern \"%s\"" msgstr "таблицы, соответствующие шаблону \"%s\", не найдены" -#: pg_dump.c:1547 +#: pg_dump.c:1555 #, c-format msgid "You are currently not connected to a database." msgstr "В данный момент вы не подключены к базе данных." -#: pg_dump.c:1550 +#: pg_dump.c:1558 #, c-format msgid "cross-database references are not implemented: %s" msgstr "ссылки между базами не реализованы: %s" -#: pg_dump.c:2003 +#: pg_dump.c:2011 #, c-format msgid "dumping contents of table \"%s.%s\"" msgstr "выгрузка содержимого таблицы \"%s.%s\"" -#: pg_dump.c:2109 +#: pg_dump.c:2121 #, c-format msgid "Dumping the contents of table \"%s\" failed: PQgetCopyData() failed." msgstr "Ошибка выгрузки таблицы \"%s\": сбой в PQgetCopyData()." -#: pg_dump.c:2110 pg_dump.c:2120 +#: pg_dump.c:2122 pg_dump.c:2132 #, c-format msgid "Error message from server: %s" msgstr "Сообщение об ошибке с сервера: %s" # skip-rule: language-mix -#: pg_dump.c:2111 pg_dump.c:2121 +#: pg_dump.c:2123 pg_dump.c:2133 #, c-format msgid "Command was: %s" msgstr "Выполнялась команда: %s" -#: pg_dump.c:2119 +#: pg_dump.c:2131 #, c-format msgid "Dumping the contents of table \"%s\" failed: PQgetResult() failed." msgstr "Ошибка выгрузки таблицы \"%s\": сбой в PQgetResult()." -#: pg_dump.c:2201 +#: pg_dump.c:2222 #, c-format msgid "wrong number of fields retrieved from table \"%s\"" msgstr "из таблицы \"%s\" получено неверное количество полей" -#: pg_dump.c:2897 +#: pg_dump.c:2922 #, c-format msgid "saving database definition" msgstr "сохранение определения базы данных" -#: pg_dump.c:2993 +#: pg_dump.c:3018 #, c-format msgid "unrecognized locale provider: %s" msgstr "нераспознанный провайдер локали: %s" -#: pg_dump.c:3339 +#: pg_dump.c:3364 #, c-format msgid "saving encoding = %s" msgstr "сохранение кодировки (%s)" -#: pg_dump.c:3364 +#: pg_dump.c:3389 #, c-format msgid "saving standard_conforming_strings = %s" msgstr "сохранение standard_conforming_strings (%s)" -#: pg_dump.c:3403 +#: pg_dump.c:3428 #, c-format msgid "could not parse result of current_schemas()" msgstr "не удалось разобрать результат current_schemas()" -#: pg_dump.c:3422 +#: pg_dump.c:3447 #, c-format msgid "saving search_path = %s" msgstr "сохранение search_path = %s" -#: pg_dump.c:3460 +#: pg_dump.c:3485 #, c-format msgid "reading large objects" msgstr "чтение больших объектов" -#: pg_dump.c:3598 +#: pg_dump.c:3623 #, c-format msgid "saving large objects" msgstr "сохранение больших объектов" -#: pg_dump.c:3639 +#: pg_dump.c:3664 #, c-format msgid "error reading large object %u: %s" msgstr "ошибка чтения большого объекта %u: %s" -#: pg_dump.c:3745 +#: pg_dump.c:3770 #, c-format msgid "reading row-level security policies" msgstr "чтение политик защиты на уровне строк" -#: pg_dump.c:3886 +#: pg_dump.c:3911 #, c-format msgid "unexpected policy command type: %c" msgstr "нераспознанный тип команды в политике: %c" -#: pg_dump.c:4336 pg_dump.c:4654 pg_dump.c:11861 pg_dump.c:17750 -#: pg_dump.c:17752 pg_dump.c:18373 +#: pg_dump.c:4361 pg_dump.c:4701 pg_dump.c:11908 pg_dump.c:17798 +#: pg_dump.c:17800 pg_dump.c:18421 #, c-format msgid "could not parse %s array" msgstr "не удалось разобрать массив %s" -#: pg_dump.c:4522 +#: pg_dump.c:4569 #, c-format msgid "subscriptions not dumped because current user is not a superuser" msgstr "" "подписки не выгружены, так как текущий пользователь не суперпользователь" -#: pg_dump.c:5036 +#: pg_dump.c:5083 #, c-format msgid "could not find parent extension for %s %s" msgstr "не удалось найти родительское расширение для %s %s" -#: pg_dump.c:5181 +#: pg_dump.c:5228 #, c-format msgid "schema with OID %u does not exist" msgstr "схема с OID %u не существует" -#: pg_dump.c:6637 pg_dump.c:17014 +#: pg_dump.c:6684 pg_dump.c:17062 #, c-format msgid "" "failed sanity check, parent table with OID %u of sequence with OID %u not " @@ -2035,7 +2036,7 @@ msgstr "" "нарушение целостности: по OID %u не удалось найти родительскую таблицу " "последовательности с OID %u" -#: pg_dump.c:6780 +#: pg_dump.c:6827 #, c-format msgid "" "failed sanity check, table OID %u appearing in pg_partitioned_table not found" @@ -2043,18 +2044,18 @@ msgstr "" "нарушение целостности: таблица с OID %u, фигурирующим в " "pg_partitioned_table, не найдена" -#: pg_dump.c:7011 pg_dump.c:7282 pg_dump.c:7753 pg_dump.c:8420 pg_dump.c:8541 -#: pg_dump.c:8695 +#: pg_dump.c:7058 pg_dump.c:7329 pg_dump.c:7800 pg_dump.c:8467 pg_dump.c:8588 +#: pg_dump.c:8742 #, c-format msgid "unrecognized table OID %u" msgstr "нераспознанный OID таблицы %u" -#: pg_dump.c:7015 +#: pg_dump.c:7062 #, c-format msgid "unexpected index data for table \"%s\"" msgstr "неожиданно получены данные индекса для таблицы \"%s\"" -#: pg_dump.c:7514 +#: pg_dump.c:7561 #, c-format msgid "" "failed sanity check, parent table with OID %u of pg_rewrite entry with OID " @@ -2063,7 +2064,7 @@ msgstr "" "нарушение целостности: по OID %u не удалось найти родительскую таблицу для " "записи pg_rewrite с OID %u" -#: pg_dump.c:7805 +#: pg_dump.c:7852 #, c-format msgid "" "query produced null referenced table name for foreign key trigger \"%s\" on " @@ -2072,32 +2073,32 @@ msgstr "" "запрос выдал NULL вместо имени целевой таблицы для триггера внешнего ключа " "\"%s\" в таблице \"%s\" (OID целевой таблицы: %u)" -#: pg_dump.c:8424 +#: pg_dump.c:8471 #, c-format msgid "unexpected column data for table \"%s\"" msgstr "неожиданно получены данные столбцов для таблицы \"%s\"" -#: pg_dump.c:8454 +#: pg_dump.c:8501 #, c-format msgid "invalid column numbering in table \"%s\"" msgstr "неверная нумерация столбцов в таблице \"%s\"" -#: pg_dump.c:8503 +#: pg_dump.c:8550 #, c-format msgid "finding table default expressions" msgstr "поиск выражений по умолчанию для таблиц" -#: pg_dump.c:8545 +#: pg_dump.c:8592 #, c-format msgid "invalid adnum value %d for table \"%s\"" msgstr "неверное значение adnum (%d) в таблице \"%s\"" -#: pg_dump.c:8645 +#: pg_dump.c:8692 #, c-format msgid "finding table check constraints" msgstr "поиск ограничений-проверок для таблиц" -#: pg_dump.c:8699 +#: pg_dump.c:8746 #, c-format msgid "expected %d check constraint on table \"%s\" but found %d" msgid_plural "expected %d check constraints on table \"%s\" but found %d" @@ -2108,54 +2109,54 @@ msgstr[1] "" msgstr[2] "" "ожидалось %d ограничений-проверок для таблицы \"%s\", но найдено: %d" -#: pg_dump.c:8703 +#: pg_dump.c:8750 #, c-format msgid "The system catalogs might be corrupted." msgstr "Возможно, повреждены системные каталоги." -#: pg_dump.c:9393 +#: pg_dump.c:9440 #, c-format msgid "role with OID %u does not exist" msgstr "роль с OID %u не существует" -#: pg_dump.c:9505 pg_dump.c:9534 +#: pg_dump.c:9552 pg_dump.c:9581 #, c-format msgid "unsupported pg_init_privs entry: %u %u %d" msgstr "неподдерживаемая запись в pg_init_privs: %u %u %d" -#: pg_dump.c:10355 +#: pg_dump.c:10402 #, c-format msgid "typtype of data type \"%s\" appears to be invalid" msgstr "у типа данных \"%s\" по-видимому неправильный тип типа" # TO REVEIW -#: pg_dump.c:11930 +#: pg_dump.c:11977 #, c-format msgid "unrecognized provolatile value for function \"%s\"" msgstr "недопустимое значение provolatile для функции \"%s\"" # TO REVEIW -#: pg_dump.c:11980 pg_dump.c:13843 +#: pg_dump.c:12027 pg_dump.c:13890 #, c-format msgid "unrecognized proparallel value for function \"%s\"" msgstr "недопустимое значение proparallel для функции \"%s\"" -#: pg_dump.c:12112 pg_dump.c:12218 pg_dump.c:12225 +#: pg_dump.c:12159 pg_dump.c:12265 pg_dump.c:12272 #, c-format msgid "could not find function definition for function with OID %u" msgstr "не удалось найти определение функции для функции с OID %u" -#: pg_dump.c:12151 +#: pg_dump.c:12198 #, c-format msgid "bogus value in pg_cast.castfunc or pg_cast.castmethod field" msgstr "неприемлемое значение в поле pg_cast.castfunc или pg_cast.castmethod" -#: pg_dump.c:12154 +#: pg_dump.c:12201 #, c-format msgid "bogus value in pg_cast.castmethod field" msgstr "неприемлемое значение в поле pg_cast.castmethod" -#: pg_dump.c:12244 +#: pg_dump.c:12291 #, c-format msgid "" "bogus transform definition, at least one of trffromsql and trftosql should " @@ -2164,62 +2165,62 @@ msgstr "" "неприемлемое определение преобразования (trffromsql или trftosql должно быть " "ненулевым)" -#: pg_dump.c:12261 +#: pg_dump.c:12308 #, c-format msgid "bogus value in pg_transform.trffromsql field" msgstr "неприемлемое значение в поле pg_transform.trffromsql" -#: pg_dump.c:12282 +#: pg_dump.c:12329 #, c-format msgid "bogus value in pg_transform.trftosql field" msgstr "неприемлемое значение в поле pg_transform.trftosql" -#: pg_dump.c:12427 +#: pg_dump.c:12474 #, c-format msgid "postfix operators are not supported anymore (operator \"%s\")" msgstr "постфиксные операторы больше не поддерживаются (оператор \"%s\")" -#: pg_dump.c:12597 +#: pg_dump.c:12644 #, c-format msgid "could not find operator with OID %s" msgstr "оператор с OID %s не найден" -#: pg_dump.c:12665 +#: pg_dump.c:12712 #, c-format msgid "invalid type \"%c\" of access method \"%s\"" msgstr "неверный тип \"%c\" метода доступа \"%s\"" -#: pg_dump.c:13319 pg_dump.c:13372 +#: pg_dump.c:13366 pg_dump.c:13419 #, c-format msgid "unrecognized collation provider: %s" msgstr "нераспознанный провайдер правил сортировки: %s" -#: pg_dump.c:13328 pg_dump.c:13337 pg_dump.c:13347 pg_dump.c:13356 +#: pg_dump.c:13375 pg_dump.c:13384 pg_dump.c:13394 pg_dump.c:13403 #, c-format msgid "invalid collation \"%s\"" msgstr "неверное правило сортировки \"%s\"" -#: pg_dump.c:13762 +#: pg_dump.c:13809 #, c-format msgid "unrecognized aggfinalmodify value for aggregate \"%s\"" msgstr "нераспознанное значение aggfinalmodify для агрегата \"%s\"" -#: pg_dump.c:13818 +#: pg_dump.c:13865 #, c-format msgid "unrecognized aggmfinalmodify value for aggregate \"%s\"" msgstr "нераспознанное значение aggmfinalmodify для агрегата \"%s\"" -#: pg_dump.c:14536 +#: pg_dump.c:14583 #, c-format msgid "unrecognized object type in default privileges: %d" msgstr "нераспознанный тип объекта в определении прав по умолчанию: %d" -#: pg_dump.c:14552 +#: pg_dump.c:14599 #, c-format msgid "could not parse default ACL list (%s)" msgstr "не удалось разобрать список прав по умолчанию (%s)" -#: pg_dump.c:14634 +#: pg_dump.c:14681 #, c-format msgid "" "could not parse initial ACL list (%s) or default (%s) for object \"%s\" (%s)" @@ -2227,20 +2228,20 @@ msgstr "" "не удалось разобрать изначальный список ACL (%s) или ACL по умолчанию (%s) " "для объекта \"%s\" (%s)" -#: pg_dump.c:14659 +#: pg_dump.c:14706 #, c-format msgid "could not parse ACL list (%s) or default (%s) for object \"%s\" (%s)" msgstr "" "не удалось разобрать список ACL (%s) или ACL по умолчанию (%s) для объекта " "\"%s\" (%s)" -#: pg_dump.c:15197 +#: pg_dump.c:15244 #, c-format msgid "query to obtain definition of view \"%s\" returned no data" msgstr "" "запрос на получение определения представления \"%s\" не возвратил данные" -#: pg_dump.c:15200 +#: pg_dump.c:15247 #, c-format msgid "" "query to obtain definition of view \"%s\" returned more than one definition" @@ -2248,49 +2249,49 @@ msgstr "" "запрос на получение определения представления \"%s\" возвратил несколько " "определений" -#: pg_dump.c:15207 +#: pg_dump.c:15254 #, c-format msgid "definition of view \"%s\" appears to be empty (length zero)" msgstr "определение представления \"%s\" пустое (длина равна нулю)" -#: pg_dump.c:15291 +#: pg_dump.c:15338 #, c-format msgid "WITH OIDS is not supported anymore (table \"%s\")" msgstr "свойство WITH OIDS больше не поддерживается (таблица \"%s\")" -#: pg_dump.c:16220 +#: pg_dump.c:16267 #, c-format msgid "invalid column number %d for table \"%s\"" msgstr "неверный номер столбца %d для таблицы \"%s\"" -#: pg_dump.c:16298 +#: pg_dump.c:16345 #, c-format msgid "could not parse index statistic columns" msgstr "не удалось разобрать столбцы статистики в индексе" -#: pg_dump.c:16300 +#: pg_dump.c:16347 #, c-format msgid "could not parse index statistic values" msgstr "не удалось разобрать значения статистики в индексе" -#: pg_dump.c:16302 +#: pg_dump.c:16349 #, c-format msgid "mismatched number of columns and values for index statistics" msgstr "" "столбцы, задающие статистику индекса, не соответствуют значениям по " "количеству" -#: pg_dump.c:16520 +#: pg_dump.c:16567 #, c-format msgid "missing index for constraint \"%s\"" msgstr "отсутствует индекс для ограничения \"%s\"" -#: pg_dump.c:16748 +#: pg_dump.c:16795 #, c-format msgid "unrecognized constraint type: %c" msgstr "нераспознанный тип ограничения: %c" -#: pg_dump.c:16849 pg_dump.c:17078 +#: pg_dump.c:16896 pg_dump.c:17126 #, c-format msgid "query to get data of sequence \"%s\" returned %d row (expected 1)" msgid_plural "" @@ -2305,22 +2306,22 @@ msgstr[2] "" "запрос на получение данных последовательности \"%s\" вернул %d строк " "(ожидалась 1)" -#: pg_dump.c:16881 +#: pg_dump.c:16928 #, c-format msgid "unrecognized sequence type: %s" msgstr "нераспознанный тип последовательности: %s" -#: pg_dump.c:17170 +#: pg_dump.c:17218 #, c-format msgid "unexpected tgtype value: %d" msgstr "неожиданное значение tgtype: %d" -#: pg_dump.c:17242 +#: pg_dump.c:17290 #, c-format msgid "invalid argument string (%s) for trigger \"%s\" on table \"%s\"" msgstr "неверная строка аргументов (%s) для триггера \"%s\" таблицы \"%s\"" -#: pg_dump.c:17511 +#: pg_dump.c:17559 #, c-format msgid "" "query to get rule \"%s\" for table \"%s\" failed: wrong number of rows " @@ -2329,27 +2330,27 @@ msgstr "" "запрос на получение правила \"%s\" для таблицы \"%s\" возвратил неверное " "число строк" -#: pg_dump.c:17664 +#: pg_dump.c:17712 #, c-format msgid "could not find referenced extension %u" msgstr "не удалось найти упомянутое расширение %u" -#: pg_dump.c:17754 +#: pg_dump.c:17802 #, c-format msgid "mismatched number of configurations and conditions for extension" msgstr "конфигурации расширения не соответствуют условиям по количеству" -#: pg_dump.c:17886 +#: pg_dump.c:17934 #, c-format msgid "reading dependency data" msgstr "чтение информации о зависимостях" -#: pg_dump.c:17972 +#: pg_dump.c:18020 #, c-format msgid "no referencing object %u %u" msgstr "нет подчинённого объекта %u %u" -#: pg_dump.c:17983 +#: pg_dump.c:18031 #, c-format msgid "no referenced object %u %u" msgstr "нет вышестоящего объекта %u %u" diff --git a/src/bin/pg_resetwal/po/es.po b/src/bin/pg_resetwal/po/es.po index 2815867c453..c2e21280653 100644 --- a/src/bin/pg_resetwal/po/es.po +++ b/src/bin/pg_resetwal/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_resetwal (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:54+0000\n" +"POT-Creation-Date: 2024-11-09 06:24+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_resetwal/po/fr.po b/src/bin/pg_resetwal/po/fr.po index 39296bda50d..6002ef54731 100644 --- a/src/bin/pg_resetwal/po/fr.po +++ b/src/bin/pg_resetwal/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:273 #, c-format @@ -685,155 +685,3 @@ msgstr "" #, c-format msgid "%s home page: <%s>\n" msgstr "Page d'accueil de %s : <%s>\n" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid " (zero in either value means no change)\n" -#~ msgstr " (zéro dans l'une des deux valeurs signifie aucun changement)\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version afficherla version et quitte\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide, puis quitte\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide et quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version, puis quitte\n" - -#~ msgid " -V, --version output version information, then exit\n" -#~ msgstr " -V, --version affiche la version et quitte\n" - -#~ msgid " -c XID,XID set oldest and newest transactions bearing commit timestamp\n" -#~ msgstr " -c XID,XID configure la plus ancienne et la plus récente transaction\n" - -#~ msgid " -x XID set next transaction ID\n" -#~ msgstr " -x XID fixe le prochain identifiant de transaction\n" - -#~ msgid "%s: WARNING: cannot create restricted tokens on this platform\n" -#~ msgstr "%s : ATTENTION : ne peut pas créer les jetons restreints sur cette plateforme\n" - -#~ msgid "%s: argument of --wal-segsize must be a number\n" -#~ msgstr "%s : l'argument de --wal-segsize doit être un nombre\n" - -#~ msgid "%s: argument of --wal-segsize must be a power of 2 between 1 and 1024\n" -#~ msgstr "%s : l'argument de --wal-segsize doit être une puissance de 2 entre 1 et 1024\n" - -#~ msgid "%s: cannot be executed by \"root\"\n" -#~ msgstr "%s : ne peut pas être exécuté par « root »\n" - -#~ msgid "%s: could not allocate SIDs: error code %lu\n" -#~ msgstr "%s : n'a pas pu allouer les SID : code d'erreur %lu\n" - -#~ msgid "%s: could not change directory to \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu accéder au répertoire « %s » : %s\n" - -#~ msgid "%s: could not close directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "%s: could not create pg_control file: %s\n" -#~ msgstr "%s : n'a pas pu créer le fichier pg_control : %s\n" - -#~ msgid "%s: could not create restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu créer le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not delete file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu supprimer le fichier « %s » : %s\n" - -#~ msgid "%s: could not get exit code from subprocess: error code %lu\n" -#~ msgstr "%s : n'a pas pu récupérer le code de statut du sous-processus : code d'erreur %lu\n" - -#~ msgid "%s: could not open directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "%s: could not open file \"%s\" for reading: %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » en lecture : %s\n" - -#~ msgid "%s: could not open file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "%s: could not open process token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ouvrir le jeton du processus : code d'erreur %lu\n" - -#~ msgid "%s: could not re-execute with restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ré-exécuter le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not read directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "%s: could not read file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le fichier « %s » : %s\n" - -#~ msgid "%s: could not read from directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "%s: could not read permissions of directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire les droits sur le répertoire « %s » : %s\n" - -#~ msgid "%s: could not start process for command \"%s\": error code %lu\n" -#~ msgstr "%s : n'a pas pu démarrer le processus pour la commande « %s » : code d'erreur %lu\n" - -#~ msgid "%s: could not write file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu écrire le fichier « %s » : %s\n" - -#~ msgid "%s: could not write pg_control file: %s\n" -#~ msgstr "%s : n'a pas pu écrire le fichier pg_control : %s\n" - -#~ msgid "%s: internal error -- sizeof(ControlFileData) is too large ... fix PG_CONTROL_SIZE\n" -#~ msgstr "" -#~ "%s : erreur interne -- sizeof(ControlFileData) est trop important...\n" -#~ "corrigez PG_CONTROL_SIZE\n" - -#~ msgid "%s: invalid argument for option -O\n" -#~ msgstr "%s : argument invalide pour l'option -O\n" - -#~ msgid "%s: invalid argument for option -l\n" -#~ msgstr "%s : argument invalide pour l'option -l\n" - -#~ msgid "%s: invalid argument for option -m\n" -#~ msgstr "%s : argument invalide pour l'option -m\n" - -#~ msgid "%s: invalid argument for option -o\n" -#~ msgstr "%s : argument invalide pour l'option -o\n" - -#~ msgid "%s: invalid argument for option -x\n" -#~ msgstr "%s : argument invalide pour l'option -x\n" - -#~ msgid "%s: no data directory specified\n" -#~ msgstr "%s : aucun répertoire de données indiqué\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "First log file ID after reset: %u\n" -#~ msgstr "Premier identifiant du journal après réinitialisation : %u\n" - -#~ msgid "Float4 argument passing: %s\n" -#~ msgstr "Passage d'argument float4 : %s\n" - -#~ msgid "Transaction log reset\n" -#~ msgstr "Réinitialisation du journal des transactions\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "floating-point numbers" -#~ msgstr "nombres à virgule flottante" - -#~ msgid "transaction ID (-x) must not be 0" -#~ msgstr "l'identifiant de la transaction (-x) ne doit pas être 0" diff --git a/src/bin/pg_resetwal/po/ru.po b/src/bin/pg_resetwal/po/ru.po index 727b2679582..2cb675cd2f8 100644 --- a/src/bin/pg_resetwal/po/ru.po +++ b/src/bin/pg_resetwal/po/ru.po @@ -5,13 +5,13 @@ # Oleg Bartunov , 2004. # Sergey Burladyan , 2009. # Dmitriy Olshevskiy , 2014. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_resetxlog (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-08-27 14:52+0300\n" -"PO-Revision-Date: 2022-09-05 13:36+0300\n" +"PO-Revision-Date: 2024-09-05 12:19+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -170,7 +170,7 @@ msgstr "Запускать %s нужно от имени суперпользо #: pg_resetwal.c:347 #, c-format msgid "could not read permissions of directory \"%s\": %m" -msgstr "не удалось считать права на каталог \"%s\": %m" +msgstr "не удалось прочитать права на каталог \"%s\": %m" #: pg_resetwal.c:353 #, c-format @@ -200,8 +200,8 @@ msgid "" "If these values seem acceptable, use -f to force reset.\n" msgstr "" "\n" -"Если эти значения приемлемы, выполните сброс принудительно, добавив ключ -" -"f.\n" +"Если эти значения всё же приемлемы, выполните сброс принудительно, добавив " +"ключ -f.\n" #: pg_resetwal.c:479 #, c-format @@ -601,7 +601,7 @@ msgid "" "\n" msgstr "" "Использование:\n" -" %s [ПАРАМЕТР]... КАТ_ДАННЫХ\n" +" %s [ПАРАМЕТР]... КАТАЛОГ-ДАННЫХ\n" "\n" #: pg_resetwal.c:1136 diff --git a/src/bin/pg_rewind/file_ops.c b/src/bin/pg_rewind/file_ops.c index 6cb288f0992..7d98283c79c 100644 --- a/src/bin/pg_rewind/file_ops.c +++ b/src/bin/pg_rewind/file_ops.c @@ -431,11 +431,7 @@ recurse_dir(const char *datadir, const char *parentpath, /* recurse to handle subdirectories */ recurse_dir(datadir, path, callback); } -#ifndef WIN32 else if (S_ISLNK(fst.st_mode)) -#else - else if (pgwin32_is_junction(fullpath)) -#endif { #if defined(HAVE_READLINK) || defined(WIN32) char link_target[MAXPGPATH]; diff --git a/src/bin/pg_rewind/filemap.c b/src/bin/pg_rewind/filemap.c index 24f508c6efa..7db2b5d3a04 100644 --- a/src/bin/pg_rewind/filemap.c +++ b/src/bin/pg_rewind/filemap.c @@ -39,14 +39,14 @@ * appearing in source and target systems. */ static uint32 hash_string_pointer(const char *s); -#define SH_PREFIX filehash -#define SH_ELEMENT_TYPE file_entry_t -#define SH_KEY_TYPE const char * -#define SH_KEY path +#define SH_PREFIX filehash +#define SH_ELEMENT_TYPE file_entry_t +#define SH_KEY_TYPE const char * +#define SH_KEY path #define SH_HASH_KEY(tb, key) hash_string_pointer(key) #define SH_EQUAL(tb, a, b) (strcmp(a, b) == 0) -#define SH_SCOPE static inline -#define SH_RAW_ALLOCATOR pg_malloc0 +#define SH_SCOPE static inline +#define SH_RAW_ALLOCATOR pg_malloc0 #define SH_DECLARE #define SH_DEFINE #include "lib/simplehash.h" @@ -61,7 +61,36 @@ static char *datasegpath(RelFileNode rnode, ForkNumber forknum, static file_entry_t *insert_filehash_entry(const char *path); static file_entry_t *lookup_filehash_entry(const char *path); + +/* + * A separate hash table which tracks WAL files that must not be deleted. + */ +typedef struct keepwal_entry +{ + const char *path; + uint32 status; +} keepwal_entry; + +#define SH_PREFIX keepwal +#define SH_ELEMENT_TYPE keepwal_entry +#define SH_KEY_TYPE const char * +#define SH_KEY path +#define SH_HASH_KEY(tb, key) hash_string_pointer(key) +#define SH_EQUAL(tb, a, b) (strcmp(a, b) == 0) +#define SH_SCOPE static inline +#define SH_RAW_ALLOCATOR pg_malloc0 +#define SH_DECLARE +#define SH_DEFINE +#include "lib/simplehash.h" + +#define KEEPWAL_INITIAL_SIZE 1000 + + +static keepwal_hash *keepwal = NULL; +static bool keepwal_entry_exists(const char *path); + static int final_filemap_cmp(const void *a, const void *b); + static bool check_file_excluded(const char *path, bool is_source); /* @@ -207,6 +236,39 @@ lookup_filehash_entry(const char *path) return filehash_lookup(filehash, path); } +/* + * Initialize a hash table to store WAL file names that must be kept. + */ +void +keepwal_init(void) +{ + /* An initial hash size out of thin air */ + keepwal = keepwal_create(KEEPWAL_INITIAL_SIZE, NULL); +} + +/* Mark the given file to prevent its removal */ +void +keepwal_add_entry(const char *path) +{ + keepwal_entry *entry; + bool found; + + /* Should only be called with keepwal initialized */ + Assert(keepwal != NULL); + + entry = keepwal_insert(keepwal, path, &found); + + if (!found) + entry->path = pg_strdup(path); +} + +/* Return true if file is marked as not to be removed, false otherwise */ +static bool +keepwal_entry_exists(const char *path) +{ + return keepwal_lookup(keepwal, path) != NULL; +} + /* * Callback for processing source file list. * @@ -686,7 +748,15 @@ decide_file_action(file_entry_t *entry) } else if (entry->target_exists && !entry->source_exists) { - /* File exists in target, but not source. Remove it. */ + /* + * For files that exist in target but not in source, we check the + * keepwal hash table; any files listed therein must not be removed. + */ + if (keepwal_entry_exists(path)) + { + pg_log_debug("Not removing file \"%s\" because it is required for recovery", path); + return FILE_ACTION_NONE; + } return FILE_ACTION_REMOVE; } else if (!entry->target_exists && !entry->source_exists) diff --git a/src/bin/pg_rewind/filemap.h b/src/bin/pg_rewind/filemap.h index 096f57a68e7..b5f5a0848be 100644 --- a/src/bin/pg_rewind/filemap.h +++ b/src/bin/pg_rewind/filemap.h @@ -110,4 +110,7 @@ extern filemap_t *decide_file_actions(void); extern void calculate_totals(filemap_t *filemap); extern void print_filemap(filemap_t *filemap); +extern void keepwal_init(void); +extern void keepwal_add_entry(const char *path); + #endif /* FILEMAP_H */ diff --git a/src/bin/pg_rewind/parsexlog.c b/src/bin/pg_rewind/parsexlog.c index c6792dafae3..b61df5b3e84 100644 --- a/src/bin/pg_rewind/parsexlog.c +++ b/src/bin/pg_rewind/parsexlog.c @@ -175,6 +175,8 @@ findLastCheckpoint(const char *datadir, XLogRecPtr forkptr, int tliIndex, XLogReaderState *xlogreader; char *errormsg; XLogPageReadPrivate private; + XLogSegNo current_segno = 0; + TimeLineID current_tli = 0; /* * The given fork pointer points to the end of the last common record, @@ -217,6 +219,25 @@ findLastCheckpoint(const char *datadir, XLogRecPtr forkptr, int tliIndex, LSN_FORMAT_ARGS(searchptr)); } + /* Detect if a new WAL file has been opened */ + if (xlogreader->seg.ws_tli != current_tli || + xlogreader->seg.ws_segno != current_segno) + { + char xlogfname[MAXFNAMELEN]; + + snprintf(xlogfname, MAXFNAMELEN, XLOGDIR "/"); + + /* update curent values */ + current_tli = xlogreader->seg.ws_tli; + current_segno = xlogreader->seg.ws_segno; + + XLogFileName(xlogfname + sizeof(XLOGDIR), + current_tli, current_segno, WalSegSz); + + /* Track this filename as one to not remove */ + keepwal_add_entry(xlogfname); + } + /* * Check if it is a checkpoint record. This checkpoint record needs to * be the latest checkpoint before WAL forked and not the checkpoint diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c index 1ff8da16764..78ba54d30f3 100644 --- a/src/bin/pg_rewind/pg_rewind.c +++ b/src/bin/pg_rewind/pg_rewind.c @@ -405,6 +405,9 @@ main(int argc, char **argv) exit(0); } + /* Initialize hashtable that tracks WAL files protected from removal */ + keepwal_init(); + findLastCheckpoint(datadir_target, divergerec, lastcommontliIndex, &chkptrec, &chkpttli, &chkptredo, restore_command); pg_log_info("rewinding from last common checkpoint at %X/%X on timeline %u", @@ -837,6 +840,7 @@ getTimelineHistory(ControlFileData *controlFile, int *nentries) pg_free(histfile); } + /* In debugging mode, print what we read */ if (debug) { int i; @@ -848,10 +852,7 @@ getTimelineHistory(ControlFileData *controlFile, int *nentries) else Assert(false); - /* - * Print the target timeline history. - */ - for (i = 0; i < targetNentries; i++) + for (i = 0; i < *nentries; i++) { TimeLineHistoryEntry *entry; diff --git a/src/bin/pg_rewind/po/es.po b/src/bin/pg_rewind/po/es.po index 73bab6a1488..4ec0934bf65 100644 --- a/src/bin/pg_rewind/po/es.po +++ b/src/bin/pg_rewind/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_rewind (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:56+0000\n" +"POT-Creation-Date: 2024-11-09 06:25+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -229,27 +229,27 @@ msgstr "no se pudo leer el archivo «%s»: leídos %d de %zu" msgid "could not open directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" -#: file_ops.c:446 +#: file_ops.c:442 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "no se pudo leer el enlace simbólico «%s»: %m" -#: file_ops.c:449 +#: file_ops.c:445 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "la ruta «%s» del enlace simbólico es demasiado larga" -#: file_ops.c:464 +#: file_ops.c:460 #, c-format msgid "\"%s\" is a symbolic link, but symbolic links are not supported on this platform" msgstr "«%s» es un link simbólico, pero los links simbólicos no están soportados en esta plataforma" -#: file_ops.c:471 +#: file_ops.c:467 #, c-format msgid "could not read directory \"%s\": %m" msgstr "no se pudo leer el directorio «%s»: %m" -#: file_ops.c:475 +#: file_ops.c:471 #, c-format msgid "could not close directory \"%s\": %m" msgstr "no se pudo abrir el directorio «%s»: %m" @@ -750,59 +750,59 @@ msgstr "%*s/%s kB (%d%%) copiados" msgid "invalid control file" msgstr "archivo de control no válido" -#: pg_rewind.c:918 +#: pg_rewind.c:916 #, c-format msgid "could not find common ancestor of the source and target cluster's timelines" msgstr "no se pudo encontrar un ancestro común en el timeline de los clusters de origen y destino" -#: pg_rewind.c:959 +#: pg_rewind.c:957 #, c-format msgid "backup label buffer too small" msgstr "el búfer del backup label es demasiado pequeño" -#: pg_rewind.c:982 +#: pg_rewind.c:980 #, c-format msgid "unexpected control file CRC" msgstr "CRC de archivo de control inesperado" -#: pg_rewind.c:994 +#: pg_rewind.c:992 #, c-format msgid "unexpected control file size %d, expected %d" msgstr "tamaño del archivo de control %d inesperado, se esperaba %d" -#: pg_rewind.c:1003 +#: pg_rewind.c:1001 #, c-format msgid "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d byte" msgid_plural "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d bytes" msgstr[0] "El tamaño del segmento de WAL debe ser una potencia de dos entre 1 MB y 1 GB, pero el archivo de control especifica %d byte" msgstr[1] "El tamaño del segmento de WAL debe ser una potencia de dos entre 1 MB y 1 GB, pero el archivo de control especifica %d bytes" -#: pg_rewind.c:1042 pg_rewind.c:1112 +#: pg_rewind.c:1040 pg_rewind.c:1110 #, c-format msgid "program \"%s\" is needed by %s but was not found in the same directory as \"%s\"" msgstr "el programa «%s» es requerido por %s, pero no se encontró en el mismo directorio que «%s»" -#: pg_rewind.c:1045 pg_rewind.c:1115 +#: pg_rewind.c:1043 pg_rewind.c:1113 #, c-format msgid "program \"%s\" was found by \"%s\" but was not the same version as %s" msgstr "el programa «%s» fue encontrado por «%s» pero no es de la misma versión que %s" -#: pg_rewind.c:1078 +#: pg_rewind.c:1076 #, c-format msgid "restore_command is not set in the target cluster" msgstr "restore_command no está definido en el clúster de destino" -#: pg_rewind.c:1119 +#: pg_rewind.c:1117 #, c-format msgid "executing \"%s\" for target server to complete crash recovery" msgstr "ejecutando «%s» en el servidor de destino para completar la recuperación de caídas" -#: pg_rewind.c:1156 +#: pg_rewind.c:1154 #, c-format msgid "postgres single-user mode in target cluster failed" msgstr "el modo «single-user» en el servidor de destino falló" -#: pg_rewind.c:1157 +#: pg_rewind.c:1155 #, c-format msgid "Command was: %s" msgstr "La orden era: % s" diff --git a/src/bin/pg_rewind/po/fr.po b/src/bin/pg_rewind/po/fr.po index d9316076dfb..184651ce471 100644 --- a/src/bin/pg_rewind/po/fr.po +++ b/src/bin/pg_rewind/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-09-26 08:20+0000\n" -"PO-Revision-Date: 2022-09-26 14:16+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -182,7 +182,7 @@ msgstr "n'a pas pu supprimer le fichier « %s » : %m" #: file_ops.c:218 #, c-format msgid "could not open file \"%s\" for truncation: %m" -msgstr "n'a pas pu ouvrir le fichier « %s » pour le troncage : %m" +msgstr "n'a pas pu ouvrir le fichier « %s » pour le tronquage : %m" #: file_ops.c:222 #, c-format @@ -1021,280 +1021,3 @@ msgstr "n'a pas pu restaurer l'image à %X/%X compressé avec une méthode incon #, c-format msgid "could not decompress image at %X/%X, block %d" msgstr "n'a pas pu décompresser l'image à %X/%X, bloc %d" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid " block %u\n" -#~ msgstr " bloc %u\n" - -#~ msgid "\"%s\" is not a directory" -#~ msgstr "« %s » n'est pas un répertoire" - -#~ msgid "\"%s\" is not a regular file" -#~ msgstr "« %s » n'est pas un fichier standard" - -#~ msgid "\"%s\" is not a symbolic link" -#~ msgstr "« %s » n'est pas un lien symbolique" - -#~ msgid "%d: %X/%X - %X/%X\n" -#~ msgstr "%d : %X/%X - %X/%X\n" - -#~ msgid "%s (%s)\n" -#~ msgstr "%s (%s)\n" - -#~ msgid "%s: WARNING: cannot create restricted tokens on this platform\n" -#~ msgstr "%s : ATTENTION : ne peut pas créer les jetons restreints sur cette plateforme\n" - -#~ msgid "%s: could not allocate SIDs: error code %lu\n" -#~ msgstr "%s : n'a pas pu allouer les SID : code d'erreur %lu\n" - -#~ msgid "%s: could not create restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu créer le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not get exit code from subprocess: error code %lu\n" -#~ msgstr "%s : n'a pas pu récupérer le code de statut du sous-processus : code d'erreur %lu\n" - -#~ msgid "%s: could not open process token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ouvrir le jeton du processus : code d'erreur %lu\n" - -#~ msgid "%s: could not re-execute with restricted token: error code %lu\n" -#~ msgstr "%s : n'a pas pu ré-exécuter le jeton restreint : code d'erreur %lu\n" - -#~ msgid "%s: could not read permissions of directory \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu lire les droits sur le répertoire « %s » : %s\n" - -#~ msgid "%s: could not start process for command \"%s\": error code %lu\n" -#~ msgstr "%s : n'a pas pu démarrer le processus pour la commande « %s » : code d'erreur %lu\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "Expected a numeric timeline ID.\n" -#~ msgstr "Attendait un identifiant numérique de ligne de temps.\n" - -#~ msgid "Expected a write-ahead log switchpoint location.\n" -#~ msgstr "Attendait un emplacement de bascule de journal de transactions.\n" - -#~ msgid "Failure, exiting\n" -#~ msgstr "Échec, sortie\n" - -#~ msgid "Source timeline history:\n" -#~ msgstr "Historique de la ligne de temps source :\n" - -#~ msgid "Target timeline history:\n" -#~ msgstr "Historique de la ligne de temps cible :\n" - -#~ msgid "" -#~ "The program \"%s\" is needed by %s but was\n" -#~ "not found in the same directory as \"%s\".\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « %s » est nécessaire pour %s, mais n'a pas été trouvé\n" -#~ "dans le même répertoire que « %s ».\n" -#~ "Vérifiez votre installation." - -#~ msgid "" -#~ "The program \"%s\" was found by \"%s\" but was\n" -#~ "not the same version as %s.\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « %s » a été trouvé par « %s » mais n'était pas de la même version\n" -#~ "que %s.\n" -#~ "Vérifiez votre installation." - -#~ msgid "" -#~ "The program \"initdb\" is needed by %s but was\n" -#~ "not found in the same directory as \"%s\".\n" -#~ "Check your installation.\n" -#~ msgstr "" -#~ "Le programme « initdb » est nécessaire pour %s, mais n'a pas été trouvé\n" -#~ "dans le même répertoire que « %s ».\n" -#~ "Vérifiez votre installation.\n" - -#~ msgid "" -#~ "The program \"initdb\" was found by \"%s\"\n" -#~ "but was not the same version as %s.\n" -#~ "Check your installation.\n" -#~ msgstr "" -#~ "Le programme « initdb » a été trouvé par « %s », mais n'est pas de la même version\n" -#~ "que %s.\n" -#~ "Vérifiez votre installation.\n" - -#~ msgid "" -#~ "The program \"postgres\" is needed by %s but was not found in the\n" -#~ "same directory as \"%s\".\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « postgres » est nécessaire à %s mais n'a pas été trouvé dans\n" -#~ "le même répertoire que « %s ».\n" -#~ "Vérifiez votre installation." - -#~ msgid "" -#~ "The program \"postgres\" was found by \"%s\"\n" -#~ "but was not the same version as %s.\n" -#~ "Check your installation." -#~ msgstr "" -#~ "Le programme « postgres » a été trouvé par « %s » mais n'est pas de la même\n" -#~ "version que « %s ».\n" -#~ "Vérifiez votre installation." - -#~ msgid "Timeline IDs must be in increasing sequence.\n" -#~ msgstr "Les identifiants de ligne de temps doivent être dans une séquence croissante.\n" - -#~ msgid "Timeline IDs must be less than child timeline's ID.\n" -#~ msgstr "Les identifiants de ligne de temps doivent être inférieurs à l'identifiant de la ligne de temps enfant.\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#~ msgid "WAL file is from different database system: incorrect XLOG_SEG_SIZE in page header" -#~ msgstr "le fichier WAL provient d'un système différent : XLOG_SEG_SIZE invalide dans l'en-tête de page" - -#~ msgid "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d byte\n" -#~ msgid_plural "WAL segment size must be a power of two between 1 MB and 1 GB, but the control file specifies %d bytes\n" -#~ msgstr[0] "La taille du segment WAL doit être une puissance de deux comprise entre 1 Mo et 1 Go, mais le fichier de contrôle indique %d octet\n" -#~ msgstr[1] "La taille du segment WAL doit être une puissance de deux comprise entre 1 Mo et 1 Go, mais le fichier de contrôle indique %d octets\n" - -#, c-format -#~ msgid "You must run %s as the PostgreSQL superuser.\n" -#~ msgstr "Vous devez exécuter %s en tant que super-utilisateur PostgreSQL.\n" - -#~ msgid "could not close directory \"%s\": %s\n" -#~ msgstr "n'a pas pu fermer le répertoire « %s » : %s\n" - -#~ msgid "could not close file \"%s\": %s\n" -#~ msgstr "n'a pas pu fermer le fichier « %s » : %s\n" - -#~ msgid "could not connect to server: %s" -#~ msgstr "n'a pas pu se connecter au serveur : %s" - -#~ msgid "could not create directory \"%s\": %s\n" -#~ msgstr "n'a pas pu créer le répertoire « %s » : %s\n" - -#~ msgid "could not create temporary table: %s" -#~ msgstr "n'a pas pu créer la table temporaire : %s" - -#~ msgid "could not open directory \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le répertoire « %s » : %s\n" - -#~ msgid "could not open file \"%s\" for reading: %s\n" -#~ msgstr "n'a pas pu ouvrir le fichier « %s » pour une lecture : %s\n" - -#~ msgid "could not open file \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le fichier « %s » : %s\n" - -#~ msgid "could not read directory \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le répertoire « %s » : %s\n" - -#~ msgid "could not read file \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le fichier « %s » : %s\n" - -#~ msgid "could not read from file \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le fichier « %s » : %s\n" - -#~ msgid "could not read symbolic link \"%s\": %s\n" -#~ msgstr "n'a pas pu lire le lien symbolique « %s » : %s\n" - -#~ msgid "could not remove directory \"%s\": %s\n" -#~ msgstr "n'a pas pu supprimer le répertoire « %s » : %s\n" - -#~ msgid "could not remove file \"%s\": %s\n" -#~ msgstr "n'a pas pu supprimer le fichier « %s » : %s\n" - -#~ msgid "could not remove symbolic link \"%s\": %s\n" -#~ msgstr "n'a pas pu supprimer le lien symbolique « %s » : %s\n" - -#~ msgid "could not seek in file \"%s\": %s\n" -#~ msgstr "n'a pas pu chercher dans le fichier « %s » : %s\n" - -#~ msgid "could not send COPY data: %s" -#~ msgstr "n'a pas pu envoyer les données COPY : %s" - -#~ msgid "could not send end-of-COPY: %s" -#~ msgstr "n'a pas pu envoyer end-of-COPY : %s" - -#~ msgid "could not send file list: %s" -#~ msgstr "n'a pas pu envoyer la liste de fichiers : %s" - -#~ msgid "could not set up connection context: %s" -#~ msgstr "n'a pas pu initialiser le contexte de connexion : « %s »" - -#~ msgid "could not stat file \"%s\": %s\n" -#~ msgstr "n'a pas pu tester le fichier « %s » : %s\n" - -#~ msgid "could not truncate file \"%s\" to %u: %s\n" -#~ msgstr "n'a pas pu tronquer le fichier « %s » à %u : %s\n" - -#~ msgid "could not write file \"%s\": %s\n" -#~ msgstr "n'a pas pu écrire le fichier « %s » : %s\n" - -#~ msgid "entry \"%s\" excluded from source file list\n" -#~ msgstr "enregistrement « %s » exclus de la liste des fichiers sources\n" - -#~ msgid "entry \"%s\" excluded from target file list\n" -#~ msgstr "enregistrement « %s » exclus de la liste des fichiers cibles\n" - -#, c-format -#~ msgid "failed to locate backup block with ID %d in WAL record" -#~ msgstr "échec de localisation du bloc de sauvegarde d'ID %d dans l'enregistrement WAL" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "fetched file \"%s\", length %d\n" -#~ msgstr "fichier récupéré « %s », longueur %d\n" - -#~ msgid "getting file chunks\n" -#~ msgstr "récupération des parties de fichier\n" - -#, c-format -#~ msgid "image at %X/%X compressed with %s not supported by build, block %d" -#~ msgstr "image à %X/%X compressé avec %s, non supporté, bloc %d" - -#, c-format -#~ msgid "image at %X/%X compressed with unknown method, block %d" -#~ msgstr "image à %X/%X compressé avec une méthode inconnue, bloc %d" - -#, c-format -#~ msgid "invalid compressed image at %X/%X, block %d" -#~ msgstr "image compressée invalide à %X/%X, bloc %d" - -#~ msgid "invalid contrecord length %u at %X/%X reading %X/%X, expected %u" -#~ msgstr "longueur %u invalide du contrecord à %X/%X en lisant %X/%X, attendait %u" - -#~ msgid "invalid data in history file: %s\n" -#~ msgstr "données invalides dans le fichier historique : %s\n" - -#~ msgid "received data at offset " -#~ msgstr "a reçu des données au décalage " - -#~ msgid "received null value for chunk for file \"%s\", file has been deleted\n" -#~ msgstr "a reçu une valeur NULL pour une partie du fichier « %s », le fichier a été supprimé\n" - -#~ msgid "source file list is empty" -#~ msgstr "la liste de fichiers sources est vide" - -#~ msgid "source server must not be in recovery mode" -#~ msgstr "le serveur source ne doit pas être en mode restauration" - -#~ msgid "symbolic link \"%s\" target is too long\n" -#~ msgstr "la cible du lien symbolique « %s » est trop long\n" - -#~ msgid "sync of target directory failed\n" -#~ msgstr "échec de la synchronisation du répertoire cible\n" - -#~ msgid "syntax error in history file: %s\n" -#~ msgstr "erreur de syntaxe dans le fichier historique : %s\n" - -#~ msgid "there is no contrecord flag at %X/%X reading %X/%X" -#~ msgstr "il n'existe pas de drapeau contrecord à %X/%X en lisant %X/%X" - -#~ msgid "unexpected result while sending file list: %s" -#~ msgstr "résultat inattendu lors de l'envoi de la liste de fichiers : %s" diff --git a/src/bin/pg_rewind/po/ru.po b/src/bin/pg_rewind/po/ru.po index 30e0b1de9f6..9dfc9ccdb98 100644 --- a/src/bin/pg_rewind/po/ru.po +++ b/src/bin/pg_rewind/po/ru.po @@ -1,13 +1,13 @@ # Russian message translation file for pg_rewind # Copyright (C) 2015-2016 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2015-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2015-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_rewind (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-05-04 10:36+0300\n" -"PO-Revision-Date: 2023-08-30 15:22+0300\n" +"POT-Creation-Date: 2024-11-09 07:47+0300\n" +"PO-Revision-Date: 2024-09-07 13:07+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -225,17 +225,17 @@ msgstr "не удалось прочитать файл \"%s\" (прочитан msgid "could not open directory \"%s\": %m" msgstr "не удалось открыть каталог \"%s\": %m" -#: file_ops.c:446 +#: file_ops.c:442 #, c-format msgid "could not read symbolic link \"%s\": %m" msgstr "не удалось прочитать символическую ссылку \"%s\": %m" -#: file_ops.c:449 +#: file_ops.c:445 #, c-format msgid "symbolic link \"%s\" target is too long" msgstr "целевой путь символической ссылки \"%s\" слишком длинный" -#: file_ops.c:464 +#: file_ops.c:460 #, c-format msgid "" "\"%s\" is a symbolic link, but symbolic links are not supported on this " @@ -244,12 +244,12 @@ msgstr "" "\"%s\" — символическая ссылка, но в этой ОС символические ссылки не " "поддерживаются" -#: file_ops.c:471 +#: file_ops.c:467 #, c-format msgid "could not read directory \"%s\": %m" msgstr "не удалось прочитать каталог \"%s\": %m" -#: file_ops.c:475 +#: file_ops.c:471 #, c-format msgid "could not close directory \"%s\": %m" msgstr "не удалось закрыть каталог \"%s\": %m" @@ -669,7 +669,7 @@ msgstr "Запускать %s нужно от имени суперпользо #: pg_rewind.c:276 #, c-format msgid "could not read permissions of directory \"%s\": %m" -msgstr "не удалось считать права на каталог \"%s\": %m" +msgstr "не удалось прочитать права на каталог \"%s\": %m" #: pg_rewind.c:294 #, c-format @@ -791,29 +791,29 @@ msgstr "%*s/%s КБ (%d%%) скопировано" msgid "invalid control file" msgstr "неверный управляющий файл" -#: pg_rewind.c:918 +#: pg_rewind.c:916 #, c-format msgid "" "could not find common ancestor of the source and target cluster's timelines" msgstr "" "не удалось найти общего предка линий времени исходного и целевого кластеров" -#: pg_rewind.c:959 +#: pg_rewind.c:957 #, c-format msgid "backup label buffer too small" msgstr "буфер для метки копии слишком мал" -#: pg_rewind.c:982 +#: pg_rewind.c:980 #, c-format msgid "unexpected control file CRC" msgstr "неверная контрольная сумма управляющего файла" -#: pg_rewind.c:994 +#: pg_rewind.c:992 #, c-format msgid "unexpected control file size %d, expected %d" msgstr "неверный размер управляющего файла (%d), ожидалось: %d" -#: pg_rewind.c:1003 +#: pg_rewind.c:1001 #, c-format msgid "" "WAL segment size must be a power of two between 1 MB and 1 GB, but the " @@ -831,39 +831,39 @@ msgstr[2] "" "Размер сегмента WAL должен задаваться степенью 2 в интервале от 1 МБ до 1 " "ГБ, но в управляющем файле указано значение: %d" -#: pg_rewind.c:1042 pg_rewind.c:1112 +#: pg_rewind.c:1040 pg_rewind.c:1110 #, c-format msgid "" "program \"%s\" is needed by %s but was not found in the same directory as " "\"%s\"" msgstr "программа \"%s\" нужна для %s, но она не найдена в каталоге \"%s\"" -#: pg_rewind.c:1045 pg_rewind.c:1115 +#: pg_rewind.c:1043 pg_rewind.c:1113 #, c-format msgid "program \"%s\" was found by \"%s\" but was not the same version as %s" msgstr "" "программа \"%s\" найдена программой \"%s\", но её версия отличается от " "версии %s" -#: pg_rewind.c:1078 +#: pg_rewind.c:1076 #, c-format msgid "restore_command is not set in the target cluster" msgstr "команда restore_command в целевом кластере не определена" -#: pg_rewind.c:1119 +#: pg_rewind.c:1117 #, c-format msgid "executing \"%s\" for target server to complete crash recovery" msgstr "" "выполнение \"%s\" для восстановления согласованности на целевом сервере" -#: pg_rewind.c:1156 +#: pg_rewind.c:1154 #, c-format msgid "postgres single-user mode in target cluster failed" msgstr "" "не удалось запустить postgres в целевом кластере в однопользовательском " "режиме" -#: pg_rewind.c:1157 +#: pg_rewind.c:1155 #, c-format msgid "Command was: %s" msgstr "Выполнялась команда: %s" diff --git a/src/bin/pg_rewind/t/010_keep_recycled_wals.pl b/src/bin/pg_rewind/t/010_keep_recycled_wals.pl new file mode 100644 index 00000000000..e6dfce2a54a --- /dev/null +++ b/src/bin/pg_rewind/t/010_keep_recycled_wals.pl @@ -0,0 +1,62 @@ +# Copyright (c) 2021-2024, PostgreSQL Global Development Group +# +# Test situation where a target data directory contains +# WAL files that were already recycled by the new primary. +# + +use strict; +use warnings FATAL => 'all'; +use PostgreSQL::Test::Utils; +use Test::More; + +use FindBin; +use lib $FindBin::RealBin; +use RewindTest; + +RewindTest::setup_cluster(); +$node_primary->enable_archiving(); +RewindTest::start_primary(); + +RewindTest::create_standby(); +$node_standby->enable_restoring($node_primary, 0); +$node_standby->reload(); + +RewindTest::primary_psql("CHECKPOINT"); # last common checkpoint + +# We use "perl -e 'exit(1)'" as an alternative to "false", because the latter +# might not be available on Windows. +my $false = "$^X -e 'exit(1)'"; +$node_primary->append_conf( + 'postgresql.conf', qq( +archive_command = '$false' +)); +$node_primary->reload(); + +# advance WAL on primary; this WAL segment will never make it to the archive +RewindTest::primary_psql("CREATE TABLE t(a int)"); +RewindTest::primary_psql("INSERT INTO t VALUES(0)"); +RewindTest::primary_psql("SELECT pg_switch_wal()"); + +RewindTest::promote_standby; + +# new primary loses diverging WAL segment +RewindTest::standby_psql("INSERT INTO t values(0)"); +RewindTest::standby_psql("SELECT pg_switch_wal()"); + +$node_standby->stop(); +$node_primary->stop(); + +my ($stdout, $stderr) = run_command( + [ + 'pg_rewind', '--debug', + '--source-pgdata', $node_standby->data_dir, + '--target-pgdata', $node_primary->data_dir, + '--no-sync', + ]); + +like( + $stderr, + qr/Not removing file .* because it is required for recovery/, + "some WAL files were skipped"); + +done_testing(); diff --git a/src/bin/pg_test_fsync/po/es.po b/src/bin/pg_test_fsync/po/es.po index f04a3e40b38..54403df8c50 100644 --- a/src/bin/pg_test_fsync/po/es.po +++ b/src/bin/pg_test_fsync/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_test_fsync (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:57+0000\n" +"POT-Creation-Date: 2024-11-09 06:26+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_test_fsync/po/fr.po b/src/bin/pg_test_fsync/po/fr.po index dfedfe84e78..43e943d4edc 100644 --- a/src/bin/pg_test_fsync/po/fr.po +++ b/src/bin/pg_test_fsync/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-05-14 10:20+0000\n" -"PO-Revision-Date: 2022-05-14 17:17+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:277 #, c-format @@ -227,16 +227,3 @@ msgid "" msgstr "" "\n" "%d Ko d'écritures non synchronisées :\n" - -#~ msgid "%s: %s\n" -#~ msgstr "%s : %s\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#~ msgid "seek failed" -#~ msgstr "seek échoué" diff --git a/src/bin/pg_test_fsync/po/ru.po b/src/bin/pg_test_fsync/po/ru.po index 5ba3586b780..1bddfb0b279 100644 --- a/src/bin/pg_test_fsync/po/ru.po +++ b/src/bin/pg_test_fsync/po/ru.po @@ -1,7 +1,7 @@ # Russian message translation file for pg_test_fsync # Copyright (C) 2017 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2017, 2021, 2022. +# Alexander Lakhin , 2017, 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: pg_test_fsync (PostgreSQL) 10\n" diff --git a/src/bin/pg_test_timing/po/es.po b/src/bin/pg_test_timing/po/es.po index 369755cc18f..a5a4cc30dad 100644 --- a/src/bin/pg_test_timing/po/es.po +++ b/src/bin/pg_test_timing/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_test_timing (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:54+0000\n" +"POT-Creation-Date: 2024-11-09 06:23+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_test_timing/po/fr.po b/src/bin/pg_test_timing/po/fr.po index f97ebee84bd..61f973bf6e1 100644 --- a/src/bin/pg_test_timing/po/fr.po +++ b/src/bin/pg_test_timing/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: pg_test_timing.c:59 #, c-format @@ -85,6 +85,3 @@ msgstr "nombre" #, c-format msgid "Histogram of timing durations:\n" msgstr "Histogramme des durées de chronométrage\n" - -#~ msgid "%s: duration must be a positive integer (duration is \"%d\")\n" -#~ msgstr "%s : la durée doit être un entier positif (la durée est « %d »)\n" diff --git a/src/bin/pg_test_timing/po/ru.po b/src/bin/pg_test_timing/po/ru.po index c24e78df428..c17a9921393 100644 --- a/src/bin/pg_test_timing/po/ru.po +++ b/src/bin/pg_test_timing/po/ru.po @@ -1,7 +1,7 @@ # Russian message translation file for pg_test_timing # Copyright (C) 2017 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2017, 2021. +# Alexander Lakhin , 2017, 2021, 2024. msgid "" msgstr "" "Project-Id-Version: pg_test_timing (PostgreSQL) 10\n" diff --git a/src/bin/pg_upgrade/po/es.po b/src/bin/pg_upgrade/po/es.po index d59885ba743..4556b8ca9a8 100644 --- a/src/bin/pg_upgrade/po/es.po +++ b/src/bin/pg_upgrade/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_upgrade (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:54+0000\n" +"POT-Creation-Date: 2024-11-09 06:23+0000\n" "PO-Revision-Date: 2024-08-02 19:21-0400\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -429,18 +429,11 @@ msgstr "" #: check.c:1364 #, c-format -#| msgid "Checking for removed \"abstime\" data type in user tables" msgid "Checking for removed \"%s\" data type in user tables" msgstr "Verificando tipo de datos «%s» eliminado en tablas de usuario" #: check.c:1374 #, c-format -#| msgid "" -#| "Your installation contains the \"abstime\" data type in user tables.\n" -#| "The \"abstime\" type has been removed in PostgreSQL version 12,\n" -#| "so this cluster cannot currently be upgraded. You can drop the\n" -#| "problem columns, or change them to another data type, and restart\n" -#| "the upgrade.\n" msgid "" "Your installation contains the \"%s\" data type in user tables.\n" "The \"%s\" type has been removed in PostgreSQL version %s,\n" diff --git a/src/bin/pg_upgrade/po/fr.po b/src/bin/pg_upgrade/po/fr.po index ba9519cc41d..c89905c6d27 100644 --- a/src/bin/pg_upgrade/po/fr.po +++ b/src/bin/pg_upgrade/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2023-10-29 12:03+0000\n" -"PO-Revision-Date: 2023-10-30 13:43+0100\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4\n" +"X-Generator: Poedit 3.5\n" #: check.c:75 #, c-format @@ -1913,199 +1913,3 @@ msgstr "" "when executed by psql by the database superuser will update\n" "these extensions.\n" "\n" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#, c-format -#~ msgid "" -#~ "\n" -#~ "The old cluster has a \"plpython_call_handler\" function defined\n" -#~ "in the \"public\" schema which is a duplicate of the one defined\n" -#~ "in the \"pg_catalog\" schema. You can confirm this by executing\n" -#~ "in psql:\n" -#~ "\n" -#~ " \\df *.plpython_call_handler\n" -#~ "\n" -#~ "The \"public\" schema version of this function was created by a\n" -#~ "pre-8.1 install of plpython, and must be removed for pg_upgrade\n" -#~ "to complete because it references a now-obsolete \"plpython\"\n" -#~ "shared object file. You can remove the \"public\" schema version\n" -#~ "of this function by running the following command:\n" -#~ "\n" -#~ " DROP FUNCTION public.plpython_call_handler()\n" -#~ "\n" -#~ "in each affected database:\n" -#~ "\n" -#~ msgstr "" -#~ "\n" -#~ "L'ancienne instance comprend une fonction « plpython_call_handler »\n" -#~ "définie dans le schéma « public » qui est un duplicat de celle définie\n" -#~ "dans le schéma « pg_catalog ». Vous pouvez confirmer cela en\n" -#~ "exécutant dans psql :\n" -#~ "\n" -#~ " \\df *.plpython_call_handler\n" -#~ "\n" -#~ "La version de cette fonction dans le schéma « public » a été créée\n" -#~ "par une installation de plpython antérieure à la version 8.1 et doit\n" -#~ "être supprimée pour que pg_upgrade puisse termine parce qu'elle\n" -#~ "référence un fichier objet partagé « plpython » maintenant obsolète.\n" -#~ "Vous pouvez supprimer la version de cette fonction dans le schéma\n" -#~ "« public » en exécutant la commande suivante :\n" -#~ "\n" -#~ " DROP FUNCTION public.plpython_call_handler()\n" -#~ "\n" -#~ "dans chaque base de données affectée :\n" -#~ "\n" - -#, c-format -#~ msgid "" -#~ "\n" -#~ "Your installation contains large objects. The new database has an\n" -#~ "additional large object permission table, so default permissions must be\n" -#~ "defined for all large objects. The file\n" -#~ " %s\n" -#~ "when executed by psql by the database superuser will set the default\n" -#~ "permissions.\n" -#~ "\n" -#~ msgstr "" -#~ "\n" -#~ "Votre installation contient des Large Objects. La nouvelle base de données\n" -#~ "a une table de droit supplémentaire pour les Large Objects, donc les droits\n" -#~ "par défaut doivent être définies pour tous les Large Objects. Le fichier\n" -#~ " %s\n" -#~ "une fois exécuté par psql avec un superutilisateur définira les droits par\n" -#~ "défaut.\n" -#~ "\n" - -#, c-format -#~ msgid "" -#~ "\n" -#~ "Your installation contains large objects. The new database has an\n" -#~ "additional large object permission table. After upgrading, you will be\n" -#~ "given a command to populate the pg_largeobject_metadata table with\n" -#~ "default permissions.\n" -#~ "\n" -#~ msgstr "" -#~ "\n" -#~ "Votre installation contient des Large Objects. La nouvelle base de données a une table de droit supplémentaire sur les Large Objects.\n" -#~ "Après la mise à jour, vous disposerez d'une commande pour peupler la table pg_largeobject_metadata avec les droits par défaut.\n" -#~ "\n" - -#~ msgid "" -#~ "\n" -#~ "connection to database failed: %s" -#~ msgstr "" -#~ "\n" -#~ "échec de la connexion à la base de données : %s" - -#, c-format -#~ msgid " " -#~ msgstr " " - -#, c-format -#~ msgid " %s\n" -#~ msgstr " %s\n" - -#~ msgid "" -#~ " --index-collation-versions-unknown\n" -#~ " mark text indexes as needing to be rebuilt\n" -#~ msgstr "" -#~ " --index-collation-versions-unknown\n" -#~ " marque les index de colonnes de type text comme nécessitant une reconstruction\n" - -#~ msgid "%s is not a directory\n" -#~ msgstr "%s n'est pas un répertoire\n" - -#, c-format -#~ msgid "%s.%s: %u to %u\n" -#~ msgstr "%s.%s : %u vers %u\n" - -#~ msgid "----------------\n" -#~ msgstr "----------------\n" - -#~ msgid "------------------\n" -#~ msgstr "------------------\n" - -#~ msgid "-----------------------------\n" -#~ msgstr "-----------------------------\n" - -#~ msgid "------------------------------------------------\n" -#~ msgstr "------------------------------------------------\n" - -#, c-format -#~ msgid "All non-template0 databases must allow connections, i.e. their pg_database.datallowconn must be true\n" -#~ msgstr "Toutes les bases de données, autre que template0, doivent autoriser les connexions, ie pg_database.datallowconn doit valoir true\n" - -#~ msgid "Cannot open file %s: %m\n" -#~ msgstr "Ne peut pas ouvrir le fichier %s : %m\n" - -#~ msgid "Cannot read line %d from %s: %m\n" -#~ msgstr "Ne peut pas lire la ligne %d à partir de %s : %m\n" - -#, c-format -#~ msgid "Checking for large objects" -#~ msgstr "Vérification des Large Objects" - -#~ msgid "Creating script to analyze new cluster" -#~ msgstr "Création d'un script pour analyser la nouvelle instance" - -#~ msgid "" -#~ "Optimizer statistics and free space information are not transferred\n" -#~ "by pg_upgrade so, once you start the new server, consider running:\n" -#~ " %s\n" -#~ "\n" -#~ msgstr "" -#~ "Les statistiques de l'optimiseur et les informations sur l'espace libre\n" -#~ "ne sont pas transférées par pg_upgrade, donc une fois le nouveau\n" -#~ "serveur démarré, pensez à exécuter :\n" -#~ " %s\n" -#~ "\n" - -#, c-format -#~ msgid "Remove the problem functions from the old cluster to continue.\n" -#~ msgstr "Supprimez les fonctions problématiques de l'ancienne instance pour continuer.\n" - -#~ msgid "" -#~ "This utility can only upgrade to PostgreSQL version 9.0 after 2010-01-11\n" -#~ "because of backend API changes made during development.\n" -#~ msgstr "" -#~ "Cet outil peut seulement mettre à jour à partir de la version 9.0 de PostgreSQL (après le 11 janvier 2010)\n" -#~ "à cause de changements dans l'API du moteur fait lors du développement.\n" - -#, c-format -#~ msgid "When checking a pre-PG 9.1 live old server, you must specify the old server's port number.\n" -#~ msgstr "Lors de la vérification d'un serveur antérieur à la 9.1, vous devez spécifier le numéro de port de l'ancien serveur.\n" - -#~ msgid "cannot find current directory\n" -#~ msgstr "ne peut pas trouver le répertoire courant\n" - -#~ msgid "cannot write to log file %s\n" -#~ msgstr "ne peut pas écrire dans le fichier de traces %s\n" - -#~ msgid "check for \"%s\" failed: cannot read file (permission denied)\n" -#~ msgstr "échec de la vérification de « %s » : ne peut pas lire le fichier (droit refusé)\n" - -#~ msgid "connection to database failed: %s" -#~ msgstr "échec de la connexion à la base de données : %s" - -#~ msgid "" -#~ "could not load library \"%s\":\n" -#~ "%s\n" -#~ msgstr "" -#~ "n'a pas pu charger la biblothèque « %s »:\n" -#~ "%s\n" - -#~ msgid "could not parse PG_VERSION file from %s\n" -#~ msgstr "n'a pas pu analyser le fichier PG_VERSION à partir de %s\n" - -#, c-format -#~ msgid "mappings for database \"%s\":\n" -#~ msgstr "correspondances pour la base de données « %s » :\n" - -#~ msgid "waitpid() failed: %s\n" -#~ msgstr "échec de waitpid() : %s\n" diff --git a/src/bin/pg_upgrade/po/ru.po b/src/bin/pg_upgrade/po/ru.po index 0c934d462c7..6433585edc4 100644 --- a/src/bin/pg_upgrade/po/ru.po +++ b/src/bin/pg_upgrade/po/ru.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pg_upgrade (PostgreSQL) 10\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2024-02-02 18:11+0300\n" -"PO-Revision-Date: 2023-11-03 09:24+0300\n" +"PO-Revision-Date: 2024-09-07 12:05+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -485,9 +485,10 @@ msgid "" msgstr "" "В вашей инсталляции пользовательские таблицы используют тип данных \"%s\".\n" "Тип \"%s\" был удалён в PostgreSQL версии %s, поэтому обновить\n" -"кластер в текущем состоянии невозможно. Вы можете удалить проблемные столбцы " -"и\n" -"перезапустить обновление. Список проблемных столбцов приведён в файле:\n" +"кластер в текущем состоянии невозможно. Вы можете удалить проблемные " +"столбцы\n" +"или поменять их тип на другой, а затем перезапустить обновление. Список\n" +"проблемных столбцов приведён в файле:\n" " %s\n" "\n" @@ -1053,8 +1054,8 @@ msgstr "" msgid "" "error while copying relation \"%s.%s\": could not write file \"%s\": %s\n" msgstr "" -"ошибка при копировании отношения \"%s.%s\": не удалось записать в файл " -"\"%s\": %s\n" +"ошибка при копировании отношения \"%s.%s\": не удалось записать файл \"%s\": " +"%s\n" #: file.c:134 #, c-format @@ -1349,12 +1350,12 @@ msgstr "" #: option.c:271 #, c-format msgid " -d, --old-datadir=DATADIR old cluster data directory\n" -msgstr " -d, --old-datadir=КАТ_DATA каталог данных старого кластера\n" +msgstr " -d, --old-datadir=КАТ_ДАННЫХ каталог данных старого кластера\n" #: option.c:272 #, c-format msgid " -D, --new-datadir=DATADIR new cluster data directory\n" -msgstr " -D, --new-datadir=КАТ_DATA каталог данных нового кластера\n" +msgstr " -D, --new-datadir=КАТ_ДАННЫХ каталог данных нового кластера\n" #: option.c:273 #, c-format @@ -1619,7 +1620,7 @@ msgstr "дочерний процесс завершился аварийно: % #: pg_upgrade.c:102 #, c-format msgid "could not read permissions of directory \"%s\": %s\n" -msgstr "не удалось считать права на каталог \"%s\": %s\n" +msgstr "не удалось прочитать права на каталог \"%s\": %s\n" #: pg_upgrade.c:134 #, c-format @@ -1927,7 +1928,7 @@ msgstr "%-*s" #: util.c:95 #, c-format msgid "could not access directory \"%s\": %m\n" -msgstr "ошибка доступа к каталогу \"%s\": %m\n" +msgstr "ошибка при обращении к каталогу \"%s\": %m\n" #: util.c:158 #, c-format diff --git a/src/bin/pg_verifybackup/po/es.po b/src/bin/pg_verifybackup/po/es.po index 955de60c18a..21348a909cd 100644 --- a/src/bin/pg_verifybackup/po/es.po +++ b/src/bin/pg_verifybackup/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_verifybackup (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:52+0000\n" +"POT-Creation-Date: 2024-11-09 06:21+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-ayuda \n" diff --git a/src/bin/pg_verifybackup/po/fr.po b/src/bin/pg_verifybackup/po/fr.po index 68784c96524..01188452fdd 100644 --- a/src/bin/pg_verifybackup/po/fr.po +++ b/src/bin/pg_verifybackup/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:273 #, c-format @@ -504,14 +504,3 @@ msgstr "" #, c-format msgid "%s home page: <%s>\n" msgstr "Page d'accueil de %s : <%s>\n" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#~ msgid "could not read file \"%s\": read %d of %zu" -#~ msgstr "n'a pas pu lire le fichier « %s » : a lu %d sur %zu" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " diff --git a/src/bin/pg_verifybackup/po/ru.po b/src/bin/pg_verifybackup/po/ru.po index 86f001beb23..b97f3143d7f 100644 --- a/src/bin/pg_verifybackup/po/ru.po +++ b/src/bin/pg_verifybackup/po/ru.po @@ -1,10 +1,10 @@ -# Alexander Lakhin , 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_verifybackup (PostgreSQL) 13\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2024-08-01 12:51+0300\n" -"PO-Revision-Date: 2022-09-05 13:37+0300\n" +"PO-Revision-Date: 2024-09-07 09:48+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -103,7 +103,7 @@ msgstr "Ожидалась строка, но обнаружено \"%s\"." #: ../../common/jsonapi.c:1125 #, c-format msgid "Token \"%s\" is invalid." -msgstr "Ошибочный элемент текста \"%s\"." +msgstr "Ошибочный элемент \"%s\"." #: ../../common/jsonapi.c:1128 msgid "\\u0000 cannot be converted to text." @@ -188,7 +188,7 @@ msgstr "отсутствует указание пути" #: parse_manifest.c:475 msgid "both path name and encoded path name" -msgstr "указание пути задано в обычном виде и в закодированном" +msgstr "путь задан в обычном виде и в закодированном" #: parse_manifest.c:477 msgid "missing size" @@ -230,7 +230,7 @@ msgstr "отсутствует конечный LSN" #: parse_manifest.c:582 msgid "timeline is not an integer" -msgstr "линия времени задаётся не целым числом" +msgstr "линия времени задана не целым числом" #: parse_manifest.c:585 msgid "could not parse start LSN" diff --git a/src/bin/pg_waldump/po/es.po b/src/bin/pg_waldump/po/es.po index 7693b17286f..5023de54790 100644 --- a/src/bin/pg_waldump/po/es.po +++ b/src/bin/pg_waldump/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: pg_waldump (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:53+0000\n" +"POT-Creation-Date: 2024-11-09 06:22+0000\n" "PO-Revision-Date: 2022-11-04 13:17+0100\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/bin/pg_waldump/po/fr.po b/src/bin/pg_waldump/po/fr.po index 7ce5d92fd84..15e0f50c4df 100644 --- a/src/bin/pg_waldump/po/fr.po +++ b/src/bin/pg_waldump/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-09-26 08:17+0000\n" -"PO-Revision-Date: 2022-09-26 14:37+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -559,88 +559,3 @@ msgstr "n'a pas pu restaurer l'image à %X/%X compressé avec une méthode incon #, c-format msgid "could not decompress image at %X/%X, block %d" msgstr "n'a pas pu décompresser l'image à %X/%X, bloc %d" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid "%s: FATAL: " -#~ msgstr "%s : FATAL : " - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#~ msgid "cannot open directory \"%s\": %s" -#~ msgstr "ne peut pas ouvrir le répertoire « %s » : %s" - -#~ msgid "could not open directory \"%s\": %s" -#~ msgstr "n'a pas pu ouvrir le répertoire « %s » : %s" - -#~ msgid "could not open file \"%s\": %s" -#~ msgstr "n'a pas pu ouvrir le fichier « %s » : %s" - -#, c-format -#~ msgid "could not parse \"%s\" as a transaction ID" -#~ msgstr "n'a pas pu analyser « %s » comme un identifiant de transaction" - -#, c-format -#~ msgid "could not parse end WAL location \"%s\"" -#~ msgstr "n'a pas pu analyser l'emplacement de fin du journal de transactions « %s »" - -#, c-format -#~ msgid "could not parse fork \"%s\"" -#~ msgstr "n'a pas pu analyser le fork « %s »" - -#, c-format -#~ msgid "could not parse limit \"%s\"" -#~ msgstr "n'a pas pu analyser la limite « %s »" - -#, c-format -#~ msgid "could not parse start WAL location \"%s\"" -#~ msgstr "n'a pas pu analyser l'emplacement de début du journal de transactions « %s »" - -#, c-format -#~ msgid "could not parse timeline \"%s\"" -#~ msgstr "n'a pas pu analyser la timeline « %s »" - -#, c-format -#~ msgid "could not parse valid block number \"%s\"" -#~ msgstr "n'a pas pu analyser le numéro de bloc valide « %s »" - -#~ msgid "could not read file \"%s\": %s" -#~ msgstr "n'a pas pu lire le fichier « %s » : %s" - -#, c-format -#~ msgid "could not read file \"%s\": read %d of %zu" -#~ msgstr "n'a pas pu lire le fichier « %s » : a lu %d sur %zu" - -#~ msgid "could not read from log file %s, offset %u, length %d: %s" -#~ msgstr "n'a pas pu lire à partir du segment %s du journal de transactions, décalage %u, longueur %d : %s" - -#~ msgid "could not seek in log file %s to offset %u: %s" -#~ msgstr "n'a pas pu se déplacer dans le fichier de transactions %s au décalage %u : %s" - -#~ msgid "could not seek in log segment %s to offset %u: %s" -#~ msgstr "n'a pas pu rechercher dans le segment %s du journal de transactions au décalage %u : %s" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "not enough data in file \"%s\"" -#~ msgstr "données insuffisantes dans le fichier « %s »" - -#, c-format -#~ msgid "out of memory" -#~ msgstr "mémoire épuisée" - -#~ msgid "path \"%s\" could not be opened: %s" -#~ msgstr "le chemin « %s » n'a pas pu être ouvert : %s" - -#, c-format -#~ msgid "unrecognized argument to --stats: %s" -#~ msgstr "argument non reconnu pour --stats : %s" diff --git a/src/bin/pg_waldump/po/ru.po b/src/bin/pg_waldump/po/ru.po index 7a0e293e64b..8eec05dc777 100644 --- a/src/bin/pg_waldump/po/ru.po +++ b/src/bin/pg_waldump/po/ru.po @@ -1,13 +1,13 @@ # Russian message translation file for pg_waldump # Copyright (C) 2017 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2017, 2018, 2019, 2020, 2022, 2023. +# Alexander Lakhin , 2017, 2018, 2019, 2020, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pg_waldump (PostgreSQL) 10\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2024-02-02 18:11+0300\n" -"PO-Revision-Date: 2023-08-30 15:41+0300\n" +"PO-Revision-Date: 2024-09-07 08:59+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -88,13 +88,12 @@ msgstr "не удалось найти файл \"%s\": %m" #: pg_waldump.c:378 #, c-format msgid "could not read from file %s, offset %d: %m" -msgstr "не удалось прочитать из файла %s по смещению %d: %m" +msgstr "не удалось прочитать файл %s по смещению %d: %m" #: pg_waldump.c:382 #, c-format msgid "could not read from file %s, offset %d: read %d of %d" -msgstr "" -"не удалось прочитать из файла %s по смещению %d (прочитано байт: %d из %d)" +msgstr "не удалось прочитать файл %s по смещению %d (прочитано байт: %d из %d)" #: pg_waldump.c:658 #, c-format @@ -386,7 +385,7 @@ msgstr "не удалось выделить память для чтения WA #: pg_waldump.c:1080 #, c-format msgid "could not find a valid record after %X/%X" -msgstr "не удалось найти действительную запись после позиции %X/%X" +msgstr "не удалось найти корректную запись после %X/%X" #: pg_waldump.c:1090 #, c-format diff --git a/src/bin/psql/po/de.po b/src/bin/psql/po/de.po index 305872238f5..56284ed7d0c 100644 --- a/src/bin/psql/po/de.po +++ b/src/bin/psql/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2023-02-03 13:16+0000\n" +"POT-Creation-Date: 2024-11-08 07:32+0000\n" "PO-Revision-Date: 2023-02-03 16:09+0100\n" "Last-Translator: Peter Eisentraut \n" "Language-Team: German \n" @@ -244,7 +244,7 @@ msgstr "Sie sind verbunden mit der Datenbank »%s« als Benutzer »%s« auf Host msgid "no query buffer" msgstr "kein Anfragepuffer" -#: command.c:1063 command.c:5491 +#: command.c:1063 command.c:5497 #, c-format msgid "invalid line number: %s" msgstr "ungültige Zeilennummer: %s" @@ -258,10 +258,10 @@ msgstr "keine Änderungen" msgid "%s: invalid encoding name or conversion procedure not found" msgstr "%s: ungültiger Kodierungsname oder Umwandlungsprozedur nicht gefunden" -#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5597 +#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5603 #: common.c:181 common.c:230 common.c:399 common.c:1082 common.c:1100 #: common.c:1174 common.c:1281 common.c:1319 common.c:1407 common.c:1443 -#: copy.c:488 copy.c:722 help.c:66 large_obj.c:157 large_obj.c:192 +#: copy.c:488 copy.c:723 help.c:66 large_obj.c:157 large_obj.c:192 #: large_obj.c:254 startup.c:304 #, c-format msgid "%s" @@ -719,22 +719,22 @@ msgstr "\\watch kann nicht mit einer leeren Anfrage verwendet werden" msgid "could not set timer: %m" msgstr "konnte Timer nicht setzen: %m" -#: command.c:5078 +#: command.c:5084 #, c-format msgid "%s\t%s (every %gs)\n" msgstr "%s\t%s (alle %gs)\n" -#: command.c:5081 +#: command.c:5087 #, c-format msgid "%s (every %gs)\n" msgstr "%s (alle %gs)\n" -#: command.c:5142 +#: command.c:5148 #, c-format msgid "could not wait for signals: %m" msgstr "konnte nicht auf Signale warten: %m" -#: command.c:5200 command.c:5207 common.c:572 common.c:579 common.c:1063 +#: command.c:5206 command.c:5213 common.c:572 common.c:579 common.c:1063 #, c-format msgid "" "********* QUERY **********\n" @@ -747,12 +747,12 @@ msgstr "" "**************************\n" "\n" -#: command.c:5386 +#: command.c:5392 #, c-format msgid "\"%s.%s\" is not a view" msgstr "»%s.%s« ist keine Sicht" -#: command.c:5402 +#: command.c:5408 #, c-format msgid "could not parse reloptions array" msgstr "konnte reloptions-Array nicht interpretieren" @@ -946,11 +946,11 @@ msgstr "" "Geben Sie die zu kopierenden Daten ein, gefolgt von einem Zeilenende.\n" "Beenden Sie mit einem Backslash und einem Punkt alleine auf einer Zeile, oder einem EOF-Signal." -#: copy.c:684 +#: copy.c:685 msgid "aborted because of read failure" msgstr "abgebrochen wegen Lesenfehlers" -#: copy.c:718 +#: copy.c:719 msgid "trying to exit copy mode" msgstr "versuche, den COPY-Modus zu verlassen" @@ -4004,2410 +4004,2416 @@ msgstr "%s: Speicher aufgebraucht" #: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66 #: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85 #: sql_help.c:113 sql_help.c:119 sql_help.c:121 sql_help.c:123 sql_help.c:125 -#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:238 -#: sql_help.c:240 sql_help.c:241 sql_help.c:243 sql_help.c:245 sql_help.c:248 -#: sql_help.c:250 sql_help.c:252 sql_help.c:254 sql_help.c:266 sql_help.c:267 -#: sql_help.c:268 sql_help.c:270 sql_help.c:319 sql_help.c:321 sql_help.c:323 -#: sql_help.c:325 sql_help.c:394 sql_help.c:399 sql_help.c:401 sql_help.c:443 -#: sql_help.c:445 sql_help.c:448 sql_help.c:450 sql_help.c:519 sql_help.c:524 -#: sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:593 sql_help.c:595 -#: sql_help.c:597 sql_help.c:599 sql_help.c:601 sql_help.c:604 sql_help.c:606 -#: sql_help.c:609 sql_help.c:620 sql_help.c:622 sql_help.c:666 sql_help.c:668 -#: sql_help.c:670 sql_help.c:673 sql_help.c:675 sql_help.c:677 sql_help.c:714 -#: sql_help.c:718 sql_help.c:722 sql_help.c:741 sql_help.c:744 sql_help.c:747 -#: sql_help.c:776 sql_help.c:788 sql_help.c:796 sql_help.c:799 sql_help.c:802 -#: sql_help.c:817 sql_help.c:820 sql_help.c:849 sql_help.c:854 sql_help.c:859 -#: sql_help.c:864 sql_help.c:869 sql_help.c:896 sql_help.c:898 sql_help.c:900 -#: sql_help.c:902 sql_help.c:905 sql_help.c:907 sql_help.c:954 sql_help.c:999 -#: sql_help.c:1004 sql_help.c:1009 sql_help.c:1014 sql_help.c:1019 -#: sql_help.c:1038 sql_help.c:1049 sql_help.c:1051 sql_help.c:1071 -#: sql_help.c:1081 sql_help.c:1082 sql_help.c:1084 sql_help.c:1086 -#: sql_help.c:1098 sql_help.c:1102 sql_help.c:1104 sql_help.c:1116 -#: sql_help.c:1118 sql_help.c:1120 sql_help.c:1122 sql_help.c:1141 -#: sql_help.c:1143 sql_help.c:1147 sql_help.c:1151 sql_help.c:1155 -#: sql_help.c:1158 sql_help.c:1159 sql_help.c:1160 sql_help.c:1163 -#: sql_help.c:1166 sql_help.c:1168 sql_help.c:1308 sql_help.c:1310 -#: sql_help.c:1313 sql_help.c:1316 sql_help.c:1318 sql_help.c:1320 -#: sql_help.c:1323 sql_help.c:1326 sql_help.c:1443 sql_help.c:1445 -#: sql_help.c:1447 sql_help.c:1450 sql_help.c:1471 sql_help.c:1474 -#: sql_help.c:1477 sql_help.c:1480 sql_help.c:1484 sql_help.c:1486 -#: sql_help.c:1488 sql_help.c:1490 sql_help.c:1504 sql_help.c:1507 -#: sql_help.c:1509 sql_help.c:1511 sql_help.c:1521 sql_help.c:1523 -#: sql_help.c:1533 sql_help.c:1535 sql_help.c:1545 sql_help.c:1548 -#: sql_help.c:1571 sql_help.c:1573 sql_help.c:1575 sql_help.c:1577 -#: sql_help.c:1580 sql_help.c:1582 sql_help.c:1585 sql_help.c:1588 -#: sql_help.c:1639 sql_help.c:1682 sql_help.c:1685 sql_help.c:1687 -#: sql_help.c:1689 sql_help.c:1692 sql_help.c:1694 sql_help.c:1696 -#: sql_help.c:1699 sql_help.c:1749 sql_help.c:1765 sql_help.c:1996 -#: sql_help.c:2065 sql_help.c:2084 sql_help.c:2097 sql_help.c:2154 -#: sql_help.c:2161 sql_help.c:2171 sql_help.c:2197 sql_help.c:2228 -#: sql_help.c:2246 sql_help.c:2274 sql_help.c:2385 sql_help.c:2431 -#: sql_help.c:2456 sql_help.c:2479 sql_help.c:2483 sql_help.c:2517 -#: sql_help.c:2537 sql_help.c:2559 sql_help.c:2573 sql_help.c:2594 -#: sql_help.c:2623 sql_help.c:2658 sql_help.c:2683 sql_help.c:2730 -#: sql_help.c:3025 sql_help.c:3038 sql_help.c:3055 sql_help.c:3071 -#: sql_help.c:3111 sql_help.c:3165 sql_help.c:3169 sql_help.c:3171 -#: sql_help.c:3178 sql_help.c:3197 sql_help.c:3224 sql_help.c:3259 -#: sql_help.c:3271 sql_help.c:3280 sql_help.c:3324 sql_help.c:3338 -#: sql_help.c:3366 sql_help.c:3374 sql_help.c:3386 sql_help.c:3396 -#: sql_help.c:3404 sql_help.c:3412 sql_help.c:3420 sql_help.c:3428 -#: sql_help.c:3437 sql_help.c:3448 sql_help.c:3456 sql_help.c:3464 -#: sql_help.c:3472 sql_help.c:3480 sql_help.c:3490 sql_help.c:3499 -#: sql_help.c:3508 sql_help.c:3516 sql_help.c:3526 sql_help.c:3537 -#: sql_help.c:3545 sql_help.c:3554 sql_help.c:3565 sql_help.c:3574 -#: sql_help.c:3582 sql_help.c:3590 sql_help.c:3598 sql_help.c:3606 -#: sql_help.c:3614 sql_help.c:3622 sql_help.c:3630 sql_help.c:3638 -#: sql_help.c:3646 sql_help.c:3654 sql_help.c:3671 sql_help.c:3680 -#: sql_help.c:3688 sql_help.c:3705 sql_help.c:3720 sql_help.c:4030 -#: sql_help.c:4140 sql_help.c:4169 sql_help.c:4184 sql_help.c:4687 -#: sql_help.c:4735 sql_help.c:4893 +#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:245 +#: sql_help.c:247 sql_help.c:248 sql_help.c:250 sql_help.c:252 sql_help.c:255 +#: sql_help.c:257 sql_help.c:259 sql_help.c:261 sql_help.c:276 sql_help.c:277 +#: sql_help.c:278 sql_help.c:280 sql_help.c:329 sql_help.c:331 sql_help.c:333 +#: sql_help.c:335 sql_help.c:404 sql_help.c:409 sql_help.c:411 sql_help.c:453 +#: sql_help.c:455 sql_help.c:458 sql_help.c:460 sql_help.c:529 sql_help.c:534 +#: sql_help.c:539 sql_help.c:544 sql_help.c:549 sql_help.c:603 sql_help.c:605 +#: sql_help.c:607 sql_help.c:609 sql_help.c:611 sql_help.c:614 sql_help.c:616 +#: sql_help.c:619 sql_help.c:630 sql_help.c:632 sql_help.c:676 sql_help.c:678 +#: sql_help.c:680 sql_help.c:683 sql_help.c:685 sql_help.c:687 sql_help.c:724 +#: sql_help.c:728 sql_help.c:732 sql_help.c:751 sql_help.c:754 sql_help.c:757 +#: sql_help.c:786 sql_help.c:798 sql_help.c:806 sql_help.c:809 sql_help.c:812 +#: sql_help.c:827 sql_help.c:830 sql_help.c:859 sql_help.c:864 sql_help.c:869 +#: sql_help.c:874 sql_help.c:879 sql_help.c:906 sql_help.c:908 sql_help.c:910 +#: sql_help.c:912 sql_help.c:915 sql_help.c:917 sql_help.c:964 sql_help.c:1009 +#: sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 sql_help.c:1029 +#: sql_help.c:1048 sql_help.c:1059 sql_help.c:1061 sql_help.c:1081 +#: sql_help.c:1091 sql_help.c:1092 sql_help.c:1094 sql_help.c:1096 +#: sql_help.c:1108 sql_help.c:1112 sql_help.c:1114 sql_help.c:1126 +#: sql_help.c:1128 sql_help.c:1130 sql_help.c:1132 sql_help.c:1151 +#: sql_help.c:1153 sql_help.c:1157 sql_help.c:1161 sql_help.c:1165 +#: sql_help.c:1168 sql_help.c:1169 sql_help.c:1170 sql_help.c:1173 +#: sql_help.c:1176 sql_help.c:1178 sql_help.c:1317 sql_help.c:1319 +#: sql_help.c:1322 sql_help.c:1325 sql_help.c:1327 sql_help.c:1329 +#: sql_help.c:1332 sql_help.c:1335 sql_help.c:1455 sql_help.c:1457 +#: sql_help.c:1459 sql_help.c:1462 sql_help.c:1483 sql_help.c:1486 +#: sql_help.c:1489 sql_help.c:1492 sql_help.c:1496 sql_help.c:1498 +#: sql_help.c:1500 sql_help.c:1502 sql_help.c:1516 sql_help.c:1519 +#: sql_help.c:1521 sql_help.c:1523 sql_help.c:1533 sql_help.c:1535 +#: sql_help.c:1545 sql_help.c:1547 sql_help.c:1557 sql_help.c:1560 +#: sql_help.c:1583 sql_help.c:1585 sql_help.c:1587 sql_help.c:1589 +#: sql_help.c:1592 sql_help.c:1594 sql_help.c:1597 sql_help.c:1600 +#: sql_help.c:1651 sql_help.c:1694 sql_help.c:1697 sql_help.c:1699 +#: sql_help.c:1701 sql_help.c:1704 sql_help.c:1706 sql_help.c:1708 +#: sql_help.c:1711 sql_help.c:1761 sql_help.c:1777 sql_help.c:2008 +#: sql_help.c:2077 sql_help.c:2096 sql_help.c:2109 sql_help.c:2166 +#: sql_help.c:2173 sql_help.c:2183 sql_help.c:2209 sql_help.c:2240 +#: sql_help.c:2258 sql_help.c:2286 sql_help.c:2397 sql_help.c:2443 +#: sql_help.c:2468 sql_help.c:2491 sql_help.c:2495 sql_help.c:2529 +#: sql_help.c:2549 sql_help.c:2571 sql_help.c:2585 sql_help.c:2606 +#: sql_help.c:2635 sql_help.c:2670 sql_help.c:2695 sql_help.c:2742 +#: sql_help.c:3040 sql_help.c:3053 sql_help.c:3070 sql_help.c:3086 +#: sql_help.c:3126 sql_help.c:3180 sql_help.c:3184 sql_help.c:3186 +#: sql_help.c:3193 sql_help.c:3212 sql_help.c:3239 sql_help.c:3274 +#: sql_help.c:3286 sql_help.c:3295 sql_help.c:3339 sql_help.c:3353 +#: sql_help.c:3381 sql_help.c:3389 sql_help.c:3401 sql_help.c:3411 +#: sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 sql_help.c:3443 +#: sql_help.c:3452 sql_help.c:3463 sql_help.c:3471 sql_help.c:3479 +#: sql_help.c:3487 sql_help.c:3495 sql_help.c:3505 sql_help.c:3514 +#: sql_help.c:3523 sql_help.c:3531 sql_help.c:3541 sql_help.c:3552 +#: sql_help.c:3560 sql_help.c:3569 sql_help.c:3580 sql_help.c:3589 +#: sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 sql_help.c:3621 +#: sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 sql_help.c:3653 +#: sql_help.c:3661 sql_help.c:3669 sql_help.c:3686 sql_help.c:3695 +#: sql_help.c:3703 sql_help.c:3720 sql_help.c:3735 sql_help.c:4045 +#: sql_help.c:4159 sql_help.c:4188 sql_help.c:4203 sql_help.c:4706 +#: sql_help.c:4754 sql_help.c:4912 msgid "name" msgstr "Name" -#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:330 sql_help.c:1846 -#: sql_help.c:3339 sql_help.c:4455 +#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:340 sql_help.c:1858 +#: sql_help.c:3354 sql_help.c:4474 msgid "aggregate_signature" msgstr "Aggregatsignatur" -#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:253 -#: sql_help.c:271 sql_help.c:402 sql_help.c:449 sql_help.c:528 sql_help.c:576 -#: sql_help.c:594 sql_help.c:621 sql_help.c:674 sql_help.c:743 sql_help.c:798 -#: sql_help.c:819 sql_help.c:858 sql_help.c:908 sql_help.c:955 sql_help.c:1008 -#: sql_help.c:1040 sql_help.c:1050 sql_help.c:1085 sql_help.c:1105 -#: sql_help.c:1119 sql_help.c:1169 sql_help.c:1317 sql_help.c:1444 -#: sql_help.c:1487 sql_help.c:1508 sql_help.c:1522 sql_help.c:1534 -#: sql_help.c:1547 sql_help.c:1574 sql_help.c:1640 sql_help.c:1693 +#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:260 +#: sql_help.c:281 sql_help.c:412 sql_help.c:459 sql_help.c:538 sql_help.c:586 +#: sql_help.c:604 sql_help.c:631 sql_help.c:684 sql_help.c:753 sql_help.c:808 +#: sql_help.c:829 sql_help.c:868 sql_help.c:918 sql_help.c:965 sql_help.c:1018 +#: sql_help.c:1050 sql_help.c:1060 sql_help.c:1095 sql_help.c:1115 +#: sql_help.c:1129 sql_help.c:1179 sql_help.c:1326 sql_help.c:1456 +#: sql_help.c:1499 sql_help.c:1520 sql_help.c:1534 sql_help.c:1546 +#: sql_help.c:1559 sql_help.c:1586 sql_help.c:1652 sql_help.c:1705 msgid "new_name" msgstr "neuer_Name" -#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:251 -#: sql_help.c:269 sql_help.c:400 sql_help.c:485 sql_help.c:533 sql_help.c:623 -#: sql_help.c:632 sql_help.c:697 sql_help.c:717 sql_help.c:746 sql_help.c:801 -#: sql_help.c:863 sql_help.c:906 sql_help.c:1013 sql_help.c:1052 -#: sql_help.c:1083 sql_help.c:1103 sql_help.c:1117 sql_help.c:1167 -#: sql_help.c:1381 sql_help.c:1446 sql_help.c:1489 sql_help.c:1510 -#: sql_help.c:1572 sql_help.c:1688 sql_help.c:3011 +#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:258 +#: sql_help.c:279 sql_help.c:410 sql_help.c:495 sql_help.c:543 sql_help.c:633 +#: sql_help.c:642 sql_help.c:707 sql_help.c:727 sql_help.c:756 sql_help.c:811 +#: sql_help.c:873 sql_help.c:916 sql_help.c:1023 sql_help.c:1062 +#: sql_help.c:1093 sql_help.c:1113 sql_help.c:1127 sql_help.c:1177 +#: sql_help.c:1390 sql_help.c:1458 sql_help.c:1501 sql_help.c:1522 +#: sql_help.c:1584 sql_help.c:1700 sql_help.c:3026 msgid "new_owner" msgstr "neuer_Eigentümer" -#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:255 sql_help.c:322 -#: sql_help.c:451 sql_help.c:538 sql_help.c:676 sql_help.c:721 sql_help.c:749 -#: sql_help.c:804 sql_help.c:868 sql_help.c:1018 sql_help.c:1087 -#: sql_help.c:1121 sql_help.c:1319 sql_help.c:1491 sql_help.c:1512 -#: sql_help.c:1524 sql_help.c:1536 sql_help.c:1576 sql_help.c:1695 +#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:262 sql_help.c:332 +#: sql_help.c:461 sql_help.c:548 sql_help.c:686 sql_help.c:731 sql_help.c:759 +#: sql_help.c:814 sql_help.c:878 sql_help.c:1028 sql_help.c:1097 +#: sql_help.c:1131 sql_help.c:1328 sql_help.c:1503 sql_help.c:1524 +#: sql_help.c:1536 sql_help.c:1548 sql_help.c:1588 sql_help.c:1707 msgid "new_schema" msgstr "neues_Schema" -#: sql_help.c:44 sql_help.c:1910 sql_help.c:3340 sql_help.c:4484 +#: sql_help.c:44 sql_help.c:1922 sql_help.c:3355 sql_help.c:4503 msgid "where aggregate_signature is:" msgstr "wobei Aggregatsignatur Folgendes ist:" -#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:340 sql_help.c:353 -#: sql_help.c:357 sql_help.c:373 sql_help.c:376 sql_help.c:379 sql_help.c:520 -#: sql_help.c:525 sql_help.c:530 sql_help.c:535 sql_help.c:540 sql_help.c:850 -#: sql_help.c:855 sql_help.c:860 sql_help.c:865 sql_help.c:870 sql_help.c:1000 -#: sql_help.c:1005 sql_help.c:1010 sql_help.c:1015 sql_help.c:1020 -#: sql_help.c:1864 sql_help.c:1881 sql_help.c:1887 sql_help.c:1911 -#: sql_help.c:1914 sql_help.c:1917 sql_help.c:2066 sql_help.c:2085 -#: sql_help.c:2088 sql_help.c:2386 sql_help.c:2595 sql_help.c:3341 -#: sql_help.c:3344 sql_help.c:3347 sql_help.c:3438 sql_help.c:3527 -#: sql_help.c:3555 sql_help.c:3905 sql_help.c:4354 sql_help.c:4461 -#: sql_help.c:4468 sql_help.c:4474 sql_help.c:4485 sql_help.c:4488 -#: sql_help.c:4491 +#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:350 sql_help.c:363 +#: sql_help.c:367 sql_help.c:383 sql_help.c:386 sql_help.c:389 sql_help.c:530 +#: sql_help.c:535 sql_help.c:540 sql_help.c:545 sql_help.c:550 sql_help.c:860 +#: sql_help.c:865 sql_help.c:870 sql_help.c:875 sql_help.c:880 sql_help.c:1010 +#: sql_help.c:1015 sql_help.c:1020 sql_help.c:1025 sql_help.c:1030 +#: sql_help.c:1876 sql_help.c:1893 sql_help.c:1899 sql_help.c:1923 +#: sql_help.c:1926 sql_help.c:1929 sql_help.c:2078 sql_help.c:2097 +#: sql_help.c:2100 sql_help.c:2398 sql_help.c:2607 sql_help.c:3356 +#: sql_help.c:3359 sql_help.c:3362 sql_help.c:3453 sql_help.c:3542 +#: sql_help.c:3570 sql_help.c:3920 sql_help.c:4373 sql_help.c:4480 +#: sql_help.c:4487 sql_help.c:4493 sql_help.c:4504 sql_help.c:4507 +#: sql_help.c:4510 msgid "argmode" msgstr "Argmodus" -#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:341 sql_help.c:354 -#: sql_help.c:358 sql_help.c:374 sql_help.c:377 sql_help.c:380 sql_help.c:521 -#: sql_help.c:526 sql_help.c:531 sql_help.c:536 sql_help.c:541 sql_help.c:851 -#: sql_help.c:856 sql_help.c:861 sql_help.c:866 sql_help.c:871 sql_help.c:1001 -#: sql_help.c:1006 sql_help.c:1011 sql_help.c:1016 sql_help.c:1021 -#: sql_help.c:1865 sql_help.c:1882 sql_help.c:1888 sql_help.c:1912 -#: sql_help.c:1915 sql_help.c:1918 sql_help.c:2067 sql_help.c:2086 -#: sql_help.c:2089 sql_help.c:2387 sql_help.c:2596 sql_help.c:3342 -#: sql_help.c:3345 sql_help.c:3348 sql_help.c:3439 sql_help.c:3528 -#: sql_help.c:3556 sql_help.c:4462 sql_help.c:4469 sql_help.c:4475 -#: sql_help.c:4486 sql_help.c:4489 sql_help.c:4492 +#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:351 sql_help.c:364 +#: sql_help.c:368 sql_help.c:384 sql_help.c:387 sql_help.c:390 sql_help.c:531 +#: sql_help.c:536 sql_help.c:541 sql_help.c:546 sql_help.c:551 sql_help.c:861 +#: sql_help.c:866 sql_help.c:871 sql_help.c:876 sql_help.c:881 sql_help.c:1011 +#: sql_help.c:1016 sql_help.c:1021 sql_help.c:1026 sql_help.c:1031 +#: sql_help.c:1877 sql_help.c:1894 sql_help.c:1900 sql_help.c:1924 +#: sql_help.c:1927 sql_help.c:1930 sql_help.c:2079 sql_help.c:2098 +#: sql_help.c:2101 sql_help.c:2399 sql_help.c:2608 sql_help.c:3357 +#: sql_help.c:3360 sql_help.c:3363 sql_help.c:3454 sql_help.c:3543 +#: sql_help.c:3571 sql_help.c:4481 sql_help.c:4488 sql_help.c:4494 +#: sql_help.c:4505 sql_help.c:4508 sql_help.c:4511 msgid "argname" msgstr "Argname" -#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:342 sql_help.c:355 -#: sql_help.c:359 sql_help.c:375 sql_help.c:378 sql_help.c:381 sql_help.c:522 -#: sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:542 sql_help.c:852 -#: sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:872 sql_help.c:1002 -#: sql_help.c:1007 sql_help.c:1012 sql_help.c:1017 sql_help.c:1022 -#: sql_help.c:1866 sql_help.c:1883 sql_help.c:1889 sql_help.c:1913 -#: sql_help.c:1916 sql_help.c:1919 sql_help.c:2388 sql_help.c:2597 -#: sql_help.c:3343 sql_help.c:3346 sql_help.c:3349 sql_help.c:3440 -#: sql_help.c:3529 sql_help.c:3557 sql_help.c:4463 sql_help.c:4470 -#: sql_help.c:4476 sql_help.c:4487 sql_help.c:4490 sql_help.c:4493 +#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:352 sql_help.c:365 +#: sql_help.c:369 sql_help.c:385 sql_help.c:388 sql_help.c:391 sql_help.c:532 +#: sql_help.c:537 sql_help.c:542 sql_help.c:547 sql_help.c:552 sql_help.c:862 +#: sql_help.c:867 sql_help.c:872 sql_help.c:877 sql_help.c:882 sql_help.c:1012 +#: sql_help.c:1017 sql_help.c:1022 sql_help.c:1027 sql_help.c:1032 +#: sql_help.c:1878 sql_help.c:1895 sql_help.c:1901 sql_help.c:1925 +#: sql_help.c:1928 sql_help.c:1931 sql_help.c:2400 sql_help.c:2609 +#: sql_help.c:3358 sql_help.c:3361 sql_help.c:3364 sql_help.c:3455 +#: sql_help.c:3544 sql_help.c:3572 sql_help.c:4482 sql_help.c:4489 +#: sql_help.c:4495 sql_help.c:4506 sql_help.c:4509 sql_help.c:4512 msgid "argtype" msgstr "Argtyp" -#: sql_help.c:114 sql_help.c:397 sql_help.c:474 sql_help.c:486 sql_help.c:949 -#: sql_help.c:1100 sql_help.c:1505 sql_help.c:1634 sql_help.c:1666 -#: sql_help.c:1718 sql_help.c:1781 sql_help.c:1967 sql_help.c:1974 -#: sql_help.c:2277 sql_help.c:2327 sql_help.c:2334 sql_help.c:2343 -#: sql_help.c:2432 sql_help.c:2659 sql_help.c:2752 sql_help.c:3040 -#: sql_help.c:3225 sql_help.c:3247 sql_help.c:3387 sql_help.c:3742 -#: sql_help.c:3949 sql_help.c:4183 sql_help.c:4956 +#: sql_help.c:114 sql_help.c:407 sql_help.c:484 sql_help.c:496 sql_help.c:959 +#: sql_help.c:1110 sql_help.c:1517 sql_help.c:1646 sql_help.c:1678 +#: sql_help.c:1730 sql_help.c:1793 sql_help.c:1979 sql_help.c:1986 +#: sql_help.c:2289 sql_help.c:2339 sql_help.c:2346 sql_help.c:2355 +#: sql_help.c:2444 sql_help.c:2671 sql_help.c:2764 sql_help.c:3055 +#: sql_help.c:3240 sql_help.c:3262 sql_help.c:3402 sql_help.c:3757 +#: sql_help.c:3964 sql_help.c:4202 sql_help.c:4975 msgid "option" msgstr "Option" -#: sql_help.c:115 sql_help.c:950 sql_help.c:1635 sql_help.c:2433 -#: sql_help.c:2660 sql_help.c:3226 sql_help.c:3388 +#: sql_help.c:115 sql_help.c:960 sql_help.c:1647 sql_help.c:2445 +#: sql_help.c:2672 sql_help.c:3241 sql_help.c:3403 msgid "where option can be:" msgstr "wobei Option Folgendes sein kann:" -#: sql_help.c:116 sql_help.c:2209 +#: sql_help.c:116 sql_help.c:2221 msgid "allowconn" msgstr "allowconn" -#: sql_help.c:117 sql_help.c:951 sql_help.c:1636 sql_help.c:2210 -#: sql_help.c:2434 sql_help.c:2661 sql_help.c:3227 +#: sql_help.c:117 sql_help.c:961 sql_help.c:1648 sql_help.c:2222 +#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 msgid "connlimit" msgstr "Verbindungslimit" -#: sql_help.c:118 sql_help.c:2211 +#: sql_help.c:118 sql_help.c:2223 msgid "istemplate" msgstr "istemplate" -#: sql_help.c:124 sql_help.c:611 sql_help.c:679 sql_help.c:693 sql_help.c:1322 -#: sql_help.c:1374 sql_help.c:4187 +#: sql_help.c:124 sql_help.c:621 sql_help.c:689 sql_help.c:703 sql_help.c:1331 +#: sql_help.c:1383 sql_help.c:4206 msgid "new_tablespace" msgstr "neuer_Tablespace" -#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:548 sql_help.c:550 -#: sql_help.c:551 sql_help.c:875 sql_help.c:877 sql_help.c:878 sql_help.c:958 -#: sql_help.c:962 sql_help.c:965 sql_help.c:1027 sql_help.c:1029 -#: sql_help.c:1030 sql_help.c:1180 sql_help.c:1183 sql_help.c:1643 -#: sql_help.c:1647 sql_help.c:1650 sql_help.c:2398 sql_help.c:2601 -#: sql_help.c:3917 sql_help.c:4205 sql_help.c:4366 sql_help.c:4675 +#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:558 sql_help.c:560 +#: sql_help.c:561 sql_help.c:885 sql_help.c:887 sql_help.c:888 sql_help.c:968 +#: sql_help.c:972 sql_help.c:975 sql_help.c:1037 sql_help.c:1039 +#: sql_help.c:1040 sql_help.c:1190 sql_help.c:1192 sql_help.c:1655 +#: sql_help.c:1659 sql_help.c:1662 sql_help.c:2410 sql_help.c:2613 +#: sql_help.c:3932 sql_help.c:4224 sql_help.c:4385 sql_help.c:4694 msgid "configuration_parameter" msgstr "Konfigurationsparameter" -#: sql_help.c:128 sql_help.c:398 sql_help.c:469 sql_help.c:475 sql_help.c:487 -#: sql_help.c:549 sql_help.c:603 sql_help.c:685 sql_help.c:695 sql_help.c:876 -#: sql_help.c:904 sql_help.c:959 sql_help.c:1028 sql_help.c:1101 -#: sql_help.c:1146 sql_help.c:1150 sql_help.c:1154 sql_help.c:1157 -#: sql_help.c:1162 sql_help.c:1165 sql_help.c:1181 sql_help.c:1182 -#: sql_help.c:1353 sql_help.c:1376 sql_help.c:1424 sql_help.c:1449 -#: sql_help.c:1506 sql_help.c:1590 sql_help.c:1644 sql_help.c:1667 -#: sql_help.c:2278 sql_help.c:2328 sql_help.c:2335 sql_help.c:2344 -#: sql_help.c:2399 sql_help.c:2400 sql_help.c:2464 sql_help.c:2467 -#: sql_help.c:2501 sql_help.c:2602 sql_help.c:2603 sql_help.c:2626 -#: sql_help.c:2753 sql_help.c:2792 sql_help.c:2902 sql_help.c:2915 -#: sql_help.c:2929 sql_help.c:2970 sql_help.c:2997 sql_help.c:3014 -#: sql_help.c:3041 sql_help.c:3248 sql_help.c:3950 sql_help.c:4676 -#: sql_help.c:4677 sql_help.c:4678 sql_help.c:4679 +#: sql_help.c:128 sql_help.c:408 sql_help.c:479 sql_help.c:485 sql_help.c:497 +#: sql_help.c:559 sql_help.c:613 sql_help.c:695 sql_help.c:705 sql_help.c:886 +#: sql_help.c:914 sql_help.c:969 sql_help.c:1038 sql_help.c:1111 +#: sql_help.c:1156 sql_help.c:1160 sql_help.c:1164 sql_help.c:1167 +#: sql_help.c:1172 sql_help.c:1175 sql_help.c:1191 sql_help.c:1362 +#: sql_help.c:1385 sql_help.c:1433 sql_help.c:1441 sql_help.c:1461 +#: sql_help.c:1518 sql_help.c:1602 sql_help.c:1656 sql_help.c:1679 +#: sql_help.c:2290 sql_help.c:2340 sql_help.c:2347 sql_help.c:2356 +#: sql_help.c:2411 sql_help.c:2412 sql_help.c:2476 sql_help.c:2479 +#: sql_help.c:2513 sql_help.c:2614 sql_help.c:2615 sql_help.c:2638 +#: sql_help.c:2765 sql_help.c:2804 sql_help.c:2914 sql_help.c:2927 +#: sql_help.c:2941 sql_help.c:2982 sql_help.c:2990 sql_help.c:3012 +#: sql_help.c:3029 sql_help.c:3056 sql_help.c:3263 sql_help.c:3965 +#: sql_help.c:4695 sql_help.c:4696 sql_help.c:4697 sql_help.c:4698 msgid "value" msgstr "Wert" -#: sql_help.c:200 +#: sql_help.c:202 msgid "target_role" msgstr "Zielrolle" -#: sql_help.c:201 sql_help.c:913 sql_help.c:2262 sql_help.c:2631 -#: sql_help.c:2708 sql_help.c:2713 sql_help.c:3880 sql_help.c:3889 -#: sql_help.c:3908 sql_help.c:3920 sql_help.c:4329 sql_help.c:4338 -#: sql_help.c:4357 sql_help.c:4369 +#: sql_help.c:203 sql_help.c:923 sql_help.c:2274 sql_help.c:2643 +#: sql_help.c:2720 sql_help.c:2725 sql_help.c:3895 sql_help.c:3904 +#: sql_help.c:3923 sql_help.c:3935 sql_help.c:4348 sql_help.c:4357 +#: sql_help.c:4376 sql_help.c:4388 msgid "schema_name" msgstr "Schemaname" -#: sql_help.c:202 +#: sql_help.c:204 msgid "abbreviated_grant_or_revoke" msgstr "abgekürztes_Grant_oder_Revoke" -#: sql_help.c:203 +#: sql_help.c:205 msgid "where abbreviated_grant_or_revoke is one of:" msgstr "wobei abgekürztes_Grant_oder_Revoke Folgendes sein kann:" -#: sql_help.c:204 sql_help.c:205 sql_help.c:206 sql_help.c:207 sql_help.c:208 -#: sql_help.c:209 sql_help.c:210 sql_help.c:211 sql_help.c:212 sql_help.c:213 -#: sql_help.c:574 sql_help.c:610 sql_help.c:678 sql_help.c:822 sql_help.c:969 -#: sql_help.c:1321 sql_help.c:1654 sql_help.c:2437 sql_help.c:2438 -#: sql_help.c:2439 sql_help.c:2440 sql_help.c:2441 sql_help.c:2575 -#: sql_help.c:2664 sql_help.c:2665 sql_help.c:2666 sql_help.c:2667 -#: sql_help.c:2668 sql_help.c:3230 sql_help.c:3231 sql_help.c:3232 -#: sql_help.c:3233 sql_help.c:3234 sql_help.c:3929 sql_help.c:3933 -#: sql_help.c:4378 sql_help.c:4382 sql_help.c:4697 +#: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210 +#: sql_help.c:211 sql_help.c:212 sql_help.c:213 sql_help.c:214 sql_help.c:215 +#: sql_help.c:584 sql_help.c:620 sql_help.c:688 sql_help.c:832 sql_help.c:979 +#: sql_help.c:1330 sql_help.c:1666 sql_help.c:2449 sql_help.c:2450 +#: sql_help.c:2451 sql_help.c:2452 sql_help.c:2453 sql_help.c:2587 +#: sql_help.c:2676 sql_help.c:2677 sql_help.c:2678 sql_help.c:2679 +#: sql_help.c:2680 sql_help.c:3245 sql_help.c:3246 sql_help.c:3247 +#: sql_help.c:3248 sql_help.c:3249 sql_help.c:3944 sql_help.c:3948 +#: sql_help.c:4397 sql_help.c:4401 sql_help.c:4716 msgid "role_name" msgstr "Rollenname" -#: sql_help.c:239 sql_help.c:462 sql_help.c:912 sql_help.c:1337 sql_help.c:1339 -#: sql_help.c:1391 sql_help.c:1403 sql_help.c:1428 sql_help.c:1684 -#: sql_help.c:2231 sql_help.c:2235 sql_help.c:2347 sql_help.c:2352 -#: sql_help.c:2460 sql_help.c:2630 sql_help.c:2769 sql_help.c:2774 -#: sql_help.c:2776 sql_help.c:2897 sql_help.c:2910 sql_help.c:2924 -#: sql_help.c:2933 sql_help.c:2945 sql_help.c:2974 sql_help.c:3981 -#: sql_help.c:3996 sql_help.c:3998 sql_help.c:4085 sql_help.c:4088 -#: sql_help.c:4090 sql_help.c:4548 sql_help.c:4549 sql_help.c:4558 -#: sql_help.c:4605 sql_help.c:4606 sql_help.c:4607 sql_help.c:4608 -#: sql_help.c:4609 sql_help.c:4610 sql_help.c:4650 sql_help.c:4651 -#: sql_help.c:4656 sql_help.c:4661 sql_help.c:4805 sql_help.c:4806 -#: sql_help.c:4815 sql_help.c:4862 sql_help.c:4863 sql_help.c:4864 -#: sql_help.c:4865 sql_help.c:4866 sql_help.c:4867 sql_help.c:4921 -#: sql_help.c:4923 sql_help.c:4983 sql_help.c:5043 sql_help.c:5044 -#: sql_help.c:5053 sql_help.c:5100 sql_help.c:5101 sql_help.c:5102 -#: sql_help.c:5103 sql_help.c:5104 sql_help.c:5105 +#: sql_help.c:246 sql_help.c:265 sql_help.c:472 sql_help.c:922 sql_help.c:1346 +#: sql_help.c:1348 sql_help.c:1400 sql_help.c:1412 sql_help.c:1437 +#: sql_help.c:1696 sql_help.c:2243 sql_help.c:2247 sql_help.c:2359 +#: sql_help.c:2364 sql_help.c:2472 sql_help.c:2642 sql_help.c:2781 +#: sql_help.c:2786 sql_help.c:2788 sql_help.c:2909 sql_help.c:2922 +#: sql_help.c:2936 sql_help.c:2945 sql_help.c:2957 sql_help.c:2986 +#: sql_help.c:3996 sql_help.c:4011 sql_help.c:4013 sql_help.c:4102 +#: sql_help.c:4105 sql_help.c:4107 sql_help.c:4567 sql_help.c:4568 +#: sql_help.c:4577 sql_help.c:4624 sql_help.c:4625 sql_help.c:4626 +#: sql_help.c:4627 sql_help.c:4628 sql_help.c:4629 sql_help.c:4669 +#: sql_help.c:4670 sql_help.c:4675 sql_help.c:4680 sql_help.c:4824 +#: sql_help.c:4825 sql_help.c:4834 sql_help.c:4881 sql_help.c:4882 +#: sql_help.c:4883 sql_help.c:4884 sql_help.c:4885 sql_help.c:4886 +#: sql_help.c:4940 sql_help.c:4942 sql_help.c:5002 sql_help.c:5062 +#: sql_help.c:5063 sql_help.c:5072 sql_help.c:5119 sql_help.c:5120 +#: sql_help.c:5121 sql_help.c:5122 sql_help.c:5123 sql_help.c:5124 msgid "expression" msgstr "Ausdruck" -#: sql_help.c:242 +#: sql_help.c:249 msgid "domain_constraint" msgstr "Domänen-Constraint" -#: sql_help.c:244 sql_help.c:246 sql_help.c:249 sql_help.c:477 sql_help.c:478 -#: sql_help.c:1314 sql_help.c:1361 sql_help.c:1362 sql_help.c:1363 -#: sql_help.c:1390 sql_help.c:1402 sql_help.c:1419 sql_help.c:1852 -#: sql_help.c:1854 sql_help.c:2234 sql_help.c:2346 sql_help.c:2351 -#: sql_help.c:2932 sql_help.c:2944 sql_help.c:3993 +#: sql_help.c:251 sql_help.c:253 sql_help.c:256 sql_help.c:264 sql_help.c:487 +#: sql_help.c:488 sql_help.c:1323 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1372 sql_help.c:1399 sql_help.c:1411 sql_help.c:1428 +#: sql_help.c:1864 sql_help.c:1866 sql_help.c:2246 sql_help.c:2358 +#: sql_help.c:2363 sql_help.c:2944 sql_help.c:2956 sql_help.c:4008 msgid "constraint_name" msgstr "Constraint-Name" -#: sql_help.c:247 sql_help.c:1315 +#: sql_help.c:254 sql_help.c:1324 msgid "new_constraint_name" msgstr "neuer_Constraint-Name" -#: sql_help.c:320 sql_help.c:1099 +#: sql_help.c:263 +msgid "where domain_constraint is:" +msgstr "wobei Domänen-Constraint Folgendes ist:" + +#: sql_help.c:330 sql_help.c:1109 msgid "new_version" msgstr "neue_Version" -#: sql_help.c:324 sql_help.c:326 +#: sql_help.c:334 sql_help.c:336 msgid "member_object" msgstr "Elementobjekt" -#: sql_help.c:327 +#: sql_help.c:337 msgid "where member_object is:" msgstr "wobei Elementobjekt Folgendes ist:" -#: sql_help.c:328 sql_help.c:333 sql_help.c:334 sql_help.c:335 sql_help.c:336 -#: sql_help.c:337 sql_help.c:338 sql_help.c:343 sql_help.c:347 sql_help.c:349 -#: sql_help.c:351 sql_help.c:360 sql_help.c:361 sql_help.c:362 sql_help.c:363 -#: sql_help.c:364 sql_help.c:365 sql_help.c:366 sql_help.c:367 sql_help.c:370 -#: sql_help.c:371 sql_help.c:1844 sql_help.c:1849 sql_help.c:1856 -#: sql_help.c:1857 sql_help.c:1858 sql_help.c:1859 sql_help.c:1860 -#: sql_help.c:1861 sql_help.c:1862 sql_help.c:1867 sql_help.c:1869 -#: sql_help.c:1873 sql_help.c:1875 sql_help.c:1879 sql_help.c:1884 -#: sql_help.c:1885 sql_help.c:1892 sql_help.c:1893 sql_help.c:1894 -#: sql_help.c:1895 sql_help.c:1896 sql_help.c:1897 sql_help.c:1898 -#: sql_help.c:1899 sql_help.c:1900 sql_help.c:1901 sql_help.c:1902 -#: sql_help.c:1907 sql_help.c:1908 sql_help.c:4451 sql_help.c:4456 -#: sql_help.c:4457 sql_help.c:4458 sql_help.c:4459 sql_help.c:4465 -#: sql_help.c:4466 sql_help.c:4471 sql_help.c:4472 sql_help.c:4477 -#: sql_help.c:4478 sql_help.c:4479 sql_help.c:4480 sql_help.c:4481 -#: sql_help.c:4482 +#: sql_help.c:338 sql_help.c:343 sql_help.c:344 sql_help.c:345 sql_help.c:346 +#: sql_help.c:347 sql_help.c:348 sql_help.c:353 sql_help.c:357 sql_help.c:359 +#: sql_help.c:361 sql_help.c:370 sql_help.c:371 sql_help.c:372 sql_help.c:373 +#: sql_help.c:374 sql_help.c:375 sql_help.c:376 sql_help.c:377 sql_help.c:380 +#: sql_help.c:381 sql_help.c:1856 sql_help.c:1861 sql_help.c:1868 +#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872 +#: sql_help.c:1873 sql_help.c:1874 sql_help.c:1879 sql_help.c:1881 +#: sql_help.c:1885 sql_help.c:1887 sql_help.c:1891 sql_help.c:1896 +#: sql_help.c:1897 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 +#: sql_help.c:1907 sql_help.c:1908 sql_help.c:1909 sql_help.c:1910 +#: sql_help.c:1911 sql_help.c:1912 sql_help.c:1913 sql_help.c:1914 +#: sql_help.c:1919 sql_help.c:1920 sql_help.c:4470 sql_help.c:4475 +#: sql_help.c:4476 sql_help.c:4477 sql_help.c:4478 sql_help.c:4484 +#: sql_help.c:4485 sql_help.c:4490 sql_help.c:4491 sql_help.c:4496 +#: sql_help.c:4497 sql_help.c:4498 sql_help.c:4499 sql_help.c:4500 +#: sql_help.c:4501 msgid "object_name" msgstr "Objektname" -#: sql_help.c:329 sql_help.c:1845 sql_help.c:4454 +#: sql_help.c:339 sql_help.c:1857 sql_help.c:4473 msgid "aggregate_name" msgstr "Aggregatname" -#: sql_help.c:331 sql_help.c:1847 sql_help.c:2131 sql_help.c:2135 -#: sql_help.c:2137 sql_help.c:3357 +#: sql_help.c:341 sql_help.c:1859 sql_help.c:2143 sql_help.c:2147 +#: sql_help.c:2149 sql_help.c:3372 msgid "source_type" msgstr "Quelltyp" -#: sql_help.c:332 sql_help.c:1848 sql_help.c:2132 sql_help.c:2136 -#: sql_help.c:2138 sql_help.c:3358 +#: sql_help.c:342 sql_help.c:1860 sql_help.c:2144 sql_help.c:2148 +#: sql_help.c:2150 sql_help.c:3373 msgid "target_type" msgstr "Zieltyp" -#: sql_help.c:339 sql_help.c:786 sql_help.c:1863 sql_help.c:2133 -#: sql_help.c:2174 sql_help.c:2250 sql_help.c:2518 sql_help.c:2549 -#: sql_help.c:3117 sql_help.c:4353 sql_help.c:4460 sql_help.c:4577 -#: sql_help.c:4581 sql_help.c:4585 sql_help.c:4588 sql_help.c:4834 -#: sql_help.c:4838 sql_help.c:4842 sql_help.c:4845 sql_help.c:5072 -#: sql_help.c:5076 sql_help.c:5080 sql_help.c:5083 +#: sql_help.c:349 sql_help.c:796 sql_help.c:1875 sql_help.c:2145 +#: sql_help.c:2186 sql_help.c:2262 sql_help.c:2530 sql_help.c:2561 +#: sql_help.c:3132 sql_help.c:4372 sql_help.c:4479 sql_help.c:4596 +#: sql_help.c:4600 sql_help.c:4604 sql_help.c:4607 sql_help.c:4853 +#: sql_help.c:4857 sql_help.c:4861 sql_help.c:4864 sql_help.c:5091 +#: sql_help.c:5095 sql_help.c:5099 sql_help.c:5102 msgid "function_name" msgstr "Funktionsname" -#: sql_help.c:344 sql_help.c:779 sql_help.c:1870 sql_help.c:2542 +#: sql_help.c:354 sql_help.c:789 sql_help.c:1882 sql_help.c:2554 msgid "operator_name" msgstr "Operatorname" -#: sql_help.c:345 sql_help.c:715 sql_help.c:719 sql_help.c:723 sql_help.c:1871 -#: sql_help.c:2519 sql_help.c:3481 +#: sql_help.c:355 sql_help.c:725 sql_help.c:729 sql_help.c:733 sql_help.c:1883 +#: sql_help.c:2531 sql_help.c:3496 msgid "left_type" msgstr "linker_Typ" -#: sql_help.c:346 sql_help.c:716 sql_help.c:720 sql_help.c:724 sql_help.c:1872 -#: sql_help.c:2520 sql_help.c:3482 +#: sql_help.c:356 sql_help.c:726 sql_help.c:730 sql_help.c:734 sql_help.c:1884 +#: sql_help.c:2532 sql_help.c:3497 msgid "right_type" msgstr "rechter_Typ" -#: sql_help.c:348 sql_help.c:350 sql_help.c:742 sql_help.c:745 sql_help.c:748 -#: sql_help.c:777 sql_help.c:789 sql_help.c:797 sql_help.c:800 sql_help.c:803 -#: sql_help.c:1408 sql_help.c:1874 sql_help.c:1876 sql_help.c:2539 -#: sql_help.c:2560 sql_help.c:2950 sql_help.c:3491 sql_help.c:3500 +#: sql_help.c:358 sql_help.c:360 sql_help.c:752 sql_help.c:755 sql_help.c:758 +#: sql_help.c:787 sql_help.c:799 sql_help.c:807 sql_help.c:810 sql_help.c:813 +#: sql_help.c:1417 sql_help.c:1886 sql_help.c:1888 sql_help.c:2551 +#: sql_help.c:2572 sql_help.c:2962 sql_help.c:3506 sql_help.c:3515 msgid "index_method" msgstr "Indexmethode" -#: sql_help.c:352 sql_help.c:1880 sql_help.c:4467 +#: sql_help.c:362 sql_help.c:1892 sql_help.c:4486 msgid "procedure_name" msgstr "Prozedurname" -#: sql_help.c:356 sql_help.c:1886 sql_help.c:3904 sql_help.c:4473 +#: sql_help.c:366 sql_help.c:1898 sql_help.c:3919 sql_help.c:4492 msgid "routine_name" msgstr "Routinenname" -#: sql_help.c:368 sql_help.c:1380 sql_help.c:1903 sql_help.c:2394 -#: sql_help.c:2600 sql_help.c:2905 sql_help.c:3084 sql_help.c:3662 -#: sql_help.c:3926 sql_help.c:4375 +#: sql_help.c:378 sql_help.c:1389 sql_help.c:1915 sql_help.c:2406 +#: sql_help.c:2612 sql_help.c:2917 sql_help.c:3099 sql_help.c:3677 +#: sql_help.c:3941 sql_help.c:4394 msgid "type_name" msgstr "Typname" -#: sql_help.c:369 sql_help.c:1904 sql_help.c:2393 sql_help.c:2599 -#: sql_help.c:3085 sql_help.c:3315 sql_help.c:3663 sql_help.c:3911 -#: sql_help.c:4360 +#: sql_help.c:379 sql_help.c:1916 sql_help.c:2405 sql_help.c:2611 +#: sql_help.c:3100 sql_help.c:3330 sql_help.c:3678 sql_help.c:3926 +#: sql_help.c:4379 msgid "lang_name" msgstr "Sprachname" -#: sql_help.c:372 +#: sql_help.c:382 msgid "and aggregate_signature is:" msgstr "und Aggregatsignatur Folgendes ist:" -#: sql_help.c:395 sql_help.c:1998 sql_help.c:2275 +#: sql_help.c:405 sql_help.c:2010 sql_help.c:2287 msgid "handler_function" msgstr "Handler-Funktion" -#: sql_help.c:396 sql_help.c:2276 +#: sql_help.c:406 sql_help.c:2288 msgid "validator_function" msgstr "Validator-Funktion" -#: sql_help.c:444 sql_help.c:523 sql_help.c:667 sql_help.c:853 sql_help.c:1003 -#: sql_help.c:1309 sql_help.c:1581 +#: sql_help.c:454 sql_help.c:533 sql_help.c:677 sql_help.c:863 sql_help.c:1013 +#: sql_help.c:1318 sql_help.c:1593 msgid "action" msgstr "Aktion" -#: sql_help.c:446 sql_help.c:453 sql_help.c:457 sql_help.c:458 sql_help.c:461 -#: sql_help.c:463 sql_help.c:464 sql_help.c:465 sql_help.c:467 sql_help.c:470 -#: sql_help.c:472 sql_help.c:473 sql_help.c:671 sql_help.c:681 sql_help.c:683 -#: sql_help.c:686 sql_help.c:688 sql_help.c:689 sql_help.c:911 sql_help.c:1080 -#: sql_help.c:1311 sql_help.c:1329 sql_help.c:1333 sql_help.c:1334 -#: sql_help.c:1338 sql_help.c:1340 sql_help.c:1341 sql_help.c:1342 -#: sql_help.c:1343 sql_help.c:1345 sql_help.c:1348 sql_help.c:1349 -#: sql_help.c:1351 sql_help.c:1354 sql_help.c:1356 sql_help.c:1357 -#: sql_help.c:1404 sql_help.c:1406 sql_help.c:1413 sql_help.c:1422 -#: sql_help.c:1427 sql_help.c:1431 sql_help.c:1432 sql_help.c:1683 -#: sql_help.c:1686 sql_help.c:1690 sql_help.c:1726 sql_help.c:1851 -#: sql_help.c:1964 sql_help.c:1970 sql_help.c:1983 sql_help.c:1984 -#: sql_help.c:1985 sql_help.c:2325 sql_help.c:2338 sql_help.c:2391 -#: sql_help.c:2459 sql_help.c:2465 sql_help.c:2498 sql_help.c:2629 -#: sql_help.c:2738 sql_help.c:2773 sql_help.c:2775 sql_help.c:2887 -#: sql_help.c:2896 sql_help.c:2906 sql_help.c:2909 sql_help.c:2919 -#: sql_help.c:2923 sql_help.c:2946 sql_help.c:2948 sql_help.c:2955 -#: sql_help.c:2968 sql_help.c:2973 sql_help.c:2977 sql_help.c:2978 -#: sql_help.c:2994 sql_help.c:3120 sql_help.c:3260 sql_help.c:3883 -#: sql_help.c:3884 sql_help.c:3980 sql_help.c:3995 sql_help.c:3997 -#: sql_help.c:3999 sql_help.c:4084 sql_help.c:4087 sql_help.c:4089 -#: sql_help.c:4332 sql_help.c:4333 sql_help.c:4453 sql_help.c:4614 -#: sql_help.c:4620 sql_help.c:4622 sql_help.c:4871 sql_help.c:4877 -#: sql_help.c:4879 sql_help.c:4920 sql_help.c:4922 sql_help.c:4924 -#: sql_help.c:4971 sql_help.c:5109 sql_help.c:5115 sql_help.c:5117 +#: sql_help.c:456 sql_help.c:463 sql_help.c:467 sql_help.c:468 sql_help.c:471 +#: sql_help.c:473 sql_help.c:474 sql_help.c:475 sql_help.c:477 sql_help.c:480 +#: sql_help.c:482 sql_help.c:483 sql_help.c:681 sql_help.c:691 sql_help.c:693 +#: sql_help.c:696 sql_help.c:698 sql_help.c:699 sql_help.c:921 sql_help.c:1090 +#: sql_help.c:1320 sql_help.c:1338 sql_help.c:1342 sql_help.c:1343 +#: sql_help.c:1347 sql_help.c:1349 sql_help.c:1350 sql_help.c:1351 +#: sql_help.c:1352 sql_help.c:1354 sql_help.c:1357 sql_help.c:1358 +#: sql_help.c:1360 sql_help.c:1363 sql_help.c:1365 sql_help.c:1366 +#: sql_help.c:1413 sql_help.c:1415 sql_help.c:1422 sql_help.c:1431 +#: sql_help.c:1436 sql_help.c:1443 sql_help.c:1444 sql_help.c:1695 +#: sql_help.c:1698 sql_help.c:1702 sql_help.c:1738 sql_help.c:1863 +#: sql_help.c:1976 sql_help.c:1982 sql_help.c:1995 sql_help.c:1996 +#: sql_help.c:1997 sql_help.c:2337 sql_help.c:2350 sql_help.c:2403 +#: sql_help.c:2471 sql_help.c:2477 sql_help.c:2510 sql_help.c:2641 +#: sql_help.c:2750 sql_help.c:2785 sql_help.c:2787 sql_help.c:2899 +#: sql_help.c:2908 sql_help.c:2918 sql_help.c:2921 sql_help.c:2931 +#: sql_help.c:2935 sql_help.c:2958 sql_help.c:2960 sql_help.c:2967 +#: sql_help.c:2980 sql_help.c:2985 sql_help.c:2992 sql_help.c:2993 +#: sql_help.c:3009 sql_help.c:3135 sql_help.c:3275 sql_help.c:3898 +#: sql_help.c:3899 sql_help.c:3995 sql_help.c:4010 sql_help.c:4012 +#: sql_help.c:4014 sql_help.c:4101 sql_help.c:4104 sql_help.c:4106 +#: sql_help.c:4108 sql_help.c:4351 sql_help.c:4352 sql_help.c:4472 +#: sql_help.c:4633 sql_help.c:4639 sql_help.c:4641 sql_help.c:4890 +#: sql_help.c:4896 sql_help.c:4898 sql_help.c:4939 sql_help.c:4941 +#: sql_help.c:4943 sql_help.c:4990 sql_help.c:5128 sql_help.c:5134 +#: sql_help.c:5136 msgid "column_name" msgstr "Spaltenname" -#: sql_help.c:447 sql_help.c:672 sql_help.c:1312 sql_help.c:1691 +#: sql_help.c:457 sql_help.c:682 sql_help.c:1321 sql_help.c:1703 msgid "new_column_name" msgstr "neuer_Spaltenname" -#: sql_help.c:452 sql_help.c:544 sql_help.c:680 sql_help.c:874 sql_help.c:1024 -#: sql_help.c:1328 sql_help.c:1591 +#: sql_help.c:462 sql_help.c:554 sql_help.c:690 sql_help.c:884 sql_help.c:1034 +#: sql_help.c:1337 sql_help.c:1603 msgid "where action is one of:" msgstr "wobei Aktion Folgendes sein kann:" -#: sql_help.c:454 sql_help.c:459 sql_help.c:1072 sql_help.c:1330 -#: sql_help.c:1335 sql_help.c:1593 sql_help.c:1597 sql_help.c:2229 -#: sql_help.c:2326 sql_help.c:2538 sql_help.c:2731 sql_help.c:2888 -#: sql_help.c:3167 sql_help.c:4141 +#: sql_help.c:464 sql_help.c:469 sql_help.c:1082 sql_help.c:1339 +#: sql_help.c:1344 sql_help.c:1605 sql_help.c:1609 sql_help.c:2241 +#: sql_help.c:2338 sql_help.c:2550 sql_help.c:2743 sql_help.c:2900 +#: sql_help.c:3182 sql_help.c:4160 msgid "data_type" msgstr "Datentyp" -#: sql_help.c:455 sql_help.c:460 sql_help.c:1331 sql_help.c:1336 -#: sql_help.c:1594 sql_help.c:1598 sql_help.c:2230 sql_help.c:2329 -#: sql_help.c:2461 sql_help.c:2890 sql_help.c:2898 sql_help.c:2911 -#: sql_help.c:2925 sql_help.c:3168 sql_help.c:3174 sql_help.c:3990 +#: sql_help.c:465 sql_help.c:470 sql_help.c:1340 sql_help.c:1345 +#: sql_help.c:1438 sql_help.c:1606 sql_help.c:1610 sql_help.c:2242 +#: sql_help.c:2341 sql_help.c:2473 sql_help.c:2902 sql_help.c:2910 +#: sql_help.c:2923 sql_help.c:2937 sql_help.c:2987 sql_help.c:3183 +#: sql_help.c:3189 sql_help.c:4005 msgid "collation" msgstr "Sortierfolge" -#: sql_help.c:456 sql_help.c:1332 sql_help.c:2330 sql_help.c:2339 -#: sql_help.c:2891 sql_help.c:2907 sql_help.c:2920 +#: sql_help.c:466 sql_help.c:1341 sql_help.c:2342 sql_help.c:2351 +#: sql_help.c:2903 sql_help.c:2919 sql_help.c:2932 msgid "column_constraint" msgstr "Spalten-Constraint" -#: sql_help.c:466 sql_help.c:608 sql_help.c:682 sql_help.c:1350 sql_help.c:4968 +#: sql_help.c:476 sql_help.c:618 sql_help.c:692 sql_help.c:1359 sql_help.c:4987 msgid "integer" msgstr "ganze_Zahl" -#: sql_help.c:468 sql_help.c:471 sql_help.c:684 sql_help.c:687 sql_help.c:1352 -#: sql_help.c:1355 +#: sql_help.c:478 sql_help.c:481 sql_help.c:694 sql_help.c:697 sql_help.c:1361 +#: sql_help.c:1364 msgid "attribute_option" msgstr "Attributoption" -#: sql_help.c:476 sql_help.c:1359 sql_help.c:2331 sql_help.c:2340 -#: sql_help.c:2892 sql_help.c:2908 sql_help.c:2921 +#: sql_help.c:486 sql_help.c:1368 sql_help.c:2343 sql_help.c:2352 +#: sql_help.c:2904 sql_help.c:2920 sql_help.c:2933 msgid "table_constraint" msgstr "Tabellen-Constraint" -#: sql_help.c:479 sql_help.c:480 sql_help.c:481 sql_help.c:482 sql_help.c:1364 -#: sql_help.c:1365 sql_help.c:1366 sql_help.c:1367 sql_help.c:1905 +#: sql_help.c:489 sql_help.c:490 sql_help.c:491 sql_help.c:492 sql_help.c:1373 +#: sql_help.c:1374 sql_help.c:1375 sql_help.c:1376 sql_help.c:1917 msgid "trigger_name" msgstr "Triggername" -#: sql_help.c:483 sql_help.c:484 sql_help.c:1378 sql_help.c:1379 -#: sql_help.c:2332 sql_help.c:2337 sql_help.c:2895 sql_help.c:2918 +#: sql_help.c:493 sql_help.c:494 sql_help.c:1387 sql_help.c:1388 +#: sql_help.c:2344 sql_help.c:2349 sql_help.c:2907 sql_help.c:2930 msgid "parent_table" msgstr "Elterntabelle" -#: sql_help.c:543 sql_help.c:600 sql_help.c:669 sql_help.c:873 sql_help.c:1023 -#: sql_help.c:1550 sql_help.c:2261 +#: sql_help.c:553 sql_help.c:610 sql_help.c:679 sql_help.c:883 sql_help.c:1033 +#: sql_help.c:1562 sql_help.c:2273 msgid "extension_name" msgstr "Erweiterungsname" -#: sql_help.c:545 sql_help.c:1025 sql_help.c:2395 +#: sql_help.c:555 sql_help.c:1035 sql_help.c:2407 msgid "execution_cost" msgstr "Ausführungskosten" -#: sql_help.c:546 sql_help.c:1026 sql_help.c:2396 +#: sql_help.c:556 sql_help.c:1036 sql_help.c:2408 msgid "result_rows" msgstr "Ergebniszeilen" -#: sql_help.c:547 sql_help.c:2397 +#: sql_help.c:557 sql_help.c:2409 msgid "support_function" msgstr "Support-Funktion" -#: sql_help.c:569 sql_help.c:571 sql_help.c:948 sql_help.c:956 sql_help.c:960 -#: sql_help.c:963 sql_help.c:966 sql_help.c:1633 sql_help.c:1641 -#: sql_help.c:1645 sql_help.c:1648 sql_help.c:1651 sql_help.c:2709 -#: sql_help.c:2711 sql_help.c:2714 sql_help.c:2715 sql_help.c:3881 -#: sql_help.c:3882 sql_help.c:3886 sql_help.c:3887 sql_help.c:3890 -#: sql_help.c:3891 sql_help.c:3893 sql_help.c:3894 sql_help.c:3896 -#: sql_help.c:3897 sql_help.c:3899 sql_help.c:3900 sql_help.c:3902 -#: sql_help.c:3903 sql_help.c:3909 sql_help.c:3910 sql_help.c:3912 -#: sql_help.c:3913 sql_help.c:3915 sql_help.c:3916 sql_help.c:3918 -#: sql_help.c:3919 sql_help.c:3921 sql_help.c:3922 sql_help.c:3924 -#: sql_help.c:3925 sql_help.c:3927 sql_help.c:3928 sql_help.c:3930 -#: sql_help.c:3931 sql_help.c:4330 sql_help.c:4331 sql_help.c:4335 -#: sql_help.c:4336 sql_help.c:4339 sql_help.c:4340 sql_help.c:4342 -#: sql_help.c:4343 sql_help.c:4345 sql_help.c:4346 sql_help.c:4348 -#: sql_help.c:4349 sql_help.c:4351 sql_help.c:4352 sql_help.c:4358 -#: sql_help.c:4359 sql_help.c:4361 sql_help.c:4362 sql_help.c:4364 -#: sql_help.c:4365 sql_help.c:4367 sql_help.c:4368 sql_help.c:4370 -#: sql_help.c:4371 sql_help.c:4373 sql_help.c:4374 sql_help.c:4376 -#: sql_help.c:4377 sql_help.c:4379 sql_help.c:4380 +#: sql_help.c:579 sql_help.c:581 sql_help.c:958 sql_help.c:966 sql_help.c:970 +#: sql_help.c:973 sql_help.c:976 sql_help.c:1645 sql_help.c:1653 +#: sql_help.c:1657 sql_help.c:1660 sql_help.c:1663 sql_help.c:2721 +#: sql_help.c:2723 sql_help.c:2726 sql_help.c:2727 sql_help.c:3896 +#: sql_help.c:3897 sql_help.c:3901 sql_help.c:3902 sql_help.c:3905 +#: sql_help.c:3906 sql_help.c:3908 sql_help.c:3909 sql_help.c:3911 +#: sql_help.c:3912 sql_help.c:3914 sql_help.c:3915 sql_help.c:3917 +#: sql_help.c:3918 sql_help.c:3924 sql_help.c:3925 sql_help.c:3927 +#: sql_help.c:3928 sql_help.c:3930 sql_help.c:3931 sql_help.c:3933 +#: sql_help.c:3934 sql_help.c:3936 sql_help.c:3937 sql_help.c:3939 +#: sql_help.c:3940 sql_help.c:3942 sql_help.c:3943 sql_help.c:3945 +#: sql_help.c:3946 sql_help.c:4349 sql_help.c:4350 sql_help.c:4354 +#: sql_help.c:4355 sql_help.c:4358 sql_help.c:4359 sql_help.c:4361 +#: sql_help.c:4362 sql_help.c:4364 sql_help.c:4365 sql_help.c:4367 +#: sql_help.c:4368 sql_help.c:4370 sql_help.c:4371 sql_help.c:4377 +#: sql_help.c:4378 sql_help.c:4380 sql_help.c:4381 sql_help.c:4383 +#: sql_help.c:4384 sql_help.c:4386 sql_help.c:4387 sql_help.c:4389 +#: sql_help.c:4390 sql_help.c:4392 sql_help.c:4393 sql_help.c:4395 +#: sql_help.c:4396 sql_help.c:4398 sql_help.c:4399 msgid "role_specification" msgstr "Rollenangabe" -#: sql_help.c:570 sql_help.c:572 sql_help.c:1664 sql_help.c:2198 -#: sql_help.c:2717 sql_help.c:3245 sql_help.c:3696 sql_help.c:4707 +#: sql_help.c:580 sql_help.c:582 sql_help.c:1676 sql_help.c:2210 +#: sql_help.c:2729 sql_help.c:3260 sql_help.c:3711 sql_help.c:4726 msgid "user_name" msgstr "Benutzername" -#: sql_help.c:573 sql_help.c:968 sql_help.c:1653 sql_help.c:2716 -#: sql_help.c:3932 sql_help.c:4381 +#: sql_help.c:583 sql_help.c:978 sql_help.c:1665 sql_help.c:2728 +#: sql_help.c:3947 sql_help.c:4400 msgid "where role_specification can be:" msgstr "wobei Rollenangabe Folgendes sein kann:" -#: sql_help.c:575 +#: sql_help.c:585 msgid "group_name" msgstr "Gruppenname" -#: sql_help.c:596 sql_help.c:1425 sql_help.c:2208 sql_help.c:2468 -#: sql_help.c:2502 sql_help.c:2903 sql_help.c:2916 sql_help.c:2930 -#: sql_help.c:2971 sql_help.c:2998 sql_help.c:3010 sql_help.c:3923 -#: sql_help.c:4372 +#: sql_help.c:606 sql_help.c:1434 sql_help.c:2220 sql_help.c:2480 +#: sql_help.c:2514 sql_help.c:2915 sql_help.c:2928 sql_help.c:2942 +#: sql_help.c:2983 sql_help.c:3013 sql_help.c:3025 sql_help.c:3938 +#: sql_help.c:4391 msgid "tablespace_name" msgstr "Tablespace-Name" -#: sql_help.c:598 sql_help.c:691 sql_help.c:1372 sql_help.c:1382 -#: sql_help.c:1420 sql_help.c:1780 sql_help.c:1783 +#: sql_help.c:608 sql_help.c:701 sql_help.c:1381 sql_help.c:1391 +#: sql_help.c:1429 sql_help.c:1792 sql_help.c:1795 msgid "index_name" msgstr "Indexname" -#: sql_help.c:602 sql_help.c:605 sql_help.c:694 sql_help.c:696 sql_help.c:1375 -#: sql_help.c:1377 sql_help.c:1423 sql_help.c:2466 sql_help.c:2500 -#: sql_help.c:2901 sql_help.c:2914 sql_help.c:2928 sql_help.c:2969 -#: sql_help.c:2996 +#: sql_help.c:612 sql_help.c:615 sql_help.c:704 sql_help.c:706 sql_help.c:1384 +#: sql_help.c:1386 sql_help.c:1432 sql_help.c:2478 sql_help.c:2512 +#: sql_help.c:2913 sql_help.c:2926 sql_help.c:2940 sql_help.c:2981 +#: sql_help.c:3011 msgid "storage_parameter" msgstr "Storage-Parameter" -#: sql_help.c:607 +#: sql_help.c:617 msgid "column_number" msgstr "Spaltennummer" -#: sql_help.c:631 sql_help.c:1868 sql_help.c:4464 +#: sql_help.c:641 sql_help.c:1880 sql_help.c:4483 msgid "large_object_oid" msgstr "Large-Object-OID" -#: sql_help.c:690 sql_help.c:1358 sql_help.c:2889 +#: sql_help.c:700 sql_help.c:1367 sql_help.c:2901 msgid "compression_method" msgstr "Kompressionsmethode" -#: sql_help.c:692 sql_help.c:1373 +#: sql_help.c:702 sql_help.c:1382 msgid "new_access_method" msgstr "neue_Zugriffsmethode" -#: sql_help.c:725 sql_help.c:2523 +#: sql_help.c:735 sql_help.c:2535 msgid "res_proc" msgstr "Res-Funktion" -#: sql_help.c:726 sql_help.c:2524 +#: sql_help.c:736 sql_help.c:2536 msgid "join_proc" msgstr "Join-Funktion" -#: sql_help.c:778 sql_help.c:790 sql_help.c:2541 +#: sql_help.c:788 sql_help.c:800 sql_help.c:2553 msgid "strategy_number" msgstr "Strategienummer" -#: sql_help.c:780 sql_help.c:781 sql_help.c:784 sql_help.c:785 sql_help.c:791 -#: sql_help.c:792 sql_help.c:794 sql_help.c:795 sql_help.c:2543 sql_help.c:2544 -#: sql_help.c:2547 sql_help.c:2548 +#: sql_help.c:790 sql_help.c:791 sql_help.c:794 sql_help.c:795 sql_help.c:801 +#: sql_help.c:802 sql_help.c:804 sql_help.c:805 sql_help.c:2555 sql_help.c:2556 +#: sql_help.c:2559 sql_help.c:2560 msgid "op_type" msgstr "Optyp" -#: sql_help.c:782 sql_help.c:2545 +#: sql_help.c:792 sql_help.c:2557 msgid "sort_family_name" msgstr "Sortierfamilienname" -#: sql_help.c:783 sql_help.c:793 sql_help.c:2546 +#: sql_help.c:793 sql_help.c:803 sql_help.c:2558 msgid "support_number" msgstr "Unterst-Nummer" -#: sql_help.c:787 sql_help.c:2134 sql_help.c:2550 sql_help.c:3087 -#: sql_help.c:3089 +#: sql_help.c:797 sql_help.c:2146 sql_help.c:2562 sql_help.c:3102 +#: sql_help.c:3104 msgid "argument_type" msgstr "Argumenttyp" -#: sql_help.c:818 sql_help.c:821 sql_help.c:910 sql_help.c:1039 sql_help.c:1079 -#: sql_help.c:1546 sql_help.c:1549 sql_help.c:1725 sql_help.c:1779 -#: sql_help.c:1782 sql_help.c:1853 sql_help.c:1878 sql_help.c:1891 -#: sql_help.c:1906 sql_help.c:1963 sql_help.c:1969 sql_help.c:2324 -#: sql_help.c:2336 sql_help.c:2457 sql_help.c:2497 sql_help.c:2574 -#: sql_help.c:2628 sql_help.c:2685 sql_help.c:2737 sql_help.c:2770 -#: sql_help.c:2777 sql_help.c:2886 sql_help.c:2904 sql_help.c:2917 -#: sql_help.c:2993 sql_help.c:3113 sql_help.c:3294 sql_help.c:3517 -#: sql_help.c:3566 sql_help.c:3672 sql_help.c:3879 sql_help.c:3885 -#: sql_help.c:3946 sql_help.c:3978 sql_help.c:4328 sql_help.c:4334 -#: sql_help.c:4452 sql_help.c:4563 sql_help.c:4565 sql_help.c:4627 -#: sql_help.c:4666 sql_help.c:4820 sql_help.c:4822 sql_help.c:4884 -#: sql_help.c:4918 sql_help.c:4970 sql_help.c:5058 sql_help.c:5060 -#: sql_help.c:5122 +#: sql_help.c:828 sql_help.c:831 sql_help.c:920 sql_help.c:1049 sql_help.c:1089 +#: sql_help.c:1558 sql_help.c:1561 sql_help.c:1737 sql_help.c:1791 +#: sql_help.c:1794 sql_help.c:1865 sql_help.c:1890 sql_help.c:1903 +#: sql_help.c:1918 sql_help.c:1975 sql_help.c:1981 sql_help.c:2336 +#: sql_help.c:2348 sql_help.c:2469 sql_help.c:2509 sql_help.c:2586 +#: sql_help.c:2640 sql_help.c:2697 sql_help.c:2749 sql_help.c:2782 +#: sql_help.c:2789 sql_help.c:2898 sql_help.c:2916 sql_help.c:2929 +#: sql_help.c:3008 sql_help.c:3128 sql_help.c:3309 sql_help.c:3532 +#: sql_help.c:3581 sql_help.c:3687 sql_help.c:3894 sql_help.c:3900 +#: sql_help.c:3961 sql_help.c:3993 sql_help.c:4347 sql_help.c:4353 +#: sql_help.c:4471 sql_help.c:4582 sql_help.c:4584 sql_help.c:4646 +#: sql_help.c:4685 sql_help.c:4839 sql_help.c:4841 sql_help.c:4903 +#: sql_help.c:4937 sql_help.c:4989 sql_help.c:5077 sql_help.c:5079 +#: sql_help.c:5141 msgid "table_name" msgstr "Tabellenname" -#: sql_help.c:823 sql_help.c:2576 +#: sql_help.c:833 sql_help.c:2588 msgid "using_expression" msgstr "Using-Ausdruck" -#: sql_help.c:824 sql_help.c:2577 +#: sql_help.c:834 sql_help.c:2589 msgid "check_expression" msgstr "Check-Ausdruck" -#: sql_help.c:897 sql_help.c:899 sql_help.c:901 sql_help.c:2624 +#: sql_help.c:907 sql_help.c:909 sql_help.c:911 sql_help.c:2636 msgid "publication_object" msgstr "Publikationsobjekt" -#: sql_help.c:903 sql_help.c:2625 +#: sql_help.c:913 sql_help.c:2637 msgid "publication_parameter" msgstr "Publikationsparameter" -#: sql_help.c:909 sql_help.c:2627 +#: sql_help.c:919 sql_help.c:2639 msgid "where publication_object is one of:" msgstr "wobei Publikationsobjekt Folgendes sein kann:" -#: sql_help.c:952 sql_help.c:1637 sql_help.c:2435 sql_help.c:2662 -#: sql_help.c:3228 +#: sql_help.c:962 sql_help.c:1649 sql_help.c:2447 sql_help.c:2674 +#: sql_help.c:3243 msgid "password" msgstr "Passwort" -#: sql_help.c:953 sql_help.c:1638 sql_help.c:2436 sql_help.c:2663 -#: sql_help.c:3229 +#: sql_help.c:963 sql_help.c:1650 sql_help.c:2448 sql_help.c:2675 +#: sql_help.c:3244 msgid "timestamp" msgstr "Zeit" -#: sql_help.c:957 sql_help.c:961 sql_help.c:964 sql_help.c:967 sql_help.c:1642 -#: sql_help.c:1646 sql_help.c:1649 sql_help.c:1652 sql_help.c:3892 -#: sql_help.c:4341 +#: sql_help.c:967 sql_help.c:971 sql_help.c:974 sql_help.c:977 sql_help.c:1654 +#: sql_help.c:1658 sql_help.c:1661 sql_help.c:1664 sql_help.c:3907 +#: sql_help.c:4360 msgid "database_name" msgstr "Datenbankname" -#: sql_help.c:1073 sql_help.c:2732 +#: sql_help.c:1083 sql_help.c:2744 msgid "increment" msgstr "Inkrement" -#: sql_help.c:1074 sql_help.c:2733 +#: sql_help.c:1084 sql_help.c:2745 msgid "minvalue" msgstr "Minwert" -#: sql_help.c:1075 sql_help.c:2734 +#: sql_help.c:1085 sql_help.c:2746 msgid "maxvalue" msgstr "Maxwert" -#: sql_help.c:1076 sql_help.c:2735 sql_help.c:4561 sql_help.c:4664 -#: sql_help.c:4818 sql_help.c:4987 sql_help.c:5056 +#: sql_help.c:1086 sql_help.c:2747 sql_help.c:4580 sql_help.c:4683 +#: sql_help.c:4837 sql_help.c:5006 sql_help.c:5075 msgid "start" msgstr "Start" -#: sql_help.c:1077 sql_help.c:1347 +#: sql_help.c:1087 sql_help.c:1356 msgid "restart" msgstr "Restart" -#: sql_help.c:1078 sql_help.c:2736 +#: sql_help.c:1088 sql_help.c:2748 msgid "cache" msgstr "Cache" -#: sql_help.c:1123 +#: sql_help.c:1133 msgid "new_target" msgstr "neues_Ziel" -#: sql_help.c:1142 sql_help.c:2789 +#: sql_help.c:1152 sql_help.c:2801 msgid "conninfo" msgstr "Verbindungsinfo" -#: sql_help.c:1144 sql_help.c:1148 sql_help.c:1152 sql_help.c:2790 +#: sql_help.c:1154 sql_help.c:1158 sql_help.c:1162 sql_help.c:2802 msgid "publication_name" msgstr "Publikationsname" -#: sql_help.c:1145 sql_help.c:1149 sql_help.c:1153 +#: sql_help.c:1155 sql_help.c:1159 sql_help.c:1163 msgid "publication_option" msgstr "Publikationsoption" -#: sql_help.c:1156 +#: sql_help.c:1166 msgid "refresh_option" msgstr "Refresh-Option" -#: sql_help.c:1161 sql_help.c:2791 +#: sql_help.c:1171 sql_help.c:2803 msgid "subscription_parameter" msgstr "Subskriptionsparameter" -#: sql_help.c:1164 +#: sql_help.c:1174 msgid "skip_option" msgstr "Skip-Option" -#: sql_help.c:1324 sql_help.c:1327 +#: sql_help.c:1333 sql_help.c:1336 msgid "partition_name" msgstr "Partitionsname" -#: sql_help.c:1325 sql_help.c:2341 sql_help.c:2922 +#: sql_help.c:1334 sql_help.c:2353 sql_help.c:2934 msgid "partition_bound_spec" msgstr "Partitionsbegrenzungsangabe" -#: sql_help.c:1344 sql_help.c:1394 sql_help.c:2936 +#: sql_help.c:1353 sql_help.c:1403 sql_help.c:2948 msgid "sequence_options" msgstr "Sequenzoptionen" -#: sql_help.c:1346 +#: sql_help.c:1355 msgid "sequence_option" msgstr "Sequenzoption" -#: sql_help.c:1360 +#: sql_help.c:1369 msgid "table_constraint_using_index" msgstr "Tabellen-Constraint-für-Index" -#: sql_help.c:1368 sql_help.c:1369 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1377 sql_help.c:1378 sql_help.c:1379 sql_help.c:1380 msgid "rewrite_rule_name" msgstr "Regelname" -#: sql_help.c:1383 sql_help.c:2353 sql_help.c:2961 +#: sql_help.c:1392 sql_help.c:2365 sql_help.c:2973 msgid "and partition_bound_spec is:" msgstr "und Partitionsbegrenzungsangabe Folgendes ist:" -#: sql_help.c:1384 sql_help.c:1385 sql_help.c:1386 sql_help.c:2354 -#: sql_help.c:2355 sql_help.c:2356 sql_help.c:2962 sql_help.c:2963 -#: sql_help.c:2964 +#: sql_help.c:1393 sql_help.c:1394 sql_help.c:1395 sql_help.c:2366 +#: sql_help.c:2367 sql_help.c:2368 sql_help.c:2974 sql_help.c:2975 +#: sql_help.c:2976 msgid "partition_bound_expr" msgstr "Partitionsbegrenzungsausdruck" -#: sql_help.c:1387 sql_help.c:1388 sql_help.c:2357 sql_help.c:2358 -#: sql_help.c:2965 sql_help.c:2966 +#: sql_help.c:1396 sql_help.c:1397 sql_help.c:2369 sql_help.c:2370 +#: sql_help.c:2977 sql_help.c:2978 msgid "numeric_literal" msgstr "numerische_Konstante" -#: sql_help.c:1389 +#: sql_help.c:1398 msgid "and column_constraint is:" msgstr "und Spalten-Constraint Folgendes ist:" -#: sql_help.c:1392 sql_help.c:2348 sql_help.c:2389 sql_help.c:2598 -#: sql_help.c:2934 +#: sql_help.c:1401 sql_help.c:2360 sql_help.c:2401 sql_help.c:2610 +#: sql_help.c:2946 msgid "default_expr" msgstr "Vorgabeausdruck" -#: sql_help.c:1393 sql_help.c:2349 sql_help.c:2935 +#: sql_help.c:1402 sql_help.c:2361 sql_help.c:2947 msgid "generation_expr" msgstr "Generierungsausdruck" -#: sql_help.c:1395 sql_help.c:1396 sql_help.c:1405 sql_help.c:1407 -#: sql_help.c:1411 sql_help.c:2937 sql_help.c:2938 sql_help.c:2947 -#: sql_help.c:2949 sql_help.c:2953 +#: sql_help.c:1404 sql_help.c:1405 sql_help.c:1414 sql_help.c:1416 +#: sql_help.c:1420 sql_help.c:2949 sql_help.c:2950 sql_help.c:2959 +#: sql_help.c:2961 sql_help.c:2965 msgid "index_parameters" msgstr "Indexparameter" -#: sql_help.c:1397 sql_help.c:1414 sql_help.c:2939 sql_help.c:2956 +#: sql_help.c:1406 sql_help.c:1423 sql_help.c:2951 sql_help.c:2968 msgid "reftable" msgstr "Reftabelle" -#: sql_help.c:1398 sql_help.c:1415 sql_help.c:2940 sql_help.c:2957 +#: sql_help.c:1407 sql_help.c:1424 sql_help.c:2952 sql_help.c:2969 msgid "refcolumn" msgstr "Refspalte" -#: sql_help.c:1399 sql_help.c:1400 sql_help.c:1416 sql_help.c:1417 -#: sql_help.c:2941 sql_help.c:2942 sql_help.c:2958 sql_help.c:2959 +#: sql_help.c:1408 sql_help.c:1409 sql_help.c:1425 sql_help.c:1426 +#: sql_help.c:2953 sql_help.c:2954 sql_help.c:2970 sql_help.c:2971 msgid "referential_action" msgstr "Fremdschlüsselaktion" -#: sql_help.c:1401 sql_help.c:2350 sql_help.c:2943 +#: sql_help.c:1410 sql_help.c:2362 sql_help.c:2955 msgid "and table_constraint is:" msgstr "und Tabellen-Constraint Folgendes ist:" -#: sql_help.c:1409 sql_help.c:2951 +#: sql_help.c:1418 sql_help.c:2963 msgid "exclude_element" msgstr "Exclude-Element" -#: sql_help.c:1410 sql_help.c:2952 sql_help.c:4559 sql_help.c:4662 -#: sql_help.c:4816 sql_help.c:4985 sql_help.c:5054 +#: sql_help.c:1419 sql_help.c:2964 sql_help.c:4578 sql_help.c:4681 +#: sql_help.c:4835 sql_help.c:5004 sql_help.c:5073 msgid "operator" msgstr "Operator" -#: sql_help.c:1412 sql_help.c:2469 sql_help.c:2954 +#: sql_help.c:1421 sql_help.c:2481 sql_help.c:2966 msgid "predicate" msgstr "Prädikat" -#: sql_help.c:1418 +#: sql_help.c:1427 msgid "and table_constraint_using_index is:" msgstr "und Tabellen-Constraint-für-Index Folgendes ist:" -#: sql_help.c:1421 sql_help.c:2967 +#: sql_help.c:1430 sql_help.c:2979 msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:" msgstr "Indexparameter bei UNIQUE-, PRIMARY KEY- und EXCLUDE-Constraints sind:" -#: sql_help.c:1426 sql_help.c:2972 +#: sql_help.c:1435 sql_help.c:2984 msgid "exclude_element in an EXCLUDE constraint is:" msgstr "Exclude-Element in einem EXCLUDE-Constraint ist:" -#: sql_help.c:1429 sql_help.c:2462 sql_help.c:2899 sql_help.c:2912 -#: sql_help.c:2926 sql_help.c:2975 sql_help.c:3991 +#: sql_help.c:1439 sql_help.c:2474 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:2938 sql_help.c:2988 sql_help.c:4006 msgid "opclass" msgstr "Opklasse" -#: sql_help.c:1430 sql_help.c:2976 +#: sql_help.c:1440 sql_help.c:2475 sql_help.c:2989 +msgid "opclass_parameter" +msgstr "Opklassen-Parameter" + +#: sql_help.c:1442 sql_help.c:2991 msgid "referential_action in a FOREIGN KEY/REFERENCES constraint is:" msgstr "Fremdschlüsselaktion in FOREIGN KEY/REFERENCES ist:" -#: sql_help.c:1448 sql_help.c:1451 sql_help.c:3013 +#: sql_help.c:1460 sql_help.c:1463 sql_help.c:3028 msgid "tablespace_option" msgstr "Tablespace-Option" -#: sql_help.c:1472 sql_help.c:1475 sql_help.c:1481 sql_help.c:1485 +#: sql_help.c:1484 sql_help.c:1487 sql_help.c:1493 sql_help.c:1497 msgid "token_type" msgstr "Tokentyp" -#: sql_help.c:1473 sql_help.c:1476 +#: sql_help.c:1485 sql_help.c:1488 msgid "dictionary_name" msgstr "Wörterbuchname" -#: sql_help.c:1478 sql_help.c:1482 +#: sql_help.c:1490 sql_help.c:1494 msgid "old_dictionary" msgstr "altes_Wörterbuch" -#: sql_help.c:1479 sql_help.c:1483 +#: sql_help.c:1491 sql_help.c:1495 msgid "new_dictionary" msgstr "neues_Wörterbuch" -#: sql_help.c:1578 sql_help.c:1592 sql_help.c:1595 sql_help.c:1596 -#: sql_help.c:3166 +#: sql_help.c:1590 sql_help.c:1604 sql_help.c:1607 sql_help.c:1608 +#: sql_help.c:3181 msgid "attribute_name" msgstr "Attributname" -#: sql_help.c:1579 +#: sql_help.c:1591 msgid "new_attribute_name" msgstr "neuer_Attributname" -#: sql_help.c:1583 sql_help.c:1587 +#: sql_help.c:1595 sql_help.c:1599 msgid "new_enum_value" msgstr "neuer_Enum-Wert" -#: sql_help.c:1584 +#: sql_help.c:1596 msgid "neighbor_enum_value" msgstr "Nachbar-Enum-Wert" -#: sql_help.c:1586 +#: sql_help.c:1598 msgid "existing_enum_value" msgstr "existierender_Enum-Wert" -#: sql_help.c:1589 +#: sql_help.c:1601 msgid "property" msgstr "Eigenschaft" -#: sql_help.c:1665 sql_help.c:2333 sql_help.c:2342 sql_help.c:2748 -#: sql_help.c:3246 sql_help.c:3697 sql_help.c:3901 sql_help.c:3947 -#: sql_help.c:4350 +#: sql_help.c:1677 sql_help.c:2345 sql_help.c:2354 sql_help.c:2760 +#: sql_help.c:3261 sql_help.c:3712 sql_help.c:3916 sql_help.c:3962 +#: sql_help.c:4369 msgid "server_name" msgstr "Servername" -#: sql_help.c:1697 sql_help.c:1700 sql_help.c:3261 +#: sql_help.c:1709 sql_help.c:1712 sql_help.c:3276 msgid "view_option_name" msgstr "Sichtoptionsname" -#: sql_help.c:1698 sql_help.c:3262 +#: sql_help.c:1710 sql_help.c:3277 msgid "view_option_value" msgstr "Sichtoptionswert" -#: sql_help.c:1719 sql_help.c:1720 sql_help.c:4957 sql_help.c:4958 +#: sql_help.c:1731 sql_help.c:1732 sql_help.c:4976 sql_help.c:4977 msgid "table_and_columns" msgstr "Tabelle-und-Spalten" -#: sql_help.c:1721 sql_help.c:1784 sql_help.c:1975 sql_help.c:3745 -#: sql_help.c:4185 sql_help.c:4959 +#: sql_help.c:1733 sql_help.c:1796 sql_help.c:1987 sql_help.c:3760 +#: sql_help.c:4204 sql_help.c:4978 msgid "where option can be one of:" msgstr "wobei Option eine der folgenden sein kann:" -#: sql_help.c:1722 sql_help.c:1723 sql_help.c:1785 sql_help.c:1977 -#: sql_help.c:1980 sql_help.c:2159 sql_help.c:3746 sql_help.c:3747 -#: sql_help.c:3748 sql_help.c:3749 sql_help.c:3750 sql_help.c:3751 -#: sql_help.c:3752 sql_help.c:3753 sql_help.c:4186 sql_help.c:4188 -#: sql_help.c:4960 sql_help.c:4961 sql_help.c:4962 sql_help.c:4963 -#: sql_help.c:4964 sql_help.c:4965 sql_help.c:4966 sql_help.c:4967 +#: sql_help.c:1734 sql_help.c:1735 sql_help.c:1797 sql_help.c:1989 +#: sql_help.c:1992 sql_help.c:2171 sql_help.c:3761 sql_help.c:3762 +#: sql_help.c:3763 sql_help.c:3764 sql_help.c:3765 sql_help.c:3766 +#: sql_help.c:3767 sql_help.c:3768 sql_help.c:4205 sql_help.c:4207 +#: sql_help.c:4979 sql_help.c:4980 sql_help.c:4981 sql_help.c:4982 +#: sql_help.c:4983 sql_help.c:4984 sql_help.c:4985 sql_help.c:4986 msgid "boolean" msgstr "boolean" -#: sql_help.c:1724 sql_help.c:4969 +#: sql_help.c:1736 sql_help.c:4988 msgid "and table_and_columns is:" msgstr "und Tabelle-und-Spalten Folgendes ist:" -#: sql_help.c:1740 sql_help.c:4723 sql_help.c:4725 sql_help.c:4749 +#: sql_help.c:1752 sql_help.c:4742 sql_help.c:4744 sql_help.c:4768 msgid "transaction_mode" msgstr "Transaktionsmodus" -#: sql_help.c:1741 sql_help.c:4726 sql_help.c:4750 +#: sql_help.c:1753 sql_help.c:4745 sql_help.c:4769 msgid "where transaction_mode is one of:" msgstr "wobei Transaktionsmodus Folgendes sein kann:" -#: sql_help.c:1750 sql_help.c:4569 sql_help.c:4578 sql_help.c:4582 -#: sql_help.c:4586 sql_help.c:4589 sql_help.c:4826 sql_help.c:4835 -#: sql_help.c:4839 sql_help.c:4843 sql_help.c:4846 sql_help.c:5064 -#: sql_help.c:5073 sql_help.c:5077 sql_help.c:5081 sql_help.c:5084 +#: sql_help.c:1762 sql_help.c:4588 sql_help.c:4597 sql_help.c:4601 +#: sql_help.c:4605 sql_help.c:4608 sql_help.c:4845 sql_help.c:4854 +#: sql_help.c:4858 sql_help.c:4862 sql_help.c:4865 sql_help.c:5083 +#: sql_help.c:5092 sql_help.c:5096 sql_help.c:5100 sql_help.c:5103 msgid "argument" msgstr "Argument" -#: sql_help.c:1850 +#: sql_help.c:1862 msgid "relation_name" msgstr "Relationsname" -#: sql_help.c:1855 sql_help.c:3895 sql_help.c:4344 +#: sql_help.c:1867 sql_help.c:3910 sql_help.c:4363 msgid "domain_name" msgstr "Domänenname" -#: sql_help.c:1877 +#: sql_help.c:1889 msgid "policy_name" msgstr "Policy-Name" -#: sql_help.c:1890 +#: sql_help.c:1902 msgid "rule_name" msgstr "Regelname" -#: sql_help.c:1909 sql_help.c:4483 +#: sql_help.c:1921 sql_help.c:4502 msgid "string_literal" msgstr "Zeichenkettenkonstante" -#: sql_help.c:1934 sql_help.c:4150 sql_help.c:4397 +#: sql_help.c:1946 sql_help.c:4169 sql_help.c:4416 msgid "transaction_id" msgstr "Transaktions-ID" -#: sql_help.c:1965 sql_help.c:1972 sql_help.c:4017 +#: sql_help.c:1977 sql_help.c:1984 sql_help.c:4032 msgid "filename" msgstr "Dateiname" -#: sql_help.c:1966 sql_help.c:1973 sql_help.c:2687 sql_help.c:2688 -#: sql_help.c:2689 +#: sql_help.c:1978 sql_help.c:1985 sql_help.c:2699 sql_help.c:2700 +#: sql_help.c:2701 msgid "command" msgstr "Befehl" -#: sql_help.c:1968 sql_help.c:2686 sql_help.c:3116 sql_help.c:3297 -#: sql_help.c:4001 sql_help.c:4078 sql_help.c:4081 sql_help.c:4552 -#: sql_help.c:4554 sql_help.c:4655 sql_help.c:4657 sql_help.c:4809 -#: sql_help.c:4811 sql_help.c:4927 sql_help.c:5047 sql_help.c:5049 +#: sql_help.c:1980 sql_help.c:2698 sql_help.c:3131 sql_help.c:3312 +#: sql_help.c:4016 sql_help.c:4095 sql_help.c:4098 sql_help.c:4571 +#: sql_help.c:4573 sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 +#: sql_help.c:4830 sql_help.c:4946 sql_help.c:5066 sql_help.c:5068 msgid "condition" msgstr "Bedingung" -#: sql_help.c:1971 sql_help.c:2503 sql_help.c:2999 sql_help.c:3263 -#: sql_help.c:3281 sql_help.c:3982 +#: sql_help.c:1983 sql_help.c:2515 sql_help.c:3014 sql_help.c:3278 +#: sql_help.c:3296 sql_help.c:3997 msgid "query" msgstr "Anfrage" -#: sql_help.c:1976 +#: sql_help.c:1988 msgid "format_name" msgstr "Formatname" -#: sql_help.c:1978 +#: sql_help.c:1990 msgid "delimiter_character" msgstr "Trennzeichen" -#: sql_help.c:1979 +#: sql_help.c:1991 msgid "null_string" msgstr "Null-Zeichenkette" -#: sql_help.c:1981 +#: sql_help.c:1993 msgid "quote_character" msgstr "Quote-Zeichen" -#: sql_help.c:1982 +#: sql_help.c:1994 msgid "escape_character" msgstr "Escape-Zeichen" -#: sql_help.c:1986 +#: sql_help.c:1998 msgid "encoding_name" msgstr "Kodierungsname" -#: sql_help.c:1997 +#: sql_help.c:2009 msgid "access_method_type" msgstr "Zugriffsmethodentyp" -#: sql_help.c:2068 sql_help.c:2087 sql_help.c:2090 +#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2102 msgid "arg_data_type" msgstr "Arg-Datentyp" -#: sql_help.c:2069 sql_help.c:2091 sql_help.c:2099 +#: sql_help.c:2081 sql_help.c:2103 sql_help.c:2111 msgid "sfunc" msgstr "Übergangsfunktion" -#: sql_help.c:2070 sql_help.c:2092 sql_help.c:2100 +#: sql_help.c:2082 sql_help.c:2104 sql_help.c:2112 msgid "state_data_type" msgstr "Zustandsdatentyp" -#: sql_help.c:2071 sql_help.c:2093 sql_help.c:2101 +#: sql_help.c:2083 sql_help.c:2105 sql_help.c:2113 msgid "state_data_size" msgstr "Zustandsdatengröße" -#: sql_help.c:2072 sql_help.c:2094 sql_help.c:2102 +#: sql_help.c:2084 sql_help.c:2106 sql_help.c:2114 msgid "ffunc" msgstr "Abschlussfunktion" -#: sql_help.c:2073 sql_help.c:2103 +#: sql_help.c:2085 sql_help.c:2115 msgid "combinefunc" msgstr "Combine-Funktion" -#: sql_help.c:2074 sql_help.c:2104 +#: sql_help.c:2086 sql_help.c:2116 msgid "serialfunc" msgstr "Serialisierungsfunktion" -#: sql_help.c:2075 sql_help.c:2105 +#: sql_help.c:2087 sql_help.c:2117 msgid "deserialfunc" msgstr "Deserialisierungsfunktion" -#: sql_help.c:2076 sql_help.c:2095 sql_help.c:2106 +#: sql_help.c:2088 sql_help.c:2107 sql_help.c:2118 msgid "initial_condition" msgstr "Anfangswert" -#: sql_help.c:2077 sql_help.c:2107 +#: sql_help.c:2089 sql_help.c:2119 msgid "msfunc" msgstr "Moving-Übergangsfunktion" -#: sql_help.c:2078 sql_help.c:2108 +#: sql_help.c:2090 sql_help.c:2120 msgid "minvfunc" msgstr "Moving-Inversfunktion" -#: sql_help.c:2079 sql_help.c:2109 +#: sql_help.c:2091 sql_help.c:2121 msgid "mstate_data_type" msgstr "Moving-Zustandsdatentyp" -#: sql_help.c:2080 sql_help.c:2110 +#: sql_help.c:2092 sql_help.c:2122 msgid "mstate_data_size" msgstr "Moving-Zustandsdatengröße" -#: sql_help.c:2081 sql_help.c:2111 +#: sql_help.c:2093 sql_help.c:2123 msgid "mffunc" msgstr "Moving-Abschlussfunktion" -#: sql_help.c:2082 sql_help.c:2112 +#: sql_help.c:2094 sql_help.c:2124 msgid "minitial_condition" msgstr "Moving-Anfangswert" -#: sql_help.c:2083 sql_help.c:2113 +#: sql_help.c:2095 sql_help.c:2125 msgid "sort_operator" msgstr "Sortieroperator" -#: sql_help.c:2096 +#: sql_help.c:2108 msgid "or the old syntax" msgstr "oder die alte Syntax" -#: sql_help.c:2098 +#: sql_help.c:2110 msgid "base_type" msgstr "Basistyp" -#: sql_help.c:2155 sql_help.c:2202 +#: sql_help.c:2167 sql_help.c:2214 msgid "locale" msgstr "Locale" -#: sql_help.c:2156 sql_help.c:2203 +#: sql_help.c:2168 sql_help.c:2215 msgid "lc_collate" msgstr "lc_collate" -#: sql_help.c:2157 sql_help.c:2204 +#: sql_help.c:2169 sql_help.c:2216 msgid "lc_ctype" msgstr "lc_ctype" -#: sql_help.c:2158 sql_help.c:4450 +#: sql_help.c:2170 sql_help.c:4469 msgid "provider" msgstr "Provider" -#: sql_help.c:2160 sql_help.c:2263 +#: sql_help.c:2172 sql_help.c:2275 msgid "version" msgstr "Version" -#: sql_help.c:2162 +#: sql_help.c:2174 msgid "existing_collation" msgstr "existierende_Sortierfolge" -#: sql_help.c:2172 +#: sql_help.c:2184 msgid "source_encoding" msgstr "Quellkodierung" -#: sql_help.c:2173 +#: sql_help.c:2185 msgid "dest_encoding" msgstr "Zielkodierung" -#: sql_help.c:2199 sql_help.c:3039 +#: sql_help.c:2211 sql_help.c:3054 msgid "template" msgstr "Vorlage" -#: sql_help.c:2200 +#: sql_help.c:2212 msgid "encoding" msgstr "Kodierung" -#: sql_help.c:2201 +#: sql_help.c:2213 msgid "strategy" msgstr "Strategie" -#: sql_help.c:2205 +#: sql_help.c:2217 msgid "icu_locale" msgstr "ICU-Locale" -#: sql_help.c:2206 +#: sql_help.c:2218 msgid "locale_provider" msgstr "Locale-Provider" -#: sql_help.c:2207 +#: sql_help.c:2219 msgid "collation_version" msgstr "Sortierfolgenversion" -#: sql_help.c:2212 +#: sql_help.c:2224 msgid "oid" msgstr "OID" -#: sql_help.c:2232 +#: sql_help.c:2244 msgid "constraint" msgstr "Constraint" -#: sql_help.c:2233 +#: sql_help.c:2245 msgid "where constraint is:" msgstr "wobei Constraint Folgendes ist:" -#: sql_help.c:2247 sql_help.c:2684 sql_help.c:3112 +#: sql_help.c:2259 sql_help.c:2696 sql_help.c:3127 msgid "event" msgstr "Ereignis" -#: sql_help.c:2248 +#: sql_help.c:2260 msgid "filter_variable" msgstr "Filtervariable" -#: sql_help.c:2249 +#: sql_help.c:2261 msgid "filter_value" msgstr "Filterwert" -#: sql_help.c:2345 sql_help.c:2931 +#: sql_help.c:2357 sql_help.c:2943 msgid "where column_constraint is:" msgstr "wobei Spalten-Constraint Folgendes ist:" -#: sql_help.c:2390 +#: sql_help.c:2402 msgid "rettype" msgstr "Rückgabetyp" -#: sql_help.c:2392 +#: sql_help.c:2404 msgid "column_type" msgstr "Spaltentyp" -#: sql_help.c:2401 sql_help.c:2604 +#: sql_help.c:2413 sql_help.c:2616 msgid "definition" msgstr "Definition" -#: sql_help.c:2402 sql_help.c:2605 +#: sql_help.c:2414 sql_help.c:2617 msgid "obj_file" msgstr "Objektdatei" -#: sql_help.c:2403 sql_help.c:2606 +#: sql_help.c:2415 sql_help.c:2618 msgid "link_symbol" msgstr "Linksymbol" -#: sql_help.c:2404 sql_help.c:2607 +#: sql_help.c:2416 sql_help.c:2619 msgid "sql_body" msgstr "SQL-Rumpf" -#: sql_help.c:2442 sql_help.c:2669 sql_help.c:3235 +#: sql_help.c:2454 sql_help.c:2681 sql_help.c:3250 msgid "uid" msgstr "Uid" -#: sql_help.c:2458 sql_help.c:2499 sql_help.c:2900 sql_help.c:2913 -#: sql_help.c:2927 sql_help.c:2995 +#: sql_help.c:2470 sql_help.c:2511 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:2939 sql_help.c:3010 msgid "method" msgstr "Methode" -#: sql_help.c:2463 -msgid "opclass_parameter" -msgstr "Opklassen-Parameter" - -#: sql_help.c:2480 +#: sql_help.c:2492 msgid "call_handler" msgstr "Handler" -#: sql_help.c:2481 +#: sql_help.c:2493 msgid "inline_handler" msgstr "Inline-Handler" -#: sql_help.c:2482 +#: sql_help.c:2494 msgid "valfunction" msgstr "Valfunktion" -#: sql_help.c:2521 +#: sql_help.c:2533 msgid "com_op" msgstr "Kommutator-Op" -#: sql_help.c:2522 +#: sql_help.c:2534 msgid "neg_op" msgstr "Umkehrungs-Op" -#: sql_help.c:2540 +#: sql_help.c:2552 msgid "family_name" msgstr "Familienname" -#: sql_help.c:2551 +#: sql_help.c:2563 msgid "storage_type" msgstr "Storage-Typ" -#: sql_help.c:2690 sql_help.c:3119 +#: sql_help.c:2702 sql_help.c:3134 msgid "where event can be one of:" msgstr "wobei Ereignis eins der folgenden sein kann:" -#: sql_help.c:2710 sql_help.c:2712 +#: sql_help.c:2722 sql_help.c:2724 msgid "schema_element" msgstr "Schemaelement" -#: sql_help.c:2749 +#: sql_help.c:2761 msgid "server_type" msgstr "Servertyp" -#: sql_help.c:2750 +#: sql_help.c:2762 msgid "server_version" msgstr "Serverversion" -#: sql_help.c:2751 sql_help.c:3898 sql_help.c:4347 +#: sql_help.c:2763 sql_help.c:3913 sql_help.c:4366 msgid "fdw_name" msgstr "FDW-Name" -#: sql_help.c:2768 sql_help.c:2771 +#: sql_help.c:2780 sql_help.c:2783 msgid "statistics_name" msgstr "Statistikname" -#: sql_help.c:2772 +#: sql_help.c:2784 msgid "statistics_kind" msgstr "Statistikart" -#: sql_help.c:2788 +#: sql_help.c:2800 msgid "subscription_name" msgstr "Subskriptionsname" -#: sql_help.c:2893 +#: sql_help.c:2905 msgid "source_table" msgstr "Quelltabelle" -#: sql_help.c:2894 +#: sql_help.c:2906 msgid "like_option" msgstr "Like-Option" -#: sql_help.c:2960 +#: sql_help.c:2972 msgid "and like_option is:" msgstr "und Like-Option Folgendes ist:" -#: sql_help.c:3012 +#: sql_help.c:3027 msgid "directory" msgstr "Verzeichnis" -#: sql_help.c:3026 +#: sql_help.c:3041 msgid "parser_name" msgstr "Parser-Name" -#: sql_help.c:3027 +#: sql_help.c:3042 msgid "source_config" msgstr "Quellkonfig" -#: sql_help.c:3056 +#: sql_help.c:3071 msgid "start_function" msgstr "Startfunktion" -#: sql_help.c:3057 +#: sql_help.c:3072 msgid "gettoken_function" msgstr "Gettext-Funktion" -#: sql_help.c:3058 +#: sql_help.c:3073 msgid "end_function" msgstr "Endfunktion" -#: sql_help.c:3059 +#: sql_help.c:3074 msgid "lextypes_function" msgstr "Lextypenfunktion" -#: sql_help.c:3060 +#: sql_help.c:3075 msgid "headline_function" msgstr "Headline-Funktion" -#: sql_help.c:3072 +#: sql_help.c:3087 msgid "init_function" msgstr "Init-Funktion" -#: sql_help.c:3073 +#: sql_help.c:3088 msgid "lexize_function" msgstr "Lexize-Funktion" -#: sql_help.c:3086 +#: sql_help.c:3101 msgid "from_sql_function_name" msgstr "From-SQL-Funktionsname" -#: sql_help.c:3088 +#: sql_help.c:3103 msgid "to_sql_function_name" msgstr "To-SQL-Funktionsname" -#: sql_help.c:3114 +#: sql_help.c:3129 msgid "referenced_table_name" msgstr "verwiesener_Tabellenname" -#: sql_help.c:3115 +#: sql_help.c:3130 msgid "transition_relation_name" msgstr "Übergangsrelationsname" -#: sql_help.c:3118 +#: sql_help.c:3133 msgid "arguments" msgstr "Argumente" -#: sql_help.c:3170 +#: sql_help.c:3185 msgid "label" msgstr "Label" -#: sql_help.c:3172 +#: sql_help.c:3187 msgid "subtype" msgstr "Untertyp" -#: sql_help.c:3173 +#: sql_help.c:3188 msgid "subtype_operator_class" msgstr "Untertyp-Operatorklasse" -#: sql_help.c:3175 +#: sql_help.c:3190 msgid "canonical_function" msgstr "Canonical-Funktion" -#: sql_help.c:3176 +#: sql_help.c:3191 msgid "subtype_diff_function" msgstr "Untertyp-Diff-Funktion" -#: sql_help.c:3177 +#: sql_help.c:3192 msgid "multirange_type_name" msgstr "Multirange-Typname" -#: sql_help.c:3179 +#: sql_help.c:3194 msgid "input_function" msgstr "Eingabefunktion" -#: sql_help.c:3180 +#: sql_help.c:3195 msgid "output_function" msgstr "Ausgabefunktion" -#: sql_help.c:3181 +#: sql_help.c:3196 msgid "receive_function" msgstr "Empfangsfunktion" -#: sql_help.c:3182 +#: sql_help.c:3197 msgid "send_function" msgstr "Sendefunktion" -#: sql_help.c:3183 +#: sql_help.c:3198 msgid "type_modifier_input_function" msgstr "Typmod-Eingabefunktion" -#: sql_help.c:3184 +#: sql_help.c:3199 msgid "type_modifier_output_function" msgstr "Typmod-Ausgabefunktion" -#: sql_help.c:3185 +#: sql_help.c:3200 msgid "analyze_function" msgstr "Analyze-Funktion" -#: sql_help.c:3186 +#: sql_help.c:3201 msgid "subscript_function" msgstr "Subscript-Funktion" -#: sql_help.c:3187 +#: sql_help.c:3202 msgid "internallength" msgstr "interne_Länge" -#: sql_help.c:3188 +#: sql_help.c:3203 msgid "alignment" msgstr "Ausrichtung" -#: sql_help.c:3189 +#: sql_help.c:3204 msgid "storage" msgstr "Speicherung" -#: sql_help.c:3190 +#: sql_help.c:3205 msgid "like_type" msgstr "wie_Typ" -#: sql_help.c:3191 +#: sql_help.c:3206 msgid "category" msgstr "Kategorie" -#: sql_help.c:3192 +#: sql_help.c:3207 msgid "preferred" msgstr "bevorzugt" -#: sql_help.c:3193 +#: sql_help.c:3208 msgid "default" msgstr "Vorgabewert" -#: sql_help.c:3194 +#: sql_help.c:3209 msgid "element" msgstr "Element" -#: sql_help.c:3195 +#: sql_help.c:3210 msgid "delimiter" msgstr "Trennzeichen" -#: sql_help.c:3196 +#: sql_help.c:3211 msgid "collatable" msgstr "sortierbar" -#: sql_help.c:3293 sql_help.c:3977 sql_help.c:4067 sql_help.c:4547 -#: sql_help.c:4649 sql_help.c:4804 sql_help.c:4917 sql_help.c:5042 +#: sql_help.c:3308 sql_help.c:3992 sql_help.c:4084 sql_help.c:4566 +#: sql_help.c:4668 sql_help.c:4823 sql_help.c:4936 sql_help.c:5061 msgid "with_query" msgstr "With-Anfrage" -#: sql_help.c:3295 sql_help.c:3979 sql_help.c:4566 sql_help.c:4572 -#: sql_help.c:4575 sql_help.c:4579 sql_help.c:4583 sql_help.c:4591 -#: sql_help.c:4823 sql_help.c:4829 sql_help.c:4832 sql_help.c:4836 -#: sql_help.c:4840 sql_help.c:4848 sql_help.c:4919 sql_help.c:5061 -#: sql_help.c:5067 sql_help.c:5070 sql_help.c:5074 sql_help.c:5078 -#: sql_help.c:5086 +#: sql_help.c:3310 sql_help.c:3994 sql_help.c:4585 sql_help.c:4591 +#: sql_help.c:4594 sql_help.c:4598 sql_help.c:4602 sql_help.c:4610 +#: sql_help.c:4842 sql_help.c:4848 sql_help.c:4851 sql_help.c:4855 +#: sql_help.c:4859 sql_help.c:4867 sql_help.c:4938 sql_help.c:5080 +#: sql_help.c:5086 sql_help.c:5089 sql_help.c:5093 sql_help.c:5097 +#: sql_help.c:5105 msgid "alias" msgstr "Alias" -#: sql_help.c:3296 sql_help.c:4551 sql_help.c:4593 sql_help.c:4595 -#: sql_help.c:4599 sql_help.c:4601 sql_help.c:4602 sql_help.c:4603 -#: sql_help.c:4654 sql_help.c:4808 sql_help.c:4850 sql_help.c:4852 -#: sql_help.c:4856 sql_help.c:4858 sql_help.c:4859 sql_help.c:4860 -#: sql_help.c:4926 sql_help.c:5046 sql_help.c:5088 sql_help.c:5090 -#: sql_help.c:5094 sql_help.c:5096 sql_help.c:5097 sql_help.c:5098 +#: sql_help.c:3311 sql_help.c:4570 sql_help.c:4612 sql_help.c:4614 +#: sql_help.c:4618 sql_help.c:4620 sql_help.c:4621 sql_help.c:4622 +#: sql_help.c:4673 sql_help.c:4827 sql_help.c:4869 sql_help.c:4871 +#: sql_help.c:4875 sql_help.c:4877 sql_help.c:4878 sql_help.c:4879 +#: sql_help.c:4945 sql_help.c:5065 sql_help.c:5107 sql_help.c:5109 +#: sql_help.c:5113 sql_help.c:5115 sql_help.c:5116 sql_help.c:5117 msgid "from_item" msgstr "From-Element" -#: sql_help.c:3298 sql_help.c:3779 sql_help.c:4117 sql_help.c:4928 +#: sql_help.c:3313 sql_help.c:3794 sql_help.c:4136 sql_help.c:4947 msgid "cursor_name" msgstr "Cursor-Name" -#: sql_help.c:3299 sql_help.c:3985 sql_help.c:4929 +#: sql_help.c:3314 sql_help.c:4000 sql_help.c:4948 msgid "output_expression" msgstr "Ausgabeausdruck" -#: sql_help.c:3300 sql_help.c:3986 sql_help.c:4550 sql_help.c:4652 -#: sql_help.c:4807 sql_help.c:4930 sql_help.c:5045 +#: sql_help.c:3315 sql_help.c:4001 sql_help.c:4569 sql_help.c:4671 +#: sql_help.c:4826 sql_help.c:4949 sql_help.c:5064 msgid "output_name" msgstr "Ausgabename" -#: sql_help.c:3316 +#: sql_help.c:3331 msgid "code" msgstr "Code" -#: sql_help.c:3721 +#: sql_help.c:3736 msgid "parameter" msgstr "Parameter" -#: sql_help.c:3743 sql_help.c:3744 sql_help.c:4142 +#: sql_help.c:3758 sql_help.c:3759 sql_help.c:4161 msgid "statement" msgstr "Anweisung" -#: sql_help.c:3778 sql_help.c:4116 +#: sql_help.c:3793 sql_help.c:4135 msgid "direction" msgstr "Richtung" -#: sql_help.c:3780 sql_help.c:4118 +#: sql_help.c:3795 sql_help.c:4137 msgid "where direction can be one of:" msgstr "wobei Richtung eine der folgenden sein kann:" -#: sql_help.c:3781 sql_help.c:3782 sql_help.c:3783 sql_help.c:3784 -#: sql_help.c:3785 sql_help.c:4119 sql_help.c:4120 sql_help.c:4121 -#: sql_help.c:4122 sql_help.c:4123 sql_help.c:4560 sql_help.c:4562 -#: sql_help.c:4663 sql_help.c:4665 sql_help.c:4817 sql_help.c:4819 -#: sql_help.c:4986 sql_help.c:4988 sql_help.c:5055 sql_help.c:5057 +#: sql_help.c:3796 sql_help.c:3797 sql_help.c:3798 sql_help.c:3799 +#: sql_help.c:3800 sql_help.c:4138 sql_help.c:4139 sql_help.c:4140 +#: sql_help.c:4141 sql_help.c:4142 sql_help.c:4579 sql_help.c:4581 +#: sql_help.c:4682 sql_help.c:4684 sql_help.c:4836 sql_help.c:4838 +#: sql_help.c:5005 sql_help.c:5007 sql_help.c:5074 sql_help.c:5076 msgid "count" msgstr "Anzahl" -#: sql_help.c:3888 sql_help.c:4337 +#: sql_help.c:3903 sql_help.c:4356 msgid "sequence_name" msgstr "Sequenzname" -#: sql_help.c:3906 sql_help.c:4355 +#: sql_help.c:3921 sql_help.c:4374 msgid "arg_name" msgstr "Argname" -#: sql_help.c:3907 sql_help.c:4356 +#: sql_help.c:3922 sql_help.c:4375 msgid "arg_type" msgstr "Argtyp" -#: sql_help.c:3914 sql_help.c:4363 +#: sql_help.c:3929 sql_help.c:4382 msgid "loid" msgstr "Large-Object-OID" -#: sql_help.c:3945 +#: sql_help.c:3960 msgid "remote_schema" msgstr "fernes_Schema" -#: sql_help.c:3948 +#: sql_help.c:3963 msgid "local_schema" msgstr "lokales_Schema" -#: sql_help.c:3983 +#: sql_help.c:3998 msgid "conflict_target" msgstr "Konfliktziel" -#: sql_help.c:3984 +#: sql_help.c:3999 msgid "conflict_action" msgstr "Konfliktaktion" -#: sql_help.c:3987 +#: sql_help.c:4002 msgid "where conflict_target can be one of:" msgstr "wobei Konfliktziel Folgendes sein kann:" -#: sql_help.c:3988 +#: sql_help.c:4003 msgid "index_column_name" msgstr "Indexspaltenname" -#: sql_help.c:3989 +#: sql_help.c:4004 msgid "index_expression" msgstr "Indexausdruck" -#: sql_help.c:3992 +#: sql_help.c:4007 msgid "index_predicate" msgstr "Indexprädikat" -#: sql_help.c:3994 +#: sql_help.c:4009 msgid "and conflict_action is one of:" msgstr "und Konfliktaktion Folgendes sein kann:" -#: sql_help.c:4000 sql_help.c:4925 +#: sql_help.c:4015 sql_help.c:4109 sql_help.c:4944 msgid "sub-SELECT" msgstr "Sub-SELECT" -#: sql_help.c:4009 sql_help.c:4131 sql_help.c:4901 +#: sql_help.c:4024 sql_help.c:4150 sql_help.c:4920 msgid "channel" msgstr "Kanal" -#: sql_help.c:4031 +#: sql_help.c:4046 msgid "lockmode" msgstr "Sperrmodus" -#: sql_help.c:4032 +#: sql_help.c:4047 msgid "where lockmode is one of:" msgstr "wobei Sperrmodus Folgendes sein kann:" -#: sql_help.c:4068 +#: sql_help.c:4085 msgid "target_table_name" msgstr "Zieltabellenname" -#: sql_help.c:4069 +#: sql_help.c:4086 msgid "target_alias" msgstr "Zielalias" -#: sql_help.c:4070 +#: sql_help.c:4087 msgid "data_source" msgstr "Datenquelle" -#: sql_help.c:4071 sql_help.c:4596 sql_help.c:4853 sql_help.c:5091 +#: sql_help.c:4088 sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 msgid "join_condition" msgstr "Verbundbedingung" -#: sql_help.c:4072 +#: sql_help.c:4089 msgid "when_clause" msgstr "When-Klausel" -#: sql_help.c:4073 +#: sql_help.c:4090 msgid "where data_source is:" msgstr "wobei Datenquelle Folgendes ist:" -#: sql_help.c:4074 +#: sql_help.c:4091 msgid "source_table_name" msgstr "Quelltabellenname" -#: sql_help.c:4075 +#: sql_help.c:4092 msgid "source_query" msgstr "Quellanfrage" -#: sql_help.c:4076 +#: sql_help.c:4093 msgid "source_alias" msgstr "Quellalias" -#: sql_help.c:4077 +#: sql_help.c:4094 msgid "and when_clause is:" msgstr "und When-Klausel Folgendes ist:" -#: sql_help.c:4079 +#: sql_help.c:4096 msgid "merge_update" msgstr "Merge-Update" -#: sql_help.c:4080 +#: sql_help.c:4097 msgid "merge_delete" msgstr "Merge-Delete" -#: sql_help.c:4082 +#: sql_help.c:4099 msgid "merge_insert" msgstr "Merge-Insert" -#: sql_help.c:4083 +#: sql_help.c:4100 msgid "and merge_insert is:" msgstr "und Merge-Insert Folgendes ist:" -#: sql_help.c:4086 +#: sql_help.c:4103 msgid "and merge_update is:" msgstr "und Merge-Update Folgendes ist:" -#: sql_help.c:4091 +#: sql_help.c:4110 msgid "and merge_delete is:" msgstr "und Merge-Delete Folgendes ist:" -#: sql_help.c:4132 +#: sql_help.c:4151 msgid "payload" msgstr "Payload" -#: sql_help.c:4159 +#: sql_help.c:4178 msgid "old_role" msgstr "alte_Rolle" -#: sql_help.c:4160 +#: sql_help.c:4179 msgid "new_role" msgstr "neue_Rolle" -#: sql_help.c:4196 sql_help.c:4405 sql_help.c:4413 +#: sql_help.c:4215 sql_help.c:4424 sql_help.c:4432 msgid "savepoint_name" msgstr "Sicherungspunktsname" -#: sql_help.c:4553 sql_help.c:4611 sql_help.c:4810 sql_help.c:4868 -#: sql_help.c:5048 sql_help.c:5106 +#: sql_help.c:4572 sql_help.c:4630 sql_help.c:4829 sql_help.c:4887 +#: sql_help.c:5067 sql_help.c:5125 msgid "grouping_element" msgstr "Gruppierelement" -#: sql_help.c:4555 sql_help.c:4658 sql_help.c:4812 sql_help.c:5050 +#: sql_help.c:4574 sql_help.c:4677 sql_help.c:4831 sql_help.c:5069 msgid "window_name" msgstr "Fenstername" -#: sql_help.c:4556 sql_help.c:4659 sql_help.c:4813 sql_help.c:5051 +#: sql_help.c:4575 sql_help.c:4678 sql_help.c:4832 sql_help.c:5070 msgid "window_definition" msgstr "Fensterdefinition" -#: sql_help.c:4557 sql_help.c:4571 sql_help.c:4615 sql_help.c:4660 -#: sql_help.c:4814 sql_help.c:4828 sql_help.c:4872 sql_help.c:5052 -#: sql_help.c:5066 sql_help.c:5110 +#: sql_help.c:4576 sql_help.c:4590 sql_help.c:4634 sql_help.c:4679 +#: sql_help.c:4833 sql_help.c:4847 sql_help.c:4891 sql_help.c:5071 +#: sql_help.c:5085 sql_help.c:5129 msgid "select" msgstr "Select" -#: sql_help.c:4564 sql_help.c:4821 sql_help.c:5059 +#: sql_help.c:4583 sql_help.c:4840 sql_help.c:5078 msgid "where from_item can be one of:" msgstr "wobei From-Element Folgendes sein kann:" -#: sql_help.c:4567 sql_help.c:4573 sql_help.c:4576 sql_help.c:4580 -#: sql_help.c:4592 sql_help.c:4824 sql_help.c:4830 sql_help.c:4833 -#: sql_help.c:4837 sql_help.c:4849 sql_help.c:5062 sql_help.c:5068 -#: sql_help.c:5071 sql_help.c:5075 sql_help.c:5087 +#: sql_help.c:4586 sql_help.c:4592 sql_help.c:4595 sql_help.c:4599 +#: sql_help.c:4611 sql_help.c:4843 sql_help.c:4849 sql_help.c:4852 +#: sql_help.c:4856 sql_help.c:4868 sql_help.c:5081 sql_help.c:5087 +#: sql_help.c:5090 sql_help.c:5094 sql_help.c:5106 msgid "column_alias" msgstr "Spaltenalias" -#: sql_help.c:4568 sql_help.c:4825 sql_help.c:5063 +#: sql_help.c:4587 sql_help.c:4844 sql_help.c:5082 msgid "sampling_method" msgstr "Stichprobenmethode" -#: sql_help.c:4570 sql_help.c:4827 sql_help.c:5065 +#: sql_help.c:4589 sql_help.c:4846 sql_help.c:5084 msgid "seed" msgstr "Startwert" -#: sql_help.c:4574 sql_help.c:4613 sql_help.c:4831 sql_help.c:4870 -#: sql_help.c:5069 sql_help.c:5108 +#: sql_help.c:4593 sql_help.c:4632 sql_help.c:4850 sql_help.c:4889 +#: sql_help.c:5088 sql_help.c:5127 msgid "with_query_name" msgstr "With-Anfragename" -#: sql_help.c:4584 sql_help.c:4587 sql_help.c:4590 sql_help.c:4841 -#: sql_help.c:4844 sql_help.c:4847 sql_help.c:5079 sql_help.c:5082 -#: sql_help.c:5085 +#: sql_help.c:4603 sql_help.c:4606 sql_help.c:4609 sql_help.c:4860 +#: sql_help.c:4863 sql_help.c:4866 sql_help.c:5098 sql_help.c:5101 +#: sql_help.c:5104 msgid "column_definition" msgstr "Spaltendefinition" -#: sql_help.c:4594 sql_help.c:4600 sql_help.c:4851 sql_help.c:4857 -#: sql_help.c:5089 sql_help.c:5095 +#: sql_help.c:4613 sql_help.c:4619 sql_help.c:4870 sql_help.c:4876 +#: sql_help.c:5108 sql_help.c:5114 msgid "join_type" msgstr "Verbundtyp" -#: sql_help.c:4597 sql_help.c:4854 sql_help.c:5092 +#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 msgid "join_column" msgstr "Verbundspalte" -#: sql_help.c:4598 sql_help.c:4855 sql_help.c:5093 +#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 msgid "join_using_alias" msgstr "Join-Using-Alias" -#: sql_help.c:4604 sql_help.c:4861 sql_help.c:5099 +#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 msgid "and grouping_element can be one of:" msgstr "und Gruppierelement eins der folgenden sein kann:" -#: sql_help.c:4612 sql_help.c:4869 sql_help.c:5107 +#: sql_help.c:4631 sql_help.c:4888 sql_help.c:5126 msgid "and with_query is:" msgstr "und With-Anfrage ist:" -#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 +#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 msgid "values" msgstr "values" -#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 +#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 msgid "insert" msgstr "insert" -#: sql_help.c:4618 sql_help.c:4875 sql_help.c:5113 +#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 msgid "update" msgstr "update" -#: sql_help.c:4619 sql_help.c:4876 sql_help.c:5114 +#: sql_help.c:4638 sql_help.c:4895 sql_help.c:5133 msgid "delete" msgstr "delete" -#: sql_help.c:4621 sql_help.c:4878 sql_help.c:5116 +#: sql_help.c:4640 sql_help.c:4897 sql_help.c:5135 msgid "search_seq_col_name" msgstr "Search-Seq-Spaltenname" -#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 +#: sql_help.c:4642 sql_help.c:4899 sql_help.c:5137 msgid "cycle_mark_col_name" msgstr "Cycle-Mark-Spaltenname" -#: sql_help.c:4624 sql_help.c:4881 sql_help.c:5119 +#: sql_help.c:4643 sql_help.c:4900 sql_help.c:5138 msgid "cycle_mark_value" msgstr "Cycle-Mark-Wert" -#: sql_help.c:4625 sql_help.c:4882 sql_help.c:5120 +#: sql_help.c:4644 sql_help.c:4901 sql_help.c:5139 msgid "cycle_mark_default" msgstr "Cycle-Mark-Standard" -#: sql_help.c:4626 sql_help.c:4883 sql_help.c:5121 +#: sql_help.c:4645 sql_help.c:4902 sql_help.c:5140 msgid "cycle_path_col_name" msgstr "Cycle-Pfad-Spaltenname" -#: sql_help.c:4653 +#: sql_help.c:4672 msgid "new_table" msgstr "neue_Tabelle" -#: sql_help.c:4724 +#: sql_help.c:4743 msgid "snapshot_id" msgstr "Snapshot-ID" -#: sql_help.c:4984 +#: sql_help.c:5003 msgid "sort_expression" msgstr "Sortierausdruck" -#: sql_help.c:5128 sql_help.c:6112 +#: sql_help.c:5147 sql_help.c:6131 msgid "abort the current transaction" msgstr "bricht die aktuelle Transaktion ab" -#: sql_help.c:5134 +#: sql_help.c:5153 msgid "change the definition of an aggregate function" msgstr "ändert die Definition einer Aggregatfunktion" -#: sql_help.c:5140 +#: sql_help.c:5159 msgid "change the definition of a collation" msgstr "ändert die Definition einer Sortierfolge" -#: sql_help.c:5146 +#: sql_help.c:5165 msgid "change the definition of a conversion" msgstr "ändert die Definition einer Zeichensatzkonversion" -#: sql_help.c:5152 +#: sql_help.c:5171 msgid "change a database" msgstr "ändert eine Datenbank" -#: sql_help.c:5158 +#: sql_help.c:5177 msgid "define default access privileges" msgstr "definiert vorgegebene Zugriffsprivilegien" -#: sql_help.c:5164 +#: sql_help.c:5183 msgid "change the definition of a domain" msgstr "ändert die Definition einer Domäne" -#: sql_help.c:5170 +#: sql_help.c:5189 msgid "change the definition of an event trigger" msgstr "ändert die Definition eines Ereignistriggers" -#: sql_help.c:5176 +#: sql_help.c:5195 msgid "change the definition of an extension" msgstr "ändert die Definition einer Erweiterung" -#: sql_help.c:5182 +#: sql_help.c:5201 msgid "change the definition of a foreign-data wrapper" msgstr "ändert die Definition eines Fremddaten-Wrappers" -#: sql_help.c:5188 +#: sql_help.c:5207 msgid "change the definition of a foreign table" msgstr "ändert die Definition einer Fremdtabelle" -#: sql_help.c:5194 +#: sql_help.c:5213 msgid "change the definition of a function" msgstr "ändert die Definition einer Funktion" -#: sql_help.c:5200 +#: sql_help.c:5219 msgid "change role name or membership" msgstr "ändert Rollenname oder -mitglieder" -#: sql_help.c:5206 +#: sql_help.c:5225 msgid "change the definition of an index" msgstr "ändert die Definition eines Index" -#: sql_help.c:5212 +#: sql_help.c:5231 msgid "change the definition of a procedural language" msgstr "ändert die Definition einer prozeduralen Sprache" -#: sql_help.c:5218 +#: sql_help.c:5237 msgid "change the definition of a large object" msgstr "ändert die Definition eines Large Object" -#: sql_help.c:5224 +#: sql_help.c:5243 msgid "change the definition of a materialized view" msgstr "ändert die Definition einer materialisierten Sicht" -#: sql_help.c:5230 +#: sql_help.c:5249 msgid "change the definition of an operator" msgstr "ändert die Definition eines Operators" -#: sql_help.c:5236 +#: sql_help.c:5255 msgid "change the definition of an operator class" msgstr "ändert die Definition einer Operatorklasse" -#: sql_help.c:5242 +#: sql_help.c:5261 msgid "change the definition of an operator family" msgstr "ändert die Definition einer Operatorfamilie" -#: sql_help.c:5248 +#: sql_help.c:5267 msgid "change the definition of a row-level security policy" msgstr "ändert die Definition einer Policy für Sicherheit auf Zeilenebene" -#: sql_help.c:5254 +#: sql_help.c:5273 msgid "change the definition of a procedure" msgstr "ändert die Definition einer Prozedur" -#: sql_help.c:5260 +#: sql_help.c:5279 msgid "change the definition of a publication" msgstr "ändert die Definition einer Publikation" -#: sql_help.c:5266 sql_help.c:5368 +#: sql_help.c:5285 sql_help.c:5387 msgid "change a database role" msgstr "ändert eine Datenbankrolle" -#: sql_help.c:5272 +#: sql_help.c:5291 msgid "change the definition of a routine" msgstr "ändert die Definition einer Routine" -#: sql_help.c:5278 +#: sql_help.c:5297 msgid "change the definition of a rule" msgstr "ändert die Definition einer Regel" -#: sql_help.c:5284 +#: sql_help.c:5303 msgid "change the definition of a schema" msgstr "ändert die Definition eines Schemas" -#: sql_help.c:5290 +#: sql_help.c:5309 msgid "change the definition of a sequence generator" msgstr "ändert die Definition eines Sequenzgenerators" -#: sql_help.c:5296 +#: sql_help.c:5315 msgid "change the definition of a foreign server" msgstr "ändert die Definition eines Fremdservers" -#: sql_help.c:5302 +#: sql_help.c:5321 msgid "change the definition of an extended statistics object" msgstr "ändert die Definition eines erweiterten Statistikobjekts" -#: sql_help.c:5308 +#: sql_help.c:5327 msgid "change the definition of a subscription" msgstr "ändert die Definition einer Subskription" -#: sql_help.c:5314 +#: sql_help.c:5333 msgid "change a server configuration parameter" msgstr "ändert einen Server-Konfigurationsparameter" -#: sql_help.c:5320 +#: sql_help.c:5339 msgid "change the definition of a table" msgstr "ändert die Definition einer Tabelle" -#: sql_help.c:5326 +#: sql_help.c:5345 msgid "change the definition of a tablespace" msgstr "ändert die Definition eines Tablespace" -#: sql_help.c:5332 +#: sql_help.c:5351 msgid "change the definition of a text search configuration" msgstr "ändert die Definition einer Textsuchekonfiguration" -#: sql_help.c:5338 +#: sql_help.c:5357 msgid "change the definition of a text search dictionary" msgstr "ändert die Definition eines Textsuchewörterbuchs" -#: sql_help.c:5344 +#: sql_help.c:5363 msgid "change the definition of a text search parser" msgstr "ändert die Definition eines Textsucheparsers" -#: sql_help.c:5350 +#: sql_help.c:5369 msgid "change the definition of a text search template" msgstr "ändert die Definition einer Textsuchevorlage" -#: sql_help.c:5356 +#: sql_help.c:5375 msgid "change the definition of a trigger" msgstr "ändert die Definition eines Triggers" -#: sql_help.c:5362 +#: sql_help.c:5381 msgid "change the definition of a type" msgstr "ändert die Definition eines Typs" -#: sql_help.c:5374 +#: sql_help.c:5393 msgid "change the definition of a user mapping" msgstr "ändert die Definition einer Benutzerabbildung" -#: sql_help.c:5380 +#: sql_help.c:5399 msgid "change the definition of a view" msgstr "ändert die Definition einer Sicht" -#: sql_help.c:5386 +#: sql_help.c:5405 msgid "collect statistics about a database" msgstr "sammelt Statistiken über eine Datenbank" -#: sql_help.c:5392 sql_help.c:6190 +#: sql_help.c:5411 sql_help.c:6209 msgid "start a transaction block" msgstr "startet einen Transaktionsblock" -#: sql_help.c:5398 +#: sql_help.c:5417 msgid "invoke a procedure" msgstr "ruft eine Prozedur auf" -#: sql_help.c:5404 +#: sql_help.c:5423 msgid "force a write-ahead log checkpoint" msgstr "erzwingt einen Checkpoint im Write-Ahead-Log" -#: sql_help.c:5410 +#: sql_help.c:5429 msgid "close a cursor" msgstr "schließt einen Cursor" -#: sql_help.c:5416 +#: sql_help.c:5435 msgid "cluster a table according to an index" msgstr "clustert eine Tabelle nach einem Index" -#: sql_help.c:5422 +#: sql_help.c:5441 msgid "define or change the comment of an object" msgstr "definiert oder ändert den Kommentar eines Objektes" -#: sql_help.c:5428 sql_help.c:5986 +#: sql_help.c:5447 sql_help.c:6005 msgid "commit the current transaction" msgstr "schließt die aktuelle Transaktion ab" -#: sql_help.c:5434 +#: sql_help.c:5453 msgid "commit a transaction that was earlier prepared for two-phase commit" msgstr "schließt eine Transaktion ab, die vorher für Two-Phase-Commit vorbereitet worden war" -#: sql_help.c:5440 +#: sql_help.c:5459 msgid "copy data between a file and a table" msgstr "kopiert Daten zwischen einer Datei und einer Tabelle" -#: sql_help.c:5446 +#: sql_help.c:5465 msgid "define a new access method" msgstr "definiert eine neue Zugriffsmethode" -#: sql_help.c:5452 +#: sql_help.c:5471 msgid "define a new aggregate function" msgstr "definiert eine neue Aggregatfunktion" -#: sql_help.c:5458 +#: sql_help.c:5477 msgid "define a new cast" msgstr "definiert eine neue Typumwandlung" -#: sql_help.c:5464 +#: sql_help.c:5483 msgid "define a new collation" msgstr "definiert eine neue Sortierfolge" -#: sql_help.c:5470 +#: sql_help.c:5489 msgid "define a new encoding conversion" msgstr "definiert eine neue Kodierungskonversion" -#: sql_help.c:5476 +#: sql_help.c:5495 msgid "create a new database" msgstr "erzeugt eine neue Datenbank" -#: sql_help.c:5482 +#: sql_help.c:5501 msgid "define a new domain" msgstr "definiert eine neue Domäne" -#: sql_help.c:5488 +#: sql_help.c:5507 msgid "define a new event trigger" msgstr "definiert einen neuen Ereignistrigger" -#: sql_help.c:5494 +#: sql_help.c:5513 msgid "install an extension" msgstr "installiert eine Erweiterung" -#: sql_help.c:5500 +#: sql_help.c:5519 msgid "define a new foreign-data wrapper" msgstr "definiert einen neuen Fremddaten-Wrapper" -#: sql_help.c:5506 +#: sql_help.c:5525 msgid "define a new foreign table" msgstr "definiert eine neue Fremdtabelle" -#: sql_help.c:5512 +#: sql_help.c:5531 msgid "define a new function" msgstr "definiert eine neue Funktion" -#: sql_help.c:5518 sql_help.c:5578 sql_help.c:5680 +#: sql_help.c:5537 sql_help.c:5597 sql_help.c:5699 msgid "define a new database role" msgstr "definiert eine neue Datenbankrolle" -#: sql_help.c:5524 +#: sql_help.c:5543 msgid "define a new index" msgstr "definiert einen neuen Index" -#: sql_help.c:5530 +#: sql_help.c:5549 msgid "define a new procedural language" msgstr "definiert eine neue prozedurale Sprache" -#: sql_help.c:5536 +#: sql_help.c:5555 msgid "define a new materialized view" msgstr "definiert eine neue materialisierte Sicht" -#: sql_help.c:5542 +#: sql_help.c:5561 msgid "define a new operator" msgstr "definiert einen neuen Operator" -#: sql_help.c:5548 +#: sql_help.c:5567 msgid "define a new operator class" msgstr "definiert eine neue Operatorklasse" -#: sql_help.c:5554 +#: sql_help.c:5573 msgid "define a new operator family" msgstr "definiert eine neue Operatorfamilie" -#: sql_help.c:5560 +#: sql_help.c:5579 msgid "define a new row-level security policy for a table" msgstr "definiert eine neue Policy für Sicherheit auf Zeilenebene für eine Tabelle" -#: sql_help.c:5566 +#: sql_help.c:5585 msgid "define a new procedure" msgstr "definiert eine neue Prozedur" -#: sql_help.c:5572 +#: sql_help.c:5591 msgid "define a new publication" msgstr "definiert eine neue Publikation" -#: sql_help.c:5584 +#: sql_help.c:5603 msgid "define a new rewrite rule" msgstr "definiert eine neue Umschreiberegel" -#: sql_help.c:5590 +#: sql_help.c:5609 msgid "define a new schema" msgstr "definiert ein neues Schema" -#: sql_help.c:5596 +#: sql_help.c:5615 msgid "define a new sequence generator" msgstr "definiert einen neuen Sequenzgenerator" -#: sql_help.c:5602 +#: sql_help.c:5621 msgid "define a new foreign server" msgstr "definiert einen neuen Fremdserver" -#: sql_help.c:5608 +#: sql_help.c:5627 msgid "define extended statistics" msgstr "definiert erweiterte Statistiken" -#: sql_help.c:5614 +#: sql_help.c:5633 msgid "define a new subscription" msgstr "definiert eine neue Subskription" -#: sql_help.c:5620 +#: sql_help.c:5639 msgid "define a new table" msgstr "definiert eine neue Tabelle" -#: sql_help.c:5626 sql_help.c:6148 +#: sql_help.c:5645 sql_help.c:6167 msgid "define a new table from the results of a query" msgstr "definiert eine neue Tabelle aus den Ergebnissen einer Anfrage" -#: sql_help.c:5632 +#: sql_help.c:5651 msgid "define a new tablespace" msgstr "definiert einen neuen Tablespace" -#: sql_help.c:5638 +#: sql_help.c:5657 msgid "define a new text search configuration" msgstr "definiert eine neue Textsuchekonfiguration" -#: sql_help.c:5644 +#: sql_help.c:5663 msgid "define a new text search dictionary" msgstr "definiert ein neues Textsuchewörterbuch" -#: sql_help.c:5650 +#: sql_help.c:5669 msgid "define a new text search parser" msgstr "definiert einen neuen Textsucheparser" -#: sql_help.c:5656 +#: sql_help.c:5675 msgid "define a new text search template" msgstr "definiert eine neue Textsuchevorlage" -#: sql_help.c:5662 +#: sql_help.c:5681 msgid "define a new transform" msgstr "definiert eine neue Transformation" -#: sql_help.c:5668 +#: sql_help.c:5687 msgid "define a new trigger" msgstr "definiert einen neuen Trigger" -#: sql_help.c:5674 +#: sql_help.c:5693 msgid "define a new data type" msgstr "definiert einen neuen Datentyp" -#: sql_help.c:5686 +#: sql_help.c:5705 msgid "define a new mapping of a user to a foreign server" msgstr "definiert eine neue Abbildung eines Benutzers auf einen Fremdserver" -#: sql_help.c:5692 +#: sql_help.c:5711 msgid "define a new view" msgstr "definiert eine neue Sicht" -#: sql_help.c:5698 +#: sql_help.c:5717 msgid "deallocate a prepared statement" msgstr "gibt einen vorbereiteten Befehl frei" -#: sql_help.c:5704 +#: sql_help.c:5723 msgid "define a cursor" msgstr "definiert einen Cursor" -#: sql_help.c:5710 +#: sql_help.c:5729 msgid "delete rows of a table" msgstr "löscht Zeilen einer Tabelle" -#: sql_help.c:5716 +#: sql_help.c:5735 msgid "discard session state" msgstr "verwirft den Sitzungszustand" -#: sql_help.c:5722 +#: sql_help.c:5741 msgid "execute an anonymous code block" msgstr "führt einen anonymen Codeblock aus" -#: sql_help.c:5728 +#: sql_help.c:5747 msgid "remove an access method" msgstr "entfernt eine Zugriffsmethode" -#: sql_help.c:5734 +#: sql_help.c:5753 msgid "remove an aggregate function" msgstr "entfernt eine Aggregatfunktion" -#: sql_help.c:5740 +#: sql_help.c:5759 msgid "remove a cast" msgstr "entfernt eine Typumwandlung" -#: sql_help.c:5746 +#: sql_help.c:5765 msgid "remove a collation" msgstr "entfernt eine Sortierfolge" -#: sql_help.c:5752 +#: sql_help.c:5771 msgid "remove a conversion" msgstr "entfernt eine Zeichensatzkonversion" -#: sql_help.c:5758 +#: sql_help.c:5777 msgid "remove a database" msgstr "entfernt eine Datenbank" -#: sql_help.c:5764 +#: sql_help.c:5783 msgid "remove a domain" msgstr "entfernt eine Domäne" -#: sql_help.c:5770 +#: sql_help.c:5789 msgid "remove an event trigger" msgstr "entfernt einen Ereignistrigger" -#: sql_help.c:5776 +#: sql_help.c:5795 msgid "remove an extension" msgstr "entfernt eine Erweiterung" -#: sql_help.c:5782 +#: sql_help.c:5801 msgid "remove a foreign-data wrapper" msgstr "entfernt einen Fremddaten-Wrapper" -#: sql_help.c:5788 +#: sql_help.c:5807 msgid "remove a foreign table" msgstr "entfernt eine Fremdtabelle" -#: sql_help.c:5794 +#: sql_help.c:5813 msgid "remove a function" msgstr "entfernt eine Funktion" -#: sql_help.c:5800 sql_help.c:5866 sql_help.c:5968 +#: sql_help.c:5819 sql_help.c:5885 sql_help.c:5987 msgid "remove a database role" msgstr "entfernt eine Datenbankrolle" -#: sql_help.c:5806 +#: sql_help.c:5825 msgid "remove an index" msgstr "entfernt einen Index" -#: sql_help.c:5812 +#: sql_help.c:5831 msgid "remove a procedural language" msgstr "entfernt eine prozedurale Sprache" -#: sql_help.c:5818 +#: sql_help.c:5837 msgid "remove a materialized view" msgstr "entfernt eine materialisierte Sicht" -#: sql_help.c:5824 +#: sql_help.c:5843 msgid "remove an operator" msgstr "entfernt einen Operator" -#: sql_help.c:5830 +#: sql_help.c:5849 msgid "remove an operator class" msgstr "entfernt eine Operatorklasse" -#: sql_help.c:5836 +#: sql_help.c:5855 msgid "remove an operator family" msgstr "entfernt eine Operatorfamilie" -#: sql_help.c:5842 +#: sql_help.c:5861 msgid "remove database objects owned by a database role" msgstr "entfernt die einer Datenbankrolle gehörenden Datenbankobjekte" -#: sql_help.c:5848 +#: sql_help.c:5867 msgid "remove a row-level security policy from a table" msgstr "entfernt eine Policy für Sicherheit auf Zeilenebene von einer Tabelle" -#: sql_help.c:5854 +#: sql_help.c:5873 msgid "remove a procedure" msgstr "entfernt eine Prozedur" -#: sql_help.c:5860 +#: sql_help.c:5879 msgid "remove a publication" msgstr "entfernt eine Publikation" -#: sql_help.c:5872 +#: sql_help.c:5891 msgid "remove a routine" msgstr "entfernt eine Routine" -#: sql_help.c:5878 +#: sql_help.c:5897 msgid "remove a rewrite rule" msgstr "entfernt eine Umschreiberegel" -#: sql_help.c:5884 +#: sql_help.c:5903 msgid "remove a schema" msgstr "entfernt ein Schema" -#: sql_help.c:5890 +#: sql_help.c:5909 msgid "remove a sequence" msgstr "entfernt eine Sequenz" -#: sql_help.c:5896 +#: sql_help.c:5915 msgid "remove a foreign server descriptor" msgstr "entfernt einen Fremdserverdeskriptor" -#: sql_help.c:5902 +#: sql_help.c:5921 msgid "remove extended statistics" msgstr "entfernt erweiterte Statistiken" -#: sql_help.c:5908 +#: sql_help.c:5927 msgid "remove a subscription" msgstr "entfernt eine Subskription" -#: sql_help.c:5914 +#: sql_help.c:5933 msgid "remove a table" msgstr "entfernt eine Tabelle" -#: sql_help.c:5920 +#: sql_help.c:5939 msgid "remove a tablespace" msgstr "entfernt einen Tablespace" -#: sql_help.c:5926 +#: sql_help.c:5945 msgid "remove a text search configuration" msgstr "entfernt eine Textsuchekonfiguration" -#: sql_help.c:5932 +#: sql_help.c:5951 msgid "remove a text search dictionary" msgstr "entfernt ein Textsuchewörterbuch" -#: sql_help.c:5938 +#: sql_help.c:5957 msgid "remove a text search parser" msgstr "entfernt einen Textsucheparser" -#: sql_help.c:5944 +#: sql_help.c:5963 msgid "remove a text search template" msgstr "entfernt eine Textsuchevorlage" -#: sql_help.c:5950 +#: sql_help.c:5969 msgid "remove a transform" msgstr "entfernt eine Transformation" -#: sql_help.c:5956 +#: sql_help.c:5975 msgid "remove a trigger" msgstr "entfernt einen Trigger" -#: sql_help.c:5962 +#: sql_help.c:5981 msgid "remove a data type" msgstr "entfernt einen Datentyp" -#: sql_help.c:5974 +#: sql_help.c:5993 msgid "remove a user mapping for a foreign server" msgstr "entfernt eine Benutzerabbildung für einen Fremdserver" -#: sql_help.c:5980 +#: sql_help.c:5999 msgid "remove a view" msgstr "entfernt eine Sicht" -#: sql_help.c:5992 +#: sql_help.c:6011 msgid "execute a prepared statement" msgstr "führt einen vorbereiteten Befehl aus" -#: sql_help.c:5998 +#: sql_help.c:6017 msgid "show the execution plan of a statement" msgstr "zeigt den Ausführungsplan eines Befehls" -#: sql_help.c:6004 +#: sql_help.c:6023 msgid "retrieve rows from a query using a cursor" msgstr "liest Zeilen aus einer Anfrage mit einem Cursor" -#: sql_help.c:6010 +#: sql_help.c:6029 msgid "define access privileges" msgstr "definiert Zugriffsprivilegien" -#: sql_help.c:6016 +#: sql_help.c:6035 msgid "import table definitions from a foreign server" msgstr "importiert Tabellendefinitionen von einem Fremdserver" -#: sql_help.c:6022 +#: sql_help.c:6041 msgid "create new rows in a table" msgstr "erzeugt neue Zeilen in einer Tabelle" -#: sql_help.c:6028 +#: sql_help.c:6047 msgid "listen for a notification" msgstr "hört auf eine Benachrichtigung" -#: sql_help.c:6034 +#: sql_help.c:6053 msgid "load a shared library file" msgstr "lädt eine dynamische Bibliotheksdatei" -#: sql_help.c:6040 +#: sql_help.c:6059 msgid "lock a table" msgstr "sperrt eine Tabelle" -#: sql_help.c:6046 +#: sql_help.c:6065 msgid "conditionally insert, update, or delete rows of a table" msgstr "fügt Zeilen in eine Tabelle ein oder ändert oder löscht Zeilen einer Tabelle, abhängig von Bedingungen" -#: sql_help.c:6052 +#: sql_help.c:6071 msgid "position a cursor" msgstr "positioniert einen Cursor" -#: sql_help.c:6058 +#: sql_help.c:6077 msgid "generate a notification" msgstr "erzeugt eine Benachrichtigung" -#: sql_help.c:6064 +#: sql_help.c:6083 msgid "prepare a statement for execution" msgstr "bereitet einen Befehl zur Ausführung vor" -#: sql_help.c:6070 +#: sql_help.c:6089 msgid "prepare the current transaction for two-phase commit" msgstr "bereitet die aktuelle Transaktion für Two-Phase-Commit vor" -#: sql_help.c:6076 +#: sql_help.c:6095 msgid "change the ownership of database objects owned by a database role" msgstr "ändert den Eigentümer der der Rolle gehörenden Datenbankobjekte" -#: sql_help.c:6082 +#: sql_help.c:6101 msgid "replace the contents of a materialized view" msgstr "ersetzt den Inhalt einer materialisierten Sicht" -#: sql_help.c:6088 +#: sql_help.c:6107 msgid "rebuild indexes" msgstr "baut Indexe neu" -#: sql_help.c:6094 +#: sql_help.c:6113 msgid "destroy a previously defined savepoint" msgstr "gibt einen zuvor definierten Sicherungspunkt frei" -#: sql_help.c:6100 +#: sql_help.c:6119 msgid "restore the value of a run-time parameter to the default value" msgstr "setzt einen Konfigurationsparameter auf die Voreinstellung zurück" -#: sql_help.c:6106 +#: sql_help.c:6125 msgid "remove access privileges" msgstr "entfernt Zugriffsprivilegien" -#: sql_help.c:6118 +#: sql_help.c:6137 msgid "cancel a transaction that was earlier prepared for two-phase commit" msgstr "storniert eine Transaktion, die vorher für Two-Phase-Commit vorbereitet worden war" -#: sql_help.c:6124 +#: sql_help.c:6143 msgid "roll back to a savepoint" msgstr "rollt eine Transaktion bis zu einem Sicherungspunkt zurück" -#: sql_help.c:6130 +#: sql_help.c:6149 msgid "define a new savepoint within the current transaction" msgstr "definiert einen neuen Sicherungspunkt in der aktuellen Transaktion" -#: sql_help.c:6136 +#: sql_help.c:6155 msgid "define or change a security label applied to an object" msgstr "definiert oder ändert ein Security-Label eines Objektes" -#: sql_help.c:6142 sql_help.c:6196 sql_help.c:6232 +#: sql_help.c:6161 sql_help.c:6215 sql_help.c:6251 msgid "retrieve rows from a table or view" msgstr "liest Zeilen aus einer Tabelle oder Sicht" -#: sql_help.c:6154 +#: sql_help.c:6173 msgid "change a run-time parameter" msgstr "ändert einen Konfigurationsparameter" -#: sql_help.c:6160 +#: sql_help.c:6179 msgid "set constraint check timing for the current transaction" msgstr "setzt die Zeitsteuerung für Check-Constraints in der aktuellen Transaktion" -#: sql_help.c:6166 +#: sql_help.c:6185 msgid "set the current user identifier of the current session" msgstr "setzt den aktuellen Benutzernamen der aktuellen Sitzung" -#: sql_help.c:6172 +#: sql_help.c:6191 msgid "set the session user identifier and the current user identifier of the current session" msgstr "setzt den Sitzungsbenutzernamen und den aktuellen Benutzernamen der aktuellen Sitzung" -#: sql_help.c:6178 +#: sql_help.c:6197 msgid "set the characteristics of the current transaction" msgstr "setzt die Charakteristika der aktuellen Transaktion" -#: sql_help.c:6184 +#: sql_help.c:6203 msgid "show the value of a run-time parameter" msgstr "zeigt den Wert eines Konfigurationsparameters" -#: sql_help.c:6202 +#: sql_help.c:6221 msgid "empty a table or set of tables" msgstr "leert eine oder mehrere Tabellen" -#: sql_help.c:6208 +#: sql_help.c:6227 msgid "stop listening for a notification" msgstr "beendet das Hören auf eine Benachrichtigung" -#: sql_help.c:6214 +#: sql_help.c:6233 msgid "update rows of a table" msgstr "aktualisiert Zeilen einer Tabelle" -#: sql_help.c:6220 +#: sql_help.c:6239 msgid "garbage-collect and optionally analyze a database" msgstr "säubert und analysiert eine Datenbank" -#: sql_help.c:6226 +#: sql_help.c:6245 msgid "compute a set of rows" msgstr "berechnet eine Zeilenmenge" diff --git a/src/bin/psql/po/es.po b/src/bin/psql/po/es.po index d8bfcf45cc0..ad82d64e001 100644 --- a/src/bin/psql/po/es.po +++ b/src/bin/psql/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: psql (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:52+0000\n" +"POT-Creation-Date: 2024-11-09 06:21+0000\n" "PO-Revision-Date: 2023-05-08 11:17+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -3921,202 +3921,202 @@ msgstr "%s: memoria agotada" #: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66 #: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85 #: sql_help.c:113 sql_help.c:119 sql_help.c:121 sql_help.c:123 sql_help.c:125 -#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:240 -#: sql_help.c:242 sql_help.c:243 sql_help.c:245 sql_help.c:247 sql_help.c:250 -#: sql_help.c:252 sql_help.c:254 sql_help.c:256 sql_help.c:268 sql_help.c:269 -#: sql_help.c:270 sql_help.c:272 sql_help.c:321 sql_help.c:323 sql_help.c:325 -#: sql_help.c:327 sql_help.c:396 sql_help.c:401 sql_help.c:403 sql_help.c:445 -#: sql_help.c:447 sql_help.c:450 sql_help.c:452 sql_help.c:521 sql_help.c:526 -#: sql_help.c:531 sql_help.c:536 sql_help.c:541 sql_help.c:595 sql_help.c:597 -#: sql_help.c:599 sql_help.c:601 sql_help.c:603 sql_help.c:606 sql_help.c:608 -#: sql_help.c:611 sql_help.c:622 sql_help.c:624 sql_help.c:668 sql_help.c:670 -#: sql_help.c:672 sql_help.c:675 sql_help.c:677 sql_help.c:679 sql_help.c:716 -#: sql_help.c:720 sql_help.c:724 sql_help.c:743 sql_help.c:746 sql_help.c:749 -#: sql_help.c:778 sql_help.c:790 sql_help.c:798 sql_help.c:801 sql_help.c:804 -#: sql_help.c:819 sql_help.c:822 sql_help.c:851 sql_help.c:856 sql_help.c:861 -#: sql_help.c:866 sql_help.c:871 sql_help.c:898 sql_help.c:900 sql_help.c:902 -#: sql_help.c:904 sql_help.c:907 sql_help.c:909 sql_help.c:956 sql_help.c:1001 -#: sql_help.c:1006 sql_help.c:1011 sql_help.c:1016 sql_help.c:1021 -#: sql_help.c:1040 sql_help.c:1051 sql_help.c:1053 sql_help.c:1073 -#: sql_help.c:1083 sql_help.c:1084 sql_help.c:1086 sql_help.c:1088 -#: sql_help.c:1100 sql_help.c:1104 sql_help.c:1106 sql_help.c:1118 -#: sql_help.c:1120 sql_help.c:1122 sql_help.c:1124 sql_help.c:1143 -#: sql_help.c:1145 sql_help.c:1149 sql_help.c:1153 sql_help.c:1157 -#: sql_help.c:1160 sql_help.c:1161 sql_help.c:1162 sql_help.c:1165 -#: sql_help.c:1168 sql_help.c:1170 sql_help.c:1309 sql_help.c:1311 -#: sql_help.c:1314 sql_help.c:1317 sql_help.c:1319 sql_help.c:1321 -#: sql_help.c:1324 sql_help.c:1327 sql_help.c:1447 sql_help.c:1449 -#: sql_help.c:1451 sql_help.c:1454 sql_help.c:1475 sql_help.c:1478 -#: sql_help.c:1481 sql_help.c:1484 sql_help.c:1488 sql_help.c:1490 -#: sql_help.c:1492 sql_help.c:1494 sql_help.c:1508 sql_help.c:1511 -#: sql_help.c:1513 sql_help.c:1515 sql_help.c:1525 sql_help.c:1527 -#: sql_help.c:1537 sql_help.c:1539 sql_help.c:1549 sql_help.c:1552 -#: sql_help.c:1575 sql_help.c:1577 sql_help.c:1579 sql_help.c:1581 -#: sql_help.c:1584 sql_help.c:1586 sql_help.c:1589 sql_help.c:1592 -#: sql_help.c:1643 sql_help.c:1686 sql_help.c:1689 sql_help.c:1691 -#: sql_help.c:1693 sql_help.c:1696 sql_help.c:1698 sql_help.c:1700 -#: sql_help.c:1703 sql_help.c:1753 sql_help.c:1769 sql_help.c:2000 -#: sql_help.c:2069 sql_help.c:2088 sql_help.c:2101 sql_help.c:2158 -#: sql_help.c:2165 sql_help.c:2175 sql_help.c:2201 sql_help.c:2232 -#: sql_help.c:2250 sql_help.c:2278 sql_help.c:2389 sql_help.c:2435 -#: sql_help.c:2460 sql_help.c:2483 sql_help.c:2487 sql_help.c:2521 -#: sql_help.c:2541 sql_help.c:2563 sql_help.c:2577 sql_help.c:2598 -#: sql_help.c:2627 sql_help.c:2662 sql_help.c:2687 sql_help.c:2734 -#: sql_help.c:3032 sql_help.c:3045 sql_help.c:3062 sql_help.c:3078 -#: sql_help.c:3118 sql_help.c:3172 sql_help.c:3176 sql_help.c:3178 -#: sql_help.c:3185 sql_help.c:3204 sql_help.c:3231 sql_help.c:3266 -#: sql_help.c:3278 sql_help.c:3287 sql_help.c:3331 sql_help.c:3345 -#: sql_help.c:3373 sql_help.c:3381 sql_help.c:3393 sql_help.c:3403 -#: sql_help.c:3411 sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 -#: sql_help.c:3444 sql_help.c:3455 sql_help.c:3463 sql_help.c:3471 -#: sql_help.c:3479 sql_help.c:3487 sql_help.c:3497 sql_help.c:3506 -#: sql_help.c:3515 sql_help.c:3523 sql_help.c:3533 sql_help.c:3544 -#: sql_help.c:3552 sql_help.c:3561 sql_help.c:3572 sql_help.c:3581 -#: sql_help.c:3589 sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 -#: sql_help.c:3621 sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 -#: sql_help.c:3653 sql_help.c:3661 sql_help.c:3678 sql_help.c:3687 -#: sql_help.c:3695 sql_help.c:3712 sql_help.c:3727 sql_help.c:4037 -#: sql_help.c:4151 sql_help.c:4180 sql_help.c:4195 sql_help.c:4698 -#: sql_help.c:4746 sql_help.c:4904 +#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:245 +#: sql_help.c:247 sql_help.c:248 sql_help.c:250 sql_help.c:252 sql_help.c:255 +#: sql_help.c:257 sql_help.c:259 sql_help.c:261 sql_help.c:276 sql_help.c:277 +#: sql_help.c:278 sql_help.c:280 sql_help.c:329 sql_help.c:331 sql_help.c:333 +#: sql_help.c:335 sql_help.c:404 sql_help.c:409 sql_help.c:411 sql_help.c:453 +#: sql_help.c:455 sql_help.c:458 sql_help.c:460 sql_help.c:529 sql_help.c:534 +#: sql_help.c:539 sql_help.c:544 sql_help.c:549 sql_help.c:603 sql_help.c:605 +#: sql_help.c:607 sql_help.c:609 sql_help.c:611 sql_help.c:614 sql_help.c:616 +#: sql_help.c:619 sql_help.c:630 sql_help.c:632 sql_help.c:676 sql_help.c:678 +#: sql_help.c:680 sql_help.c:683 sql_help.c:685 sql_help.c:687 sql_help.c:724 +#: sql_help.c:728 sql_help.c:732 sql_help.c:751 sql_help.c:754 sql_help.c:757 +#: sql_help.c:786 sql_help.c:798 sql_help.c:806 sql_help.c:809 sql_help.c:812 +#: sql_help.c:827 sql_help.c:830 sql_help.c:859 sql_help.c:864 sql_help.c:869 +#: sql_help.c:874 sql_help.c:879 sql_help.c:906 sql_help.c:908 sql_help.c:910 +#: sql_help.c:912 sql_help.c:915 sql_help.c:917 sql_help.c:964 sql_help.c:1009 +#: sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 sql_help.c:1029 +#: sql_help.c:1048 sql_help.c:1059 sql_help.c:1061 sql_help.c:1081 +#: sql_help.c:1091 sql_help.c:1092 sql_help.c:1094 sql_help.c:1096 +#: sql_help.c:1108 sql_help.c:1112 sql_help.c:1114 sql_help.c:1126 +#: sql_help.c:1128 sql_help.c:1130 sql_help.c:1132 sql_help.c:1151 +#: sql_help.c:1153 sql_help.c:1157 sql_help.c:1161 sql_help.c:1165 +#: sql_help.c:1168 sql_help.c:1169 sql_help.c:1170 sql_help.c:1173 +#: sql_help.c:1176 sql_help.c:1178 sql_help.c:1317 sql_help.c:1319 +#: sql_help.c:1322 sql_help.c:1325 sql_help.c:1327 sql_help.c:1329 +#: sql_help.c:1332 sql_help.c:1335 sql_help.c:1455 sql_help.c:1457 +#: sql_help.c:1459 sql_help.c:1462 sql_help.c:1483 sql_help.c:1486 +#: sql_help.c:1489 sql_help.c:1492 sql_help.c:1496 sql_help.c:1498 +#: sql_help.c:1500 sql_help.c:1502 sql_help.c:1516 sql_help.c:1519 +#: sql_help.c:1521 sql_help.c:1523 sql_help.c:1533 sql_help.c:1535 +#: sql_help.c:1545 sql_help.c:1547 sql_help.c:1557 sql_help.c:1560 +#: sql_help.c:1583 sql_help.c:1585 sql_help.c:1587 sql_help.c:1589 +#: sql_help.c:1592 sql_help.c:1594 sql_help.c:1597 sql_help.c:1600 +#: sql_help.c:1651 sql_help.c:1694 sql_help.c:1697 sql_help.c:1699 +#: sql_help.c:1701 sql_help.c:1704 sql_help.c:1706 sql_help.c:1708 +#: sql_help.c:1711 sql_help.c:1761 sql_help.c:1777 sql_help.c:2008 +#: sql_help.c:2077 sql_help.c:2096 sql_help.c:2109 sql_help.c:2166 +#: sql_help.c:2173 sql_help.c:2183 sql_help.c:2209 sql_help.c:2240 +#: sql_help.c:2258 sql_help.c:2286 sql_help.c:2397 sql_help.c:2443 +#: sql_help.c:2468 sql_help.c:2491 sql_help.c:2495 sql_help.c:2529 +#: sql_help.c:2549 sql_help.c:2571 sql_help.c:2585 sql_help.c:2606 +#: sql_help.c:2635 sql_help.c:2670 sql_help.c:2695 sql_help.c:2742 +#: sql_help.c:3040 sql_help.c:3053 sql_help.c:3070 sql_help.c:3086 +#: sql_help.c:3126 sql_help.c:3180 sql_help.c:3184 sql_help.c:3186 +#: sql_help.c:3193 sql_help.c:3212 sql_help.c:3239 sql_help.c:3274 +#: sql_help.c:3286 sql_help.c:3295 sql_help.c:3339 sql_help.c:3353 +#: sql_help.c:3381 sql_help.c:3389 sql_help.c:3401 sql_help.c:3411 +#: sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 sql_help.c:3443 +#: sql_help.c:3452 sql_help.c:3463 sql_help.c:3471 sql_help.c:3479 +#: sql_help.c:3487 sql_help.c:3495 sql_help.c:3505 sql_help.c:3514 +#: sql_help.c:3523 sql_help.c:3531 sql_help.c:3541 sql_help.c:3552 +#: sql_help.c:3560 sql_help.c:3569 sql_help.c:3580 sql_help.c:3589 +#: sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 sql_help.c:3621 +#: sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 sql_help.c:3653 +#: sql_help.c:3661 sql_help.c:3669 sql_help.c:3686 sql_help.c:3695 +#: sql_help.c:3703 sql_help.c:3720 sql_help.c:3735 sql_help.c:4045 +#: sql_help.c:4159 sql_help.c:4188 sql_help.c:4203 sql_help.c:4706 +#: sql_help.c:4754 sql_help.c:4912 msgid "name" msgstr "nombre" -#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:332 sql_help.c:1850 -#: sql_help.c:3346 sql_help.c:4466 +#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:340 sql_help.c:1858 +#: sql_help.c:3354 sql_help.c:4474 msgid "aggregate_signature" msgstr "signatura_func_agregación" -#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:255 -#: sql_help.c:273 sql_help.c:404 sql_help.c:451 sql_help.c:530 sql_help.c:578 -#: sql_help.c:596 sql_help.c:623 sql_help.c:676 sql_help.c:745 sql_help.c:800 -#: sql_help.c:821 sql_help.c:860 sql_help.c:910 sql_help.c:957 sql_help.c:1010 -#: sql_help.c:1042 sql_help.c:1052 sql_help.c:1087 sql_help.c:1107 -#: sql_help.c:1121 sql_help.c:1171 sql_help.c:1318 sql_help.c:1448 -#: sql_help.c:1491 sql_help.c:1512 sql_help.c:1526 sql_help.c:1538 -#: sql_help.c:1551 sql_help.c:1578 sql_help.c:1644 sql_help.c:1697 +#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:260 +#: sql_help.c:281 sql_help.c:412 sql_help.c:459 sql_help.c:538 sql_help.c:586 +#: sql_help.c:604 sql_help.c:631 sql_help.c:684 sql_help.c:753 sql_help.c:808 +#: sql_help.c:829 sql_help.c:868 sql_help.c:918 sql_help.c:965 sql_help.c:1018 +#: sql_help.c:1050 sql_help.c:1060 sql_help.c:1095 sql_help.c:1115 +#: sql_help.c:1129 sql_help.c:1179 sql_help.c:1326 sql_help.c:1456 +#: sql_help.c:1499 sql_help.c:1520 sql_help.c:1534 sql_help.c:1546 +#: sql_help.c:1559 sql_help.c:1586 sql_help.c:1652 sql_help.c:1705 msgid "new_name" msgstr "nuevo_nombre" -#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:253 -#: sql_help.c:271 sql_help.c:402 sql_help.c:487 sql_help.c:535 sql_help.c:625 -#: sql_help.c:634 sql_help.c:699 sql_help.c:719 sql_help.c:748 sql_help.c:803 -#: sql_help.c:865 sql_help.c:908 sql_help.c:1015 sql_help.c:1054 -#: sql_help.c:1085 sql_help.c:1105 sql_help.c:1119 sql_help.c:1169 -#: sql_help.c:1382 sql_help.c:1450 sql_help.c:1493 sql_help.c:1514 -#: sql_help.c:1576 sql_help.c:1692 sql_help.c:3018 +#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:258 +#: sql_help.c:279 sql_help.c:410 sql_help.c:495 sql_help.c:543 sql_help.c:633 +#: sql_help.c:642 sql_help.c:707 sql_help.c:727 sql_help.c:756 sql_help.c:811 +#: sql_help.c:873 sql_help.c:916 sql_help.c:1023 sql_help.c:1062 +#: sql_help.c:1093 sql_help.c:1113 sql_help.c:1127 sql_help.c:1177 +#: sql_help.c:1390 sql_help.c:1458 sql_help.c:1501 sql_help.c:1522 +#: sql_help.c:1584 sql_help.c:1700 sql_help.c:3026 msgid "new_owner" msgstr "nuevo_dueño" -#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:257 sql_help.c:324 -#: sql_help.c:453 sql_help.c:540 sql_help.c:678 sql_help.c:723 sql_help.c:751 -#: sql_help.c:806 sql_help.c:870 sql_help.c:1020 sql_help.c:1089 -#: sql_help.c:1123 sql_help.c:1320 sql_help.c:1495 sql_help.c:1516 -#: sql_help.c:1528 sql_help.c:1540 sql_help.c:1580 sql_help.c:1699 +#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:262 sql_help.c:332 +#: sql_help.c:461 sql_help.c:548 sql_help.c:686 sql_help.c:731 sql_help.c:759 +#: sql_help.c:814 sql_help.c:878 sql_help.c:1028 sql_help.c:1097 +#: sql_help.c:1131 sql_help.c:1328 sql_help.c:1503 sql_help.c:1524 +#: sql_help.c:1536 sql_help.c:1548 sql_help.c:1588 sql_help.c:1707 msgid "new_schema" msgstr "nuevo_esquema" -#: sql_help.c:44 sql_help.c:1914 sql_help.c:3347 sql_help.c:4495 +#: sql_help.c:44 sql_help.c:1922 sql_help.c:3355 sql_help.c:4503 msgid "where aggregate_signature is:" msgstr "donde signatura_func_agregación es:" -#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:342 sql_help.c:355 -#: sql_help.c:359 sql_help.c:375 sql_help.c:378 sql_help.c:381 sql_help.c:522 -#: sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:542 sql_help.c:852 -#: sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:872 sql_help.c:1002 -#: sql_help.c:1007 sql_help.c:1012 sql_help.c:1017 sql_help.c:1022 -#: sql_help.c:1868 sql_help.c:1885 sql_help.c:1891 sql_help.c:1915 -#: sql_help.c:1918 sql_help.c:1921 sql_help.c:2070 sql_help.c:2089 -#: sql_help.c:2092 sql_help.c:2390 sql_help.c:2599 sql_help.c:3348 -#: sql_help.c:3351 sql_help.c:3354 sql_help.c:3445 sql_help.c:3534 -#: sql_help.c:3562 sql_help.c:3912 sql_help.c:4365 sql_help.c:4472 -#: sql_help.c:4479 sql_help.c:4485 sql_help.c:4496 sql_help.c:4499 -#: sql_help.c:4502 +#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:350 sql_help.c:363 +#: sql_help.c:367 sql_help.c:383 sql_help.c:386 sql_help.c:389 sql_help.c:530 +#: sql_help.c:535 sql_help.c:540 sql_help.c:545 sql_help.c:550 sql_help.c:860 +#: sql_help.c:865 sql_help.c:870 sql_help.c:875 sql_help.c:880 sql_help.c:1010 +#: sql_help.c:1015 sql_help.c:1020 sql_help.c:1025 sql_help.c:1030 +#: sql_help.c:1876 sql_help.c:1893 sql_help.c:1899 sql_help.c:1923 +#: sql_help.c:1926 sql_help.c:1929 sql_help.c:2078 sql_help.c:2097 +#: sql_help.c:2100 sql_help.c:2398 sql_help.c:2607 sql_help.c:3356 +#: sql_help.c:3359 sql_help.c:3362 sql_help.c:3453 sql_help.c:3542 +#: sql_help.c:3570 sql_help.c:3920 sql_help.c:4373 sql_help.c:4480 +#: sql_help.c:4487 sql_help.c:4493 sql_help.c:4504 sql_help.c:4507 +#: sql_help.c:4510 msgid "argmode" msgstr "modo_arg" -#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:343 sql_help.c:356 -#: sql_help.c:360 sql_help.c:376 sql_help.c:379 sql_help.c:382 sql_help.c:523 -#: sql_help.c:528 sql_help.c:533 sql_help.c:538 sql_help.c:543 sql_help.c:853 -#: sql_help.c:858 sql_help.c:863 sql_help.c:868 sql_help.c:873 sql_help.c:1003 -#: sql_help.c:1008 sql_help.c:1013 sql_help.c:1018 sql_help.c:1023 -#: sql_help.c:1869 sql_help.c:1886 sql_help.c:1892 sql_help.c:1916 -#: sql_help.c:1919 sql_help.c:1922 sql_help.c:2071 sql_help.c:2090 -#: sql_help.c:2093 sql_help.c:2391 sql_help.c:2600 sql_help.c:3349 -#: sql_help.c:3352 sql_help.c:3355 sql_help.c:3446 sql_help.c:3535 -#: sql_help.c:3563 sql_help.c:4473 sql_help.c:4480 sql_help.c:4486 -#: sql_help.c:4497 sql_help.c:4500 sql_help.c:4503 +#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:351 sql_help.c:364 +#: sql_help.c:368 sql_help.c:384 sql_help.c:387 sql_help.c:390 sql_help.c:531 +#: sql_help.c:536 sql_help.c:541 sql_help.c:546 sql_help.c:551 sql_help.c:861 +#: sql_help.c:866 sql_help.c:871 sql_help.c:876 sql_help.c:881 sql_help.c:1011 +#: sql_help.c:1016 sql_help.c:1021 sql_help.c:1026 sql_help.c:1031 +#: sql_help.c:1877 sql_help.c:1894 sql_help.c:1900 sql_help.c:1924 +#: sql_help.c:1927 sql_help.c:1930 sql_help.c:2079 sql_help.c:2098 +#: sql_help.c:2101 sql_help.c:2399 sql_help.c:2608 sql_help.c:3357 +#: sql_help.c:3360 sql_help.c:3363 sql_help.c:3454 sql_help.c:3543 +#: sql_help.c:3571 sql_help.c:4481 sql_help.c:4488 sql_help.c:4494 +#: sql_help.c:4505 sql_help.c:4508 sql_help.c:4511 msgid "argname" msgstr "nombre_arg" -#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:344 sql_help.c:357 -#: sql_help.c:361 sql_help.c:377 sql_help.c:380 sql_help.c:383 sql_help.c:524 -#: sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:544 sql_help.c:854 -#: sql_help.c:859 sql_help.c:864 sql_help.c:869 sql_help.c:874 sql_help.c:1004 -#: sql_help.c:1009 sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 -#: sql_help.c:1870 sql_help.c:1887 sql_help.c:1893 sql_help.c:1917 -#: sql_help.c:1920 sql_help.c:1923 sql_help.c:2392 sql_help.c:2601 -#: sql_help.c:3350 sql_help.c:3353 sql_help.c:3356 sql_help.c:3447 -#: sql_help.c:3536 sql_help.c:3564 sql_help.c:4474 sql_help.c:4481 -#: sql_help.c:4487 sql_help.c:4498 sql_help.c:4501 sql_help.c:4504 +#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:352 sql_help.c:365 +#: sql_help.c:369 sql_help.c:385 sql_help.c:388 sql_help.c:391 sql_help.c:532 +#: sql_help.c:537 sql_help.c:542 sql_help.c:547 sql_help.c:552 sql_help.c:862 +#: sql_help.c:867 sql_help.c:872 sql_help.c:877 sql_help.c:882 sql_help.c:1012 +#: sql_help.c:1017 sql_help.c:1022 sql_help.c:1027 sql_help.c:1032 +#: sql_help.c:1878 sql_help.c:1895 sql_help.c:1901 sql_help.c:1925 +#: sql_help.c:1928 sql_help.c:1931 sql_help.c:2400 sql_help.c:2609 +#: sql_help.c:3358 sql_help.c:3361 sql_help.c:3364 sql_help.c:3455 +#: sql_help.c:3544 sql_help.c:3572 sql_help.c:4482 sql_help.c:4489 +#: sql_help.c:4495 sql_help.c:4506 sql_help.c:4509 sql_help.c:4512 msgid "argtype" msgstr "tipo_arg" -#: sql_help.c:114 sql_help.c:399 sql_help.c:476 sql_help.c:488 sql_help.c:951 -#: sql_help.c:1102 sql_help.c:1509 sql_help.c:1638 sql_help.c:1670 -#: sql_help.c:1722 sql_help.c:1785 sql_help.c:1971 sql_help.c:1978 -#: sql_help.c:2281 sql_help.c:2331 sql_help.c:2338 sql_help.c:2347 -#: sql_help.c:2436 sql_help.c:2663 sql_help.c:2756 sql_help.c:3047 -#: sql_help.c:3232 sql_help.c:3254 sql_help.c:3394 sql_help.c:3749 -#: sql_help.c:3956 sql_help.c:4194 sql_help.c:4967 +#: sql_help.c:114 sql_help.c:407 sql_help.c:484 sql_help.c:496 sql_help.c:959 +#: sql_help.c:1110 sql_help.c:1517 sql_help.c:1646 sql_help.c:1678 +#: sql_help.c:1730 sql_help.c:1793 sql_help.c:1979 sql_help.c:1986 +#: sql_help.c:2289 sql_help.c:2339 sql_help.c:2346 sql_help.c:2355 +#: sql_help.c:2444 sql_help.c:2671 sql_help.c:2764 sql_help.c:3055 +#: sql_help.c:3240 sql_help.c:3262 sql_help.c:3402 sql_help.c:3757 +#: sql_help.c:3964 sql_help.c:4202 sql_help.c:4975 msgid "option" msgstr "opción" -#: sql_help.c:115 sql_help.c:952 sql_help.c:1639 sql_help.c:2437 -#: sql_help.c:2664 sql_help.c:3233 sql_help.c:3395 +#: sql_help.c:115 sql_help.c:960 sql_help.c:1647 sql_help.c:2445 +#: sql_help.c:2672 sql_help.c:3241 sql_help.c:3403 msgid "where option can be:" msgstr "donde opción puede ser:" -#: sql_help.c:116 sql_help.c:2213 +#: sql_help.c:116 sql_help.c:2221 msgid "allowconn" msgstr "allowconn" -#: sql_help.c:117 sql_help.c:953 sql_help.c:1640 sql_help.c:2214 -#: sql_help.c:2438 sql_help.c:2665 sql_help.c:3234 +#: sql_help.c:117 sql_help.c:961 sql_help.c:1648 sql_help.c:2222 +#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 msgid "connlimit" msgstr "límite_conexiones" -#: sql_help.c:118 sql_help.c:2215 +#: sql_help.c:118 sql_help.c:2223 msgid "istemplate" msgstr "esplantilla" -#: sql_help.c:124 sql_help.c:613 sql_help.c:681 sql_help.c:695 sql_help.c:1323 -#: sql_help.c:1375 sql_help.c:4198 +#: sql_help.c:124 sql_help.c:621 sql_help.c:689 sql_help.c:703 sql_help.c:1331 +#: sql_help.c:1383 sql_help.c:4206 msgid "new_tablespace" msgstr "nuevo_tablespace" -#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:550 sql_help.c:552 -#: sql_help.c:553 sql_help.c:877 sql_help.c:879 sql_help.c:880 sql_help.c:960 -#: sql_help.c:964 sql_help.c:967 sql_help.c:1029 sql_help.c:1031 -#: sql_help.c:1032 sql_help.c:1182 sql_help.c:1184 sql_help.c:1647 -#: sql_help.c:1651 sql_help.c:1654 sql_help.c:2402 sql_help.c:2605 -#: sql_help.c:3924 sql_help.c:4216 sql_help.c:4377 sql_help.c:4686 +#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:558 sql_help.c:560 +#: sql_help.c:561 sql_help.c:885 sql_help.c:887 sql_help.c:888 sql_help.c:968 +#: sql_help.c:972 sql_help.c:975 sql_help.c:1037 sql_help.c:1039 +#: sql_help.c:1040 sql_help.c:1190 sql_help.c:1192 sql_help.c:1655 +#: sql_help.c:1659 sql_help.c:1662 sql_help.c:2410 sql_help.c:2613 +#: sql_help.c:3932 sql_help.c:4224 sql_help.c:4385 sql_help.c:4694 msgid "configuration_parameter" msgstr "parámetro_de_configuración" -#: sql_help.c:128 sql_help.c:400 sql_help.c:471 sql_help.c:477 sql_help.c:489 -#: sql_help.c:551 sql_help.c:605 sql_help.c:687 sql_help.c:697 sql_help.c:878 -#: sql_help.c:906 sql_help.c:961 sql_help.c:1030 sql_help.c:1103 -#: sql_help.c:1148 sql_help.c:1152 sql_help.c:1156 sql_help.c:1159 -#: sql_help.c:1164 sql_help.c:1167 sql_help.c:1183 sql_help.c:1354 -#: sql_help.c:1377 sql_help.c:1425 sql_help.c:1433 sql_help.c:1453 -#: sql_help.c:1510 sql_help.c:1594 sql_help.c:1648 sql_help.c:1671 -#: sql_help.c:2282 sql_help.c:2332 sql_help.c:2339 sql_help.c:2348 -#: sql_help.c:2403 sql_help.c:2404 sql_help.c:2468 sql_help.c:2471 -#: sql_help.c:2505 sql_help.c:2606 sql_help.c:2607 sql_help.c:2630 -#: sql_help.c:2757 sql_help.c:2796 sql_help.c:2906 sql_help.c:2919 -#: sql_help.c:2933 sql_help.c:2974 sql_help.c:2982 sql_help.c:3004 -#: sql_help.c:3021 sql_help.c:3048 sql_help.c:3255 sql_help.c:3957 -#: sql_help.c:4687 sql_help.c:4688 sql_help.c:4689 sql_help.c:4690 +#: sql_help.c:128 sql_help.c:408 sql_help.c:479 sql_help.c:485 sql_help.c:497 +#: sql_help.c:559 sql_help.c:613 sql_help.c:695 sql_help.c:705 sql_help.c:886 +#: sql_help.c:914 sql_help.c:969 sql_help.c:1038 sql_help.c:1111 +#: sql_help.c:1156 sql_help.c:1160 sql_help.c:1164 sql_help.c:1167 +#: sql_help.c:1172 sql_help.c:1175 sql_help.c:1191 sql_help.c:1362 +#: sql_help.c:1385 sql_help.c:1433 sql_help.c:1441 sql_help.c:1461 +#: sql_help.c:1518 sql_help.c:1602 sql_help.c:1656 sql_help.c:1679 +#: sql_help.c:2290 sql_help.c:2340 sql_help.c:2347 sql_help.c:2356 +#: sql_help.c:2411 sql_help.c:2412 sql_help.c:2476 sql_help.c:2479 +#: sql_help.c:2513 sql_help.c:2614 sql_help.c:2615 sql_help.c:2638 +#: sql_help.c:2765 sql_help.c:2804 sql_help.c:2914 sql_help.c:2927 +#: sql_help.c:2941 sql_help.c:2982 sql_help.c:2990 sql_help.c:3012 +#: sql_help.c:3029 sql_help.c:3056 sql_help.c:3263 sql_help.c:3965 +#: sql_help.c:4695 sql_help.c:4696 sql_help.c:4697 sql_help.c:4698 msgid "value" msgstr "valor" @@ -4124,10 +4124,10 @@ msgstr "valor" msgid "target_role" msgstr "rol_destino" -#: sql_help.c:203 sql_help.c:915 sql_help.c:2266 sql_help.c:2635 -#: sql_help.c:2712 sql_help.c:2717 sql_help.c:3887 sql_help.c:3896 -#: sql_help.c:3915 sql_help.c:3927 sql_help.c:4340 sql_help.c:4349 -#: sql_help.c:4368 sql_help.c:4380 +#: sql_help.c:203 sql_help.c:923 sql_help.c:2274 sql_help.c:2643 +#: sql_help.c:2720 sql_help.c:2725 sql_help.c:3895 sql_help.c:3904 +#: sql_help.c:3923 sql_help.c:3935 sql_help.c:4348 sql_help.c:4357 +#: sql_help.c:4376 sql_help.c:4388 msgid "schema_name" msgstr "nombre_de_esquema" @@ -4141,2194 +4141,2198 @@ msgstr "donde grant_o_revoke_abreviado es uno de:" #: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210 #: sql_help.c:211 sql_help.c:212 sql_help.c:213 sql_help.c:214 sql_help.c:215 -#: sql_help.c:576 sql_help.c:612 sql_help.c:680 sql_help.c:824 sql_help.c:971 -#: sql_help.c:1322 sql_help.c:1658 sql_help.c:2441 sql_help.c:2442 -#: sql_help.c:2443 sql_help.c:2444 sql_help.c:2445 sql_help.c:2579 -#: sql_help.c:2668 sql_help.c:2669 sql_help.c:2670 sql_help.c:2671 -#: sql_help.c:2672 sql_help.c:3237 sql_help.c:3238 sql_help.c:3239 -#: sql_help.c:3240 sql_help.c:3241 sql_help.c:3936 sql_help.c:3940 -#: sql_help.c:4389 sql_help.c:4393 sql_help.c:4708 +#: sql_help.c:584 sql_help.c:620 sql_help.c:688 sql_help.c:832 sql_help.c:979 +#: sql_help.c:1330 sql_help.c:1666 sql_help.c:2449 sql_help.c:2450 +#: sql_help.c:2451 sql_help.c:2452 sql_help.c:2453 sql_help.c:2587 +#: sql_help.c:2676 sql_help.c:2677 sql_help.c:2678 sql_help.c:2679 +#: sql_help.c:2680 sql_help.c:3245 sql_help.c:3246 sql_help.c:3247 +#: sql_help.c:3248 sql_help.c:3249 sql_help.c:3944 sql_help.c:3948 +#: sql_help.c:4397 sql_help.c:4401 sql_help.c:4716 msgid "role_name" msgstr "nombre_de_rol" -#: sql_help.c:241 sql_help.c:464 sql_help.c:914 sql_help.c:1338 sql_help.c:1340 -#: sql_help.c:1392 sql_help.c:1404 sql_help.c:1429 sql_help.c:1688 -#: sql_help.c:2235 sql_help.c:2239 sql_help.c:2351 sql_help.c:2356 -#: sql_help.c:2464 sql_help.c:2634 sql_help.c:2773 sql_help.c:2778 -#: sql_help.c:2780 sql_help.c:2901 sql_help.c:2914 sql_help.c:2928 -#: sql_help.c:2937 sql_help.c:2949 sql_help.c:2978 sql_help.c:3988 -#: sql_help.c:4003 sql_help.c:4005 sql_help.c:4094 sql_help.c:4097 -#: sql_help.c:4099 sql_help.c:4559 sql_help.c:4560 sql_help.c:4569 -#: sql_help.c:4616 sql_help.c:4617 sql_help.c:4618 sql_help.c:4619 -#: sql_help.c:4620 sql_help.c:4621 sql_help.c:4661 sql_help.c:4662 -#: sql_help.c:4667 sql_help.c:4672 sql_help.c:4816 sql_help.c:4817 -#: sql_help.c:4826 sql_help.c:4873 sql_help.c:4874 sql_help.c:4875 -#: sql_help.c:4876 sql_help.c:4877 sql_help.c:4878 sql_help.c:4932 -#: sql_help.c:4934 sql_help.c:4994 sql_help.c:5054 sql_help.c:5055 -#: sql_help.c:5064 sql_help.c:5111 sql_help.c:5112 sql_help.c:5113 -#: sql_help.c:5114 sql_help.c:5115 sql_help.c:5116 +#: sql_help.c:246 sql_help.c:265 sql_help.c:472 sql_help.c:922 sql_help.c:1346 +#: sql_help.c:1348 sql_help.c:1400 sql_help.c:1412 sql_help.c:1437 +#: sql_help.c:1696 sql_help.c:2243 sql_help.c:2247 sql_help.c:2359 +#: sql_help.c:2364 sql_help.c:2472 sql_help.c:2642 sql_help.c:2781 +#: sql_help.c:2786 sql_help.c:2788 sql_help.c:2909 sql_help.c:2922 +#: sql_help.c:2936 sql_help.c:2945 sql_help.c:2957 sql_help.c:2986 +#: sql_help.c:3996 sql_help.c:4011 sql_help.c:4013 sql_help.c:4102 +#: sql_help.c:4105 sql_help.c:4107 sql_help.c:4567 sql_help.c:4568 +#: sql_help.c:4577 sql_help.c:4624 sql_help.c:4625 sql_help.c:4626 +#: sql_help.c:4627 sql_help.c:4628 sql_help.c:4629 sql_help.c:4669 +#: sql_help.c:4670 sql_help.c:4675 sql_help.c:4680 sql_help.c:4824 +#: sql_help.c:4825 sql_help.c:4834 sql_help.c:4881 sql_help.c:4882 +#: sql_help.c:4883 sql_help.c:4884 sql_help.c:4885 sql_help.c:4886 +#: sql_help.c:4940 sql_help.c:4942 sql_help.c:5002 sql_help.c:5062 +#: sql_help.c:5063 sql_help.c:5072 sql_help.c:5119 sql_help.c:5120 +#: sql_help.c:5121 sql_help.c:5122 sql_help.c:5123 sql_help.c:5124 msgid "expression" msgstr "expresión" -#: sql_help.c:244 +#: sql_help.c:249 msgid "domain_constraint" msgstr "restricción_de_dominio" -#: sql_help.c:246 sql_help.c:248 sql_help.c:251 sql_help.c:479 sql_help.c:480 -#: sql_help.c:1315 sql_help.c:1362 sql_help.c:1363 sql_help.c:1364 -#: sql_help.c:1391 sql_help.c:1403 sql_help.c:1420 sql_help.c:1856 -#: sql_help.c:1858 sql_help.c:2238 sql_help.c:2350 sql_help.c:2355 -#: sql_help.c:2936 sql_help.c:2948 sql_help.c:4000 +#: sql_help.c:251 sql_help.c:253 sql_help.c:256 sql_help.c:264 sql_help.c:487 +#: sql_help.c:488 sql_help.c:1323 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1372 sql_help.c:1399 sql_help.c:1411 sql_help.c:1428 +#: sql_help.c:1864 sql_help.c:1866 sql_help.c:2246 sql_help.c:2358 +#: sql_help.c:2363 sql_help.c:2944 sql_help.c:2956 sql_help.c:4008 msgid "constraint_name" msgstr "nombre_restricción" -#: sql_help.c:249 sql_help.c:1316 +#: sql_help.c:254 sql_help.c:1324 msgid "new_constraint_name" msgstr "nuevo_nombre_restricción" -#: sql_help.c:322 sql_help.c:1101 +#: sql_help.c:263 +msgid "where domain_constraint is:" +msgstr "donde restricción_de_dominio es:" + +#: sql_help.c:330 sql_help.c:1109 msgid "new_version" msgstr "nueva_versión" -#: sql_help.c:326 sql_help.c:328 +#: sql_help.c:334 sql_help.c:336 msgid "member_object" msgstr "objeto_miembro" -#: sql_help.c:329 +#: sql_help.c:337 msgid "where member_object is:" msgstr "dondo objeto_miembro es:" -#: sql_help.c:330 sql_help.c:335 sql_help.c:336 sql_help.c:337 sql_help.c:338 -#: sql_help.c:339 sql_help.c:340 sql_help.c:345 sql_help.c:349 sql_help.c:351 -#: sql_help.c:353 sql_help.c:362 sql_help.c:363 sql_help.c:364 sql_help.c:365 -#: sql_help.c:366 sql_help.c:367 sql_help.c:368 sql_help.c:369 sql_help.c:372 -#: sql_help.c:373 sql_help.c:1848 sql_help.c:1853 sql_help.c:1860 -#: sql_help.c:1861 sql_help.c:1862 sql_help.c:1863 sql_help.c:1864 -#: sql_help.c:1865 sql_help.c:1866 sql_help.c:1871 sql_help.c:1873 -#: sql_help.c:1877 sql_help.c:1879 sql_help.c:1883 sql_help.c:1888 -#: sql_help.c:1889 sql_help.c:1896 sql_help.c:1897 sql_help.c:1898 -#: sql_help.c:1899 sql_help.c:1900 sql_help.c:1901 sql_help.c:1902 -#: sql_help.c:1903 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 -#: sql_help.c:1911 sql_help.c:1912 sql_help.c:4462 sql_help.c:4467 -#: sql_help.c:4468 sql_help.c:4469 sql_help.c:4470 sql_help.c:4476 -#: sql_help.c:4477 sql_help.c:4482 sql_help.c:4483 sql_help.c:4488 -#: sql_help.c:4489 sql_help.c:4490 sql_help.c:4491 sql_help.c:4492 -#: sql_help.c:4493 +#: sql_help.c:338 sql_help.c:343 sql_help.c:344 sql_help.c:345 sql_help.c:346 +#: sql_help.c:347 sql_help.c:348 sql_help.c:353 sql_help.c:357 sql_help.c:359 +#: sql_help.c:361 sql_help.c:370 sql_help.c:371 sql_help.c:372 sql_help.c:373 +#: sql_help.c:374 sql_help.c:375 sql_help.c:376 sql_help.c:377 sql_help.c:380 +#: sql_help.c:381 sql_help.c:1856 sql_help.c:1861 sql_help.c:1868 +#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872 +#: sql_help.c:1873 sql_help.c:1874 sql_help.c:1879 sql_help.c:1881 +#: sql_help.c:1885 sql_help.c:1887 sql_help.c:1891 sql_help.c:1896 +#: sql_help.c:1897 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 +#: sql_help.c:1907 sql_help.c:1908 sql_help.c:1909 sql_help.c:1910 +#: sql_help.c:1911 sql_help.c:1912 sql_help.c:1913 sql_help.c:1914 +#: sql_help.c:1919 sql_help.c:1920 sql_help.c:4470 sql_help.c:4475 +#: sql_help.c:4476 sql_help.c:4477 sql_help.c:4478 sql_help.c:4484 +#: sql_help.c:4485 sql_help.c:4490 sql_help.c:4491 sql_help.c:4496 +#: sql_help.c:4497 sql_help.c:4498 sql_help.c:4499 sql_help.c:4500 +#: sql_help.c:4501 msgid "object_name" msgstr "nombre_de_objeto" -#: sql_help.c:331 sql_help.c:1849 sql_help.c:4465 +#: sql_help.c:339 sql_help.c:1857 sql_help.c:4473 msgid "aggregate_name" msgstr "nombre_función_agregación" -#: sql_help.c:333 sql_help.c:1851 sql_help.c:2135 sql_help.c:2139 -#: sql_help.c:2141 sql_help.c:3364 +#: sql_help.c:341 sql_help.c:1859 sql_help.c:2143 sql_help.c:2147 +#: sql_help.c:2149 sql_help.c:3372 msgid "source_type" msgstr "tipo_fuente" -#: sql_help.c:334 sql_help.c:1852 sql_help.c:2136 sql_help.c:2140 -#: sql_help.c:2142 sql_help.c:3365 +#: sql_help.c:342 sql_help.c:1860 sql_help.c:2144 sql_help.c:2148 +#: sql_help.c:2150 sql_help.c:3373 msgid "target_type" msgstr "tipo_destino" -#: sql_help.c:341 sql_help.c:788 sql_help.c:1867 sql_help.c:2137 -#: sql_help.c:2178 sql_help.c:2254 sql_help.c:2522 sql_help.c:2553 -#: sql_help.c:3124 sql_help.c:4364 sql_help.c:4471 sql_help.c:4588 -#: sql_help.c:4592 sql_help.c:4596 sql_help.c:4599 sql_help.c:4845 -#: sql_help.c:4849 sql_help.c:4853 sql_help.c:4856 sql_help.c:5083 -#: sql_help.c:5087 sql_help.c:5091 sql_help.c:5094 +#: sql_help.c:349 sql_help.c:796 sql_help.c:1875 sql_help.c:2145 +#: sql_help.c:2186 sql_help.c:2262 sql_help.c:2530 sql_help.c:2561 +#: sql_help.c:3132 sql_help.c:4372 sql_help.c:4479 sql_help.c:4596 +#: sql_help.c:4600 sql_help.c:4604 sql_help.c:4607 sql_help.c:4853 +#: sql_help.c:4857 sql_help.c:4861 sql_help.c:4864 sql_help.c:5091 +#: sql_help.c:5095 sql_help.c:5099 sql_help.c:5102 msgid "function_name" msgstr "nombre_de_función" -#: sql_help.c:346 sql_help.c:781 sql_help.c:1874 sql_help.c:2546 +#: sql_help.c:354 sql_help.c:789 sql_help.c:1882 sql_help.c:2554 msgid "operator_name" msgstr "nombre_operador" -#: sql_help.c:347 sql_help.c:717 sql_help.c:721 sql_help.c:725 sql_help.c:1875 -#: sql_help.c:2523 sql_help.c:3488 +#: sql_help.c:355 sql_help.c:725 sql_help.c:729 sql_help.c:733 sql_help.c:1883 +#: sql_help.c:2531 sql_help.c:3496 msgid "left_type" msgstr "tipo_izq" -#: sql_help.c:348 sql_help.c:718 sql_help.c:722 sql_help.c:726 sql_help.c:1876 -#: sql_help.c:2524 sql_help.c:3489 +#: sql_help.c:356 sql_help.c:726 sql_help.c:730 sql_help.c:734 sql_help.c:1884 +#: sql_help.c:2532 sql_help.c:3497 msgid "right_type" msgstr "tipo_der" -#: sql_help.c:350 sql_help.c:352 sql_help.c:744 sql_help.c:747 sql_help.c:750 -#: sql_help.c:779 sql_help.c:791 sql_help.c:799 sql_help.c:802 sql_help.c:805 -#: sql_help.c:1409 sql_help.c:1878 sql_help.c:1880 sql_help.c:2543 -#: sql_help.c:2564 sql_help.c:2954 sql_help.c:3498 sql_help.c:3507 +#: sql_help.c:358 sql_help.c:360 sql_help.c:752 sql_help.c:755 sql_help.c:758 +#: sql_help.c:787 sql_help.c:799 sql_help.c:807 sql_help.c:810 sql_help.c:813 +#: sql_help.c:1417 sql_help.c:1886 sql_help.c:1888 sql_help.c:2551 +#: sql_help.c:2572 sql_help.c:2962 sql_help.c:3506 sql_help.c:3515 msgid "index_method" msgstr "método_de_índice" -#: sql_help.c:354 sql_help.c:1884 sql_help.c:4478 +#: sql_help.c:362 sql_help.c:1892 sql_help.c:4486 msgid "procedure_name" msgstr "nombre_de_procedimiento" -#: sql_help.c:358 sql_help.c:1890 sql_help.c:3911 sql_help.c:4484 +#: sql_help.c:366 sql_help.c:1898 sql_help.c:3919 sql_help.c:4492 msgid "routine_name" msgstr "nombre_de_rutina" -#: sql_help.c:370 sql_help.c:1381 sql_help.c:1907 sql_help.c:2398 -#: sql_help.c:2604 sql_help.c:2909 sql_help.c:3091 sql_help.c:3669 -#: sql_help.c:3933 sql_help.c:4386 +#: sql_help.c:378 sql_help.c:1389 sql_help.c:1915 sql_help.c:2406 +#: sql_help.c:2612 sql_help.c:2917 sql_help.c:3099 sql_help.c:3677 +#: sql_help.c:3941 sql_help.c:4394 msgid "type_name" msgstr "nombre_de_tipo" -#: sql_help.c:371 sql_help.c:1908 sql_help.c:2397 sql_help.c:2603 -#: sql_help.c:3092 sql_help.c:3322 sql_help.c:3670 sql_help.c:3918 -#: sql_help.c:4371 +#: sql_help.c:379 sql_help.c:1916 sql_help.c:2405 sql_help.c:2611 +#: sql_help.c:3100 sql_help.c:3330 sql_help.c:3678 sql_help.c:3926 +#: sql_help.c:4379 msgid "lang_name" msgstr "nombre_lenguaje" -#: sql_help.c:374 +#: sql_help.c:382 msgid "and aggregate_signature is:" msgstr "y signatura_func_agregación es:" -#: sql_help.c:397 sql_help.c:2002 sql_help.c:2279 +#: sql_help.c:405 sql_help.c:2010 sql_help.c:2287 msgid "handler_function" msgstr "función_manejadora" -#: sql_help.c:398 sql_help.c:2280 +#: sql_help.c:406 sql_help.c:2288 msgid "validator_function" msgstr "función_validadora" -#: sql_help.c:446 sql_help.c:525 sql_help.c:669 sql_help.c:855 sql_help.c:1005 -#: sql_help.c:1310 sql_help.c:1585 +#: sql_help.c:454 sql_help.c:533 sql_help.c:677 sql_help.c:863 sql_help.c:1013 +#: sql_help.c:1318 sql_help.c:1593 msgid "action" msgstr "acción" -#: sql_help.c:448 sql_help.c:455 sql_help.c:459 sql_help.c:460 sql_help.c:463 -#: sql_help.c:465 sql_help.c:466 sql_help.c:467 sql_help.c:469 sql_help.c:472 -#: sql_help.c:474 sql_help.c:475 sql_help.c:673 sql_help.c:683 sql_help.c:685 -#: sql_help.c:688 sql_help.c:690 sql_help.c:691 sql_help.c:913 sql_help.c:1082 -#: sql_help.c:1312 sql_help.c:1330 sql_help.c:1334 sql_help.c:1335 -#: sql_help.c:1339 sql_help.c:1341 sql_help.c:1342 sql_help.c:1343 -#: sql_help.c:1344 sql_help.c:1346 sql_help.c:1349 sql_help.c:1350 -#: sql_help.c:1352 sql_help.c:1355 sql_help.c:1357 sql_help.c:1358 -#: sql_help.c:1405 sql_help.c:1407 sql_help.c:1414 sql_help.c:1423 -#: sql_help.c:1428 sql_help.c:1435 sql_help.c:1436 sql_help.c:1687 -#: sql_help.c:1690 sql_help.c:1694 sql_help.c:1730 sql_help.c:1855 -#: sql_help.c:1968 sql_help.c:1974 sql_help.c:1987 sql_help.c:1988 -#: sql_help.c:1989 sql_help.c:2329 sql_help.c:2342 sql_help.c:2395 -#: sql_help.c:2463 sql_help.c:2469 sql_help.c:2502 sql_help.c:2633 -#: sql_help.c:2742 sql_help.c:2777 sql_help.c:2779 sql_help.c:2891 -#: sql_help.c:2900 sql_help.c:2910 sql_help.c:2913 sql_help.c:2923 -#: sql_help.c:2927 sql_help.c:2950 sql_help.c:2952 sql_help.c:2959 -#: sql_help.c:2972 sql_help.c:2977 sql_help.c:2984 sql_help.c:2985 -#: sql_help.c:3001 sql_help.c:3127 sql_help.c:3267 sql_help.c:3890 -#: sql_help.c:3891 sql_help.c:3987 sql_help.c:4002 sql_help.c:4004 -#: sql_help.c:4006 sql_help.c:4093 sql_help.c:4096 sql_help.c:4098 -#: sql_help.c:4100 sql_help.c:4343 sql_help.c:4344 sql_help.c:4464 -#: sql_help.c:4625 sql_help.c:4631 sql_help.c:4633 sql_help.c:4882 -#: sql_help.c:4888 sql_help.c:4890 sql_help.c:4931 sql_help.c:4933 -#: sql_help.c:4935 sql_help.c:4982 sql_help.c:5120 sql_help.c:5126 -#: sql_help.c:5128 +#: sql_help.c:456 sql_help.c:463 sql_help.c:467 sql_help.c:468 sql_help.c:471 +#: sql_help.c:473 sql_help.c:474 sql_help.c:475 sql_help.c:477 sql_help.c:480 +#: sql_help.c:482 sql_help.c:483 sql_help.c:681 sql_help.c:691 sql_help.c:693 +#: sql_help.c:696 sql_help.c:698 sql_help.c:699 sql_help.c:921 sql_help.c:1090 +#: sql_help.c:1320 sql_help.c:1338 sql_help.c:1342 sql_help.c:1343 +#: sql_help.c:1347 sql_help.c:1349 sql_help.c:1350 sql_help.c:1351 +#: sql_help.c:1352 sql_help.c:1354 sql_help.c:1357 sql_help.c:1358 +#: sql_help.c:1360 sql_help.c:1363 sql_help.c:1365 sql_help.c:1366 +#: sql_help.c:1413 sql_help.c:1415 sql_help.c:1422 sql_help.c:1431 +#: sql_help.c:1436 sql_help.c:1443 sql_help.c:1444 sql_help.c:1695 +#: sql_help.c:1698 sql_help.c:1702 sql_help.c:1738 sql_help.c:1863 +#: sql_help.c:1976 sql_help.c:1982 sql_help.c:1995 sql_help.c:1996 +#: sql_help.c:1997 sql_help.c:2337 sql_help.c:2350 sql_help.c:2403 +#: sql_help.c:2471 sql_help.c:2477 sql_help.c:2510 sql_help.c:2641 +#: sql_help.c:2750 sql_help.c:2785 sql_help.c:2787 sql_help.c:2899 +#: sql_help.c:2908 sql_help.c:2918 sql_help.c:2921 sql_help.c:2931 +#: sql_help.c:2935 sql_help.c:2958 sql_help.c:2960 sql_help.c:2967 +#: sql_help.c:2980 sql_help.c:2985 sql_help.c:2992 sql_help.c:2993 +#: sql_help.c:3009 sql_help.c:3135 sql_help.c:3275 sql_help.c:3898 +#: sql_help.c:3899 sql_help.c:3995 sql_help.c:4010 sql_help.c:4012 +#: sql_help.c:4014 sql_help.c:4101 sql_help.c:4104 sql_help.c:4106 +#: sql_help.c:4108 sql_help.c:4351 sql_help.c:4352 sql_help.c:4472 +#: sql_help.c:4633 sql_help.c:4639 sql_help.c:4641 sql_help.c:4890 +#: sql_help.c:4896 sql_help.c:4898 sql_help.c:4939 sql_help.c:4941 +#: sql_help.c:4943 sql_help.c:4990 sql_help.c:5128 sql_help.c:5134 +#: sql_help.c:5136 msgid "column_name" msgstr "nombre_de_columna" -#: sql_help.c:449 sql_help.c:674 sql_help.c:1313 sql_help.c:1695 +#: sql_help.c:457 sql_help.c:682 sql_help.c:1321 sql_help.c:1703 msgid "new_column_name" msgstr "nuevo_nombre_de_columna" -#: sql_help.c:454 sql_help.c:546 sql_help.c:682 sql_help.c:876 sql_help.c:1026 -#: sql_help.c:1329 sql_help.c:1595 +#: sql_help.c:462 sql_help.c:554 sql_help.c:690 sql_help.c:884 sql_help.c:1034 +#: sql_help.c:1337 sql_help.c:1603 msgid "where action is one of:" msgstr "donde acción es una de:" -#: sql_help.c:456 sql_help.c:461 sql_help.c:1074 sql_help.c:1331 -#: sql_help.c:1336 sql_help.c:1597 sql_help.c:1601 sql_help.c:2233 -#: sql_help.c:2330 sql_help.c:2542 sql_help.c:2735 sql_help.c:2892 -#: sql_help.c:3174 sql_help.c:4152 +#: sql_help.c:464 sql_help.c:469 sql_help.c:1082 sql_help.c:1339 +#: sql_help.c:1344 sql_help.c:1605 sql_help.c:1609 sql_help.c:2241 +#: sql_help.c:2338 sql_help.c:2550 sql_help.c:2743 sql_help.c:2900 +#: sql_help.c:3182 sql_help.c:4160 msgid "data_type" msgstr "tipo_de_dato" -#: sql_help.c:457 sql_help.c:462 sql_help.c:1332 sql_help.c:1337 -#: sql_help.c:1430 sql_help.c:1598 sql_help.c:1602 sql_help.c:2234 -#: sql_help.c:2333 sql_help.c:2465 sql_help.c:2894 sql_help.c:2902 -#: sql_help.c:2915 sql_help.c:2929 sql_help.c:2979 sql_help.c:3175 -#: sql_help.c:3181 sql_help.c:3997 +#: sql_help.c:465 sql_help.c:470 sql_help.c:1340 sql_help.c:1345 +#: sql_help.c:1438 sql_help.c:1606 sql_help.c:1610 sql_help.c:2242 +#: sql_help.c:2341 sql_help.c:2473 sql_help.c:2902 sql_help.c:2910 +#: sql_help.c:2923 sql_help.c:2937 sql_help.c:2987 sql_help.c:3183 +#: sql_help.c:3189 sql_help.c:4005 msgid "collation" msgstr "ordenamiento" -#: sql_help.c:458 sql_help.c:1333 sql_help.c:2334 sql_help.c:2343 -#: sql_help.c:2895 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:466 sql_help.c:1341 sql_help.c:2342 sql_help.c:2351 +#: sql_help.c:2903 sql_help.c:2919 sql_help.c:2932 msgid "column_constraint" msgstr "restricción_de_columna" -#: sql_help.c:468 sql_help.c:610 sql_help.c:684 sql_help.c:1351 sql_help.c:4979 +#: sql_help.c:476 sql_help.c:618 sql_help.c:692 sql_help.c:1359 sql_help.c:4987 msgid "integer" msgstr "entero" -#: sql_help.c:470 sql_help.c:473 sql_help.c:686 sql_help.c:689 sql_help.c:1353 -#: sql_help.c:1356 +#: sql_help.c:478 sql_help.c:481 sql_help.c:694 sql_help.c:697 sql_help.c:1361 +#: sql_help.c:1364 msgid "attribute_option" msgstr "opción_de_atributo" -#: sql_help.c:478 sql_help.c:1360 sql_help.c:2335 sql_help.c:2344 -#: sql_help.c:2896 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:486 sql_help.c:1368 sql_help.c:2343 sql_help.c:2352 +#: sql_help.c:2904 sql_help.c:2920 sql_help.c:2933 msgid "table_constraint" msgstr "restricción_de_tabla" -#: sql_help.c:481 sql_help.c:482 sql_help.c:483 sql_help.c:484 sql_help.c:1365 -#: sql_help.c:1366 sql_help.c:1367 sql_help.c:1368 sql_help.c:1909 +#: sql_help.c:489 sql_help.c:490 sql_help.c:491 sql_help.c:492 sql_help.c:1373 +#: sql_help.c:1374 sql_help.c:1375 sql_help.c:1376 sql_help.c:1917 msgid "trigger_name" msgstr "nombre_disparador" -#: sql_help.c:485 sql_help.c:486 sql_help.c:1379 sql_help.c:1380 -#: sql_help.c:2336 sql_help.c:2341 sql_help.c:2899 sql_help.c:2922 +#: sql_help.c:493 sql_help.c:494 sql_help.c:1387 sql_help.c:1388 +#: sql_help.c:2344 sql_help.c:2349 sql_help.c:2907 sql_help.c:2930 msgid "parent_table" msgstr "tabla_padre" -#: sql_help.c:545 sql_help.c:602 sql_help.c:671 sql_help.c:875 sql_help.c:1025 -#: sql_help.c:1554 sql_help.c:2265 +#: sql_help.c:553 sql_help.c:610 sql_help.c:679 sql_help.c:883 sql_help.c:1033 +#: sql_help.c:1562 sql_help.c:2273 msgid "extension_name" msgstr "nombre_de_extensión" -#: sql_help.c:547 sql_help.c:1027 sql_help.c:2399 +#: sql_help.c:555 sql_help.c:1035 sql_help.c:2407 msgid "execution_cost" msgstr "costo_de_ejecución" -#: sql_help.c:548 sql_help.c:1028 sql_help.c:2400 +#: sql_help.c:556 sql_help.c:1036 sql_help.c:2408 msgid "result_rows" msgstr "núm_de_filas" -#: sql_help.c:549 sql_help.c:2401 +#: sql_help.c:557 sql_help.c:2409 msgid "support_function" msgstr "función_de_soporte" -#: sql_help.c:571 sql_help.c:573 sql_help.c:950 sql_help.c:958 sql_help.c:962 -#: sql_help.c:965 sql_help.c:968 sql_help.c:1637 sql_help.c:1645 -#: sql_help.c:1649 sql_help.c:1652 sql_help.c:1655 sql_help.c:2713 -#: sql_help.c:2715 sql_help.c:2718 sql_help.c:2719 sql_help.c:3888 -#: sql_help.c:3889 sql_help.c:3893 sql_help.c:3894 sql_help.c:3897 -#: sql_help.c:3898 sql_help.c:3900 sql_help.c:3901 sql_help.c:3903 -#: sql_help.c:3904 sql_help.c:3906 sql_help.c:3907 sql_help.c:3909 -#: sql_help.c:3910 sql_help.c:3916 sql_help.c:3917 sql_help.c:3919 -#: sql_help.c:3920 sql_help.c:3922 sql_help.c:3923 sql_help.c:3925 -#: sql_help.c:3926 sql_help.c:3928 sql_help.c:3929 sql_help.c:3931 -#: sql_help.c:3932 sql_help.c:3934 sql_help.c:3935 sql_help.c:3937 -#: sql_help.c:3938 sql_help.c:4341 sql_help.c:4342 sql_help.c:4346 -#: sql_help.c:4347 sql_help.c:4350 sql_help.c:4351 sql_help.c:4353 -#: sql_help.c:4354 sql_help.c:4356 sql_help.c:4357 sql_help.c:4359 -#: sql_help.c:4360 sql_help.c:4362 sql_help.c:4363 sql_help.c:4369 -#: sql_help.c:4370 sql_help.c:4372 sql_help.c:4373 sql_help.c:4375 -#: sql_help.c:4376 sql_help.c:4378 sql_help.c:4379 sql_help.c:4381 -#: sql_help.c:4382 sql_help.c:4384 sql_help.c:4385 sql_help.c:4387 -#: sql_help.c:4388 sql_help.c:4390 sql_help.c:4391 +#: sql_help.c:579 sql_help.c:581 sql_help.c:958 sql_help.c:966 sql_help.c:970 +#: sql_help.c:973 sql_help.c:976 sql_help.c:1645 sql_help.c:1653 +#: sql_help.c:1657 sql_help.c:1660 sql_help.c:1663 sql_help.c:2721 +#: sql_help.c:2723 sql_help.c:2726 sql_help.c:2727 sql_help.c:3896 +#: sql_help.c:3897 sql_help.c:3901 sql_help.c:3902 sql_help.c:3905 +#: sql_help.c:3906 sql_help.c:3908 sql_help.c:3909 sql_help.c:3911 +#: sql_help.c:3912 sql_help.c:3914 sql_help.c:3915 sql_help.c:3917 +#: sql_help.c:3918 sql_help.c:3924 sql_help.c:3925 sql_help.c:3927 +#: sql_help.c:3928 sql_help.c:3930 sql_help.c:3931 sql_help.c:3933 +#: sql_help.c:3934 sql_help.c:3936 sql_help.c:3937 sql_help.c:3939 +#: sql_help.c:3940 sql_help.c:3942 sql_help.c:3943 sql_help.c:3945 +#: sql_help.c:3946 sql_help.c:4349 sql_help.c:4350 sql_help.c:4354 +#: sql_help.c:4355 sql_help.c:4358 sql_help.c:4359 sql_help.c:4361 +#: sql_help.c:4362 sql_help.c:4364 sql_help.c:4365 sql_help.c:4367 +#: sql_help.c:4368 sql_help.c:4370 sql_help.c:4371 sql_help.c:4377 +#: sql_help.c:4378 sql_help.c:4380 sql_help.c:4381 sql_help.c:4383 +#: sql_help.c:4384 sql_help.c:4386 sql_help.c:4387 sql_help.c:4389 +#: sql_help.c:4390 sql_help.c:4392 sql_help.c:4393 sql_help.c:4395 +#: sql_help.c:4396 sql_help.c:4398 sql_help.c:4399 msgid "role_specification" msgstr "especificación_de_rol" -#: sql_help.c:572 sql_help.c:574 sql_help.c:1668 sql_help.c:2202 -#: sql_help.c:2721 sql_help.c:3252 sql_help.c:3703 sql_help.c:4718 +#: sql_help.c:580 sql_help.c:582 sql_help.c:1676 sql_help.c:2210 +#: sql_help.c:2729 sql_help.c:3260 sql_help.c:3711 sql_help.c:4726 msgid "user_name" msgstr "nombre_de_usuario" -#: sql_help.c:575 sql_help.c:970 sql_help.c:1657 sql_help.c:2720 -#: sql_help.c:3939 sql_help.c:4392 +#: sql_help.c:583 sql_help.c:978 sql_help.c:1665 sql_help.c:2728 +#: sql_help.c:3947 sql_help.c:4400 msgid "where role_specification can be:" msgstr "donde especificación_de_rol puede ser:" -#: sql_help.c:577 +#: sql_help.c:585 msgid "group_name" msgstr "nombre_de_grupo" -#: sql_help.c:598 sql_help.c:1426 sql_help.c:2212 sql_help.c:2472 -#: sql_help.c:2506 sql_help.c:2907 sql_help.c:2920 sql_help.c:2934 -#: sql_help.c:2975 sql_help.c:3005 sql_help.c:3017 sql_help.c:3930 -#: sql_help.c:4383 +#: sql_help.c:606 sql_help.c:1434 sql_help.c:2220 sql_help.c:2480 +#: sql_help.c:2514 sql_help.c:2915 sql_help.c:2928 sql_help.c:2942 +#: sql_help.c:2983 sql_help.c:3013 sql_help.c:3025 sql_help.c:3938 +#: sql_help.c:4391 msgid "tablespace_name" msgstr "nombre_de_tablespace" -#: sql_help.c:600 sql_help.c:693 sql_help.c:1373 sql_help.c:1383 -#: sql_help.c:1421 sql_help.c:1784 sql_help.c:1787 +#: sql_help.c:608 sql_help.c:701 sql_help.c:1381 sql_help.c:1391 +#: sql_help.c:1429 sql_help.c:1792 sql_help.c:1795 msgid "index_name" msgstr "nombre_índice" -#: sql_help.c:604 sql_help.c:607 sql_help.c:696 sql_help.c:698 sql_help.c:1376 -#: sql_help.c:1378 sql_help.c:1424 sql_help.c:2470 sql_help.c:2504 -#: sql_help.c:2905 sql_help.c:2918 sql_help.c:2932 sql_help.c:2973 -#: sql_help.c:3003 +#: sql_help.c:612 sql_help.c:615 sql_help.c:704 sql_help.c:706 sql_help.c:1384 +#: sql_help.c:1386 sql_help.c:1432 sql_help.c:2478 sql_help.c:2512 +#: sql_help.c:2913 sql_help.c:2926 sql_help.c:2940 sql_help.c:2981 +#: sql_help.c:3011 msgid "storage_parameter" msgstr "parámetro_de_almacenamiento" -#: sql_help.c:609 +#: sql_help.c:617 msgid "column_number" msgstr "número_de_columna" -#: sql_help.c:633 sql_help.c:1872 sql_help.c:4475 +#: sql_help.c:641 sql_help.c:1880 sql_help.c:4483 msgid "large_object_oid" msgstr "oid_de_objeto_grande" -#: sql_help.c:692 sql_help.c:1359 sql_help.c:2893 +#: sql_help.c:700 sql_help.c:1367 sql_help.c:2901 msgid "compression_method" msgstr "método_de_compresión" -#: sql_help.c:694 sql_help.c:1374 +#: sql_help.c:702 sql_help.c:1382 msgid "new_access_method" msgstr "nuevo_método_de_acceso" -#: sql_help.c:727 sql_help.c:2527 +#: sql_help.c:735 sql_help.c:2535 msgid "res_proc" msgstr "proc_res" -#: sql_help.c:728 sql_help.c:2528 +#: sql_help.c:736 sql_help.c:2536 msgid "join_proc" msgstr "proc_join" -#: sql_help.c:780 sql_help.c:792 sql_help.c:2545 +#: sql_help.c:788 sql_help.c:800 sql_help.c:2553 msgid "strategy_number" msgstr "número_de_estrategia" -#: sql_help.c:782 sql_help.c:783 sql_help.c:786 sql_help.c:787 sql_help.c:793 -#: sql_help.c:794 sql_help.c:796 sql_help.c:797 sql_help.c:2547 sql_help.c:2548 -#: sql_help.c:2551 sql_help.c:2552 +#: sql_help.c:790 sql_help.c:791 sql_help.c:794 sql_help.c:795 sql_help.c:801 +#: sql_help.c:802 sql_help.c:804 sql_help.c:805 sql_help.c:2555 sql_help.c:2556 +#: sql_help.c:2559 sql_help.c:2560 msgid "op_type" msgstr "tipo_op" -#: sql_help.c:784 sql_help.c:2549 +#: sql_help.c:792 sql_help.c:2557 msgid "sort_family_name" msgstr "nombre_familia_ordenamiento" -#: sql_help.c:785 sql_help.c:795 sql_help.c:2550 +#: sql_help.c:793 sql_help.c:803 sql_help.c:2558 msgid "support_number" msgstr "número_de_soporte" -#: sql_help.c:789 sql_help.c:2138 sql_help.c:2554 sql_help.c:3094 -#: sql_help.c:3096 +#: sql_help.c:797 sql_help.c:2146 sql_help.c:2562 sql_help.c:3102 +#: sql_help.c:3104 msgid "argument_type" msgstr "tipo_argumento" -#: sql_help.c:820 sql_help.c:823 sql_help.c:912 sql_help.c:1041 sql_help.c:1081 -#: sql_help.c:1550 sql_help.c:1553 sql_help.c:1729 sql_help.c:1783 -#: sql_help.c:1786 sql_help.c:1857 sql_help.c:1882 sql_help.c:1895 -#: sql_help.c:1910 sql_help.c:1967 sql_help.c:1973 sql_help.c:2328 -#: sql_help.c:2340 sql_help.c:2461 sql_help.c:2501 sql_help.c:2578 -#: sql_help.c:2632 sql_help.c:2689 sql_help.c:2741 sql_help.c:2774 -#: sql_help.c:2781 sql_help.c:2890 sql_help.c:2908 sql_help.c:2921 -#: sql_help.c:3000 sql_help.c:3120 sql_help.c:3301 sql_help.c:3524 -#: sql_help.c:3573 sql_help.c:3679 sql_help.c:3886 sql_help.c:3892 -#: sql_help.c:3953 sql_help.c:3985 sql_help.c:4339 sql_help.c:4345 -#: sql_help.c:4463 sql_help.c:4574 sql_help.c:4576 sql_help.c:4638 -#: sql_help.c:4677 sql_help.c:4831 sql_help.c:4833 sql_help.c:4895 -#: sql_help.c:4929 sql_help.c:4981 sql_help.c:5069 sql_help.c:5071 -#: sql_help.c:5133 +#: sql_help.c:828 sql_help.c:831 sql_help.c:920 sql_help.c:1049 sql_help.c:1089 +#: sql_help.c:1558 sql_help.c:1561 sql_help.c:1737 sql_help.c:1791 +#: sql_help.c:1794 sql_help.c:1865 sql_help.c:1890 sql_help.c:1903 +#: sql_help.c:1918 sql_help.c:1975 sql_help.c:1981 sql_help.c:2336 +#: sql_help.c:2348 sql_help.c:2469 sql_help.c:2509 sql_help.c:2586 +#: sql_help.c:2640 sql_help.c:2697 sql_help.c:2749 sql_help.c:2782 +#: sql_help.c:2789 sql_help.c:2898 sql_help.c:2916 sql_help.c:2929 +#: sql_help.c:3008 sql_help.c:3128 sql_help.c:3309 sql_help.c:3532 +#: sql_help.c:3581 sql_help.c:3687 sql_help.c:3894 sql_help.c:3900 +#: sql_help.c:3961 sql_help.c:3993 sql_help.c:4347 sql_help.c:4353 +#: sql_help.c:4471 sql_help.c:4582 sql_help.c:4584 sql_help.c:4646 +#: sql_help.c:4685 sql_help.c:4839 sql_help.c:4841 sql_help.c:4903 +#: sql_help.c:4937 sql_help.c:4989 sql_help.c:5077 sql_help.c:5079 +#: sql_help.c:5141 msgid "table_name" msgstr "nombre_de_tabla" -#: sql_help.c:825 sql_help.c:2580 +#: sql_help.c:833 sql_help.c:2588 msgid "using_expression" msgstr "expresión_using" -#: sql_help.c:826 sql_help.c:2581 +#: sql_help.c:834 sql_help.c:2589 msgid "check_expression" msgstr "expresión_check" -#: sql_help.c:899 sql_help.c:901 sql_help.c:903 sql_help.c:2628 +#: sql_help.c:907 sql_help.c:909 sql_help.c:911 sql_help.c:2636 msgid "publication_object" msgstr "objeto_de_publicación" -#: sql_help.c:905 sql_help.c:2629 +#: sql_help.c:913 sql_help.c:2637 msgid "publication_parameter" msgstr "parámetro_de_publicación" -#: sql_help.c:911 sql_help.c:2631 +#: sql_help.c:919 sql_help.c:2639 msgid "where publication_object is one of:" msgstr "donde objeto_de_publicación es uno de:" -#: sql_help.c:954 sql_help.c:1641 sql_help.c:2439 sql_help.c:2666 -#: sql_help.c:3235 +#: sql_help.c:962 sql_help.c:1649 sql_help.c:2447 sql_help.c:2674 +#: sql_help.c:3243 msgid "password" msgstr "contraseña" -#: sql_help.c:955 sql_help.c:1642 sql_help.c:2440 sql_help.c:2667 -#: sql_help.c:3236 +#: sql_help.c:963 sql_help.c:1650 sql_help.c:2448 sql_help.c:2675 +#: sql_help.c:3244 msgid "timestamp" msgstr "fecha_hora" -#: sql_help.c:959 sql_help.c:963 sql_help.c:966 sql_help.c:969 sql_help.c:1646 -#: sql_help.c:1650 sql_help.c:1653 sql_help.c:1656 sql_help.c:3899 -#: sql_help.c:4352 +#: sql_help.c:967 sql_help.c:971 sql_help.c:974 sql_help.c:977 sql_help.c:1654 +#: sql_help.c:1658 sql_help.c:1661 sql_help.c:1664 sql_help.c:3907 +#: sql_help.c:4360 msgid "database_name" msgstr "nombre_de_base_de_datos" -#: sql_help.c:1075 sql_help.c:2736 +#: sql_help.c:1083 sql_help.c:2744 msgid "increment" msgstr "incremento" -#: sql_help.c:1076 sql_help.c:2737 +#: sql_help.c:1084 sql_help.c:2745 msgid "minvalue" msgstr "valormin" -#: sql_help.c:1077 sql_help.c:2738 +#: sql_help.c:1085 sql_help.c:2746 msgid "maxvalue" msgstr "valormax" -#: sql_help.c:1078 sql_help.c:2739 sql_help.c:4572 sql_help.c:4675 -#: sql_help.c:4829 sql_help.c:4998 sql_help.c:5067 +#: sql_help.c:1086 sql_help.c:2747 sql_help.c:4580 sql_help.c:4683 +#: sql_help.c:4837 sql_help.c:5006 sql_help.c:5075 msgid "start" msgstr "inicio" -#: sql_help.c:1079 sql_help.c:1348 +#: sql_help.c:1087 sql_help.c:1356 msgid "restart" msgstr "reinicio" -#: sql_help.c:1080 sql_help.c:2740 +#: sql_help.c:1088 sql_help.c:2748 msgid "cache" msgstr "cache" -#: sql_help.c:1125 +#: sql_help.c:1133 msgid "new_target" msgstr "nuevo_valor" -#: sql_help.c:1144 sql_help.c:2793 +#: sql_help.c:1152 sql_help.c:2801 msgid "conninfo" msgstr "conninfo" -#: sql_help.c:1146 sql_help.c:1150 sql_help.c:1154 sql_help.c:2794 +#: sql_help.c:1154 sql_help.c:1158 sql_help.c:1162 sql_help.c:2802 msgid "publication_name" msgstr "nombre_de_publicación" -#: sql_help.c:1147 sql_help.c:1151 sql_help.c:1155 +#: sql_help.c:1155 sql_help.c:1159 sql_help.c:1163 msgid "publication_option" msgstr "opción_de_publicación" -#: sql_help.c:1158 +#: sql_help.c:1166 msgid "refresh_option" msgstr "opción_refresh" -#: sql_help.c:1163 sql_help.c:2795 +#: sql_help.c:1171 sql_help.c:2803 msgid "subscription_parameter" msgstr "parámetro_de_suscripción" -#: sql_help.c:1166 +#: sql_help.c:1174 msgid "skip_option" msgstr "opción_skip" -#: sql_help.c:1325 sql_help.c:1328 +#: sql_help.c:1333 sql_help.c:1336 msgid "partition_name" msgstr "nombre_de_partición" -#: sql_help.c:1326 sql_help.c:2345 sql_help.c:2926 +#: sql_help.c:1334 sql_help.c:2353 sql_help.c:2934 msgid "partition_bound_spec" msgstr "borde_de_partición" -#: sql_help.c:1345 sql_help.c:1395 sql_help.c:2940 +#: sql_help.c:1353 sql_help.c:1403 sql_help.c:2948 msgid "sequence_options" msgstr "opciones_de_secuencia" -#: sql_help.c:1347 +#: sql_help.c:1355 msgid "sequence_option" msgstr "opción_de_secuencia" -#: sql_help.c:1361 +#: sql_help.c:1369 msgid "table_constraint_using_index" msgstr "restricción_de_tabla_con_índice" -#: sql_help.c:1369 sql_help.c:1370 sql_help.c:1371 sql_help.c:1372 +#: sql_help.c:1377 sql_help.c:1378 sql_help.c:1379 sql_help.c:1380 msgid "rewrite_rule_name" msgstr "nombre_regla_de_reescritura" -#: sql_help.c:1384 sql_help.c:2357 sql_help.c:2965 +#: sql_help.c:1392 sql_help.c:2365 sql_help.c:2973 msgid "and partition_bound_spec is:" msgstr "y borde_de_partición es:" -#: sql_help.c:1385 sql_help.c:1386 sql_help.c:1387 sql_help.c:2358 -#: sql_help.c:2359 sql_help.c:2360 sql_help.c:2966 sql_help.c:2967 -#: sql_help.c:2968 +#: sql_help.c:1393 sql_help.c:1394 sql_help.c:1395 sql_help.c:2366 +#: sql_help.c:2367 sql_help.c:2368 sql_help.c:2974 sql_help.c:2975 +#: sql_help.c:2976 msgid "partition_bound_expr" msgstr "expresión_de_borde_de_partición" -#: sql_help.c:1388 sql_help.c:1389 sql_help.c:2361 sql_help.c:2362 -#: sql_help.c:2969 sql_help.c:2970 +#: sql_help.c:1396 sql_help.c:1397 sql_help.c:2369 sql_help.c:2370 +#: sql_help.c:2977 sql_help.c:2978 msgid "numeric_literal" msgstr "literal_numérico" -#: sql_help.c:1390 +#: sql_help.c:1398 msgid "and column_constraint is:" msgstr "donde restricción_de_columna es:" -#: sql_help.c:1393 sql_help.c:2352 sql_help.c:2393 sql_help.c:2602 -#: sql_help.c:2938 +#: sql_help.c:1401 sql_help.c:2360 sql_help.c:2401 sql_help.c:2610 +#: sql_help.c:2946 msgid "default_expr" msgstr "expr_por_omisión" -#: sql_help.c:1394 sql_help.c:2353 sql_help.c:2939 +#: sql_help.c:1402 sql_help.c:2361 sql_help.c:2947 msgid "generation_expr" msgstr "expr_de_generación" -#: sql_help.c:1396 sql_help.c:1397 sql_help.c:1406 sql_help.c:1408 -#: sql_help.c:1412 sql_help.c:2941 sql_help.c:2942 sql_help.c:2951 -#: sql_help.c:2953 sql_help.c:2957 +#: sql_help.c:1404 sql_help.c:1405 sql_help.c:1414 sql_help.c:1416 +#: sql_help.c:1420 sql_help.c:2949 sql_help.c:2950 sql_help.c:2959 +#: sql_help.c:2961 sql_help.c:2965 msgid "index_parameters" msgstr "parámetros_de_índice" -#: sql_help.c:1398 sql_help.c:1415 sql_help.c:2943 sql_help.c:2960 +#: sql_help.c:1406 sql_help.c:1423 sql_help.c:2951 sql_help.c:2968 msgid "reftable" msgstr "tabla_ref" -#: sql_help.c:1399 sql_help.c:1416 sql_help.c:2944 sql_help.c:2961 +#: sql_help.c:1407 sql_help.c:1424 sql_help.c:2952 sql_help.c:2969 msgid "refcolumn" msgstr "columna_ref" -#: sql_help.c:1400 sql_help.c:1401 sql_help.c:1417 sql_help.c:1418 -#: sql_help.c:2945 sql_help.c:2946 sql_help.c:2962 sql_help.c:2963 +#: sql_help.c:1408 sql_help.c:1409 sql_help.c:1425 sql_help.c:1426 +#: sql_help.c:2953 sql_help.c:2954 sql_help.c:2970 sql_help.c:2971 msgid "referential_action" msgstr "acción_referencial" -#: sql_help.c:1402 sql_help.c:2354 sql_help.c:2947 +#: sql_help.c:1410 sql_help.c:2362 sql_help.c:2955 msgid "and table_constraint is:" msgstr "y restricción_de_tabla es:" -#: sql_help.c:1410 sql_help.c:2955 +#: sql_help.c:1418 sql_help.c:2963 msgid "exclude_element" msgstr "elemento_de_exclusión" -#: sql_help.c:1411 sql_help.c:2956 sql_help.c:4570 sql_help.c:4673 -#: sql_help.c:4827 sql_help.c:4996 sql_help.c:5065 +#: sql_help.c:1419 sql_help.c:2964 sql_help.c:4578 sql_help.c:4681 +#: sql_help.c:4835 sql_help.c:5004 sql_help.c:5073 msgid "operator" msgstr "operador" -#: sql_help.c:1413 sql_help.c:2473 sql_help.c:2958 +#: sql_help.c:1421 sql_help.c:2481 sql_help.c:2966 msgid "predicate" msgstr "predicado" -#: sql_help.c:1419 +#: sql_help.c:1427 msgid "and table_constraint_using_index is:" msgstr "y restricción_de_tabla_con_índice es:" -#: sql_help.c:1422 sql_help.c:2971 +#: sql_help.c:1430 sql_help.c:2979 msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:" msgstr "parámetros_de_índice en UNIQUE, PRIMARY KEY y EXCLUDE son:" -#: sql_help.c:1427 sql_help.c:2976 +#: sql_help.c:1435 sql_help.c:2984 msgid "exclude_element in an EXCLUDE constraint is:" msgstr "elemento_de_exclusión en una restricción EXCLUDE es:" -#: sql_help.c:1431 sql_help.c:2466 sql_help.c:2903 sql_help.c:2916 -#: sql_help.c:2930 sql_help.c:2980 sql_help.c:3998 +#: sql_help.c:1439 sql_help.c:2474 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:2938 sql_help.c:2988 sql_help.c:4006 msgid "opclass" msgstr "clase_de_ops" -#: sql_help.c:1432 sql_help.c:2467 sql_help.c:2981 +#: sql_help.c:1440 sql_help.c:2475 sql_help.c:2989 msgid "opclass_parameter" msgstr "parámetro_opclass" -#: sql_help.c:1434 sql_help.c:2983 +#: sql_help.c:1442 sql_help.c:2991 msgid "referential_action in a FOREIGN KEY/REFERENCES constraint is:" msgstr "acción_referencial en una restricción FOREIGN KEY/REFERENCES es:" -#: sql_help.c:1452 sql_help.c:1455 sql_help.c:3020 +#: sql_help.c:1460 sql_help.c:1463 sql_help.c:3028 msgid "tablespace_option" msgstr "opción_de_tablespace" -#: sql_help.c:1476 sql_help.c:1479 sql_help.c:1485 sql_help.c:1489 +#: sql_help.c:1484 sql_help.c:1487 sql_help.c:1493 sql_help.c:1497 msgid "token_type" msgstr "tipo_de_token" -#: sql_help.c:1477 sql_help.c:1480 +#: sql_help.c:1485 sql_help.c:1488 msgid "dictionary_name" msgstr "nombre_diccionario" -#: sql_help.c:1482 sql_help.c:1486 +#: sql_help.c:1490 sql_help.c:1494 msgid "old_dictionary" msgstr "diccionario_antiguo" -#: sql_help.c:1483 sql_help.c:1487 +#: sql_help.c:1491 sql_help.c:1495 msgid "new_dictionary" msgstr "diccionario_nuevo" -#: sql_help.c:1582 sql_help.c:1596 sql_help.c:1599 sql_help.c:1600 -#: sql_help.c:3173 +#: sql_help.c:1590 sql_help.c:1604 sql_help.c:1607 sql_help.c:1608 +#: sql_help.c:3181 msgid "attribute_name" msgstr "nombre_atributo" -#: sql_help.c:1583 +#: sql_help.c:1591 msgid "new_attribute_name" msgstr "nuevo_nombre_atributo" -#: sql_help.c:1587 sql_help.c:1591 +#: sql_help.c:1595 sql_help.c:1599 msgid "new_enum_value" msgstr "nuevo_valor_enum" -#: sql_help.c:1588 +#: sql_help.c:1596 msgid "neighbor_enum_value" msgstr "valor_enum_vecino" -#: sql_help.c:1590 +#: sql_help.c:1598 msgid "existing_enum_value" msgstr "valor_enum_existente" -#: sql_help.c:1593 +#: sql_help.c:1601 msgid "property" msgstr "propiedad" -#: sql_help.c:1669 sql_help.c:2337 sql_help.c:2346 sql_help.c:2752 -#: sql_help.c:3253 sql_help.c:3704 sql_help.c:3908 sql_help.c:3954 -#: sql_help.c:4361 +#: sql_help.c:1677 sql_help.c:2345 sql_help.c:2354 sql_help.c:2760 +#: sql_help.c:3261 sql_help.c:3712 sql_help.c:3916 sql_help.c:3962 +#: sql_help.c:4369 msgid "server_name" msgstr "nombre_de_servidor" -#: sql_help.c:1701 sql_help.c:1704 sql_help.c:3268 +#: sql_help.c:1709 sql_help.c:1712 sql_help.c:3276 msgid "view_option_name" msgstr "nombre_opción_de_vista" -#: sql_help.c:1702 sql_help.c:3269 +#: sql_help.c:1710 sql_help.c:3277 msgid "view_option_value" msgstr "valor_opción_de_vista" -#: sql_help.c:1723 sql_help.c:1724 sql_help.c:4968 sql_help.c:4969 +#: sql_help.c:1731 sql_help.c:1732 sql_help.c:4976 sql_help.c:4977 msgid "table_and_columns" msgstr "tabla_y_columnas" -#: sql_help.c:1725 sql_help.c:1788 sql_help.c:1979 sql_help.c:3752 -#: sql_help.c:4196 sql_help.c:4970 +#: sql_help.c:1733 sql_help.c:1796 sql_help.c:1987 sql_help.c:3760 +#: sql_help.c:4204 sql_help.c:4978 msgid "where option can be one of:" msgstr "donde opción puede ser una de:" -#: sql_help.c:1726 sql_help.c:1727 sql_help.c:1789 sql_help.c:1981 -#: sql_help.c:1984 sql_help.c:2163 sql_help.c:3753 sql_help.c:3754 -#: sql_help.c:3755 sql_help.c:3756 sql_help.c:3757 sql_help.c:3758 -#: sql_help.c:3759 sql_help.c:3760 sql_help.c:4197 sql_help.c:4199 -#: sql_help.c:4971 sql_help.c:4972 sql_help.c:4973 sql_help.c:4974 -#: sql_help.c:4975 sql_help.c:4976 sql_help.c:4977 sql_help.c:4978 +#: sql_help.c:1734 sql_help.c:1735 sql_help.c:1797 sql_help.c:1989 +#: sql_help.c:1992 sql_help.c:2171 sql_help.c:3761 sql_help.c:3762 +#: sql_help.c:3763 sql_help.c:3764 sql_help.c:3765 sql_help.c:3766 +#: sql_help.c:3767 sql_help.c:3768 sql_help.c:4205 sql_help.c:4207 +#: sql_help.c:4979 sql_help.c:4980 sql_help.c:4981 sql_help.c:4982 +#: sql_help.c:4983 sql_help.c:4984 sql_help.c:4985 sql_help.c:4986 msgid "boolean" msgstr "booleano" -#: sql_help.c:1728 sql_help.c:4980 +#: sql_help.c:1736 sql_help.c:4988 msgid "and table_and_columns is:" msgstr "y tabla_y_columnas es:" -#: sql_help.c:1744 sql_help.c:4734 sql_help.c:4736 sql_help.c:4760 +#: sql_help.c:1752 sql_help.c:4742 sql_help.c:4744 sql_help.c:4768 msgid "transaction_mode" msgstr "modo_de_transacción" -#: sql_help.c:1745 sql_help.c:4737 sql_help.c:4761 +#: sql_help.c:1753 sql_help.c:4745 sql_help.c:4769 msgid "where transaction_mode is one of:" msgstr "donde modo_de_transacción es uno de:" -#: sql_help.c:1754 sql_help.c:4580 sql_help.c:4589 sql_help.c:4593 -#: sql_help.c:4597 sql_help.c:4600 sql_help.c:4837 sql_help.c:4846 -#: sql_help.c:4850 sql_help.c:4854 sql_help.c:4857 sql_help.c:5075 -#: sql_help.c:5084 sql_help.c:5088 sql_help.c:5092 sql_help.c:5095 +#: sql_help.c:1762 sql_help.c:4588 sql_help.c:4597 sql_help.c:4601 +#: sql_help.c:4605 sql_help.c:4608 sql_help.c:4845 sql_help.c:4854 +#: sql_help.c:4858 sql_help.c:4862 sql_help.c:4865 sql_help.c:5083 +#: sql_help.c:5092 sql_help.c:5096 sql_help.c:5100 sql_help.c:5103 msgid "argument" msgstr "argumento" -#: sql_help.c:1854 +#: sql_help.c:1862 msgid "relation_name" msgstr "nombre_relación" -#: sql_help.c:1859 sql_help.c:3902 sql_help.c:4355 +#: sql_help.c:1867 sql_help.c:3910 sql_help.c:4363 msgid "domain_name" msgstr "nombre_de_dominio" -#: sql_help.c:1881 +#: sql_help.c:1889 msgid "policy_name" msgstr "nombre_de_política" -#: sql_help.c:1894 +#: sql_help.c:1902 msgid "rule_name" msgstr "nombre_regla" -#: sql_help.c:1913 sql_help.c:4494 +#: sql_help.c:1921 sql_help.c:4502 msgid "string_literal" msgstr "literal_de_cadena" -#: sql_help.c:1938 sql_help.c:4161 sql_help.c:4408 +#: sql_help.c:1946 sql_help.c:4169 sql_help.c:4416 msgid "transaction_id" msgstr "id_de_transacción" -#: sql_help.c:1969 sql_help.c:1976 sql_help.c:4024 +#: sql_help.c:1977 sql_help.c:1984 sql_help.c:4032 msgid "filename" msgstr "nombre_de_archivo" -#: sql_help.c:1970 sql_help.c:1977 sql_help.c:2691 sql_help.c:2692 -#: sql_help.c:2693 +#: sql_help.c:1978 sql_help.c:1985 sql_help.c:2699 sql_help.c:2700 +#: sql_help.c:2701 msgid "command" msgstr "orden" -#: sql_help.c:1972 sql_help.c:2690 sql_help.c:3123 sql_help.c:3304 -#: sql_help.c:4008 sql_help.c:4087 sql_help.c:4090 sql_help.c:4563 -#: sql_help.c:4565 sql_help.c:4666 sql_help.c:4668 sql_help.c:4820 -#: sql_help.c:4822 sql_help.c:4938 sql_help.c:5058 sql_help.c:5060 +#: sql_help.c:1980 sql_help.c:2698 sql_help.c:3131 sql_help.c:3312 +#: sql_help.c:4016 sql_help.c:4095 sql_help.c:4098 sql_help.c:4571 +#: sql_help.c:4573 sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 +#: sql_help.c:4830 sql_help.c:4946 sql_help.c:5066 sql_help.c:5068 msgid "condition" msgstr "condición" -#: sql_help.c:1975 sql_help.c:2507 sql_help.c:3006 sql_help.c:3270 -#: sql_help.c:3288 sql_help.c:3989 +#: sql_help.c:1983 sql_help.c:2515 sql_help.c:3014 sql_help.c:3278 +#: sql_help.c:3296 sql_help.c:3997 msgid "query" msgstr "consulta" -#: sql_help.c:1980 +#: sql_help.c:1988 msgid "format_name" msgstr "nombre_de_formato" -#: sql_help.c:1982 +#: sql_help.c:1990 msgid "delimiter_character" msgstr "carácter_delimitador" -#: sql_help.c:1983 +#: sql_help.c:1991 msgid "null_string" msgstr "cadena_null" -#: sql_help.c:1985 +#: sql_help.c:1993 msgid "quote_character" msgstr "carácter_de_comilla" -#: sql_help.c:1986 +#: sql_help.c:1994 msgid "escape_character" msgstr "carácter_de_escape" -#: sql_help.c:1990 +#: sql_help.c:1998 msgid "encoding_name" msgstr "nombre_codificación" -#: sql_help.c:2001 +#: sql_help.c:2009 msgid "access_method_type" msgstr "tipo_de_método_de_acceso" -#: sql_help.c:2072 sql_help.c:2091 sql_help.c:2094 +#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2102 msgid "arg_data_type" msgstr "tipo_de_dato_arg" -#: sql_help.c:2073 sql_help.c:2095 sql_help.c:2103 +#: sql_help.c:2081 sql_help.c:2103 sql_help.c:2111 msgid "sfunc" msgstr "func_transición" -#: sql_help.c:2074 sql_help.c:2096 sql_help.c:2104 +#: sql_help.c:2082 sql_help.c:2104 sql_help.c:2112 msgid "state_data_type" msgstr "tipo_de_dato_de_estado" -#: sql_help.c:2075 sql_help.c:2097 sql_help.c:2105 +#: sql_help.c:2083 sql_help.c:2105 sql_help.c:2113 msgid "state_data_size" msgstr "tamaño_de_dato_de_estado" -#: sql_help.c:2076 sql_help.c:2098 sql_help.c:2106 +#: sql_help.c:2084 sql_help.c:2106 sql_help.c:2114 msgid "ffunc" msgstr "func_final" -#: sql_help.c:2077 sql_help.c:2107 +#: sql_help.c:2085 sql_help.c:2115 msgid "combinefunc" msgstr "func_combinación" -#: sql_help.c:2078 sql_help.c:2108 +#: sql_help.c:2086 sql_help.c:2116 msgid "serialfunc" msgstr "func_serial" -#: sql_help.c:2079 sql_help.c:2109 +#: sql_help.c:2087 sql_help.c:2117 msgid "deserialfunc" msgstr "func_deserial" -#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2110 +#: sql_help.c:2088 sql_help.c:2107 sql_help.c:2118 msgid "initial_condition" msgstr "condición_inicial" -#: sql_help.c:2081 sql_help.c:2111 +#: sql_help.c:2089 sql_help.c:2119 msgid "msfunc" msgstr "func_transición_m" -#: sql_help.c:2082 sql_help.c:2112 +#: sql_help.c:2090 sql_help.c:2120 msgid "minvfunc" msgstr "func_inv_m" -#: sql_help.c:2083 sql_help.c:2113 +#: sql_help.c:2091 sql_help.c:2121 msgid "mstate_data_type" msgstr "tipo_de_dato_de_estado_m" -#: sql_help.c:2084 sql_help.c:2114 +#: sql_help.c:2092 sql_help.c:2122 msgid "mstate_data_size" msgstr "tamaño_de_dato_de_estado_m" -#: sql_help.c:2085 sql_help.c:2115 +#: sql_help.c:2093 sql_help.c:2123 msgid "mffunc" msgstr "func_final_m" -#: sql_help.c:2086 sql_help.c:2116 +#: sql_help.c:2094 sql_help.c:2124 msgid "minitial_condition" msgstr "condición_inicial_m" -#: sql_help.c:2087 sql_help.c:2117 +#: sql_help.c:2095 sql_help.c:2125 msgid "sort_operator" msgstr "operador_de_ordenamiento" -#: sql_help.c:2100 +#: sql_help.c:2108 msgid "or the old syntax" msgstr "o la sintaxis antigua" -#: sql_help.c:2102 +#: sql_help.c:2110 msgid "base_type" msgstr "tipo_base" -#: sql_help.c:2159 sql_help.c:2206 +#: sql_help.c:2167 sql_help.c:2214 msgid "locale" msgstr "configuración regional" -#: sql_help.c:2160 sql_help.c:2207 +#: sql_help.c:2168 sql_help.c:2215 msgid "lc_collate" msgstr "lc_collate" -#: sql_help.c:2161 sql_help.c:2208 +#: sql_help.c:2169 sql_help.c:2216 msgid "lc_ctype" msgstr "lc_ctype" -#: sql_help.c:2162 sql_help.c:4461 +#: sql_help.c:2170 sql_help.c:4469 msgid "provider" msgstr "proveedor" -#: sql_help.c:2164 sql_help.c:2267 +#: sql_help.c:2172 sql_help.c:2275 msgid "version" msgstr "versión" -#: sql_help.c:2166 +#: sql_help.c:2174 msgid "existing_collation" msgstr "ordenamiento_existente" -#: sql_help.c:2176 +#: sql_help.c:2184 msgid "source_encoding" msgstr "codificación_origen" -#: sql_help.c:2177 +#: sql_help.c:2185 msgid "dest_encoding" msgstr "codificación_destino" -#: sql_help.c:2203 sql_help.c:3046 +#: sql_help.c:2211 sql_help.c:3054 msgid "template" msgstr "plantilla" -#: sql_help.c:2204 +#: sql_help.c:2212 msgid "encoding" msgstr "codificación" -#: sql_help.c:2205 +#: sql_help.c:2213 msgid "strategy" msgstr "estrategia" -#: sql_help.c:2209 +#: sql_help.c:2217 msgid "icu_locale" msgstr "locale_icu" -#: sql_help.c:2210 +#: sql_help.c:2218 msgid "locale_provider" msgstr "proveedor_locale" -#: sql_help.c:2211 +#: sql_help.c:2219 msgid "collation_version" msgstr "versión_ordenamiento" -#: sql_help.c:2216 +#: sql_help.c:2224 msgid "oid" msgstr "oid" -#: sql_help.c:2236 +#: sql_help.c:2244 msgid "constraint" msgstr "restricción" -#: sql_help.c:2237 +#: sql_help.c:2245 msgid "where constraint is:" msgstr "donde restricción es:" -#: sql_help.c:2251 sql_help.c:2688 sql_help.c:3119 +#: sql_help.c:2259 sql_help.c:2696 sql_help.c:3127 msgid "event" msgstr "evento" -#: sql_help.c:2252 +#: sql_help.c:2260 msgid "filter_variable" msgstr "variable_de_filtrado" -#: sql_help.c:2253 +#: sql_help.c:2261 msgid "filter_value" msgstr "valor_de_filtrado" -#: sql_help.c:2349 sql_help.c:2935 +#: sql_help.c:2357 sql_help.c:2943 msgid "where column_constraint is:" msgstr "donde restricción_de_columna es:" -#: sql_help.c:2394 +#: sql_help.c:2402 msgid "rettype" msgstr "tipo_ret" -#: sql_help.c:2396 +#: sql_help.c:2404 msgid "column_type" msgstr "tipo_columna" -#: sql_help.c:2405 sql_help.c:2608 +#: sql_help.c:2413 sql_help.c:2616 msgid "definition" msgstr "definición" -#: sql_help.c:2406 sql_help.c:2609 +#: sql_help.c:2414 sql_help.c:2617 msgid "obj_file" msgstr "archivo_obj" -#: sql_help.c:2407 sql_help.c:2610 +#: sql_help.c:2415 sql_help.c:2618 msgid "link_symbol" msgstr "símbolo_enlace" -#: sql_help.c:2408 sql_help.c:2611 +#: sql_help.c:2416 sql_help.c:2619 msgid "sql_body" msgstr "contenido_sql" -#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 +#: sql_help.c:2454 sql_help.c:2681 sql_help.c:3250 msgid "uid" msgstr "uid" -#: sql_help.c:2462 sql_help.c:2503 sql_help.c:2904 sql_help.c:2917 -#: sql_help.c:2931 sql_help.c:3002 +#: sql_help.c:2470 sql_help.c:2511 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:2939 sql_help.c:3010 msgid "method" msgstr "método" -#: sql_help.c:2484 +#: sql_help.c:2492 msgid "call_handler" msgstr "manejador_de_llamada" -#: sql_help.c:2485 +#: sql_help.c:2493 msgid "inline_handler" msgstr "manejador_en_línea" -#: sql_help.c:2486 +#: sql_help.c:2494 msgid "valfunction" msgstr "función_val" -#: sql_help.c:2525 +#: sql_help.c:2533 msgid "com_op" msgstr "op_conm" -#: sql_help.c:2526 +#: sql_help.c:2534 msgid "neg_op" msgstr "op_neg" -#: sql_help.c:2544 +#: sql_help.c:2552 msgid "family_name" msgstr "nombre_familia" -#: sql_help.c:2555 +#: sql_help.c:2563 msgid "storage_type" msgstr "tipo_almacenamiento" -#: sql_help.c:2694 sql_help.c:3126 +#: sql_help.c:2702 sql_help.c:3134 msgid "where event can be one of:" msgstr "donde evento puede ser una de:" -#: sql_help.c:2714 sql_help.c:2716 +#: sql_help.c:2722 sql_help.c:2724 msgid "schema_element" msgstr "elemento_de_esquema" -#: sql_help.c:2753 +#: sql_help.c:2761 msgid "server_type" msgstr "tipo_de_servidor" -#: sql_help.c:2754 +#: sql_help.c:2762 msgid "server_version" msgstr "versión_de_servidor" -#: sql_help.c:2755 sql_help.c:3905 sql_help.c:4358 +#: sql_help.c:2763 sql_help.c:3913 sql_help.c:4366 msgid "fdw_name" msgstr "nombre_fdw" -#: sql_help.c:2772 sql_help.c:2775 +#: sql_help.c:2780 sql_help.c:2783 msgid "statistics_name" msgstr "nombre_de_estadística" -#: sql_help.c:2776 +#: sql_help.c:2784 msgid "statistics_kind" msgstr "tipo_de_estadística" -#: sql_help.c:2792 +#: sql_help.c:2800 msgid "subscription_name" msgstr "nombre_de_suscripción" -#: sql_help.c:2897 +#: sql_help.c:2905 msgid "source_table" msgstr "tabla_origen" -#: sql_help.c:2898 +#: sql_help.c:2906 msgid "like_option" msgstr "opción_de_like" -#: sql_help.c:2964 +#: sql_help.c:2972 msgid "and like_option is:" msgstr "y opción_de_like es:" -#: sql_help.c:3019 +#: sql_help.c:3027 msgid "directory" msgstr "directorio" -#: sql_help.c:3033 +#: sql_help.c:3041 msgid "parser_name" msgstr "nombre_de_parser" -#: sql_help.c:3034 +#: sql_help.c:3042 msgid "source_config" msgstr "config_origen" -#: sql_help.c:3063 +#: sql_help.c:3071 msgid "start_function" msgstr "función_inicio" -#: sql_help.c:3064 +#: sql_help.c:3072 msgid "gettoken_function" msgstr "función_gettoken" -#: sql_help.c:3065 +#: sql_help.c:3073 msgid "end_function" msgstr "función_fin" -#: sql_help.c:3066 +#: sql_help.c:3074 msgid "lextypes_function" msgstr "función_lextypes" -#: sql_help.c:3067 +#: sql_help.c:3075 msgid "headline_function" msgstr "función_headline" -#: sql_help.c:3079 +#: sql_help.c:3087 msgid "init_function" msgstr "función_init" -#: sql_help.c:3080 +#: sql_help.c:3088 msgid "lexize_function" msgstr "función_lexize" -#: sql_help.c:3093 +#: sql_help.c:3101 msgid "from_sql_function_name" msgstr "nombre_de_función_from" -#: sql_help.c:3095 +#: sql_help.c:3103 msgid "to_sql_function_name" msgstr "nombre_de_función_to" -#: sql_help.c:3121 +#: sql_help.c:3129 msgid "referenced_table_name" msgstr "nombre_tabla_referenciada" -#: sql_help.c:3122 +#: sql_help.c:3130 msgid "transition_relation_name" msgstr "nombre_de_relación_de_transición" -#: sql_help.c:3125 +#: sql_help.c:3133 msgid "arguments" msgstr "argumentos" -#: sql_help.c:3177 +#: sql_help.c:3185 msgid "label" msgstr "etiqueta" -#: sql_help.c:3179 +#: sql_help.c:3187 msgid "subtype" msgstr "subtipo" -#: sql_help.c:3180 +#: sql_help.c:3188 msgid "subtype_operator_class" msgstr "clase_de_operador_del_subtipo" -#: sql_help.c:3182 +#: sql_help.c:3190 msgid "canonical_function" msgstr "función_canónica" -#: sql_help.c:3183 +#: sql_help.c:3191 msgid "subtype_diff_function" msgstr "función_diff_del_subtipo" -#: sql_help.c:3184 +#: sql_help.c:3192 msgid "multirange_type_name" msgstr "nombre_de_tipo_de_multirango" -#: sql_help.c:3186 +#: sql_help.c:3194 msgid "input_function" msgstr "función_entrada" -#: sql_help.c:3187 +#: sql_help.c:3195 msgid "output_function" msgstr "función_salida" -#: sql_help.c:3188 +#: sql_help.c:3196 msgid "receive_function" msgstr "función_receive" -#: sql_help.c:3189 +#: sql_help.c:3197 msgid "send_function" msgstr "función_send" -#: sql_help.c:3190 +#: sql_help.c:3198 msgid "type_modifier_input_function" msgstr "función_entrada_del_modificador_de_tipo" -#: sql_help.c:3191 +#: sql_help.c:3199 msgid "type_modifier_output_function" msgstr "función_salida_del_modificador_de_tipo" -#: sql_help.c:3192 +#: sql_help.c:3200 msgid "analyze_function" msgstr "función_analyze" -#: sql_help.c:3193 +#: sql_help.c:3201 msgid "subscript_function" msgstr "función_de_subíndice" -#: sql_help.c:3194 +#: sql_help.c:3202 msgid "internallength" msgstr "largo_interno" -#: sql_help.c:3195 +#: sql_help.c:3203 msgid "alignment" msgstr "alineamiento" -#: sql_help.c:3196 +#: sql_help.c:3204 msgid "storage" msgstr "almacenamiento" -#: sql_help.c:3197 +#: sql_help.c:3205 msgid "like_type" msgstr "como_tipo" -#: sql_help.c:3198 +#: sql_help.c:3206 msgid "category" msgstr "categoría" -#: sql_help.c:3199 +#: sql_help.c:3207 msgid "preferred" msgstr "preferido" -#: sql_help.c:3200 +#: sql_help.c:3208 msgid "default" msgstr "valor_por_omisión" -#: sql_help.c:3201 +#: sql_help.c:3209 msgid "element" msgstr "elemento" -#: sql_help.c:3202 +#: sql_help.c:3210 msgid "delimiter" msgstr "delimitador" -#: sql_help.c:3203 +#: sql_help.c:3211 msgid "collatable" msgstr "ordenable" -#: sql_help.c:3300 sql_help.c:3984 sql_help.c:4076 sql_help.c:4558 -#: sql_help.c:4660 sql_help.c:4815 sql_help.c:4928 sql_help.c:5053 +#: sql_help.c:3308 sql_help.c:3992 sql_help.c:4084 sql_help.c:4566 +#: sql_help.c:4668 sql_help.c:4823 sql_help.c:4936 sql_help.c:5061 msgid "with_query" msgstr "consulta_with" -#: sql_help.c:3302 sql_help.c:3986 sql_help.c:4577 sql_help.c:4583 -#: sql_help.c:4586 sql_help.c:4590 sql_help.c:4594 sql_help.c:4602 -#: sql_help.c:4834 sql_help.c:4840 sql_help.c:4843 sql_help.c:4847 -#: sql_help.c:4851 sql_help.c:4859 sql_help.c:4930 sql_help.c:5072 -#: sql_help.c:5078 sql_help.c:5081 sql_help.c:5085 sql_help.c:5089 -#: sql_help.c:5097 +#: sql_help.c:3310 sql_help.c:3994 sql_help.c:4585 sql_help.c:4591 +#: sql_help.c:4594 sql_help.c:4598 sql_help.c:4602 sql_help.c:4610 +#: sql_help.c:4842 sql_help.c:4848 sql_help.c:4851 sql_help.c:4855 +#: sql_help.c:4859 sql_help.c:4867 sql_help.c:4938 sql_help.c:5080 +#: sql_help.c:5086 sql_help.c:5089 sql_help.c:5093 sql_help.c:5097 +#: sql_help.c:5105 msgid "alias" msgstr "alias" -#: sql_help.c:3303 sql_help.c:4562 sql_help.c:4604 sql_help.c:4606 -#: sql_help.c:4610 sql_help.c:4612 sql_help.c:4613 sql_help.c:4614 -#: sql_help.c:4665 sql_help.c:4819 sql_help.c:4861 sql_help.c:4863 -#: sql_help.c:4867 sql_help.c:4869 sql_help.c:4870 sql_help.c:4871 -#: sql_help.c:4937 sql_help.c:5057 sql_help.c:5099 sql_help.c:5101 -#: sql_help.c:5105 sql_help.c:5107 sql_help.c:5108 sql_help.c:5109 +#: sql_help.c:3311 sql_help.c:4570 sql_help.c:4612 sql_help.c:4614 +#: sql_help.c:4618 sql_help.c:4620 sql_help.c:4621 sql_help.c:4622 +#: sql_help.c:4673 sql_help.c:4827 sql_help.c:4869 sql_help.c:4871 +#: sql_help.c:4875 sql_help.c:4877 sql_help.c:4878 sql_help.c:4879 +#: sql_help.c:4945 sql_help.c:5065 sql_help.c:5107 sql_help.c:5109 +#: sql_help.c:5113 sql_help.c:5115 sql_help.c:5116 sql_help.c:5117 msgid "from_item" msgstr "item_de_from" -#: sql_help.c:3305 sql_help.c:3786 sql_help.c:4128 sql_help.c:4939 +#: sql_help.c:3313 sql_help.c:3794 sql_help.c:4136 sql_help.c:4947 msgid "cursor_name" msgstr "nombre_de_cursor" -#: sql_help.c:3306 sql_help.c:3992 sql_help.c:4940 +#: sql_help.c:3314 sql_help.c:4000 sql_help.c:4948 msgid "output_expression" msgstr "expresión_de_salida" -#: sql_help.c:3307 sql_help.c:3993 sql_help.c:4561 sql_help.c:4663 -#: sql_help.c:4818 sql_help.c:4941 sql_help.c:5056 +#: sql_help.c:3315 sql_help.c:4001 sql_help.c:4569 sql_help.c:4671 +#: sql_help.c:4826 sql_help.c:4949 sql_help.c:5064 msgid "output_name" msgstr "nombre_de_salida" -#: sql_help.c:3323 +#: sql_help.c:3331 msgid "code" msgstr "código" -#: sql_help.c:3728 +#: sql_help.c:3736 msgid "parameter" msgstr "parámetro" -#: sql_help.c:3750 sql_help.c:3751 sql_help.c:4153 +#: sql_help.c:3758 sql_help.c:3759 sql_help.c:4161 msgid "statement" msgstr "sentencia" -#: sql_help.c:3785 sql_help.c:4127 +#: sql_help.c:3793 sql_help.c:4135 msgid "direction" msgstr "dirección" -#: sql_help.c:3787 sql_help.c:4129 +#: sql_help.c:3795 sql_help.c:4137 msgid "where direction can be one of:" msgstr "donde dirección puede ser una de:" -#: sql_help.c:3788 sql_help.c:3789 sql_help.c:3790 sql_help.c:3791 -#: sql_help.c:3792 sql_help.c:4130 sql_help.c:4131 sql_help.c:4132 -#: sql_help.c:4133 sql_help.c:4134 sql_help.c:4571 sql_help.c:4573 -#: sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 sql_help.c:4830 -#: sql_help.c:4997 sql_help.c:4999 sql_help.c:5066 sql_help.c:5068 +#: sql_help.c:3796 sql_help.c:3797 sql_help.c:3798 sql_help.c:3799 +#: sql_help.c:3800 sql_help.c:4138 sql_help.c:4139 sql_help.c:4140 +#: sql_help.c:4141 sql_help.c:4142 sql_help.c:4579 sql_help.c:4581 +#: sql_help.c:4682 sql_help.c:4684 sql_help.c:4836 sql_help.c:4838 +#: sql_help.c:5005 sql_help.c:5007 sql_help.c:5074 sql_help.c:5076 msgid "count" msgstr "cantidad" -#: sql_help.c:3895 sql_help.c:4348 +#: sql_help.c:3903 sql_help.c:4356 msgid "sequence_name" msgstr "nombre_secuencia" -#: sql_help.c:3913 sql_help.c:4366 +#: sql_help.c:3921 sql_help.c:4374 msgid "arg_name" msgstr "nombre_arg" -#: sql_help.c:3914 sql_help.c:4367 +#: sql_help.c:3922 sql_help.c:4375 msgid "arg_type" msgstr "tipo_arg" -#: sql_help.c:3921 sql_help.c:4374 +#: sql_help.c:3929 sql_help.c:4382 msgid "loid" msgstr "loid" -#: sql_help.c:3952 +#: sql_help.c:3960 msgid "remote_schema" msgstr "esquema_remoto" -#: sql_help.c:3955 +#: sql_help.c:3963 msgid "local_schema" msgstr "esquema_local" -#: sql_help.c:3990 +#: sql_help.c:3998 msgid "conflict_target" msgstr "destino_de_conflict" -#: sql_help.c:3991 +#: sql_help.c:3999 msgid "conflict_action" msgstr "acción_de_conflict" -#: sql_help.c:3994 +#: sql_help.c:4002 msgid "where conflict_target can be one of:" msgstr "donde destino_de_conflict puede ser uno de:" -#: sql_help.c:3995 +#: sql_help.c:4003 msgid "index_column_name" msgstr "nombre_de_columna_de_índice" -#: sql_help.c:3996 +#: sql_help.c:4004 msgid "index_expression" msgstr "expresión_de_índice" -#: sql_help.c:3999 +#: sql_help.c:4007 msgid "index_predicate" msgstr "predicado_de_índice" -#: sql_help.c:4001 +#: sql_help.c:4009 msgid "and conflict_action is one of:" msgstr "donde acción_de_conflict es una de:" -#: sql_help.c:4007 sql_help.c:4101 sql_help.c:4936 +#: sql_help.c:4015 sql_help.c:4109 sql_help.c:4944 msgid "sub-SELECT" msgstr "sub-SELECT" -#: sql_help.c:4016 sql_help.c:4142 sql_help.c:4912 +#: sql_help.c:4024 sql_help.c:4150 sql_help.c:4920 msgid "channel" msgstr "canal" -#: sql_help.c:4038 +#: sql_help.c:4046 msgid "lockmode" msgstr "modo_bloqueo" -#: sql_help.c:4039 +#: sql_help.c:4047 msgid "where lockmode is one of:" msgstr "donde modo_bloqueo es uno de:" -#: sql_help.c:4077 +#: sql_help.c:4085 msgid "target_table_name" msgstr "nombre_de_tabla_destino" -#: sql_help.c:4078 +#: sql_help.c:4086 msgid "target_alias" msgstr "alias_de_destino" -#: sql_help.c:4079 +#: sql_help.c:4087 msgid "data_source" msgstr "origin_de_datos" -#: sql_help.c:4080 sql_help.c:4607 sql_help.c:4864 sql_help.c:5102 +#: sql_help.c:4088 sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 msgid "join_condition" msgstr "condición_de_join" -#: sql_help.c:4081 +#: sql_help.c:4089 msgid "when_clause" msgstr "cláusula_when" -#: sql_help.c:4082 +#: sql_help.c:4090 msgid "where data_source is:" msgstr "donde origen_de_datos es:" -#: sql_help.c:4083 +#: sql_help.c:4091 msgid "source_table_name" msgstr "nombre_tabla_origen" -#: sql_help.c:4084 +#: sql_help.c:4092 msgid "source_query" msgstr "consulta_origen" -#: sql_help.c:4085 +#: sql_help.c:4093 msgid "source_alias" msgstr "alias_origen" -#: sql_help.c:4086 +#: sql_help.c:4094 msgid "and when_clause is:" msgstr "y cláusula_when es:" -#: sql_help.c:4088 +#: sql_help.c:4096 msgid "merge_update" msgstr "update_de_merge" -#: sql_help.c:4089 +#: sql_help.c:4097 msgid "merge_delete" msgstr "delete_de_merge" -#: sql_help.c:4091 +#: sql_help.c:4099 msgid "merge_insert" msgstr "insert_de_merge" -#: sql_help.c:4092 +#: sql_help.c:4100 msgid "and merge_insert is:" msgstr "y insert_de_merge es:" -#: sql_help.c:4095 +#: sql_help.c:4103 msgid "and merge_update is:" msgstr "y update_de_merge es:" -#: sql_help.c:4102 +#: sql_help.c:4110 msgid "and merge_delete is:" msgstr "y delete_de_merge es:" -#: sql_help.c:4143 +#: sql_help.c:4151 msgid "payload" msgstr "carga" -#: sql_help.c:4170 +#: sql_help.c:4178 msgid "old_role" msgstr "rol_antiguo" -#: sql_help.c:4171 +#: sql_help.c:4179 msgid "new_role" msgstr "rol_nuevo" -#: sql_help.c:4207 sql_help.c:4416 sql_help.c:4424 +#: sql_help.c:4215 sql_help.c:4424 sql_help.c:4432 msgid "savepoint_name" msgstr "nombre_de_savepoint" -#: sql_help.c:4564 sql_help.c:4622 sql_help.c:4821 sql_help.c:4879 -#: sql_help.c:5059 sql_help.c:5117 +#: sql_help.c:4572 sql_help.c:4630 sql_help.c:4829 sql_help.c:4887 +#: sql_help.c:5067 sql_help.c:5125 msgid "grouping_element" msgstr "elemento_agrupante" -#: sql_help.c:4566 sql_help.c:4669 sql_help.c:4823 sql_help.c:5061 +#: sql_help.c:4574 sql_help.c:4677 sql_help.c:4831 sql_help.c:5069 msgid "window_name" msgstr "nombre_de_ventana" -#: sql_help.c:4567 sql_help.c:4670 sql_help.c:4824 sql_help.c:5062 +#: sql_help.c:4575 sql_help.c:4678 sql_help.c:4832 sql_help.c:5070 msgid "window_definition" msgstr "definición_de_ventana" -#: sql_help.c:4568 sql_help.c:4582 sql_help.c:4626 sql_help.c:4671 -#: sql_help.c:4825 sql_help.c:4839 sql_help.c:4883 sql_help.c:5063 -#: sql_help.c:5077 sql_help.c:5121 +#: sql_help.c:4576 sql_help.c:4590 sql_help.c:4634 sql_help.c:4679 +#: sql_help.c:4833 sql_help.c:4847 sql_help.c:4891 sql_help.c:5071 +#: sql_help.c:5085 sql_help.c:5129 msgid "select" msgstr "select" -#: sql_help.c:4575 sql_help.c:4832 sql_help.c:5070 +#: sql_help.c:4583 sql_help.c:4840 sql_help.c:5078 msgid "where from_item can be one of:" msgstr "donde item_de_from puede ser uno de:" -#: sql_help.c:4578 sql_help.c:4584 sql_help.c:4587 sql_help.c:4591 -#: sql_help.c:4603 sql_help.c:4835 sql_help.c:4841 sql_help.c:4844 -#: sql_help.c:4848 sql_help.c:4860 sql_help.c:5073 sql_help.c:5079 -#: sql_help.c:5082 sql_help.c:5086 sql_help.c:5098 +#: sql_help.c:4586 sql_help.c:4592 sql_help.c:4595 sql_help.c:4599 +#: sql_help.c:4611 sql_help.c:4843 sql_help.c:4849 sql_help.c:4852 +#: sql_help.c:4856 sql_help.c:4868 sql_help.c:5081 sql_help.c:5087 +#: sql_help.c:5090 sql_help.c:5094 sql_help.c:5106 msgid "column_alias" msgstr "alias_de_columna" -#: sql_help.c:4579 sql_help.c:4836 sql_help.c:5074 +#: sql_help.c:4587 sql_help.c:4844 sql_help.c:5082 msgid "sampling_method" msgstr "método_de_sampleo" -#: sql_help.c:4581 sql_help.c:4838 sql_help.c:5076 +#: sql_help.c:4589 sql_help.c:4846 sql_help.c:5084 msgid "seed" msgstr "semilla" -#: sql_help.c:4585 sql_help.c:4624 sql_help.c:4842 sql_help.c:4881 -#: sql_help.c:5080 sql_help.c:5119 +#: sql_help.c:4593 sql_help.c:4632 sql_help.c:4850 sql_help.c:4889 +#: sql_help.c:5088 sql_help.c:5127 msgid "with_query_name" msgstr "nombre_consulta_with" -#: sql_help.c:4595 sql_help.c:4598 sql_help.c:4601 sql_help.c:4852 -#: sql_help.c:4855 sql_help.c:4858 sql_help.c:5090 sql_help.c:5093 -#: sql_help.c:5096 +#: sql_help.c:4603 sql_help.c:4606 sql_help.c:4609 sql_help.c:4860 +#: sql_help.c:4863 sql_help.c:4866 sql_help.c:5098 sql_help.c:5101 +#: sql_help.c:5104 msgid "column_definition" msgstr "definición_de_columna" -#: sql_help.c:4605 sql_help.c:4611 sql_help.c:4862 sql_help.c:4868 -#: sql_help.c:5100 sql_help.c:5106 +#: sql_help.c:4613 sql_help.c:4619 sql_help.c:4870 sql_help.c:4876 +#: sql_help.c:5108 sql_help.c:5114 msgid "join_type" msgstr "tipo_de_join" -#: sql_help.c:4608 sql_help.c:4865 sql_help.c:5103 +#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 msgid "join_column" msgstr "columna_de_join" -#: sql_help.c:4609 sql_help.c:4866 sql_help.c:5104 +#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 msgid "join_using_alias" msgstr "join_con_alias" -#: sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 +#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 msgid "and grouping_element can be one of:" msgstr "donde elemento_agrupante puede ser una de:" -#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 +#: sql_help.c:4631 sql_help.c:4888 sql_help.c:5126 msgid "and with_query is:" msgstr "y consulta_with es:" -#: sql_help.c:4627 sql_help.c:4884 sql_help.c:5122 +#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 msgid "values" msgstr "valores" -#: sql_help.c:4628 sql_help.c:4885 sql_help.c:5123 +#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 msgid "insert" msgstr "insert" -#: sql_help.c:4629 sql_help.c:4886 sql_help.c:5124 +#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 msgid "update" msgstr "update" -#: sql_help.c:4630 sql_help.c:4887 sql_help.c:5125 +#: sql_help.c:4638 sql_help.c:4895 sql_help.c:5133 msgid "delete" msgstr "delete" -#: sql_help.c:4632 sql_help.c:4889 sql_help.c:5127 +#: sql_help.c:4640 sql_help.c:4897 sql_help.c:5135 msgid "search_seq_col_name" msgstr "nombre_col_para_sec_de_búsqueda" -#: sql_help.c:4634 sql_help.c:4891 sql_help.c:5129 +#: sql_help.c:4642 sql_help.c:4899 sql_help.c:5137 msgid "cycle_mark_col_name" msgstr "nombre_col_para_marca_de_ciclo" -#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 +#: sql_help.c:4643 sql_help.c:4900 sql_help.c:5138 msgid "cycle_mark_value" msgstr "valor_marca_de_ciclo" -#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 +#: sql_help.c:4644 sql_help.c:4901 sql_help.c:5139 msgid "cycle_mark_default" msgstr "valor_predet_marca_de_ciclo" -#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 +#: sql_help.c:4645 sql_help.c:4902 sql_help.c:5140 msgid "cycle_path_col_name" msgstr "nombre_col_para_ruta_de_ciclo" -#: sql_help.c:4664 +#: sql_help.c:4672 msgid "new_table" msgstr "nueva_tabla" -#: sql_help.c:4735 +#: sql_help.c:4743 msgid "snapshot_id" msgstr "id_de_snapshot" -#: sql_help.c:4995 +#: sql_help.c:5003 msgid "sort_expression" msgstr "expresión_orden" -#: sql_help.c:5139 sql_help.c:6123 +#: sql_help.c:5147 sql_help.c:6131 msgid "abort the current transaction" msgstr "aborta la transacción en curso" -#: sql_help.c:5145 +#: sql_help.c:5153 msgid "change the definition of an aggregate function" msgstr "cambia la definición de una función de agregación" -#: sql_help.c:5151 +#: sql_help.c:5159 msgid "change the definition of a collation" msgstr "cambia la definición de un ordenamiento" -#: sql_help.c:5157 +#: sql_help.c:5165 msgid "change the definition of a conversion" msgstr "cambia la definición de una conversión" -#: sql_help.c:5163 +#: sql_help.c:5171 msgid "change a database" msgstr "cambia una base de datos" -#: sql_help.c:5169 +#: sql_help.c:5177 msgid "define default access privileges" msgstr "define privilegios de acceso por omisión" -#: sql_help.c:5175 +#: sql_help.c:5183 msgid "change the definition of a domain" msgstr "cambia la definición de un dominio" -#: sql_help.c:5181 +#: sql_help.c:5189 msgid "change the definition of an event trigger" msgstr "cambia la definición de un disparador por evento" -#: sql_help.c:5187 +#: sql_help.c:5195 msgid "change the definition of an extension" msgstr "cambia la definición de una extensión" -#: sql_help.c:5193 +#: sql_help.c:5201 msgid "change the definition of a foreign-data wrapper" msgstr "cambia la definición de un conector de datos externos" -#: sql_help.c:5199 +#: sql_help.c:5207 msgid "change the definition of a foreign table" msgstr "cambia la definición de una tabla foránea" -#: sql_help.c:5205 +#: sql_help.c:5213 msgid "change the definition of a function" msgstr "cambia la definición de una función" -#: sql_help.c:5211 +#: sql_help.c:5219 msgid "change role name or membership" msgstr "cambiar nombre del rol o membresía" -#: sql_help.c:5217 +#: sql_help.c:5225 msgid "change the definition of an index" msgstr "cambia la definición de un índice" -#: sql_help.c:5223 +#: sql_help.c:5231 msgid "change the definition of a procedural language" msgstr "cambia la definición de un lenguaje procedural" -#: sql_help.c:5229 +#: sql_help.c:5237 msgid "change the definition of a large object" msgstr "cambia la definición de un objeto grande" -#: sql_help.c:5235 +#: sql_help.c:5243 msgid "change the definition of a materialized view" msgstr "cambia la definición de una vista materializada" -#: sql_help.c:5241 +#: sql_help.c:5249 msgid "change the definition of an operator" msgstr "cambia la definición de un operador" -#: sql_help.c:5247 +#: sql_help.c:5255 msgid "change the definition of an operator class" msgstr "cambia la definición de una clase de operadores" -#: sql_help.c:5253 +#: sql_help.c:5261 msgid "change the definition of an operator family" msgstr "cambia la definición de una familia de operadores" -#: sql_help.c:5259 +#: sql_help.c:5267 msgid "change the definition of a row-level security policy" msgstr "cambia la definición de una política de seguridad a nivel de registros" -#: sql_help.c:5265 +#: sql_help.c:5273 msgid "change the definition of a procedure" msgstr "cambia la definición de un procedimiento" -#: sql_help.c:5271 +#: sql_help.c:5279 msgid "change the definition of a publication" msgstr "cambia la definición de una publicación" -#: sql_help.c:5277 sql_help.c:5379 +#: sql_help.c:5285 sql_help.c:5387 msgid "change a database role" msgstr "cambia un rol de la base de datos" -#: sql_help.c:5283 +#: sql_help.c:5291 msgid "change the definition of a routine" msgstr "cambia la definición de una rutina" -#: sql_help.c:5289 +#: sql_help.c:5297 msgid "change the definition of a rule" msgstr "cambia la definición de una regla" -#: sql_help.c:5295 +#: sql_help.c:5303 msgid "change the definition of a schema" msgstr "cambia la definición de un esquema" -#: sql_help.c:5301 +#: sql_help.c:5309 msgid "change the definition of a sequence generator" msgstr "cambia la definición de un generador secuencial" -#: sql_help.c:5307 +#: sql_help.c:5315 msgid "change the definition of a foreign server" msgstr "cambia la definición de un servidor foráneo" -#: sql_help.c:5313 +#: sql_help.c:5321 msgid "change the definition of an extended statistics object" msgstr "cambia la definición de un objeto de estadísticas extendidas" -#: sql_help.c:5319 +#: sql_help.c:5327 msgid "change the definition of a subscription" msgstr "cambia la definición de una suscripción" -#: sql_help.c:5325 +#: sql_help.c:5333 msgid "change a server configuration parameter" msgstr "cambia un parámetro de configuración del servidor" -#: sql_help.c:5331 +#: sql_help.c:5339 msgid "change the definition of a table" msgstr "cambia la definición de una tabla" -#: sql_help.c:5337 +#: sql_help.c:5345 msgid "change the definition of a tablespace" msgstr "cambia la definición de un tablespace" -#: sql_help.c:5343 +#: sql_help.c:5351 msgid "change the definition of a text search configuration" msgstr "cambia la definición de una configuración de búsqueda en texto" -#: sql_help.c:5349 +#: sql_help.c:5357 msgid "change the definition of a text search dictionary" msgstr "cambia la definición de un diccionario de búsqueda en texto" -#: sql_help.c:5355 +#: sql_help.c:5363 msgid "change the definition of a text search parser" msgstr "cambia la definición de un analizador de búsqueda en texto" -#: sql_help.c:5361 +#: sql_help.c:5369 msgid "change the definition of a text search template" msgstr "cambia la definición de una plantilla de búsqueda en texto" -#: sql_help.c:5367 +#: sql_help.c:5375 msgid "change the definition of a trigger" msgstr "cambia la definición de un disparador" -#: sql_help.c:5373 +#: sql_help.c:5381 msgid "change the definition of a type" msgstr "cambia la definición de un tipo" -#: sql_help.c:5385 +#: sql_help.c:5393 msgid "change the definition of a user mapping" msgstr "cambia la definición de un mapeo de usuario" -#: sql_help.c:5391 +#: sql_help.c:5399 msgid "change the definition of a view" msgstr "cambia la definición de una vista" -#: sql_help.c:5397 +#: sql_help.c:5405 msgid "collect statistics about a database" msgstr "recolecta estadísticas sobre una base de datos" -#: sql_help.c:5403 sql_help.c:6201 +#: sql_help.c:5411 sql_help.c:6209 msgid "start a transaction block" msgstr "inicia un bloque de transacción" -#: sql_help.c:5409 +#: sql_help.c:5417 msgid "invoke a procedure" msgstr "invocar un procedimiento" -#: sql_help.c:5415 +#: sql_help.c:5423 msgid "force a write-ahead log checkpoint" msgstr "fuerza un checkpoint de wal" -#: sql_help.c:5421 +#: sql_help.c:5429 msgid "close a cursor" msgstr "cierra un cursor" -#: sql_help.c:5427 +#: sql_help.c:5435 msgid "cluster a table according to an index" msgstr "reordena una tabla siguiendo un índice" -#: sql_help.c:5433 +#: sql_help.c:5441 msgid "define or change the comment of an object" msgstr "define o cambia un comentario sobre un objeto" -#: sql_help.c:5439 sql_help.c:5997 +#: sql_help.c:5447 sql_help.c:6005 msgid "commit the current transaction" msgstr "compromete la transacción en curso" -#: sql_help.c:5445 +#: sql_help.c:5453 msgid "commit a transaction that was earlier prepared for two-phase commit" msgstr "confirma una transacción que fue preparada para two-phase commit" -#: sql_help.c:5451 +#: sql_help.c:5459 msgid "copy data between a file and a table" msgstr "copia datos entre un archivo y una tabla" -#: sql_help.c:5457 +#: sql_help.c:5465 msgid "define a new access method" msgstr "define un nuevo método de acceso" -#: sql_help.c:5463 +#: sql_help.c:5471 msgid "define a new aggregate function" msgstr "define una nueva función de agregación" -#: sql_help.c:5469 +#: sql_help.c:5477 msgid "define a new cast" msgstr "define una nueva conversión de tipo" -#: sql_help.c:5475 +#: sql_help.c:5483 msgid "define a new collation" msgstr "define un nuevo ordenamiento" -#: sql_help.c:5481 +#: sql_help.c:5489 msgid "define a new encoding conversion" msgstr "define una nueva conversión de codificación" -#: sql_help.c:5487 +#: sql_help.c:5495 msgid "create a new database" msgstr "crea una nueva base de datos" -#: sql_help.c:5493 +#: sql_help.c:5501 msgid "define a new domain" msgstr "define un nuevo dominio" -#: sql_help.c:5499 +#: sql_help.c:5507 msgid "define a new event trigger" msgstr "define un nuevo disparador por evento" -#: sql_help.c:5505 +#: sql_help.c:5513 msgid "install an extension" msgstr "instala una extensión" -#: sql_help.c:5511 +#: sql_help.c:5519 msgid "define a new foreign-data wrapper" msgstr "define un nuevo conector de datos externos" -#: sql_help.c:5517 +#: sql_help.c:5525 msgid "define a new foreign table" msgstr "define una nueva tabla foránea" -#: sql_help.c:5523 +#: sql_help.c:5531 msgid "define a new function" msgstr "define una nueva función" -#: sql_help.c:5529 sql_help.c:5589 sql_help.c:5691 +#: sql_help.c:5537 sql_help.c:5597 sql_help.c:5699 msgid "define a new database role" msgstr "define un nuevo rol de la base de datos" -#: sql_help.c:5535 +#: sql_help.c:5543 msgid "define a new index" msgstr "define un nuevo índice" -#: sql_help.c:5541 +#: sql_help.c:5549 msgid "define a new procedural language" msgstr "define un nuevo lenguaje procedural" -#: sql_help.c:5547 +#: sql_help.c:5555 msgid "define a new materialized view" msgstr "define una nueva vista materializada" -#: sql_help.c:5553 +#: sql_help.c:5561 msgid "define a new operator" msgstr "define un nuevo operador" -#: sql_help.c:5559 +#: sql_help.c:5567 msgid "define a new operator class" msgstr "define una nueva clase de operadores" -#: sql_help.c:5565 +#: sql_help.c:5573 msgid "define a new operator family" msgstr "define una nueva familia de operadores" -#: sql_help.c:5571 +#: sql_help.c:5579 msgid "define a new row-level security policy for a table" msgstr "define una nueva política de seguridad a nivel de registros para una tabla" -#: sql_help.c:5577 +#: sql_help.c:5585 msgid "define a new procedure" msgstr "define un nuevo procedimiento" -#: sql_help.c:5583 +#: sql_help.c:5591 msgid "define a new publication" msgstr "define una nueva publicación" -#: sql_help.c:5595 +#: sql_help.c:5603 msgid "define a new rewrite rule" msgstr "define una nueva regla de reescritura" -#: sql_help.c:5601 +#: sql_help.c:5609 msgid "define a new schema" msgstr "define un nuevo esquema" -#: sql_help.c:5607 +#: sql_help.c:5615 msgid "define a new sequence generator" msgstr "define un nuevo generador secuencial" -#: sql_help.c:5613 +#: sql_help.c:5621 msgid "define a new foreign server" msgstr "define un nuevo servidor foráneo" -#: sql_help.c:5619 +#: sql_help.c:5627 msgid "define extended statistics" msgstr "define estadísticas extendidas" -#: sql_help.c:5625 +#: sql_help.c:5633 msgid "define a new subscription" msgstr "define una nueva suscripción" -#: sql_help.c:5631 +#: sql_help.c:5639 msgid "define a new table" msgstr "define una nueva tabla" -#: sql_help.c:5637 sql_help.c:6159 +#: sql_help.c:5645 sql_help.c:6167 msgid "define a new table from the results of a query" msgstr "crea una nueva tabla usando los resultados de una consulta" -#: sql_help.c:5643 +#: sql_help.c:5651 msgid "define a new tablespace" msgstr "define un nuevo tablespace" -#: sql_help.c:5649 +#: sql_help.c:5657 msgid "define a new text search configuration" msgstr "define una nueva configuración de búsqueda en texto" -#: sql_help.c:5655 +#: sql_help.c:5663 msgid "define a new text search dictionary" msgstr "define un nuevo diccionario de búsqueda en texto" -#: sql_help.c:5661 +#: sql_help.c:5669 msgid "define a new text search parser" msgstr "define un nuevo analizador de búsqueda en texto" -#: sql_help.c:5667 +#: sql_help.c:5675 msgid "define a new text search template" msgstr "define una nueva plantilla de búsqueda en texto" -#: sql_help.c:5673 +#: sql_help.c:5681 msgid "define a new transform" msgstr "define una nueva transformación" -#: sql_help.c:5679 +#: sql_help.c:5687 msgid "define a new trigger" msgstr "define un nuevo disparador" -#: sql_help.c:5685 +#: sql_help.c:5693 msgid "define a new data type" msgstr "define un nuevo tipo de datos" -#: sql_help.c:5697 +#: sql_help.c:5705 msgid "define a new mapping of a user to a foreign server" msgstr "define un nuevo mapa de usuario a servidor foráneo" -#: sql_help.c:5703 +#: sql_help.c:5711 msgid "define a new view" msgstr "define una nueva vista" -#: sql_help.c:5709 +#: sql_help.c:5717 msgid "deallocate a prepared statement" msgstr "elimina una sentencia preparada" -#: sql_help.c:5715 +#: sql_help.c:5723 msgid "define a cursor" msgstr "define un nuevo cursor" -#: sql_help.c:5721 +#: sql_help.c:5729 msgid "delete rows of a table" msgstr "elimina filas de una tabla" -#: sql_help.c:5727 +#: sql_help.c:5735 msgid "discard session state" msgstr "descartar datos de la sesión" -#: sql_help.c:5733 +#: sql_help.c:5741 msgid "execute an anonymous code block" msgstr "ejecutar un bloque anónimo de código" -#: sql_help.c:5739 +#: sql_help.c:5747 msgid "remove an access method" msgstr "elimina un método de acceso" -#: sql_help.c:5745 +#: sql_help.c:5753 msgid "remove an aggregate function" msgstr "elimina una función de agregación" -#: sql_help.c:5751 +#: sql_help.c:5759 msgid "remove a cast" msgstr "elimina una conversión de tipo" -#: sql_help.c:5757 +#: sql_help.c:5765 msgid "remove a collation" msgstr "elimina un ordenamiento" -#: sql_help.c:5763 +#: sql_help.c:5771 msgid "remove a conversion" msgstr "elimina una conversión de codificación" -#: sql_help.c:5769 +#: sql_help.c:5777 msgid "remove a database" msgstr "elimina una base de datos" -#: sql_help.c:5775 +#: sql_help.c:5783 msgid "remove a domain" msgstr "elimina un dominio" -#: sql_help.c:5781 +#: sql_help.c:5789 msgid "remove an event trigger" msgstr "elimina un disparador por evento" -#: sql_help.c:5787 +#: sql_help.c:5795 msgid "remove an extension" msgstr "elimina una extensión" -#: sql_help.c:5793 +#: sql_help.c:5801 msgid "remove a foreign-data wrapper" msgstr "elimina un conector de datos externos" -#: sql_help.c:5799 +#: sql_help.c:5807 msgid "remove a foreign table" msgstr "elimina una tabla foránea" -#: sql_help.c:5805 +#: sql_help.c:5813 msgid "remove a function" msgstr "elimina una función" -#: sql_help.c:5811 sql_help.c:5877 sql_help.c:5979 +#: sql_help.c:5819 sql_help.c:5885 sql_help.c:5987 msgid "remove a database role" msgstr "elimina un rol de base de datos" -#: sql_help.c:5817 +#: sql_help.c:5825 msgid "remove an index" msgstr "elimina un índice" -#: sql_help.c:5823 +#: sql_help.c:5831 msgid "remove a procedural language" msgstr "elimina un lenguaje procedural" -#: sql_help.c:5829 +#: sql_help.c:5837 msgid "remove a materialized view" msgstr "elimina una vista materializada" -#: sql_help.c:5835 +#: sql_help.c:5843 msgid "remove an operator" msgstr "elimina un operador" -#: sql_help.c:5841 +#: sql_help.c:5849 msgid "remove an operator class" msgstr "elimina una clase de operadores" -#: sql_help.c:5847 +#: sql_help.c:5855 msgid "remove an operator family" msgstr "elimina una familia de operadores" -#: sql_help.c:5853 +#: sql_help.c:5861 msgid "remove database objects owned by a database role" msgstr "elimina objetos de propiedad de un rol de la base de datos" -#: sql_help.c:5859 +#: sql_help.c:5867 msgid "remove a row-level security policy from a table" msgstr "elimina una política de seguridad a nivel de registros de una tabla" -#: sql_help.c:5865 +#: sql_help.c:5873 msgid "remove a procedure" msgstr "elimina un procedimiento" -#: sql_help.c:5871 +#: sql_help.c:5879 msgid "remove a publication" msgstr "elimina una publicación" -#: sql_help.c:5883 +#: sql_help.c:5891 msgid "remove a routine" msgstr "elimina una rutina" -#: sql_help.c:5889 +#: sql_help.c:5897 msgid "remove a rewrite rule" msgstr "elimina una regla de reescritura" -#: sql_help.c:5895 +#: sql_help.c:5903 msgid "remove a schema" msgstr "elimina un esquema" -#: sql_help.c:5901 +#: sql_help.c:5909 msgid "remove a sequence" msgstr "elimina un generador secuencial" -#: sql_help.c:5907 +#: sql_help.c:5915 msgid "remove a foreign server descriptor" msgstr "elimina un descriptor de servidor foráneo" -#: sql_help.c:5913 +#: sql_help.c:5921 msgid "remove extended statistics" msgstr "elimina estadísticas extendidas" -#: sql_help.c:5919 +#: sql_help.c:5927 msgid "remove a subscription" msgstr "elimina una suscripción" -#: sql_help.c:5925 +#: sql_help.c:5933 msgid "remove a table" msgstr "elimina una tabla" -#: sql_help.c:5931 +#: sql_help.c:5939 msgid "remove a tablespace" msgstr "elimina un tablespace" -#: sql_help.c:5937 +#: sql_help.c:5945 msgid "remove a text search configuration" msgstr "elimina una configuración de búsqueda en texto" -#: sql_help.c:5943 +#: sql_help.c:5951 msgid "remove a text search dictionary" msgstr "elimina un diccionario de búsqueda en texto" -#: sql_help.c:5949 +#: sql_help.c:5957 msgid "remove a text search parser" msgstr "elimina un analizador de búsqueda en texto" -#: sql_help.c:5955 +#: sql_help.c:5963 msgid "remove a text search template" msgstr "elimina una plantilla de búsqueda en texto" -#: sql_help.c:5961 +#: sql_help.c:5969 msgid "remove a transform" msgstr "elimina una transformación" -#: sql_help.c:5967 +#: sql_help.c:5975 msgid "remove a trigger" msgstr "elimina un disparador" -#: sql_help.c:5973 +#: sql_help.c:5981 msgid "remove a data type" msgstr "elimina un tipo de datos" -#: sql_help.c:5985 +#: sql_help.c:5993 msgid "remove a user mapping for a foreign server" msgstr "elimina un mapeo de usuario para un servidor remoto" -#: sql_help.c:5991 +#: sql_help.c:5999 msgid "remove a view" msgstr "elimina una vista" -#: sql_help.c:6003 +#: sql_help.c:6011 msgid "execute a prepared statement" msgstr "ejecuta una sentencia preparada" -#: sql_help.c:6009 +#: sql_help.c:6017 msgid "show the execution plan of a statement" msgstr "muestra el plan de ejecución de una sentencia" -#: sql_help.c:6015 +#: sql_help.c:6023 msgid "retrieve rows from a query using a cursor" msgstr "recupera filas de una consulta usando un cursor" -#: sql_help.c:6021 +#: sql_help.c:6029 msgid "define access privileges" msgstr "define privilegios de acceso" -#: sql_help.c:6027 +#: sql_help.c:6035 msgid "import table definitions from a foreign server" msgstr "importa definiciones de tablas desde un servidor foráneo" -#: sql_help.c:6033 +#: sql_help.c:6041 msgid "create new rows in a table" msgstr "crea nuevas filas en una tabla" -#: sql_help.c:6039 +#: sql_help.c:6047 msgid "listen for a notification" msgstr "escucha notificaciones" -#: sql_help.c:6045 +#: sql_help.c:6053 msgid "load a shared library file" msgstr "carga un archivo de biblioteca compartida" -#: sql_help.c:6051 +#: sql_help.c:6059 msgid "lock a table" msgstr "bloquea una tabla" -#: sql_help.c:6057 +#: sql_help.c:6065 msgid "conditionally insert, update, or delete rows of a table" msgstr "condicionalmente inserta, actualiza o elimina filas de una tabla" -#: sql_help.c:6063 +#: sql_help.c:6071 msgid "position a cursor" msgstr "reposiciona un cursor" -#: sql_help.c:6069 +#: sql_help.c:6077 msgid "generate a notification" msgstr "genera una notificación" -#: sql_help.c:6075 +#: sql_help.c:6083 msgid "prepare a statement for execution" msgstr "prepara una sentencia para ejecución" -#: sql_help.c:6081 +#: sql_help.c:6089 msgid "prepare the current transaction for two-phase commit" msgstr "prepara la transacción actual para two-phase commit" -#: sql_help.c:6087 +#: sql_help.c:6095 msgid "change the ownership of database objects owned by a database role" msgstr "cambia de dueño a los objetos de propiedad de un rol de la base de datos" -#: sql_help.c:6093 +#: sql_help.c:6101 msgid "replace the contents of a materialized view" msgstr "reemplaza los contenidos de una vista materializada" -#: sql_help.c:6099 +#: sql_help.c:6107 msgid "rebuild indexes" msgstr "reconstruye índices" -#: sql_help.c:6105 +#: sql_help.c:6113 msgid "destroy a previously defined savepoint" msgstr "destruye un savepoint previamente definido" -#: sql_help.c:6111 +#: sql_help.c:6119 msgid "restore the value of a run-time parameter to the default value" msgstr "restaura el valor de un parámetro de configuración al valor inicial" -#: sql_help.c:6117 +#: sql_help.c:6125 msgid "remove access privileges" msgstr "revoca privilegios de acceso" -#: sql_help.c:6129 +#: sql_help.c:6137 msgid "cancel a transaction that was earlier prepared for two-phase commit" msgstr "cancela una transacción que fue previamente preparada para two-phase commit" -#: sql_help.c:6135 +#: sql_help.c:6143 msgid "roll back to a savepoint" msgstr "descartar hacia un savepoint" -#: sql_help.c:6141 +#: sql_help.c:6149 msgid "define a new savepoint within the current transaction" msgstr "define un nuevo savepoint en la transacción en curso" -#: sql_help.c:6147 +#: sql_help.c:6155 msgid "define or change a security label applied to an object" msgstr "define o cambia una etiqueta de seguridad sobre un objeto" -#: sql_help.c:6153 sql_help.c:6207 sql_help.c:6243 +#: sql_help.c:6161 sql_help.c:6215 sql_help.c:6251 msgid "retrieve rows from a table or view" msgstr "recupera filas desde una tabla o vista" -#: sql_help.c:6165 +#: sql_help.c:6173 msgid "change a run-time parameter" msgstr "cambia un parámetro de configuración" -#: sql_help.c:6171 +#: sql_help.c:6179 msgid "set constraint check timing for the current transaction" msgstr "define el modo de verificación de las restricciones de la transacción en curso" -#: sql_help.c:6177 +#: sql_help.c:6185 msgid "set the current user identifier of the current session" msgstr "define el identificador de usuario actual de la sesión actual" -#: sql_help.c:6183 +#: sql_help.c:6191 msgid "set the session user identifier and the current user identifier of the current session" msgstr "" "define el identificador del usuario de sesión y el identificador\n" "del usuario actual de la sesión en curso" -#: sql_help.c:6189 +#: sql_help.c:6197 msgid "set the characteristics of the current transaction" msgstr "define las características de la transacción en curso" -#: sql_help.c:6195 +#: sql_help.c:6203 msgid "show the value of a run-time parameter" msgstr "muestra el valor de un parámetro de configuración" -#: sql_help.c:6213 +#: sql_help.c:6221 msgid "empty a table or set of tables" msgstr "vacía una tabla o conjunto de tablas" -#: sql_help.c:6219 +#: sql_help.c:6227 msgid "stop listening for a notification" msgstr "deja de escuchar una notificación" -#: sql_help.c:6225 +#: sql_help.c:6233 msgid "update rows of a table" msgstr "actualiza filas de una tabla" -#: sql_help.c:6231 +#: sql_help.c:6239 msgid "garbage-collect and optionally analyze a database" msgstr "recolecta basura y opcionalmente estadísticas sobre una base de datos" -#: sql_help.c:6237 +#: sql_help.c:6245 msgid "compute a set of rows" msgstr "calcula un conjunto de registros" diff --git a/src/bin/psql/po/fr.po b/src/bin/psql/po/fr.po index 27003b22a86..0cd6799fbcb 100644 --- a/src/bin/psql/po/fr.po +++ b/src/bin/psql/po/fr.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2023-02-03 22:46+0000\n" -"PO-Revision-Date: 2023-02-05 17:29+0100\n" +"POT-Creation-Date: 2024-11-11 02:21+0000\n" +"PO-Revision-Date: 2024-11-11 09:57+0100\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -253,7 +253,7 @@ msgstr "Vous êtes connecté à la base de données « %s » en tant qu'utilisat msgid "no query buffer" msgstr "aucun tampon de requête" -#: command.c:1063 command.c:5491 +#: command.c:1063 command.c:5497 #, c-format msgid "invalid line number: %s" msgstr "numéro de ligne invalide : %s" @@ -267,10 +267,10 @@ msgstr "Aucun changement" msgid "%s: invalid encoding name or conversion procedure not found" msgstr "%s : nom d'encodage invalide ou procédure de conversion introuvable" -#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5597 +#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5603 #: common.c:181 common.c:230 common.c:399 common.c:1082 common.c:1100 #: common.c:1174 common.c:1281 common.c:1319 common.c:1407 common.c:1443 -#: copy.c:488 copy.c:722 help.c:66 large_obj.c:157 large_obj.c:192 +#: copy.c:488 copy.c:723 help.c:66 large_obj.c:157 large_obj.c:192 #: large_obj.c:254 startup.c:304 #, c-format msgid "%s" @@ -509,7 +509,7 @@ msgstr "n'a pas pu ouvrir le fichier temporaire « %s » : %m" #: command.c:4266 #, c-format msgid "\\pset: ambiguous abbreviation \"%s\" matches both \"%s\" and \"%s\"" -msgstr "\\pset: abréviation ambigüe : « %s » correspond à « %s » comme à « %s »" +msgstr "\\pset: abréviation ambiguë : « %s » correspond à « %s » comme à « %s »" #: command.c:4286 #, c-format @@ -728,22 +728,22 @@ msgstr "\\watch ne peut pas être utilisé avec une requête vide" msgid "could not set timer: %m" msgstr "n'a pas pu configurer le chronomètre : %m" -#: command.c:5078 +#: command.c:5084 #, c-format msgid "%s\t%s (every %gs)\n" msgstr "%s\t%s (chaque %gs)\n" -#: command.c:5081 +#: command.c:5087 #, c-format msgid "%s (every %gs)\n" msgstr "%s (chaque %gs)\n" -#: command.c:5142 +#: command.c:5148 #, c-format msgid "could not wait for signals: %m" msgstr "n'a pas pu attendre le signal : %m" -#: command.c:5200 command.c:5207 common.c:572 common.c:579 common.c:1063 +#: command.c:5206 command.c:5213 common.c:572 common.c:579 common.c:1063 #, c-format msgid "" "********* QUERY **********\n" @@ -756,12 +756,12 @@ msgstr "" "**************************\n" "\n" -#: command.c:5386 +#: command.c:5392 #, c-format msgid "\"%s.%s\" is not a view" msgstr "« %s.%s » n'est pas une vue" -#: command.c:5402 +#: command.c:5408 #, c-format msgid "could not parse reloptions array" msgstr "n'a pas pu analyser le tableau reloptions" @@ -959,11 +959,11 @@ msgstr "" "Saisissez les données à copier suivies d'un saut de ligne.\n" "Terminez avec un antislash et un point seuls sur une ligne ou un signal EOF." -#: copy.c:684 +#: copy.c:685 msgid "aborted because of read failure" msgstr "annulé du fait d'une erreur de lecture" -#: copy.c:718 +#: copy.c:719 msgid "trying to exit copy mode" msgstr "tente de sortir du mode copy" @@ -1622,7 +1622,7 @@ msgstr "Règles désactivées :" #: describe.c:2943 msgid "Rules firing always:" -msgstr "Règles toujous activées :" +msgstr "Règles toujours activées :" #: describe.c:2946 msgid "Rules firing on replica only:" @@ -2572,7 +2572,7 @@ msgid "" "Output format options:\n" msgstr "" "\n" -"Options de formattage de la sortie :\n" +"Options de formatage de la sortie :\n" #: help.c:113 msgid " -A, --no-align unaligned table output mode\n" @@ -2916,7 +2916,7 @@ msgstr "" #: help.c:246 msgid " \\da[S] [PATTERN] list aggregates\n" -msgstr " \\da[S] [MODÈLE] affiche les aggrégats\n" +msgstr " \\da[S] [MODÈLE] affiche les agrégats\n" #: help.c:247 msgid " \\dA[+] [PATTERN] list access methods\n" @@ -4081,2416 +4081,2422 @@ msgstr "%s : mémoire épuisée" #: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66 #: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85 #: sql_help.c:113 sql_help.c:119 sql_help.c:121 sql_help.c:123 sql_help.c:125 -#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:238 -#: sql_help.c:240 sql_help.c:241 sql_help.c:243 sql_help.c:245 sql_help.c:248 -#: sql_help.c:250 sql_help.c:252 sql_help.c:254 sql_help.c:266 sql_help.c:267 -#: sql_help.c:268 sql_help.c:270 sql_help.c:319 sql_help.c:321 sql_help.c:323 -#: sql_help.c:325 sql_help.c:394 sql_help.c:399 sql_help.c:401 sql_help.c:443 -#: sql_help.c:445 sql_help.c:448 sql_help.c:450 sql_help.c:519 sql_help.c:524 -#: sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:593 sql_help.c:595 -#: sql_help.c:597 sql_help.c:599 sql_help.c:601 sql_help.c:604 sql_help.c:606 -#: sql_help.c:609 sql_help.c:620 sql_help.c:622 sql_help.c:666 sql_help.c:668 -#: sql_help.c:670 sql_help.c:673 sql_help.c:675 sql_help.c:677 sql_help.c:714 -#: sql_help.c:718 sql_help.c:722 sql_help.c:741 sql_help.c:744 sql_help.c:747 -#: sql_help.c:776 sql_help.c:788 sql_help.c:796 sql_help.c:799 sql_help.c:802 -#: sql_help.c:817 sql_help.c:820 sql_help.c:849 sql_help.c:854 sql_help.c:859 -#: sql_help.c:864 sql_help.c:869 sql_help.c:896 sql_help.c:898 sql_help.c:900 -#: sql_help.c:902 sql_help.c:905 sql_help.c:907 sql_help.c:954 sql_help.c:999 -#: sql_help.c:1004 sql_help.c:1009 sql_help.c:1014 sql_help.c:1019 -#: sql_help.c:1038 sql_help.c:1049 sql_help.c:1051 sql_help.c:1071 -#: sql_help.c:1081 sql_help.c:1082 sql_help.c:1084 sql_help.c:1086 -#: sql_help.c:1098 sql_help.c:1102 sql_help.c:1104 sql_help.c:1116 -#: sql_help.c:1118 sql_help.c:1120 sql_help.c:1122 sql_help.c:1141 -#: sql_help.c:1143 sql_help.c:1147 sql_help.c:1151 sql_help.c:1155 -#: sql_help.c:1158 sql_help.c:1159 sql_help.c:1160 sql_help.c:1163 -#: sql_help.c:1166 sql_help.c:1168 sql_help.c:1308 sql_help.c:1310 -#: sql_help.c:1313 sql_help.c:1316 sql_help.c:1318 sql_help.c:1320 -#: sql_help.c:1323 sql_help.c:1326 sql_help.c:1443 sql_help.c:1445 -#: sql_help.c:1447 sql_help.c:1450 sql_help.c:1471 sql_help.c:1474 -#: sql_help.c:1477 sql_help.c:1480 sql_help.c:1484 sql_help.c:1486 -#: sql_help.c:1488 sql_help.c:1490 sql_help.c:1504 sql_help.c:1507 -#: sql_help.c:1509 sql_help.c:1511 sql_help.c:1521 sql_help.c:1523 -#: sql_help.c:1533 sql_help.c:1535 sql_help.c:1545 sql_help.c:1548 -#: sql_help.c:1571 sql_help.c:1573 sql_help.c:1575 sql_help.c:1577 -#: sql_help.c:1580 sql_help.c:1582 sql_help.c:1585 sql_help.c:1588 -#: sql_help.c:1639 sql_help.c:1682 sql_help.c:1685 sql_help.c:1687 -#: sql_help.c:1689 sql_help.c:1692 sql_help.c:1694 sql_help.c:1696 -#: sql_help.c:1699 sql_help.c:1749 sql_help.c:1765 sql_help.c:1996 -#: sql_help.c:2065 sql_help.c:2084 sql_help.c:2097 sql_help.c:2154 -#: sql_help.c:2161 sql_help.c:2171 sql_help.c:2197 sql_help.c:2228 -#: sql_help.c:2246 sql_help.c:2274 sql_help.c:2385 sql_help.c:2431 -#: sql_help.c:2456 sql_help.c:2479 sql_help.c:2483 sql_help.c:2517 -#: sql_help.c:2537 sql_help.c:2559 sql_help.c:2573 sql_help.c:2594 -#: sql_help.c:2623 sql_help.c:2658 sql_help.c:2683 sql_help.c:2730 -#: sql_help.c:3025 sql_help.c:3038 sql_help.c:3055 sql_help.c:3071 -#: sql_help.c:3111 sql_help.c:3165 sql_help.c:3169 sql_help.c:3171 -#: sql_help.c:3178 sql_help.c:3197 sql_help.c:3224 sql_help.c:3259 -#: sql_help.c:3271 sql_help.c:3280 sql_help.c:3324 sql_help.c:3338 -#: sql_help.c:3366 sql_help.c:3374 sql_help.c:3386 sql_help.c:3396 -#: sql_help.c:3404 sql_help.c:3412 sql_help.c:3420 sql_help.c:3428 -#: sql_help.c:3437 sql_help.c:3448 sql_help.c:3456 sql_help.c:3464 -#: sql_help.c:3472 sql_help.c:3480 sql_help.c:3490 sql_help.c:3499 -#: sql_help.c:3508 sql_help.c:3516 sql_help.c:3526 sql_help.c:3537 -#: sql_help.c:3545 sql_help.c:3554 sql_help.c:3565 sql_help.c:3574 -#: sql_help.c:3582 sql_help.c:3590 sql_help.c:3598 sql_help.c:3606 -#: sql_help.c:3614 sql_help.c:3622 sql_help.c:3630 sql_help.c:3638 -#: sql_help.c:3646 sql_help.c:3654 sql_help.c:3671 sql_help.c:3680 -#: sql_help.c:3688 sql_help.c:3705 sql_help.c:3720 sql_help.c:4030 -#: sql_help.c:4140 sql_help.c:4169 sql_help.c:4184 sql_help.c:4687 -#: sql_help.c:4735 sql_help.c:4893 +#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:245 +#: sql_help.c:247 sql_help.c:248 sql_help.c:250 sql_help.c:252 sql_help.c:255 +#: sql_help.c:257 sql_help.c:259 sql_help.c:261 sql_help.c:276 sql_help.c:277 +#: sql_help.c:278 sql_help.c:280 sql_help.c:329 sql_help.c:331 sql_help.c:333 +#: sql_help.c:335 sql_help.c:404 sql_help.c:409 sql_help.c:411 sql_help.c:453 +#: sql_help.c:455 sql_help.c:458 sql_help.c:460 sql_help.c:529 sql_help.c:534 +#: sql_help.c:539 sql_help.c:544 sql_help.c:549 sql_help.c:603 sql_help.c:605 +#: sql_help.c:607 sql_help.c:609 sql_help.c:611 sql_help.c:614 sql_help.c:616 +#: sql_help.c:619 sql_help.c:630 sql_help.c:632 sql_help.c:676 sql_help.c:678 +#: sql_help.c:680 sql_help.c:683 sql_help.c:685 sql_help.c:687 sql_help.c:724 +#: sql_help.c:728 sql_help.c:732 sql_help.c:751 sql_help.c:754 sql_help.c:757 +#: sql_help.c:786 sql_help.c:798 sql_help.c:806 sql_help.c:809 sql_help.c:812 +#: sql_help.c:827 sql_help.c:830 sql_help.c:859 sql_help.c:864 sql_help.c:869 +#: sql_help.c:874 sql_help.c:879 sql_help.c:906 sql_help.c:908 sql_help.c:910 +#: sql_help.c:912 sql_help.c:915 sql_help.c:917 sql_help.c:964 sql_help.c:1009 +#: sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 sql_help.c:1029 +#: sql_help.c:1048 sql_help.c:1059 sql_help.c:1061 sql_help.c:1081 +#: sql_help.c:1091 sql_help.c:1092 sql_help.c:1094 sql_help.c:1096 +#: sql_help.c:1108 sql_help.c:1112 sql_help.c:1114 sql_help.c:1126 +#: sql_help.c:1128 sql_help.c:1130 sql_help.c:1132 sql_help.c:1151 +#: sql_help.c:1153 sql_help.c:1157 sql_help.c:1161 sql_help.c:1165 +#: sql_help.c:1168 sql_help.c:1169 sql_help.c:1170 sql_help.c:1173 +#: sql_help.c:1176 sql_help.c:1178 sql_help.c:1317 sql_help.c:1319 +#: sql_help.c:1322 sql_help.c:1325 sql_help.c:1327 sql_help.c:1329 +#: sql_help.c:1332 sql_help.c:1335 sql_help.c:1455 sql_help.c:1457 +#: sql_help.c:1459 sql_help.c:1462 sql_help.c:1483 sql_help.c:1486 +#: sql_help.c:1489 sql_help.c:1492 sql_help.c:1496 sql_help.c:1498 +#: sql_help.c:1500 sql_help.c:1502 sql_help.c:1516 sql_help.c:1519 +#: sql_help.c:1521 sql_help.c:1523 sql_help.c:1533 sql_help.c:1535 +#: sql_help.c:1545 sql_help.c:1547 sql_help.c:1557 sql_help.c:1560 +#: sql_help.c:1583 sql_help.c:1585 sql_help.c:1587 sql_help.c:1589 +#: sql_help.c:1592 sql_help.c:1594 sql_help.c:1597 sql_help.c:1600 +#: sql_help.c:1651 sql_help.c:1694 sql_help.c:1697 sql_help.c:1699 +#: sql_help.c:1701 sql_help.c:1704 sql_help.c:1706 sql_help.c:1708 +#: sql_help.c:1711 sql_help.c:1761 sql_help.c:1777 sql_help.c:2008 +#: sql_help.c:2077 sql_help.c:2096 sql_help.c:2109 sql_help.c:2166 +#: sql_help.c:2173 sql_help.c:2183 sql_help.c:2209 sql_help.c:2240 +#: sql_help.c:2258 sql_help.c:2286 sql_help.c:2397 sql_help.c:2443 +#: sql_help.c:2468 sql_help.c:2491 sql_help.c:2495 sql_help.c:2529 +#: sql_help.c:2549 sql_help.c:2571 sql_help.c:2585 sql_help.c:2606 +#: sql_help.c:2635 sql_help.c:2670 sql_help.c:2695 sql_help.c:2742 +#: sql_help.c:3040 sql_help.c:3053 sql_help.c:3070 sql_help.c:3086 +#: sql_help.c:3126 sql_help.c:3180 sql_help.c:3184 sql_help.c:3186 +#: sql_help.c:3193 sql_help.c:3212 sql_help.c:3239 sql_help.c:3274 +#: sql_help.c:3286 sql_help.c:3295 sql_help.c:3339 sql_help.c:3353 +#: sql_help.c:3381 sql_help.c:3389 sql_help.c:3401 sql_help.c:3411 +#: sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 sql_help.c:3443 +#: sql_help.c:3452 sql_help.c:3463 sql_help.c:3471 sql_help.c:3479 +#: sql_help.c:3487 sql_help.c:3495 sql_help.c:3505 sql_help.c:3514 +#: sql_help.c:3523 sql_help.c:3531 sql_help.c:3541 sql_help.c:3552 +#: sql_help.c:3560 sql_help.c:3569 sql_help.c:3580 sql_help.c:3589 +#: sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 sql_help.c:3621 +#: sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 sql_help.c:3653 +#: sql_help.c:3661 sql_help.c:3669 sql_help.c:3686 sql_help.c:3695 +#: sql_help.c:3703 sql_help.c:3720 sql_help.c:3735 sql_help.c:4045 +#: sql_help.c:4159 sql_help.c:4188 sql_help.c:4203 sql_help.c:4706 +#: sql_help.c:4754 sql_help.c:4912 msgid "name" msgstr "nom" -#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:330 sql_help.c:1846 -#: sql_help.c:3339 sql_help.c:4455 +#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:340 sql_help.c:1858 +#: sql_help.c:3354 sql_help.c:4474 msgid "aggregate_signature" msgstr "signature_agrégat" -#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:253 -#: sql_help.c:271 sql_help.c:402 sql_help.c:449 sql_help.c:528 sql_help.c:576 -#: sql_help.c:594 sql_help.c:621 sql_help.c:674 sql_help.c:743 sql_help.c:798 -#: sql_help.c:819 sql_help.c:858 sql_help.c:908 sql_help.c:955 sql_help.c:1008 -#: sql_help.c:1040 sql_help.c:1050 sql_help.c:1085 sql_help.c:1105 -#: sql_help.c:1119 sql_help.c:1169 sql_help.c:1317 sql_help.c:1444 -#: sql_help.c:1487 sql_help.c:1508 sql_help.c:1522 sql_help.c:1534 -#: sql_help.c:1547 sql_help.c:1574 sql_help.c:1640 sql_help.c:1693 +#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:260 +#: sql_help.c:281 sql_help.c:412 sql_help.c:459 sql_help.c:538 sql_help.c:586 +#: sql_help.c:604 sql_help.c:631 sql_help.c:684 sql_help.c:753 sql_help.c:808 +#: sql_help.c:829 sql_help.c:868 sql_help.c:918 sql_help.c:965 sql_help.c:1018 +#: sql_help.c:1050 sql_help.c:1060 sql_help.c:1095 sql_help.c:1115 +#: sql_help.c:1129 sql_help.c:1179 sql_help.c:1326 sql_help.c:1456 +#: sql_help.c:1499 sql_help.c:1520 sql_help.c:1534 sql_help.c:1546 +#: sql_help.c:1559 sql_help.c:1586 sql_help.c:1652 sql_help.c:1705 msgid "new_name" msgstr "nouveau_nom" -#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:251 -#: sql_help.c:269 sql_help.c:400 sql_help.c:485 sql_help.c:533 sql_help.c:623 -#: sql_help.c:632 sql_help.c:697 sql_help.c:717 sql_help.c:746 sql_help.c:801 -#: sql_help.c:863 sql_help.c:906 sql_help.c:1013 sql_help.c:1052 -#: sql_help.c:1083 sql_help.c:1103 sql_help.c:1117 sql_help.c:1167 -#: sql_help.c:1381 sql_help.c:1446 sql_help.c:1489 sql_help.c:1510 -#: sql_help.c:1572 sql_help.c:1688 sql_help.c:3011 +#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:258 +#: sql_help.c:279 sql_help.c:410 sql_help.c:495 sql_help.c:543 sql_help.c:633 +#: sql_help.c:642 sql_help.c:707 sql_help.c:727 sql_help.c:756 sql_help.c:811 +#: sql_help.c:873 sql_help.c:916 sql_help.c:1023 sql_help.c:1062 +#: sql_help.c:1093 sql_help.c:1113 sql_help.c:1127 sql_help.c:1177 +#: sql_help.c:1390 sql_help.c:1458 sql_help.c:1501 sql_help.c:1522 +#: sql_help.c:1584 sql_help.c:1700 sql_help.c:3026 msgid "new_owner" msgstr "nouveau_propriétaire" -#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:255 sql_help.c:322 -#: sql_help.c:451 sql_help.c:538 sql_help.c:676 sql_help.c:721 sql_help.c:749 -#: sql_help.c:804 sql_help.c:868 sql_help.c:1018 sql_help.c:1087 -#: sql_help.c:1121 sql_help.c:1319 sql_help.c:1491 sql_help.c:1512 -#: sql_help.c:1524 sql_help.c:1536 sql_help.c:1576 sql_help.c:1695 +#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:262 sql_help.c:332 +#: sql_help.c:461 sql_help.c:548 sql_help.c:686 sql_help.c:731 sql_help.c:759 +#: sql_help.c:814 sql_help.c:878 sql_help.c:1028 sql_help.c:1097 +#: sql_help.c:1131 sql_help.c:1328 sql_help.c:1503 sql_help.c:1524 +#: sql_help.c:1536 sql_help.c:1548 sql_help.c:1588 sql_help.c:1707 msgid "new_schema" msgstr "nouveau_schéma" -#: sql_help.c:44 sql_help.c:1910 sql_help.c:3340 sql_help.c:4484 +#: sql_help.c:44 sql_help.c:1922 sql_help.c:3355 sql_help.c:4503 msgid "where aggregate_signature is:" msgstr "où signature_agrégat est :" -#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:340 sql_help.c:353 -#: sql_help.c:357 sql_help.c:373 sql_help.c:376 sql_help.c:379 sql_help.c:520 -#: sql_help.c:525 sql_help.c:530 sql_help.c:535 sql_help.c:540 sql_help.c:850 -#: sql_help.c:855 sql_help.c:860 sql_help.c:865 sql_help.c:870 sql_help.c:1000 -#: sql_help.c:1005 sql_help.c:1010 sql_help.c:1015 sql_help.c:1020 -#: sql_help.c:1864 sql_help.c:1881 sql_help.c:1887 sql_help.c:1911 -#: sql_help.c:1914 sql_help.c:1917 sql_help.c:2066 sql_help.c:2085 -#: sql_help.c:2088 sql_help.c:2386 sql_help.c:2595 sql_help.c:3341 -#: sql_help.c:3344 sql_help.c:3347 sql_help.c:3438 sql_help.c:3527 -#: sql_help.c:3555 sql_help.c:3905 sql_help.c:4354 sql_help.c:4461 -#: sql_help.c:4468 sql_help.c:4474 sql_help.c:4485 sql_help.c:4488 -#: sql_help.c:4491 +#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:350 sql_help.c:363 +#: sql_help.c:367 sql_help.c:383 sql_help.c:386 sql_help.c:389 sql_help.c:530 +#: sql_help.c:535 sql_help.c:540 sql_help.c:545 sql_help.c:550 sql_help.c:860 +#: sql_help.c:865 sql_help.c:870 sql_help.c:875 sql_help.c:880 sql_help.c:1010 +#: sql_help.c:1015 sql_help.c:1020 sql_help.c:1025 sql_help.c:1030 +#: sql_help.c:1876 sql_help.c:1893 sql_help.c:1899 sql_help.c:1923 +#: sql_help.c:1926 sql_help.c:1929 sql_help.c:2078 sql_help.c:2097 +#: sql_help.c:2100 sql_help.c:2398 sql_help.c:2607 sql_help.c:3356 +#: sql_help.c:3359 sql_help.c:3362 sql_help.c:3453 sql_help.c:3542 +#: sql_help.c:3570 sql_help.c:3920 sql_help.c:4373 sql_help.c:4480 +#: sql_help.c:4487 sql_help.c:4493 sql_help.c:4504 sql_help.c:4507 +#: sql_help.c:4510 msgid "argmode" msgstr "mode_argument" -#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:341 sql_help.c:354 -#: sql_help.c:358 sql_help.c:374 sql_help.c:377 sql_help.c:380 sql_help.c:521 -#: sql_help.c:526 sql_help.c:531 sql_help.c:536 sql_help.c:541 sql_help.c:851 -#: sql_help.c:856 sql_help.c:861 sql_help.c:866 sql_help.c:871 sql_help.c:1001 -#: sql_help.c:1006 sql_help.c:1011 sql_help.c:1016 sql_help.c:1021 -#: sql_help.c:1865 sql_help.c:1882 sql_help.c:1888 sql_help.c:1912 -#: sql_help.c:1915 sql_help.c:1918 sql_help.c:2067 sql_help.c:2086 -#: sql_help.c:2089 sql_help.c:2387 sql_help.c:2596 sql_help.c:3342 -#: sql_help.c:3345 sql_help.c:3348 sql_help.c:3439 sql_help.c:3528 -#: sql_help.c:3556 sql_help.c:4462 sql_help.c:4469 sql_help.c:4475 -#: sql_help.c:4486 sql_help.c:4489 sql_help.c:4492 +#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:351 sql_help.c:364 +#: sql_help.c:368 sql_help.c:384 sql_help.c:387 sql_help.c:390 sql_help.c:531 +#: sql_help.c:536 sql_help.c:541 sql_help.c:546 sql_help.c:551 sql_help.c:861 +#: sql_help.c:866 sql_help.c:871 sql_help.c:876 sql_help.c:881 sql_help.c:1011 +#: sql_help.c:1016 sql_help.c:1021 sql_help.c:1026 sql_help.c:1031 +#: sql_help.c:1877 sql_help.c:1894 sql_help.c:1900 sql_help.c:1924 +#: sql_help.c:1927 sql_help.c:1930 sql_help.c:2079 sql_help.c:2098 +#: sql_help.c:2101 sql_help.c:2399 sql_help.c:2608 sql_help.c:3357 +#: sql_help.c:3360 sql_help.c:3363 sql_help.c:3454 sql_help.c:3543 +#: sql_help.c:3571 sql_help.c:4481 sql_help.c:4488 sql_help.c:4494 +#: sql_help.c:4505 sql_help.c:4508 sql_help.c:4511 msgid "argname" msgstr "nom_agrégat" -#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:342 sql_help.c:355 -#: sql_help.c:359 sql_help.c:375 sql_help.c:378 sql_help.c:381 sql_help.c:522 -#: sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:542 sql_help.c:852 -#: sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:872 sql_help.c:1002 -#: sql_help.c:1007 sql_help.c:1012 sql_help.c:1017 sql_help.c:1022 -#: sql_help.c:1866 sql_help.c:1883 sql_help.c:1889 sql_help.c:1913 -#: sql_help.c:1916 sql_help.c:1919 sql_help.c:2388 sql_help.c:2597 -#: sql_help.c:3343 sql_help.c:3346 sql_help.c:3349 sql_help.c:3440 -#: sql_help.c:3529 sql_help.c:3557 sql_help.c:4463 sql_help.c:4470 -#: sql_help.c:4476 sql_help.c:4487 sql_help.c:4490 sql_help.c:4493 +#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:352 sql_help.c:365 +#: sql_help.c:369 sql_help.c:385 sql_help.c:388 sql_help.c:391 sql_help.c:532 +#: sql_help.c:537 sql_help.c:542 sql_help.c:547 sql_help.c:552 sql_help.c:862 +#: sql_help.c:867 sql_help.c:872 sql_help.c:877 sql_help.c:882 sql_help.c:1012 +#: sql_help.c:1017 sql_help.c:1022 sql_help.c:1027 sql_help.c:1032 +#: sql_help.c:1878 sql_help.c:1895 sql_help.c:1901 sql_help.c:1925 +#: sql_help.c:1928 sql_help.c:1931 sql_help.c:2400 sql_help.c:2609 +#: sql_help.c:3358 sql_help.c:3361 sql_help.c:3364 sql_help.c:3455 +#: sql_help.c:3544 sql_help.c:3572 sql_help.c:4482 sql_help.c:4489 +#: sql_help.c:4495 sql_help.c:4506 sql_help.c:4509 sql_help.c:4512 msgid "argtype" msgstr "type_argument" -#: sql_help.c:114 sql_help.c:397 sql_help.c:474 sql_help.c:486 sql_help.c:949 -#: sql_help.c:1100 sql_help.c:1505 sql_help.c:1634 sql_help.c:1666 -#: sql_help.c:1718 sql_help.c:1781 sql_help.c:1967 sql_help.c:1974 -#: sql_help.c:2277 sql_help.c:2327 sql_help.c:2334 sql_help.c:2343 -#: sql_help.c:2432 sql_help.c:2659 sql_help.c:2752 sql_help.c:3040 -#: sql_help.c:3225 sql_help.c:3247 sql_help.c:3387 sql_help.c:3742 -#: sql_help.c:3949 sql_help.c:4183 sql_help.c:4956 +#: sql_help.c:114 sql_help.c:407 sql_help.c:484 sql_help.c:496 sql_help.c:959 +#: sql_help.c:1110 sql_help.c:1517 sql_help.c:1646 sql_help.c:1678 +#: sql_help.c:1730 sql_help.c:1793 sql_help.c:1979 sql_help.c:1986 +#: sql_help.c:2289 sql_help.c:2339 sql_help.c:2346 sql_help.c:2355 +#: sql_help.c:2444 sql_help.c:2671 sql_help.c:2764 sql_help.c:3055 +#: sql_help.c:3240 sql_help.c:3262 sql_help.c:3402 sql_help.c:3757 +#: sql_help.c:3964 sql_help.c:4202 sql_help.c:4975 msgid "option" msgstr "option" -#: sql_help.c:115 sql_help.c:950 sql_help.c:1635 sql_help.c:2433 -#: sql_help.c:2660 sql_help.c:3226 sql_help.c:3388 +#: sql_help.c:115 sql_help.c:960 sql_help.c:1647 sql_help.c:2445 +#: sql_help.c:2672 sql_help.c:3241 sql_help.c:3403 msgid "where option can be:" msgstr "où option peut être :" -#: sql_help.c:116 sql_help.c:2209 +#: sql_help.c:116 sql_help.c:2221 msgid "allowconn" msgstr "allowconn" -#: sql_help.c:117 sql_help.c:951 sql_help.c:1636 sql_help.c:2210 -#: sql_help.c:2434 sql_help.c:2661 sql_help.c:3227 +#: sql_help.c:117 sql_help.c:961 sql_help.c:1648 sql_help.c:2222 +#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 msgid "connlimit" msgstr "limite_de_connexion" -#: sql_help.c:118 sql_help.c:2211 +#: sql_help.c:118 sql_help.c:2223 msgid "istemplate" msgstr "istemplate" -#: sql_help.c:124 sql_help.c:611 sql_help.c:679 sql_help.c:693 sql_help.c:1322 -#: sql_help.c:1374 sql_help.c:4187 +#: sql_help.c:124 sql_help.c:621 sql_help.c:689 sql_help.c:703 sql_help.c:1331 +#: sql_help.c:1383 sql_help.c:4206 msgid "new_tablespace" msgstr "nouveau_tablespace" -#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:548 sql_help.c:550 -#: sql_help.c:551 sql_help.c:875 sql_help.c:877 sql_help.c:878 sql_help.c:958 -#: sql_help.c:962 sql_help.c:965 sql_help.c:1027 sql_help.c:1029 -#: sql_help.c:1030 sql_help.c:1180 sql_help.c:1183 sql_help.c:1643 -#: sql_help.c:1647 sql_help.c:1650 sql_help.c:2398 sql_help.c:2601 -#: sql_help.c:3917 sql_help.c:4205 sql_help.c:4366 sql_help.c:4675 +#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:558 sql_help.c:560 +#: sql_help.c:561 sql_help.c:885 sql_help.c:887 sql_help.c:888 sql_help.c:968 +#: sql_help.c:972 sql_help.c:975 sql_help.c:1037 sql_help.c:1039 +#: sql_help.c:1040 sql_help.c:1190 sql_help.c:1192 sql_help.c:1655 +#: sql_help.c:1659 sql_help.c:1662 sql_help.c:2410 sql_help.c:2613 +#: sql_help.c:3932 sql_help.c:4224 sql_help.c:4385 sql_help.c:4694 msgid "configuration_parameter" msgstr "paramètre_configuration" -#: sql_help.c:128 sql_help.c:398 sql_help.c:469 sql_help.c:475 sql_help.c:487 -#: sql_help.c:549 sql_help.c:603 sql_help.c:685 sql_help.c:695 sql_help.c:876 -#: sql_help.c:904 sql_help.c:959 sql_help.c:1028 sql_help.c:1101 -#: sql_help.c:1146 sql_help.c:1150 sql_help.c:1154 sql_help.c:1157 -#: sql_help.c:1162 sql_help.c:1165 sql_help.c:1181 sql_help.c:1182 -#: sql_help.c:1353 sql_help.c:1376 sql_help.c:1424 sql_help.c:1449 -#: sql_help.c:1506 sql_help.c:1590 sql_help.c:1644 sql_help.c:1667 -#: sql_help.c:2278 sql_help.c:2328 sql_help.c:2335 sql_help.c:2344 -#: sql_help.c:2399 sql_help.c:2400 sql_help.c:2464 sql_help.c:2467 -#: sql_help.c:2501 sql_help.c:2602 sql_help.c:2603 sql_help.c:2626 -#: sql_help.c:2753 sql_help.c:2792 sql_help.c:2902 sql_help.c:2915 -#: sql_help.c:2929 sql_help.c:2970 sql_help.c:2997 sql_help.c:3014 -#: sql_help.c:3041 sql_help.c:3248 sql_help.c:3950 sql_help.c:4676 -#: sql_help.c:4677 sql_help.c:4678 sql_help.c:4679 +#: sql_help.c:128 sql_help.c:408 sql_help.c:479 sql_help.c:485 sql_help.c:497 +#: sql_help.c:559 sql_help.c:613 sql_help.c:695 sql_help.c:705 sql_help.c:886 +#: sql_help.c:914 sql_help.c:969 sql_help.c:1038 sql_help.c:1111 +#: sql_help.c:1156 sql_help.c:1160 sql_help.c:1164 sql_help.c:1167 +#: sql_help.c:1172 sql_help.c:1175 sql_help.c:1191 sql_help.c:1362 +#: sql_help.c:1385 sql_help.c:1433 sql_help.c:1441 sql_help.c:1461 +#: sql_help.c:1518 sql_help.c:1602 sql_help.c:1656 sql_help.c:1679 +#: sql_help.c:2290 sql_help.c:2340 sql_help.c:2347 sql_help.c:2356 +#: sql_help.c:2411 sql_help.c:2412 sql_help.c:2476 sql_help.c:2479 +#: sql_help.c:2513 sql_help.c:2614 sql_help.c:2615 sql_help.c:2638 +#: sql_help.c:2765 sql_help.c:2804 sql_help.c:2914 sql_help.c:2927 +#: sql_help.c:2941 sql_help.c:2982 sql_help.c:2990 sql_help.c:3012 +#: sql_help.c:3029 sql_help.c:3056 sql_help.c:3263 sql_help.c:3965 +#: sql_help.c:4695 sql_help.c:4696 sql_help.c:4697 sql_help.c:4698 msgid "value" msgstr "valeur" -#: sql_help.c:200 +#: sql_help.c:202 msgid "target_role" msgstr "rôle_cible" -#: sql_help.c:201 sql_help.c:913 sql_help.c:2262 sql_help.c:2631 -#: sql_help.c:2708 sql_help.c:2713 sql_help.c:3880 sql_help.c:3889 -#: sql_help.c:3908 sql_help.c:3920 sql_help.c:4329 sql_help.c:4338 -#: sql_help.c:4357 sql_help.c:4369 +#: sql_help.c:203 sql_help.c:923 sql_help.c:2274 sql_help.c:2643 +#: sql_help.c:2720 sql_help.c:2725 sql_help.c:3895 sql_help.c:3904 +#: sql_help.c:3923 sql_help.c:3935 sql_help.c:4348 sql_help.c:4357 +#: sql_help.c:4376 sql_help.c:4388 msgid "schema_name" msgstr "nom_schéma" -#: sql_help.c:202 +#: sql_help.c:204 msgid "abbreviated_grant_or_revoke" msgstr "grant_ou_revoke_raccourci" -#: sql_help.c:203 +#: sql_help.c:205 msgid "where abbreviated_grant_or_revoke is one of:" msgstr "où abbreviated_grant_or_revoke fait partie de :" -#: sql_help.c:204 sql_help.c:205 sql_help.c:206 sql_help.c:207 sql_help.c:208 -#: sql_help.c:209 sql_help.c:210 sql_help.c:211 sql_help.c:212 sql_help.c:213 -#: sql_help.c:574 sql_help.c:610 sql_help.c:678 sql_help.c:822 sql_help.c:969 -#: sql_help.c:1321 sql_help.c:1654 sql_help.c:2437 sql_help.c:2438 -#: sql_help.c:2439 sql_help.c:2440 sql_help.c:2441 sql_help.c:2575 -#: sql_help.c:2664 sql_help.c:2665 sql_help.c:2666 sql_help.c:2667 -#: sql_help.c:2668 sql_help.c:3230 sql_help.c:3231 sql_help.c:3232 -#: sql_help.c:3233 sql_help.c:3234 sql_help.c:3929 sql_help.c:3933 -#: sql_help.c:4378 sql_help.c:4382 sql_help.c:4697 +#: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210 +#: sql_help.c:211 sql_help.c:212 sql_help.c:213 sql_help.c:214 sql_help.c:215 +#: sql_help.c:584 sql_help.c:620 sql_help.c:688 sql_help.c:832 sql_help.c:979 +#: sql_help.c:1330 sql_help.c:1666 sql_help.c:2449 sql_help.c:2450 +#: sql_help.c:2451 sql_help.c:2452 sql_help.c:2453 sql_help.c:2587 +#: sql_help.c:2676 sql_help.c:2677 sql_help.c:2678 sql_help.c:2679 +#: sql_help.c:2680 sql_help.c:3245 sql_help.c:3246 sql_help.c:3247 +#: sql_help.c:3248 sql_help.c:3249 sql_help.c:3944 sql_help.c:3948 +#: sql_help.c:4397 sql_help.c:4401 sql_help.c:4716 msgid "role_name" msgstr "nom_rôle" -#: sql_help.c:239 sql_help.c:462 sql_help.c:912 sql_help.c:1337 sql_help.c:1339 -#: sql_help.c:1391 sql_help.c:1403 sql_help.c:1428 sql_help.c:1684 -#: sql_help.c:2231 sql_help.c:2235 sql_help.c:2347 sql_help.c:2352 -#: sql_help.c:2460 sql_help.c:2630 sql_help.c:2769 sql_help.c:2774 -#: sql_help.c:2776 sql_help.c:2897 sql_help.c:2910 sql_help.c:2924 -#: sql_help.c:2933 sql_help.c:2945 sql_help.c:2974 sql_help.c:3981 -#: sql_help.c:3996 sql_help.c:3998 sql_help.c:4085 sql_help.c:4088 -#: sql_help.c:4090 sql_help.c:4548 sql_help.c:4549 sql_help.c:4558 -#: sql_help.c:4605 sql_help.c:4606 sql_help.c:4607 sql_help.c:4608 -#: sql_help.c:4609 sql_help.c:4610 sql_help.c:4650 sql_help.c:4651 -#: sql_help.c:4656 sql_help.c:4661 sql_help.c:4805 sql_help.c:4806 -#: sql_help.c:4815 sql_help.c:4862 sql_help.c:4863 sql_help.c:4864 -#: sql_help.c:4865 sql_help.c:4866 sql_help.c:4867 sql_help.c:4921 -#: sql_help.c:4923 sql_help.c:4983 sql_help.c:5043 sql_help.c:5044 -#: sql_help.c:5053 sql_help.c:5100 sql_help.c:5101 sql_help.c:5102 -#: sql_help.c:5103 sql_help.c:5104 sql_help.c:5105 +#: sql_help.c:246 sql_help.c:265 sql_help.c:472 sql_help.c:922 sql_help.c:1346 +#: sql_help.c:1348 sql_help.c:1400 sql_help.c:1412 sql_help.c:1437 +#: sql_help.c:1696 sql_help.c:2243 sql_help.c:2247 sql_help.c:2359 +#: sql_help.c:2364 sql_help.c:2472 sql_help.c:2642 sql_help.c:2781 +#: sql_help.c:2786 sql_help.c:2788 sql_help.c:2909 sql_help.c:2922 +#: sql_help.c:2936 sql_help.c:2945 sql_help.c:2957 sql_help.c:2986 +#: sql_help.c:3996 sql_help.c:4011 sql_help.c:4013 sql_help.c:4102 +#: sql_help.c:4105 sql_help.c:4107 sql_help.c:4567 sql_help.c:4568 +#: sql_help.c:4577 sql_help.c:4624 sql_help.c:4625 sql_help.c:4626 +#: sql_help.c:4627 sql_help.c:4628 sql_help.c:4629 sql_help.c:4669 +#: sql_help.c:4670 sql_help.c:4675 sql_help.c:4680 sql_help.c:4824 +#: sql_help.c:4825 sql_help.c:4834 sql_help.c:4881 sql_help.c:4882 +#: sql_help.c:4883 sql_help.c:4884 sql_help.c:4885 sql_help.c:4886 +#: sql_help.c:4940 sql_help.c:4942 sql_help.c:5002 sql_help.c:5062 +#: sql_help.c:5063 sql_help.c:5072 sql_help.c:5119 sql_help.c:5120 +#: sql_help.c:5121 sql_help.c:5122 sql_help.c:5123 sql_help.c:5124 msgid "expression" msgstr "expression" -#: sql_help.c:242 +#: sql_help.c:249 msgid "domain_constraint" msgstr "contrainte_domaine" -#: sql_help.c:244 sql_help.c:246 sql_help.c:249 sql_help.c:477 sql_help.c:478 -#: sql_help.c:1314 sql_help.c:1361 sql_help.c:1362 sql_help.c:1363 -#: sql_help.c:1390 sql_help.c:1402 sql_help.c:1419 sql_help.c:1852 -#: sql_help.c:1854 sql_help.c:2234 sql_help.c:2346 sql_help.c:2351 -#: sql_help.c:2932 sql_help.c:2944 sql_help.c:3993 +#: sql_help.c:251 sql_help.c:253 sql_help.c:256 sql_help.c:264 sql_help.c:487 +#: sql_help.c:488 sql_help.c:1323 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1372 sql_help.c:1399 sql_help.c:1411 sql_help.c:1428 +#: sql_help.c:1864 sql_help.c:1866 sql_help.c:2246 sql_help.c:2358 +#: sql_help.c:2363 sql_help.c:2944 sql_help.c:2956 sql_help.c:4008 msgid "constraint_name" msgstr "nom_contrainte" -#: sql_help.c:247 sql_help.c:1315 +#: sql_help.c:254 sql_help.c:1324 msgid "new_constraint_name" msgstr "nouvelle_nom_contrainte" -#: sql_help.c:320 sql_help.c:1099 +#: sql_help.c:263 +msgid "where domain_constraint is:" +msgstr "où contrainte_domaine est :" + +#: sql_help.c:330 sql_help.c:1109 msgid "new_version" msgstr "nouvelle_version" -#: sql_help.c:324 sql_help.c:326 +#: sql_help.c:334 sql_help.c:336 msgid "member_object" msgstr "objet_membre" -#: sql_help.c:327 +#: sql_help.c:337 msgid "where member_object is:" msgstr "où objet_membre fait partie de :" -#: sql_help.c:328 sql_help.c:333 sql_help.c:334 sql_help.c:335 sql_help.c:336 -#: sql_help.c:337 sql_help.c:338 sql_help.c:343 sql_help.c:347 sql_help.c:349 -#: sql_help.c:351 sql_help.c:360 sql_help.c:361 sql_help.c:362 sql_help.c:363 -#: sql_help.c:364 sql_help.c:365 sql_help.c:366 sql_help.c:367 sql_help.c:370 -#: sql_help.c:371 sql_help.c:1844 sql_help.c:1849 sql_help.c:1856 -#: sql_help.c:1857 sql_help.c:1858 sql_help.c:1859 sql_help.c:1860 -#: sql_help.c:1861 sql_help.c:1862 sql_help.c:1867 sql_help.c:1869 -#: sql_help.c:1873 sql_help.c:1875 sql_help.c:1879 sql_help.c:1884 -#: sql_help.c:1885 sql_help.c:1892 sql_help.c:1893 sql_help.c:1894 -#: sql_help.c:1895 sql_help.c:1896 sql_help.c:1897 sql_help.c:1898 -#: sql_help.c:1899 sql_help.c:1900 sql_help.c:1901 sql_help.c:1902 -#: sql_help.c:1907 sql_help.c:1908 sql_help.c:4451 sql_help.c:4456 -#: sql_help.c:4457 sql_help.c:4458 sql_help.c:4459 sql_help.c:4465 -#: sql_help.c:4466 sql_help.c:4471 sql_help.c:4472 sql_help.c:4477 -#: sql_help.c:4478 sql_help.c:4479 sql_help.c:4480 sql_help.c:4481 -#: sql_help.c:4482 +#: sql_help.c:338 sql_help.c:343 sql_help.c:344 sql_help.c:345 sql_help.c:346 +#: sql_help.c:347 sql_help.c:348 sql_help.c:353 sql_help.c:357 sql_help.c:359 +#: sql_help.c:361 sql_help.c:370 sql_help.c:371 sql_help.c:372 sql_help.c:373 +#: sql_help.c:374 sql_help.c:375 sql_help.c:376 sql_help.c:377 sql_help.c:380 +#: sql_help.c:381 sql_help.c:1856 sql_help.c:1861 sql_help.c:1868 +#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872 +#: sql_help.c:1873 sql_help.c:1874 sql_help.c:1879 sql_help.c:1881 +#: sql_help.c:1885 sql_help.c:1887 sql_help.c:1891 sql_help.c:1896 +#: sql_help.c:1897 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 +#: sql_help.c:1907 sql_help.c:1908 sql_help.c:1909 sql_help.c:1910 +#: sql_help.c:1911 sql_help.c:1912 sql_help.c:1913 sql_help.c:1914 +#: sql_help.c:1919 sql_help.c:1920 sql_help.c:4470 sql_help.c:4475 +#: sql_help.c:4476 sql_help.c:4477 sql_help.c:4478 sql_help.c:4484 +#: sql_help.c:4485 sql_help.c:4490 sql_help.c:4491 sql_help.c:4496 +#: sql_help.c:4497 sql_help.c:4498 sql_help.c:4499 sql_help.c:4500 +#: sql_help.c:4501 msgid "object_name" msgstr "nom_objet" -#: sql_help.c:329 sql_help.c:1845 sql_help.c:4454 +#: sql_help.c:339 sql_help.c:1857 sql_help.c:4473 msgid "aggregate_name" msgstr "nom_agrégat" -#: sql_help.c:331 sql_help.c:1847 sql_help.c:2131 sql_help.c:2135 -#: sql_help.c:2137 sql_help.c:3357 +#: sql_help.c:341 sql_help.c:1859 sql_help.c:2143 sql_help.c:2147 +#: sql_help.c:2149 sql_help.c:3372 msgid "source_type" msgstr "type_source" -#: sql_help.c:332 sql_help.c:1848 sql_help.c:2132 sql_help.c:2136 -#: sql_help.c:2138 sql_help.c:3358 +#: sql_help.c:342 sql_help.c:1860 sql_help.c:2144 sql_help.c:2148 +#: sql_help.c:2150 sql_help.c:3373 msgid "target_type" msgstr "type_cible" -#: sql_help.c:339 sql_help.c:786 sql_help.c:1863 sql_help.c:2133 -#: sql_help.c:2174 sql_help.c:2250 sql_help.c:2518 sql_help.c:2549 -#: sql_help.c:3117 sql_help.c:4353 sql_help.c:4460 sql_help.c:4577 -#: sql_help.c:4581 sql_help.c:4585 sql_help.c:4588 sql_help.c:4834 -#: sql_help.c:4838 sql_help.c:4842 sql_help.c:4845 sql_help.c:5072 -#: sql_help.c:5076 sql_help.c:5080 sql_help.c:5083 +#: sql_help.c:349 sql_help.c:796 sql_help.c:1875 sql_help.c:2145 +#: sql_help.c:2186 sql_help.c:2262 sql_help.c:2530 sql_help.c:2561 +#: sql_help.c:3132 sql_help.c:4372 sql_help.c:4479 sql_help.c:4596 +#: sql_help.c:4600 sql_help.c:4604 sql_help.c:4607 sql_help.c:4853 +#: sql_help.c:4857 sql_help.c:4861 sql_help.c:4864 sql_help.c:5091 +#: sql_help.c:5095 sql_help.c:5099 sql_help.c:5102 msgid "function_name" msgstr "nom_fonction" -#: sql_help.c:344 sql_help.c:779 sql_help.c:1870 sql_help.c:2542 +#: sql_help.c:354 sql_help.c:789 sql_help.c:1882 sql_help.c:2554 msgid "operator_name" msgstr "nom_opérateur" -#: sql_help.c:345 sql_help.c:715 sql_help.c:719 sql_help.c:723 sql_help.c:1871 -#: sql_help.c:2519 sql_help.c:3481 +#: sql_help.c:355 sql_help.c:725 sql_help.c:729 sql_help.c:733 sql_help.c:1883 +#: sql_help.c:2531 sql_help.c:3496 msgid "left_type" msgstr "type_argument_gauche" -#: sql_help.c:346 sql_help.c:716 sql_help.c:720 sql_help.c:724 sql_help.c:1872 -#: sql_help.c:2520 sql_help.c:3482 +#: sql_help.c:356 sql_help.c:726 sql_help.c:730 sql_help.c:734 sql_help.c:1884 +#: sql_help.c:2532 sql_help.c:3497 msgid "right_type" msgstr "type_argument_droit" -#: sql_help.c:348 sql_help.c:350 sql_help.c:742 sql_help.c:745 sql_help.c:748 -#: sql_help.c:777 sql_help.c:789 sql_help.c:797 sql_help.c:800 sql_help.c:803 -#: sql_help.c:1408 sql_help.c:1874 sql_help.c:1876 sql_help.c:2539 -#: sql_help.c:2560 sql_help.c:2950 sql_help.c:3491 sql_help.c:3500 +#: sql_help.c:358 sql_help.c:360 sql_help.c:752 sql_help.c:755 sql_help.c:758 +#: sql_help.c:787 sql_help.c:799 sql_help.c:807 sql_help.c:810 sql_help.c:813 +#: sql_help.c:1417 sql_help.c:1886 sql_help.c:1888 sql_help.c:2551 +#: sql_help.c:2572 sql_help.c:2962 sql_help.c:3506 sql_help.c:3515 msgid "index_method" msgstr "méthode_indexage" -#: sql_help.c:352 sql_help.c:1880 sql_help.c:4467 +#: sql_help.c:362 sql_help.c:1892 sql_help.c:4486 msgid "procedure_name" msgstr "nom_procédure" -#: sql_help.c:356 sql_help.c:1886 sql_help.c:3904 sql_help.c:4473 +#: sql_help.c:366 sql_help.c:1898 sql_help.c:3919 sql_help.c:4492 msgid "routine_name" msgstr "nom_routine" -#: sql_help.c:368 sql_help.c:1380 sql_help.c:1903 sql_help.c:2394 -#: sql_help.c:2600 sql_help.c:2905 sql_help.c:3084 sql_help.c:3662 -#: sql_help.c:3926 sql_help.c:4375 +#: sql_help.c:378 sql_help.c:1389 sql_help.c:1915 sql_help.c:2406 +#: sql_help.c:2612 sql_help.c:2917 sql_help.c:3099 sql_help.c:3677 +#: sql_help.c:3941 sql_help.c:4394 msgid "type_name" msgstr "nom_type" -#: sql_help.c:369 sql_help.c:1904 sql_help.c:2393 sql_help.c:2599 -#: sql_help.c:3085 sql_help.c:3315 sql_help.c:3663 sql_help.c:3911 -#: sql_help.c:4360 +#: sql_help.c:379 sql_help.c:1916 sql_help.c:2405 sql_help.c:2611 +#: sql_help.c:3100 sql_help.c:3330 sql_help.c:3678 sql_help.c:3926 +#: sql_help.c:4379 msgid "lang_name" msgstr "nom_langage" -#: sql_help.c:372 +#: sql_help.c:382 msgid "and aggregate_signature is:" msgstr "et signature_agrégat est :" -#: sql_help.c:395 sql_help.c:1998 sql_help.c:2275 +#: sql_help.c:405 sql_help.c:2010 sql_help.c:2287 msgid "handler_function" msgstr "fonction_gestionnaire" -#: sql_help.c:396 sql_help.c:2276 +#: sql_help.c:406 sql_help.c:2288 msgid "validator_function" msgstr "fonction_validateur" -#: sql_help.c:444 sql_help.c:523 sql_help.c:667 sql_help.c:853 sql_help.c:1003 -#: sql_help.c:1309 sql_help.c:1581 +#: sql_help.c:454 sql_help.c:533 sql_help.c:677 sql_help.c:863 sql_help.c:1013 +#: sql_help.c:1318 sql_help.c:1593 msgid "action" msgstr "action" -#: sql_help.c:446 sql_help.c:453 sql_help.c:457 sql_help.c:458 sql_help.c:461 -#: sql_help.c:463 sql_help.c:464 sql_help.c:465 sql_help.c:467 sql_help.c:470 -#: sql_help.c:472 sql_help.c:473 sql_help.c:671 sql_help.c:681 sql_help.c:683 -#: sql_help.c:686 sql_help.c:688 sql_help.c:689 sql_help.c:911 sql_help.c:1080 -#: sql_help.c:1311 sql_help.c:1329 sql_help.c:1333 sql_help.c:1334 -#: sql_help.c:1338 sql_help.c:1340 sql_help.c:1341 sql_help.c:1342 -#: sql_help.c:1343 sql_help.c:1345 sql_help.c:1348 sql_help.c:1349 -#: sql_help.c:1351 sql_help.c:1354 sql_help.c:1356 sql_help.c:1357 -#: sql_help.c:1404 sql_help.c:1406 sql_help.c:1413 sql_help.c:1422 -#: sql_help.c:1427 sql_help.c:1431 sql_help.c:1432 sql_help.c:1683 -#: sql_help.c:1686 sql_help.c:1690 sql_help.c:1726 sql_help.c:1851 -#: sql_help.c:1964 sql_help.c:1970 sql_help.c:1983 sql_help.c:1984 -#: sql_help.c:1985 sql_help.c:2325 sql_help.c:2338 sql_help.c:2391 -#: sql_help.c:2459 sql_help.c:2465 sql_help.c:2498 sql_help.c:2629 -#: sql_help.c:2738 sql_help.c:2773 sql_help.c:2775 sql_help.c:2887 -#: sql_help.c:2896 sql_help.c:2906 sql_help.c:2909 sql_help.c:2919 -#: sql_help.c:2923 sql_help.c:2946 sql_help.c:2948 sql_help.c:2955 -#: sql_help.c:2968 sql_help.c:2973 sql_help.c:2977 sql_help.c:2978 -#: sql_help.c:2994 sql_help.c:3120 sql_help.c:3260 sql_help.c:3883 -#: sql_help.c:3884 sql_help.c:3980 sql_help.c:3995 sql_help.c:3997 -#: sql_help.c:3999 sql_help.c:4084 sql_help.c:4087 sql_help.c:4089 -#: sql_help.c:4332 sql_help.c:4333 sql_help.c:4453 sql_help.c:4614 -#: sql_help.c:4620 sql_help.c:4622 sql_help.c:4871 sql_help.c:4877 -#: sql_help.c:4879 sql_help.c:4920 sql_help.c:4922 sql_help.c:4924 -#: sql_help.c:4971 sql_help.c:5109 sql_help.c:5115 sql_help.c:5117 +#: sql_help.c:456 sql_help.c:463 sql_help.c:467 sql_help.c:468 sql_help.c:471 +#: sql_help.c:473 sql_help.c:474 sql_help.c:475 sql_help.c:477 sql_help.c:480 +#: sql_help.c:482 sql_help.c:483 sql_help.c:681 sql_help.c:691 sql_help.c:693 +#: sql_help.c:696 sql_help.c:698 sql_help.c:699 sql_help.c:921 sql_help.c:1090 +#: sql_help.c:1320 sql_help.c:1338 sql_help.c:1342 sql_help.c:1343 +#: sql_help.c:1347 sql_help.c:1349 sql_help.c:1350 sql_help.c:1351 +#: sql_help.c:1352 sql_help.c:1354 sql_help.c:1357 sql_help.c:1358 +#: sql_help.c:1360 sql_help.c:1363 sql_help.c:1365 sql_help.c:1366 +#: sql_help.c:1413 sql_help.c:1415 sql_help.c:1422 sql_help.c:1431 +#: sql_help.c:1436 sql_help.c:1443 sql_help.c:1444 sql_help.c:1695 +#: sql_help.c:1698 sql_help.c:1702 sql_help.c:1738 sql_help.c:1863 +#: sql_help.c:1976 sql_help.c:1982 sql_help.c:1995 sql_help.c:1996 +#: sql_help.c:1997 sql_help.c:2337 sql_help.c:2350 sql_help.c:2403 +#: sql_help.c:2471 sql_help.c:2477 sql_help.c:2510 sql_help.c:2641 +#: sql_help.c:2750 sql_help.c:2785 sql_help.c:2787 sql_help.c:2899 +#: sql_help.c:2908 sql_help.c:2918 sql_help.c:2921 sql_help.c:2931 +#: sql_help.c:2935 sql_help.c:2958 sql_help.c:2960 sql_help.c:2967 +#: sql_help.c:2980 sql_help.c:2985 sql_help.c:2992 sql_help.c:2993 +#: sql_help.c:3009 sql_help.c:3135 sql_help.c:3275 sql_help.c:3898 +#: sql_help.c:3899 sql_help.c:3995 sql_help.c:4010 sql_help.c:4012 +#: sql_help.c:4014 sql_help.c:4101 sql_help.c:4104 sql_help.c:4106 +#: sql_help.c:4108 sql_help.c:4351 sql_help.c:4352 sql_help.c:4472 +#: sql_help.c:4633 sql_help.c:4639 sql_help.c:4641 sql_help.c:4890 +#: sql_help.c:4896 sql_help.c:4898 sql_help.c:4939 sql_help.c:4941 +#: sql_help.c:4943 sql_help.c:4990 sql_help.c:5128 sql_help.c:5134 +#: sql_help.c:5136 msgid "column_name" msgstr "nom_colonne" -#: sql_help.c:447 sql_help.c:672 sql_help.c:1312 sql_help.c:1691 +#: sql_help.c:457 sql_help.c:682 sql_help.c:1321 sql_help.c:1703 msgid "new_column_name" msgstr "nouvelle_nom_colonne" -#: sql_help.c:452 sql_help.c:544 sql_help.c:680 sql_help.c:874 sql_help.c:1024 -#: sql_help.c:1328 sql_help.c:1591 +#: sql_help.c:462 sql_help.c:554 sql_help.c:690 sql_help.c:884 sql_help.c:1034 +#: sql_help.c:1337 sql_help.c:1603 msgid "where action is one of:" msgstr "où action fait partie de :" -#: sql_help.c:454 sql_help.c:459 sql_help.c:1072 sql_help.c:1330 -#: sql_help.c:1335 sql_help.c:1593 sql_help.c:1597 sql_help.c:2229 -#: sql_help.c:2326 sql_help.c:2538 sql_help.c:2731 sql_help.c:2888 -#: sql_help.c:3167 sql_help.c:4141 +#: sql_help.c:464 sql_help.c:469 sql_help.c:1082 sql_help.c:1339 +#: sql_help.c:1344 sql_help.c:1605 sql_help.c:1609 sql_help.c:2241 +#: sql_help.c:2338 sql_help.c:2550 sql_help.c:2743 sql_help.c:2900 +#: sql_help.c:3182 sql_help.c:4160 msgid "data_type" msgstr "type_données" -#: sql_help.c:455 sql_help.c:460 sql_help.c:1331 sql_help.c:1336 -#: sql_help.c:1594 sql_help.c:1598 sql_help.c:2230 sql_help.c:2329 -#: sql_help.c:2461 sql_help.c:2890 sql_help.c:2898 sql_help.c:2911 -#: sql_help.c:2925 sql_help.c:3168 sql_help.c:3174 sql_help.c:3990 +#: sql_help.c:465 sql_help.c:470 sql_help.c:1340 sql_help.c:1345 +#: sql_help.c:1438 sql_help.c:1606 sql_help.c:1610 sql_help.c:2242 +#: sql_help.c:2341 sql_help.c:2473 sql_help.c:2902 sql_help.c:2910 +#: sql_help.c:2923 sql_help.c:2937 sql_help.c:2987 sql_help.c:3183 +#: sql_help.c:3189 sql_help.c:4005 msgid "collation" msgstr "collationnement" -#: sql_help.c:456 sql_help.c:1332 sql_help.c:2330 sql_help.c:2339 -#: sql_help.c:2891 sql_help.c:2907 sql_help.c:2920 +#: sql_help.c:466 sql_help.c:1341 sql_help.c:2342 sql_help.c:2351 +#: sql_help.c:2903 sql_help.c:2919 sql_help.c:2932 msgid "column_constraint" msgstr "contrainte_colonne" -#: sql_help.c:466 sql_help.c:608 sql_help.c:682 sql_help.c:1350 sql_help.c:4968 +#: sql_help.c:476 sql_help.c:618 sql_help.c:692 sql_help.c:1359 sql_help.c:4987 msgid "integer" msgstr "entier" -#: sql_help.c:468 sql_help.c:471 sql_help.c:684 sql_help.c:687 sql_help.c:1352 -#: sql_help.c:1355 +#: sql_help.c:478 sql_help.c:481 sql_help.c:694 sql_help.c:697 sql_help.c:1361 +#: sql_help.c:1364 msgid "attribute_option" msgstr "option_attribut" -#: sql_help.c:476 sql_help.c:1359 sql_help.c:2331 sql_help.c:2340 -#: sql_help.c:2892 sql_help.c:2908 sql_help.c:2921 +#: sql_help.c:486 sql_help.c:1368 sql_help.c:2343 sql_help.c:2352 +#: sql_help.c:2904 sql_help.c:2920 sql_help.c:2933 msgid "table_constraint" msgstr "contrainte_table" -#: sql_help.c:479 sql_help.c:480 sql_help.c:481 sql_help.c:482 sql_help.c:1364 -#: sql_help.c:1365 sql_help.c:1366 sql_help.c:1367 sql_help.c:1905 +#: sql_help.c:489 sql_help.c:490 sql_help.c:491 sql_help.c:492 sql_help.c:1373 +#: sql_help.c:1374 sql_help.c:1375 sql_help.c:1376 sql_help.c:1917 msgid "trigger_name" msgstr "nom_trigger" -#: sql_help.c:483 sql_help.c:484 sql_help.c:1378 sql_help.c:1379 -#: sql_help.c:2332 sql_help.c:2337 sql_help.c:2895 sql_help.c:2918 +#: sql_help.c:493 sql_help.c:494 sql_help.c:1387 sql_help.c:1388 +#: sql_help.c:2344 sql_help.c:2349 sql_help.c:2907 sql_help.c:2930 msgid "parent_table" msgstr "table_parent" -#: sql_help.c:543 sql_help.c:600 sql_help.c:669 sql_help.c:873 sql_help.c:1023 -#: sql_help.c:1550 sql_help.c:2261 +#: sql_help.c:553 sql_help.c:610 sql_help.c:679 sql_help.c:883 sql_help.c:1033 +#: sql_help.c:1562 sql_help.c:2273 msgid "extension_name" msgstr "nom_extension" -#: sql_help.c:545 sql_help.c:1025 sql_help.c:2395 +#: sql_help.c:555 sql_help.c:1035 sql_help.c:2407 msgid "execution_cost" msgstr "coût_exécution" -#: sql_help.c:546 sql_help.c:1026 sql_help.c:2396 +#: sql_help.c:556 sql_help.c:1036 sql_help.c:2408 msgid "result_rows" msgstr "lignes_de_résultat" -#: sql_help.c:547 sql_help.c:2397 +#: sql_help.c:557 sql_help.c:2409 msgid "support_function" msgstr "fonction_support" -#: sql_help.c:569 sql_help.c:571 sql_help.c:948 sql_help.c:956 sql_help.c:960 -#: sql_help.c:963 sql_help.c:966 sql_help.c:1633 sql_help.c:1641 -#: sql_help.c:1645 sql_help.c:1648 sql_help.c:1651 sql_help.c:2709 -#: sql_help.c:2711 sql_help.c:2714 sql_help.c:2715 sql_help.c:3881 -#: sql_help.c:3882 sql_help.c:3886 sql_help.c:3887 sql_help.c:3890 -#: sql_help.c:3891 sql_help.c:3893 sql_help.c:3894 sql_help.c:3896 -#: sql_help.c:3897 sql_help.c:3899 sql_help.c:3900 sql_help.c:3902 -#: sql_help.c:3903 sql_help.c:3909 sql_help.c:3910 sql_help.c:3912 -#: sql_help.c:3913 sql_help.c:3915 sql_help.c:3916 sql_help.c:3918 -#: sql_help.c:3919 sql_help.c:3921 sql_help.c:3922 sql_help.c:3924 -#: sql_help.c:3925 sql_help.c:3927 sql_help.c:3928 sql_help.c:3930 -#: sql_help.c:3931 sql_help.c:4330 sql_help.c:4331 sql_help.c:4335 -#: sql_help.c:4336 sql_help.c:4339 sql_help.c:4340 sql_help.c:4342 -#: sql_help.c:4343 sql_help.c:4345 sql_help.c:4346 sql_help.c:4348 -#: sql_help.c:4349 sql_help.c:4351 sql_help.c:4352 sql_help.c:4358 -#: sql_help.c:4359 sql_help.c:4361 sql_help.c:4362 sql_help.c:4364 -#: sql_help.c:4365 sql_help.c:4367 sql_help.c:4368 sql_help.c:4370 -#: sql_help.c:4371 sql_help.c:4373 sql_help.c:4374 sql_help.c:4376 -#: sql_help.c:4377 sql_help.c:4379 sql_help.c:4380 +#: sql_help.c:579 sql_help.c:581 sql_help.c:958 sql_help.c:966 sql_help.c:970 +#: sql_help.c:973 sql_help.c:976 sql_help.c:1645 sql_help.c:1653 +#: sql_help.c:1657 sql_help.c:1660 sql_help.c:1663 sql_help.c:2721 +#: sql_help.c:2723 sql_help.c:2726 sql_help.c:2727 sql_help.c:3896 +#: sql_help.c:3897 sql_help.c:3901 sql_help.c:3902 sql_help.c:3905 +#: sql_help.c:3906 sql_help.c:3908 sql_help.c:3909 sql_help.c:3911 +#: sql_help.c:3912 sql_help.c:3914 sql_help.c:3915 sql_help.c:3917 +#: sql_help.c:3918 sql_help.c:3924 sql_help.c:3925 sql_help.c:3927 +#: sql_help.c:3928 sql_help.c:3930 sql_help.c:3931 sql_help.c:3933 +#: sql_help.c:3934 sql_help.c:3936 sql_help.c:3937 sql_help.c:3939 +#: sql_help.c:3940 sql_help.c:3942 sql_help.c:3943 sql_help.c:3945 +#: sql_help.c:3946 sql_help.c:4349 sql_help.c:4350 sql_help.c:4354 +#: sql_help.c:4355 sql_help.c:4358 sql_help.c:4359 sql_help.c:4361 +#: sql_help.c:4362 sql_help.c:4364 sql_help.c:4365 sql_help.c:4367 +#: sql_help.c:4368 sql_help.c:4370 sql_help.c:4371 sql_help.c:4377 +#: sql_help.c:4378 sql_help.c:4380 sql_help.c:4381 sql_help.c:4383 +#: sql_help.c:4384 sql_help.c:4386 sql_help.c:4387 sql_help.c:4389 +#: sql_help.c:4390 sql_help.c:4392 sql_help.c:4393 sql_help.c:4395 +#: sql_help.c:4396 sql_help.c:4398 sql_help.c:4399 msgid "role_specification" msgstr "specification_role" -#: sql_help.c:570 sql_help.c:572 sql_help.c:1664 sql_help.c:2198 -#: sql_help.c:2717 sql_help.c:3245 sql_help.c:3696 sql_help.c:4707 +#: sql_help.c:580 sql_help.c:582 sql_help.c:1676 sql_help.c:2210 +#: sql_help.c:2729 sql_help.c:3260 sql_help.c:3711 sql_help.c:4726 msgid "user_name" msgstr "nom_utilisateur" -#: sql_help.c:573 sql_help.c:968 sql_help.c:1653 sql_help.c:2716 -#: sql_help.c:3932 sql_help.c:4381 +#: sql_help.c:583 sql_help.c:978 sql_help.c:1665 sql_help.c:2728 +#: sql_help.c:3947 sql_help.c:4400 msgid "where role_specification can be:" msgstr "où specification_role peut être :" -#: sql_help.c:575 +#: sql_help.c:585 msgid "group_name" msgstr "nom_groupe" -#: sql_help.c:596 sql_help.c:1425 sql_help.c:2208 sql_help.c:2468 -#: sql_help.c:2502 sql_help.c:2903 sql_help.c:2916 sql_help.c:2930 -#: sql_help.c:2971 sql_help.c:2998 sql_help.c:3010 sql_help.c:3923 -#: sql_help.c:4372 +#: sql_help.c:606 sql_help.c:1434 sql_help.c:2220 sql_help.c:2480 +#: sql_help.c:2514 sql_help.c:2915 sql_help.c:2928 sql_help.c:2942 +#: sql_help.c:2983 sql_help.c:3013 sql_help.c:3025 sql_help.c:3938 +#: sql_help.c:4391 msgid "tablespace_name" msgstr "nom_tablespace" -#: sql_help.c:598 sql_help.c:691 sql_help.c:1372 sql_help.c:1382 -#: sql_help.c:1420 sql_help.c:1780 sql_help.c:1783 +#: sql_help.c:608 sql_help.c:701 sql_help.c:1381 sql_help.c:1391 +#: sql_help.c:1429 sql_help.c:1792 sql_help.c:1795 msgid "index_name" msgstr "nom_index" -#: sql_help.c:602 sql_help.c:605 sql_help.c:694 sql_help.c:696 sql_help.c:1375 -#: sql_help.c:1377 sql_help.c:1423 sql_help.c:2466 sql_help.c:2500 -#: sql_help.c:2901 sql_help.c:2914 sql_help.c:2928 sql_help.c:2969 -#: sql_help.c:2996 +#: sql_help.c:612 sql_help.c:615 sql_help.c:704 sql_help.c:706 sql_help.c:1384 +#: sql_help.c:1386 sql_help.c:1432 sql_help.c:2478 sql_help.c:2512 +#: sql_help.c:2913 sql_help.c:2926 sql_help.c:2940 sql_help.c:2981 +#: sql_help.c:3011 msgid "storage_parameter" msgstr "paramètre_stockage" -#: sql_help.c:607 +#: sql_help.c:617 msgid "column_number" msgstr "numéro_colonne" -#: sql_help.c:631 sql_help.c:1868 sql_help.c:4464 +#: sql_help.c:641 sql_help.c:1880 sql_help.c:4483 msgid "large_object_oid" msgstr "oid_large_object" -#: sql_help.c:690 sql_help.c:1358 sql_help.c:2889 +#: sql_help.c:700 sql_help.c:1367 sql_help.c:2901 msgid "compression_method" msgstr "méthode_compression" -#: sql_help.c:692 sql_help.c:1373 +#: sql_help.c:702 sql_help.c:1382 msgid "new_access_method" msgstr "new_access_method" -#: sql_help.c:725 sql_help.c:2523 +#: sql_help.c:735 sql_help.c:2535 msgid "res_proc" msgstr "res_proc" -#: sql_help.c:726 sql_help.c:2524 +#: sql_help.c:736 sql_help.c:2536 msgid "join_proc" msgstr "join_proc" -#: sql_help.c:778 sql_help.c:790 sql_help.c:2541 +#: sql_help.c:788 sql_help.c:800 sql_help.c:2553 msgid "strategy_number" msgstr "numéro_de_stratégie" -#: sql_help.c:780 sql_help.c:781 sql_help.c:784 sql_help.c:785 sql_help.c:791 -#: sql_help.c:792 sql_help.c:794 sql_help.c:795 sql_help.c:2543 sql_help.c:2544 -#: sql_help.c:2547 sql_help.c:2548 +#: sql_help.c:790 sql_help.c:791 sql_help.c:794 sql_help.c:795 sql_help.c:801 +#: sql_help.c:802 sql_help.c:804 sql_help.c:805 sql_help.c:2555 sql_help.c:2556 +#: sql_help.c:2559 sql_help.c:2560 msgid "op_type" msgstr "type_op" -#: sql_help.c:782 sql_help.c:2545 +#: sql_help.c:792 sql_help.c:2557 msgid "sort_family_name" msgstr "nom_famille_tri" -#: sql_help.c:783 sql_help.c:793 sql_help.c:2546 +#: sql_help.c:793 sql_help.c:803 sql_help.c:2558 msgid "support_number" msgstr "numéro_de_support" -#: sql_help.c:787 sql_help.c:2134 sql_help.c:2550 sql_help.c:3087 -#: sql_help.c:3089 +#: sql_help.c:797 sql_help.c:2146 sql_help.c:2562 sql_help.c:3102 +#: sql_help.c:3104 msgid "argument_type" msgstr "type_argument" -#: sql_help.c:818 sql_help.c:821 sql_help.c:910 sql_help.c:1039 sql_help.c:1079 -#: sql_help.c:1546 sql_help.c:1549 sql_help.c:1725 sql_help.c:1779 -#: sql_help.c:1782 sql_help.c:1853 sql_help.c:1878 sql_help.c:1891 -#: sql_help.c:1906 sql_help.c:1963 sql_help.c:1969 sql_help.c:2324 -#: sql_help.c:2336 sql_help.c:2457 sql_help.c:2497 sql_help.c:2574 -#: sql_help.c:2628 sql_help.c:2685 sql_help.c:2737 sql_help.c:2770 -#: sql_help.c:2777 sql_help.c:2886 sql_help.c:2904 sql_help.c:2917 -#: sql_help.c:2993 sql_help.c:3113 sql_help.c:3294 sql_help.c:3517 -#: sql_help.c:3566 sql_help.c:3672 sql_help.c:3879 sql_help.c:3885 -#: sql_help.c:3946 sql_help.c:3978 sql_help.c:4328 sql_help.c:4334 -#: sql_help.c:4452 sql_help.c:4563 sql_help.c:4565 sql_help.c:4627 -#: sql_help.c:4666 sql_help.c:4820 sql_help.c:4822 sql_help.c:4884 -#: sql_help.c:4918 sql_help.c:4970 sql_help.c:5058 sql_help.c:5060 -#: sql_help.c:5122 +#: sql_help.c:828 sql_help.c:831 sql_help.c:920 sql_help.c:1049 sql_help.c:1089 +#: sql_help.c:1558 sql_help.c:1561 sql_help.c:1737 sql_help.c:1791 +#: sql_help.c:1794 sql_help.c:1865 sql_help.c:1890 sql_help.c:1903 +#: sql_help.c:1918 sql_help.c:1975 sql_help.c:1981 sql_help.c:2336 +#: sql_help.c:2348 sql_help.c:2469 sql_help.c:2509 sql_help.c:2586 +#: sql_help.c:2640 sql_help.c:2697 sql_help.c:2749 sql_help.c:2782 +#: sql_help.c:2789 sql_help.c:2898 sql_help.c:2916 sql_help.c:2929 +#: sql_help.c:3008 sql_help.c:3128 sql_help.c:3309 sql_help.c:3532 +#: sql_help.c:3581 sql_help.c:3687 sql_help.c:3894 sql_help.c:3900 +#: sql_help.c:3961 sql_help.c:3993 sql_help.c:4347 sql_help.c:4353 +#: sql_help.c:4471 sql_help.c:4582 sql_help.c:4584 sql_help.c:4646 +#: sql_help.c:4685 sql_help.c:4839 sql_help.c:4841 sql_help.c:4903 +#: sql_help.c:4937 sql_help.c:4989 sql_help.c:5077 sql_help.c:5079 +#: sql_help.c:5141 msgid "table_name" msgstr "nom_table" -#: sql_help.c:823 sql_help.c:2576 +#: sql_help.c:833 sql_help.c:2588 msgid "using_expression" msgstr "expression_using" -#: sql_help.c:824 sql_help.c:2577 +#: sql_help.c:834 sql_help.c:2589 msgid "check_expression" msgstr "expression_check" -#: sql_help.c:897 sql_help.c:899 sql_help.c:901 sql_help.c:2624 +#: sql_help.c:907 sql_help.c:909 sql_help.c:911 sql_help.c:2636 msgid "publication_object" msgstr "objet_publication" -#: sql_help.c:903 sql_help.c:2625 +#: sql_help.c:913 sql_help.c:2637 msgid "publication_parameter" msgstr "paramètre_publication" -#: sql_help.c:909 sql_help.c:2627 +#: sql_help.c:919 sql_help.c:2639 msgid "where publication_object is one of:" msgstr "où publication_object fait partie de :" -#: sql_help.c:952 sql_help.c:1637 sql_help.c:2435 sql_help.c:2662 -#: sql_help.c:3228 +#: sql_help.c:962 sql_help.c:1649 sql_help.c:2447 sql_help.c:2674 +#: sql_help.c:3243 msgid "password" msgstr "mot_de_passe" -#: sql_help.c:953 sql_help.c:1638 sql_help.c:2436 sql_help.c:2663 -#: sql_help.c:3229 +#: sql_help.c:963 sql_help.c:1650 sql_help.c:2448 sql_help.c:2675 +#: sql_help.c:3244 msgid "timestamp" msgstr "horodatage" -#: sql_help.c:957 sql_help.c:961 sql_help.c:964 sql_help.c:967 sql_help.c:1642 -#: sql_help.c:1646 sql_help.c:1649 sql_help.c:1652 sql_help.c:3892 -#: sql_help.c:4341 +#: sql_help.c:967 sql_help.c:971 sql_help.c:974 sql_help.c:977 sql_help.c:1654 +#: sql_help.c:1658 sql_help.c:1661 sql_help.c:1664 sql_help.c:3907 +#: sql_help.c:4360 msgid "database_name" msgstr "nom_base_de_donnée" -#: sql_help.c:1073 sql_help.c:2732 +#: sql_help.c:1083 sql_help.c:2744 msgid "increment" msgstr "incrément" -#: sql_help.c:1074 sql_help.c:2733 +#: sql_help.c:1084 sql_help.c:2745 msgid "minvalue" msgstr "valeur_min" -#: sql_help.c:1075 sql_help.c:2734 +#: sql_help.c:1085 sql_help.c:2746 msgid "maxvalue" msgstr "valeur_max" -#: sql_help.c:1076 sql_help.c:2735 sql_help.c:4561 sql_help.c:4664 -#: sql_help.c:4818 sql_help.c:4987 sql_help.c:5056 +#: sql_help.c:1086 sql_help.c:2747 sql_help.c:4580 sql_help.c:4683 +#: sql_help.c:4837 sql_help.c:5006 sql_help.c:5075 msgid "start" msgstr "début" -#: sql_help.c:1077 sql_help.c:1347 +#: sql_help.c:1087 sql_help.c:1356 msgid "restart" msgstr "nouveau_début" -#: sql_help.c:1078 sql_help.c:2736 +#: sql_help.c:1088 sql_help.c:2748 msgid "cache" msgstr "cache" -#: sql_help.c:1123 +#: sql_help.c:1133 msgid "new_target" msgstr "nouvelle_cible" -#: sql_help.c:1142 sql_help.c:2789 +#: sql_help.c:1152 sql_help.c:2801 msgid "conninfo" msgstr "conninfo" -#: sql_help.c:1144 sql_help.c:1148 sql_help.c:1152 sql_help.c:2790 +#: sql_help.c:1154 sql_help.c:1158 sql_help.c:1162 sql_help.c:2802 msgid "publication_name" msgstr "nom_publication" -#: sql_help.c:1145 sql_help.c:1149 sql_help.c:1153 +#: sql_help.c:1155 sql_help.c:1159 sql_help.c:1163 msgid "publication_option" msgstr "option_publication" -#: sql_help.c:1156 +#: sql_help.c:1166 msgid "refresh_option" msgstr "option_rafraichissement" -#: sql_help.c:1161 sql_help.c:2791 +#: sql_help.c:1171 sql_help.c:2803 msgid "subscription_parameter" msgstr "paramètre_souscription" -#: sql_help.c:1164 +#: sql_help.c:1174 msgid "skip_option" msgstr "option_skip" -#: sql_help.c:1324 sql_help.c:1327 +#: sql_help.c:1333 sql_help.c:1336 msgid "partition_name" msgstr "nom_partition" -#: sql_help.c:1325 sql_help.c:2341 sql_help.c:2922 +#: sql_help.c:1334 sql_help.c:2353 sql_help.c:2934 msgid "partition_bound_spec" msgstr "spec_limite_partition" -#: sql_help.c:1344 sql_help.c:1394 sql_help.c:2936 +#: sql_help.c:1353 sql_help.c:1403 sql_help.c:2948 msgid "sequence_options" msgstr "options_séquence" -#: sql_help.c:1346 +#: sql_help.c:1355 msgid "sequence_option" msgstr "option_séquence" -#: sql_help.c:1360 +#: sql_help.c:1369 msgid "table_constraint_using_index" msgstr "contrainte_table_utilisant_index" -#: sql_help.c:1368 sql_help.c:1369 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1377 sql_help.c:1378 sql_help.c:1379 sql_help.c:1380 msgid "rewrite_rule_name" msgstr "nom_règle_réécriture" -#: sql_help.c:1383 sql_help.c:2353 sql_help.c:2961 +#: sql_help.c:1392 sql_help.c:2365 sql_help.c:2973 msgid "and partition_bound_spec is:" msgstr "et partition_bound_spec est :" -#: sql_help.c:1384 sql_help.c:1385 sql_help.c:1386 sql_help.c:2354 -#: sql_help.c:2355 sql_help.c:2356 sql_help.c:2962 sql_help.c:2963 -#: sql_help.c:2964 +#: sql_help.c:1393 sql_help.c:1394 sql_help.c:1395 sql_help.c:2366 +#: sql_help.c:2367 sql_help.c:2368 sql_help.c:2974 sql_help.c:2975 +#: sql_help.c:2976 msgid "partition_bound_expr" msgstr "expr_limite_partition" -#: sql_help.c:1387 sql_help.c:1388 sql_help.c:2357 sql_help.c:2358 -#: sql_help.c:2965 sql_help.c:2966 +#: sql_help.c:1396 sql_help.c:1397 sql_help.c:2369 sql_help.c:2370 +#: sql_help.c:2977 sql_help.c:2978 msgid "numeric_literal" msgstr "numeric_literal" -#: sql_help.c:1389 +#: sql_help.c:1398 msgid "and column_constraint is:" msgstr "et contrainte_colonne est :" -#: sql_help.c:1392 sql_help.c:2348 sql_help.c:2389 sql_help.c:2598 -#: sql_help.c:2934 +#: sql_help.c:1401 sql_help.c:2360 sql_help.c:2401 sql_help.c:2610 +#: sql_help.c:2946 msgid "default_expr" msgstr "expression_par_défaut" -#: sql_help.c:1393 sql_help.c:2349 sql_help.c:2935 +#: sql_help.c:1402 sql_help.c:2361 sql_help.c:2947 msgid "generation_expr" msgstr "expression_génération" -#: sql_help.c:1395 sql_help.c:1396 sql_help.c:1405 sql_help.c:1407 -#: sql_help.c:1411 sql_help.c:2937 sql_help.c:2938 sql_help.c:2947 -#: sql_help.c:2949 sql_help.c:2953 +#: sql_help.c:1404 sql_help.c:1405 sql_help.c:1414 sql_help.c:1416 +#: sql_help.c:1420 sql_help.c:2949 sql_help.c:2950 sql_help.c:2959 +#: sql_help.c:2961 sql_help.c:2965 msgid "index_parameters" msgstr "paramètres_index" -#: sql_help.c:1397 sql_help.c:1414 sql_help.c:2939 sql_help.c:2956 +#: sql_help.c:1406 sql_help.c:1423 sql_help.c:2951 sql_help.c:2968 msgid "reftable" msgstr "table_référence" -#: sql_help.c:1398 sql_help.c:1415 sql_help.c:2940 sql_help.c:2957 +#: sql_help.c:1407 sql_help.c:1424 sql_help.c:2952 sql_help.c:2969 msgid "refcolumn" msgstr "colonne_référence" -#: sql_help.c:1399 sql_help.c:1400 sql_help.c:1416 sql_help.c:1417 -#: sql_help.c:2941 sql_help.c:2942 sql_help.c:2958 sql_help.c:2959 +#: sql_help.c:1408 sql_help.c:1409 sql_help.c:1425 sql_help.c:1426 +#: sql_help.c:2953 sql_help.c:2954 sql_help.c:2970 sql_help.c:2971 msgid "referential_action" msgstr "action" -#: sql_help.c:1401 sql_help.c:2350 sql_help.c:2943 +#: sql_help.c:1410 sql_help.c:2362 sql_help.c:2955 msgid "and table_constraint is:" msgstr "et contrainte_table est :" -#: sql_help.c:1409 sql_help.c:2951 +#: sql_help.c:1418 sql_help.c:2963 msgid "exclude_element" msgstr "élément_exclusion" -#: sql_help.c:1410 sql_help.c:2952 sql_help.c:4559 sql_help.c:4662 -#: sql_help.c:4816 sql_help.c:4985 sql_help.c:5054 +#: sql_help.c:1419 sql_help.c:2964 sql_help.c:4578 sql_help.c:4681 +#: sql_help.c:4835 sql_help.c:5004 sql_help.c:5073 msgid "operator" msgstr "opérateur" -#: sql_help.c:1412 sql_help.c:2469 sql_help.c:2954 +#: sql_help.c:1421 sql_help.c:2481 sql_help.c:2966 msgid "predicate" msgstr "prédicat" -#: sql_help.c:1418 +#: sql_help.c:1427 msgid "and table_constraint_using_index is:" msgstr "et contrainte_table_utilisant_index est :" -#: sql_help.c:1421 sql_help.c:2967 +#: sql_help.c:1430 sql_help.c:2979 msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:" msgstr "dans les contraintes UNIQUE, PRIMARY KEY et EXCLUDE, les paramètres_index sont :" -#: sql_help.c:1426 sql_help.c:2972 +#: sql_help.c:1435 sql_help.c:2984 msgid "exclude_element in an EXCLUDE constraint is:" msgstr "élément_exclusion dans une contrainte EXCLUDE est :" -#: sql_help.c:1429 sql_help.c:2462 sql_help.c:2899 sql_help.c:2912 -#: sql_help.c:2926 sql_help.c:2975 sql_help.c:3991 +#: sql_help.c:1439 sql_help.c:2474 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:2938 sql_help.c:2988 sql_help.c:4006 msgid "opclass" msgstr "classe_d_opérateur" -#: sql_help.c:1430 sql_help.c:2976 +#: sql_help.c:1440 sql_help.c:2475 sql_help.c:2989 +msgid "opclass_parameter" +msgstr "paramètre_opclass" + +#: sql_help.c:1442 sql_help.c:2991 msgid "referential_action in a FOREIGN KEY/REFERENCES constraint is:" msgstr "referential_action dans une contrainte FOREIGN KEY/REFERENCES est :" -#: sql_help.c:1448 sql_help.c:1451 sql_help.c:3013 +#: sql_help.c:1460 sql_help.c:1463 sql_help.c:3028 msgid "tablespace_option" msgstr "option_tablespace" -#: sql_help.c:1472 sql_help.c:1475 sql_help.c:1481 sql_help.c:1485 +#: sql_help.c:1484 sql_help.c:1487 sql_help.c:1493 sql_help.c:1497 msgid "token_type" msgstr "type_jeton" -#: sql_help.c:1473 sql_help.c:1476 +#: sql_help.c:1485 sql_help.c:1488 msgid "dictionary_name" msgstr "nom_dictionnaire" -#: sql_help.c:1478 sql_help.c:1482 +#: sql_help.c:1490 sql_help.c:1494 msgid "old_dictionary" msgstr "ancien_dictionnaire" -#: sql_help.c:1479 sql_help.c:1483 +#: sql_help.c:1491 sql_help.c:1495 msgid "new_dictionary" msgstr "nouveau_dictionnaire" -#: sql_help.c:1578 sql_help.c:1592 sql_help.c:1595 sql_help.c:1596 -#: sql_help.c:3166 +#: sql_help.c:1590 sql_help.c:1604 sql_help.c:1607 sql_help.c:1608 +#: sql_help.c:3181 msgid "attribute_name" msgstr "nom_attribut" -#: sql_help.c:1579 +#: sql_help.c:1591 msgid "new_attribute_name" msgstr "nouveau_nom_attribut" -#: sql_help.c:1583 sql_help.c:1587 +#: sql_help.c:1595 sql_help.c:1599 msgid "new_enum_value" msgstr "nouvelle_valeur_enum" -#: sql_help.c:1584 +#: sql_help.c:1596 msgid "neighbor_enum_value" msgstr "valeur_enum_voisine" -#: sql_help.c:1586 +#: sql_help.c:1598 msgid "existing_enum_value" msgstr "valeur_enum_existante" -#: sql_help.c:1589 +#: sql_help.c:1601 msgid "property" msgstr "propriété" -#: sql_help.c:1665 sql_help.c:2333 sql_help.c:2342 sql_help.c:2748 -#: sql_help.c:3246 sql_help.c:3697 sql_help.c:3901 sql_help.c:3947 -#: sql_help.c:4350 +#: sql_help.c:1677 sql_help.c:2345 sql_help.c:2354 sql_help.c:2760 +#: sql_help.c:3261 sql_help.c:3712 sql_help.c:3916 sql_help.c:3962 +#: sql_help.c:4369 msgid "server_name" msgstr "nom_serveur" -#: sql_help.c:1697 sql_help.c:1700 sql_help.c:3261 +#: sql_help.c:1709 sql_help.c:1712 sql_help.c:3276 msgid "view_option_name" msgstr "nom_option_vue" -#: sql_help.c:1698 sql_help.c:3262 +#: sql_help.c:1710 sql_help.c:3277 msgid "view_option_value" msgstr "valeur_option_vue" -#: sql_help.c:1719 sql_help.c:1720 sql_help.c:4957 sql_help.c:4958 +#: sql_help.c:1731 sql_help.c:1732 sql_help.c:4976 sql_help.c:4977 msgid "table_and_columns" msgstr "table_et_colonnes" -#: sql_help.c:1721 sql_help.c:1784 sql_help.c:1975 sql_help.c:3745 -#: sql_help.c:4185 sql_help.c:4959 +#: sql_help.c:1733 sql_help.c:1796 sql_help.c:1987 sql_help.c:3760 +#: sql_help.c:4204 sql_help.c:4978 msgid "where option can be one of:" msgstr "où option fait partie de :" -#: sql_help.c:1722 sql_help.c:1723 sql_help.c:1785 sql_help.c:1977 -#: sql_help.c:1980 sql_help.c:2159 sql_help.c:3746 sql_help.c:3747 -#: sql_help.c:3748 sql_help.c:3749 sql_help.c:3750 sql_help.c:3751 -#: sql_help.c:3752 sql_help.c:3753 sql_help.c:4186 sql_help.c:4188 -#: sql_help.c:4960 sql_help.c:4961 sql_help.c:4962 sql_help.c:4963 -#: sql_help.c:4964 sql_help.c:4965 sql_help.c:4966 sql_help.c:4967 +#: sql_help.c:1734 sql_help.c:1735 sql_help.c:1797 sql_help.c:1989 +#: sql_help.c:1992 sql_help.c:2171 sql_help.c:3761 sql_help.c:3762 +#: sql_help.c:3763 sql_help.c:3764 sql_help.c:3765 sql_help.c:3766 +#: sql_help.c:3767 sql_help.c:3768 sql_help.c:4205 sql_help.c:4207 +#: sql_help.c:4979 sql_help.c:4980 sql_help.c:4981 sql_help.c:4982 +#: sql_help.c:4983 sql_help.c:4984 sql_help.c:4985 sql_help.c:4986 msgid "boolean" msgstr "boolean" -#: sql_help.c:1724 sql_help.c:4969 +#: sql_help.c:1736 sql_help.c:4988 msgid "and table_and_columns is:" msgstr "et table_et_colonnes est :" -#: sql_help.c:1740 sql_help.c:4723 sql_help.c:4725 sql_help.c:4749 +#: sql_help.c:1752 sql_help.c:4742 sql_help.c:4744 sql_help.c:4768 msgid "transaction_mode" msgstr "mode_transaction" -#: sql_help.c:1741 sql_help.c:4726 sql_help.c:4750 +#: sql_help.c:1753 sql_help.c:4745 sql_help.c:4769 msgid "where transaction_mode is one of:" msgstr "où mode_transaction fait partie de :" -#: sql_help.c:1750 sql_help.c:4569 sql_help.c:4578 sql_help.c:4582 -#: sql_help.c:4586 sql_help.c:4589 sql_help.c:4826 sql_help.c:4835 -#: sql_help.c:4839 sql_help.c:4843 sql_help.c:4846 sql_help.c:5064 -#: sql_help.c:5073 sql_help.c:5077 sql_help.c:5081 sql_help.c:5084 +#: sql_help.c:1762 sql_help.c:4588 sql_help.c:4597 sql_help.c:4601 +#: sql_help.c:4605 sql_help.c:4608 sql_help.c:4845 sql_help.c:4854 +#: sql_help.c:4858 sql_help.c:4862 sql_help.c:4865 sql_help.c:5083 +#: sql_help.c:5092 sql_help.c:5096 sql_help.c:5100 sql_help.c:5103 msgid "argument" msgstr "argument" -#: sql_help.c:1850 +#: sql_help.c:1862 msgid "relation_name" msgstr "nom_relation" -#: sql_help.c:1855 sql_help.c:3895 sql_help.c:4344 +#: sql_help.c:1867 sql_help.c:3910 sql_help.c:4363 msgid "domain_name" msgstr "nom_domaine" -#: sql_help.c:1877 +#: sql_help.c:1889 msgid "policy_name" msgstr "nom_politique" -#: sql_help.c:1890 +#: sql_help.c:1902 msgid "rule_name" msgstr "nom_règle" -#: sql_help.c:1909 sql_help.c:4483 +#: sql_help.c:1921 sql_help.c:4502 msgid "string_literal" msgstr "littéral_chaîne" -#: sql_help.c:1934 sql_help.c:4150 sql_help.c:4397 +#: sql_help.c:1946 sql_help.c:4169 sql_help.c:4416 msgid "transaction_id" msgstr "id_transaction" -#: sql_help.c:1965 sql_help.c:1972 sql_help.c:4017 +#: sql_help.c:1977 sql_help.c:1984 sql_help.c:4032 msgid "filename" msgstr "nom_fichier" -#: sql_help.c:1966 sql_help.c:1973 sql_help.c:2687 sql_help.c:2688 -#: sql_help.c:2689 +#: sql_help.c:1978 sql_help.c:1985 sql_help.c:2699 sql_help.c:2700 +#: sql_help.c:2701 msgid "command" msgstr "commande" -#: sql_help.c:1968 sql_help.c:2686 sql_help.c:3116 sql_help.c:3297 -#: sql_help.c:4001 sql_help.c:4078 sql_help.c:4081 sql_help.c:4552 -#: sql_help.c:4554 sql_help.c:4655 sql_help.c:4657 sql_help.c:4809 -#: sql_help.c:4811 sql_help.c:4927 sql_help.c:5047 sql_help.c:5049 +#: sql_help.c:1980 sql_help.c:2698 sql_help.c:3131 sql_help.c:3312 +#: sql_help.c:4016 sql_help.c:4095 sql_help.c:4098 sql_help.c:4571 +#: sql_help.c:4573 sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 +#: sql_help.c:4830 sql_help.c:4946 sql_help.c:5066 sql_help.c:5068 msgid "condition" msgstr "condition" -#: sql_help.c:1971 sql_help.c:2503 sql_help.c:2999 sql_help.c:3263 -#: sql_help.c:3281 sql_help.c:3982 +#: sql_help.c:1983 sql_help.c:2515 sql_help.c:3014 sql_help.c:3278 +#: sql_help.c:3296 sql_help.c:3997 msgid "query" msgstr "requête" -#: sql_help.c:1976 +#: sql_help.c:1988 msgid "format_name" msgstr "nom_format" -#: sql_help.c:1978 +#: sql_help.c:1990 msgid "delimiter_character" msgstr "caractère_délimiteur" -#: sql_help.c:1979 +#: sql_help.c:1991 msgid "null_string" msgstr "chaîne_null" -#: sql_help.c:1981 +#: sql_help.c:1993 msgid "quote_character" msgstr "caractère_guillemet" -#: sql_help.c:1982 +#: sql_help.c:1994 msgid "escape_character" msgstr "chaîne_d_échappement" -#: sql_help.c:1986 +#: sql_help.c:1998 msgid "encoding_name" msgstr "nom_encodage" -#: sql_help.c:1997 +#: sql_help.c:2009 msgid "access_method_type" msgstr "access_method_type" -#: sql_help.c:2068 sql_help.c:2087 sql_help.c:2090 +#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2102 msgid "arg_data_type" msgstr "type_données_arg" -#: sql_help.c:2069 sql_help.c:2091 sql_help.c:2099 +#: sql_help.c:2081 sql_help.c:2103 sql_help.c:2111 msgid "sfunc" msgstr "sfunc" -#: sql_help.c:2070 sql_help.c:2092 sql_help.c:2100 +#: sql_help.c:2082 sql_help.c:2104 sql_help.c:2112 msgid "state_data_type" msgstr "type_de_données_statut" -#: sql_help.c:2071 sql_help.c:2093 sql_help.c:2101 +#: sql_help.c:2083 sql_help.c:2105 sql_help.c:2113 msgid "state_data_size" msgstr "taille_de_données_statut" -#: sql_help.c:2072 sql_help.c:2094 sql_help.c:2102 +#: sql_help.c:2084 sql_help.c:2106 sql_help.c:2114 msgid "ffunc" msgstr "ffunc" -#: sql_help.c:2073 sql_help.c:2103 +#: sql_help.c:2085 sql_help.c:2115 msgid "combinefunc" msgstr "combinefunc" -#: sql_help.c:2074 sql_help.c:2104 +#: sql_help.c:2086 sql_help.c:2116 msgid "serialfunc" msgstr "serialfunc" -#: sql_help.c:2075 sql_help.c:2105 +#: sql_help.c:2087 sql_help.c:2117 msgid "deserialfunc" msgstr "deserialfunc" -#: sql_help.c:2076 sql_help.c:2095 sql_help.c:2106 +#: sql_help.c:2088 sql_help.c:2107 sql_help.c:2118 msgid "initial_condition" msgstr "condition_initiale" -#: sql_help.c:2077 sql_help.c:2107 +#: sql_help.c:2089 sql_help.c:2119 msgid "msfunc" msgstr "msfunc" -#: sql_help.c:2078 sql_help.c:2108 +#: sql_help.c:2090 sql_help.c:2120 msgid "minvfunc" msgstr "minvfunc" -#: sql_help.c:2079 sql_help.c:2109 +#: sql_help.c:2091 sql_help.c:2121 msgid "mstate_data_type" msgstr "m_type_de_données_statut" -#: sql_help.c:2080 sql_help.c:2110 +#: sql_help.c:2092 sql_help.c:2122 msgid "mstate_data_size" msgstr "m_taille_de_données_statut" -#: sql_help.c:2081 sql_help.c:2111 +#: sql_help.c:2093 sql_help.c:2123 msgid "mffunc" msgstr "mffunc" -#: sql_help.c:2082 sql_help.c:2112 +#: sql_help.c:2094 sql_help.c:2124 msgid "minitial_condition" msgstr "m_condition_initiale" -#: sql_help.c:2083 sql_help.c:2113 +#: sql_help.c:2095 sql_help.c:2125 msgid "sort_operator" msgstr "opérateur_de_tri" -#: sql_help.c:2096 +#: sql_help.c:2108 msgid "or the old syntax" msgstr "ou l'ancienne syntaxe" -#: sql_help.c:2098 +#: sql_help.c:2110 msgid "base_type" msgstr "type_base" -#: sql_help.c:2155 sql_help.c:2202 +#: sql_help.c:2167 sql_help.c:2214 msgid "locale" msgstr "locale" -#: sql_help.c:2156 sql_help.c:2203 +#: sql_help.c:2168 sql_help.c:2215 msgid "lc_collate" msgstr "lc_collate" -#: sql_help.c:2157 sql_help.c:2204 +#: sql_help.c:2169 sql_help.c:2216 msgid "lc_ctype" msgstr "lc_ctype" -#: sql_help.c:2158 sql_help.c:4450 +#: sql_help.c:2170 sql_help.c:4469 msgid "provider" msgstr "fournisseur" -#: sql_help.c:2160 sql_help.c:2263 +#: sql_help.c:2172 sql_help.c:2275 msgid "version" msgstr "version" -#: sql_help.c:2162 +#: sql_help.c:2174 msgid "existing_collation" msgstr "collationnement_existant" -#: sql_help.c:2172 +#: sql_help.c:2184 msgid "source_encoding" msgstr "encodage_source" -#: sql_help.c:2173 +#: sql_help.c:2185 msgid "dest_encoding" msgstr "encodage_destination" -#: sql_help.c:2199 sql_help.c:3039 +#: sql_help.c:2211 sql_help.c:3054 msgid "template" msgstr "modèle" -#: sql_help.c:2200 +#: sql_help.c:2212 msgid "encoding" msgstr "encodage" -#: sql_help.c:2201 +#: sql_help.c:2213 msgid "strategy" msgstr "stratégie" -#: sql_help.c:2205 +#: sql_help.c:2217 msgid "icu_locale" msgstr "icu_locale" -#: sql_help.c:2206 +#: sql_help.c:2218 msgid "locale_provider" msgstr "locale_provider" -#: sql_help.c:2207 +#: sql_help.c:2219 msgid "collation_version" msgstr "collation_version" -#: sql_help.c:2212 +#: sql_help.c:2224 msgid "oid" msgstr "oid" -#: sql_help.c:2232 +#: sql_help.c:2244 msgid "constraint" msgstr "contrainte" -#: sql_help.c:2233 +#: sql_help.c:2245 msgid "where constraint is:" msgstr "où la contrainte est :" -#: sql_help.c:2247 sql_help.c:2684 sql_help.c:3112 +#: sql_help.c:2259 sql_help.c:2696 sql_help.c:3127 msgid "event" msgstr "événement" -#: sql_help.c:2248 +#: sql_help.c:2260 msgid "filter_variable" msgstr "filter_variable" -#: sql_help.c:2249 +#: sql_help.c:2261 msgid "filter_value" msgstr "filtre_valeur" -#: sql_help.c:2345 sql_help.c:2931 +#: sql_help.c:2357 sql_help.c:2943 msgid "where column_constraint is:" msgstr "où contrainte_colonne est :" -#: sql_help.c:2390 +#: sql_help.c:2402 msgid "rettype" msgstr "type_en_retour" -#: sql_help.c:2392 +#: sql_help.c:2404 msgid "column_type" msgstr "type_colonne" -#: sql_help.c:2401 sql_help.c:2604 +#: sql_help.c:2413 sql_help.c:2616 msgid "definition" msgstr "définition" -#: sql_help.c:2402 sql_help.c:2605 +#: sql_help.c:2414 sql_help.c:2617 msgid "obj_file" msgstr "fichier_objet" -#: sql_help.c:2403 sql_help.c:2606 +#: sql_help.c:2415 sql_help.c:2618 msgid "link_symbol" msgstr "symbole_link" -#: sql_help.c:2404 sql_help.c:2607 +#: sql_help.c:2416 sql_help.c:2619 msgid "sql_body" msgstr "corps_sql" -#: sql_help.c:2442 sql_help.c:2669 sql_help.c:3235 +#: sql_help.c:2454 sql_help.c:2681 sql_help.c:3250 msgid "uid" msgstr "uid" -#: sql_help.c:2458 sql_help.c:2499 sql_help.c:2900 sql_help.c:2913 -#: sql_help.c:2927 sql_help.c:2995 +#: sql_help.c:2470 sql_help.c:2511 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:2939 sql_help.c:3010 msgid "method" msgstr "méthode" -#: sql_help.c:2463 -msgid "opclass_parameter" -msgstr "paramètre_opclass" - -#: sql_help.c:2480 +#: sql_help.c:2492 msgid "call_handler" msgstr "gestionnaire_d_appel" -#: sql_help.c:2481 +#: sql_help.c:2493 msgid "inline_handler" msgstr "gestionnaire_en_ligne" -#: sql_help.c:2482 +#: sql_help.c:2494 msgid "valfunction" msgstr "fonction_val" -#: sql_help.c:2521 +#: sql_help.c:2533 msgid "com_op" msgstr "com_op" -#: sql_help.c:2522 +#: sql_help.c:2534 msgid "neg_op" msgstr "neg_op" -#: sql_help.c:2540 +#: sql_help.c:2552 msgid "family_name" msgstr "nom_famille" -#: sql_help.c:2551 +#: sql_help.c:2563 msgid "storage_type" msgstr "type_stockage" -#: sql_help.c:2690 sql_help.c:3119 +#: sql_help.c:2702 sql_help.c:3134 msgid "where event can be one of:" msgstr "où événement fait partie de :" -#: sql_help.c:2710 sql_help.c:2712 +#: sql_help.c:2722 sql_help.c:2724 msgid "schema_element" msgstr "élément_schéma" -#: sql_help.c:2749 +#: sql_help.c:2761 msgid "server_type" msgstr "type_serveur" -#: sql_help.c:2750 +#: sql_help.c:2762 msgid "server_version" msgstr "version_serveur" -#: sql_help.c:2751 sql_help.c:3898 sql_help.c:4347 +#: sql_help.c:2763 sql_help.c:3913 sql_help.c:4366 msgid "fdw_name" msgstr "nom_fdw" -#: sql_help.c:2768 sql_help.c:2771 +#: sql_help.c:2780 sql_help.c:2783 msgid "statistics_name" msgstr "nom_statistique" -#: sql_help.c:2772 +#: sql_help.c:2784 msgid "statistics_kind" msgstr "statistics_kind" -#: sql_help.c:2788 +#: sql_help.c:2800 msgid "subscription_name" msgstr "nom_souscription" -#: sql_help.c:2893 +#: sql_help.c:2905 msgid "source_table" msgstr "table_source" -#: sql_help.c:2894 +#: sql_help.c:2906 msgid "like_option" msgstr "option_like" -#: sql_help.c:2960 +#: sql_help.c:2972 msgid "and like_option is:" msgstr "et option_like est :" -#: sql_help.c:3012 +#: sql_help.c:3027 msgid "directory" msgstr "répertoire" -#: sql_help.c:3026 +#: sql_help.c:3041 msgid "parser_name" msgstr "nom_analyseur" -#: sql_help.c:3027 +#: sql_help.c:3042 msgid "source_config" msgstr "configuration_source" -#: sql_help.c:3056 +#: sql_help.c:3071 msgid "start_function" msgstr "fonction_start" -#: sql_help.c:3057 +#: sql_help.c:3072 msgid "gettoken_function" msgstr "fonction_gettoken" -#: sql_help.c:3058 +#: sql_help.c:3073 msgid "end_function" msgstr "fonction_end" -#: sql_help.c:3059 +#: sql_help.c:3074 msgid "lextypes_function" msgstr "fonction_lextypes" -#: sql_help.c:3060 +#: sql_help.c:3075 msgid "headline_function" msgstr "fonction_headline" -#: sql_help.c:3072 +#: sql_help.c:3087 msgid "init_function" msgstr "fonction_init" -#: sql_help.c:3073 +#: sql_help.c:3088 msgid "lexize_function" msgstr "fonction_lexize" -#: sql_help.c:3086 +#: sql_help.c:3101 msgid "from_sql_function_name" msgstr "nom_fonction_from_sql" -#: sql_help.c:3088 +#: sql_help.c:3103 msgid "to_sql_function_name" msgstr "nom_fonction_to_sql" -#: sql_help.c:3114 +#: sql_help.c:3129 msgid "referenced_table_name" msgstr "nom_table_référencée" -#: sql_help.c:3115 +#: sql_help.c:3130 msgid "transition_relation_name" msgstr "nom_relation_transition" -#: sql_help.c:3118 +#: sql_help.c:3133 msgid "arguments" msgstr "arguments" -#: sql_help.c:3170 +#: sql_help.c:3185 msgid "label" msgstr "label" -#: sql_help.c:3172 +#: sql_help.c:3187 msgid "subtype" msgstr "sous_type" -#: sql_help.c:3173 +#: sql_help.c:3188 msgid "subtype_operator_class" msgstr "classe_opérateur_sous_type" -#: sql_help.c:3175 +#: sql_help.c:3190 msgid "canonical_function" msgstr "fonction_canonique" -#: sql_help.c:3176 +#: sql_help.c:3191 msgid "subtype_diff_function" msgstr "fonction_diff_sous_type" -#: sql_help.c:3177 +#: sql_help.c:3192 msgid "multirange_type_name" msgstr "nom_type_multirange" -#: sql_help.c:3179 +#: sql_help.c:3194 msgid "input_function" msgstr "fonction_en_sortie" -#: sql_help.c:3180 +#: sql_help.c:3195 msgid "output_function" msgstr "fonction_en_sortie" -#: sql_help.c:3181 +#: sql_help.c:3196 msgid "receive_function" msgstr "fonction_receive" -#: sql_help.c:3182 +#: sql_help.c:3197 msgid "send_function" msgstr "fonction_send" -#: sql_help.c:3183 +#: sql_help.c:3198 msgid "type_modifier_input_function" msgstr "fonction_en_entrée_modificateur_type" -#: sql_help.c:3184 +#: sql_help.c:3199 msgid "type_modifier_output_function" msgstr "fonction_en_sortie_modificateur_type" -#: sql_help.c:3185 +#: sql_help.c:3200 msgid "analyze_function" msgstr "fonction_analyze" -#: sql_help.c:3186 +#: sql_help.c:3201 msgid "subscript_function" msgstr "fonction_indice" -#: sql_help.c:3187 +#: sql_help.c:3202 msgid "internallength" msgstr "longueur_interne" -#: sql_help.c:3188 +#: sql_help.c:3203 msgid "alignment" msgstr "alignement" -#: sql_help.c:3189 +#: sql_help.c:3204 msgid "storage" msgstr "stockage" -#: sql_help.c:3190 +#: sql_help.c:3205 msgid "like_type" msgstr "type_like" -#: sql_help.c:3191 +#: sql_help.c:3206 msgid "category" msgstr "catégorie" -#: sql_help.c:3192 +#: sql_help.c:3207 msgid "preferred" msgstr "préféré" -#: sql_help.c:3193 +#: sql_help.c:3208 msgid "default" msgstr "par défaut" -#: sql_help.c:3194 +#: sql_help.c:3209 msgid "element" msgstr "élément" -#: sql_help.c:3195 +#: sql_help.c:3210 msgid "delimiter" msgstr "délimiteur" -#: sql_help.c:3196 +#: sql_help.c:3211 msgid "collatable" msgstr "collationnable" -#: sql_help.c:3293 sql_help.c:3977 sql_help.c:4067 sql_help.c:4547 -#: sql_help.c:4649 sql_help.c:4804 sql_help.c:4917 sql_help.c:5042 +#: sql_help.c:3308 sql_help.c:3992 sql_help.c:4084 sql_help.c:4566 +#: sql_help.c:4668 sql_help.c:4823 sql_help.c:4936 sql_help.c:5061 msgid "with_query" msgstr "requête_with" -#: sql_help.c:3295 sql_help.c:3979 sql_help.c:4566 sql_help.c:4572 -#: sql_help.c:4575 sql_help.c:4579 sql_help.c:4583 sql_help.c:4591 -#: sql_help.c:4823 sql_help.c:4829 sql_help.c:4832 sql_help.c:4836 -#: sql_help.c:4840 sql_help.c:4848 sql_help.c:4919 sql_help.c:5061 -#: sql_help.c:5067 sql_help.c:5070 sql_help.c:5074 sql_help.c:5078 -#: sql_help.c:5086 +#: sql_help.c:3310 sql_help.c:3994 sql_help.c:4585 sql_help.c:4591 +#: sql_help.c:4594 sql_help.c:4598 sql_help.c:4602 sql_help.c:4610 +#: sql_help.c:4842 sql_help.c:4848 sql_help.c:4851 sql_help.c:4855 +#: sql_help.c:4859 sql_help.c:4867 sql_help.c:4938 sql_help.c:5080 +#: sql_help.c:5086 sql_help.c:5089 sql_help.c:5093 sql_help.c:5097 +#: sql_help.c:5105 msgid "alias" msgstr "alias" -#: sql_help.c:3296 sql_help.c:4551 sql_help.c:4593 sql_help.c:4595 -#: sql_help.c:4599 sql_help.c:4601 sql_help.c:4602 sql_help.c:4603 -#: sql_help.c:4654 sql_help.c:4808 sql_help.c:4850 sql_help.c:4852 -#: sql_help.c:4856 sql_help.c:4858 sql_help.c:4859 sql_help.c:4860 -#: sql_help.c:4926 sql_help.c:5046 sql_help.c:5088 sql_help.c:5090 -#: sql_help.c:5094 sql_help.c:5096 sql_help.c:5097 sql_help.c:5098 +#: sql_help.c:3311 sql_help.c:4570 sql_help.c:4612 sql_help.c:4614 +#: sql_help.c:4618 sql_help.c:4620 sql_help.c:4621 sql_help.c:4622 +#: sql_help.c:4673 sql_help.c:4827 sql_help.c:4869 sql_help.c:4871 +#: sql_help.c:4875 sql_help.c:4877 sql_help.c:4878 sql_help.c:4879 +#: sql_help.c:4945 sql_help.c:5065 sql_help.c:5107 sql_help.c:5109 +#: sql_help.c:5113 sql_help.c:5115 sql_help.c:5116 sql_help.c:5117 msgid "from_item" msgstr "élément_from" -#: sql_help.c:3298 sql_help.c:3779 sql_help.c:4117 sql_help.c:4928 +#: sql_help.c:3313 sql_help.c:3794 sql_help.c:4136 sql_help.c:4947 msgid "cursor_name" msgstr "nom_curseur" -#: sql_help.c:3299 sql_help.c:3985 sql_help.c:4929 +#: sql_help.c:3314 sql_help.c:4000 sql_help.c:4948 msgid "output_expression" msgstr "expression_en_sortie" -#: sql_help.c:3300 sql_help.c:3986 sql_help.c:4550 sql_help.c:4652 -#: sql_help.c:4807 sql_help.c:4930 sql_help.c:5045 +#: sql_help.c:3315 sql_help.c:4001 sql_help.c:4569 sql_help.c:4671 +#: sql_help.c:4826 sql_help.c:4949 sql_help.c:5064 msgid "output_name" msgstr "nom_en_sortie" -#: sql_help.c:3316 +#: sql_help.c:3331 msgid "code" msgstr "code" -#: sql_help.c:3721 +#: sql_help.c:3736 msgid "parameter" msgstr "paramètre" -#: sql_help.c:3743 sql_help.c:3744 sql_help.c:4142 +#: sql_help.c:3758 sql_help.c:3759 sql_help.c:4161 msgid "statement" msgstr "instruction" -#: sql_help.c:3778 sql_help.c:4116 +#: sql_help.c:3793 sql_help.c:4135 msgid "direction" msgstr "direction" -#: sql_help.c:3780 sql_help.c:4118 +#: sql_help.c:3795 sql_help.c:4137 msgid "where direction can be one of:" msgstr "où direction fait partie de :" -#: sql_help.c:3781 sql_help.c:3782 sql_help.c:3783 sql_help.c:3784 -#: sql_help.c:3785 sql_help.c:4119 sql_help.c:4120 sql_help.c:4121 -#: sql_help.c:4122 sql_help.c:4123 sql_help.c:4560 sql_help.c:4562 -#: sql_help.c:4663 sql_help.c:4665 sql_help.c:4817 sql_help.c:4819 -#: sql_help.c:4986 sql_help.c:4988 sql_help.c:5055 sql_help.c:5057 +#: sql_help.c:3796 sql_help.c:3797 sql_help.c:3798 sql_help.c:3799 +#: sql_help.c:3800 sql_help.c:4138 sql_help.c:4139 sql_help.c:4140 +#: sql_help.c:4141 sql_help.c:4142 sql_help.c:4579 sql_help.c:4581 +#: sql_help.c:4682 sql_help.c:4684 sql_help.c:4836 sql_help.c:4838 +#: sql_help.c:5005 sql_help.c:5007 sql_help.c:5074 sql_help.c:5076 msgid "count" msgstr "nombre" -#: sql_help.c:3888 sql_help.c:4337 +#: sql_help.c:3903 sql_help.c:4356 msgid "sequence_name" msgstr "nom_séquence" -#: sql_help.c:3906 sql_help.c:4355 +#: sql_help.c:3921 sql_help.c:4374 msgid "arg_name" msgstr "nom_argument" -#: sql_help.c:3907 sql_help.c:4356 +#: sql_help.c:3922 sql_help.c:4375 msgid "arg_type" msgstr "type_arg" -#: sql_help.c:3914 sql_help.c:4363 +#: sql_help.c:3929 sql_help.c:4382 msgid "loid" msgstr "loid" -#: sql_help.c:3945 +#: sql_help.c:3960 msgid "remote_schema" msgstr "schema_distant" -#: sql_help.c:3948 +#: sql_help.c:3963 msgid "local_schema" msgstr "schéma_local" -#: sql_help.c:3983 +#: sql_help.c:3998 msgid "conflict_target" msgstr "cible_conflit" -#: sql_help.c:3984 +#: sql_help.c:3999 msgid "conflict_action" msgstr "action_conflit" -#: sql_help.c:3987 +#: sql_help.c:4002 msgid "where conflict_target can be one of:" msgstr "où cible_conflit fait partie de :" -#: sql_help.c:3988 +#: sql_help.c:4003 msgid "index_column_name" msgstr "index_nom_colonne" -#: sql_help.c:3989 +#: sql_help.c:4004 msgid "index_expression" msgstr "index_expression" -#: sql_help.c:3992 +#: sql_help.c:4007 msgid "index_predicate" msgstr "index_prédicat" -#: sql_help.c:3994 +#: sql_help.c:4009 msgid "and conflict_action is one of:" msgstr "où action_conflit fait partie de :" -#: sql_help.c:4000 sql_help.c:4925 +#: sql_help.c:4015 sql_help.c:4109 sql_help.c:4944 msgid "sub-SELECT" msgstr "sous-SELECT" -#: sql_help.c:4009 sql_help.c:4131 sql_help.c:4901 +#: sql_help.c:4024 sql_help.c:4150 sql_help.c:4920 msgid "channel" msgstr "canal" -#: sql_help.c:4031 +#: sql_help.c:4046 msgid "lockmode" msgstr "mode_de_verrou" -#: sql_help.c:4032 +#: sql_help.c:4047 msgid "where lockmode is one of:" msgstr "où mode_de_verrou fait partie de :" -#: sql_help.c:4068 +#: sql_help.c:4085 msgid "target_table_name" msgstr "target_table_name" -#: sql_help.c:4069 +#: sql_help.c:4086 msgid "target_alias" msgstr "target_alias" -#: sql_help.c:4070 +#: sql_help.c:4087 msgid "data_source" msgstr "data_source" -#: sql_help.c:4071 sql_help.c:4596 sql_help.c:4853 sql_help.c:5091 +#: sql_help.c:4088 sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 msgid "join_condition" msgstr "condition_de_jointure" -#: sql_help.c:4072 +#: sql_help.c:4089 msgid "when_clause" msgstr "when_clause" -#: sql_help.c:4073 +#: sql_help.c:4090 msgid "where data_source is:" msgstr "où data_source est :" -#: sql_help.c:4074 +#: sql_help.c:4091 msgid "source_table_name" msgstr "source_table_name" -#: sql_help.c:4075 +#: sql_help.c:4092 msgid "source_query" msgstr "source_query" -#: sql_help.c:4076 +#: sql_help.c:4093 msgid "source_alias" msgstr "source_alias" -#: sql_help.c:4077 +#: sql_help.c:4094 msgid "and when_clause is:" msgstr "et when_clause est :" -#: sql_help.c:4079 +#: sql_help.c:4096 msgid "merge_update" msgstr "merge_delete" -#: sql_help.c:4080 +#: sql_help.c:4097 msgid "merge_delete" msgstr "merge_delete" -#: sql_help.c:4082 +#: sql_help.c:4099 msgid "merge_insert" msgstr "merge_insert" -#: sql_help.c:4083 +#: sql_help.c:4100 msgid "and merge_insert is:" msgstr "et merge_insert est :" -#: sql_help.c:4086 +#: sql_help.c:4103 msgid "and merge_update is:" msgstr "et merge_update est :" -#: sql_help.c:4091 +#: sql_help.c:4110 msgid "and merge_delete is:" msgstr "et merge_delete est :" -#: sql_help.c:4132 +#: sql_help.c:4151 msgid "payload" msgstr "contenu" -#: sql_help.c:4159 +#: sql_help.c:4178 msgid "old_role" msgstr "ancien_rôle" -#: sql_help.c:4160 +#: sql_help.c:4179 msgid "new_role" msgstr "nouveau_rôle" -#: sql_help.c:4196 sql_help.c:4405 sql_help.c:4413 +#: sql_help.c:4215 sql_help.c:4424 sql_help.c:4432 msgid "savepoint_name" msgstr "nom_savepoint" -#: sql_help.c:4553 sql_help.c:4611 sql_help.c:4810 sql_help.c:4868 -#: sql_help.c:5048 sql_help.c:5106 +#: sql_help.c:4572 sql_help.c:4630 sql_help.c:4829 sql_help.c:4887 +#: sql_help.c:5067 sql_help.c:5125 msgid "grouping_element" msgstr "element_regroupement" -#: sql_help.c:4555 sql_help.c:4658 sql_help.c:4812 sql_help.c:5050 +#: sql_help.c:4574 sql_help.c:4677 sql_help.c:4831 sql_help.c:5069 msgid "window_name" msgstr "nom_window" -#: sql_help.c:4556 sql_help.c:4659 sql_help.c:4813 sql_help.c:5051 +#: sql_help.c:4575 sql_help.c:4678 sql_help.c:4832 sql_help.c:5070 msgid "window_definition" msgstr "définition_window" -#: sql_help.c:4557 sql_help.c:4571 sql_help.c:4615 sql_help.c:4660 -#: sql_help.c:4814 sql_help.c:4828 sql_help.c:4872 sql_help.c:5052 -#: sql_help.c:5066 sql_help.c:5110 +#: sql_help.c:4576 sql_help.c:4590 sql_help.c:4634 sql_help.c:4679 +#: sql_help.c:4833 sql_help.c:4847 sql_help.c:4891 sql_help.c:5071 +#: sql_help.c:5085 sql_help.c:5129 msgid "select" msgstr "sélection" -#: sql_help.c:4564 sql_help.c:4821 sql_help.c:5059 +#: sql_help.c:4583 sql_help.c:4840 sql_help.c:5078 msgid "where from_item can be one of:" msgstr "où élément_from fait partie de :" -#: sql_help.c:4567 sql_help.c:4573 sql_help.c:4576 sql_help.c:4580 -#: sql_help.c:4592 sql_help.c:4824 sql_help.c:4830 sql_help.c:4833 -#: sql_help.c:4837 sql_help.c:4849 sql_help.c:5062 sql_help.c:5068 -#: sql_help.c:5071 sql_help.c:5075 sql_help.c:5087 +#: sql_help.c:4586 sql_help.c:4592 sql_help.c:4595 sql_help.c:4599 +#: sql_help.c:4611 sql_help.c:4843 sql_help.c:4849 sql_help.c:4852 +#: sql_help.c:4856 sql_help.c:4868 sql_help.c:5081 sql_help.c:5087 +#: sql_help.c:5090 sql_help.c:5094 sql_help.c:5106 msgid "column_alias" msgstr "alias_colonne" -#: sql_help.c:4568 sql_help.c:4825 sql_help.c:5063 +#: sql_help.c:4587 sql_help.c:4844 sql_help.c:5082 msgid "sampling_method" msgstr "méthode_echantillonnage" -#: sql_help.c:4570 sql_help.c:4827 sql_help.c:5065 +#: sql_help.c:4589 sql_help.c:4846 sql_help.c:5084 msgid "seed" msgstr "graine" -#: sql_help.c:4574 sql_help.c:4613 sql_help.c:4831 sql_help.c:4870 -#: sql_help.c:5069 sql_help.c:5108 +#: sql_help.c:4593 sql_help.c:4632 sql_help.c:4850 sql_help.c:4889 +#: sql_help.c:5088 sql_help.c:5127 msgid "with_query_name" msgstr "nom_requête_with" -#: sql_help.c:4584 sql_help.c:4587 sql_help.c:4590 sql_help.c:4841 -#: sql_help.c:4844 sql_help.c:4847 sql_help.c:5079 sql_help.c:5082 -#: sql_help.c:5085 +#: sql_help.c:4603 sql_help.c:4606 sql_help.c:4609 sql_help.c:4860 +#: sql_help.c:4863 sql_help.c:4866 sql_help.c:5098 sql_help.c:5101 +#: sql_help.c:5104 msgid "column_definition" msgstr "définition_colonne" -#: sql_help.c:4594 sql_help.c:4600 sql_help.c:4851 sql_help.c:4857 -#: sql_help.c:5089 sql_help.c:5095 +#: sql_help.c:4613 sql_help.c:4619 sql_help.c:4870 sql_help.c:4876 +#: sql_help.c:5108 sql_help.c:5114 msgid "join_type" msgstr "type_de_jointure" -#: sql_help.c:4597 sql_help.c:4854 sql_help.c:5092 +#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 msgid "join_column" msgstr "colonne_de_jointure" -#: sql_help.c:4598 sql_help.c:4855 sql_help.c:5093 +#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 msgid "join_using_alias" msgstr "join_utilisant_alias" -#: sql_help.c:4604 sql_help.c:4861 sql_help.c:5099 +#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 msgid "and grouping_element can be one of:" msgstr "où element_regroupement fait partie de :" -#: sql_help.c:4612 sql_help.c:4869 sql_help.c:5107 +#: sql_help.c:4631 sql_help.c:4888 sql_help.c:5126 msgid "and with_query is:" msgstr "et requête_with est :" -#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 +#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 msgid "values" msgstr "valeurs" -#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 +#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 msgid "insert" msgstr "insert" -#: sql_help.c:4618 sql_help.c:4875 sql_help.c:5113 +#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 msgid "update" msgstr "update" -#: sql_help.c:4619 sql_help.c:4876 sql_help.c:5114 +#: sql_help.c:4638 sql_help.c:4895 sql_help.c:5133 msgid "delete" msgstr "delete" -#: sql_help.c:4621 sql_help.c:4878 sql_help.c:5116 +#: sql_help.c:4640 sql_help.c:4897 sql_help.c:5135 msgid "search_seq_col_name" msgstr "nom_colonne_seq_recherche" -#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 +#: sql_help.c:4642 sql_help.c:4899 sql_help.c:5137 msgid "cycle_mark_col_name" msgstr "nom_colonne_marque_cycle" -#: sql_help.c:4624 sql_help.c:4881 sql_help.c:5119 +#: sql_help.c:4643 sql_help.c:4900 sql_help.c:5138 msgid "cycle_mark_value" msgstr "valeur_marque_cycle" -#: sql_help.c:4625 sql_help.c:4882 sql_help.c:5120 +#: sql_help.c:4644 sql_help.c:4901 sql_help.c:5139 msgid "cycle_mark_default" msgstr "défaut_marque_cyle" -#: sql_help.c:4626 sql_help.c:4883 sql_help.c:5121 +#: sql_help.c:4645 sql_help.c:4902 sql_help.c:5140 msgid "cycle_path_col_name" msgstr "nom_colonne_chemin_cycle" -#: sql_help.c:4653 +#: sql_help.c:4672 msgid "new_table" msgstr "nouvelle_table" -#: sql_help.c:4724 +#: sql_help.c:4743 msgid "snapshot_id" msgstr "id_snapshot" -#: sql_help.c:4984 +#: sql_help.c:5003 msgid "sort_expression" msgstr "expression_de_tri" -#: sql_help.c:5128 sql_help.c:6112 +#: sql_help.c:5147 sql_help.c:6131 msgid "abort the current transaction" msgstr "abandonner la transaction en cours" -#: sql_help.c:5134 +#: sql_help.c:5153 msgid "change the definition of an aggregate function" msgstr "modifier la définition d'une fonction d'agrégation" -#: sql_help.c:5140 +#: sql_help.c:5159 msgid "change the definition of a collation" msgstr "modifier la définition d'un collationnement" -#: sql_help.c:5146 +#: sql_help.c:5165 msgid "change the definition of a conversion" msgstr "modifier la définition d'une conversion" -#: sql_help.c:5152 +#: sql_help.c:5171 msgid "change a database" msgstr "modifier une base de données" -#: sql_help.c:5158 +#: sql_help.c:5177 msgid "define default access privileges" msgstr "définir les droits d'accès par défaut" -#: sql_help.c:5164 +#: sql_help.c:5183 msgid "change the definition of a domain" msgstr "modifier la définition d'un domaine" -#: sql_help.c:5170 +#: sql_help.c:5189 msgid "change the definition of an event trigger" msgstr "modifier la définition d'un trigger sur évènement" -#: sql_help.c:5176 +#: sql_help.c:5195 msgid "change the definition of an extension" msgstr "modifier la définition d'une extension" -#: sql_help.c:5182 +#: sql_help.c:5201 msgid "change the definition of a foreign-data wrapper" msgstr "modifier la définition d'un wrapper de données distantes" -#: sql_help.c:5188 +#: sql_help.c:5207 msgid "change the definition of a foreign table" msgstr "modifier la définition d'une table distante" -#: sql_help.c:5194 +#: sql_help.c:5213 msgid "change the definition of a function" msgstr "modifier la définition d'une fonction" -#: sql_help.c:5200 +#: sql_help.c:5219 msgid "change role name or membership" msgstr "modifier le nom d'un groupe ou la liste des ses membres" -#: sql_help.c:5206 +#: sql_help.c:5225 msgid "change the definition of an index" msgstr "modifier la définition d'un index" -#: sql_help.c:5212 +#: sql_help.c:5231 msgid "change the definition of a procedural language" msgstr "modifier la définition d'un langage procédural" -#: sql_help.c:5218 +#: sql_help.c:5237 msgid "change the definition of a large object" msgstr "modifier la définition d'un « Large Object »" -#: sql_help.c:5224 +#: sql_help.c:5243 msgid "change the definition of a materialized view" msgstr "modifier la définition d'une vue matérialisée" -#: sql_help.c:5230 +#: sql_help.c:5249 msgid "change the definition of an operator" msgstr "modifier la définition d'un opérateur" -#: sql_help.c:5236 +#: sql_help.c:5255 msgid "change the definition of an operator class" msgstr "modifier la définition d'une classe d'opérateurs" -#: sql_help.c:5242 +#: sql_help.c:5261 msgid "change the definition of an operator family" msgstr "modifier la définition d'une famille d'opérateur" -#: sql_help.c:5248 +#: sql_help.c:5267 msgid "change the definition of a row-level security policy" msgstr "modifier la définition d'une politique de sécurité au niveau ligne" -#: sql_help.c:5254 +#: sql_help.c:5273 msgid "change the definition of a procedure" msgstr "modifier la définition d'une procédure" -#: sql_help.c:5260 +#: sql_help.c:5279 msgid "change the definition of a publication" msgstr "modifier la définition d'une publication" -#: sql_help.c:5266 sql_help.c:5368 +#: sql_help.c:5285 sql_help.c:5387 msgid "change a database role" msgstr "modifier un rôle" -#: sql_help.c:5272 +#: sql_help.c:5291 msgid "change the definition of a routine" msgstr "modifier la définition d'une routine" -#: sql_help.c:5278 +#: sql_help.c:5297 msgid "change the definition of a rule" msgstr "modifier la définition d'une règle" -#: sql_help.c:5284 +#: sql_help.c:5303 msgid "change the definition of a schema" msgstr "modifier la définition d'un schéma" -#: sql_help.c:5290 +#: sql_help.c:5309 msgid "change the definition of a sequence generator" msgstr "modifier la définition d'un générateur de séquence" -#: sql_help.c:5296 +#: sql_help.c:5315 msgid "change the definition of a foreign server" msgstr "modifier la définition d'un serveur distant" -#: sql_help.c:5302 +#: sql_help.c:5321 msgid "change the definition of an extended statistics object" msgstr "modifier la définition d'un objet de statistiques étendues" -#: sql_help.c:5308 +#: sql_help.c:5327 msgid "change the definition of a subscription" msgstr "modifier la définition d'une souscription" -#: sql_help.c:5314 +#: sql_help.c:5333 msgid "change a server configuration parameter" msgstr "modifie un paramètre de configuration du serveur" -#: sql_help.c:5320 +#: sql_help.c:5339 msgid "change the definition of a table" msgstr "modifier la définition d'une table" -#: sql_help.c:5326 +#: sql_help.c:5345 msgid "change the definition of a tablespace" msgstr "modifier la définition d'un tablespace" -#: sql_help.c:5332 +#: sql_help.c:5351 msgid "change the definition of a text search configuration" msgstr "modifier la définition d'une configuration de la recherche de texte" -#: sql_help.c:5338 +#: sql_help.c:5357 msgid "change the definition of a text search dictionary" msgstr "modifier la définition d'un dictionnaire de la recherche de texte" -#: sql_help.c:5344 +#: sql_help.c:5363 msgid "change the definition of a text search parser" msgstr "modifier la définition d'un analyseur de la recherche de texte" -#: sql_help.c:5350 +#: sql_help.c:5369 msgid "change the definition of a text search template" msgstr "modifier la définition d'un modèle de la recherche de texte" -#: sql_help.c:5356 +#: sql_help.c:5375 msgid "change the definition of a trigger" msgstr "modifier la définition d'un trigger" -#: sql_help.c:5362 +#: sql_help.c:5381 msgid "change the definition of a type" msgstr "modifier la définition d'un type" -#: sql_help.c:5374 +#: sql_help.c:5393 msgid "change the definition of a user mapping" msgstr "modifier la définition d'une correspondance d'utilisateur" -#: sql_help.c:5380 +#: sql_help.c:5399 msgid "change the definition of a view" msgstr "modifier la définition d'une vue" -#: sql_help.c:5386 +#: sql_help.c:5405 msgid "collect statistics about a database" msgstr "acquérir des statistiques concernant la base de données" -#: sql_help.c:5392 sql_help.c:6190 +#: sql_help.c:5411 sql_help.c:6209 msgid "start a transaction block" msgstr "débuter un bloc de transaction" -#: sql_help.c:5398 +#: sql_help.c:5417 msgid "invoke a procedure" msgstr "appeler une procédure" -#: sql_help.c:5404 +#: sql_help.c:5423 msgid "force a write-ahead log checkpoint" msgstr "forcer un point de vérification des journaux de transactions" -#: sql_help.c:5410 +#: sql_help.c:5429 msgid "close a cursor" msgstr "fermer un curseur" -#: sql_help.c:5416 +#: sql_help.c:5435 msgid "cluster a table according to an index" msgstr "réorganiser (cluster) une table en fonction d'un index" -#: sql_help.c:5422 +#: sql_help.c:5441 msgid "define or change the comment of an object" msgstr "définir ou modifier les commentaires d'un objet" -#: sql_help.c:5428 sql_help.c:5986 +#: sql_help.c:5447 sql_help.c:6005 msgid "commit the current transaction" msgstr "valider la transaction en cours" -#: sql_help.c:5434 +#: sql_help.c:5453 msgid "commit a transaction that was earlier prepared for two-phase commit" msgstr "" "valider une transaction précédemment préparée pour une validation en deux\n" "phases" -#: sql_help.c:5440 +#: sql_help.c:5459 msgid "copy data between a file and a table" msgstr "copier des données entre un fichier et une table" -#: sql_help.c:5446 +#: sql_help.c:5465 msgid "define a new access method" msgstr "définir une nouvelle méthode d'accès" -#: sql_help.c:5452 +#: sql_help.c:5471 msgid "define a new aggregate function" msgstr "définir une nouvelle fonction d'agrégation" -#: sql_help.c:5458 +#: sql_help.c:5477 msgid "define a new cast" msgstr "définir un nouveau transtypage" -#: sql_help.c:5464 +#: sql_help.c:5483 msgid "define a new collation" msgstr "définir un nouveau collationnement" -#: sql_help.c:5470 +#: sql_help.c:5489 msgid "define a new encoding conversion" msgstr "définir une nouvelle conversion d'encodage" -#: sql_help.c:5476 +#: sql_help.c:5495 msgid "create a new database" msgstr "créer une nouvelle base de données" -#: sql_help.c:5482 +#: sql_help.c:5501 msgid "define a new domain" msgstr "définir un nouveau domaine" -#: sql_help.c:5488 +#: sql_help.c:5507 msgid "define a new event trigger" msgstr "définir un nouveau trigger sur évènement" -#: sql_help.c:5494 +#: sql_help.c:5513 msgid "install an extension" msgstr "installer une extension" -#: sql_help.c:5500 +#: sql_help.c:5519 msgid "define a new foreign-data wrapper" msgstr "définir un nouveau wrapper de données distantes" -#: sql_help.c:5506 +#: sql_help.c:5525 msgid "define a new foreign table" msgstr "définir une nouvelle table distante" -#: sql_help.c:5512 +#: sql_help.c:5531 msgid "define a new function" msgstr "définir une nouvelle fonction" -#: sql_help.c:5518 sql_help.c:5578 sql_help.c:5680 +#: sql_help.c:5537 sql_help.c:5597 sql_help.c:5699 msgid "define a new database role" msgstr "définir un nouveau rôle" -#: sql_help.c:5524 +#: sql_help.c:5543 msgid "define a new index" msgstr "définir un nouvel index" -#: sql_help.c:5530 +#: sql_help.c:5549 msgid "define a new procedural language" msgstr "définir un nouveau langage de procédures" -#: sql_help.c:5536 +#: sql_help.c:5555 msgid "define a new materialized view" msgstr "définir une nouvelle vue matérialisée" -#: sql_help.c:5542 +#: sql_help.c:5561 msgid "define a new operator" msgstr "définir un nouvel opérateur" -#: sql_help.c:5548 +#: sql_help.c:5567 msgid "define a new operator class" msgstr "définir une nouvelle classe d'opérateur" -#: sql_help.c:5554 +#: sql_help.c:5573 msgid "define a new operator family" msgstr "définir une nouvelle famille d'opérateur" -#: sql_help.c:5560 +#: sql_help.c:5579 msgid "define a new row-level security policy for a table" msgstr "définir une nouvelle politique de sécurité au niveau ligne pour une table" -#: sql_help.c:5566 +#: sql_help.c:5585 msgid "define a new procedure" msgstr "définir une nouvelle procédure" -#: sql_help.c:5572 +#: sql_help.c:5591 msgid "define a new publication" msgstr "définir une nouvelle publication" -#: sql_help.c:5584 +#: sql_help.c:5603 msgid "define a new rewrite rule" msgstr "définir une nouvelle règle de réécriture" -#: sql_help.c:5590 +#: sql_help.c:5609 msgid "define a new schema" msgstr "définir un nouveau schéma" -#: sql_help.c:5596 +#: sql_help.c:5615 msgid "define a new sequence generator" msgstr "définir un nouveau générateur de séquence" -#: sql_help.c:5602 +#: sql_help.c:5621 msgid "define a new foreign server" msgstr "définir un nouveau serveur distant" -#: sql_help.c:5608 +#: sql_help.c:5627 msgid "define extended statistics" msgstr "définir des statistiques étendues" -#: sql_help.c:5614 +#: sql_help.c:5633 msgid "define a new subscription" msgstr "définir une nouvelle souscription" -#: sql_help.c:5620 +#: sql_help.c:5639 msgid "define a new table" msgstr "définir une nouvelle table" -#: sql_help.c:5626 sql_help.c:6148 +#: sql_help.c:5645 sql_help.c:6167 msgid "define a new table from the results of a query" msgstr "définir une nouvelle table à partir des résultats d'une requête" -#: sql_help.c:5632 +#: sql_help.c:5651 msgid "define a new tablespace" msgstr "définir un nouveau tablespace" -#: sql_help.c:5638 +#: sql_help.c:5657 msgid "define a new text search configuration" msgstr "définir une nouvelle configuration de la recherche de texte" -#: sql_help.c:5644 +#: sql_help.c:5663 msgid "define a new text search dictionary" msgstr "définir un nouveau dictionnaire de la recherche de texte" -#: sql_help.c:5650 +#: sql_help.c:5669 msgid "define a new text search parser" msgstr "définir un nouvel analyseur de la recherche de texte" -#: sql_help.c:5656 +#: sql_help.c:5675 msgid "define a new text search template" msgstr "définir un nouveau modèle de la recherche de texte" -#: sql_help.c:5662 +#: sql_help.c:5681 msgid "define a new transform" msgstr "définir une nouvelle transformation" -#: sql_help.c:5668 +#: sql_help.c:5687 msgid "define a new trigger" msgstr "définir un nouveau trigger" -#: sql_help.c:5674 +#: sql_help.c:5693 msgid "define a new data type" msgstr "définir un nouveau type de données" -#: sql_help.c:5686 +#: sql_help.c:5705 msgid "define a new mapping of a user to a foreign server" msgstr "définit une nouvelle correspondance d'un utilisateur vers un serveur distant" -#: sql_help.c:5692 +#: sql_help.c:5711 msgid "define a new view" msgstr "définir une nouvelle vue" -#: sql_help.c:5698 +#: sql_help.c:5717 msgid "deallocate a prepared statement" msgstr "désallouer une instruction préparée" -#: sql_help.c:5704 +#: sql_help.c:5723 msgid "define a cursor" msgstr "définir un curseur" -#: sql_help.c:5710 +#: sql_help.c:5729 msgid "delete rows of a table" msgstr "supprimer des lignes d'une table" -#: sql_help.c:5716 +#: sql_help.c:5735 msgid "discard session state" msgstr "annuler l'état de la session" -#: sql_help.c:5722 +#: sql_help.c:5741 msgid "execute an anonymous code block" msgstr "exécute un bloc de code anonyme" -#: sql_help.c:5728 +#: sql_help.c:5747 msgid "remove an access method" msgstr "supprimer une méthode d'accès" -#: sql_help.c:5734 +#: sql_help.c:5753 msgid "remove an aggregate function" msgstr "supprimer une fonction d'agrégation" -#: sql_help.c:5740 +#: sql_help.c:5759 msgid "remove a cast" msgstr "supprimer un transtypage" -#: sql_help.c:5746 +#: sql_help.c:5765 msgid "remove a collation" msgstr "supprimer un collationnement" -#: sql_help.c:5752 +#: sql_help.c:5771 msgid "remove a conversion" msgstr "supprimer une conversion" -#: sql_help.c:5758 +#: sql_help.c:5777 msgid "remove a database" msgstr "supprimer une base de données" -#: sql_help.c:5764 +#: sql_help.c:5783 msgid "remove a domain" msgstr "supprimer un domaine" -#: sql_help.c:5770 +#: sql_help.c:5789 msgid "remove an event trigger" msgstr "supprimer un trigger sur évènement" -#: sql_help.c:5776 +#: sql_help.c:5795 msgid "remove an extension" msgstr "supprimer une extension" -#: sql_help.c:5782 +#: sql_help.c:5801 msgid "remove a foreign-data wrapper" msgstr "supprimer un wrapper de données distantes" -#: sql_help.c:5788 +#: sql_help.c:5807 msgid "remove a foreign table" msgstr "supprimer une table distante" -#: sql_help.c:5794 +#: sql_help.c:5813 msgid "remove a function" msgstr "supprimer une fonction" -#: sql_help.c:5800 sql_help.c:5866 sql_help.c:5968 +#: sql_help.c:5819 sql_help.c:5885 sql_help.c:5987 msgid "remove a database role" msgstr "supprimer un rôle de la base de données" -#: sql_help.c:5806 +#: sql_help.c:5825 msgid "remove an index" msgstr "supprimer un index" -#: sql_help.c:5812 +#: sql_help.c:5831 msgid "remove a procedural language" msgstr "supprimer un langage procédural" -#: sql_help.c:5818 +#: sql_help.c:5837 msgid "remove a materialized view" msgstr "supprimer une vue matérialisée" -#: sql_help.c:5824 +#: sql_help.c:5843 msgid "remove an operator" msgstr "supprimer un opérateur" -#: sql_help.c:5830 +#: sql_help.c:5849 msgid "remove an operator class" msgstr "supprimer une classe d'opérateur" -#: sql_help.c:5836 +#: sql_help.c:5855 msgid "remove an operator family" msgstr "supprimer une famille d'opérateur" -#: sql_help.c:5842 +#: sql_help.c:5861 msgid "remove database objects owned by a database role" msgstr "supprimer les objets appartenant à un rôle" -#: sql_help.c:5848 +#: sql_help.c:5867 msgid "remove a row-level security policy from a table" msgstr "supprimer une politique de sécurité au niveau ligne pour une table" -#: sql_help.c:5854 +#: sql_help.c:5873 msgid "remove a procedure" msgstr "supprimer une procédure" -#: sql_help.c:5860 +#: sql_help.c:5879 msgid "remove a publication" msgstr "supprimer une publication" -#: sql_help.c:5872 +#: sql_help.c:5891 msgid "remove a routine" msgstr "supprimer une routine" -#: sql_help.c:5878 +#: sql_help.c:5897 msgid "remove a rewrite rule" msgstr "supprimer une règle de réécriture" -#: sql_help.c:5884 +#: sql_help.c:5903 msgid "remove a schema" msgstr "supprimer un schéma" -#: sql_help.c:5890 +#: sql_help.c:5909 msgid "remove a sequence" msgstr "supprimer une séquence" -#: sql_help.c:5896 +#: sql_help.c:5915 msgid "remove a foreign server descriptor" msgstr "supprimer un descripteur de serveur distant" -#: sql_help.c:5902 +#: sql_help.c:5921 msgid "remove extended statistics" msgstr "supprimer des statistiques étendues" -#: sql_help.c:5908 +#: sql_help.c:5927 msgid "remove a subscription" msgstr "supprimer une souscription" -#: sql_help.c:5914 +#: sql_help.c:5933 msgid "remove a table" msgstr "supprimer une table" -#: sql_help.c:5920 +#: sql_help.c:5939 msgid "remove a tablespace" msgstr "supprimer un tablespace" -#: sql_help.c:5926 +#: sql_help.c:5945 msgid "remove a text search configuration" msgstr "supprimer une configuration de la recherche de texte" -#: sql_help.c:5932 +#: sql_help.c:5951 msgid "remove a text search dictionary" msgstr "supprimer un dictionnaire de la recherche de texte" -#: sql_help.c:5938 +#: sql_help.c:5957 msgid "remove a text search parser" msgstr "supprimer un analyseur de la recherche de texte" -#: sql_help.c:5944 +#: sql_help.c:5963 msgid "remove a text search template" msgstr "supprimer un modèle de la recherche de texte" -#: sql_help.c:5950 +#: sql_help.c:5969 msgid "remove a transform" msgstr "supprimer une transformation" -#: sql_help.c:5956 +#: sql_help.c:5975 msgid "remove a trigger" msgstr "supprimer un trigger" -#: sql_help.c:5962 +#: sql_help.c:5981 msgid "remove a data type" msgstr "supprimer un type de données" -#: sql_help.c:5974 +#: sql_help.c:5993 msgid "remove a user mapping for a foreign server" msgstr "supprime une correspondance utilisateur pour un serveur distant" -#: sql_help.c:5980 +#: sql_help.c:5999 msgid "remove a view" msgstr "supprimer une vue" -#: sql_help.c:5992 +#: sql_help.c:6011 msgid "execute a prepared statement" msgstr "exécuter une instruction préparée" -#: sql_help.c:5998 +#: sql_help.c:6017 msgid "show the execution plan of a statement" msgstr "afficher le plan d'exécution d'une instruction" -#: sql_help.c:6004 +#: sql_help.c:6023 msgid "retrieve rows from a query using a cursor" msgstr "extraire certaines lignes d'une requête à l'aide d'un curseur" -#: sql_help.c:6010 +#: sql_help.c:6029 msgid "define access privileges" msgstr "définir des privilèges d'accès" -#: sql_help.c:6016 +#: sql_help.c:6035 msgid "import table definitions from a foreign server" msgstr "importer la définition d'une table à partir d'un serveur distant" -#: sql_help.c:6022 +#: sql_help.c:6041 msgid "create new rows in a table" msgstr "créer de nouvelles lignes dans une table" -#: sql_help.c:6028 +#: sql_help.c:6047 msgid "listen for a notification" msgstr "se mettre à l'écoute d'une notification" -#: sql_help.c:6034 +#: sql_help.c:6053 msgid "load a shared library file" msgstr "charger un fichier de bibliothèque partagée" -#: sql_help.c:6040 +#: sql_help.c:6059 msgid "lock a table" msgstr "verrouiller une table" -#: sql_help.c:6046 +#: sql_help.c:6065 msgid "conditionally insert, update, or delete rows of a table" msgstr "insère, modifie ou supprime des lignes d'une table de façon conditionnelle" -#: sql_help.c:6052 +#: sql_help.c:6071 msgid "position a cursor" msgstr "positionner un curseur" -#: sql_help.c:6058 +#: sql_help.c:6077 msgid "generate a notification" msgstr "engendrer une notification" -#: sql_help.c:6064 +#: sql_help.c:6083 msgid "prepare a statement for execution" msgstr "préparer une instruction pour exécution" -#: sql_help.c:6070 +#: sql_help.c:6089 msgid "prepare the current transaction for two-phase commit" msgstr "préparer la transaction en cours pour une validation en deux phases" -#: sql_help.c:6076 +#: sql_help.c:6095 msgid "change the ownership of database objects owned by a database role" msgstr "changer le propriétaire des objets d'un rôle" -#: sql_help.c:6082 +#: sql_help.c:6101 msgid "replace the contents of a materialized view" msgstr "remplacer le contenu d'une vue matérialisée" -#: sql_help.c:6088 +#: sql_help.c:6107 msgid "rebuild indexes" msgstr "reconstruire des index" -#: sql_help.c:6094 +#: sql_help.c:6113 msgid "destroy a previously defined savepoint" msgstr "détruire un point de retournement précédemment défini" -#: sql_help.c:6100 +#: sql_help.c:6119 msgid "restore the value of a run-time parameter to the default value" msgstr "réinitialiser un paramètre d'exécution à sa valeur par défaut" -#: sql_help.c:6106 +#: sql_help.c:6125 msgid "remove access privileges" msgstr "supprimer des privilèges d'accès" -#: sql_help.c:6118 +#: sql_help.c:6137 msgid "cancel a transaction that was earlier prepared for two-phase commit" msgstr "" "annuler une transaction précédemment préparée pour une validation en deux\n" "phases" -#: sql_help.c:6124 +#: sql_help.c:6143 msgid "roll back to a savepoint" msgstr "annuler jusqu'au point de retournement" -#: sql_help.c:6130 +#: sql_help.c:6149 msgid "define a new savepoint within the current transaction" msgstr "définir un nouveau point de retournement pour la transaction en cours" -#: sql_help.c:6136 +#: sql_help.c:6155 msgid "define or change a security label applied to an object" msgstr "définir ou modifier un label de sécurité à un objet" -#: sql_help.c:6142 sql_help.c:6196 sql_help.c:6232 +#: sql_help.c:6161 sql_help.c:6215 sql_help.c:6251 msgid "retrieve rows from a table or view" msgstr "extraire des lignes d'une table ou d'une vue" -#: sql_help.c:6154 +#: sql_help.c:6173 msgid "change a run-time parameter" msgstr "modifier un paramètre d'exécution" -#: sql_help.c:6160 +#: sql_help.c:6179 msgid "set constraint check timing for the current transaction" msgstr "définir le moment de la vérification des contraintes pour la transaction en cours" -#: sql_help.c:6166 +#: sql_help.c:6185 msgid "set the current user identifier of the current session" msgstr "définir l'identifiant actuel de l'utilisateur de la session courante" -#: sql_help.c:6172 +#: sql_help.c:6191 msgid "set the session user identifier and the current user identifier of the current session" msgstr "" "définir l'identifiant de l'utilisateur de session et l'identifiant actuel de\n" "l'utilisateur de la session courante" -#: sql_help.c:6178 +#: sql_help.c:6197 msgid "set the characteristics of the current transaction" msgstr "définir les caractéristiques de la transaction en cours" -#: sql_help.c:6184 +#: sql_help.c:6203 msgid "show the value of a run-time parameter" msgstr "afficher la valeur d'un paramètre d'exécution" -#: sql_help.c:6202 +#: sql_help.c:6221 msgid "empty a table or set of tables" msgstr "vider une table ou un ensemble de tables" -#: sql_help.c:6208 +#: sql_help.c:6227 msgid "stop listening for a notification" msgstr "arrêter l'écoute d'une notification" -#: sql_help.c:6214 +#: sql_help.c:6233 msgid "update rows of a table" msgstr "actualiser les lignes d'une table" -#: sql_help.c:6220 +#: sql_help.c:6239 msgid "garbage-collect and optionally analyze a database" msgstr "compacter et optionnellement analyser une base de données" -#: sql_help.c:6226 +#: sql_help.c:6245 msgid "compute a set of rows" msgstr "calculer un ensemble de lignes" @@ -6567,445 +6573,3 @@ msgid "" msgstr "" "valeur « %s » non reconnue pour « %s »\n" "Les valeurs disponibles sont : %s." - -#~ msgid " \"%s\"" -#~ msgstr " « %s »" - -#~ msgid " \"%s\" IN %s %s" -#~ msgstr " \"%s\" DANS %s %s" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide, puis quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version, puis quitte\n" - -#~ msgid " -?, --help show this help, then exit\n" -#~ msgstr " -?, --help affiche cette aide puis quitte\n" - -#~ msgid " SERVER_VERSION_NAME server's version (short string)\n" -#~ msgstr " SERVER_VERSION_NAME version du serveur (chaîne courte)\n" - -#~ msgid " VERSION psql's version (verbose string)\n" -#~ msgstr " VERSION version de psql (chaîne verbeuse)\n" - -#~ msgid " VERSION_NAME psql's version (short string)\n" -#~ msgstr " VERSION_NAME version de psql (chaîne courte)\n" - -#~ msgid " VERSION_NUM psql's version (numeric format)\n" -#~ msgstr " VERSION_NUM version de psql (format numérique)\n" - -#~ msgid " \\dFd [PATTERN] list text search dictionaries (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\dFd [MODÈLE] affiche la liste des dictionnaires de la recherche\n" -#~ " de texte (ajouter « + » pour plus de détails)\n" - -#~ msgid " \\dFp [PATTERN] list text search parsers (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\dFp [MODÈLE] affiche la liste des analyseurs de la recherche de\n" -#~ " texte (ajouter « + » pour plus de détails)\n" - -#~ msgid " \\dT [PATTERN] list data types (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\dT [MODÈLE] affiche la liste des types de données (ajouter « + »\n" -#~ " pour plus de détails)\n" - -#~ msgid " \\db [PATTERN] list tablespaces (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\db [MODÈLE] affiche la liste des tablespaces (ajouter « + » pour\n" -#~ " plus de détails)\n" - -#~ msgid " \\df [PATTERN] list functions (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\df [MODÈLE] affiche la liste des fonctions (ajouter « + » pour\n" -#~ " plus de détails)\n" - -#~ msgid " \\dn [PATTERN] list schemas (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\dn [MODÈLE] affiche la liste des schémas (ajouter « + » pour\n" -#~ " plus de détails)\n" - -#~ msgid "" -#~ " \\d{t|i|s|v|S} [PATTERN] (add \"+\" for more detail)\n" -#~ " list tables/indexes/sequences/views/system tables\n" -#~ msgstr "" -#~ " \\d{t|i|s|v|S} [MODÈLE] (ajouter « + » pour plus de détails)\n" -#~ " affiche la liste des\n" -#~ " tables/index/séquences/vues/tables système\n" - -#~ msgid " \\g [FILE] or ; execute query (and send results to file or |pipe)\n" -#~ msgstr "" -#~ " \\g [FICHIER] ou ; envoie le tampon de requêtes au serveur (et les\n" -#~ " résultats au fichier ou |tube)\n" - -#~ msgid " \\l list all databases (add \"+\" for more detail)\n" -#~ msgstr "" -#~ " \\l affiche la liste des bases de données (ajouter « + »\n" -#~ " pour plus de détails)\n" - -#~ msgid " \\l[+] list all databases\n" -#~ msgstr " \\l[+] affiche la liste des bases de données\n" - -#, c-format -#~ msgid "" -#~ " \\lo_export LOBOID FILE\n" -#~ " \\lo_import FILE [COMMENT]\n" -#~ " \\lo_list[+]\n" -#~ " \\lo_unlink LOBOID large object operations\n" -#~ msgstr "" -#~ " \\lo_export OIDLOB FICHIER\n" -#~ " \\lo_import FICHIER [COMMENTAIRE]\n" -#~ " \\lo_list[+]\n" -#~ " \\lo_unlink OIDLOB opérations sur les « Large Objects »\n" - -#~ msgid " \\z [PATTERN] list table, view, and sequence access privileges (same as \\dp)\n" -#~ msgstr "" -#~ " \\z [MODÈLE] affiche la liste des privilèges d'accès aux tables,\n" -#~ " vues et séquences (identique à \\dp)\n" - -#~ msgid " as user \"%s\"" -#~ msgstr " comme utilisateur « %s »" - -#~ msgid " at port \"%s\"" -#~ msgstr " sur le port « %s »" - -#~ msgid " on host \"%s\"" -#~ msgstr " sur l'hôte « %s »" - -#~ msgid "%s\n" -#~ msgstr "%s\n" - -#~ msgid "%s: %s\n" -#~ msgstr "%s : %s\n" - -#~ msgid "%s: could not open log file \"%s\": %s\n" -#~ msgstr "%s : n'a pas pu ouvrir le journal applicatif « %s » : %s\n" - -#~ msgid "%s: could not set variable \"%s\"\n" -#~ msgstr "%s : n'a pas pu initialiser la variable « %s »\n" - -#~ msgid "%s: pg_strdup: cannot duplicate null pointer (internal error)\n" -#~ msgstr "%s : pg_strdup : ne peut pas dupliquer le pointeur null (erreur interne)\n" - -#~ msgid "(1 row)" -#~ msgid_plural "(%lu rows)" -#~ msgstr[0] "(1 ligne)" -#~ msgstr[1] "(%lu lignes)" - -#~ msgid "(No rows)\n" -#~ msgstr "(Aucune ligne)\n" - -#~ msgid "+ opt(%d) = |%s|\n" -#~ msgstr "+ opt(%d) = |%s|\n" - -#~ msgid "?%c? \"%s.%s\"" -#~ msgstr "?%c? « %s.%s »" - -#~ msgid "Access privileges for database \"%s\"" -#~ msgstr "Droits d'accès pour la base de données « %s »" - -#~ msgid "All connection parameters must be supplied because no database connection exists" -#~ msgstr "Tous les paramètres de connexion doivent être fournis car il n'existe pas de connexion à une base de données" - -#~ msgid "Copy, Large Object\n" -#~ msgstr "Copie, « Large Object »\n" - -#~ msgid "Could not send cancel request: %s" -#~ msgstr "N'a pas pu envoyer la requête d'annulation : %s" - -#~ msgid "Disabled triggers:" -#~ msgstr "Triggers désactivés :" - -#~ msgid "Enter new password: " -#~ msgstr "Saisir le nouveau mot de passe : " - -#~ msgid "Exclusion constraints:" -#~ msgstr "Contraintes d'exclusion :" - -#~ msgid "Invalid command \\%s. Try \\? for help.\n" -#~ msgstr "Commande \\%s invalide. Essayez \\? pour l'aide-mémoire.\n" - -#~ msgid "Modifier" -#~ msgstr "Modificateur" - -#~ msgid "Modifiers" -#~ msgstr "Modificateurs" - -#~ msgid "No matching relations found.\n" -#~ msgstr "Aucune relation correspondante trouvée.\n" - -#~ msgid "No matching settings found.\n" -#~ msgstr "Aucun paramètre correspondant trouvé.\n" - -#~ msgid "No per-database role settings support in this server version.\n" -#~ msgstr "Pas de supprot des paramètres rôle par base de données pour la version de ce serveur.\n" - -#~ msgid "No relations found.\n" -#~ msgstr "Aucune relation trouvée.\n" - -#~ msgid "No settings found.\n" -#~ msgstr "Aucun paramètre trouvé.\n" - -#~ msgid "Object Description" -#~ msgstr "Description d'un objet" - -#~ msgid "Password encryption failed.\n" -#~ msgstr "Échec du chiffrement du mot de passe.\n" - -#~ msgid "Procedure" -#~ msgstr "Procédure" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapporter les bogues à .\n" - -#~ msgid "Report bugs to .\n" -#~ msgstr "Rapportez les bogues à .\n" - -#~ msgid "SSL connection (unknown cipher)\n" -#~ msgstr "Connexion SSL (chiffrement inconnu)\n" - -#~ msgid "Showing locale-adjusted numeric output." -#~ msgstr "Affichage de la sortie numérique adaptée à la locale." - -#~ msgid "Showing only tuples." -#~ msgstr "Affichage des tuples seuls." - -#, c-format -#~ msgid "Special relation \"%s.%s\"" -#~ msgstr "Relation spéciale « %s.%s »" - -#, c-format -#~ msgid "The server (version %s) does not support altering default privileges." -#~ msgstr "Le serveur (version %s) ne supporte pas la modification des droits par défaut." - -#, c-format -#~ msgid "The server (version %s) does not support collations." -#~ msgstr "Le serveur (version %s) ne supporte pas les collationnements." - -#, c-format -#~ msgid "The server (version %s) does not support editing function source." -#~ msgstr "Le serveur (version %s) ne supporte pas l'édition du code de la fonction." - -#, c-format -#~ msgid "The server (version %s) does not support editing view definitions." -#~ msgstr "Le serveur (version %s) ne supporte pas l'édition des définitions de vue." - -#, c-format -#~ msgid "The server (version %s) does not support foreign servers." -#~ msgstr "Le serveur (version %s) ne supporte pas les serveurs distants." - -#, c-format -#~ msgid "The server (version %s) does not support foreign tables." -#~ msgstr "Le serveur (version %s) ne supporte pas les tables distantes." - -#, c-format -#~ msgid "The server (version %s) does not support foreign-data wrappers." -#~ msgstr "Le serveur (version %s) ne supporte pas les wrappers de données distantes." - -#, c-format -#~ msgid "The server (version %s) does not support full text search." -#~ msgstr "Le serveur (version %s) ne supporte pas la recherche plein texte." - -#, c-format -#~ msgid "The server (version %s) does not support per-database role settings." -#~ msgstr "Le serveur (version %s) ne supporte pas les paramètres de rôles par bases de données." - -#, c-format -#~ msgid "The server (version %s) does not support savepoints for ON_ERROR_ROLLBACK." -#~ msgstr "Le serveur (version %s) ne supporte pas les points de sauvegarde pour ON_ERROR_ROLLBACK." - -#, c-format -#~ msgid "The server (version %s) does not support showing function source." -#~ msgstr "Le serveur (version %s) ne supporte pas l'affichage du code de la fonction." - -#, c-format -#~ msgid "The server (version %s) does not support showing view definitions." -#~ msgstr "Le serveur (version %s) ne supporte pas l'affichage des définitions de vues." - -#, c-format -#~ msgid "The server (version %s) does not support tablespaces." -#~ msgstr "Le serveur (version %s) ne supporte pas les tablespaces." - -#, c-format -#~ msgid "The server (version %s) does not support user mappings." -#~ msgstr "Le serveur (version %s) ne supporte pas les correspondances d'utilisateurs." - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayez « %s --help » pour plus d'informations.\n" - -#~ msgid "" -#~ "WARNING: You are connected to a server with major version %d.%d,\n" -#~ "but your %s client is major version %d.%d. Some backslash commands,\n" -#~ "such as \\d, might not work properly.\n" -#~ "\n" -#~ msgstr "" -#~ "ATTENTION : vous êtes connecté sur un serveur dont la version majeure est\n" -#~ "%d.%d alors que votre client %s est en version majeure %d.%d. Certaines\n" -#~ "commandes avec antislashs, comme \\d, peuvent ne pas fonctionner\n" -#~ "correctement.\n" -#~ "\n" - -#~ msgid "Watch every %lds\t%s" -#~ msgstr "Vérifier chaque %lds\t%s" - -#~ msgid "" -#~ "Welcome to %s %s (server %s), the PostgreSQL interactive terminal.\n" -#~ "\n" -#~ msgstr "" -#~ "Bienvenue dans %s %s (serveur %s), l'interface interactive de PostgreSQL.\n" -#~ "\n" - -#~ msgid "" -#~ "Welcome to %s %s, the PostgreSQL interactive terminal.\n" -#~ "\n" -#~ msgstr "" -#~ "Bienvenue dans %s %s, l'interface interactive de PostgreSQL.\n" -#~ "\n" - -#~ msgid "\\%s: error\n" -#~ msgstr "\\%s : erreur\n" - -#~ msgid "\\%s: error while setting variable\n" -#~ msgstr "\\%s : erreur lors de l'initialisation de la variable\n" - -#~ msgid "\\copy: %s" -#~ msgstr "\\copy : %s" - -#~ msgid "\\copy: unexpected response (%d)\n" -#~ msgstr "\\copy : réponse inattendue (%d)\n" - -#, c-format -#~ msgid "\\watch cannot be used with COPY" -#~ msgstr "\\watch ne peut pas être utilisé avec COPY" - -#~ msgid "agg_name" -#~ msgstr "nom_d_agrégat" - -#~ msgid "agg_type" -#~ msgstr "type_aggrégat" - -#~ msgid "attribute" -#~ msgstr "attribut" - -#~ msgid "child process was terminated by signal %d" -#~ msgstr "le processus fils a été terminé par le signal %d" - -#~ msgid "child process was terminated by signal %s" -#~ msgstr "le processus fils a été terminé par le signal %s" - -#~ msgid "collate %s" -#~ msgstr "collationnement %s" - -#~ msgid "collation_name" -#~ msgstr "nom_collation" - -#~ msgid "column" -#~ msgstr "colonne" - -#~ msgid "contains support for command-line editing" -#~ msgstr "contient une gestion avancée de la ligne de commande" - -#~ msgid "could not change directory to \"%s\"" -#~ msgstr "n'a pas pu accéder au répertoire « %s »" - -#~ msgid "could not change directory to \"%s\": %s" -#~ msgstr "n'a pas pu changer le répertoire par « %s » : %s" - -#~ msgid "could not close pipe to external command: %s\n" -#~ msgstr "n'a pas pu fermer le fichier pipe vers la commande externe : %s\n" - -#~ msgid "could not connect to server: %s" -#~ msgstr "n'a pas pu se connecter au serveur : %s" - -#~ msgid "could not execute command \"%s\": %s\n" -#~ msgstr "n'a pas pu exécuter la commande « %s » : %s\n" - -#~ msgid "could not get current user name: %s\n" -#~ msgstr "n'a pas pu obtenir le nom d'utilisateur courant : %s\n" - -#~ msgid "could not identify current directory: %s" -#~ msgstr "n'a pas pu identifier le répertoire courant : %s" - -#~ msgid "could not open temporary file \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le fichier temporaire « %s » : %s\n" - -#~ msgid "could not read symbolic link \"%s\"" -#~ msgstr "n'a pas pu lire le lien symbolique « %s »" - -#~ msgid "could not set variable \"%s\"\n" -#~ msgstr "n'a pas pu initialiser la variable « %s »\n" - -#~ msgid "could not stat file \"%s\": %s\n" -#~ msgstr "n'a pas pu tester le fichier « %s » : %s\n" - -#~ msgid "data type" -#~ msgstr "type de données" - -#~ msgid "default %s" -#~ msgstr "Par défaut, %s" - -#~ msgid "define a new constraint trigger" -#~ msgstr "définir une nouvelle contrainte de déclenchement" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#~ msgid "from_list" -#~ msgstr "liste_from" - -#~ msgid "input_data_type" -#~ msgstr "type_de_données_en_entrée" - -#~ msgid "lock a named relation (table, etc)" -#~ msgstr "verrouille une relation nommée (table, etc)" - -#~ msgid "match" -#~ msgstr "match" - -#~ msgid "new_column" -#~ msgstr "nouvelle_colonne" - -#~ msgid "normal" -#~ msgstr "normal" - -#~ msgid "not null" -#~ msgstr "non NULL" - -#~ msgid "pclose failed: %m" -#~ msgstr "échec de pclose : %m" - -#~ msgid "pclose failed: %s" -#~ msgstr "échec de pclose : %s" - -#~ msgid "rolename" -#~ msgstr "nom_rôle" - -#~ msgid "serialtype" -#~ msgstr "serialtype" - -#~ msgid "special" -#~ msgstr "spécial" - -#~ msgid "statistic_type" -#~ msgstr "type_statistique" - -#~ msgid "tablespace" -#~ msgstr "tablespace" - -#~ msgid "text" -#~ msgstr "texte" - -#~ msgid "timezone" -#~ msgstr "fuseau_horaire" - -#, c-format -#~ msgid "unexpected result status for \\watch" -#~ msgstr "statut résultat inattendu pour \\watch" - -#~ msgid "unterminated quoted string\n" -#~ msgstr "chaîne entre guillemets non terminée\n" - -#~ msgid "where direction can be empty or one of:" -#~ msgstr "où direction peut être vide ou faire partie de :" diff --git a/src/bin/psql/po/ja.po b/src/bin/psql/po/ja.po index b07e77d628c..3b122e4f13d 100644 --- a/src/bin/psql/po/ja.po +++ b/src/bin/psql/po/ja.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: psql (PostgreSQL 15)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2023-02-06 15:59+0900\n" -"PO-Revision-Date: 2023-11-22 10:50+0900\n" +"POT-Creation-Date: 2024-11-05 09:18+0900\n" +"PO-Revision-Date: 2024-11-05 09:29+0900\n" "Last-Translator: Kyotaro Horiguchi \n" "Language-Team: Japan PostgreSQL Users Group \n" "Language: ja\n" @@ -173,7 +173,7 @@ msgstr "テーブルの内容にセルを追加できません: セルの合計 msgid "invalid output format (internal error): %d" msgstr "出力フォーマットが無効(内部エラー):%d" -#: ../../fe_utils/psqlscan.l:701 +#: ../../fe_utils/psqlscan.l:702 #, c-format msgid "skipping recursive expansion of variable \"%s\"" msgstr "変数\"%s\"の再帰展開をスキップしています" @@ -248,7 +248,7 @@ msgstr "データベース\"%s\"にユーザー\"%s\"として、ホスト\"%s\" msgid "no query buffer" msgstr "問い合わせバッファがありません" -#: command.c:1063 command.c:5491 +#: command.c:1063 command.c:5497 #, c-format msgid "invalid line number: %s" msgstr "不正な行番号です: %s" @@ -262,10 +262,10 @@ msgstr "変更されていません" msgid "%s: invalid encoding name or conversion procedure not found" msgstr "%s: エンコーディング名が不正であるか、または変換プロシージャが見つかりません。" -#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5597 +#: command.c:1317 command.c:2120 command.c:3306 command.c:3505 command.c:5603 #: common.c:181 common.c:230 common.c:399 common.c:1082 common.c:1100 #: common.c:1174 common.c:1281 common.c:1319 common.c:1407 common.c:1443 -#: copy.c:488 copy.c:722 help.c:66 large_obj.c:157 large_obj.c:192 +#: copy.c:488 copy.c:723 help.c:66 large_obj.c:157 large_obj.c:192 #: large_obj.c:254 startup.c:304 #, c-format msgid "%s" @@ -721,22 +721,22 @@ msgstr "\\watchは空の問い合わせでは使えません" msgid "could not set timer: %m" msgstr "タイマーを設定できません: %m" -#: command.c:5078 +#: command.c:5084 #, c-format msgid "%s\t%s (every %gs)\n" msgstr "%s\t%s (%g 秒毎)\n" -#: command.c:5081 +#: command.c:5087 #, c-format msgid "%s (every %gs)\n" msgstr "%s (%g 秒毎)\n" -#: command.c:5142 +#: command.c:5148 #, c-format msgid "could not wait for signals: %m" msgstr "シグナルを待機できませんでした: %m" -#: command.c:5200 command.c:5207 common.c:572 common.c:579 common.c:1063 +#: command.c:5206 command.c:5213 common.c:572 common.c:579 common.c:1063 #, c-format msgid "" "********* QUERY **********\n" @@ -749,12 +749,12 @@ msgstr "" "**************************\n" "\n" -#: command.c:5386 +#: command.c:5392 #, c-format msgid "\"%s.%s\" is not a view" msgstr "\"%s.%s\"はビューではありません" -#: command.c:5402 +#: command.c:5408 #, c-format msgid "could not parse reloptions array" msgstr "reloptions配列をパースできませんでした" @@ -948,11 +948,11 @@ msgstr "" "コピーするデータに続いて改行を入力してください。\n" "バックスラッシュとピリオドだけの行、もしくは EOF シグナルで終了します。" -#: copy.c:684 +#: copy.c:685 msgid "aborted because of read failure" msgstr "読み取りエラーのため中止" -#: copy.c:718 +#: copy.c:719 msgid "trying to exit copy mode" msgstr "コピーモードを終了しようとしています。" @@ -3994,2410 +3994,2416 @@ msgstr "%s: メモリ不足です" #: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66 #: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85 #: sql_help.c:113 sql_help.c:119 sql_help.c:121 sql_help.c:123 sql_help.c:125 -#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:238 -#: sql_help.c:240 sql_help.c:241 sql_help.c:243 sql_help.c:245 sql_help.c:248 -#: sql_help.c:250 sql_help.c:252 sql_help.c:254 sql_help.c:266 sql_help.c:267 -#: sql_help.c:268 sql_help.c:270 sql_help.c:319 sql_help.c:321 sql_help.c:323 -#: sql_help.c:325 sql_help.c:394 sql_help.c:399 sql_help.c:401 sql_help.c:443 -#: sql_help.c:445 sql_help.c:448 sql_help.c:450 sql_help.c:519 sql_help.c:524 -#: sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:593 sql_help.c:595 -#: sql_help.c:597 sql_help.c:599 sql_help.c:601 sql_help.c:604 sql_help.c:606 -#: sql_help.c:609 sql_help.c:620 sql_help.c:622 sql_help.c:666 sql_help.c:668 -#: sql_help.c:670 sql_help.c:673 sql_help.c:675 sql_help.c:677 sql_help.c:714 -#: sql_help.c:718 sql_help.c:722 sql_help.c:741 sql_help.c:744 sql_help.c:747 -#: sql_help.c:776 sql_help.c:788 sql_help.c:796 sql_help.c:799 sql_help.c:802 -#: sql_help.c:817 sql_help.c:820 sql_help.c:849 sql_help.c:854 sql_help.c:859 -#: sql_help.c:864 sql_help.c:869 sql_help.c:896 sql_help.c:898 sql_help.c:900 -#: sql_help.c:902 sql_help.c:905 sql_help.c:907 sql_help.c:954 sql_help.c:999 -#: sql_help.c:1004 sql_help.c:1009 sql_help.c:1014 sql_help.c:1019 -#: sql_help.c:1038 sql_help.c:1049 sql_help.c:1051 sql_help.c:1071 -#: sql_help.c:1081 sql_help.c:1082 sql_help.c:1084 sql_help.c:1086 -#: sql_help.c:1098 sql_help.c:1102 sql_help.c:1104 sql_help.c:1116 -#: sql_help.c:1118 sql_help.c:1120 sql_help.c:1122 sql_help.c:1141 -#: sql_help.c:1143 sql_help.c:1147 sql_help.c:1151 sql_help.c:1155 -#: sql_help.c:1158 sql_help.c:1159 sql_help.c:1160 sql_help.c:1163 -#: sql_help.c:1166 sql_help.c:1168 sql_help.c:1308 sql_help.c:1310 -#: sql_help.c:1313 sql_help.c:1316 sql_help.c:1318 sql_help.c:1320 -#: sql_help.c:1323 sql_help.c:1326 sql_help.c:1443 sql_help.c:1445 -#: sql_help.c:1447 sql_help.c:1450 sql_help.c:1471 sql_help.c:1474 -#: sql_help.c:1477 sql_help.c:1480 sql_help.c:1484 sql_help.c:1486 -#: sql_help.c:1488 sql_help.c:1490 sql_help.c:1504 sql_help.c:1507 -#: sql_help.c:1509 sql_help.c:1511 sql_help.c:1521 sql_help.c:1523 -#: sql_help.c:1533 sql_help.c:1535 sql_help.c:1545 sql_help.c:1548 -#: sql_help.c:1571 sql_help.c:1573 sql_help.c:1575 sql_help.c:1577 -#: sql_help.c:1580 sql_help.c:1582 sql_help.c:1585 sql_help.c:1588 -#: sql_help.c:1639 sql_help.c:1682 sql_help.c:1685 sql_help.c:1687 -#: sql_help.c:1689 sql_help.c:1692 sql_help.c:1694 sql_help.c:1696 -#: sql_help.c:1699 sql_help.c:1749 sql_help.c:1765 sql_help.c:1996 -#: sql_help.c:2065 sql_help.c:2084 sql_help.c:2097 sql_help.c:2154 -#: sql_help.c:2161 sql_help.c:2171 sql_help.c:2197 sql_help.c:2228 -#: sql_help.c:2246 sql_help.c:2274 sql_help.c:2385 sql_help.c:2431 -#: sql_help.c:2456 sql_help.c:2479 sql_help.c:2483 sql_help.c:2517 -#: sql_help.c:2537 sql_help.c:2559 sql_help.c:2573 sql_help.c:2594 -#: sql_help.c:2623 sql_help.c:2658 sql_help.c:2683 sql_help.c:2730 -#: sql_help.c:3025 sql_help.c:3038 sql_help.c:3055 sql_help.c:3071 -#: sql_help.c:3111 sql_help.c:3165 sql_help.c:3169 sql_help.c:3171 -#: sql_help.c:3178 sql_help.c:3197 sql_help.c:3224 sql_help.c:3259 -#: sql_help.c:3271 sql_help.c:3280 sql_help.c:3324 sql_help.c:3338 -#: sql_help.c:3366 sql_help.c:3374 sql_help.c:3386 sql_help.c:3396 -#: sql_help.c:3404 sql_help.c:3412 sql_help.c:3420 sql_help.c:3428 -#: sql_help.c:3437 sql_help.c:3448 sql_help.c:3456 sql_help.c:3464 -#: sql_help.c:3472 sql_help.c:3480 sql_help.c:3490 sql_help.c:3499 -#: sql_help.c:3508 sql_help.c:3516 sql_help.c:3526 sql_help.c:3537 -#: sql_help.c:3545 sql_help.c:3554 sql_help.c:3565 sql_help.c:3574 -#: sql_help.c:3582 sql_help.c:3590 sql_help.c:3598 sql_help.c:3606 -#: sql_help.c:3614 sql_help.c:3622 sql_help.c:3630 sql_help.c:3638 -#: sql_help.c:3646 sql_help.c:3654 sql_help.c:3671 sql_help.c:3680 -#: sql_help.c:3688 sql_help.c:3705 sql_help.c:3720 sql_help.c:4030 -#: sql_help.c:4140 sql_help.c:4169 sql_help.c:4184 sql_help.c:4687 -#: sql_help.c:4735 sql_help.c:4893 +#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:245 +#: sql_help.c:247 sql_help.c:248 sql_help.c:250 sql_help.c:252 sql_help.c:255 +#: sql_help.c:257 sql_help.c:259 sql_help.c:261 sql_help.c:276 sql_help.c:277 +#: sql_help.c:278 sql_help.c:280 sql_help.c:329 sql_help.c:331 sql_help.c:333 +#: sql_help.c:335 sql_help.c:404 sql_help.c:409 sql_help.c:411 sql_help.c:453 +#: sql_help.c:455 sql_help.c:458 sql_help.c:460 sql_help.c:529 sql_help.c:534 +#: sql_help.c:539 sql_help.c:544 sql_help.c:549 sql_help.c:603 sql_help.c:605 +#: sql_help.c:607 sql_help.c:609 sql_help.c:611 sql_help.c:614 sql_help.c:616 +#: sql_help.c:619 sql_help.c:630 sql_help.c:632 sql_help.c:676 sql_help.c:678 +#: sql_help.c:680 sql_help.c:683 sql_help.c:685 sql_help.c:687 sql_help.c:724 +#: sql_help.c:728 sql_help.c:732 sql_help.c:751 sql_help.c:754 sql_help.c:757 +#: sql_help.c:786 sql_help.c:798 sql_help.c:806 sql_help.c:809 sql_help.c:812 +#: sql_help.c:827 sql_help.c:830 sql_help.c:859 sql_help.c:864 sql_help.c:869 +#: sql_help.c:874 sql_help.c:879 sql_help.c:906 sql_help.c:908 sql_help.c:910 +#: sql_help.c:912 sql_help.c:915 sql_help.c:917 sql_help.c:964 sql_help.c:1009 +#: sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 sql_help.c:1029 +#: sql_help.c:1048 sql_help.c:1059 sql_help.c:1061 sql_help.c:1081 +#: sql_help.c:1091 sql_help.c:1092 sql_help.c:1094 sql_help.c:1096 +#: sql_help.c:1108 sql_help.c:1112 sql_help.c:1114 sql_help.c:1126 +#: sql_help.c:1128 sql_help.c:1130 sql_help.c:1132 sql_help.c:1151 +#: sql_help.c:1153 sql_help.c:1157 sql_help.c:1161 sql_help.c:1165 +#: sql_help.c:1168 sql_help.c:1169 sql_help.c:1170 sql_help.c:1173 +#: sql_help.c:1176 sql_help.c:1178 sql_help.c:1317 sql_help.c:1319 +#: sql_help.c:1322 sql_help.c:1325 sql_help.c:1327 sql_help.c:1329 +#: sql_help.c:1332 sql_help.c:1335 sql_help.c:1455 sql_help.c:1457 +#: sql_help.c:1459 sql_help.c:1462 sql_help.c:1483 sql_help.c:1486 +#: sql_help.c:1489 sql_help.c:1492 sql_help.c:1496 sql_help.c:1498 +#: sql_help.c:1500 sql_help.c:1502 sql_help.c:1516 sql_help.c:1519 +#: sql_help.c:1521 sql_help.c:1523 sql_help.c:1533 sql_help.c:1535 +#: sql_help.c:1545 sql_help.c:1547 sql_help.c:1557 sql_help.c:1560 +#: sql_help.c:1583 sql_help.c:1585 sql_help.c:1587 sql_help.c:1589 +#: sql_help.c:1592 sql_help.c:1594 sql_help.c:1597 sql_help.c:1600 +#: sql_help.c:1651 sql_help.c:1694 sql_help.c:1697 sql_help.c:1699 +#: sql_help.c:1701 sql_help.c:1704 sql_help.c:1706 sql_help.c:1708 +#: sql_help.c:1711 sql_help.c:1761 sql_help.c:1777 sql_help.c:2008 +#: sql_help.c:2077 sql_help.c:2096 sql_help.c:2109 sql_help.c:2166 +#: sql_help.c:2173 sql_help.c:2183 sql_help.c:2209 sql_help.c:2240 +#: sql_help.c:2258 sql_help.c:2286 sql_help.c:2397 sql_help.c:2443 +#: sql_help.c:2468 sql_help.c:2491 sql_help.c:2495 sql_help.c:2529 +#: sql_help.c:2549 sql_help.c:2571 sql_help.c:2585 sql_help.c:2606 +#: sql_help.c:2635 sql_help.c:2670 sql_help.c:2695 sql_help.c:2742 +#: sql_help.c:3040 sql_help.c:3053 sql_help.c:3070 sql_help.c:3086 +#: sql_help.c:3126 sql_help.c:3180 sql_help.c:3184 sql_help.c:3186 +#: sql_help.c:3193 sql_help.c:3212 sql_help.c:3239 sql_help.c:3274 +#: sql_help.c:3286 sql_help.c:3295 sql_help.c:3339 sql_help.c:3353 +#: sql_help.c:3381 sql_help.c:3389 sql_help.c:3401 sql_help.c:3411 +#: sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 sql_help.c:3443 +#: sql_help.c:3452 sql_help.c:3463 sql_help.c:3471 sql_help.c:3479 +#: sql_help.c:3487 sql_help.c:3495 sql_help.c:3505 sql_help.c:3514 +#: sql_help.c:3523 sql_help.c:3531 sql_help.c:3541 sql_help.c:3552 +#: sql_help.c:3560 sql_help.c:3569 sql_help.c:3580 sql_help.c:3589 +#: sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 sql_help.c:3621 +#: sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 sql_help.c:3653 +#: sql_help.c:3661 sql_help.c:3669 sql_help.c:3686 sql_help.c:3695 +#: sql_help.c:3703 sql_help.c:3720 sql_help.c:3735 sql_help.c:4045 +#: sql_help.c:4159 sql_help.c:4188 sql_help.c:4203 sql_help.c:4706 +#: sql_help.c:4754 sql_help.c:4912 msgid "name" msgstr "名前" -#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:330 sql_help.c:1846 -#: sql_help.c:3339 sql_help.c:4455 +#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:340 sql_help.c:1858 +#: sql_help.c:3354 sql_help.c:4474 msgid "aggregate_signature" msgstr "集約関数のシグニチャー" -#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:253 -#: sql_help.c:271 sql_help.c:402 sql_help.c:449 sql_help.c:528 sql_help.c:576 -#: sql_help.c:594 sql_help.c:621 sql_help.c:674 sql_help.c:743 sql_help.c:798 -#: sql_help.c:819 sql_help.c:858 sql_help.c:908 sql_help.c:955 sql_help.c:1008 -#: sql_help.c:1040 sql_help.c:1050 sql_help.c:1085 sql_help.c:1105 -#: sql_help.c:1119 sql_help.c:1169 sql_help.c:1317 sql_help.c:1444 -#: sql_help.c:1487 sql_help.c:1508 sql_help.c:1522 sql_help.c:1534 -#: sql_help.c:1547 sql_help.c:1574 sql_help.c:1640 sql_help.c:1693 +#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:260 +#: sql_help.c:281 sql_help.c:412 sql_help.c:459 sql_help.c:538 sql_help.c:586 +#: sql_help.c:604 sql_help.c:631 sql_help.c:684 sql_help.c:753 sql_help.c:808 +#: sql_help.c:829 sql_help.c:868 sql_help.c:918 sql_help.c:965 sql_help.c:1018 +#: sql_help.c:1050 sql_help.c:1060 sql_help.c:1095 sql_help.c:1115 +#: sql_help.c:1129 sql_help.c:1179 sql_help.c:1326 sql_help.c:1456 +#: sql_help.c:1499 sql_help.c:1520 sql_help.c:1534 sql_help.c:1546 +#: sql_help.c:1559 sql_help.c:1586 sql_help.c:1652 sql_help.c:1705 msgid "new_name" msgstr "新しい名前" -#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:251 -#: sql_help.c:269 sql_help.c:400 sql_help.c:485 sql_help.c:533 sql_help.c:623 -#: sql_help.c:632 sql_help.c:697 sql_help.c:717 sql_help.c:746 sql_help.c:801 -#: sql_help.c:863 sql_help.c:906 sql_help.c:1013 sql_help.c:1052 -#: sql_help.c:1083 sql_help.c:1103 sql_help.c:1117 sql_help.c:1167 -#: sql_help.c:1381 sql_help.c:1446 sql_help.c:1489 sql_help.c:1510 -#: sql_help.c:1572 sql_help.c:1688 sql_help.c:3011 +#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:258 +#: sql_help.c:279 sql_help.c:410 sql_help.c:495 sql_help.c:543 sql_help.c:633 +#: sql_help.c:642 sql_help.c:707 sql_help.c:727 sql_help.c:756 sql_help.c:811 +#: sql_help.c:873 sql_help.c:916 sql_help.c:1023 sql_help.c:1062 +#: sql_help.c:1093 sql_help.c:1113 sql_help.c:1127 sql_help.c:1177 +#: sql_help.c:1390 sql_help.c:1458 sql_help.c:1501 sql_help.c:1522 +#: sql_help.c:1584 sql_help.c:1700 sql_help.c:3026 msgid "new_owner" msgstr "新しい所有者" -#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:255 sql_help.c:322 -#: sql_help.c:451 sql_help.c:538 sql_help.c:676 sql_help.c:721 sql_help.c:749 -#: sql_help.c:804 sql_help.c:868 sql_help.c:1018 sql_help.c:1087 -#: sql_help.c:1121 sql_help.c:1319 sql_help.c:1491 sql_help.c:1512 -#: sql_help.c:1524 sql_help.c:1536 sql_help.c:1576 sql_help.c:1695 +#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:262 sql_help.c:332 +#: sql_help.c:461 sql_help.c:548 sql_help.c:686 sql_help.c:731 sql_help.c:759 +#: sql_help.c:814 sql_help.c:878 sql_help.c:1028 sql_help.c:1097 +#: sql_help.c:1131 sql_help.c:1328 sql_help.c:1503 sql_help.c:1524 +#: sql_help.c:1536 sql_help.c:1548 sql_help.c:1588 sql_help.c:1707 msgid "new_schema" msgstr "新しいスキーマ" -#: sql_help.c:44 sql_help.c:1910 sql_help.c:3340 sql_help.c:4484 +#: sql_help.c:44 sql_help.c:1922 sql_help.c:3355 sql_help.c:4503 msgid "where aggregate_signature is:" msgstr "集約関数のシグニチャーには以下のものがあります:" -#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:340 sql_help.c:353 -#: sql_help.c:357 sql_help.c:373 sql_help.c:376 sql_help.c:379 sql_help.c:520 -#: sql_help.c:525 sql_help.c:530 sql_help.c:535 sql_help.c:540 sql_help.c:850 -#: sql_help.c:855 sql_help.c:860 sql_help.c:865 sql_help.c:870 sql_help.c:1000 -#: sql_help.c:1005 sql_help.c:1010 sql_help.c:1015 sql_help.c:1020 -#: sql_help.c:1864 sql_help.c:1881 sql_help.c:1887 sql_help.c:1911 -#: sql_help.c:1914 sql_help.c:1917 sql_help.c:2066 sql_help.c:2085 -#: sql_help.c:2088 sql_help.c:2386 sql_help.c:2595 sql_help.c:3341 -#: sql_help.c:3344 sql_help.c:3347 sql_help.c:3438 sql_help.c:3527 -#: sql_help.c:3555 sql_help.c:3905 sql_help.c:4354 sql_help.c:4461 -#: sql_help.c:4468 sql_help.c:4474 sql_help.c:4485 sql_help.c:4488 -#: sql_help.c:4491 +#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:350 sql_help.c:363 +#: sql_help.c:367 sql_help.c:383 sql_help.c:386 sql_help.c:389 sql_help.c:530 +#: sql_help.c:535 sql_help.c:540 sql_help.c:545 sql_help.c:550 sql_help.c:860 +#: sql_help.c:865 sql_help.c:870 sql_help.c:875 sql_help.c:880 sql_help.c:1010 +#: sql_help.c:1015 sql_help.c:1020 sql_help.c:1025 sql_help.c:1030 +#: sql_help.c:1876 sql_help.c:1893 sql_help.c:1899 sql_help.c:1923 +#: sql_help.c:1926 sql_help.c:1929 sql_help.c:2078 sql_help.c:2097 +#: sql_help.c:2100 sql_help.c:2398 sql_help.c:2607 sql_help.c:3356 +#: sql_help.c:3359 sql_help.c:3362 sql_help.c:3453 sql_help.c:3542 +#: sql_help.c:3570 sql_help.c:3920 sql_help.c:4373 sql_help.c:4480 +#: sql_help.c:4487 sql_help.c:4493 sql_help.c:4504 sql_help.c:4507 +#: sql_help.c:4510 msgid "argmode" msgstr "引数のモード" -#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:341 sql_help.c:354 -#: sql_help.c:358 sql_help.c:374 sql_help.c:377 sql_help.c:380 sql_help.c:521 -#: sql_help.c:526 sql_help.c:531 sql_help.c:536 sql_help.c:541 sql_help.c:851 -#: sql_help.c:856 sql_help.c:861 sql_help.c:866 sql_help.c:871 sql_help.c:1001 -#: sql_help.c:1006 sql_help.c:1011 sql_help.c:1016 sql_help.c:1021 -#: sql_help.c:1865 sql_help.c:1882 sql_help.c:1888 sql_help.c:1912 -#: sql_help.c:1915 sql_help.c:1918 sql_help.c:2067 sql_help.c:2086 -#: sql_help.c:2089 sql_help.c:2387 sql_help.c:2596 sql_help.c:3342 -#: sql_help.c:3345 sql_help.c:3348 sql_help.c:3439 sql_help.c:3528 -#: sql_help.c:3556 sql_help.c:4462 sql_help.c:4469 sql_help.c:4475 -#: sql_help.c:4486 sql_help.c:4489 sql_help.c:4492 +#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:351 sql_help.c:364 +#: sql_help.c:368 sql_help.c:384 sql_help.c:387 sql_help.c:390 sql_help.c:531 +#: sql_help.c:536 sql_help.c:541 sql_help.c:546 sql_help.c:551 sql_help.c:861 +#: sql_help.c:866 sql_help.c:871 sql_help.c:876 sql_help.c:881 sql_help.c:1011 +#: sql_help.c:1016 sql_help.c:1021 sql_help.c:1026 sql_help.c:1031 +#: sql_help.c:1877 sql_help.c:1894 sql_help.c:1900 sql_help.c:1924 +#: sql_help.c:1927 sql_help.c:1930 sql_help.c:2079 sql_help.c:2098 +#: sql_help.c:2101 sql_help.c:2399 sql_help.c:2608 sql_help.c:3357 +#: sql_help.c:3360 sql_help.c:3363 sql_help.c:3454 sql_help.c:3543 +#: sql_help.c:3571 sql_help.c:4481 sql_help.c:4488 sql_help.c:4494 +#: sql_help.c:4505 sql_help.c:4508 sql_help.c:4511 msgid "argname" msgstr "引数の名前" -#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:342 sql_help.c:355 -#: sql_help.c:359 sql_help.c:375 sql_help.c:378 sql_help.c:381 sql_help.c:522 -#: sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:542 sql_help.c:852 -#: sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:872 sql_help.c:1002 -#: sql_help.c:1007 sql_help.c:1012 sql_help.c:1017 sql_help.c:1022 -#: sql_help.c:1866 sql_help.c:1883 sql_help.c:1889 sql_help.c:1913 -#: sql_help.c:1916 sql_help.c:1919 sql_help.c:2388 sql_help.c:2597 -#: sql_help.c:3343 sql_help.c:3346 sql_help.c:3349 sql_help.c:3440 -#: sql_help.c:3529 sql_help.c:3557 sql_help.c:4463 sql_help.c:4470 -#: sql_help.c:4476 sql_help.c:4487 sql_help.c:4490 sql_help.c:4493 +#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:352 sql_help.c:365 +#: sql_help.c:369 sql_help.c:385 sql_help.c:388 sql_help.c:391 sql_help.c:532 +#: sql_help.c:537 sql_help.c:542 sql_help.c:547 sql_help.c:552 sql_help.c:862 +#: sql_help.c:867 sql_help.c:872 sql_help.c:877 sql_help.c:882 sql_help.c:1012 +#: sql_help.c:1017 sql_help.c:1022 sql_help.c:1027 sql_help.c:1032 +#: sql_help.c:1878 sql_help.c:1895 sql_help.c:1901 sql_help.c:1925 +#: sql_help.c:1928 sql_help.c:1931 sql_help.c:2400 sql_help.c:2609 +#: sql_help.c:3358 sql_help.c:3361 sql_help.c:3364 sql_help.c:3455 +#: sql_help.c:3544 sql_help.c:3572 sql_help.c:4482 sql_help.c:4489 +#: sql_help.c:4495 sql_help.c:4506 sql_help.c:4509 sql_help.c:4512 msgid "argtype" msgstr "引数の型" -#: sql_help.c:114 sql_help.c:397 sql_help.c:474 sql_help.c:486 sql_help.c:949 -#: sql_help.c:1100 sql_help.c:1505 sql_help.c:1634 sql_help.c:1666 -#: sql_help.c:1718 sql_help.c:1781 sql_help.c:1967 sql_help.c:1974 -#: sql_help.c:2277 sql_help.c:2327 sql_help.c:2334 sql_help.c:2343 -#: sql_help.c:2432 sql_help.c:2659 sql_help.c:2752 sql_help.c:3040 -#: sql_help.c:3225 sql_help.c:3247 sql_help.c:3387 sql_help.c:3742 -#: sql_help.c:3949 sql_help.c:4183 sql_help.c:4956 +#: sql_help.c:114 sql_help.c:407 sql_help.c:484 sql_help.c:496 sql_help.c:959 +#: sql_help.c:1110 sql_help.c:1517 sql_help.c:1646 sql_help.c:1678 +#: sql_help.c:1730 sql_help.c:1793 sql_help.c:1979 sql_help.c:1986 +#: sql_help.c:2289 sql_help.c:2339 sql_help.c:2346 sql_help.c:2355 +#: sql_help.c:2444 sql_help.c:2671 sql_help.c:2764 sql_help.c:3055 +#: sql_help.c:3240 sql_help.c:3262 sql_help.c:3402 sql_help.c:3757 +#: sql_help.c:3964 sql_help.c:4202 sql_help.c:4975 msgid "option" msgstr "オプション" -#: sql_help.c:115 sql_help.c:950 sql_help.c:1635 sql_help.c:2433 -#: sql_help.c:2660 sql_help.c:3226 sql_help.c:3388 +#: sql_help.c:115 sql_help.c:960 sql_help.c:1647 sql_help.c:2445 +#: sql_help.c:2672 sql_help.c:3241 sql_help.c:3403 msgid "where option can be:" msgstr "オプションには以下のものがあります:" -#: sql_help.c:116 sql_help.c:2209 +#: sql_help.c:116 sql_help.c:2221 msgid "allowconn" msgstr "接続の可否(真偽値)" -#: sql_help.c:117 sql_help.c:951 sql_help.c:1636 sql_help.c:2210 -#: sql_help.c:2434 sql_help.c:2661 sql_help.c:3227 +#: sql_help.c:117 sql_help.c:961 sql_help.c:1648 sql_help.c:2222 +#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 msgid "connlimit" msgstr "最大同時接続数" -#: sql_help.c:118 sql_help.c:2211 +#: sql_help.c:118 sql_help.c:2223 msgid "istemplate" msgstr "テンプレートかどうか(真偽値)" -#: sql_help.c:124 sql_help.c:611 sql_help.c:679 sql_help.c:693 sql_help.c:1322 -#: sql_help.c:1374 sql_help.c:4187 +#: sql_help.c:124 sql_help.c:621 sql_help.c:689 sql_help.c:703 sql_help.c:1331 +#: sql_help.c:1383 sql_help.c:4206 msgid "new_tablespace" msgstr "新しいテーブル空間名" -#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:548 sql_help.c:550 -#: sql_help.c:551 sql_help.c:875 sql_help.c:877 sql_help.c:878 sql_help.c:958 -#: sql_help.c:962 sql_help.c:965 sql_help.c:1027 sql_help.c:1029 -#: sql_help.c:1030 sql_help.c:1180 sql_help.c:1183 sql_help.c:1643 -#: sql_help.c:1647 sql_help.c:1650 sql_help.c:2398 sql_help.c:2601 -#: sql_help.c:3917 sql_help.c:4205 sql_help.c:4366 sql_help.c:4675 +#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:558 sql_help.c:560 +#: sql_help.c:561 sql_help.c:885 sql_help.c:887 sql_help.c:888 sql_help.c:968 +#: sql_help.c:972 sql_help.c:975 sql_help.c:1037 sql_help.c:1039 +#: sql_help.c:1040 sql_help.c:1190 sql_help.c:1192 sql_help.c:1655 +#: sql_help.c:1659 sql_help.c:1662 sql_help.c:2410 sql_help.c:2613 +#: sql_help.c:3932 sql_help.c:4224 sql_help.c:4385 sql_help.c:4694 msgid "configuration_parameter" msgstr "設定パラメータ" -#: sql_help.c:128 sql_help.c:398 sql_help.c:469 sql_help.c:475 sql_help.c:487 -#: sql_help.c:549 sql_help.c:603 sql_help.c:685 sql_help.c:695 sql_help.c:876 -#: sql_help.c:904 sql_help.c:959 sql_help.c:1028 sql_help.c:1101 -#: sql_help.c:1146 sql_help.c:1150 sql_help.c:1154 sql_help.c:1157 -#: sql_help.c:1162 sql_help.c:1165 sql_help.c:1181 sql_help.c:1182 -#: sql_help.c:1353 sql_help.c:1376 sql_help.c:1424 sql_help.c:1449 -#: sql_help.c:1506 sql_help.c:1590 sql_help.c:1644 sql_help.c:1667 -#: sql_help.c:2278 sql_help.c:2328 sql_help.c:2335 sql_help.c:2344 -#: sql_help.c:2399 sql_help.c:2400 sql_help.c:2464 sql_help.c:2467 -#: sql_help.c:2501 sql_help.c:2602 sql_help.c:2603 sql_help.c:2626 -#: sql_help.c:2753 sql_help.c:2792 sql_help.c:2902 sql_help.c:2915 -#: sql_help.c:2929 sql_help.c:2970 sql_help.c:2997 sql_help.c:3014 -#: sql_help.c:3041 sql_help.c:3248 sql_help.c:3950 sql_help.c:4676 -#: sql_help.c:4677 sql_help.c:4678 sql_help.c:4679 +#: sql_help.c:128 sql_help.c:408 sql_help.c:479 sql_help.c:485 sql_help.c:497 +#: sql_help.c:559 sql_help.c:613 sql_help.c:695 sql_help.c:705 sql_help.c:886 +#: sql_help.c:914 sql_help.c:969 sql_help.c:1038 sql_help.c:1111 +#: sql_help.c:1156 sql_help.c:1160 sql_help.c:1164 sql_help.c:1167 +#: sql_help.c:1172 sql_help.c:1175 sql_help.c:1191 sql_help.c:1362 +#: sql_help.c:1385 sql_help.c:1433 sql_help.c:1441 sql_help.c:1461 +#: sql_help.c:1518 sql_help.c:1602 sql_help.c:1656 sql_help.c:1679 +#: sql_help.c:2290 sql_help.c:2340 sql_help.c:2347 sql_help.c:2356 +#: sql_help.c:2411 sql_help.c:2412 sql_help.c:2476 sql_help.c:2479 +#: sql_help.c:2513 sql_help.c:2614 sql_help.c:2615 sql_help.c:2638 +#: sql_help.c:2765 sql_help.c:2804 sql_help.c:2914 sql_help.c:2927 +#: sql_help.c:2941 sql_help.c:2982 sql_help.c:2990 sql_help.c:3012 +#: sql_help.c:3029 sql_help.c:3056 sql_help.c:3263 sql_help.c:3965 +#: sql_help.c:4695 sql_help.c:4696 sql_help.c:4697 sql_help.c:4698 msgid "value" msgstr "値" -#: sql_help.c:200 +#: sql_help.c:202 msgid "target_role" msgstr "対象のロール" -#: sql_help.c:201 sql_help.c:913 sql_help.c:2262 sql_help.c:2631 -#: sql_help.c:2708 sql_help.c:2713 sql_help.c:3880 sql_help.c:3889 -#: sql_help.c:3908 sql_help.c:3920 sql_help.c:4329 sql_help.c:4338 -#: sql_help.c:4357 sql_help.c:4369 +#: sql_help.c:203 sql_help.c:923 sql_help.c:2274 sql_help.c:2643 +#: sql_help.c:2720 sql_help.c:2725 sql_help.c:3895 sql_help.c:3904 +#: sql_help.c:3923 sql_help.c:3935 sql_help.c:4348 sql_help.c:4357 +#: sql_help.c:4376 sql_help.c:4388 msgid "schema_name" msgstr "スキーマ名" -#: sql_help.c:202 +#: sql_help.c:204 msgid "abbreviated_grant_or_revoke" msgstr "GRANT/REVOKEの省略形" -#: sql_help.c:203 +#: sql_help.c:205 msgid "where abbreviated_grant_or_revoke is one of:" msgstr "GRANT/REVOKEの省略形は以下のいずれかです:" -#: sql_help.c:204 sql_help.c:205 sql_help.c:206 sql_help.c:207 sql_help.c:208 -#: sql_help.c:209 sql_help.c:210 sql_help.c:211 sql_help.c:212 sql_help.c:213 -#: sql_help.c:574 sql_help.c:610 sql_help.c:678 sql_help.c:822 sql_help.c:969 -#: sql_help.c:1321 sql_help.c:1654 sql_help.c:2437 sql_help.c:2438 -#: sql_help.c:2439 sql_help.c:2440 sql_help.c:2441 sql_help.c:2575 -#: sql_help.c:2664 sql_help.c:2665 sql_help.c:2666 sql_help.c:2667 -#: sql_help.c:2668 sql_help.c:3230 sql_help.c:3231 sql_help.c:3232 -#: sql_help.c:3233 sql_help.c:3234 sql_help.c:3929 sql_help.c:3933 -#: sql_help.c:4378 sql_help.c:4382 sql_help.c:4697 +#: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210 +#: sql_help.c:211 sql_help.c:212 sql_help.c:213 sql_help.c:214 sql_help.c:215 +#: sql_help.c:584 sql_help.c:620 sql_help.c:688 sql_help.c:832 sql_help.c:979 +#: sql_help.c:1330 sql_help.c:1666 sql_help.c:2449 sql_help.c:2450 +#: sql_help.c:2451 sql_help.c:2452 sql_help.c:2453 sql_help.c:2587 +#: sql_help.c:2676 sql_help.c:2677 sql_help.c:2678 sql_help.c:2679 +#: sql_help.c:2680 sql_help.c:3245 sql_help.c:3246 sql_help.c:3247 +#: sql_help.c:3248 sql_help.c:3249 sql_help.c:3944 sql_help.c:3948 +#: sql_help.c:4397 sql_help.c:4401 sql_help.c:4716 msgid "role_name" msgstr "ロール名" -#: sql_help.c:239 sql_help.c:462 sql_help.c:912 sql_help.c:1337 sql_help.c:1339 -#: sql_help.c:1391 sql_help.c:1403 sql_help.c:1428 sql_help.c:1684 -#: sql_help.c:2231 sql_help.c:2235 sql_help.c:2347 sql_help.c:2352 -#: sql_help.c:2460 sql_help.c:2630 sql_help.c:2769 sql_help.c:2774 -#: sql_help.c:2776 sql_help.c:2897 sql_help.c:2910 sql_help.c:2924 -#: sql_help.c:2933 sql_help.c:2945 sql_help.c:2974 sql_help.c:3981 -#: sql_help.c:3996 sql_help.c:3998 sql_help.c:4085 sql_help.c:4088 -#: sql_help.c:4090 sql_help.c:4548 sql_help.c:4549 sql_help.c:4558 -#: sql_help.c:4605 sql_help.c:4606 sql_help.c:4607 sql_help.c:4608 -#: sql_help.c:4609 sql_help.c:4610 sql_help.c:4650 sql_help.c:4651 -#: sql_help.c:4656 sql_help.c:4661 sql_help.c:4805 sql_help.c:4806 -#: sql_help.c:4815 sql_help.c:4862 sql_help.c:4863 sql_help.c:4864 -#: sql_help.c:4865 sql_help.c:4866 sql_help.c:4867 sql_help.c:4921 -#: sql_help.c:4923 sql_help.c:4983 sql_help.c:5043 sql_help.c:5044 -#: sql_help.c:5053 sql_help.c:5100 sql_help.c:5101 sql_help.c:5102 -#: sql_help.c:5103 sql_help.c:5104 sql_help.c:5105 +#: sql_help.c:246 sql_help.c:265 sql_help.c:472 sql_help.c:922 sql_help.c:1346 +#: sql_help.c:1348 sql_help.c:1400 sql_help.c:1412 sql_help.c:1437 +#: sql_help.c:1696 sql_help.c:2243 sql_help.c:2247 sql_help.c:2359 +#: sql_help.c:2364 sql_help.c:2472 sql_help.c:2642 sql_help.c:2781 +#: sql_help.c:2786 sql_help.c:2788 sql_help.c:2909 sql_help.c:2922 +#: sql_help.c:2936 sql_help.c:2945 sql_help.c:2957 sql_help.c:2986 +#: sql_help.c:3996 sql_help.c:4011 sql_help.c:4013 sql_help.c:4102 +#: sql_help.c:4105 sql_help.c:4107 sql_help.c:4567 sql_help.c:4568 +#: sql_help.c:4577 sql_help.c:4624 sql_help.c:4625 sql_help.c:4626 +#: sql_help.c:4627 sql_help.c:4628 sql_help.c:4629 sql_help.c:4669 +#: sql_help.c:4670 sql_help.c:4675 sql_help.c:4680 sql_help.c:4824 +#: sql_help.c:4825 sql_help.c:4834 sql_help.c:4881 sql_help.c:4882 +#: sql_help.c:4883 sql_help.c:4884 sql_help.c:4885 sql_help.c:4886 +#: sql_help.c:4940 sql_help.c:4942 sql_help.c:5002 sql_help.c:5062 +#: sql_help.c:5063 sql_help.c:5072 sql_help.c:5119 sql_help.c:5120 +#: sql_help.c:5121 sql_help.c:5122 sql_help.c:5123 sql_help.c:5124 msgid "expression" msgstr "評価式" -#: sql_help.c:242 +#: sql_help.c:249 msgid "domain_constraint" msgstr "ドメイン制約" -#: sql_help.c:244 sql_help.c:246 sql_help.c:249 sql_help.c:477 sql_help.c:478 -#: sql_help.c:1314 sql_help.c:1361 sql_help.c:1362 sql_help.c:1363 -#: sql_help.c:1390 sql_help.c:1402 sql_help.c:1419 sql_help.c:1852 -#: sql_help.c:1854 sql_help.c:2234 sql_help.c:2346 sql_help.c:2351 -#: sql_help.c:2932 sql_help.c:2944 sql_help.c:3993 +#: sql_help.c:251 sql_help.c:253 sql_help.c:256 sql_help.c:264 sql_help.c:487 +#: sql_help.c:488 sql_help.c:1323 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1372 sql_help.c:1399 sql_help.c:1411 sql_help.c:1428 +#: sql_help.c:1864 sql_help.c:1866 sql_help.c:2246 sql_help.c:2358 +#: sql_help.c:2363 sql_help.c:2944 sql_help.c:2956 sql_help.c:4008 msgid "constraint_name" msgstr "制約名" -#: sql_help.c:247 sql_help.c:1315 +#: sql_help.c:254 sql_help.c:1324 msgid "new_constraint_name" msgstr "新しい制約名" -#: sql_help.c:320 sql_help.c:1099 +#: sql_help.c:263 +msgid "where domain_constraint is:" +msgstr "ドメイン制約は以下の通りです:" + +#: sql_help.c:330 sql_help.c:1109 msgid "new_version" msgstr "新しいバージョン" -#: sql_help.c:324 sql_help.c:326 +#: sql_help.c:334 sql_help.c:336 msgid "member_object" msgstr "メンバーオブジェクト" -#: sql_help.c:327 +#: sql_help.c:337 msgid "where member_object is:" msgstr "メンバーオブジェクトは以下の通りです:" -#: sql_help.c:328 sql_help.c:333 sql_help.c:334 sql_help.c:335 sql_help.c:336 -#: sql_help.c:337 sql_help.c:338 sql_help.c:343 sql_help.c:347 sql_help.c:349 -#: sql_help.c:351 sql_help.c:360 sql_help.c:361 sql_help.c:362 sql_help.c:363 -#: sql_help.c:364 sql_help.c:365 sql_help.c:366 sql_help.c:367 sql_help.c:370 -#: sql_help.c:371 sql_help.c:1844 sql_help.c:1849 sql_help.c:1856 -#: sql_help.c:1857 sql_help.c:1858 sql_help.c:1859 sql_help.c:1860 -#: sql_help.c:1861 sql_help.c:1862 sql_help.c:1867 sql_help.c:1869 -#: sql_help.c:1873 sql_help.c:1875 sql_help.c:1879 sql_help.c:1884 -#: sql_help.c:1885 sql_help.c:1892 sql_help.c:1893 sql_help.c:1894 -#: sql_help.c:1895 sql_help.c:1896 sql_help.c:1897 sql_help.c:1898 -#: sql_help.c:1899 sql_help.c:1900 sql_help.c:1901 sql_help.c:1902 -#: sql_help.c:1907 sql_help.c:1908 sql_help.c:4451 sql_help.c:4456 -#: sql_help.c:4457 sql_help.c:4458 sql_help.c:4459 sql_help.c:4465 -#: sql_help.c:4466 sql_help.c:4471 sql_help.c:4472 sql_help.c:4477 -#: sql_help.c:4478 sql_help.c:4479 sql_help.c:4480 sql_help.c:4481 -#: sql_help.c:4482 +#: sql_help.c:338 sql_help.c:343 sql_help.c:344 sql_help.c:345 sql_help.c:346 +#: sql_help.c:347 sql_help.c:348 sql_help.c:353 sql_help.c:357 sql_help.c:359 +#: sql_help.c:361 sql_help.c:370 sql_help.c:371 sql_help.c:372 sql_help.c:373 +#: sql_help.c:374 sql_help.c:375 sql_help.c:376 sql_help.c:377 sql_help.c:380 +#: sql_help.c:381 sql_help.c:1856 sql_help.c:1861 sql_help.c:1868 +#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872 +#: sql_help.c:1873 sql_help.c:1874 sql_help.c:1879 sql_help.c:1881 +#: sql_help.c:1885 sql_help.c:1887 sql_help.c:1891 sql_help.c:1896 +#: sql_help.c:1897 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 +#: sql_help.c:1907 sql_help.c:1908 sql_help.c:1909 sql_help.c:1910 +#: sql_help.c:1911 sql_help.c:1912 sql_help.c:1913 sql_help.c:1914 +#: sql_help.c:1919 sql_help.c:1920 sql_help.c:4470 sql_help.c:4475 +#: sql_help.c:4476 sql_help.c:4477 sql_help.c:4478 sql_help.c:4484 +#: sql_help.c:4485 sql_help.c:4490 sql_help.c:4491 sql_help.c:4496 +#: sql_help.c:4497 sql_help.c:4498 sql_help.c:4499 sql_help.c:4500 +#: sql_help.c:4501 msgid "object_name" msgstr "オブジェクト名" -#: sql_help.c:329 sql_help.c:1845 sql_help.c:4454 +#: sql_help.c:339 sql_help.c:1857 sql_help.c:4473 msgid "aggregate_name" msgstr "集約関数名" -#: sql_help.c:331 sql_help.c:1847 sql_help.c:2131 sql_help.c:2135 -#: sql_help.c:2137 sql_help.c:3357 +#: sql_help.c:341 sql_help.c:1859 sql_help.c:2143 sql_help.c:2147 +#: sql_help.c:2149 sql_help.c:3372 msgid "source_type" msgstr "変換前の型" -#: sql_help.c:332 sql_help.c:1848 sql_help.c:2132 sql_help.c:2136 -#: sql_help.c:2138 sql_help.c:3358 +#: sql_help.c:342 sql_help.c:1860 sql_help.c:2144 sql_help.c:2148 +#: sql_help.c:2150 sql_help.c:3373 msgid "target_type" msgstr "変換後の型" -#: sql_help.c:339 sql_help.c:786 sql_help.c:1863 sql_help.c:2133 -#: sql_help.c:2174 sql_help.c:2250 sql_help.c:2518 sql_help.c:2549 -#: sql_help.c:3117 sql_help.c:4353 sql_help.c:4460 sql_help.c:4577 -#: sql_help.c:4581 sql_help.c:4585 sql_help.c:4588 sql_help.c:4834 -#: sql_help.c:4838 sql_help.c:4842 sql_help.c:4845 sql_help.c:5072 -#: sql_help.c:5076 sql_help.c:5080 sql_help.c:5083 +#: sql_help.c:349 sql_help.c:796 sql_help.c:1875 sql_help.c:2145 +#: sql_help.c:2186 sql_help.c:2262 sql_help.c:2530 sql_help.c:2561 +#: sql_help.c:3132 sql_help.c:4372 sql_help.c:4479 sql_help.c:4596 +#: sql_help.c:4600 sql_help.c:4604 sql_help.c:4607 sql_help.c:4853 +#: sql_help.c:4857 sql_help.c:4861 sql_help.c:4864 sql_help.c:5091 +#: sql_help.c:5095 sql_help.c:5099 sql_help.c:5102 msgid "function_name" msgstr "関数名" -#: sql_help.c:344 sql_help.c:779 sql_help.c:1870 sql_help.c:2542 +#: sql_help.c:354 sql_help.c:789 sql_help.c:1882 sql_help.c:2554 msgid "operator_name" msgstr "演算子名" -#: sql_help.c:345 sql_help.c:715 sql_help.c:719 sql_help.c:723 sql_help.c:1871 -#: sql_help.c:2519 sql_help.c:3481 +#: sql_help.c:355 sql_help.c:725 sql_help.c:729 sql_help.c:733 sql_help.c:1883 +#: sql_help.c:2531 sql_help.c:3496 msgid "left_type" msgstr "左辺の型" -#: sql_help.c:346 sql_help.c:716 sql_help.c:720 sql_help.c:724 sql_help.c:1872 -#: sql_help.c:2520 sql_help.c:3482 +#: sql_help.c:356 sql_help.c:726 sql_help.c:730 sql_help.c:734 sql_help.c:1884 +#: sql_help.c:2532 sql_help.c:3497 msgid "right_type" msgstr "右辺の型" -#: sql_help.c:348 sql_help.c:350 sql_help.c:742 sql_help.c:745 sql_help.c:748 -#: sql_help.c:777 sql_help.c:789 sql_help.c:797 sql_help.c:800 sql_help.c:803 -#: sql_help.c:1408 sql_help.c:1874 sql_help.c:1876 sql_help.c:2539 -#: sql_help.c:2560 sql_help.c:2950 sql_help.c:3491 sql_help.c:3500 +#: sql_help.c:358 sql_help.c:360 sql_help.c:752 sql_help.c:755 sql_help.c:758 +#: sql_help.c:787 sql_help.c:799 sql_help.c:807 sql_help.c:810 sql_help.c:813 +#: sql_help.c:1417 sql_help.c:1886 sql_help.c:1888 sql_help.c:2551 +#: sql_help.c:2572 sql_help.c:2962 sql_help.c:3506 sql_help.c:3515 msgid "index_method" msgstr "インデックスメソッド" -#: sql_help.c:352 sql_help.c:1880 sql_help.c:4467 +#: sql_help.c:362 sql_help.c:1892 sql_help.c:4486 msgid "procedure_name" msgstr "プロシージャ名" -#: sql_help.c:356 sql_help.c:1886 sql_help.c:3904 sql_help.c:4473 +#: sql_help.c:366 sql_help.c:1898 sql_help.c:3919 sql_help.c:4492 msgid "routine_name" msgstr "ルーチン名" -#: sql_help.c:368 sql_help.c:1380 sql_help.c:1903 sql_help.c:2394 -#: sql_help.c:2600 sql_help.c:2905 sql_help.c:3084 sql_help.c:3662 -#: sql_help.c:3926 sql_help.c:4375 +#: sql_help.c:378 sql_help.c:1389 sql_help.c:1915 sql_help.c:2406 +#: sql_help.c:2612 sql_help.c:2917 sql_help.c:3099 sql_help.c:3677 +#: sql_help.c:3941 sql_help.c:4394 msgid "type_name" msgstr "型名" -#: sql_help.c:369 sql_help.c:1904 sql_help.c:2393 sql_help.c:2599 -#: sql_help.c:3085 sql_help.c:3315 sql_help.c:3663 sql_help.c:3911 -#: sql_help.c:4360 +#: sql_help.c:379 sql_help.c:1916 sql_help.c:2405 sql_help.c:2611 +#: sql_help.c:3100 sql_help.c:3330 sql_help.c:3678 sql_help.c:3926 +#: sql_help.c:4379 msgid "lang_name" msgstr "言語名" -#: sql_help.c:372 +#: sql_help.c:382 msgid "and aggregate_signature is:" msgstr "集約関数のシグニチャーは以下の通りです:" -#: sql_help.c:395 sql_help.c:1998 sql_help.c:2275 +#: sql_help.c:405 sql_help.c:2010 sql_help.c:2287 msgid "handler_function" msgstr "ハンドラー関数" -#: sql_help.c:396 sql_help.c:2276 +#: sql_help.c:406 sql_help.c:2288 msgid "validator_function" msgstr "バリデーター関数" -#: sql_help.c:444 sql_help.c:523 sql_help.c:667 sql_help.c:853 sql_help.c:1003 -#: sql_help.c:1309 sql_help.c:1581 +#: sql_help.c:454 sql_help.c:533 sql_help.c:677 sql_help.c:863 sql_help.c:1013 +#: sql_help.c:1318 sql_help.c:1593 msgid "action" msgstr "アクション" -#: sql_help.c:446 sql_help.c:453 sql_help.c:457 sql_help.c:458 sql_help.c:461 -#: sql_help.c:463 sql_help.c:464 sql_help.c:465 sql_help.c:467 sql_help.c:470 -#: sql_help.c:472 sql_help.c:473 sql_help.c:671 sql_help.c:681 sql_help.c:683 -#: sql_help.c:686 sql_help.c:688 sql_help.c:689 sql_help.c:911 sql_help.c:1080 -#: sql_help.c:1311 sql_help.c:1329 sql_help.c:1333 sql_help.c:1334 -#: sql_help.c:1338 sql_help.c:1340 sql_help.c:1341 sql_help.c:1342 -#: sql_help.c:1343 sql_help.c:1345 sql_help.c:1348 sql_help.c:1349 -#: sql_help.c:1351 sql_help.c:1354 sql_help.c:1356 sql_help.c:1357 -#: sql_help.c:1404 sql_help.c:1406 sql_help.c:1413 sql_help.c:1422 -#: sql_help.c:1427 sql_help.c:1431 sql_help.c:1432 sql_help.c:1683 -#: sql_help.c:1686 sql_help.c:1690 sql_help.c:1726 sql_help.c:1851 -#: sql_help.c:1964 sql_help.c:1970 sql_help.c:1983 sql_help.c:1984 -#: sql_help.c:1985 sql_help.c:2325 sql_help.c:2338 sql_help.c:2391 -#: sql_help.c:2459 sql_help.c:2465 sql_help.c:2498 sql_help.c:2629 -#: sql_help.c:2738 sql_help.c:2773 sql_help.c:2775 sql_help.c:2887 -#: sql_help.c:2896 sql_help.c:2906 sql_help.c:2909 sql_help.c:2919 -#: sql_help.c:2923 sql_help.c:2946 sql_help.c:2948 sql_help.c:2955 -#: sql_help.c:2968 sql_help.c:2973 sql_help.c:2977 sql_help.c:2978 -#: sql_help.c:2994 sql_help.c:3120 sql_help.c:3260 sql_help.c:3883 -#: sql_help.c:3884 sql_help.c:3980 sql_help.c:3995 sql_help.c:3997 -#: sql_help.c:3999 sql_help.c:4084 sql_help.c:4087 sql_help.c:4089 -#: sql_help.c:4332 sql_help.c:4333 sql_help.c:4453 sql_help.c:4614 -#: sql_help.c:4620 sql_help.c:4622 sql_help.c:4871 sql_help.c:4877 -#: sql_help.c:4879 sql_help.c:4920 sql_help.c:4922 sql_help.c:4924 -#: sql_help.c:4971 sql_help.c:5109 sql_help.c:5115 sql_help.c:5117 +#: sql_help.c:456 sql_help.c:463 sql_help.c:467 sql_help.c:468 sql_help.c:471 +#: sql_help.c:473 sql_help.c:474 sql_help.c:475 sql_help.c:477 sql_help.c:480 +#: sql_help.c:482 sql_help.c:483 sql_help.c:681 sql_help.c:691 sql_help.c:693 +#: sql_help.c:696 sql_help.c:698 sql_help.c:699 sql_help.c:921 sql_help.c:1090 +#: sql_help.c:1320 sql_help.c:1338 sql_help.c:1342 sql_help.c:1343 +#: sql_help.c:1347 sql_help.c:1349 sql_help.c:1350 sql_help.c:1351 +#: sql_help.c:1352 sql_help.c:1354 sql_help.c:1357 sql_help.c:1358 +#: sql_help.c:1360 sql_help.c:1363 sql_help.c:1365 sql_help.c:1366 +#: sql_help.c:1413 sql_help.c:1415 sql_help.c:1422 sql_help.c:1431 +#: sql_help.c:1436 sql_help.c:1443 sql_help.c:1444 sql_help.c:1695 +#: sql_help.c:1698 sql_help.c:1702 sql_help.c:1738 sql_help.c:1863 +#: sql_help.c:1976 sql_help.c:1982 sql_help.c:1995 sql_help.c:1996 +#: sql_help.c:1997 sql_help.c:2337 sql_help.c:2350 sql_help.c:2403 +#: sql_help.c:2471 sql_help.c:2477 sql_help.c:2510 sql_help.c:2641 +#: sql_help.c:2750 sql_help.c:2785 sql_help.c:2787 sql_help.c:2899 +#: sql_help.c:2908 sql_help.c:2918 sql_help.c:2921 sql_help.c:2931 +#: sql_help.c:2935 sql_help.c:2958 sql_help.c:2960 sql_help.c:2967 +#: sql_help.c:2980 sql_help.c:2985 sql_help.c:2992 sql_help.c:2993 +#: sql_help.c:3009 sql_help.c:3135 sql_help.c:3275 sql_help.c:3898 +#: sql_help.c:3899 sql_help.c:3995 sql_help.c:4010 sql_help.c:4012 +#: sql_help.c:4014 sql_help.c:4101 sql_help.c:4104 sql_help.c:4106 +#: sql_help.c:4108 sql_help.c:4351 sql_help.c:4352 sql_help.c:4472 +#: sql_help.c:4633 sql_help.c:4639 sql_help.c:4641 sql_help.c:4890 +#: sql_help.c:4896 sql_help.c:4898 sql_help.c:4939 sql_help.c:4941 +#: sql_help.c:4943 sql_help.c:4990 sql_help.c:5128 sql_help.c:5134 +#: sql_help.c:5136 msgid "column_name" msgstr "列名" -#: sql_help.c:447 sql_help.c:672 sql_help.c:1312 sql_help.c:1691 +#: sql_help.c:457 sql_help.c:682 sql_help.c:1321 sql_help.c:1703 msgid "new_column_name" msgstr "新しい列名" -#: sql_help.c:452 sql_help.c:544 sql_help.c:680 sql_help.c:874 sql_help.c:1024 -#: sql_help.c:1328 sql_help.c:1591 +#: sql_help.c:462 sql_help.c:554 sql_help.c:690 sql_help.c:884 sql_help.c:1034 +#: sql_help.c:1337 sql_help.c:1603 msgid "where action is one of:" msgstr "アクションは以下のいずれかです:" -#: sql_help.c:454 sql_help.c:459 sql_help.c:1072 sql_help.c:1330 -#: sql_help.c:1335 sql_help.c:1593 sql_help.c:1597 sql_help.c:2229 -#: sql_help.c:2326 sql_help.c:2538 sql_help.c:2731 sql_help.c:2888 -#: sql_help.c:3167 sql_help.c:4141 +#: sql_help.c:464 sql_help.c:469 sql_help.c:1082 sql_help.c:1339 +#: sql_help.c:1344 sql_help.c:1605 sql_help.c:1609 sql_help.c:2241 +#: sql_help.c:2338 sql_help.c:2550 sql_help.c:2743 sql_help.c:2900 +#: sql_help.c:3182 sql_help.c:4160 msgid "data_type" msgstr "データ型" -#: sql_help.c:455 sql_help.c:460 sql_help.c:1331 sql_help.c:1336 -#: sql_help.c:1594 sql_help.c:1598 sql_help.c:2230 sql_help.c:2329 -#: sql_help.c:2461 sql_help.c:2890 sql_help.c:2898 sql_help.c:2911 -#: sql_help.c:2925 sql_help.c:3168 sql_help.c:3174 sql_help.c:3990 +#: sql_help.c:465 sql_help.c:470 sql_help.c:1340 sql_help.c:1345 +#: sql_help.c:1438 sql_help.c:1606 sql_help.c:1610 sql_help.c:2242 +#: sql_help.c:2341 sql_help.c:2473 sql_help.c:2902 sql_help.c:2910 +#: sql_help.c:2923 sql_help.c:2937 sql_help.c:2987 sql_help.c:3183 +#: sql_help.c:3189 sql_help.c:4005 msgid "collation" msgstr "照合順序" -#: sql_help.c:456 sql_help.c:1332 sql_help.c:2330 sql_help.c:2339 -#: sql_help.c:2891 sql_help.c:2907 sql_help.c:2920 +#: sql_help.c:466 sql_help.c:1341 sql_help.c:2342 sql_help.c:2351 +#: sql_help.c:2903 sql_help.c:2919 sql_help.c:2932 msgid "column_constraint" msgstr "カラム制約" -#: sql_help.c:466 sql_help.c:608 sql_help.c:682 sql_help.c:1350 sql_help.c:4968 +#: sql_help.c:476 sql_help.c:618 sql_help.c:692 sql_help.c:1359 sql_help.c:4987 msgid "integer" msgstr "整数" -#: sql_help.c:468 sql_help.c:471 sql_help.c:684 sql_help.c:687 sql_help.c:1352 -#: sql_help.c:1355 +#: sql_help.c:478 sql_help.c:481 sql_help.c:694 sql_help.c:697 sql_help.c:1361 +#: sql_help.c:1364 msgid "attribute_option" msgstr "属性オプション" -#: sql_help.c:476 sql_help.c:1359 sql_help.c:2331 sql_help.c:2340 -#: sql_help.c:2892 sql_help.c:2908 sql_help.c:2921 +#: sql_help.c:486 sql_help.c:1368 sql_help.c:2343 sql_help.c:2352 +#: sql_help.c:2904 sql_help.c:2920 sql_help.c:2933 msgid "table_constraint" msgstr "テーブル制約" -#: sql_help.c:479 sql_help.c:480 sql_help.c:481 sql_help.c:482 sql_help.c:1364 -#: sql_help.c:1365 sql_help.c:1366 sql_help.c:1367 sql_help.c:1905 +#: sql_help.c:489 sql_help.c:490 sql_help.c:491 sql_help.c:492 sql_help.c:1373 +#: sql_help.c:1374 sql_help.c:1375 sql_help.c:1376 sql_help.c:1917 msgid "trigger_name" msgstr "トリガー名" -#: sql_help.c:483 sql_help.c:484 sql_help.c:1378 sql_help.c:1379 -#: sql_help.c:2332 sql_help.c:2337 sql_help.c:2895 sql_help.c:2918 +#: sql_help.c:493 sql_help.c:494 sql_help.c:1387 sql_help.c:1388 +#: sql_help.c:2344 sql_help.c:2349 sql_help.c:2907 sql_help.c:2930 msgid "parent_table" msgstr "親テーブル" -#: sql_help.c:543 sql_help.c:600 sql_help.c:669 sql_help.c:873 sql_help.c:1023 -#: sql_help.c:1550 sql_help.c:2261 +#: sql_help.c:553 sql_help.c:610 sql_help.c:679 sql_help.c:883 sql_help.c:1033 +#: sql_help.c:1562 sql_help.c:2273 msgid "extension_name" msgstr "拡張名" -#: sql_help.c:545 sql_help.c:1025 sql_help.c:2395 +#: sql_help.c:555 sql_help.c:1035 sql_help.c:2407 msgid "execution_cost" msgstr "実行コスト" -#: sql_help.c:546 sql_help.c:1026 sql_help.c:2396 +#: sql_help.c:556 sql_help.c:1036 sql_help.c:2408 msgid "result_rows" msgstr "結果の行数" -#: sql_help.c:547 sql_help.c:2397 +#: sql_help.c:557 sql_help.c:2409 msgid "support_function" msgstr "サポート関数" -#: sql_help.c:569 sql_help.c:571 sql_help.c:948 sql_help.c:956 sql_help.c:960 -#: sql_help.c:963 sql_help.c:966 sql_help.c:1633 sql_help.c:1641 -#: sql_help.c:1645 sql_help.c:1648 sql_help.c:1651 sql_help.c:2709 -#: sql_help.c:2711 sql_help.c:2714 sql_help.c:2715 sql_help.c:3881 -#: sql_help.c:3882 sql_help.c:3886 sql_help.c:3887 sql_help.c:3890 -#: sql_help.c:3891 sql_help.c:3893 sql_help.c:3894 sql_help.c:3896 -#: sql_help.c:3897 sql_help.c:3899 sql_help.c:3900 sql_help.c:3902 -#: sql_help.c:3903 sql_help.c:3909 sql_help.c:3910 sql_help.c:3912 -#: sql_help.c:3913 sql_help.c:3915 sql_help.c:3916 sql_help.c:3918 -#: sql_help.c:3919 sql_help.c:3921 sql_help.c:3922 sql_help.c:3924 -#: sql_help.c:3925 sql_help.c:3927 sql_help.c:3928 sql_help.c:3930 -#: sql_help.c:3931 sql_help.c:4330 sql_help.c:4331 sql_help.c:4335 -#: sql_help.c:4336 sql_help.c:4339 sql_help.c:4340 sql_help.c:4342 -#: sql_help.c:4343 sql_help.c:4345 sql_help.c:4346 sql_help.c:4348 -#: sql_help.c:4349 sql_help.c:4351 sql_help.c:4352 sql_help.c:4358 -#: sql_help.c:4359 sql_help.c:4361 sql_help.c:4362 sql_help.c:4364 -#: sql_help.c:4365 sql_help.c:4367 sql_help.c:4368 sql_help.c:4370 -#: sql_help.c:4371 sql_help.c:4373 sql_help.c:4374 sql_help.c:4376 -#: sql_help.c:4377 sql_help.c:4379 sql_help.c:4380 +#: sql_help.c:579 sql_help.c:581 sql_help.c:958 sql_help.c:966 sql_help.c:970 +#: sql_help.c:973 sql_help.c:976 sql_help.c:1645 sql_help.c:1653 +#: sql_help.c:1657 sql_help.c:1660 sql_help.c:1663 sql_help.c:2721 +#: sql_help.c:2723 sql_help.c:2726 sql_help.c:2727 sql_help.c:3896 +#: sql_help.c:3897 sql_help.c:3901 sql_help.c:3902 sql_help.c:3905 +#: sql_help.c:3906 sql_help.c:3908 sql_help.c:3909 sql_help.c:3911 +#: sql_help.c:3912 sql_help.c:3914 sql_help.c:3915 sql_help.c:3917 +#: sql_help.c:3918 sql_help.c:3924 sql_help.c:3925 sql_help.c:3927 +#: sql_help.c:3928 sql_help.c:3930 sql_help.c:3931 sql_help.c:3933 +#: sql_help.c:3934 sql_help.c:3936 sql_help.c:3937 sql_help.c:3939 +#: sql_help.c:3940 sql_help.c:3942 sql_help.c:3943 sql_help.c:3945 +#: sql_help.c:3946 sql_help.c:4349 sql_help.c:4350 sql_help.c:4354 +#: sql_help.c:4355 sql_help.c:4358 sql_help.c:4359 sql_help.c:4361 +#: sql_help.c:4362 sql_help.c:4364 sql_help.c:4365 sql_help.c:4367 +#: sql_help.c:4368 sql_help.c:4370 sql_help.c:4371 sql_help.c:4377 +#: sql_help.c:4378 sql_help.c:4380 sql_help.c:4381 sql_help.c:4383 +#: sql_help.c:4384 sql_help.c:4386 sql_help.c:4387 sql_help.c:4389 +#: sql_help.c:4390 sql_help.c:4392 sql_help.c:4393 sql_help.c:4395 +#: sql_help.c:4396 sql_help.c:4398 sql_help.c:4399 msgid "role_specification" msgstr "ロールの指定" -#: sql_help.c:570 sql_help.c:572 sql_help.c:1664 sql_help.c:2198 -#: sql_help.c:2717 sql_help.c:3245 sql_help.c:3696 sql_help.c:4707 +#: sql_help.c:580 sql_help.c:582 sql_help.c:1676 sql_help.c:2210 +#: sql_help.c:2729 sql_help.c:3260 sql_help.c:3711 sql_help.c:4726 msgid "user_name" msgstr "ユーザー名" -#: sql_help.c:573 sql_help.c:968 sql_help.c:1653 sql_help.c:2716 -#: sql_help.c:3932 sql_help.c:4381 +#: sql_help.c:583 sql_help.c:978 sql_help.c:1665 sql_help.c:2728 +#: sql_help.c:3947 sql_help.c:4400 msgid "where role_specification can be:" msgstr "ロール指定は以下の通りです:" -#: sql_help.c:575 +#: sql_help.c:585 msgid "group_name" msgstr "グループ名" -#: sql_help.c:596 sql_help.c:1425 sql_help.c:2208 sql_help.c:2468 -#: sql_help.c:2502 sql_help.c:2903 sql_help.c:2916 sql_help.c:2930 -#: sql_help.c:2971 sql_help.c:2998 sql_help.c:3010 sql_help.c:3923 -#: sql_help.c:4372 +#: sql_help.c:606 sql_help.c:1434 sql_help.c:2220 sql_help.c:2480 +#: sql_help.c:2514 sql_help.c:2915 sql_help.c:2928 sql_help.c:2942 +#: sql_help.c:2983 sql_help.c:3013 sql_help.c:3025 sql_help.c:3938 +#: sql_help.c:4391 msgid "tablespace_name" msgstr "テーブル空間名" -#: sql_help.c:598 sql_help.c:691 sql_help.c:1372 sql_help.c:1382 -#: sql_help.c:1420 sql_help.c:1780 sql_help.c:1783 +#: sql_help.c:608 sql_help.c:701 sql_help.c:1381 sql_help.c:1391 +#: sql_help.c:1429 sql_help.c:1792 sql_help.c:1795 msgid "index_name" msgstr "インデックス名" -#: sql_help.c:602 sql_help.c:605 sql_help.c:694 sql_help.c:696 sql_help.c:1375 -#: sql_help.c:1377 sql_help.c:1423 sql_help.c:2466 sql_help.c:2500 -#: sql_help.c:2901 sql_help.c:2914 sql_help.c:2928 sql_help.c:2969 -#: sql_help.c:2996 +#: sql_help.c:612 sql_help.c:615 sql_help.c:704 sql_help.c:706 sql_help.c:1384 +#: sql_help.c:1386 sql_help.c:1432 sql_help.c:2478 sql_help.c:2512 +#: sql_help.c:2913 sql_help.c:2926 sql_help.c:2940 sql_help.c:2981 +#: sql_help.c:3011 msgid "storage_parameter" msgstr "ストレージパラメータ" -#: sql_help.c:607 +#: sql_help.c:617 msgid "column_number" msgstr "列番号" -#: sql_help.c:631 sql_help.c:1868 sql_help.c:4464 +#: sql_help.c:641 sql_help.c:1880 sql_help.c:4483 msgid "large_object_oid" msgstr "ラージオブジェクトのOID" -#: sql_help.c:690 sql_help.c:1358 sql_help.c:2889 +#: sql_help.c:700 sql_help.c:1367 sql_help.c:2901 msgid "compression_method" msgstr "圧縮方式" -#: sql_help.c:692 sql_help.c:1373 +#: sql_help.c:702 sql_help.c:1382 msgid "new_access_method" msgstr "新しいアクセスメソッド" -#: sql_help.c:725 sql_help.c:2523 +#: sql_help.c:735 sql_help.c:2535 msgid "res_proc" msgstr "制約選択評価関数" -#: sql_help.c:726 sql_help.c:2524 +#: sql_help.c:736 sql_help.c:2536 msgid "join_proc" msgstr "結合選択評価関数" -#: sql_help.c:778 sql_help.c:790 sql_help.c:2541 +#: sql_help.c:788 sql_help.c:800 sql_help.c:2553 msgid "strategy_number" msgstr "戦略番号" -#: sql_help.c:780 sql_help.c:781 sql_help.c:784 sql_help.c:785 sql_help.c:791 -#: sql_help.c:792 sql_help.c:794 sql_help.c:795 sql_help.c:2543 sql_help.c:2544 -#: sql_help.c:2547 sql_help.c:2548 +#: sql_help.c:790 sql_help.c:791 sql_help.c:794 sql_help.c:795 sql_help.c:801 +#: sql_help.c:802 sql_help.c:804 sql_help.c:805 sql_help.c:2555 sql_help.c:2556 +#: sql_help.c:2559 sql_help.c:2560 msgid "op_type" msgstr "演算子の型" -#: sql_help.c:782 sql_help.c:2545 +#: sql_help.c:792 sql_help.c:2557 msgid "sort_family_name" msgstr "ソートファミリー名" -#: sql_help.c:783 sql_help.c:793 sql_help.c:2546 +#: sql_help.c:793 sql_help.c:803 sql_help.c:2558 msgid "support_number" msgstr "サポート番号" -#: sql_help.c:787 sql_help.c:2134 sql_help.c:2550 sql_help.c:3087 -#: sql_help.c:3089 +#: sql_help.c:797 sql_help.c:2146 sql_help.c:2562 sql_help.c:3102 +#: sql_help.c:3104 msgid "argument_type" msgstr "引数の型" -#: sql_help.c:818 sql_help.c:821 sql_help.c:910 sql_help.c:1039 sql_help.c:1079 -#: sql_help.c:1546 sql_help.c:1549 sql_help.c:1725 sql_help.c:1779 -#: sql_help.c:1782 sql_help.c:1853 sql_help.c:1878 sql_help.c:1891 -#: sql_help.c:1906 sql_help.c:1963 sql_help.c:1969 sql_help.c:2324 -#: sql_help.c:2336 sql_help.c:2457 sql_help.c:2497 sql_help.c:2574 -#: sql_help.c:2628 sql_help.c:2685 sql_help.c:2737 sql_help.c:2770 -#: sql_help.c:2777 sql_help.c:2886 sql_help.c:2904 sql_help.c:2917 -#: sql_help.c:2993 sql_help.c:3113 sql_help.c:3294 sql_help.c:3517 -#: sql_help.c:3566 sql_help.c:3672 sql_help.c:3879 sql_help.c:3885 -#: sql_help.c:3946 sql_help.c:3978 sql_help.c:4328 sql_help.c:4334 -#: sql_help.c:4452 sql_help.c:4563 sql_help.c:4565 sql_help.c:4627 -#: sql_help.c:4666 sql_help.c:4820 sql_help.c:4822 sql_help.c:4884 -#: sql_help.c:4918 sql_help.c:4970 sql_help.c:5058 sql_help.c:5060 -#: sql_help.c:5122 +#: sql_help.c:828 sql_help.c:831 sql_help.c:920 sql_help.c:1049 sql_help.c:1089 +#: sql_help.c:1558 sql_help.c:1561 sql_help.c:1737 sql_help.c:1791 +#: sql_help.c:1794 sql_help.c:1865 sql_help.c:1890 sql_help.c:1903 +#: sql_help.c:1918 sql_help.c:1975 sql_help.c:1981 sql_help.c:2336 +#: sql_help.c:2348 sql_help.c:2469 sql_help.c:2509 sql_help.c:2586 +#: sql_help.c:2640 sql_help.c:2697 sql_help.c:2749 sql_help.c:2782 +#: sql_help.c:2789 sql_help.c:2898 sql_help.c:2916 sql_help.c:2929 +#: sql_help.c:3008 sql_help.c:3128 sql_help.c:3309 sql_help.c:3532 +#: sql_help.c:3581 sql_help.c:3687 sql_help.c:3894 sql_help.c:3900 +#: sql_help.c:3961 sql_help.c:3993 sql_help.c:4347 sql_help.c:4353 +#: sql_help.c:4471 sql_help.c:4582 sql_help.c:4584 sql_help.c:4646 +#: sql_help.c:4685 sql_help.c:4839 sql_help.c:4841 sql_help.c:4903 +#: sql_help.c:4937 sql_help.c:4989 sql_help.c:5077 sql_help.c:5079 +#: sql_help.c:5141 msgid "table_name" msgstr "テーブル名" -#: sql_help.c:823 sql_help.c:2576 +#: sql_help.c:833 sql_help.c:2588 msgid "using_expression" msgstr "USING式" -#: sql_help.c:824 sql_help.c:2577 +#: sql_help.c:834 sql_help.c:2589 msgid "check_expression" msgstr "CHECK式" -#: sql_help.c:897 sql_help.c:899 sql_help.c:901 sql_help.c:2624 +#: sql_help.c:907 sql_help.c:909 sql_help.c:911 sql_help.c:2636 msgid "publication_object" msgstr "発行オブジェクト" -#: sql_help.c:903 sql_help.c:2625 +#: sql_help.c:913 sql_help.c:2637 msgid "publication_parameter" msgstr "パブリケーションパラメータ" -#: sql_help.c:909 sql_help.c:2627 +#: sql_help.c:919 sql_help.c:2639 msgid "where publication_object is one of:" msgstr "発行オブジェクトは以下のいずれかです:" -#: sql_help.c:952 sql_help.c:1637 sql_help.c:2435 sql_help.c:2662 -#: sql_help.c:3228 +#: sql_help.c:962 sql_help.c:1649 sql_help.c:2447 sql_help.c:2674 +#: sql_help.c:3243 msgid "password" msgstr "パスワード" -#: sql_help.c:953 sql_help.c:1638 sql_help.c:2436 sql_help.c:2663 -#: sql_help.c:3229 +#: sql_help.c:963 sql_help.c:1650 sql_help.c:2448 sql_help.c:2675 +#: sql_help.c:3244 msgid "timestamp" msgstr "タイムスタンプ" -#: sql_help.c:957 sql_help.c:961 sql_help.c:964 sql_help.c:967 sql_help.c:1642 -#: sql_help.c:1646 sql_help.c:1649 sql_help.c:1652 sql_help.c:3892 -#: sql_help.c:4341 +#: sql_help.c:967 sql_help.c:971 sql_help.c:974 sql_help.c:977 sql_help.c:1654 +#: sql_help.c:1658 sql_help.c:1661 sql_help.c:1664 sql_help.c:3907 +#: sql_help.c:4360 msgid "database_name" msgstr "データベース名" -#: sql_help.c:1073 sql_help.c:2732 +#: sql_help.c:1083 sql_help.c:2744 msgid "increment" msgstr "増分値" -#: sql_help.c:1074 sql_help.c:2733 +#: sql_help.c:1084 sql_help.c:2745 msgid "minvalue" msgstr "最小値" -#: sql_help.c:1075 sql_help.c:2734 +#: sql_help.c:1085 sql_help.c:2746 msgid "maxvalue" msgstr "最大値" -#: sql_help.c:1076 sql_help.c:2735 sql_help.c:4561 sql_help.c:4664 -#: sql_help.c:4818 sql_help.c:4987 sql_help.c:5056 +#: sql_help.c:1086 sql_help.c:2747 sql_help.c:4580 sql_help.c:4683 +#: sql_help.c:4837 sql_help.c:5006 sql_help.c:5075 msgid "start" msgstr "開始番号" -#: sql_help.c:1077 sql_help.c:1347 +#: sql_help.c:1087 sql_help.c:1356 msgid "restart" msgstr "再開始番号" -#: sql_help.c:1078 sql_help.c:2736 +#: sql_help.c:1088 sql_help.c:2748 msgid "cache" msgstr "キャッシュ割り当て数" -#: sql_help.c:1123 +#: sql_help.c:1133 msgid "new_target" msgstr "新しいターゲット" -#: sql_help.c:1142 sql_help.c:2789 +#: sql_help.c:1152 sql_help.c:2801 msgid "conninfo" msgstr "接続文字列" -#: sql_help.c:1144 sql_help.c:1148 sql_help.c:1152 sql_help.c:2790 +#: sql_help.c:1154 sql_help.c:1158 sql_help.c:1162 sql_help.c:2802 msgid "publication_name" msgstr "パブリケーション名" -#: sql_help.c:1145 sql_help.c:1149 sql_help.c:1153 +#: sql_help.c:1155 sql_help.c:1159 sql_help.c:1163 msgid "publication_option" msgstr "パブリケーション・オプション" -#: sql_help.c:1156 +#: sql_help.c:1166 msgid "refresh_option" msgstr "{REFRESH PUBLICATION の追加オプション}" -#: sql_help.c:1161 sql_help.c:2791 +#: sql_help.c:1171 sql_help.c:2803 msgid "subscription_parameter" msgstr "{SUBSCRIPTION パラメータ名}" -#: sql_help.c:1164 +#: sql_help.c:1174 msgid "skip_option" msgstr "スキップオプション" -#: sql_help.c:1324 sql_help.c:1327 +#: sql_help.c:1333 sql_help.c:1336 msgid "partition_name" msgstr "パーティション名" -#: sql_help.c:1325 sql_help.c:2341 sql_help.c:2922 +#: sql_help.c:1334 sql_help.c:2353 sql_help.c:2934 msgid "partition_bound_spec" msgstr "パーティション境界の仕様" -#: sql_help.c:1344 sql_help.c:1394 sql_help.c:2936 +#: sql_help.c:1353 sql_help.c:1403 sql_help.c:2948 msgid "sequence_options" msgstr "シーケンスオプション" -#: sql_help.c:1346 +#: sql_help.c:1355 msgid "sequence_option" msgstr "シーケンスオプション" -#: sql_help.c:1360 +#: sql_help.c:1369 msgid "table_constraint_using_index" msgstr "インデックスを使うテーブルの制約" -#: sql_help.c:1368 sql_help.c:1369 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1377 sql_help.c:1378 sql_help.c:1379 sql_help.c:1380 msgid "rewrite_rule_name" msgstr "書き換えルール名" -#: sql_help.c:1383 sql_help.c:2353 sql_help.c:2961 +#: sql_help.c:1392 sql_help.c:2365 sql_help.c:2973 msgid "and partition_bound_spec is:" msgstr "パーティション境界の仕様は以下の通りです:" -#: sql_help.c:1384 sql_help.c:1385 sql_help.c:1386 sql_help.c:2354 -#: sql_help.c:2355 sql_help.c:2356 sql_help.c:2962 sql_help.c:2963 -#: sql_help.c:2964 +#: sql_help.c:1393 sql_help.c:1394 sql_help.c:1395 sql_help.c:2366 +#: sql_help.c:2367 sql_help.c:2368 sql_help.c:2974 sql_help.c:2975 +#: sql_help.c:2976 msgid "partition_bound_expr" msgstr "パーティション境界式" -#: sql_help.c:1387 sql_help.c:1388 sql_help.c:2357 sql_help.c:2358 -#: sql_help.c:2965 sql_help.c:2966 +#: sql_help.c:1396 sql_help.c:1397 sql_help.c:2369 sql_help.c:2370 +#: sql_help.c:2977 sql_help.c:2978 msgid "numeric_literal" msgstr "numericリテラル" -#: sql_help.c:1389 +#: sql_help.c:1398 msgid "and column_constraint is:" msgstr "そしてカラム制約は以下の通りです:" -#: sql_help.c:1392 sql_help.c:2348 sql_help.c:2389 sql_help.c:2598 -#: sql_help.c:2934 +#: sql_help.c:1401 sql_help.c:2360 sql_help.c:2401 sql_help.c:2610 +#: sql_help.c:2946 msgid "default_expr" msgstr "デフォルト表現" -#: sql_help.c:1393 sql_help.c:2349 sql_help.c:2935 +#: sql_help.c:1402 sql_help.c:2361 sql_help.c:2947 msgid "generation_expr" msgstr "生成式" -#: sql_help.c:1395 sql_help.c:1396 sql_help.c:1405 sql_help.c:1407 -#: sql_help.c:1411 sql_help.c:2937 sql_help.c:2938 sql_help.c:2947 -#: sql_help.c:2949 sql_help.c:2953 +#: sql_help.c:1404 sql_help.c:1405 sql_help.c:1414 sql_help.c:1416 +#: sql_help.c:1420 sql_help.c:2949 sql_help.c:2950 sql_help.c:2959 +#: sql_help.c:2961 sql_help.c:2965 msgid "index_parameters" msgstr "インデックスパラメータ" -#: sql_help.c:1397 sql_help.c:1414 sql_help.c:2939 sql_help.c:2956 +#: sql_help.c:1406 sql_help.c:1423 sql_help.c:2951 sql_help.c:2968 msgid "reftable" msgstr "参照テーブル" -#: sql_help.c:1398 sql_help.c:1415 sql_help.c:2940 sql_help.c:2957 +#: sql_help.c:1407 sql_help.c:1424 sql_help.c:2952 sql_help.c:2969 msgid "refcolumn" msgstr "参照列" -#: sql_help.c:1399 sql_help.c:1400 sql_help.c:1416 sql_help.c:1417 -#: sql_help.c:2941 sql_help.c:2942 sql_help.c:2958 sql_help.c:2959 +#: sql_help.c:1408 sql_help.c:1409 sql_help.c:1425 sql_help.c:1426 +#: sql_help.c:2953 sql_help.c:2954 sql_help.c:2970 sql_help.c:2971 msgid "referential_action" msgstr "参照動作" -#: sql_help.c:1401 sql_help.c:2350 sql_help.c:2943 +#: sql_help.c:1410 sql_help.c:2362 sql_help.c:2955 msgid "and table_constraint is:" msgstr "テーブル制約は以下の通りです:" -#: sql_help.c:1409 sql_help.c:2951 +#: sql_help.c:1418 sql_help.c:2963 msgid "exclude_element" msgstr "除外対象要素" -#: sql_help.c:1410 sql_help.c:2952 sql_help.c:4559 sql_help.c:4662 -#: sql_help.c:4816 sql_help.c:4985 sql_help.c:5054 +#: sql_help.c:1419 sql_help.c:2964 sql_help.c:4578 sql_help.c:4681 +#: sql_help.c:4835 sql_help.c:5004 sql_help.c:5073 msgid "operator" msgstr "演算子" -#: sql_help.c:1412 sql_help.c:2469 sql_help.c:2954 +#: sql_help.c:1421 sql_help.c:2481 sql_help.c:2966 msgid "predicate" msgstr "インデックスの述語" -#: sql_help.c:1418 +#: sql_help.c:1427 msgid "and table_constraint_using_index is:" msgstr "テーブル制約は以下の通りです:" -#: sql_help.c:1421 sql_help.c:2967 +#: sql_help.c:1430 sql_help.c:2979 msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:" msgstr "UNIQUE, PRIMARY KEY, EXCLUDE 制約のインデックスパラメータは以下の通りです:" -#: sql_help.c:1426 sql_help.c:2972 +#: sql_help.c:1435 sql_help.c:2984 msgid "exclude_element in an EXCLUDE constraint is:" msgstr "EXCLUDE 制約の除外対象要素は以下の通りです:" -#: sql_help.c:1429 sql_help.c:2462 sql_help.c:2899 sql_help.c:2912 -#: sql_help.c:2926 sql_help.c:2975 sql_help.c:3991 +#: sql_help.c:1439 sql_help.c:2474 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:2938 sql_help.c:2988 sql_help.c:4006 msgid "opclass" msgstr "演算子クラス" -#: sql_help.c:1430 sql_help.c:2976 +#: sql_help.c:1440 sql_help.c:2475 sql_help.c:2989 +msgid "opclass_parameter" +msgstr "演算子クラスパラメータ" + +#: sql_help.c:1442 sql_help.c:2991 msgid "referential_action in a FOREIGN KEY/REFERENCES constraint is:" msgstr "FOREIGN KEY/REFERENCES制約の参照動作は以下の通り:" -#: sql_help.c:1448 sql_help.c:1451 sql_help.c:3013 +#: sql_help.c:1460 sql_help.c:1463 sql_help.c:3028 msgid "tablespace_option" msgstr "テーブル空間のオプション" -#: sql_help.c:1472 sql_help.c:1475 sql_help.c:1481 sql_help.c:1485 +#: sql_help.c:1484 sql_help.c:1487 sql_help.c:1493 sql_help.c:1497 msgid "token_type" msgstr "トークンの型" -#: sql_help.c:1473 sql_help.c:1476 +#: sql_help.c:1485 sql_help.c:1488 msgid "dictionary_name" msgstr "辞書名" -#: sql_help.c:1478 sql_help.c:1482 +#: sql_help.c:1490 sql_help.c:1494 msgid "old_dictionary" msgstr "元の辞書" -#: sql_help.c:1479 sql_help.c:1483 +#: sql_help.c:1491 sql_help.c:1495 msgid "new_dictionary" msgstr "新しい辞書" -#: sql_help.c:1578 sql_help.c:1592 sql_help.c:1595 sql_help.c:1596 -#: sql_help.c:3166 +#: sql_help.c:1590 sql_help.c:1604 sql_help.c:1607 sql_help.c:1608 +#: sql_help.c:3181 msgid "attribute_name" msgstr "属性名" -#: sql_help.c:1579 +#: sql_help.c:1591 msgid "new_attribute_name" msgstr "新しい属性名" -#: sql_help.c:1583 sql_help.c:1587 +#: sql_help.c:1595 sql_help.c:1599 msgid "new_enum_value" msgstr "新しい列挙値" -#: sql_help.c:1584 +#: sql_help.c:1596 msgid "neighbor_enum_value" msgstr "隣接した列挙値" -#: sql_help.c:1586 +#: sql_help.c:1598 msgid "existing_enum_value" msgstr "既存の列挙値" -#: sql_help.c:1589 +#: sql_help.c:1601 msgid "property" msgstr "プロパティ" -#: sql_help.c:1665 sql_help.c:2333 sql_help.c:2342 sql_help.c:2748 -#: sql_help.c:3246 sql_help.c:3697 sql_help.c:3901 sql_help.c:3947 -#: sql_help.c:4350 +#: sql_help.c:1677 sql_help.c:2345 sql_help.c:2354 sql_help.c:2760 +#: sql_help.c:3261 sql_help.c:3712 sql_help.c:3916 sql_help.c:3962 +#: sql_help.c:4369 msgid "server_name" msgstr "サーバー名" -#: sql_help.c:1697 sql_help.c:1700 sql_help.c:3261 +#: sql_help.c:1709 sql_help.c:1712 sql_help.c:3276 msgid "view_option_name" msgstr "ビューのオプション名" -#: sql_help.c:1698 sql_help.c:3262 +#: sql_help.c:1710 sql_help.c:3277 msgid "view_option_value" msgstr "ビューオプションの値" -#: sql_help.c:1719 sql_help.c:1720 sql_help.c:4957 sql_help.c:4958 +#: sql_help.c:1731 sql_help.c:1732 sql_help.c:4976 sql_help.c:4977 msgid "table_and_columns" msgstr "テーブルおよび列" -#: sql_help.c:1721 sql_help.c:1784 sql_help.c:1975 sql_help.c:3745 -#: sql_help.c:4185 sql_help.c:4959 +#: sql_help.c:1733 sql_help.c:1796 sql_help.c:1987 sql_help.c:3760 +#: sql_help.c:4204 sql_help.c:4978 msgid "where option can be one of:" msgstr "オプションには以下のうちのいずれかを指定します:" -#: sql_help.c:1722 sql_help.c:1723 sql_help.c:1785 sql_help.c:1977 -#: sql_help.c:1980 sql_help.c:2159 sql_help.c:3746 sql_help.c:3747 -#: sql_help.c:3748 sql_help.c:3749 sql_help.c:3750 sql_help.c:3751 -#: sql_help.c:3752 sql_help.c:3753 sql_help.c:4186 sql_help.c:4188 -#: sql_help.c:4960 sql_help.c:4961 sql_help.c:4962 sql_help.c:4963 -#: sql_help.c:4964 sql_help.c:4965 sql_help.c:4966 sql_help.c:4967 +#: sql_help.c:1734 sql_help.c:1735 sql_help.c:1797 sql_help.c:1989 +#: sql_help.c:1992 sql_help.c:2171 sql_help.c:3761 sql_help.c:3762 +#: sql_help.c:3763 sql_help.c:3764 sql_help.c:3765 sql_help.c:3766 +#: sql_help.c:3767 sql_help.c:3768 sql_help.c:4205 sql_help.c:4207 +#: sql_help.c:4979 sql_help.c:4980 sql_help.c:4981 sql_help.c:4982 +#: sql_help.c:4983 sql_help.c:4984 sql_help.c:4985 sql_help.c:4986 msgid "boolean" msgstr "真偽値" -#: sql_help.c:1724 sql_help.c:4969 +#: sql_help.c:1736 sql_help.c:4988 msgid "and table_and_columns is:" msgstr "そしてテーブルと列の指定は以下の通りです:" -#: sql_help.c:1740 sql_help.c:4723 sql_help.c:4725 sql_help.c:4749 +#: sql_help.c:1752 sql_help.c:4742 sql_help.c:4744 sql_help.c:4768 msgid "transaction_mode" msgstr "トランザクションのモード" -#: sql_help.c:1741 sql_help.c:4726 sql_help.c:4750 +#: sql_help.c:1753 sql_help.c:4745 sql_help.c:4769 msgid "where transaction_mode is one of:" msgstr "トランザクションのモードは以下の通りです:" -#: sql_help.c:1750 sql_help.c:4569 sql_help.c:4578 sql_help.c:4582 -#: sql_help.c:4586 sql_help.c:4589 sql_help.c:4826 sql_help.c:4835 -#: sql_help.c:4839 sql_help.c:4843 sql_help.c:4846 sql_help.c:5064 -#: sql_help.c:5073 sql_help.c:5077 sql_help.c:5081 sql_help.c:5084 +#: sql_help.c:1762 sql_help.c:4588 sql_help.c:4597 sql_help.c:4601 +#: sql_help.c:4605 sql_help.c:4608 sql_help.c:4845 sql_help.c:4854 +#: sql_help.c:4858 sql_help.c:4862 sql_help.c:4865 sql_help.c:5083 +#: sql_help.c:5092 sql_help.c:5096 sql_help.c:5100 sql_help.c:5103 msgid "argument" msgstr "引数" -#: sql_help.c:1850 +#: sql_help.c:1862 msgid "relation_name" msgstr "リレーション名" -#: sql_help.c:1855 sql_help.c:3895 sql_help.c:4344 +#: sql_help.c:1867 sql_help.c:3910 sql_help.c:4363 msgid "domain_name" msgstr "ドメイン名" -#: sql_help.c:1877 +#: sql_help.c:1889 msgid "policy_name" msgstr "ポリシー名" -#: sql_help.c:1890 +#: sql_help.c:1902 msgid "rule_name" msgstr "ルール名" -#: sql_help.c:1909 sql_help.c:4483 +#: sql_help.c:1921 sql_help.c:4502 msgid "string_literal" msgstr "文字列リテラル" -#: sql_help.c:1934 sql_help.c:4150 sql_help.c:4397 +#: sql_help.c:1946 sql_help.c:4169 sql_help.c:4416 msgid "transaction_id" msgstr "トランザクションID" -#: sql_help.c:1965 sql_help.c:1972 sql_help.c:4017 +#: sql_help.c:1977 sql_help.c:1984 sql_help.c:4032 msgid "filename" msgstr "ファイル名" -#: sql_help.c:1966 sql_help.c:1973 sql_help.c:2687 sql_help.c:2688 -#: sql_help.c:2689 +#: sql_help.c:1978 sql_help.c:1985 sql_help.c:2699 sql_help.c:2700 +#: sql_help.c:2701 msgid "command" msgstr "コマンド" -#: sql_help.c:1968 sql_help.c:2686 sql_help.c:3116 sql_help.c:3297 -#: sql_help.c:4001 sql_help.c:4078 sql_help.c:4081 sql_help.c:4552 -#: sql_help.c:4554 sql_help.c:4655 sql_help.c:4657 sql_help.c:4809 -#: sql_help.c:4811 sql_help.c:4927 sql_help.c:5047 sql_help.c:5049 +#: sql_help.c:1980 sql_help.c:2698 sql_help.c:3131 sql_help.c:3312 +#: sql_help.c:4016 sql_help.c:4095 sql_help.c:4098 sql_help.c:4571 +#: sql_help.c:4573 sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 +#: sql_help.c:4830 sql_help.c:4946 sql_help.c:5066 sql_help.c:5068 msgid "condition" msgstr "条件" -#: sql_help.c:1971 sql_help.c:2503 sql_help.c:2999 sql_help.c:3263 -#: sql_help.c:3281 sql_help.c:3982 +#: sql_help.c:1983 sql_help.c:2515 sql_help.c:3014 sql_help.c:3278 +#: sql_help.c:3296 sql_help.c:3997 msgid "query" msgstr "問い合わせ" -#: sql_help.c:1976 +#: sql_help.c:1988 msgid "format_name" msgstr "フォーマット名" -#: sql_help.c:1978 +#: sql_help.c:1990 msgid "delimiter_character" msgstr "区切り文字" -#: sql_help.c:1979 +#: sql_help.c:1991 msgid "null_string" msgstr "NULL文字列" -#: sql_help.c:1981 +#: sql_help.c:1993 msgid "quote_character" msgstr "引用符文字" -#: sql_help.c:1982 +#: sql_help.c:1994 msgid "escape_character" msgstr "エスケープ文字" -#: sql_help.c:1986 +#: sql_help.c:1998 msgid "encoding_name" msgstr "エンコーディング名" -#: sql_help.c:1997 +#: sql_help.c:2009 msgid "access_method_type" msgstr "アクセスメソッドの型" -#: sql_help.c:2068 sql_help.c:2087 sql_help.c:2090 +#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2102 msgid "arg_data_type" msgstr "入力データ型" -#: sql_help.c:2069 sql_help.c:2091 sql_help.c:2099 +#: sql_help.c:2081 sql_help.c:2103 sql_help.c:2111 msgid "sfunc" msgstr "状態遷移関数" -#: sql_help.c:2070 sql_help.c:2092 sql_help.c:2100 +#: sql_help.c:2082 sql_help.c:2104 sql_help.c:2112 msgid "state_data_type" msgstr "状態データの型" -#: sql_help.c:2071 sql_help.c:2093 sql_help.c:2101 +#: sql_help.c:2083 sql_help.c:2105 sql_help.c:2113 msgid "state_data_size" msgstr "状態データのサイズ" -#: sql_help.c:2072 sql_help.c:2094 sql_help.c:2102 +#: sql_help.c:2084 sql_help.c:2106 sql_help.c:2114 msgid "ffunc" msgstr "終了関数" -#: sql_help.c:2073 sql_help.c:2103 +#: sql_help.c:2085 sql_help.c:2115 msgid "combinefunc" msgstr "結合関数" -#: sql_help.c:2074 sql_help.c:2104 +#: sql_help.c:2086 sql_help.c:2116 msgid "serialfunc" msgstr "シリアライズ関数" -#: sql_help.c:2075 sql_help.c:2105 +#: sql_help.c:2087 sql_help.c:2117 msgid "deserialfunc" msgstr "デシリアライズ関数" -#: sql_help.c:2076 sql_help.c:2095 sql_help.c:2106 +#: sql_help.c:2088 sql_help.c:2107 sql_help.c:2118 msgid "initial_condition" msgstr "初期条件" -#: sql_help.c:2077 sql_help.c:2107 +#: sql_help.c:2089 sql_help.c:2119 msgid "msfunc" msgstr "前方状態遷移関数" -#: sql_help.c:2078 sql_help.c:2108 +#: sql_help.c:2090 sql_help.c:2120 msgid "minvfunc" msgstr "逆状態遷移関数" -#: sql_help.c:2079 sql_help.c:2109 +#: sql_help.c:2091 sql_help.c:2121 msgid "mstate_data_type" msgstr "移動集約モード時の状態値のデータ型" -#: sql_help.c:2080 sql_help.c:2110 +#: sql_help.c:2092 sql_help.c:2122 msgid "mstate_data_size" msgstr "移動集約モード時の状態値のデータサイズ" -#: sql_help.c:2081 sql_help.c:2111 +#: sql_help.c:2093 sql_help.c:2123 msgid "mffunc" msgstr "移動集約モード時の終了関数" -#: sql_help.c:2082 sql_help.c:2112 +#: sql_help.c:2094 sql_help.c:2124 msgid "minitial_condition" msgstr "移動集約モード時の初期条件" -#: sql_help.c:2083 sql_help.c:2113 +#: sql_help.c:2095 sql_help.c:2125 msgid "sort_operator" msgstr "ソート演算子" -#: sql_help.c:2096 +#: sql_help.c:2108 msgid "or the old syntax" msgstr "または古い構文" -#: sql_help.c:2098 +#: sql_help.c:2110 msgid "base_type" msgstr "基本の型" -#: sql_help.c:2155 sql_help.c:2202 +#: sql_help.c:2167 sql_help.c:2214 msgid "locale" msgstr "ロケール" -#: sql_help.c:2156 sql_help.c:2203 +#: sql_help.c:2168 sql_help.c:2215 msgid "lc_collate" msgstr "照合順序" -#: sql_help.c:2157 sql_help.c:2204 +#: sql_help.c:2169 sql_help.c:2216 msgid "lc_ctype" msgstr "Ctype(変換演算子)" -#: sql_help.c:2158 sql_help.c:4450 +#: sql_help.c:2170 sql_help.c:4469 msgid "provider" msgstr "プロバイダ" -#: sql_help.c:2160 sql_help.c:2263 +#: sql_help.c:2172 sql_help.c:2275 msgid "version" msgstr "バージョン" -#: sql_help.c:2162 +#: sql_help.c:2174 msgid "existing_collation" msgstr "既存の照合順序" -#: sql_help.c:2172 +#: sql_help.c:2184 msgid "source_encoding" msgstr "変換元のエンコーディング" -#: sql_help.c:2173 +#: sql_help.c:2185 msgid "dest_encoding" msgstr "変換先のエンコーディング" -#: sql_help.c:2199 sql_help.c:3039 +#: sql_help.c:2211 sql_help.c:3054 msgid "template" msgstr "テンプレート" -#: sql_help.c:2200 +#: sql_help.c:2212 msgid "encoding" msgstr "エンコード" -#: sql_help.c:2201 +#: sql_help.c:2213 msgid "strategy" msgstr "ストラテジ" -#: sql_help.c:2205 +#: sql_help.c:2217 msgid "icu_locale" msgstr "ICUロケール" -#: sql_help.c:2206 +#: sql_help.c:2218 msgid "locale_provider" msgstr "ロケールプロバイダ" -#: sql_help.c:2207 +#: sql_help.c:2219 msgid "collation_version" msgstr "照合順序バージョン" -#: sql_help.c:2212 +#: sql_help.c:2224 msgid "oid" msgstr "オブジェクトID" -#: sql_help.c:2232 +#: sql_help.c:2244 msgid "constraint" msgstr "制約条件" -#: sql_help.c:2233 +#: sql_help.c:2245 msgid "where constraint is:" msgstr "制約条件は以下の通りです:" -#: sql_help.c:2247 sql_help.c:2684 sql_help.c:3112 +#: sql_help.c:2259 sql_help.c:2696 sql_help.c:3127 msgid "event" msgstr "イベント" -#: sql_help.c:2248 +#: sql_help.c:2260 msgid "filter_variable" msgstr "フィルター変数" -#: sql_help.c:2249 +#: sql_help.c:2261 msgid "filter_value" msgstr "フィルター値" -#: sql_help.c:2345 sql_help.c:2931 +#: sql_help.c:2357 sql_help.c:2943 msgid "where column_constraint is:" msgstr "カラム制約は以下の通りです:" -#: sql_help.c:2390 +#: sql_help.c:2402 msgid "rettype" msgstr "戻り値の型" -#: sql_help.c:2392 +#: sql_help.c:2404 msgid "column_type" msgstr "列の型" -#: sql_help.c:2401 sql_help.c:2604 +#: sql_help.c:2413 sql_help.c:2616 msgid "definition" msgstr "定義" -#: sql_help.c:2402 sql_help.c:2605 +#: sql_help.c:2414 sql_help.c:2617 msgid "obj_file" msgstr "オブジェクトファイル名" -#: sql_help.c:2403 sql_help.c:2606 +#: sql_help.c:2415 sql_help.c:2618 msgid "link_symbol" msgstr "リンクシンボル" -#: sql_help.c:2404 sql_help.c:2607 +#: sql_help.c:2416 sql_help.c:2619 msgid "sql_body" msgstr "SQL本体" -#: sql_help.c:2442 sql_help.c:2669 sql_help.c:3235 +#: sql_help.c:2454 sql_help.c:2681 sql_help.c:3250 msgid "uid" msgstr "UID" -#: sql_help.c:2458 sql_help.c:2499 sql_help.c:2900 sql_help.c:2913 -#: sql_help.c:2927 sql_help.c:2995 +#: sql_help.c:2470 sql_help.c:2511 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:2939 sql_help.c:3010 msgid "method" msgstr "インデックスメソッド" -#: sql_help.c:2463 -msgid "opclass_parameter" -msgstr "演算子クラスパラメータ" - -#: sql_help.c:2480 +#: sql_help.c:2492 msgid "call_handler" msgstr "呼び出しハンドラー" -#: sql_help.c:2481 +#: sql_help.c:2493 msgid "inline_handler" msgstr "インラインハンドラー" -#: sql_help.c:2482 +#: sql_help.c:2494 msgid "valfunction" msgstr "バリデーション関数" -#: sql_help.c:2521 +#: sql_help.c:2533 msgid "com_op" msgstr "交代演算子" -#: sql_help.c:2522 +#: sql_help.c:2534 msgid "neg_op" msgstr "否定演算子" -#: sql_help.c:2540 +#: sql_help.c:2552 msgid "family_name" msgstr "演算子族の名前" -#: sql_help.c:2551 +#: sql_help.c:2563 msgid "storage_type" msgstr "ストレージタイプ" -#: sql_help.c:2690 sql_help.c:3119 +#: sql_help.c:2702 sql_help.c:3134 msgid "where event can be one of:" msgstr "イベントは以下のいずれかです:" -#: sql_help.c:2710 sql_help.c:2712 +#: sql_help.c:2722 sql_help.c:2724 msgid "schema_element" msgstr "スキーマ要素" -#: sql_help.c:2749 +#: sql_help.c:2761 msgid "server_type" msgstr "サーバーのタイプ" -#: sql_help.c:2750 +#: sql_help.c:2762 msgid "server_version" msgstr "サーバーのバージョン" -#: sql_help.c:2751 sql_help.c:3898 sql_help.c:4347 +#: sql_help.c:2763 sql_help.c:3913 sql_help.c:4366 msgid "fdw_name" msgstr "外部データラッパ名" -#: sql_help.c:2768 sql_help.c:2771 +#: sql_help.c:2780 sql_help.c:2783 msgid "statistics_name" msgstr "統計オブジェクト名" -#: sql_help.c:2772 +#: sql_help.c:2784 msgid "statistics_kind" msgstr "統計種別" -#: sql_help.c:2788 +#: sql_help.c:2800 msgid "subscription_name" msgstr "サブスクリプション名" -#: sql_help.c:2893 +#: sql_help.c:2905 msgid "source_table" msgstr "コピー元のテーブル" -#: sql_help.c:2894 +#: sql_help.c:2906 msgid "like_option" msgstr "LIKEオプション" -#: sql_help.c:2960 +#: sql_help.c:2972 msgid "and like_option is:" msgstr "LIKE オプションは以下の通りです:" -#: sql_help.c:3012 +#: sql_help.c:3027 msgid "directory" msgstr "ディレクトリ" -#: sql_help.c:3026 +#: sql_help.c:3041 msgid "parser_name" msgstr "パーサ名" -#: sql_help.c:3027 +#: sql_help.c:3042 msgid "source_config" msgstr "複製元の設定" -#: sql_help.c:3056 +#: sql_help.c:3071 msgid "start_function" msgstr "開始関数" -#: sql_help.c:3057 +#: sql_help.c:3072 msgid "gettoken_function" msgstr "トークン取得関数" -#: sql_help.c:3058 +#: sql_help.c:3073 msgid "end_function" msgstr "終了関数" -#: sql_help.c:3059 +#: sql_help.c:3074 msgid "lextypes_function" msgstr "LEXTYPE関数" -#: sql_help.c:3060 +#: sql_help.c:3075 msgid "headline_function" msgstr "見出し関数" -#: sql_help.c:3072 +#: sql_help.c:3087 msgid "init_function" msgstr "初期処理関数" -#: sql_help.c:3073 +#: sql_help.c:3088 msgid "lexize_function" msgstr "LEXIZE関数" -#: sql_help.c:3086 +#: sql_help.c:3101 msgid "from_sql_function_name" msgstr "{FROM SQL 関数名}" -#: sql_help.c:3088 +#: sql_help.c:3103 msgid "to_sql_function_name" msgstr "{TO SQL 関数名}" -#: sql_help.c:3114 +#: sql_help.c:3129 msgid "referenced_table_name" msgstr "被参照テーブル名" -#: sql_help.c:3115 +#: sql_help.c:3130 msgid "transition_relation_name" msgstr "移行用リレーション名" -#: sql_help.c:3118 +#: sql_help.c:3133 msgid "arguments" msgstr "引数" -#: sql_help.c:3170 +#: sql_help.c:3185 msgid "label" msgstr "ラベル" -#: sql_help.c:3172 +#: sql_help.c:3187 msgid "subtype" msgstr "当該範囲のデータ型" -#: sql_help.c:3173 +#: sql_help.c:3188 msgid "subtype_operator_class" msgstr "当該範囲のデータ型の演算子クラス" -#: sql_help.c:3175 +#: sql_help.c:3190 msgid "canonical_function" msgstr "正規化関数" -#: sql_help.c:3176 +#: sql_help.c:3191 msgid "subtype_diff_function" msgstr "当該範囲のデータ型の差分抽出関数" -#: sql_help.c:3177 +#: sql_help.c:3192 msgid "multirange_type_name" msgstr "複範囲型名" -#: sql_help.c:3179 +#: sql_help.c:3194 msgid "input_function" msgstr "入力関数" -#: sql_help.c:3180 +#: sql_help.c:3195 msgid "output_function" msgstr "出力関数" -#: sql_help.c:3181 +#: sql_help.c:3196 msgid "receive_function" msgstr "受信関数" -#: sql_help.c:3182 +#: sql_help.c:3197 msgid "send_function" msgstr "送信関数" -#: sql_help.c:3183 +#: sql_help.c:3198 msgid "type_modifier_input_function" msgstr "型修飾子の入力関数" -#: sql_help.c:3184 +#: sql_help.c:3199 msgid "type_modifier_output_function" msgstr "型修飾子の出力関数" -#: sql_help.c:3185 +#: sql_help.c:3200 msgid "analyze_function" msgstr "分析関数" -#: sql_help.c:3186 +#: sql_help.c:3201 msgid "subscript_function" msgstr "添字関数" -#: sql_help.c:3187 +#: sql_help.c:3202 msgid "internallength" msgstr "内部長" -#: sql_help.c:3188 +#: sql_help.c:3203 msgid "alignment" msgstr "バイト境界" -#: sql_help.c:3189 +#: sql_help.c:3204 msgid "storage" msgstr "ストレージ" -#: sql_help.c:3190 +#: sql_help.c:3205 msgid "like_type" msgstr "LIKEの型" -#: sql_help.c:3191 +#: sql_help.c:3206 msgid "category" msgstr "カテゴリー" -#: sql_help.c:3192 +#: sql_help.c:3207 msgid "preferred" msgstr "優先データ型かどうか(真偽値)" -#: sql_help.c:3193 +#: sql_help.c:3208 msgid "default" msgstr "デフォルト" -#: sql_help.c:3194 +#: sql_help.c:3209 msgid "element" msgstr "要素のデータ型" -#: sql_help.c:3195 +#: sql_help.c:3210 msgid "delimiter" msgstr "区切り記号" -#: sql_help.c:3196 +#: sql_help.c:3211 msgid "collatable" msgstr "照合可能" -#: sql_help.c:3293 sql_help.c:3977 sql_help.c:4067 sql_help.c:4547 -#: sql_help.c:4649 sql_help.c:4804 sql_help.c:4917 sql_help.c:5042 +#: sql_help.c:3308 sql_help.c:3992 sql_help.c:4084 sql_help.c:4566 +#: sql_help.c:4668 sql_help.c:4823 sql_help.c:4936 sql_help.c:5061 msgid "with_query" msgstr "WITH問い合わせ" -#: sql_help.c:3295 sql_help.c:3979 sql_help.c:4566 sql_help.c:4572 -#: sql_help.c:4575 sql_help.c:4579 sql_help.c:4583 sql_help.c:4591 -#: sql_help.c:4823 sql_help.c:4829 sql_help.c:4832 sql_help.c:4836 -#: sql_help.c:4840 sql_help.c:4848 sql_help.c:4919 sql_help.c:5061 -#: sql_help.c:5067 sql_help.c:5070 sql_help.c:5074 sql_help.c:5078 -#: sql_help.c:5086 +#: sql_help.c:3310 sql_help.c:3994 sql_help.c:4585 sql_help.c:4591 +#: sql_help.c:4594 sql_help.c:4598 sql_help.c:4602 sql_help.c:4610 +#: sql_help.c:4842 sql_help.c:4848 sql_help.c:4851 sql_help.c:4855 +#: sql_help.c:4859 sql_help.c:4867 sql_help.c:4938 sql_help.c:5080 +#: sql_help.c:5086 sql_help.c:5089 sql_help.c:5093 sql_help.c:5097 +#: sql_help.c:5105 msgid "alias" msgstr "別名" -#: sql_help.c:3296 sql_help.c:4551 sql_help.c:4593 sql_help.c:4595 -#: sql_help.c:4599 sql_help.c:4601 sql_help.c:4602 sql_help.c:4603 -#: sql_help.c:4654 sql_help.c:4808 sql_help.c:4850 sql_help.c:4852 -#: sql_help.c:4856 sql_help.c:4858 sql_help.c:4859 sql_help.c:4860 -#: sql_help.c:4926 sql_help.c:5046 sql_help.c:5088 sql_help.c:5090 -#: sql_help.c:5094 sql_help.c:5096 sql_help.c:5097 sql_help.c:5098 +#: sql_help.c:3311 sql_help.c:4570 sql_help.c:4612 sql_help.c:4614 +#: sql_help.c:4618 sql_help.c:4620 sql_help.c:4621 sql_help.c:4622 +#: sql_help.c:4673 sql_help.c:4827 sql_help.c:4869 sql_help.c:4871 +#: sql_help.c:4875 sql_help.c:4877 sql_help.c:4878 sql_help.c:4879 +#: sql_help.c:4945 sql_help.c:5065 sql_help.c:5107 sql_help.c:5109 +#: sql_help.c:5113 sql_help.c:5115 sql_help.c:5116 sql_help.c:5117 msgid "from_item" msgstr "FROM項目" -#: sql_help.c:3298 sql_help.c:3779 sql_help.c:4117 sql_help.c:4928 +#: sql_help.c:3313 sql_help.c:3794 sql_help.c:4136 sql_help.c:4947 msgid "cursor_name" msgstr "カーソル名" -#: sql_help.c:3299 sql_help.c:3985 sql_help.c:4929 +#: sql_help.c:3314 sql_help.c:4000 sql_help.c:4948 msgid "output_expression" msgstr "出力表現" -#: sql_help.c:3300 sql_help.c:3986 sql_help.c:4550 sql_help.c:4652 -#: sql_help.c:4807 sql_help.c:4930 sql_help.c:5045 +#: sql_help.c:3315 sql_help.c:4001 sql_help.c:4569 sql_help.c:4671 +#: sql_help.c:4826 sql_help.c:4949 sql_help.c:5064 msgid "output_name" msgstr "出力名" -#: sql_help.c:3316 +#: sql_help.c:3331 msgid "code" msgstr "コードブロック" -#: sql_help.c:3721 +#: sql_help.c:3736 msgid "parameter" msgstr "パラメータ" -#: sql_help.c:3743 sql_help.c:3744 sql_help.c:4142 +#: sql_help.c:3758 sql_help.c:3759 sql_help.c:4161 msgid "statement" msgstr "文" -#: sql_help.c:3778 sql_help.c:4116 +#: sql_help.c:3793 sql_help.c:4135 msgid "direction" msgstr "方向" -#: sql_help.c:3780 sql_help.c:4118 +#: sql_help.c:3795 sql_help.c:4137 msgid "where direction can be one of:" msgstr "方向 は以下のうちのいずれか:" -#: sql_help.c:3781 sql_help.c:3782 sql_help.c:3783 sql_help.c:3784 -#: sql_help.c:3785 sql_help.c:4119 sql_help.c:4120 sql_help.c:4121 -#: sql_help.c:4122 sql_help.c:4123 sql_help.c:4560 sql_help.c:4562 -#: sql_help.c:4663 sql_help.c:4665 sql_help.c:4817 sql_help.c:4819 -#: sql_help.c:4986 sql_help.c:4988 sql_help.c:5055 sql_help.c:5057 +#: sql_help.c:3796 sql_help.c:3797 sql_help.c:3798 sql_help.c:3799 +#: sql_help.c:3800 sql_help.c:4138 sql_help.c:4139 sql_help.c:4140 +#: sql_help.c:4141 sql_help.c:4142 sql_help.c:4579 sql_help.c:4581 +#: sql_help.c:4682 sql_help.c:4684 sql_help.c:4836 sql_help.c:4838 +#: sql_help.c:5005 sql_help.c:5007 sql_help.c:5074 sql_help.c:5076 msgid "count" msgstr "取り出す位置や行数" -#: sql_help.c:3888 sql_help.c:4337 +#: sql_help.c:3903 sql_help.c:4356 msgid "sequence_name" msgstr "シーケンス名" -#: sql_help.c:3906 sql_help.c:4355 +#: sql_help.c:3921 sql_help.c:4374 msgid "arg_name" msgstr "引数名" -#: sql_help.c:3907 sql_help.c:4356 +#: sql_help.c:3922 sql_help.c:4375 msgid "arg_type" msgstr "引数の型" -#: sql_help.c:3914 sql_help.c:4363 +#: sql_help.c:3929 sql_help.c:4382 msgid "loid" msgstr "ラージオブジェクトid" -#: sql_help.c:3945 +#: sql_help.c:3960 msgid "remote_schema" msgstr "リモートスキーマ" -#: sql_help.c:3948 +#: sql_help.c:3963 msgid "local_schema" msgstr "ローカルスキーマ" -#: sql_help.c:3983 +#: sql_help.c:3998 msgid "conflict_target" msgstr "競合ターゲット" -#: sql_help.c:3984 +#: sql_help.c:3999 msgid "conflict_action" msgstr "競合時アクション" -#: sql_help.c:3987 +#: sql_help.c:4002 msgid "where conflict_target can be one of:" msgstr "競合ターゲットは以下のいずれかです:" -#: sql_help.c:3988 +#: sql_help.c:4003 msgid "index_column_name" msgstr "インデックスのカラム名" -#: sql_help.c:3989 +#: sql_help.c:4004 msgid "index_expression" msgstr "インデックス表現" -#: sql_help.c:3992 +#: sql_help.c:4007 msgid "index_predicate" msgstr "インデックスの述語" -#: sql_help.c:3994 +#: sql_help.c:4009 msgid "and conflict_action is one of:" msgstr "競合時アクションは以下のいずれかです:" -#: sql_help.c:4000 sql_help.c:4925 +#: sql_help.c:4015 sql_help.c:4109 sql_help.c:4944 msgid "sub-SELECT" msgstr "副問い合わせ句" -#: sql_help.c:4009 sql_help.c:4131 sql_help.c:4901 +#: sql_help.c:4024 sql_help.c:4150 sql_help.c:4920 msgid "channel" msgstr "チャネル" -#: sql_help.c:4031 +#: sql_help.c:4046 msgid "lockmode" msgstr "ロックモード" -#: sql_help.c:4032 +#: sql_help.c:4047 msgid "where lockmode is one of:" msgstr "ロックモードは以下のいずれかです:" -#: sql_help.c:4068 +#: sql_help.c:4085 msgid "target_table_name" msgstr "ターゲットテーブル名" -#: sql_help.c:4069 +#: sql_help.c:4086 msgid "target_alias" msgstr "ターゲット別名" -#: sql_help.c:4070 +#: sql_help.c:4087 msgid "data_source" msgstr "データ源" -#: sql_help.c:4071 sql_help.c:4596 sql_help.c:4853 sql_help.c:5091 +#: sql_help.c:4088 sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 msgid "join_condition" msgstr "JOIN条件" -#: sql_help.c:4072 +#: sql_help.c:4089 msgid "when_clause" msgstr "WHEN句" -#: sql_help.c:4073 +#: sql_help.c:4090 msgid "where data_source is:" msgstr "ここで\"データ源\"は以下の通り:" -#: sql_help.c:4074 +#: sql_help.c:4091 msgid "source_table_name" msgstr "データ源テーブル名" -#: sql_help.c:4075 +#: sql_help.c:4092 msgid "source_query" msgstr "データ源問い合わせ" -#: sql_help.c:4076 +#: sql_help.c:4093 msgid "source_alias" msgstr "データ源別名" -#: sql_help.c:4077 +#: sql_help.c:4094 msgid "and when_clause is:" msgstr "WHEN句は以下の通り:" -#: sql_help.c:4079 +#: sql_help.c:4096 msgid "merge_update" msgstr "マージ更新" -#: sql_help.c:4080 +#: sql_help.c:4097 msgid "merge_delete" msgstr "マージ削除" -#: sql_help.c:4082 +#: sql_help.c:4099 msgid "merge_insert" msgstr "マージ挿入" -#: sql_help.c:4083 +#: sql_help.c:4100 msgid "and merge_insert is:" msgstr "そして\"マージ挿入\"は以下の通り:" -#: sql_help.c:4086 +#: sql_help.c:4103 msgid "and merge_update is:" msgstr "そして\"マージ更新\"は以下の通り:" -#: sql_help.c:4091 +#: sql_help.c:4110 msgid "and merge_delete is:" msgstr "そして\"マージ削除\"は以下の通り:" -#: sql_help.c:4132 +#: sql_help.c:4151 msgid "payload" msgstr "ペイロード" -#: sql_help.c:4159 +#: sql_help.c:4178 msgid "old_role" msgstr "元のロール" -#: sql_help.c:4160 +#: sql_help.c:4179 msgid "new_role" msgstr "新しいロール" -#: sql_help.c:4196 sql_help.c:4405 sql_help.c:4413 +#: sql_help.c:4215 sql_help.c:4424 sql_help.c:4432 msgid "savepoint_name" msgstr "セーブポイント名" -#: sql_help.c:4553 sql_help.c:4611 sql_help.c:4810 sql_help.c:4868 -#: sql_help.c:5048 sql_help.c:5106 +#: sql_help.c:4572 sql_help.c:4630 sql_help.c:4829 sql_help.c:4887 +#: sql_help.c:5067 sql_help.c:5125 msgid "grouping_element" msgstr "グルーピング要素" -#: sql_help.c:4555 sql_help.c:4658 sql_help.c:4812 sql_help.c:5050 +#: sql_help.c:4574 sql_help.c:4677 sql_help.c:4831 sql_help.c:5069 msgid "window_name" msgstr "ウィンドウ名" -#: sql_help.c:4556 sql_help.c:4659 sql_help.c:4813 sql_help.c:5051 +#: sql_help.c:4575 sql_help.c:4678 sql_help.c:4832 sql_help.c:5070 msgid "window_definition" msgstr "ウィンドウ定義" -#: sql_help.c:4557 sql_help.c:4571 sql_help.c:4615 sql_help.c:4660 -#: sql_help.c:4814 sql_help.c:4828 sql_help.c:4872 sql_help.c:5052 -#: sql_help.c:5066 sql_help.c:5110 +#: sql_help.c:4576 sql_help.c:4590 sql_help.c:4634 sql_help.c:4679 +#: sql_help.c:4833 sql_help.c:4847 sql_help.c:4891 sql_help.c:5071 +#: sql_help.c:5085 sql_help.c:5129 msgid "select" msgstr "SELECT句" -#: sql_help.c:4564 sql_help.c:4821 sql_help.c:5059 +#: sql_help.c:4583 sql_help.c:4840 sql_help.c:5078 msgid "where from_item can be one of:" msgstr "FROM項目は以下のいずれかです:" -#: sql_help.c:4567 sql_help.c:4573 sql_help.c:4576 sql_help.c:4580 -#: sql_help.c:4592 sql_help.c:4824 sql_help.c:4830 sql_help.c:4833 -#: sql_help.c:4837 sql_help.c:4849 sql_help.c:5062 sql_help.c:5068 -#: sql_help.c:5071 sql_help.c:5075 sql_help.c:5087 +#: sql_help.c:4586 sql_help.c:4592 sql_help.c:4595 sql_help.c:4599 +#: sql_help.c:4611 sql_help.c:4843 sql_help.c:4849 sql_help.c:4852 +#: sql_help.c:4856 sql_help.c:4868 sql_help.c:5081 sql_help.c:5087 +#: sql_help.c:5090 sql_help.c:5094 sql_help.c:5106 msgid "column_alias" msgstr "列別名" -#: sql_help.c:4568 sql_help.c:4825 sql_help.c:5063 +#: sql_help.c:4587 sql_help.c:4844 sql_help.c:5082 msgid "sampling_method" msgstr "サンプリングメソッド" -#: sql_help.c:4570 sql_help.c:4827 sql_help.c:5065 +#: sql_help.c:4589 sql_help.c:4846 sql_help.c:5084 msgid "seed" msgstr "乱数シード" -#: sql_help.c:4574 sql_help.c:4613 sql_help.c:4831 sql_help.c:4870 -#: sql_help.c:5069 sql_help.c:5108 +#: sql_help.c:4593 sql_help.c:4632 sql_help.c:4850 sql_help.c:4889 +#: sql_help.c:5088 sql_help.c:5127 msgid "with_query_name" msgstr "WITH問い合わせ名" -#: sql_help.c:4584 sql_help.c:4587 sql_help.c:4590 sql_help.c:4841 -#: sql_help.c:4844 sql_help.c:4847 sql_help.c:5079 sql_help.c:5082 -#: sql_help.c:5085 +#: sql_help.c:4603 sql_help.c:4606 sql_help.c:4609 sql_help.c:4860 +#: sql_help.c:4863 sql_help.c:4866 sql_help.c:5098 sql_help.c:5101 +#: sql_help.c:5104 msgid "column_definition" msgstr "カラム定義" -#: sql_help.c:4594 sql_help.c:4600 sql_help.c:4851 sql_help.c:4857 -#: sql_help.c:5089 sql_help.c:5095 +#: sql_help.c:4613 sql_help.c:4619 sql_help.c:4870 sql_help.c:4876 +#: sql_help.c:5108 sql_help.c:5114 msgid "join_type" msgstr "JOINタイプ" -#: sql_help.c:4597 sql_help.c:4854 sql_help.c:5092 +#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 msgid "join_column" msgstr "JOINカラム" -#: sql_help.c:4598 sql_help.c:4855 sql_help.c:5093 +#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 msgid "join_using_alias" msgstr "JOIN用別名" -#: sql_help.c:4604 sql_help.c:4861 sql_help.c:5099 +#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 msgid "and grouping_element can be one of:" msgstr "グルーピング要素は以下のいずれかです:" -#: sql_help.c:4612 sql_help.c:4869 sql_help.c:5107 +#: sql_help.c:4631 sql_help.c:4888 sql_help.c:5126 msgid "and with_query is:" msgstr "WITH問い合わせは以下のいずれかです:" -#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 +#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 msgid "values" msgstr "VALUES句" -#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 +#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 msgid "insert" msgstr "INSERT句" -#: sql_help.c:4618 sql_help.c:4875 sql_help.c:5113 +#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 msgid "update" msgstr "UPDATE句" -#: sql_help.c:4619 sql_help.c:4876 sql_help.c:5114 +#: sql_help.c:4638 sql_help.c:4895 sql_help.c:5133 msgid "delete" msgstr "DELETE句" -#: sql_help.c:4621 sql_help.c:4878 sql_help.c:5116 +#: sql_help.c:4640 sql_help.c:4897 sql_help.c:5135 msgid "search_seq_col_name" msgstr "SEARCH順序列名" -#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 +#: sql_help.c:4642 sql_help.c:4899 sql_help.c:5137 msgid "cycle_mark_col_name" msgstr "循環識別列名" -#: sql_help.c:4624 sql_help.c:4881 sql_help.c:5119 +#: sql_help.c:4643 sql_help.c:4900 sql_help.c:5138 msgid "cycle_mark_value" msgstr "循環識別値" -#: sql_help.c:4625 sql_help.c:4882 sql_help.c:5120 +#: sql_help.c:4644 sql_help.c:4901 sql_help.c:5139 msgid "cycle_mark_default" msgstr "循環識別デフォルト" -#: sql_help.c:4626 sql_help.c:4883 sql_help.c:5121 +#: sql_help.c:4645 sql_help.c:4902 sql_help.c:5140 msgid "cycle_path_col_name" msgstr "循環パス列名" -#: sql_help.c:4653 +#: sql_help.c:4672 msgid "new_table" msgstr "新しいテーブル" -#: sql_help.c:4724 +#: sql_help.c:4743 msgid "snapshot_id" msgstr "スナップショットID" -#: sql_help.c:4984 +#: sql_help.c:5003 msgid "sort_expression" msgstr "ソート表現" -#: sql_help.c:5128 sql_help.c:6112 +#: sql_help.c:5147 sql_help.c:6131 msgid "abort the current transaction" msgstr "現在のトランザクションを中止します" -#: sql_help.c:5134 +#: sql_help.c:5153 msgid "change the definition of an aggregate function" msgstr "集約関数の定義を変更します" -#: sql_help.c:5140 +#: sql_help.c:5159 msgid "change the definition of a collation" msgstr "照合順序の定義を変更します" -#: sql_help.c:5146 +#: sql_help.c:5165 msgid "change the definition of a conversion" msgstr "エンコーディング変換ルールの定義を変更します" -#: sql_help.c:5152 +#: sql_help.c:5171 msgid "change a database" msgstr "データベースを変更します" -#: sql_help.c:5158 +#: sql_help.c:5177 msgid "define default access privileges" msgstr "デフォルトのアクセス権限を定義します" -#: sql_help.c:5164 +#: sql_help.c:5183 msgid "change the definition of a domain" msgstr "ドメインの定義を変更します" -#: sql_help.c:5170 +#: sql_help.c:5189 msgid "change the definition of an event trigger" msgstr "イベントトリガーの定義を変更します" -#: sql_help.c:5176 +#: sql_help.c:5195 msgid "change the definition of an extension" msgstr "機能拡張の定義を変更します" -#: sql_help.c:5182 +#: sql_help.c:5201 msgid "change the definition of a foreign-data wrapper" msgstr "外部データラッパの定義を変更します" -#: sql_help.c:5188 +#: sql_help.c:5207 msgid "change the definition of a foreign table" msgstr "外部テーブルの定義を変更します" -#: sql_help.c:5194 +#: sql_help.c:5213 msgid "change the definition of a function" msgstr "関数の定義を変更します" -#: sql_help.c:5200 +#: sql_help.c:5219 msgid "change role name or membership" msgstr "ロール名またはメンバーシップを変更します" -#: sql_help.c:5206 +#: sql_help.c:5225 msgid "change the definition of an index" msgstr "インデックスの定義を変更します" -#: sql_help.c:5212 +#: sql_help.c:5231 msgid "change the definition of a procedural language" msgstr "手続き言語の定義を変更します" -#: sql_help.c:5218 +#: sql_help.c:5237 msgid "change the definition of a large object" msgstr "ラージオブジェクトの定義を変更します" -#: sql_help.c:5224 +#: sql_help.c:5243 msgid "change the definition of a materialized view" msgstr "実体化ビューの定義を変更します" -#: sql_help.c:5230 +#: sql_help.c:5249 msgid "change the definition of an operator" msgstr "演算子の定義を変更します" -#: sql_help.c:5236 +#: sql_help.c:5255 msgid "change the definition of an operator class" msgstr "演算子クラスの定義を変更します" -#: sql_help.c:5242 +#: sql_help.c:5261 msgid "change the definition of an operator family" msgstr "演算子族の定義を変更します" -#: sql_help.c:5248 +#: sql_help.c:5267 msgid "change the definition of a row-level security policy" msgstr "行レベルのセキュリティ ポリシーの定義を変更します" -#: sql_help.c:5254 +#: sql_help.c:5273 msgid "change the definition of a procedure" msgstr "プロシージャの定義を変更します" -#: sql_help.c:5260 +#: sql_help.c:5279 msgid "change the definition of a publication" msgstr "パブリケーションの定義を変更します" -#: sql_help.c:5266 sql_help.c:5368 +#: sql_help.c:5285 sql_help.c:5387 msgid "change a database role" msgstr "データベースロールを変更します" -#: sql_help.c:5272 +#: sql_help.c:5291 msgid "change the definition of a routine" msgstr "ルーチンの定義を変更します" -#: sql_help.c:5278 +#: sql_help.c:5297 msgid "change the definition of a rule" msgstr "ルールの定義を変更します" -#: sql_help.c:5284 +#: sql_help.c:5303 msgid "change the definition of a schema" msgstr "スキーマの定義を変更します" -#: sql_help.c:5290 +#: sql_help.c:5309 msgid "change the definition of a sequence generator" msgstr "シーケンス生成器の定義を変更します" -#: sql_help.c:5296 +#: sql_help.c:5315 msgid "change the definition of a foreign server" msgstr "外部サーバーの定義を変更します" -#: sql_help.c:5302 +#: sql_help.c:5321 msgid "change the definition of an extended statistics object" msgstr "拡張統計情報オブジェクトの定義を変更します" -#: sql_help.c:5308 +#: sql_help.c:5327 msgid "change the definition of a subscription" msgstr "サブスクリプションの定義を変更します" -#: sql_help.c:5314 +#: sql_help.c:5333 msgid "change a server configuration parameter" msgstr "サーバーの設定パラメータを変更します" -#: sql_help.c:5320 +#: sql_help.c:5339 msgid "change the definition of a table" msgstr "テーブルの定義を変更します。" -#: sql_help.c:5326 +#: sql_help.c:5345 msgid "change the definition of a tablespace" msgstr "テーブル空間の定義を変更します" -#: sql_help.c:5332 +#: sql_help.c:5351 msgid "change the definition of a text search configuration" msgstr "テキスト検索設定の定義を変更します" -#: sql_help.c:5338 +#: sql_help.c:5357 msgid "change the definition of a text search dictionary" msgstr "テキスト検索辞書の定義を変更します" -#: sql_help.c:5344 +#: sql_help.c:5363 msgid "change the definition of a text search parser" msgstr "テキスト検索パーサーの定義を変更します" -#: sql_help.c:5350 +#: sql_help.c:5369 msgid "change the definition of a text search template" msgstr "テキスト検索テンプレートの定義を変更します" -#: sql_help.c:5356 +#: sql_help.c:5375 msgid "change the definition of a trigger" msgstr "トリガーの定義を変更します" -#: sql_help.c:5362 +#: sql_help.c:5381 msgid "change the definition of a type" msgstr "型の定義を変更します" -#: sql_help.c:5374 +#: sql_help.c:5393 msgid "change the definition of a user mapping" msgstr "ユーザーマッピングの定義を変更します" -#: sql_help.c:5380 +#: sql_help.c:5399 msgid "change the definition of a view" msgstr "ビューの定義を変更します" -#: sql_help.c:5386 +#: sql_help.c:5405 msgid "collect statistics about a database" msgstr "データベースの統計情報を収集します" -#: sql_help.c:5392 sql_help.c:6190 +#: sql_help.c:5411 sql_help.c:6209 msgid "start a transaction block" msgstr "トランザクション区間を開始します" -#: sql_help.c:5398 +#: sql_help.c:5417 msgid "invoke a procedure" msgstr "プロシージャを実行します" -#: sql_help.c:5404 +#: sql_help.c:5423 msgid "force a write-ahead log checkpoint" msgstr "先行書き込みログのチェックポイントを強制的に実行します" -#: sql_help.c:5410 +#: sql_help.c:5429 msgid "close a cursor" msgstr "カーソルを閉じます" -#: sql_help.c:5416 +#: sql_help.c:5435 msgid "cluster a table according to an index" msgstr "インデックスに従ってテーブルをクラスタ化します" -#: sql_help.c:5422 +#: sql_help.c:5441 msgid "define or change the comment of an object" msgstr "オブジェクトのコメントを定義または変更します" -#: sql_help.c:5428 sql_help.c:5986 +#: sql_help.c:5447 sql_help.c:6005 msgid "commit the current transaction" msgstr "現在のトランザクションをコミットします" -#: sql_help.c:5434 +#: sql_help.c:5453 msgid "commit a transaction that was earlier prepared for two-phase commit" msgstr "二相コミットのために事前に準備されたトランザクションをコミットします" -#: sql_help.c:5440 +#: sql_help.c:5459 msgid "copy data between a file and a table" msgstr "ファイルとテーブルとの間でデータをコピーします" -#: sql_help.c:5446 +#: sql_help.c:5465 msgid "define a new access method" msgstr "新しいアクセスメソッドを定義します" -#: sql_help.c:5452 +#: sql_help.c:5471 msgid "define a new aggregate function" msgstr "新しい集約関数を定義します" -#: sql_help.c:5458 +#: sql_help.c:5477 msgid "define a new cast" msgstr "新しい型変換を定義します" -#: sql_help.c:5464 +#: sql_help.c:5483 msgid "define a new collation" msgstr "新しい照合順序を定義します" -#: sql_help.c:5470 +#: sql_help.c:5489 msgid "define a new encoding conversion" msgstr "新しいエンコーディング変換を定義します" -#: sql_help.c:5476 +#: sql_help.c:5495 msgid "create a new database" msgstr "新しいデータベースを作成します" -#: sql_help.c:5482 +#: sql_help.c:5501 msgid "define a new domain" msgstr "新しいドメインを定義します" -#: sql_help.c:5488 +#: sql_help.c:5507 msgid "define a new event trigger" msgstr "新しいイベントトリガーを定義します" -#: sql_help.c:5494 +#: sql_help.c:5513 msgid "install an extension" msgstr "機能拡張をインストールします" -#: sql_help.c:5500 +#: sql_help.c:5519 msgid "define a new foreign-data wrapper" msgstr "新しい外部データラッパを定義します" -#: sql_help.c:5506 +#: sql_help.c:5525 msgid "define a new foreign table" msgstr "新しい外部テーブルを定義します" -#: sql_help.c:5512 +#: sql_help.c:5531 msgid "define a new function" msgstr "新しい関数を定義します" -#: sql_help.c:5518 sql_help.c:5578 sql_help.c:5680 +#: sql_help.c:5537 sql_help.c:5597 sql_help.c:5699 msgid "define a new database role" msgstr "新しいデータベースロールを定義します" -#: sql_help.c:5524 +#: sql_help.c:5543 msgid "define a new index" msgstr "新しいインデックスを定義します" -#: sql_help.c:5530 +#: sql_help.c:5549 msgid "define a new procedural language" msgstr "新しい手続き言語を定義します" -#: sql_help.c:5536 +#: sql_help.c:5555 msgid "define a new materialized view" msgstr "新しい実体化ビューを定義します" -#: sql_help.c:5542 +#: sql_help.c:5561 msgid "define a new operator" msgstr "新しい演算子を定義します" -#: sql_help.c:5548 +#: sql_help.c:5567 msgid "define a new operator class" msgstr "新しい演算子クラスを定義します" -#: sql_help.c:5554 +#: sql_help.c:5573 msgid "define a new operator family" msgstr "新しい演算子族を定義します" -#: sql_help.c:5560 +#: sql_help.c:5579 msgid "define a new row-level security policy for a table" msgstr "テーブルに対して新しい行レベルセキュリティポリシーを定義します" -#: sql_help.c:5566 +#: sql_help.c:5585 msgid "define a new procedure" msgstr "新しいプロシージャを定義します" -#: sql_help.c:5572 +#: sql_help.c:5591 msgid "define a new publication" msgstr "新しいパブリケーションを定義します" -#: sql_help.c:5584 +#: sql_help.c:5603 msgid "define a new rewrite rule" msgstr "新しい書き換えルールを定義します" -#: sql_help.c:5590 +#: sql_help.c:5609 msgid "define a new schema" msgstr "新しいスキーマを定義します" -#: sql_help.c:5596 +#: sql_help.c:5615 msgid "define a new sequence generator" msgstr "新しいシーケンス生成器を定義します。" -#: sql_help.c:5602 +#: sql_help.c:5621 msgid "define a new foreign server" msgstr "新しい外部サーバーを定義します" -#: sql_help.c:5608 +#: sql_help.c:5627 msgid "define extended statistics" msgstr "拡張統計情報を定義します" -#: sql_help.c:5614 +#: sql_help.c:5633 msgid "define a new subscription" msgstr "新しいサブスクリプションを定義します" -#: sql_help.c:5620 +#: sql_help.c:5639 msgid "define a new table" msgstr "新しいテーブルを定義します" -#: sql_help.c:5626 sql_help.c:6148 +#: sql_help.c:5645 sql_help.c:6167 msgid "define a new table from the results of a query" msgstr "問い合わせの結果から新しいテーブルを定義します" -#: sql_help.c:5632 +#: sql_help.c:5651 msgid "define a new tablespace" msgstr "新しいテーブル空間を定義します" -#: sql_help.c:5638 +#: sql_help.c:5657 msgid "define a new text search configuration" msgstr "新しいテキスト検索設定を定義します" -#: sql_help.c:5644 +#: sql_help.c:5663 msgid "define a new text search dictionary" msgstr "新しいテキスト検索辞書を定義します" -#: sql_help.c:5650 +#: sql_help.c:5669 msgid "define a new text search parser" msgstr "新しいテキスト検索パーサーを定義します" -#: sql_help.c:5656 +#: sql_help.c:5675 msgid "define a new text search template" msgstr "新しいテキスト検索テンプレートを定義します" -#: sql_help.c:5662 +#: sql_help.c:5681 msgid "define a new transform" msgstr "新しいデータ変換を定義します" -#: sql_help.c:5668 +#: sql_help.c:5687 msgid "define a new trigger" msgstr "新しいトリガーを定義します" -#: sql_help.c:5674 +#: sql_help.c:5693 msgid "define a new data type" msgstr "新しいデータ型を定義します" -#: sql_help.c:5686 +#: sql_help.c:5705 msgid "define a new mapping of a user to a foreign server" msgstr "外部サーバーに対するユーザーの新しいマッピングを定義します。" -#: sql_help.c:5692 +#: sql_help.c:5711 msgid "define a new view" msgstr "新しいビューを定義します" -#: sql_help.c:5698 +#: sql_help.c:5717 msgid "deallocate a prepared statement" msgstr "準備した文を解放します" -#: sql_help.c:5704 +#: sql_help.c:5723 msgid "define a cursor" msgstr "カーソルを定義します" -#: sql_help.c:5710 +#: sql_help.c:5729 msgid "delete rows of a table" msgstr "テーブルの行を削除します" -#: sql_help.c:5716 +#: sql_help.c:5735 msgid "discard session state" msgstr "セッション状態を破棄します" -#: sql_help.c:5722 +#: sql_help.c:5741 msgid "execute an anonymous code block" msgstr "無名コードブロックを実行します" -#: sql_help.c:5728 +#: sql_help.c:5747 msgid "remove an access method" msgstr "アクセスメソッドを削除します" -#: sql_help.c:5734 +#: sql_help.c:5753 msgid "remove an aggregate function" msgstr "集約関数を削除します" -#: sql_help.c:5740 +#: sql_help.c:5759 msgid "remove a cast" msgstr "型変換を削除します" -#: sql_help.c:5746 +#: sql_help.c:5765 msgid "remove a collation" msgstr "照合順序を削除します" -#: sql_help.c:5752 +#: sql_help.c:5771 msgid "remove a conversion" msgstr "符号化方式変換を削除します" -#: sql_help.c:5758 +#: sql_help.c:5777 msgid "remove a database" msgstr "データベースを削除します" -#: sql_help.c:5764 +#: sql_help.c:5783 msgid "remove a domain" msgstr "ドメインを削除します" -#: sql_help.c:5770 +#: sql_help.c:5789 msgid "remove an event trigger" msgstr "イベントトリガーを削除します" -#: sql_help.c:5776 +#: sql_help.c:5795 msgid "remove an extension" msgstr "機能拡張を削除します" -#: sql_help.c:5782 +#: sql_help.c:5801 msgid "remove a foreign-data wrapper" msgstr "外部データラッパを削除します" -#: sql_help.c:5788 +#: sql_help.c:5807 msgid "remove a foreign table" msgstr "外部テーブルを削除します" -#: sql_help.c:5794 +#: sql_help.c:5813 msgid "remove a function" msgstr "関数を削除します" -#: sql_help.c:5800 sql_help.c:5866 sql_help.c:5968 +#: sql_help.c:5819 sql_help.c:5885 sql_help.c:5987 msgid "remove a database role" msgstr "データベースロールを削除します" -#: sql_help.c:5806 +#: sql_help.c:5825 msgid "remove an index" msgstr "インデックスを削除します" -#: sql_help.c:5812 +#: sql_help.c:5831 msgid "remove a procedural language" msgstr "手続き言語を削除します" -#: sql_help.c:5818 +#: sql_help.c:5837 msgid "remove a materialized view" msgstr "実体化ビューを削除します" -#: sql_help.c:5824 +#: sql_help.c:5843 msgid "remove an operator" msgstr "演算子を削除します" -#: sql_help.c:5830 +#: sql_help.c:5849 msgid "remove an operator class" msgstr "演算子クラスを削除します" -#: sql_help.c:5836 +#: sql_help.c:5855 msgid "remove an operator family" msgstr "演算子族を削除します" -#: sql_help.c:5842 +#: sql_help.c:5861 msgid "remove database objects owned by a database role" msgstr "データベースロールが所有するデータベースオブジェクトを削除します" -#: sql_help.c:5848 +#: sql_help.c:5867 msgid "remove a row-level security policy from a table" msgstr "テーブルから行レベルのセキュリティポリシーを削除します" -#: sql_help.c:5854 +#: sql_help.c:5873 msgid "remove a procedure" msgstr "プロシージャを削除します" -#: sql_help.c:5860 +#: sql_help.c:5879 msgid "remove a publication" msgstr "パブリケーションを削除します" -#: sql_help.c:5872 +#: sql_help.c:5891 msgid "remove a routine" msgstr "ルーチンを削除します" -#: sql_help.c:5878 +#: sql_help.c:5897 msgid "remove a rewrite rule" msgstr "書き換えルールを削除します" -#: sql_help.c:5884 +#: sql_help.c:5903 msgid "remove a schema" msgstr "スキーマを削除します" -#: sql_help.c:5890 +#: sql_help.c:5909 msgid "remove a sequence" msgstr "シーケンスを削除します" -#: sql_help.c:5896 +#: sql_help.c:5915 msgid "remove a foreign server descriptor" msgstr "外部サーバー記述子を削除します" -#: sql_help.c:5902 +#: sql_help.c:5921 msgid "remove extended statistics" msgstr "拡張統計情報を削除します" -#: sql_help.c:5908 +#: sql_help.c:5927 msgid "remove a subscription" msgstr "サブスクリプションを削除します" -#: sql_help.c:5914 +#: sql_help.c:5933 msgid "remove a table" msgstr "テーブルを削除します" -#: sql_help.c:5920 +#: sql_help.c:5939 msgid "remove a tablespace" msgstr "テーブル空間を削除します" -#: sql_help.c:5926 +#: sql_help.c:5945 msgid "remove a text search configuration" msgstr "テキスト検索設定を削除します" -#: sql_help.c:5932 +#: sql_help.c:5951 msgid "remove a text search dictionary" msgstr "テキスト検索辞書を削除します" -#: sql_help.c:5938 +#: sql_help.c:5957 msgid "remove a text search parser" msgstr "テキスト検索パーサーを削除します" -#: sql_help.c:5944 +#: sql_help.c:5963 msgid "remove a text search template" msgstr "テキスト検索テンプレートを削除します" -#: sql_help.c:5950 +#: sql_help.c:5969 msgid "remove a transform" msgstr "データ変換を削除します" -#: sql_help.c:5956 +#: sql_help.c:5975 msgid "remove a trigger" msgstr "トリガーを削除します" -#: sql_help.c:5962 +#: sql_help.c:5981 msgid "remove a data type" msgstr "データ型を削除します" -#: sql_help.c:5974 +#: sql_help.c:5993 msgid "remove a user mapping for a foreign server" msgstr "外部サーバーのユーザーマッピングを削除します" -#: sql_help.c:5980 +#: sql_help.c:5999 msgid "remove a view" msgstr "ビューを削除します" -#: sql_help.c:5992 +#: sql_help.c:6011 msgid "execute a prepared statement" msgstr "準備した文を実行します" -#: sql_help.c:5998 +#: sql_help.c:6017 msgid "show the execution plan of a statement" msgstr "文の実行計画を表示します" -#: sql_help.c:6004 +#: sql_help.c:6023 msgid "retrieve rows from a query using a cursor" msgstr "カーソルを使って問い合わせから行を取り出します" -#: sql_help.c:6010 +#: sql_help.c:6029 msgid "define access privileges" msgstr "アクセス権限を定義します" -#: sql_help.c:6016 +#: sql_help.c:6035 msgid "import table definitions from a foreign server" msgstr "外部サーバーからテーブル定義をインポートします" -#: sql_help.c:6022 +#: sql_help.c:6041 msgid "create new rows in a table" msgstr "テーブルに新しい行を作成します" -#: sql_help.c:6028 +#: sql_help.c:6047 msgid "listen for a notification" msgstr "通知メッセージを監視します" -#: sql_help.c:6034 +#: sql_help.c:6053 msgid "load a shared library file" msgstr "共有ライブラリファイルをロードします" -#: sql_help.c:6040 +#: sql_help.c:6059 msgid "lock a table" msgstr "テーブルをロックします" -#: sql_help.c:6046 +#: sql_help.c:6065 msgid "conditionally insert, update, or delete rows of a table" msgstr "条件によってテーブルの行を挿入、更新または削除する" -#: sql_help.c:6052 +#: sql_help.c:6071 msgid "position a cursor" msgstr "カーソルを位置づけます" -#: sql_help.c:6058 +#: sql_help.c:6077 msgid "generate a notification" msgstr "通知を生成します" -#: sql_help.c:6064 +#: sql_help.c:6083 msgid "prepare a statement for execution" msgstr "実行に備えて文を準備します" -#: sql_help.c:6070 +#: sql_help.c:6089 msgid "prepare the current transaction for two-phase commit" msgstr "二相コミットに備えて現在のトランザクションを準備します" -#: sql_help.c:6076 +#: sql_help.c:6095 msgid "change the ownership of database objects owned by a database role" msgstr "データベースロールが所有するデータベースオブジェクトの所有権を変更します" -#: sql_help.c:6082 +#: sql_help.c:6101 msgid "replace the contents of a materialized view" msgstr "実体化ビューの内容を置き換えます" -#: sql_help.c:6088 +#: sql_help.c:6107 msgid "rebuild indexes" msgstr "インデックスを再構築します" -#: sql_help.c:6094 +#: sql_help.c:6113 msgid "destroy a previously defined savepoint" msgstr "以前に定義されたセーブポイントを破棄します" -#: sql_help.c:6100 +#: sql_help.c:6119 msgid "restore the value of a run-time parameter to the default value" msgstr "実行時パラメータの値をデフォルト値に戻します" -#: sql_help.c:6106 +#: sql_help.c:6125 msgid "remove access privileges" msgstr "アクセス権限を削除します" -#: sql_help.c:6118 +#: sql_help.c:6137 msgid "cancel a transaction that was earlier prepared for two-phase commit" msgstr "二相コミットのために事前に準備されたトランザクションをキャンセルします" -#: sql_help.c:6124 +#: sql_help.c:6143 msgid "roll back to a savepoint" msgstr "セーブポイントまでロールバックします" -#: sql_help.c:6130 +#: sql_help.c:6149 msgid "define a new savepoint within the current transaction" msgstr "現在のトランザクション内で新しいセーブポイントを定義します" -#: sql_help.c:6136 +#: sql_help.c:6155 msgid "define or change a security label applied to an object" msgstr "オブジェクトに適用されるセキュリティラベルを定義または変更します" -#: sql_help.c:6142 sql_help.c:6196 sql_help.c:6232 +#: sql_help.c:6161 sql_help.c:6215 sql_help.c:6251 msgid "retrieve rows from a table or view" msgstr "テーブルまたはビューから行を取得します" -#: sql_help.c:6154 +#: sql_help.c:6173 msgid "change a run-time parameter" msgstr "実行時パラメータを変更します" -#: sql_help.c:6160 +#: sql_help.c:6179 msgid "set constraint check timing for the current transaction" msgstr "現在のトランザクションについて、制約チェックのタイミングを設定します" -#: sql_help.c:6166 +#: sql_help.c:6185 msgid "set the current user identifier of the current session" msgstr "現在のセッションの現在のユーザー識別子を設定します" -#: sql_help.c:6172 +#: sql_help.c:6191 msgid "set the session user identifier and the current user identifier of the current session" msgstr "セッションのユーザー識別子および現在のセッションの現在のユーザー識別子を設定します" -#: sql_help.c:6178 +#: sql_help.c:6197 msgid "set the characteristics of the current transaction" msgstr "現在のトランザクションの特性を設定します" -#: sql_help.c:6184 +#: sql_help.c:6203 msgid "show the value of a run-time parameter" msgstr "実行時パラメータの値を表示します" -#: sql_help.c:6202 +#: sql_help.c:6221 msgid "empty a table or set of tables" msgstr "一つの、または複数のテーブルを空にします" -#: sql_help.c:6208 +#: sql_help.c:6227 msgid "stop listening for a notification" msgstr "通知メッセージの監視を中止します" -#: sql_help.c:6214 +#: sql_help.c:6233 msgid "update rows of a table" msgstr "テーブルの行を更新します" -#: sql_help.c:6220 +#: sql_help.c:6239 msgid "garbage-collect and optionally analyze a database" msgstr "ガーベッジコレクションを行い、また必要に応じてデータベースを分析します" -#: sql_help.c:6226 +#: sql_help.c:6245 msgid "compute a set of rows" msgstr "行セットを計算します" diff --git a/src/bin/psql/po/ru.po b/src/bin/psql/po/ru.po index ad52fbec441..2ab767a50a7 100644 --- a/src/bin/psql/po/ru.po +++ b/src/bin/psql/po/ru.po @@ -4,14 +4,14 @@ # Serguei A. Mokhov , 2001-2005. # Oleg Bartunov , 2004-2005. # Sergey Burladyan , 2012. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. # Maxim Yablokov , 2021. msgid "" msgstr "" "Project-Id-Version: psql (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-05-04 10:36+0300\n" -"PO-Revision-Date: 2023-02-03 15:12+0300\n" +"POT-Creation-Date: 2024-11-02 08:22+0300\n" +"PO-Revision-Date: 2024-09-07 06:49+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -136,7 +136,7 @@ msgstr "дочерний процесс завершён по сигналу %d: #: ../../common/wait_error.c:72 #, c-format msgid "child process exited with unrecognized status %d" -msgstr "дочерний процесс завершился с нераспознанным состоянием %d" +msgstr "дочерний процесс завершился с нераспознанным кодом состояния %d" #: ../../fe_utils/cancel.c:189 ../../fe_utils/cancel.c:238 msgid "Cancel request sent\n" @@ -252,8 +252,8 @@ msgid "" "You are connected to database \"%s\" as user \"%s\" on host \"%s\" (address " "\"%s\") at port \"%s\".\n" msgstr "" -"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\": " -"адрес \"%s\", порт \"%s\").\n" +"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (компьютер " +"\"%s\": адрес \"%s\", порт \"%s\").\n" #: command.c:639 #, c-format @@ -261,8 +261,8 @@ msgid "" "You are connected to database \"%s\" as user \"%s\" on host \"%s\" at port " "\"%s\".\n" msgstr "" -"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\", " -"порт \"%s\").\n" +"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (компьютер " +"\"%s\", порт \"%s\").\n" #: command.c:1030 command.c:1125 command.c:2654 #, c-format @@ -411,7 +411,7 @@ msgstr "Пароль пользователя %s: " msgid "" "Do not give user, host, or port separately when using a connection string" msgstr "" -"Не указывайте пользователя, сервер или порт отдельно, когда используете " +"Не указывайте пользователя, компьютер или порт отдельно, когда используете " "строку подключения" #: command.c:3203 @@ -454,7 +454,7 @@ msgid "" "You are now connected to database \"%s\" as user \"%s\" on host " "\"%s\" (address \"%s\") at port \"%s\".\n" msgstr "" -"Сейчас вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер " +"Сейчас вы подключены к базе данных \"%s\" как пользователь \"%s\" (компьютер " "\"%s\": адрес \"%s\", порт \"%s\").\n" #: command.c:3585 @@ -463,8 +463,8 @@ msgid "" "You are now connected to database \"%s\" as user \"%s\" on host \"%s\" at " "port \"%s\".\n" msgstr "" -"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (сервер \"%s\", " -"порт \"%s\").\n" +"Вы подключены к базе данных \"%s\" как пользователь \"%s\" (компьютер " +"\"%s\", порт \"%s\").\n" #: command.c:3590 #, c-format @@ -2757,7 +2757,8 @@ msgid "" " -h, --host=HOSTNAME database server host or socket directory " "(default: \"%s\")\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" " (по умолчанию: \"%s\")\n" #: help.c:134 @@ -3383,7 +3384,7 @@ msgid "" " \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n" " connect to new database (currently \"%s\")\n" msgstr "" -" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- СЕРВЕР|- ПОРТ|-] | conninfo}\n" +" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- КОМПЬЮТЕР|- ПОРТ|-] | conninfo}\n" " подключиться к другой базе данных\n" " (текущая: \"%s\")\n" @@ -3392,7 +3393,7 @@ msgid "" " \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n" " connect to new database (currently no connection)\n" msgstr "" -" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- СЕРВЕР|- ПОРТ|-] | conninfo}\n" +" \\c[onnect] {[БД|- ПОЛЬЗОВАТЕЛЬ|- КОМПЬЮТЕР|- ПОРТ|-] | conninfo}\n" " подключиться к другой базе данных\n" " (сейчас подключения нет)\n" @@ -3606,7 +3607,7 @@ msgid "" " the currently connected database server host\n" msgstr "" " HOST\n" -" сервер баз данных, к которому установлено подключение\n" +" компьютер с сервером баз данных, к которому установлено подключение\n" #: help.c:427 msgid "" @@ -4260,202 +4261,202 @@ msgstr "%s: нехватка памяти" #: sql_help.c:35 sql_help.c:38 sql_help.c:41 sql_help.c:65 sql_help.c:66 #: sql_help.c:68 sql_help.c:70 sql_help.c:81 sql_help.c:83 sql_help.c:85 #: sql_help.c:113 sql_help.c:119 sql_help.c:121 sql_help.c:123 sql_help.c:125 -#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:240 -#: sql_help.c:242 sql_help.c:243 sql_help.c:245 sql_help.c:247 sql_help.c:250 -#: sql_help.c:252 sql_help.c:254 sql_help.c:256 sql_help.c:268 sql_help.c:269 -#: sql_help.c:270 sql_help.c:272 sql_help.c:321 sql_help.c:323 sql_help.c:325 -#: sql_help.c:327 sql_help.c:396 sql_help.c:401 sql_help.c:403 sql_help.c:445 -#: sql_help.c:447 sql_help.c:450 sql_help.c:452 sql_help.c:521 sql_help.c:526 -#: sql_help.c:531 sql_help.c:536 sql_help.c:541 sql_help.c:595 sql_help.c:597 -#: sql_help.c:599 sql_help.c:601 sql_help.c:603 sql_help.c:606 sql_help.c:608 -#: sql_help.c:611 sql_help.c:622 sql_help.c:624 sql_help.c:668 sql_help.c:670 -#: sql_help.c:672 sql_help.c:675 sql_help.c:677 sql_help.c:679 sql_help.c:716 -#: sql_help.c:720 sql_help.c:724 sql_help.c:743 sql_help.c:746 sql_help.c:749 -#: sql_help.c:778 sql_help.c:790 sql_help.c:798 sql_help.c:801 sql_help.c:804 -#: sql_help.c:819 sql_help.c:822 sql_help.c:851 sql_help.c:856 sql_help.c:861 -#: sql_help.c:866 sql_help.c:871 sql_help.c:898 sql_help.c:900 sql_help.c:902 -#: sql_help.c:904 sql_help.c:907 sql_help.c:909 sql_help.c:956 sql_help.c:1001 -#: sql_help.c:1006 sql_help.c:1011 sql_help.c:1016 sql_help.c:1021 -#: sql_help.c:1040 sql_help.c:1051 sql_help.c:1053 sql_help.c:1073 -#: sql_help.c:1083 sql_help.c:1084 sql_help.c:1086 sql_help.c:1088 -#: sql_help.c:1100 sql_help.c:1104 sql_help.c:1106 sql_help.c:1118 -#: sql_help.c:1120 sql_help.c:1122 sql_help.c:1124 sql_help.c:1143 -#: sql_help.c:1145 sql_help.c:1149 sql_help.c:1153 sql_help.c:1157 -#: sql_help.c:1160 sql_help.c:1161 sql_help.c:1162 sql_help.c:1165 -#: sql_help.c:1168 sql_help.c:1170 sql_help.c:1309 sql_help.c:1311 -#: sql_help.c:1314 sql_help.c:1317 sql_help.c:1319 sql_help.c:1321 -#: sql_help.c:1324 sql_help.c:1327 sql_help.c:1447 sql_help.c:1449 -#: sql_help.c:1451 sql_help.c:1454 sql_help.c:1475 sql_help.c:1478 -#: sql_help.c:1481 sql_help.c:1484 sql_help.c:1488 sql_help.c:1490 -#: sql_help.c:1492 sql_help.c:1494 sql_help.c:1508 sql_help.c:1511 -#: sql_help.c:1513 sql_help.c:1515 sql_help.c:1525 sql_help.c:1527 -#: sql_help.c:1537 sql_help.c:1539 sql_help.c:1549 sql_help.c:1552 -#: sql_help.c:1575 sql_help.c:1577 sql_help.c:1579 sql_help.c:1581 -#: sql_help.c:1584 sql_help.c:1586 sql_help.c:1589 sql_help.c:1592 -#: sql_help.c:1643 sql_help.c:1686 sql_help.c:1689 sql_help.c:1691 -#: sql_help.c:1693 sql_help.c:1696 sql_help.c:1698 sql_help.c:1700 -#: sql_help.c:1703 sql_help.c:1753 sql_help.c:1769 sql_help.c:2000 -#: sql_help.c:2069 sql_help.c:2088 sql_help.c:2101 sql_help.c:2158 -#: sql_help.c:2165 sql_help.c:2175 sql_help.c:2201 sql_help.c:2232 -#: sql_help.c:2250 sql_help.c:2278 sql_help.c:2389 sql_help.c:2435 -#: sql_help.c:2460 sql_help.c:2483 sql_help.c:2487 sql_help.c:2521 -#: sql_help.c:2541 sql_help.c:2563 sql_help.c:2577 sql_help.c:2598 -#: sql_help.c:2627 sql_help.c:2662 sql_help.c:2687 sql_help.c:2734 -#: sql_help.c:3032 sql_help.c:3045 sql_help.c:3062 sql_help.c:3078 -#: sql_help.c:3118 sql_help.c:3172 sql_help.c:3176 sql_help.c:3178 -#: sql_help.c:3185 sql_help.c:3204 sql_help.c:3231 sql_help.c:3266 -#: sql_help.c:3278 sql_help.c:3287 sql_help.c:3331 sql_help.c:3345 -#: sql_help.c:3373 sql_help.c:3381 sql_help.c:3393 sql_help.c:3403 -#: sql_help.c:3411 sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 -#: sql_help.c:3444 sql_help.c:3455 sql_help.c:3463 sql_help.c:3471 -#: sql_help.c:3479 sql_help.c:3487 sql_help.c:3497 sql_help.c:3506 -#: sql_help.c:3515 sql_help.c:3523 sql_help.c:3533 sql_help.c:3544 -#: sql_help.c:3552 sql_help.c:3561 sql_help.c:3572 sql_help.c:3581 -#: sql_help.c:3589 sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 -#: sql_help.c:3621 sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 -#: sql_help.c:3653 sql_help.c:3661 sql_help.c:3678 sql_help.c:3687 -#: sql_help.c:3695 sql_help.c:3712 sql_help.c:3727 sql_help.c:4037 -#: sql_help.c:4151 sql_help.c:4180 sql_help.c:4195 sql_help.c:4698 -#: sql_help.c:4746 sql_help.c:4904 +#: sql_help.c:126 sql_help.c:129 sql_help.c:131 sql_help.c:133 sql_help.c:245 +#: sql_help.c:247 sql_help.c:248 sql_help.c:250 sql_help.c:252 sql_help.c:255 +#: sql_help.c:257 sql_help.c:259 sql_help.c:261 sql_help.c:276 sql_help.c:277 +#: sql_help.c:278 sql_help.c:280 sql_help.c:329 sql_help.c:331 sql_help.c:333 +#: sql_help.c:335 sql_help.c:404 sql_help.c:409 sql_help.c:411 sql_help.c:453 +#: sql_help.c:455 sql_help.c:458 sql_help.c:460 sql_help.c:529 sql_help.c:534 +#: sql_help.c:539 sql_help.c:544 sql_help.c:549 sql_help.c:603 sql_help.c:605 +#: sql_help.c:607 sql_help.c:609 sql_help.c:611 sql_help.c:614 sql_help.c:616 +#: sql_help.c:619 sql_help.c:630 sql_help.c:632 sql_help.c:676 sql_help.c:678 +#: sql_help.c:680 sql_help.c:683 sql_help.c:685 sql_help.c:687 sql_help.c:724 +#: sql_help.c:728 sql_help.c:732 sql_help.c:751 sql_help.c:754 sql_help.c:757 +#: sql_help.c:786 sql_help.c:798 sql_help.c:806 sql_help.c:809 sql_help.c:812 +#: sql_help.c:827 sql_help.c:830 sql_help.c:859 sql_help.c:864 sql_help.c:869 +#: sql_help.c:874 sql_help.c:879 sql_help.c:906 sql_help.c:908 sql_help.c:910 +#: sql_help.c:912 sql_help.c:915 sql_help.c:917 sql_help.c:964 sql_help.c:1009 +#: sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 sql_help.c:1029 +#: sql_help.c:1048 sql_help.c:1059 sql_help.c:1061 sql_help.c:1081 +#: sql_help.c:1091 sql_help.c:1092 sql_help.c:1094 sql_help.c:1096 +#: sql_help.c:1108 sql_help.c:1112 sql_help.c:1114 sql_help.c:1126 +#: sql_help.c:1128 sql_help.c:1130 sql_help.c:1132 sql_help.c:1151 +#: sql_help.c:1153 sql_help.c:1157 sql_help.c:1161 sql_help.c:1165 +#: sql_help.c:1168 sql_help.c:1169 sql_help.c:1170 sql_help.c:1173 +#: sql_help.c:1176 sql_help.c:1178 sql_help.c:1317 sql_help.c:1319 +#: sql_help.c:1322 sql_help.c:1325 sql_help.c:1327 sql_help.c:1329 +#: sql_help.c:1332 sql_help.c:1335 sql_help.c:1455 sql_help.c:1457 +#: sql_help.c:1459 sql_help.c:1462 sql_help.c:1483 sql_help.c:1486 +#: sql_help.c:1489 sql_help.c:1492 sql_help.c:1496 sql_help.c:1498 +#: sql_help.c:1500 sql_help.c:1502 sql_help.c:1516 sql_help.c:1519 +#: sql_help.c:1521 sql_help.c:1523 sql_help.c:1533 sql_help.c:1535 +#: sql_help.c:1545 sql_help.c:1547 sql_help.c:1557 sql_help.c:1560 +#: sql_help.c:1583 sql_help.c:1585 sql_help.c:1587 sql_help.c:1589 +#: sql_help.c:1592 sql_help.c:1594 sql_help.c:1597 sql_help.c:1600 +#: sql_help.c:1651 sql_help.c:1694 sql_help.c:1697 sql_help.c:1699 +#: sql_help.c:1701 sql_help.c:1704 sql_help.c:1706 sql_help.c:1708 +#: sql_help.c:1711 sql_help.c:1761 sql_help.c:1777 sql_help.c:2008 +#: sql_help.c:2077 sql_help.c:2096 sql_help.c:2109 sql_help.c:2166 +#: sql_help.c:2173 sql_help.c:2183 sql_help.c:2209 sql_help.c:2240 +#: sql_help.c:2258 sql_help.c:2286 sql_help.c:2397 sql_help.c:2443 +#: sql_help.c:2468 sql_help.c:2491 sql_help.c:2495 sql_help.c:2529 +#: sql_help.c:2549 sql_help.c:2571 sql_help.c:2585 sql_help.c:2606 +#: sql_help.c:2635 sql_help.c:2670 sql_help.c:2695 sql_help.c:2742 +#: sql_help.c:3040 sql_help.c:3053 sql_help.c:3070 sql_help.c:3086 +#: sql_help.c:3126 sql_help.c:3180 sql_help.c:3184 sql_help.c:3186 +#: sql_help.c:3193 sql_help.c:3212 sql_help.c:3239 sql_help.c:3274 +#: sql_help.c:3286 sql_help.c:3295 sql_help.c:3339 sql_help.c:3353 +#: sql_help.c:3381 sql_help.c:3389 sql_help.c:3401 sql_help.c:3411 +#: sql_help.c:3419 sql_help.c:3427 sql_help.c:3435 sql_help.c:3443 +#: sql_help.c:3452 sql_help.c:3463 sql_help.c:3471 sql_help.c:3479 +#: sql_help.c:3487 sql_help.c:3495 sql_help.c:3505 sql_help.c:3514 +#: sql_help.c:3523 sql_help.c:3531 sql_help.c:3541 sql_help.c:3552 +#: sql_help.c:3560 sql_help.c:3569 sql_help.c:3580 sql_help.c:3589 +#: sql_help.c:3597 sql_help.c:3605 sql_help.c:3613 sql_help.c:3621 +#: sql_help.c:3629 sql_help.c:3637 sql_help.c:3645 sql_help.c:3653 +#: sql_help.c:3661 sql_help.c:3669 sql_help.c:3686 sql_help.c:3695 +#: sql_help.c:3703 sql_help.c:3720 sql_help.c:3735 sql_help.c:4045 +#: sql_help.c:4159 sql_help.c:4188 sql_help.c:4203 sql_help.c:4706 +#: sql_help.c:4754 sql_help.c:4912 msgid "name" msgstr "имя" -#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:332 sql_help.c:1850 -#: sql_help.c:3346 sql_help.c:4466 +#: sql_help.c:36 sql_help.c:39 sql_help.c:42 sql_help.c:340 sql_help.c:1858 +#: sql_help.c:3354 sql_help.c:4474 msgid "aggregate_signature" msgstr "сигнатура_агр_функции" -#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:255 -#: sql_help.c:273 sql_help.c:404 sql_help.c:451 sql_help.c:530 sql_help.c:578 -#: sql_help.c:596 sql_help.c:623 sql_help.c:676 sql_help.c:745 sql_help.c:800 -#: sql_help.c:821 sql_help.c:860 sql_help.c:910 sql_help.c:957 sql_help.c:1010 -#: sql_help.c:1042 sql_help.c:1052 sql_help.c:1087 sql_help.c:1107 -#: sql_help.c:1121 sql_help.c:1171 sql_help.c:1318 sql_help.c:1448 -#: sql_help.c:1491 sql_help.c:1512 sql_help.c:1526 sql_help.c:1538 -#: sql_help.c:1551 sql_help.c:1578 sql_help.c:1644 sql_help.c:1697 +#: sql_help.c:37 sql_help.c:67 sql_help.c:82 sql_help.c:120 sql_help.c:260 +#: sql_help.c:281 sql_help.c:412 sql_help.c:459 sql_help.c:538 sql_help.c:586 +#: sql_help.c:604 sql_help.c:631 sql_help.c:684 sql_help.c:753 sql_help.c:808 +#: sql_help.c:829 sql_help.c:868 sql_help.c:918 sql_help.c:965 sql_help.c:1018 +#: sql_help.c:1050 sql_help.c:1060 sql_help.c:1095 sql_help.c:1115 +#: sql_help.c:1129 sql_help.c:1179 sql_help.c:1326 sql_help.c:1456 +#: sql_help.c:1499 sql_help.c:1520 sql_help.c:1534 sql_help.c:1546 +#: sql_help.c:1559 sql_help.c:1586 sql_help.c:1652 sql_help.c:1705 msgid "new_name" msgstr "новое_имя" -#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:253 -#: sql_help.c:271 sql_help.c:402 sql_help.c:487 sql_help.c:535 sql_help.c:625 -#: sql_help.c:634 sql_help.c:699 sql_help.c:719 sql_help.c:748 sql_help.c:803 -#: sql_help.c:865 sql_help.c:908 sql_help.c:1015 sql_help.c:1054 -#: sql_help.c:1085 sql_help.c:1105 sql_help.c:1119 sql_help.c:1169 -#: sql_help.c:1382 sql_help.c:1450 sql_help.c:1493 sql_help.c:1514 -#: sql_help.c:1576 sql_help.c:1692 sql_help.c:3018 +#: sql_help.c:40 sql_help.c:69 sql_help.c:84 sql_help.c:122 sql_help.c:258 +#: sql_help.c:279 sql_help.c:410 sql_help.c:495 sql_help.c:543 sql_help.c:633 +#: sql_help.c:642 sql_help.c:707 sql_help.c:727 sql_help.c:756 sql_help.c:811 +#: sql_help.c:873 sql_help.c:916 sql_help.c:1023 sql_help.c:1062 +#: sql_help.c:1093 sql_help.c:1113 sql_help.c:1127 sql_help.c:1177 +#: sql_help.c:1390 sql_help.c:1458 sql_help.c:1501 sql_help.c:1522 +#: sql_help.c:1584 sql_help.c:1700 sql_help.c:3026 msgid "new_owner" msgstr "новый_владелец" -#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:257 sql_help.c:324 -#: sql_help.c:453 sql_help.c:540 sql_help.c:678 sql_help.c:723 sql_help.c:751 -#: sql_help.c:806 sql_help.c:870 sql_help.c:1020 sql_help.c:1089 -#: sql_help.c:1123 sql_help.c:1320 sql_help.c:1495 sql_help.c:1516 -#: sql_help.c:1528 sql_help.c:1540 sql_help.c:1580 sql_help.c:1699 +#: sql_help.c:43 sql_help.c:71 sql_help.c:86 sql_help.c:262 sql_help.c:332 +#: sql_help.c:461 sql_help.c:548 sql_help.c:686 sql_help.c:731 sql_help.c:759 +#: sql_help.c:814 sql_help.c:878 sql_help.c:1028 sql_help.c:1097 +#: sql_help.c:1131 sql_help.c:1328 sql_help.c:1503 sql_help.c:1524 +#: sql_help.c:1536 sql_help.c:1548 sql_help.c:1588 sql_help.c:1707 msgid "new_schema" msgstr "новая_схема" -#: sql_help.c:44 sql_help.c:1914 sql_help.c:3347 sql_help.c:4495 +#: sql_help.c:44 sql_help.c:1922 sql_help.c:3355 sql_help.c:4503 msgid "where aggregate_signature is:" msgstr "где сигнатура_агр_функции:" -#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:342 sql_help.c:355 -#: sql_help.c:359 sql_help.c:375 sql_help.c:378 sql_help.c:381 sql_help.c:522 -#: sql_help.c:527 sql_help.c:532 sql_help.c:537 sql_help.c:542 sql_help.c:852 -#: sql_help.c:857 sql_help.c:862 sql_help.c:867 sql_help.c:872 sql_help.c:1002 -#: sql_help.c:1007 sql_help.c:1012 sql_help.c:1017 sql_help.c:1022 -#: sql_help.c:1868 sql_help.c:1885 sql_help.c:1891 sql_help.c:1915 -#: sql_help.c:1918 sql_help.c:1921 sql_help.c:2070 sql_help.c:2089 -#: sql_help.c:2092 sql_help.c:2390 sql_help.c:2599 sql_help.c:3348 -#: sql_help.c:3351 sql_help.c:3354 sql_help.c:3445 sql_help.c:3534 -#: sql_help.c:3562 sql_help.c:3912 sql_help.c:4365 sql_help.c:4472 -#: sql_help.c:4479 sql_help.c:4485 sql_help.c:4496 sql_help.c:4499 -#: sql_help.c:4502 +#: sql_help.c:45 sql_help.c:48 sql_help.c:51 sql_help.c:350 sql_help.c:363 +#: sql_help.c:367 sql_help.c:383 sql_help.c:386 sql_help.c:389 sql_help.c:530 +#: sql_help.c:535 sql_help.c:540 sql_help.c:545 sql_help.c:550 sql_help.c:860 +#: sql_help.c:865 sql_help.c:870 sql_help.c:875 sql_help.c:880 sql_help.c:1010 +#: sql_help.c:1015 sql_help.c:1020 sql_help.c:1025 sql_help.c:1030 +#: sql_help.c:1876 sql_help.c:1893 sql_help.c:1899 sql_help.c:1923 +#: sql_help.c:1926 sql_help.c:1929 sql_help.c:2078 sql_help.c:2097 +#: sql_help.c:2100 sql_help.c:2398 sql_help.c:2607 sql_help.c:3356 +#: sql_help.c:3359 sql_help.c:3362 sql_help.c:3453 sql_help.c:3542 +#: sql_help.c:3570 sql_help.c:3920 sql_help.c:4373 sql_help.c:4480 +#: sql_help.c:4487 sql_help.c:4493 sql_help.c:4504 sql_help.c:4507 +#: sql_help.c:4510 msgid "argmode" msgstr "режим_аргумента" -#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:343 sql_help.c:356 -#: sql_help.c:360 sql_help.c:376 sql_help.c:379 sql_help.c:382 sql_help.c:523 -#: sql_help.c:528 sql_help.c:533 sql_help.c:538 sql_help.c:543 sql_help.c:853 -#: sql_help.c:858 sql_help.c:863 sql_help.c:868 sql_help.c:873 sql_help.c:1003 -#: sql_help.c:1008 sql_help.c:1013 sql_help.c:1018 sql_help.c:1023 -#: sql_help.c:1869 sql_help.c:1886 sql_help.c:1892 sql_help.c:1916 -#: sql_help.c:1919 sql_help.c:1922 sql_help.c:2071 sql_help.c:2090 -#: sql_help.c:2093 sql_help.c:2391 sql_help.c:2600 sql_help.c:3349 -#: sql_help.c:3352 sql_help.c:3355 sql_help.c:3446 sql_help.c:3535 -#: sql_help.c:3563 sql_help.c:4473 sql_help.c:4480 sql_help.c:4486 -#: sql_help.c:4497 sql_help.c:4500 sql_help.c:4503 +#: sql_help.c:46 sql_help.c:49 sql_help.c:52 sql_help.c:351 sql_help.c:364 +#: sql_help.c:368 sql_help.c:384 sql_help.c:387 sql_help.c:390 sql_help.c:531 +#: sql_help.c:536 sql_help.c:541 sql_help.c:546 sql_help.c:551 sql_help.c:861 +#: sql_help.c:866 sql_help.c:871 sql_help.c:876 sql_help.c:881 sql_help.c:1011 +#: sql_help.c:1016 sql_help.c:1021 sql_help.c:1026 sql_help.c:1031 +#: sql_help.c:1877 sql_help.c:1894 sql_help.c:1900 sql_help.c:1924 +#: sql_help.c:1927 sql_help.c:1930 sql_help.c:2079 sql_help.c:2098 +#: sql_help.c:2101 sql_help.c:2399 sql_help.c:2608 sql_help.c:3357 +#: sql_help.c:3360 sql_help.c:3363 sql_help.c:3454 sql_help.c:3543 +#: sql_help.c:3571 sql_help.c:4481 sql_help.c:4488 sql_help.c:4494 +#: sql_help.c:4505 sql_help.c:4508 sql_help.c:4511 msgid "argname" msgstr "имя_аргумента" -#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:344 sql_help.c:357 -#: sql_help.c:361 sql_help.c:377 sql_help.c:380 sql_help.c:383 sql_help.c:524 -#: sql_help.c:529 sql_help.c:534 sql_help.c:539 sql_help.c:544 sql_help.c:854 -#: sql_help.c:859 sql_help.c:864 sql_help.c:869 sql_help.c:874 sql_help.c:1004 -#: sql_help.c:1009 sql_help.c:1014 sql_help.c:1019 sql_help.c:1024 -#: sql_help.c:1870 sql_help.c:1887 sql_help.c:1893 sql_help.c:1917 -#: sql_help.c:1920 sql_help.c:1923 sql_help.c:2392 sql_help.c:2601 -#: sql_help.c:3350 sql_help.c:3353 sql_help.c:3356 sql_help.c:3447 -#: sql_help.c:3536 sql_help.c:3564 sql_help.c:4474 sql_help.c:4481 -#: sql_help.c:4487 sql_help.c:4498 sql_help.c:4501 sql_help.c:4504 +#: sql_help.c:47 sql_help.c:50 sql_help.c:53 sql_help.c:352 sql_help.c:365 +#: sql_help.c:369 sql_help.c:385 sql_help.c:388 sql_help.c:391 sql_help.c:532 +#: sql_help.c:537 sql_help.c:542 sql_help.c:547 sql_help.c:552 sql_help.c:862 +#: sql_help.c:867 sql_help.c:872 sql_help.c:877 sql_help.c:882 sql_help.c:1012 +#: sql_help.c:1017 sql_help.c:1022 sql_help.c:1027 sql_help.c:1032 +#: sql_help.c:1878 sql_help.c:1895 sql_help.c:1901 sql_help.c:1925 +#: sql_help.c:1928 sql_help.c:1931 sql_help.c:2400 sql_help.c:2609 +#: sql_help.c:3358 sql_help.c:3361 sql_help.c:3364 sql_help.c:3455 +#: sql_help.c:3544 sql_help.c:3572 sql_help.c:4482 sql_help.c:4489 +#: sql_help.c:4495 sql_help.c:4506 sql_help.c:4509 sql_help.c:4512 msgid "argtype" msgstr "тип_аргумента" -#: sql_help.c:114 sql_help.c:399 sql_help.c:476 sql_help.c:488 sql_help.c:951 -#: sql_help.c:1102 sql_help.c:1509 sql_help.c:1638 sql_help.c:1670 -#: sql_help.c:1722 sql_help.c:1785 sql_help.c:1971 sql_help.c:1978 -#: sql_help.c:2281 sql_help.c:2331 sql_help.c:2338 sql_help.c:2347 -#: sql_help.c:2436 sql_help.c:2663 sql_help.c:2756 sql_help.c:3047 -#: sql_help.c:3232 sql_help.c:3254 sql_help.c:3394 sql_help.c:3749 -#: sql_help.c:3956 sql_help.c:4194 sql_help.c:4967 +#: sql_help.c:114 sql_help.c:407 sql_help.c:484 sql_help.c:496 sql_help.c:959 +#: sql_help.c:1110 sql_help.c:1517 sql_help.c:1646 sql_help.c:1678 +#: sql_help.c:1730 sql_help.c:1793 sql_help.c:1979 sql_help.c:1986 +#: sql_help.c:2289 sql_help.c:2339 sql_help.c:2346 sql_help.c:2355 +#: sql_help.c:2444 sql_help.c:2671 sql_help.c:2764 sql_help.c:3055 +#: sql_help.c:3240 sql_help.c:3262 sql_help.c:3402 sql_help.c:3757 +#: sql_help.c:3964 sql_help.c:4202 sql_help.c:4975 msgid "option" msgstr "параметр" -#: sql_help.c:115 sql_help.c:952 sql_help.c:1639 sql_help.c:2437 -#: sql_help.c:2664 sql_help.c:3233 sql_help.c:3395 +#: sql_help.c:115 sql_help.c:960 sql_help.c:1647 sql_help.c:2445 +#: sql_help.c:2672 sql_help.c:3241 sql_help.c:3403 msgid "where option can be:" msgstr "где допустимые параметры:" -#: sql_help.c:116 sql_help.c:2213 +#: sql_help.c:116 sql_help.c:2221 msgid "allowconn" msgstr "разр_подключения" -#: sql_help.c:117 sql_help.c:953 sql_help.c:1640 sql_help.c:2214 -#: sql_help.c:2438 sql_help.c:2665 sql_help.c:3234 +#: sql_help.c:117 sql_help.c:961 sql_help.c:1648 sql_help.c:2222 +#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 msgid "connlimit" msgstr "предел_подключений" -#: sql_help.c:118 sql_help.c:2215 +#: sql_help.c:118 sql_help.c:2223 msgid "istemplate" msgstr "это_шаблон" -#: sql_help.c:124 sql_help.c:613 sql_help.c:681 sql_help.c:695 sql_help.c:1323 -#: sql_help.c:1375 sql_help.c:4198 +#: sql_help.c:124 sql_help.c:621 sql_help.c:689 sql_help.c:703 sql_help.c:1331 +#: sql_help.c:1383 sql_help.c:4206 msgid "new_tablespace" msgstr "новое_табл_пространство" -#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:550 sql_help.c:552 -#: sql_help.c:553 sql_help.c:877 sql_help.c:879 sql_help.c:880 sql_help.c:960 -#: sql_help.c:964 sql_help.c:967 sql_help.c:1029 sql_help.c:1031 -#: sql_help.c:1032 sql_help.c:1182 sql_help.c:1184 sql_help.c:1647 -#: sql_help.c:1651 sql_help.c:1654 sql_help.c:2402 sql_help.c:2605 -#: sql_help.c:3924 sql_help.c:4216 sql_help.c:4377 sql_help.c:4686 +#: sql_help.c:127 sql_help.c:130 sql_help.c:132 sql_help.c:558 sql_help.c:560 +#: sql_help.c:561 sql_help.c:885 sql_help.c:887 sql_help.c:888 sql_help.c:968 +#: sql_help.c:972 sql_help.c:975 sql_help.c:1037 sql_help.c:1039 +#: sql_help.c:1040 sql_help.c:1190 sql_help.c:1192 sql_help.c:1655 +#: sql_help.c:1659 sql_help.c:1662 sql_help.c:2410 sql_help.c:2613 +#: sql_help.c:3932 sql_help.c:4224 sql_help.c:4385 sql_help.c:4694 msgid "configuration_parameter" msgstr "параметр_конфигурации" -#: sql_help.c:128 sql_help.c:400 sql_help.c:471 sql_help.c:477 sql_help.c:489 -#: sql_help.c:551 sql_help.c:605 sql_help.c:687 sql_help.c:697 sql_help.c:878 -#: sql_help.c:906 sql_help.c:961 sql_help.c:1030 sql_help.c:1103 -#: sql_help.c:1148 sql_help.c:1152 sql_help.c:1156 sql_help.c:1159 -#: sql_help.c:1164 sql_help.c:1167 sql_help.c:1183 sql_help.c:1354 -#: sql_help.c:1377 sql_help.c:1425 sql_help.c:1433 sql_help.c:1453 -#: sql_help.c:1510 sql_help.c:1594 sql_help.c:1648 sql_help.c:1671 -#: sql_help.c:2282 sql_help.c:2332 sql_help.c:2339 sql_help.c:2348 -#: sql_help.c:2403 sql_help.c:2404 sql_help.c:2468 sql_help.c:2471 -#: sql_help.c:2505 sql_help.c:2606 sql_help.c:2607 sql_help.c:2630 -#: sql_help.c:2757 sql_help.c:2796 sql_help.c:2906 sql_help.c:2919 -#: sql_help.c:2933 sql_help.c:2974 sql_help.c:2982 sql_help.c:3004 -#: sql_help.c:3021 sql_help.c:3048 sql_help.c:3255 sql_help.c:3957 -#: sql_help.c:4687 sql_help.c:4688 sql_help.c:4689 sql_help.c:4690 +#: sql_help.c:128 sql_help.c:408 sql_help.c:479 sql_help.c:485 sql_help.c:497 +#: sql_help.c:559 sql_help.c:613 sql_help.c:695 sql_help.c:705 sql_help.c:886 +#: sql_help.c:914 sql_help.c:969 sql_help.c:1038 sql_help.c:1111 +#: sql_help.c:1156 sql_help.c:1160 sql_help.c:1164 sql_help.c:1167 +#: sql_help.c:1172 sql_help.c:1175 sql_help.c:1191 sql_help.c:1362 +#: sql_help.c:1385 sql_help.c:1433 sql_help.c:1441 sql_help.c:1461 +#: sql_help.c:1518 sql_help.c:1602 sql_help.c:1656 sql_help.c:1679 +#: sql_help.c:2290 sql_help.c:2340 sql_help.c:2347 sql_help.c:2356 +#: sql_help.c:2411 sql_help.c:2412 sql_help.c:2476 sql_help.c:2479 +#: sql_help.c:2513 sql_help.c:2614 sql_help.c:2615 sql_help.c:2638 +#: sql_help.c:2765 sql_help.c:2804 sql_help.c:2914 sql_help.c:2927 +#: sql_help.c:2941 sql_help.c:2982 sql_help.c:2990 sql_help.c:3012 +#: sql_help.c:3029 sql_help.c:3056 sql_help.c:3263 sql_help.c:3965 +#: sql_help.c:4695 sql_help.c:4696 sql_help.c:4697 sql_help.c:4698 msgid "value" msgstr "значение" @@ -4463,10 +4464,10 @@ msgstr "значение" msgid "target_role" msgstr "целевая_роль" -#: sql_help.c:203 sql_help.c:915 sql_help.c:2266 sql_help.c:2635 -#: sql_help.c:2712 sql_help.c:2717 sql_help.c:3887 sql_help.c:3896 -#: sql_help.c:3915 sql_help.c:3927 sql_help.c:4340 sql_help.c:4349 -#: sql_help.c:4368 sql_help.c:4380 +#: sql_help.c:203 sql_help.c:923 sql_help.c:2274 sql_help.c:2643 +#: sql_help.c:2720 sql_help.c:2725 sql_help.c:3895 sql_help.c:3904 +#: sql_help.c:3923 sql_help.c:3935 sql_help.c:4348 sql_help.c:4357 +#: sql_help.c:4376 sql_help.c:4388 msgid "schema_name" msgstr "имя_схемы" @@ -4480,2165 +4481,2169 @@ msgstr "где допустимое предложение_GRANT_или_REVOKE:" #: sql_help.c:206 sql_help.c:207 sql_help.c:208 sql_help.c:209 sql_help.c:210 #: sql_help.c:211 sql_help.c:212 sql_help.c:213 sql_help.c:214 sql_help.c:215 -#: sql_help.c:576 sql_help.c:612 sql_help.c:680 sql_help.c:824 sql_help.c:971 -#: sql_help.c:1322 sql_help.c:1658 sql_help.c:2441 sql_help.c:2442 -#: sql_help.c:2443 sql_help.c:2444 sql_help.c:2445 sql_help.c:2579 -#: sql_help.c:2668 sql_help.c:2669 sql_help.c:2670 sql_help.c:2671 -#: sql_help.c:2672 sql_help.c:3237 sql_help.c:3238 sql_help.c:3239 -#: sql_help.c:3240 sql_help.c:3241 sql_help.c:3936 sql_help.c:3940 -#: sql_help.c:4389 sql_help.c:4393 sql_help.c:4708 +#: sql_help.c:584 sql_help.c:620 sql_help.c:688 sql_help.c:832 sql_help.c:979 +#: sql_help.c:1330 sql_help.c:1666 sql_help.c:2449 sql_help.c:2450 +#: sql_help.c:2451 sql_help.c:2452 sql_help.c:2453 sql_help.c:2587 +#: sql_help.c:2676 sql_help.c:2677 sql_help.c:2678 sql_help.c:2679 +#: sql_help.c:2680 sql_help.c:3245 sql_help.c:3246 sql_help.c:3247 +#: sql_help.c:3248 sql_help.c:3249 sql_help.c:3944 sql_help.c:3948 +#: sql_help.c:4397 sql_help.c:4401 sql_help.c:4716 msgid "role_name" msgstr "имя_роли" -#: sql_help.c:241 sql_help.c:464 sql_help.c:914 sql_help.c:1338 sql_help.c:1340 -#: sql_help.c:1392 sql_help.c:1404 sql_help.c:1429 sql_help.c:1688 -#: sql_help.c:2235 sql_help.c:2239 sql_help.c:2351 sql_help.c:2356 -#: sql_help.c:2464 sql_help.c:2634 sql_help.c:2773 sql_help.c:2778 -#: sql_help.c:2780 sql_help.c:2901 sql_help.c:2914 sql_help.c:2928 -#: sql_help.c:2937 sql_help.c:2949 sql_help.c:2978 sql_help.c:3988 -#: sql_help.c:4003 sql_help.c:4005 sql_help.c:4094 sql_help.c:4097 -#: sql_help.c:4099 sql_help.c:4559 sql_help.c:4560 sql_help.c:4569 -#: sql_help.c:4616 sql_help.c:4617 sql_help.c:4618 sql_help.c:4619 -#: sql_help.c:4620 sql_help.c:4621 sql_help.c:4661 sql_help.c:4662 -#: sql_help.c:4667 sql_help.c:4672 sql_help.c:4816 sql_help.c:4817 -#: sql_help.c:4826 sql_help.c:4873 sql_help.c:4874 sql_help.c:4875 -#: sql_help.c:4876 sql_help.c:4877 sql_help.c:4878 sql_help.c:4932 -#: sql_help.c:4934 sql_help.c:4994 sql_help.c:5054 sql_help.c:5055 -#: sql_help.c:5064 sql_help.c:5111 sql_help.c:5112 sql_help.c:5113 -#: sql_help.c:5114 sql_help.c:5115 sql_help.c:5116 +#: sql_help.c:246 sql_help.c:265 sql_help.c:472 sql_help.c:922 sql_help.c:1346 +#: sql_help.c:1348 sql_help.c:1400 sql_help.c:1412 sql_help.c:1437 +#: sql_help.c:1696 sql_help.c:2243 sql_help.c:2247 sql_help.c:2359 +#: sql_help.c:2364 sql_help.c:2472 sql_help.c:2642 sql_help.c:2781 +#: sql_help.c:2786 sql_help.c:2788 sql_help.c:2909 sql_help.c:2922 +#: sql_help.c:2936 sql_help.c:2945 sql_help.c:2957 sql_help.c:2986 +#: sql_help.c:3996 sql_help.c:4011 sql_help.c:4013 sql_help.c:4102 +#: sql_help.c:4105 sql_help.c:4107 sql_help.c:4567 sql_help.c:4568 +#: sql_help.c:4577 sql_help.c:4624 sql_help.c:4625 sql_help.c:4626 +#: sql_help.c:4627 sql_help.c:4628 sql_help.c:4629 sql_help.c:4669 +#: sql_help.c:4670 sql_help.c:4675 sql_help.c:4680 sql_help.c:4824 +#: sql_help.c:4825 sql_help.c:4834 sql_help.c:4881 sql_help.c:4882 +#: sql_help.c:4883 sql_help.c:4884 sql_help.c:4885 sql_help.c:4886 +#: sql_help.c:4940 sql_help.c:4942 sql_help.c:5002 sql_help.c:5062 +#: sql_help.c:5063 sql_help.c:5072 sql_help.c:5119 sql_help.c:5120 +#: sql_help.c:5121 sql_help.c:5122 sql_help.c:5123 sql_help.c:5124 msgid "expression" msgstr "выражение" -#: sql_help.c:244 +#: sql_help.c:249 msgid "domain_constraint" msgstr "ограничение_домена" -#: sql_help.c:246 sql_help.c:248 sql_help.c:251 sql_help.c:479 sql_help.c:480 -#: sql_help.c:1315 sql_help.c:1362 sql_help.c:1363 sql_help.c:1364 -#: sql_help.c:1391 sql_help.c:1403 sql_help.c:1420 sql_help.c:1856 -#: sql_help.c:1858 sql_help.c:2238 sql_help.c:2350 sql_help.c:2355 -#: sql_help.c:2936 sql_help.c:2948 sql_help.c:4000 +#: sql_help.c:251 sql_help.c:253 sql_help.c:256 sql_help.c:264 sql_help.c:487 +#: sql_help.c:488 sql_help.c:1323 sql_help.c:1370 sql_help.c:1371 +#: sql_help.c:1372 sql_help.c:1399 sql_help.c:1411 sql_help.c:1428 +#: sql_help.c:1864 sql_help.c:1866 sql_help.c:2246 sql_help.c:2358 +#: sql_help.c:2363 sql_help.c:2944 sql_help.c:2956 sql_help.c:4008 msgid "constraint_name" msgstr "имя_ограничения" -#: sql_help.c:249 sql_help.c:1316 +#: sql_help.c:254 sql_help.c:1324 msgid "new_constraint_name" msgstr "имя_нового_ограничения" -#: sql_help.c:322 sql_help.c:1101 +#: sql_help.c:263 +msgid "where domain_constraint is:" +msgstr "где ограничение_домена может быть следующим:" + +#: sql_help.c:330 sql_help.c:1109 msgid "new_version" msgstr "новая_версия" -#: sql_help.c:326 sql_help.c:328 +#: sql_help.c:334 sql_help.c:336 msgid "member_object" msgstr "элемент_объект" -#: sql_help.c:329 +#: sql_help.c:337 msgid "where member_object is:" msgstr "где элемент_объект:" -#: sql_help.c:330 sql_help.c:335 sql_help.c:336 sql_help.c:337 sql_help.c:338 -#: sql_help.c:339 sql_help.c:340 sql_help.c:345 sql_help.c:349 sql_help.c:351 -#: sql_help.c:353 sql_help.c:362 sql_help.c:363 sql_help.c:364 sql_help.c:365 -#: sql_help.c:366 sql_help.c:367 sql_help.c:368 sql_help.c:369 sql_help.c:372 -#: sql_help.c:373 sql_help.c:1848 sql_help.c:1853 sql_help.c:1860 -#: sql_help.c:1861 sql_help.c:1862 sql_help.c:1863 sql_help.c:1864 -#: sql_help.c:1865 sql_help.c:1866 sql_help.c:1871 sql_help.c:1873 -#: sql_help.c:1877 sql_help.c:1879 sql_help.c:1883 sql_help.c:1888 -#: sql_help.c:1889 sql_help.c:1896 sql_help.c:1897 sql_help.c:1898 -#: sql_help.c:1899 sql_help.c:1900 sql_help.c:1901 sql_help.c:1902 -#: sql_help.c:1903 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 -#: sql_help.c:1911 sql_help.c:1912 sql_help.c:4462 sql_help.c:4467 -#: sql_help.c:4468 sql_help.c:4469 sql_help.c:4470 sql_help.c:4476 -#: sql_help.c:4477 sql_help.c:4482 sql_help.c:4483 sql_help.c:4488 -#: sql_help.c:4489 sql_help.c:4490 sql_help.c:4491 sql_help.c:4492 -#: sql_help.c:4493 +#: sql_help.c:338 sql_help.c:343 sql_help.c:344 sql_help.c:345 sql_help.c:346 +#: sql_help.c:347 sql_help.c:348 sql_help.c:353 sql_help.c:357 sql_help.c:359 +#: sql_help.c:361 sql_help.c:370 sql_help.c:371 sql_help.c:372 sql_help.c:373 +#: sql_help.c:374 sql_help.c:375 sql_help.c:376 sql_help.c:377 sql_help.c:380 +#: sql_help.c:381 sql_help.c:1856 sql_help.c:1861 sql_help.c:1868 +#: sql_help.c:1869 sql_help.c:1870 sql_help.c:1871 sql_help.c:1872 +#: sql_help.c:1873 sql_help.c:1874 sql_help.c:1879 sql_help.c:1881 +#: sql_help.c:1885 sql_help.c:1887 sql_help.c:1891 sql_help.c:1896 +#: sql_help.c:1897 sql_help.c:1904 sql_help.c:1905 sql_help.c:1906 +#: sql_help.c:1907 sql_help.c:1908 sql_help.c:1909 sql_help.c:1910 +#: sql_help.c:1911 sql_help.c:1912 sql_help.c:1913 sql_help.c:1914 +#: sql_help.c:1919 sql_help.c:1920 sql_help.c:4470 sql_help.c:4475 +#: sql_help.c:4476 sql_help.c:4477 sql_help.c:4478 sql_help.c:4484 +#: sql_help.c:4485 sql_help.c:4490 sql_help.c:4491 sql_help.c:4496 +#: sql_help.c:4497 sql_help.c:4498 sql_help.c:4499 sql_help.c:4500 +#: sql_help.c:4501 msgid "object_name" msgstr "имя_объекта" # well-spelled: агр -#: sql_help.c:331 sql_help.c:1849 sql_help.c:4465 +#: sql_help.c:339 sql_help.c:1857 sql_help.c:4473 msgid "aggregate_name" msgstr "имя_агр_функции" -#: sql_help.c:333 sql_help.c:1851 sql_help.c:2135 sql_help.c:2139 -#: sql_help.c:2141 sql_help.c:3364 +#: sql_help.c:341 sql_help.c:1859 sql_help.c:2143 sql_help.c:2147 +#: sql_help.c:2149 sql_help.c:3372 msgid "source_type" msgstr "исходный_тип" -#: sql_help.c:334 sql_help.c:1852 sql_help.c:2136 sql_help.c:2140 -#: sql_help.c:2142 sql_help.c:3365 +#: sql_help.c:342 sql_help.c:1860 sql_help.c:2144 sql_help.c:2148 +#: sql_help.c:2150 sql_help.c:3373 msgid "target_type" msgstr "целевой_тип" -#: sql_help.c:341 sql_help.c:788 sql_help.c:1867 sql_help.c:2137 -#: sql_help.c:2178 sql_help.c:2254 sql_help.c:2522 sql_help.c:2553 -#: sql_help.c:3124 sql_help.c:4364 sql_help.c:4471 sql_help.c:4588 -#: sql_help.c:4592 sql_help.c:4596 sql_help.c:4599 sql_help.c:4845 -#: sql_help.c:4849 sql_help.c:4853 sql_help.c:4856 sql_help.c:5083 -#: sql_help.c:5087 sql_help.c:5091 sql_help.c:5094 +#: sql_help.c:349 sql_help.c:796 sql_help.c:1875 sql_help.c:2145 +#: sql_help.c:2186 sql_help.c:2262 sql_help.c:2530 sql_help.c:2561 +#: sql_help.c:3132 sql_help.c:4372 sql_help.c:4479 sql_help.c:4596 +#: sql_help.c:4600 sql_help.c:4604 sql_help.c:4607 sql_help.c:4853 +#: sql_help.c:4857 sql_help.c:4861 sql_help.c:4864 sql_help.c:5091 +#: sql_help.c:5095 sql_help.c:5099 sql_help.c:5102 msgid "function_name" msgstr "имя_функции" -#: sql_help.c:346 sql_help.c:781 sql_help.c:1874 sql_help.c:2546 +#: sql_help.c:354 sql_help.c:789 sql_help.c:1882 sql_help.c:2554 msgid "operator_name" msgstr "имя_оператора" -#: sql_help.c:347 sql_help.c:717 sql_help.c:721 sql_help.c:725 sql_help.c:1875 -#: sql_help.c:2523 sql_help.c:3488 +#: sql_help.c:355 sql_help.c:725 sql_help.c:729 sql_help.c:733 sql_help.c:1883 +#: sql_help.c:2531 sql_help.c:3496 msgid "left_type" msgstr "тип_слева" -#: sql_help.c:348 sql_help.c:718 sql_help.c:722 sql_help.c:726 sql_help.c:1876 -#: sql_help.c:2524 sql_help.c:3489 +#: sql_help.c:356 sql_help.c:726 sql_help.c:730 sql_help.c:734 sql_help.c:1884 +#: sql_help.c:2532 sql_help.c:3497 msgid "right_type" msgstr "тип_справа" -#: sql_help.c:350 sql_help.c:352 sql_help.c:744 sql_help.c:747 sql_help.c:750 -#: sql_help.c:779 sql_help.c:791 sql_help.c:799 sql_help.c:802 sql_help.c:805 -#: sql_help.c:1409 sql_help.c:1878 sql_help.c:1880 sql_help.c:2543 -#: sql_help.c:2564 sql_help.c:2954 sql_help.c:3498 sql_help.c:3507 +#: sql_help.c:358 sql_help.c:360 sql_help.c:752 sql_help.c:755 sql_help.c:758 +#: sql_help.c:787 sql_help.c:799 sql_help.c:807 sql_help.c:810 sql_help.c:813 +#: sql_help.c:1417 sql_help.c:1886 sql_help.c:1888 sql_help.c:2551 +#: sql_help.c:2572 sql_help.c:2962 sql_help.c:3506 sql_help.c:3515 msgid "index_method" msgstr "метод_индекса" -#: sql_help.c:354 sql_help.c:1884 sql_help.c:4478 +#: sql_help.c:362 sql_help.c:1892 sql_help.c:4486 msgid "procedure_name" msgstr "имя_процедуры" -#: sql_help.c:358 sql_help.c:1890 sql_help.c:3911 sql_help.c:4484 +#: sql_help.c:366 sql_help.c:1898 sql_help.c:3919 sql_help.c:4492 msgid "routine_name" msgstr "имя_подпрограммы" -#: sql_help.c:370 sql_help.c:1381 sql_help.c:1907 sql_help.c:2398 -#: sql_help.c:2604 sql_help.c:2909 sql_help.c:3091 sql_help.c:3669 -#: sql_help.c:3933 sql_help.c:4386 +#: sql_help.c:378 sql_help.c:1389 sql_help.c:1915 sql_help.c:2406 +#: sql_help.c:2612 sql_help.c:2917 sql_help.c:3099 sql_help.c:3677 +#: sql_help.c:3941 sql_help.c:4394 msgid "type_name" msgstr "имя_типа" -#: sql_help.c:371 sql_help.c:1908 sql_help.c:2397 sql_help.c:2603 -#: sql_help.c:3092 sql_help.c:3322 sql_help.c:3670 sql_help.c:3918 -#: sql_help.c:4371 +#: sql_help.c:379 sql_help.c:1916 sql_help.c:2405 sql_help.c:2611 +#: sql_help.c:3100 sql_help.c:3330 sql_help.c:3678 sql_help.c:3926 +#: sql_help.c:4379 msgid "lang_name" msgstr "имя_языка" -#: sql_help.c:374 +#: sql_help.c:382 msgid "and aggregate_signature is:" msgstr "и сигнатура_агр_функции:" -#: sql_help.c:397 sql_help.c:2002 sql_help.c:2279 +#: sql_help.c:405 sql_help.c:2010 sql_help.c:2287 msgid "handler_function" msgstr "функция_обработчик" -#: sql_help.c:398 sql_help.c:2280 +#: sql_help.c:406 sql_help.c:2288 msgid "validator_function" msgstr "функция_проверки" -#: sql_help.c:446 sql_help.c:525 sql_help.c:669 sql_help.c:855 sql_help.c:1005 -#: sql_help.c:1310 sql_help.c:1585 +#: sql_help.c:454 sql_help.c:533 sql_help.c:677 sql_help.c:863 sql_help.c:1013 +#: sql_help.c:1318 sql_help.c:1593 msgid "action" msgstr "действие" -#: sql_help.c:448 sql_help.c:455 sql_help.c:459 sql_help.c:460 sql_help.c:463 -#: sql_help.c:465 sql_help.c:466 sql_help.c:467 sql_help.c:469 sql_help.c:472 -#: sql_help.c:474 sql_help.c:475 sql_help.c:673 sql_help.c:683 sql_help.c:685 -#: sql_help.c:688 sql_help.c:690 sql_help.c:691 sql_help.c:913 sql_help.c:1082 -#: sql_help.c:1312 sql_help.c:1330 sql_help.c:1334 sql_help.c:1335 -#: sql_help.c:1339 sql_help.c:1341 sql_help.c:1342 sql_help.c:1343 -#: sql_help.c:1344 sql_help.c:1346 sql_help.c:1349 sql_help.c:1350 -#: sql_help.c:1352 sql_help.c:1355 sql_help.c:1357 sql_help.c:1358 -#: sql_help.c:1405 sql_help.c:1407 sql_help.c:1414 sql_help.c:1423 -#: sql_help.c:1428 sql_help.c:1435 sql_help.c:1436 sql_help.c:1687 -#: sql_help.c:1690 sql_help.c:1694 sql_help.c:1730 sql_help.c:1855 -#: sql_help.c:1968 sql_help.c:1974 sql_help.c:1987 sql_help.c:1988 -#: sql_help.c:1989 sql_help.c:2329 sql_help.c:2342 sql_help.c:2395 -#: sql_help.c:2463 sql_help.c:2469 sql_help.c:2502 sql_help.c:2633 -#: sql_help.c:2742 sql_help.c:2777 sql_help.c:2779 sql_help.c:2891 -#: sql_help.c:2900 sql_help.c:2910 sql_help.c:2913 sql_help.c:2923 -#: sql_help.c:2927 sql_help.c:2950 sql_help.c:2952 sql_help.c:2959 -#: sql_help.c:2972 sql_help.c:2977 sql_help.c:2984 sql_help.c:2985 -#: sql_help.c:3001 sql_help.c:3127 sql_help.c:3267 sql_help.c:3890 -#: sql_help.c:3891 sql_help.c:3987 sql_help.c:4002 sql_help.c:4004 -#: sql_help.c:4006 sql_help.c:4093 sql_help.c:4096 sql_help.c:4098 -#: sql_help.c:4100 sql_help.c:4343 sql_help.c:4344 sql_help.c:4464 -#: sql_help.c:4625 sql_help.c:4631 sql_help.c:4633 sql_help.c:4882 -#: sql_help.c:4888 sql_help.c:4890 sql_help.c:4931 sql_help.c:4933 -#: sql_help.c:4935 sql_help.c:4982 sql_help.c:5120 sql_help.c:5126 -#: sql_help.c:5128 +#: sql_help.c:456 sql_help.c:463 sql_help.c:467 sql_help.c:468 sql_help.c:471 +#: sql_help.c:473 sql_help.c:474 sql_help.c:475 sql_help.c:477 sql_help.c:480 +#: sql_help.c:482 sql_help.c:483 sql_help.c:681 sql_help.c:691 sql_help.c:693 +#: sql_help.c:696 sql_help.c:698 sql_help.c:699 sql_help.c:921 sql_help.c:1090 +#: sql_help.c:1320 sql_help.c:1338 sql_help.c:1342 sql_help.c:1343 +#: sql_help.c:1347 sql_help.c:1349 sql_help.c:1350 sql_help.c:1351 +#: sql_help.c:1352 sql_help.c:1354 sql_help.c:1357 sql_help.c:1358 +#: sql_help.c:1360 sql_help.c:1363 sql_help.c:1365 sql_help.c:1366 +#: sql_help.c:1413 sql_help.c:1415 sql_help.c:1422 sql_help.c:1431 +#: sql_help.c:1436 sql_help.c:1443 sql_help.c:1444 sql_help.c:1695 +#: sql_help.c:1698 sql_help.c:1702 sql_help.c:1738 sql_help.c:1863 +#: sql_help.c:1976 sql_help.c:1982 sql_help.c:1995 sql_help.c:1996 +#: sql_help.c:1997 sql_help.c:2337 sql_help.c:2350 sql_help.c:2403 +#: sql_help.c:2471 sql_help.c:2477 sql_help.c:2510 sql_help.c:2641 +#: sql_help.c:2750 sql_help.c:2785 sql_help.c:2787 sql_help.c:2899 +#: sql_help.c:2908 sql_help.c:2918 sql_help.c:2921 sql_help.c:2931 +#: sql_help.c:2935 sql_help.c:2958 sql_help.c:2960 sql_help.c:2967 +#: sql_help.c:2980 sql_help.c:2985 sql_help.c:2992 sql_help.c:2993 +#: sql_help.c:3009 sql_help.c:3135 sql_help.c:3275 sql_help.c:3898 +#: sql_help.c:3899 sql_help.c:3995 sql_help.c:4010 sql_help.c:4012 +#: sql_help.c:4014 sql_help.c:4101 sql_help.c:4104 sql_help.c:4106 +#: sql_help.c:4108 sql_help.c:4351 sql_help.c:4352 sql_help.c:4472 +#: sql_help.c:4633 sql_help.c:4639 sql_help.c:4641 sql_help.c:4890 +#: sql_help.c:4896 sql_help.c:4898 sql_help.c:4939 sql_help.c:4941 +#: sql_help.c:4943 sql_help.c:4990 sql_help.c:5128 sql_help.c:5134 +#: sql_help.c:5136 msgid "column_name" msgstr "имя_столбца" -#: sql_help.c:449 sql_help.c:674 sql_help.c:1313 sql_help.c:1695 +#: sql_help.c:457 sql_help.c:682 sql_help.c:1321 sql_help.c:1703 msgid "new_column_name" msgstr "новое_имя_столбца" -#: sql_help.c:454 sql_help.c:546 sql_help.c:682 sql_help.c:876 sql_help.c:1026 -#: sql_help.c:1329 sql_help.c:1595 +#: sql_help.c:462 sql_help.c:554 sql_help.c:690 sql_help.c:884 sql_help.c:1034 +#: sql_help.c:1337 sql_help.c:1603 msgid "where action is one of:" msgstr "где допустимое действие:" -#: sql_help.c:456 sql_help.c:461 sql_help.c:1074 sql_help.c:1331 -#: sql_help.c:1336 sql_help.c:1597 sql_help.c:1601 sql_help.c:2233 -#: sql_help.c:2330 sql_help.c:2542 sql_help.c:2735 sql_help.c:2892 -#: sql_help.c:3174 sql_help.c:4152 +#: sql_help.c:464 sql_help.c:469 sql_help.c:1082 sql_help.c:1339 +#: sql_help.c:1344 sql_help.c:1605 sql_help.c:1609 sql_help.c:2241 +#: sql_help.c:2338 sql_help.c:2550 sql_help.c:2743 sql_help.c:2900 +#: sql_help.c:3182 sql_help.c:4160 msgid "data_type" msgstr "тип_данных" -#: sql_help.c:457 sql_help.c:462 sql_help.c:1332 sql_help.c:1337 -#: sql_help.c:1430 sql_help.c:1598 sql_help.c:1602 sql_help.c:2234 -#: sql_help.c:2333 sql_help.c:2465 sql_help.c:2894 sql_help.c:2902 -#: sql_help.c:2915 sql_help.c:2929 sql_help.c:2979 sql_help.c:3175 -#: sql_help.c:3181 sql_help.c:3997 +#: sql_help.c:465 sql_help.c:470 sql_help.c:1340 sql_help.c:1345 +#: sql_help.c:1438 sql_help.c:1606 sql_help.c:1610 sql_help.c:2242 +#: sql_help.c:2341 sql_help.c:2473 sql_help.c:2902 sql_help.c:2910 +#: sql_help.c:2923 sql_help.c:2937 sql_help.c:2987 sql_help.c:3183 +#: sql_help.c:3189 sql_help.c:4005 msgid "collation" msgstr "правило_сортировки" -#: sql_help.c:458 sql_help.c:1333 sql_help.c:2334 sql_help.c:2343 -#: sql_help.c:2895 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:466 sql_help.c:1341 sql_help.c:2342 sql_help.c:2351 +#: sql_help.c:2903 sql_help.c:2919 sql_help.c:2932 msgid "column_constraint" msgstr "ограничение_столбца" -#: sql_help.c:468 sql_help.c:610 sql_help.c:684 sql_help.c:1351 sql_help.c:4979 +#: sql_help.c:476 sql_help.c:618 sql_help.c:692 sql_help.c:1359 sql_help.c:4987 msgid "integer" msgstr "целое" -#: sql_help.c:470 sql_help.c:473 sql_help.c:686 sql_help.c:689 sql_help.c:1353 -#: sql_help.c:1356 +#: sql_help.c:478 sql_help.c:481 sql_help.c:694 sql_help.c:697 sql_help.c:1361 +#: sql_help.c:1364 msgid "attribute_option" msgstr "атрибут" -#: sql_help.c:478 sql_help.c:1360 sql_help.c:2335 sql_help.c:2344 -#: sql_help.c:2896 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:486 sql_help.c:1368 sql_help.c:2343 sql_help.c:2352 +#: sql_help.c:2904 sql_help.c:2920 sql_help.c:2933 msgid "table_constraint" msgstr "ограничение_таблицы" -#: sql_help.c:481 sql_help.c:482 sql_help.c:483 sql_help.c:484 sql_help.c:1365 -#: sql_help.c:1366 sql_help.c:1367 sql_help.c:1368 sql_help.c:1909 +#: sql_help.c:489 sql_help.c:490 sql_help.c:491 sql_help.c:492 sql_help.c:1373 +#: sql_help.c:1374 sql_help.c:1375 sql_help.c:1376 sql_help.c:1917 msgid "trigger_name" msgstr "имя_триггера" -#: sql_help.c:485 sql_help.c:486 sql_help.c:1379 sql_help.c:1380 -#: sql_help.c:2336 sql_help.c:2341 sql_help.c:2899 sql_help.c:2922 +#: sql_help.c:493 sql_help.c:494 sql_help.c:1387 sql_help.c:1388 +#: sql_help.c:2344 sql_help.c:2349 sql_help.c:2907 sql_help.c:2930 msgid "parent_table" msgstr "таблица_родитель" -#: sql_help.c:545 sql_help.c:602 sql_help.c:671 sql_help.c:875 sql_help.c:1025 -#: sql_help.c:1554 sql_help.c:2265 +#: sql_help.c:553 sql_help.c:610 sql_help.c:679 sql_help.c:883 sql_help.c:1033 +#: sql_help.c:1562 sql_help.c:2273 msgid "extension_name" msgstr "имя_расширения" -#: sql_help.c:547 sql_help.c:1027 sql_help.c:2399 +#: sql_help.c:555 sql_help.c:1035 sql_help.c:2407 msgid "execution_cost" msgstr "стоимость_выполнения" -#: sql_help.c:548 sql_help.c:1028 sql_help.c:2400 +#: sql_help.c:556 sql_help.c:1036 sql_help.c:2408 msgid "result_rows" msgstr "строк_в_результате" -#: sql_help.c:549 sql_help.c:2401 +#: sql_help.c:557 sql_help.c:2409 msgid "support_function" msgstr "вспомогательная_функция" -#: sql_help.c:571 sql_help.c:573 sql_help.c:950 sql_help.c:958 sql_help.c:962 -#: sql_help.c:965 sql_help.c:968 sql_help.c:1637 sql_help.c:1645 -#: sql_help.c:1649 sql_help.c:1652 sql_help.c:1655 sql_help.c:2713 -#: sql_help.c:2715 sql_help.c:2718 sql_help.c:2719 sql_help.c:3888 -#: sql_help.c:3889 sql_help.c:3893 sql_help.c:3894 sql_help.c:3897 -#: sql_help.c:3898 sql_help.c:3900 sql_help.c:3901 sql_help.c:3903 -#: sql_help.c:3904 sql_help.c:3906 sql_help.c:3907 sql_help.c:3909 -#: sql_help.c:3910 sql_help.c:3916 sql_help.c:3917 sql_help.c:3919 -#: sql_help.c:3920 sql_help.c:3922 sql_help.c:3923 sql_help.c:3925 -#: sql_help.c:3926 sql_help.c:3928 sql_help.c:3929 sql_help.c:3931 -#: sql_help.c:3932 sql_help.c:3934 sql_help.c:3935 sql_help.c:3937 -#: sql_help.c:3938 sql_help.c:4341 sql_help.c:4342 sql_help.c:4346 -#: sql_help.c:4347 sql_help.c:4350 sql_help.c:4351 sql_help.c:4353 -#: sql_help.c:4354 sql_help.c:4356 sql_help.c:4357 sql_help.c:4359 -#: sql_help.c:4360 sql_help.c:4362 sql_help.c:4363 sql_help.c:4369 -#: sql_help.c:4370 sql_help.c:4372 sql_help.c:4373 sql_help.c:4375 -#: sql_help.c:4376 sql_help.c:4378 sql_help.c:4379 sql_help.c:4381 -#: sql_help.c:4382 sql_help.c:4384 sql_help.c:4385 sql_help.c:4387 -#: sql_help.c:4388 sql_help.c:4390 sql_help.c:4391 +#: sql_help.c:579 sql_help.c:581 sql_help.c:958 sql_help.c:966 sql_help.c:970 +#: sql_help.c:973 sql_help.c:976 sql_help.c:1645 sql_help.c:1653 +#: sql_help.c:1657 sql_help.c:1660 sql_help.c:1663 sql_help.c:2721 +#: sql_help.c:2723 sql_help.c:2726 sql_help.c:2727 sql_help.c:3896 +#: sql_help.c:3897 sql_help.c:3901 sql_help.c:3902 sql_help.c:3905 +#: sql_help.c:3906 sql_help.c:3908 sql_help.c:3909 sql_help.c:3911 +#: sql_help.c:3912 sql_help.c:3914 sql_help.c:3915 sql_help.c:3917 +#: sql_help.c:3918 sql_help.c:3924 sql_help.c:3925 sql_help.c:3927 +#: sql_help.c:3928 sql_help.c:3930 sql_help.c:3931 sql_help.c:3933 +#: sql_help.c:3934 sql_help.c:3936 sql_help.c:3937 sql_help.c:3939 +#: sql_help.c:3940 sql_help.c:3942 sql_help.c:3943 sql_help.c:3945 +#: sql_help.c:3946 sql_help.c:4349 sql_help.c:4350 sql_help.c:4354 +#: sql_help.c:4355 sql_help.c:4358 sql_help.c:4359 sql_help.c:4361 +#: sql_help.c:4362 sql_help.c:4364 sql_help.c:4365 sql_help.c:4367 +#: sql_help.c:4368 sql_help.c:4370 sql_help.c:4371 sql_help.c:4377 +#: sql_help.c:4378 sql_help.c:4380 sql_help.c:4381 sql_help.c:4383 +#: sql_help.c:4384 sql_help.c:4386 sql_help.c:4387 sql_help.c:4389 +#: sql_help.c:4390 sql_help.c:4392 sql_help.c:4393 sql_help.c:4395 +#: sql_help.c:4396 sql_help.c:4398 sql_help.c:4399 msgid "role_specification" msgstr "указание_роли" -#: sql_help.c:572 sql_help.c:574 sql_help.c:1668 sql_help.c:2202 -#: sql_help.c:2721 sql_help.c:3252 sql_help.c:3703 sql_help.c:4718 +#: sql_help.c:580 sql_help.c:582 sql_help.c:1676 sql_help.c:2210 +#: sql_help.c:2729 sql_help.c:3260 sql_help.c:3711 sql_help.c:4726 msgid "user_name" msgstr "имя_пользователя" -#: sql_help.c:575 sql_help.c:970 sql_help.c:1657 sql_help.c:2720 -#: sql_help.c:3939 sql_help.c:4392 +#: sql_help.c:583 sql_help.c:978 sql_help.c:1665 sql_help.c:2728 +#: sql_help.c:3947 sql_help.c:4400 msgid "where role_specification can be:" msgstr "где допустимое указание_роли:" -#: sql_help.c:577 +#: sql_help.c:585 msgid "group_name" msgstr "имя_группы" -#: sql_help.c:598 sql_help.c:1426 sql_help.c:2212 sql_help.c:2472 -#: sql_help.c:2506 sql_help.c:2907 sql_help.c:2920 sql_help.c:2934 -#: sql_help.c:2975 sql_help.c:3005 sql_help.c:3017 sql_help.c:3930 -#: sql_help.c:4383 +#: sql_help.c:606 sql_help.c:1434 sql_help.c:2220 sql_help.c:2480 +#: sql_help.c:2514 sql_help.c:2915 sql_help.c:2928 sql_help.c:2942 +#: sql_help.c:2983 sql_help.c:3013 sql_help.c:3025 sql_help.c:3938 +#: sql_help.c:4391 msgid "tablespace_name" msgstr "табл_пространство" -#: sql_help.c:600 sql_help.c:693 sql_help.c:1373 sql_help.c:1383 -#: sql_help.c:1421 sql_help.c:1784 sql_help.c:1787 +#: sql_help.c:608 sql_help.c:701 sql_help.c:1381 sql_help.c:1391 +#: sql_help.c:1429 sql_help.c:1792 sql_help.c:1795 msgid "index_name" msgstr "имя_индекса" -#: sql_help.c:604 sql_help.c:607 sql_help.c:696 sql_help.c:698 sql_help.c:1376 -#: sql_help.c:1378 sql_help.c:1424 sql_help.c:2470 sql_help.c:2504 -#: sql_help.c:2905 sql_help.c:2918 sql_help.c:2932 sql_help.c:2973 -#: sql_help.c:3003 +#: sql_help.c:612 sql_help.c:615 sql_help.c:704 sql_help.c:706 sql_help.c:1384 +#: sql_help.c:1386 sql_help.c:1432 sql_help.c:2478 sql_help.c:2512 +#: sql_help.c:2913 sql_help.c:2926 sql_help.c:2940 sql_help.c:2981 +#: sql_help.c:3011 msgid "storage_parameter" msgstr "параметр_хранения" -#: sql_help.c:609 +#: sql_help.c:617 msgid "column_number" msgstr "номер_столбца" -#: sql_help.c:633 sql_help.c:1872 sql_help.c:4475 +#: sql_help.c:641 sql_help.c:1880 sql_help.c:4483 msgid "large_object_oid" msgstr "oid_большого_объекта" -#: sql_help.c:692 sql_help.c:1359 sql_help.c:2893 +#: sql_help.c:700 sql_help.c:1367 sql_help.c:2901 msgid "compression_method" msgstr "метод_сжатия" -#: sql_help.c:694 sql_help.c:1374 +#: sql_help.c:702 sql_help.c:1382 msgid "new_access_method" msgstr "новый_метод_доступа" -#: sql_help.c:727 sql_help.c:2527 +#: sql_help.c:735 sql_help.c:2535 msgid "res_proc" msgstr "процедура_ограничения" -#: sql_help.c:728 sql_help.c:2528 +#: sql_help.c:736 sql_help.c:2536 msgid "join_proc" msgstr "процедура_соединения" -#: sql_help.c:780 sql_help.c:792 sql_help.c:2545 +#: sql_help.c:788 sql_help.c:800 sql_help.c:2553 msgid "strategy_number" msgstr "номер_стратегии" -#: sql_help.c:782 sql_help.c:783 sql_help.c:786 sql_help.c:787 sql_help.c:793 -#: sql_help.c:794 sql_help.c:796 sql_help.c:797 sql_help.c:2547 sql_help.c:2548 -#: sql_help.c:2551 sql_help.c:2552 +#: sql_help.c:790 sql_help.c:791 sql_help.c:794 sql_help.c:795 sql_help.c:801 +#: sql_help.c:802 sql_help.c:804 sql_help.c:805 sql_help.c:2555 sql_help.c:2556 +#: sql_help.c:2559 sql_help.c:2560 msgid "op_type" msgstr "тип_операции" -#: sql_help.c:784 sql_help.c:2549 +#: sql_help.c:792 sql_help.c:2557 msgid "sort_family_name" msgstr "семейство_сортировки" -#: sql_help.c:785 sql_help.c:795 sql_help.c:2550 +#: sql_help.c:793 sql_help.c:803 sql_help.c:2558 msgid "support_number" msgstr "номер_опорной_процедуры" -#: sql_help.c:789 sql_help.c:2138 sql_help.c:2554 sql_help.c:3094 -#: sql_help.c:3096 +#: sql_help.c:797 sql_help.c:2146 sql_help.c:2562 sql_help.c:3102 +#: sql_help.c:3104 msgid "argument_type" msgstr "тип_аргумента" -#: sql_help.c:820 sql_help.c:823 sql_help.c:912 sql_help.c:1041 sql_help.c:1081 -#: sql_help.c:1550 sql_help.c:1553 sql_help.c:1729 sql_help.c:1783 -#: sql_help.c:1786 sql_help.c:1857 sql_help.c:1882 sql_help.c:1895 -#: sql_help.c:1910 sql_help.c:1967 sql_help.c:1973 sql_help.c:2328 -#: sql_help.c:2340 sql_help.c:2461 sql_help.c:2501 sql_help.c:2578 -#: sql_help.c:2632 sql_help.c:2689 sql_help.c:2741 sql_help.c:2774 -#: sql_help.c:2781 sql_help.c:2890 sql_help.c:2908 sql_help.c:2921 -#: sql_help.c:3000 sql_help.c:3120 sql_help.c:3301 sql_help.c:3524 -#: sql_help.c:3573 sql_help.c:3679 sql_help.c:3886 sql_help.c:3892 -#: sql_help.c:3953 sql_help.c:3985 sql_help.c:4339 sql_help.c:4345 -#: sql_help.c:4463 sql_help.c:4574 sql_help.c:4576 sql_help.c:4638 -#: sql_help.c:4677 sql_help.c:4831 sql_help.c:4833 sql_help.c:4895 -#: sql_help.c:4929 sql_help.c:4981 sql_help.c:5069 sql_help.c:5071 -#: sql_help.c:5133 +#: sql_help.c:828 sql_help.c:831 sql_help.c:920 sql_help.c:1049 sql_help.c:1089 +#: sql_help.c:1558 sql_help.c:1561 sql_help.c:1737 sql_help.c:1791 +#: sql_help.c:1794 sql_help.c:1865 sql_help.c:1890 sql_help.c:1903 +#: sql_help.c:1918 sql_help.c:1975 sql_help.c:1981 sql_help.c:2336 +#: sql_help.c:2348 sql_help.c:2469 sql_help.c:2509 sql_help.c:2586 +#: sql_help.c:2640 sql_help.c:2697 sql_help.c:2749 sql_help.c:2782 +#: sql_help.c:2789 sql_help.c:2898 sql_help.c:2916 sql_help.c:2929 +#: sql_help.c:3008 sql_help.c:3128 sql_help.c:3309 sql_help.c:3532 +#: sql_help.c:3581 sql_help.c:3687 sql_help.c:3894 sql_help.c:3900 +#: sql_help.c:3961 sql_help.c:3993 sql_help.c:4347 sql_help.c:4353 +#: sql_help.c:4471 sql_help.c:4582 sql_help.c:4584 sql_help.c:4646 +#: sql_help.c:4685 sql_help.c:4839 sql_help.c:4841 sql_help.c:4903 +#: sql_help.c:4937 sql_help.c:4989 sql_help.c:5077 sql_help.c:5079 +#: sql_help.c:5141 msgid "table_name" msgstr "имя_таблицы" -#: sql_help.c:825 sql_help.c:2580 +#: sql_help.c:833 sql_help.c:2588 msgid "using_expression" msgstr "выражение_использования" -#: sql_help.c:826 sql_help.c:2581 +#: sql_help.c:834 sql_help.c:2589 msgid "check_expression" msgstr "выражение_проверки" -#: sql_help.c:899 sql_help.c:901 sql_help.c:903 sql_help.c:2628 +#: sql_help.c:907 sql_help.c:909 sql_help.c:911 sql_help.c:2636 msgid "publication_object" msgstr "объект_публикации" -#: sql_help.c:905 sql_help.c:2629 +#: sql_help.c:913 sql_help.c:2637 msgid "publication_parameter" msgstr "параметр_публикации" -#: sql_help.c:911 sql_help.c:2631 +#: sql_help.c:919 sql_help.c:2639 msgid "where publication_object is one of:" msgstr "где объект_публикации:" -#: sql_help.c:954 sql_help.c:1641 sql_help.c:2439 sql_help.c:2666 -#: sql_help.c:3235 +#: sql_help.c:962 sql_help.c:1649 sql_help.c:2447 sql_help.c:2674 +#: sql_help.c:3243 msgid "password" msgstr "пароль" -#: sql_help.c:955 sql_help.c:1642 sql_help.c:2440 sql_help.c:2667 -#: sql_help.c:3236 +#: sql_help.c:963 sql_help.c:1650 sql_help.c:2448 sql_help.c:2675 +#: sql_help.c:3244 msgid "timestamp" msgstr "timestamp" -#: sql_help.c:959 sql_help.c:963 sql_help.c:966 sql_help.c:969 sql_help.c:1646 -#: sql_help.c:1650 sql_help.c:1653 sql_help.c:1656 sql_help.c:3899 -#: sql_help.c:4352 +#: sql_help.c:967 sql_help.c:971 sql_help.c:974 sql_help.c:977 sql_help.c:1654 +#: sql_help.c:1658 sql_help.c:1661 sql_help.c:1664 sql_help.c:3907 +#: sql_help.c:4360 msgid "database_name" msgstr "имя_БД" -#: sql_help.c:1075 sql_help.c:2736 +#: sql_help.c:1083 sql_help.c:2744 msgid "increment" msgstr "шаг" -#: sql_help.c:1076 sql_help.c:2737 +#: sql_help.c:1084 sql_help.c:2745 msgid "minvalue" msgstr "мин_значение" -#: sql_help.c:1077 sql_help.c:2738 +#: sql_help.c:1085 sql_help.c:2746 msgid "maxvalue" msgstr "макс_значение" -#: sql_help.c:1078 sql_help.c:2739 sql_help.c:4572 sql_help.c:4675 -#: sql_help.c:4829 sql_help.c:4998 sql_help.c:5067 +#: sql_help.c:1086 sql_help.c:2747 sql_help.c:4580 sql_help.c:4683 +#: sql_help.c:4837 sql_help.c:5006 sql_help.c:5075 msgid "start" msgstr "начальное_значение" -#: sql_help.c:1079 sql_help.c:1348 +#: sql_help.c:1087 sql_help.c:1356 msgid "restart" msgstr "значение_перезапуска" -#: sql_help.c:1080 sql_help.c:2740 +#: sql_help.c:1088 sql_help.c:2748 msgid "cache" msgstr "кеш" -#: sql_help.c:1125 +#: sql_help.c:1133 msgid "new_target" msgstr "новое_имя" -#: sql_help.c:1144 sql_help.c:2793 +#: sql_help.c:1152 sql_help.c:2801 msgid "conninfo" msgstr "строка_подключения" -#: sql_help.c:1146 sql_help.c:1150 sql_help.c:1154 sql_help.c:2794 +#: sql_help.c:1154 sql_help.c:1158 sql_help.c:1162 sql_help.c:2802 msgid "publication_name" msgstr "имя_публикации" -#: sql_help.c:1147 sql_help.c:1151 sql_help.c:1155 +#: sql_help.c:1155 sql_help.c:1159 sql_help.c:1163 msgid "publication_option" msgstr "параметр_публикации" -#: sql_help.c:1158 +#: sql_help.c:1166 msgid "refresh_option" msgstr "параметр_обновления" -#: sql_help.c:1163 sql_help.c:2795 +#: sql_help.c:1171 sql_help.c:2803 msgid "subscription_parameter" msgstr "параметр_подписки" -#: sql_help.c:1166 +#: sql_help.c:1174 msgid "skip_option" msgstr "параметр_пропуска" -#: sql_help.c:1325 sql_help.c:1328 +#: sql_help.c:1333 sql_help.c:1336 msgid "partition_name" msgstr "имя_секции" -#: sql_help.c:1326 sql_help.c:2345 sql_help.c:2926 +#: sql_help.c:1334 sql_help.c:2353 sql_help.c:2934 msgid "partition_bound_spec" msgstr "указание_границ_секции" -#: sql_help.c:1345 sql_help.c:1395 sql_help.c:2940 +#: sql_help.c:1353 sql_help.c:1403 sql_help.c:2948 msgid "sequence_options" msgstr "параметры_последовательности" -#: sql_help.c:1347 +#: sql_help.c:1355 msgid "sequence_option" msgstr "параметр_последовательности" -#: sql_help.c:1361 +#: sql_help.c:1369 msgid "table_constraint_using_index" msgstr "ограничение_таблицы_с_индексом" -#: sql_help.c:1369 sql_help.c:1370 sql_help.c:1371 sql_help.c:1372 +#: sql_help.c:1377 sql_help.c:1378 sql_help.c:1379 sql_help.c:1380 msgid "rewrite_rule_name" msgstr "имя_правила_перезаписи" -#: sql_help.c:1384 sql_help.c:2357 sql_help.c:2965 +#: sql_help.c:1392 sql_help.c:2365 sql_help.c:2973 msgid "and partition_bound_spec is:" msgstr "и указание_границ_секции:" -#: sql_help.c:1385 sql_help.c:1386 sql_help.c:1387 sql_help.c:2358 -#: sql_help.c:2359 sql_help.c:2360 sql_help.c:2966 sql_help.c:2967 -#: sql_help.c:2968 +#: sql_help.c:1393 sql_help.c:1394 sql_help.c:1395 sql_help.c:2366 +#: sql_help.c:2367 sql_help.c:2368 sql_help.c:2974 sql_help.c:2975 +#: sql_help.c:2976 msgid "partition_bound_expr" msgstr "выражение_границ_секции" -#: sql_help.c:1388 sql_help.c:1389 sql_help.c:2361 sql_help.c:2362 -#: sql_help.c:2969 sql_help.c:2970 +#: sql_help.c:1396 sql_help.c:1397 sql_help.c:2369 sql_help.c:2370 +#: sql_help.c:2977 sql_help.c:2978 msgid "numeric_literal" msgstr "числовая_константа" -#: sql_help.c:1390 +#: sql_help.c:1398 msgid "and column_constraint is:" msgstr "и ограничение_столбца:" -#: sql_help.c:1393 sql_help.c:2352 sql_help.c:2393 sql_help.c:2602 -#: sql_help.c:2938 +#: sql_help.c:1401 sql_help.c:2360 sql_help.c:2401 sql_help.c:2610 +#: sql_help.c:2946 msgid "default_expr" msgstr "выражение_по_умолчанию" -#: sql_help.c:1394 sql_help.c:2353 sql_help.c:2939 +#: sql_help.c:1402 sql_help.c:2361 sql_help.c:2947 msgid "generation_expr" msgstr "генерирующее_выражение" -#: sql_help.c:1396 sql_help.c:1397 sql_help.c:1406 sql_help.c:1408 -#: sql_help.c:1412 sql_help.c:2941 sql_help.c:2942 sql_help.c:2951 -#: sql_help.c:2953 sql_help.c:2957 +#: sql_help.c:1404 sql_help.c:1405 sql_help.c:1414 sql_help.c:1416 +#: sql_help.c:1420 sql_help.c:2949 sql_help.c:2950 sql_help.c:2959 +#: sql_help.c:2961 sql_help.c:2965 msgid "index_parameters" msgstr "параметры_индекса" -#: sql_help.c:1398 sql_help.c:1415 sql_help.c:2943 sql_help.c:2960 +#: sql_help.c:1406 sql_help.c:1423 sql_help.c:2951 sql_help.c:2968 msgid "reftable" msgstr "целевая_таблица" -#: sql_help.c:1399 sql_help.c:1416 sql_help.c:2944 sql_help.c:2961 +#: sql_help.c:1407 sql_help.c:1424 sql_help.c:2952 sql_help.c:2969 msgid "refcolumn" msgstr "целевой_столбец" -#: sql_help.c:1400 sql_help.c:1401 sql_help.c:1417 sql_help.c:1418 -#: sql_help.c:2945 sql_help.c:2946 sql_help.c:2962 sql_help.c:2963 +#: sql_help.c:1408 sql_help.c:1409 sql_help.c:1425 sql_help.c:1426 +#: sql_help.c:2953 sql_help.c:2954 sql_help.c:2970 sql_help.c:2971 msgid "referential_action" msgstr "ссылочное_действие" -#: sql_help.c:1402 sql_help.c:2354 sql_help.c:2947 +#: sql_help.c:1410 sql_help.c:2362 sql_help.c:2955 msgid "and table_constraint is:" msgstr "и ограничение_таблицы:" -#: sql_help.c:1410 sql_help.c:2955 +#: sql_help.c:1418 sql_help.c:2963 msgid "exclude_element" msgstr "объект_исключения" -#: sql_help.c:1411 sql_help.c:2956 sql_help.c:4570 sql_help.c:4673 -#: sql_help.c:4827 sql_help.c:4996 sql_help.c:5065 +#: sql_help.c:1419 sql_help.c:2964 sql_help.c:4578 sql_help.c:4681 +#: sql_help.c:4835 sql_help.c:5004 sql_help.c:5073 msgid "operator" msgstr "оператор" -#: sql_help.c:1413 sql_help.c:2473 sql_help.c:2958 +#: sql_help.c:1421 sql_help.c:2481 sql_help.c:2966 msgid "predicate" msgstr "предикат" -#: sql_help.c:1419 +#: sql_help.c:1427 msgid "and table_constraint_using_index is:" msgstr "и ограничение_таблицы_с_индексом:" -#: sql_help.c:1422 sql_help.c:2971 +#: sql_help.c:1430 sql_help.c:2979 msgid "index_parameters in UNIQUE, PRIMARY KEY, and EXCLUDE constraints are:" msgstr "параметры_индекса в ограничениях UNIQUE, PRIMARY KEY и EXCLUDE:" -#: sql_help.c:1427 sql_help.c:2976 +#: sql_help.c:1435 sql_help.c:2984 msgid "exclude_element in an EXCLUDE constraint is:" msgstr "объект_исключения в ограничении EXCLUDE:" -#: sql_help.c:1431 sql_help.c:2466 sql_help.c:2903 sql_help.c:2916 -#: sql_help.c:2930 sql_help.c:2980 sql_help.c:3998 +#: sql_help.c:1439 sql_help.c:2474 sql_help.c:2911 sql_help.c:2924 +#: sql_help.c:2938 sql_help.c:2988 sql_help.c:4006 msgid "opclass" msgstr "класс_оператора" -#: sql_help.c:1432 sql_help.c:2467 sql_help.c:2981 +#: sql_help.c:1440 sql_help.c:2475 sql_help.c:2989 msgid "opclass_parameter" msgstr "параметр_класса_оп" -#: sql_help.c:1434 sql_help.c:2983 +#: sql_help.c:1442 sql_help.c:2991 msgid "referential_action in a FOREIGN KEY/REFERENCES constraint is:" msgstr "ссылочное действие в ограничении FOREIGN KEY/REFERENCES:" -#: sql_help.c:1452 sql_help.c:1455 sql_help.c:3020 +#: sql_help.c:1460 sql_help.c:1463 sql_help.c:3028 msgid "tablespace_option" msgstr "параметр_табл_пространства" -#: sql_help.c:1476 sql_help.c:1479 sql_help.c:1485 sql_help.c:1489 +#: sql_help.c:1484 sql_help.c:1487 sql_help.c:1493 sql_help.c:1497 msgid "token_type" msgstr "тип_фрагмента" -#: sql_help.c:1477 sql_help.c:1480 +#: sql_help.c:1485 sql_help.c:1488 msgid "dictionary_name" msgstr "имя_словаря" -#: sql_help.c:1482 sql_help.c:1486 +#: sql_help.c:1490 sql_help.c:1494 msgid "old_dictionary" msgstr "старый_словарь" -#: sql_help.c:1483 sql_help.c:1487 +#: sql_help.c:1491 sql_help.c:1495 msgid "new_dictionary" msgstr "новый_словарь" -#: sql_help.c:1582 sql_help.c:1596 sql_help.c:1599 sql_help.c:1600 -#: sql_help.c:3173 +#: sql_help.c:1590 sql_help.c:1604 sql_help.c:1607 sql_help.c:1608 +#: sql_help.c:3181 msgid "attribute_name" msgstr "имя_атрибута" -#: sql_help.c:1583 +#: sql_help.c:1591 msgid "new_attribute_name" msgstr "новое_имя_атрибута" -#: sql_help.c:1587 sql_help.c:1591 +#: sql_help.c:1595 sql_help.c:1599 msgid "new_enum_value" msgstr "новое_значение_перечисления" -#: sql_help.c:1588 +#: sql_help.c:1596 msgid "neighbor_enum_value" msgstr "соседнее_значение_перечисления" -#: sql_help.c:1590 +#: sql_help.c:1598 msgid "existing_enum_value" msgstr "существующее_значение_перечисления" -#: sql_help.c:1593 +#: sql_help.c:1601 msgid "property" msgstr "свойство" -#: sql_help.c:1669 sql_help.c:2337 sql_help.c:2346 sql_help.c:2752 -#: sql_help.c:3253 sql_help.c:3704 sql_help.c:3908 sql_help.c:3954 -#: sql_help.c:4361 +#: sql_help.c:1677 sql_help.c:2345 sql_help.c:2354 sql_help.c:2760 +#: sql_help.c:3261 sql_help.c:3712 sql_help.c:3916 sql_help.c:3962 +#: sql_help.c:4369 msgid "server_name" msgstr "имя_сервера" -#: sql_help.c:1701 sql_help.c:1704 sql_help.c:3268 +#: sql_help.c:1709 sql_help.c:1712 sql_help.c:3276 msgid "view_option_name" msgstr "имя_параметра_представления" -#: sql_help.c:1702 sql_help.c:3269 +#: sql_help.c:1710 sql_help.c:3277 msgid "view_option_value" msgstr "значение_параметра_представления" -#: sql_help.c:1723 sql_help.c:1724 sql_help.c:4968 sql_help.c:4969 +#: sql_help.c:1731 sql_help.c:1732 sql_help.c:4976 sql_help.c:4977 msgid "table_and_columns" msgstr "таблица_и_столбцы" -#: sql_help.c:1725 sql_help.c:1788 sql_help.c:1979 sql_help.c:3752 -#: sql_help.c:4196 sql_help.c:4970 +#: sql_help.c:1733 sql_help.c:1796 sql_help.c:1987 sql_help.c:3760 +#: sql_help.c:4204 sql_help.c:4978 msgid "where option can be one of:" msgstr "где допустимый параметр:" -#: sql_help.c:1726 sql_help.c:1727 sql_help.c:1789 sql_help.c:1981 -#: sql_help.c:1984 sql_help.c:2163 sql_help.c:3753 sql_help.c:3754 -#: sql_help.c:3755 sql_help.c:3756 sql_help.c:3757 sql_help.c:3758 -#: sql_help.c:3759 sql_help.c:3760 sql_help.c:4197 sql_help.c:4199 -#: sql_help.c:4971 sql_help.c:4972 sql_help.c:4973 sql_help.c:4974 -#: sql_help.c:4975 sql_help.c:4976 sql_help.c:4977 sql_help.c:4978 +#: sql_help.c:1734 sql_help.c:1735 sql_help.c:1797 sql_help.c:1989 +#: sql_help.c:1992 sql_help.c:2171 sql_help.c:3761 sql_help.c:3762 +#: sql_help.c:3763 sql_help.c:3764 sql_help.c:3765 sql_help.c:3766 +#: sql_help.c:3767 sql_help.c:3768 sql_help.c:4205 sql_help.c:4207 +#: sql_help.c:4979 sql_help.c:4980 sql_help.c:4981 sql_help.c:4982 +#: sql_help.c:4983 sql_help.c:4984 sql_help.c:4985 sql_help.c:4986 msgid "boolean" msgstr "логическое_значение" -#: sql_help.c:1728 sql_help.c:4980 +#: sql_help.c:1736 sql_help.c:4988 msgid "and table_and_columns is:" msgstr "и таблица_и_столбцы:" -#: sql_help.c:1744 sql_help.c:4734 sql_help.c:4736 sql_help.c:4760 +#: sql_help.c:1752 sql_help.c:4742 sql_help.c:4744 sql_help.c:4768 msgid "transaction_mode" msgstr "режим_транзакции" -#: sql_help.c:1745 sql_help.c:4737 sql_help.c:4761 +#: sql_help.c:1753 sql_help.c:4745 sql_help.c:4769 msgid "where transaction_mode is one of:" msgstr "где допустимый режим_транзакции:" -#: sql_help.c:1754 sql_help.c:4580 sql_help.c:4589 sql_help.c:4593 -#: sql_help.c:4597 sql_help.c:4600 sql_help.c:4837 sql_help.c:4846 -#: sql_help.c:4850 sql_help.c:4854 sql_help.c:4857 sql_help.c:5075 -#: sql_help.c:5084 sql_help.c:5088 sql_help.c:5092 sql_help.c:5095 +#: sql_help.c:1762 sql_help.c:4588 sql_help.c:4597 sql_help.c:4601 +#: sql_help.c:4605 sql_help.c:4608 sql_help.c:4845 sql_help.c:4854 +#: sql_help.c:4858 sql_help.c:4862 sql_help.c:4865 sql_help.c:5083 +#: sql_help.c:5092 sql_help.c:5096 sql_help.c:5100 sql_help.c:5103 msgid "argument" msgstr "аргумент" -#: sql_help.c:1854 +#: sql_help.c:1862 msgid "relation_name" msgstr "имя_отношения" -#: sql_help.c:1859 sql_help.c:3902 sql_help.c:4355 +#: sql_help.c:1867 sql_help.c:3910 sql_help.c:4363 msgid "domain_name" msgstr "имя_домена" -#: sql_help.c:1881 +#: sql_help.c:1889 msgid "policy_name" msgstr "имя_политики" -#: sql_help.c:1894 +#: sql_help.c:1902 msgid "rule_name" msgstr "имя_правила" -#: sql_help.c:1913 sql_help.c:4494 +#: sql_help.c:1921 sql_help.c:4502 msgid "string_literal" msgstr "строковая_константа" -#: sql_help.c:1938 sql_help.c:4161 sql_help.c:4408 +#: sql_help.c:1946 sql_help.c:4169 sql_help.c:4416 msgid "transaction_id" msgstr "код_транзакции" -#: sql_help.c:1969 sql_help.c:1976 sql_help.c:4024 +#: sql_help.c:1977 sql_help.c:1984 sql_help.c:4032 msgid "filename" msgstr "имя_файла" -#: sql_help.c:1970 sql_help.c:1977 sql_help.c:2691 sql_help.c:2692 -#: sql_help.c:2693 +#: sql_help.c:1978 sql_help.c:1985 sql_help.c:2699 sql_help.c:2700 +#: sql_help.c:2701 msgid "command" msgstr "команда" -#: sql_help.c:1972 sql_help.c:2690 sql_help.c:3123 sql_help.c:3304 -#: sql_help.c:4008 sql_help.c:4087 sql_help.c:4090 sql_help.c:4563 -#: sql_help.c:4565 sql_help.c:4666 sql_help.c:4668 sql_help.c:4820 -#: sql_help.c:4822 sql_help.c:4938 sql_help.c:5058 sql_help.c:5060 +#: sql_help.c:1980 sql_help.c:2698 sql_help.c:3131 sql_help.c:3312 +#: sql_help.c:4016 sql_help.c:4095 sql_help.c:4098 sql_help.c:4571 +#: sql_help.c:4573 sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 +#: sql_help.c:4830 sql_help.c:4946 sql_help.c:5066 sql_help.c:5068 msgid "condition" msgstr "условие" -#: sql_help.c:1975 sql_help.c:2507 sql_help.c:3006 sql_help.c:3270 -#: sql_help.c:3288 sql_help.c:3989 +#: sql_help.c:1983 sql_help.c:2515 sql_help.c:3014 sql_help.c:3278 +#: sql_help.c:3296 sql_help.c:3997 msgid "query" msgstr "запрос" -#: sql_help.c:1980 +#: sql_help.c:1988 msgid "format_name" msgstr "имя_формата" -#: sql_help.c:1982 +#: sql_help.c:1990 msgid "delimiter_character" msgstr "символ_разделитель" -#: sql_help.c:1983 +#: sql_help.c:1991 msgid "null_string" msgstr "представление_NULL" -#: sql_help.c:1985 +#: sql_help.c:1993 msgid "quote_character" msgstr "символ_кавычек" -#: sql_help.c:1986 +#: sql_help.c:1994 msgid "escape_character" msgstr "спецсимвол" -#: sql_help.c:1990 +#: sql_help.c:1998 msgid "encoding_name" msgstr "имя_кодировки" -#: sql_help.c:2001 +#: sql_help.c:2009 msgid "access_method_type" msgstr "тип_метода_доступа" -#: sql_help.c:2072 sql_help.c:2091 sql_help.c:2094 +#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2102 msgid "arg_data_type" msgstr "тип_данных_аргумента" -#: sql_help.c:2073 sql_help.c:2095 sql_help.c:2103 +#: sql_help.c:2081 sql_help.c:2103 sql_help.c:2111 msgid "sfunc" msgstr "функция_состояния" -#: sql_help.c:2074 sql_help.c:2096 sql_help.c:2104 +#: sql_help.c:2082 sql_help.c:2104 sql_help.c:2112 msgid "state_data_type" msgstr "тип_данных_состояния" -#: sql_help.c:2075 sql_help.c:2097 sql_help.c:2105 +#: sql_help.c:2083 sql_help.c:2105 sql_help.c:2113 msgid "state_data_size" msgstr "размер_данных_состояния" -#: sql_help.c:2076 sql_help.c:2098 sql_help.c:2106 +#: sql_help.c:2084 sql_help.c:2106 sql_help.c:2114 msgid "ffunc" msgstr "функция_завершения" -#: sql_help.c:2077 sql_help.c:2107 +#: sql_help.c:2085 sql_help.c:2115 msgid "combinefunc" msgstr "комбинирующая_функция" -#: sql_help.c:2078 sql_help.c:2108 +#: sql_help.c:2086 sql_help.c:2116 msgid "serialfunc" msgstr "функция_сериализации" -#: sql_help.c:2079 sql_help.c:2109 +#: sql_help.c:2087 sql_help.c:2117 msgid "deserialfunc" msgstr "функция_десериализации" -#: sql_help.c:2080 sql_help.c:2099 sql_help.c:2110 +#: sql_help.c:2088 sql_help.c:2107 sql_help.c:2118 msgid "initial_condition" msgstr "начальное_условие" -#: sql_help.c:2081 sql_help.c:2111 +#: sql_help.c:2089 sql_help.c:2119 msgid "msfunc" msgstr "функция_состояния_движ" -#: sql_help.c:2082 sql_help.c:2112 +#: sql_help.c:2090 sql_help.c:2120 msgid "minvfunc" msgstr "обратная_функция_движ" -#: sql_help.c:2083 sql_help.c:2113 +#: sql_help.c:2091 sql_help.c:2121 msgid "mstate_data_type" msgstr "тип_данных_состояния_движ" -#: sql_help.c:2084 sql_help.c:2114 +#: sql_help.c:2092 sql_help.c:2122 msgid "mstate_data_size" msgstr "размер_данных_состояния_движ" -#: sql_help.c:2085 sql_help.c:2115 +#: sql_help.c:2093 sql_help.c:2123 msgid "mffunc" msgstr "функция_завершения_движ" -#: sql_help.c:2086 sql_help.c:2116 +#: sql_help.c:2094 sql_help.c:2124 msgid "minitial_condition" msgstr "начальное_условие_движ" -#: sql_help.c:2087 sql_help.c:2117 +#: sql_help.c:2095 sql_help.c:2125 msgid "sort_operator" msgstr "оператор_сортировки" -#: sql_help.c:2100 +#: sql_help.c:2108 msgid "or the old syntax" msgstr "или старый синтаксис" -#: sql_help.c:2102 +#: sql_help.c:2110 msgid "base_type" msgstr "базовый_тип" -#: sql_help.c:2159 sql_help.c:2206 +#: sql_help.c:2167 sql_help.c:2214 msgid "locale" msgstr "код_локали" -#: sql_help.c:2160 sql_help.c:2207 +#: sql_help.c:2168 sql_help.c:2215 msgid "lc_collate" msgstr "код_правила_сортировки" -#: sql_help.c:2161 sql_help.c:2208 +#: sql_help.c:2169 sql_help.c:2216 msgid "lc_ctype" msgstr "код_классификации_символов" -#: sql_help.c:2162 sql_help.c:4461 +#: sql_help.c:2170 sql_help.c:4469 msgid "provider" msgstr "провайдер" -#: sql_help.c:2164 sql_help.c:2267 +#: sql_help.c:2172 sql_help.c:2275 msgid "version" msgstr "версия" -#: sql_help.c:2166 +#: sql_help.c:2174 msgid "existing_collation" msgstr "существующее_правило_сортировки" -#: sql_help.c:2176 +#: sql_help.c:2184 msgid "source_encoding" msgstr "исходная_кодировка" -#: sql_help.c:2177 +#: sql_help.c:2185 msgid "dest_encoding" msgstr "целевая_кодировка" -#: sql_help.c:2203 sql_help.c:3046 +#: sql_help.c:2211 sql_help.c:3054 msgid "template" msgstr "шаблон" -#: sql_help.c:2204 +#: sql_help.c:2212 msgid "encoding" msgstr "кодировка" -#: sql_help.c:2205 +#: sql_help.c:2213 msgid "strategy" msgstr "стратегия" -#: sql_help.c:2209 +#: sql_help.c:2217 msgid "icu_locale" msgstr "локаль_icu" -#: sql_help.c:2210 +#: sql_help.c:2218 msgid "locale_provider" msgstr "провайдер_локали" -#: sql_help.c:2211 +#: sql_help.c:2219 msgid "collation_version" msgstr "версия_правила_сортировки" -#: sql_help.c:2216 +#: sql_help.c:2224 msgid "oid" msgstr "oid" -#: sql_help.c:2236 +#: sql_help.c:2244 msgid "constraint" msgstr "ограничение" -#: sql_help.c:2237 +#: sql_help.c:2245 msgid "where constraint is:" msgstr "где ограничение:" -#: sql_help.c:2251 sql_help.c:2688 sql_help.c:3119 +#: sql_help.c:2259 sql_help.c:2696 sql_help.c:3127 msgid "event" msgstr "событие" -#: sql_help.c:2252 +#: sql_help.c:2260 msgid "filter_variable" msgstr "переменная_фильтра" -#: sql_help.c:2253 +#: sql_help.c:2261 msgid "filter_value" msgstr "значение_фильтра" -#: sql_help.c:2349 sql_help.c:2935 +#: sql_help.c:2357 sql_help.c:2943 msgid "where column_constraint is:" msgstr "где ограничение_столбца:" -#: sql_help.c:2394 +#: sql_help.c:2402 msgid "rettype" msgstr "тип_возврата" -#: sql_help.c:2396 +#: sql_help.c:2404 msgid "column_type" msgstr "тип_столбца" -#: sql_help.c:2405 sql_help.c:2608 +#: sql_help.c:2413 sql_help.c:2616 msgid "definition" msgstr "определение" -#: sql_help.c:2406 sql_help.c:2609 +#: sql_help.c:2414 sql_help.c:2617 msgid "obj_file" msgstr "объектный_файл" -#: sql_help.c:2407 sql_help.c:2610 +#: sql_help.c:2415 sql_help.c:2618 msgid "link_symbol" msgstr "символ_в_экспорте" -#: sql_help.c:2408 sql_help.c:2611 +#: sql_help.c:2416 sql_help.c:2619 msgid "sql_body" msgstr "тело_sql" -#: sql_help.c:2446 sql_help.c:2673 sql_help.c:3242 +#: sql_help.c:2454 sql_help.c:2681 sql_help.c:3250 msgid "uid" msgstr "uid" -#: sql_help.c:2462 sql_help.c:2503 sql_help.c:2904 sql_help.c:2917 -#: sql_help.c:2931 sql_help.c:3002 +#: sql_help.c:2470 sql_help.c:2511 sql_help.c:2912 sql_help.c:2925 +#: sql_help.c:2939 sql_help.c:3010 msgid "method" msgstr "метод" -#: sql_help.c:2484 +#: sql_help.c:2492 msgid "call_handler" msgstr "обработчик_вызова" -#: sql_help.c:2485 +#: sql_help.c:2493 msgid "inline_handler" msgstr "обработчик_внедрённого_кода" -#: sql_help.c:2486 +#: sql_help.c:2494 msgid "valfunction" msgstr "функция_проверки" -#: sql_help.c:2525 +#: sql_help.c:2533 msgid "com_op" msgstr "коммут_оператор" -#: sql_help.c:2526 +#: sql_help.c:2534 msgid "neg_op" msgstr "обратный_оператор" -#: sql_help.c:2544 +#: sql_help.c:2552 msgid "family_name" msgstr "имя_семейства" -#: sql_help.c:2555 +#: sql_help.c:2563 msgid "storage_type" msgstr "тип_хранения" -#: sql_help.c:2694 sql_help.c:3126 +#: sql_help.c:2702 sql_help.c:3134 msgid "where event can be one of:" msgstr "где допустимое событие:" -#: sql_help.c:2714 sql_help.c:2716 +#: sql_help.c:2722 sql_help.c:2724 msgid "schema_element" msgstr "элемент_схемы" -#: sql_help.c:2753 +#: sql_help.c:2761 msgid "server_type" msgstr "тип_сервера" -#: sql_help.c:2754 +#: sql_help.c:2762 msgid "server_version" msgstr "версия_сервера" -#: sql_help.c:2755 sql_help.c:3905 sql_help.c:4358 +#: sql_help.c:2763 sql_help.c:3913 sql_help.c:4366 msgid "fdw_name" msgstr "имя_обёртки_сторонних_данных" -#: sql_help.c:2772 sql_help.c:2775 +#: sql_help.c:2780 sql_help.c:2783 msgid "statistics_name" msgstr "имя_статистики" -#: sql_help.c:2776 +#: sql_help.c:2784 msgid "statistics_kind" msgstr "вид_статистики" -#: sql_help.c:2792 +#: sql_help.c:2800 msgid "subscription_name" msgstr "имя_подписки" -#: sql_help.c:2897 +#: sql_help.c:2905 msgid "source_table" msgstr "исходная_таблица" -#: sql_help.c:2898 +#: sql_help.c:2906 msgid "like_option" msgstr "параметр_порождения" -#: sql_help.c:2964 +#: sql_help.c:2972 msgid "and like_option is:" msgstr "и параметр_порождения:" -#: sql_help.c:3019 +#: sql_help.c:3027 msgid "directory" msgstr "каталог" -#: sql_help.c:3033 +#: sql_help.c:3041 msgid "parser_name" msgstr "имя_анализатора" -#: sql_help.c:3034 +#: sql_help.c:3042 msgid "source_config" msgstr "исходная_конфигурация" -#: sql_help.c:3063 +#: sql_help.c:3071 msgid "start_function" msgstr "функция_начала" -#: sql_help.c:3064 +#: sql_help.c:3072 msgid "gettoken_function" msgstr "функция_выдачи_фрагмента" -#: sql_help.c:3065 +#: sql_help.c:3073 msgid "end_function" msgstr "функция_окончания" -#: sql_help.c:3066 +#: sql_help.c:3074 msgid "lextypes_function" msgstr "функция_лекс_типов" -#: sql_help.c:3067 +#: sql_help.c:3075 msgid "headline_function" msgstr "функция_создания_выдержек" -#: sql_help.c:3079 +#: sql_help.c:3087 msgid "init_function" msgstr "функция_инициализации" -#: sql_help.c:3080 +#: sql_help.c:3088 msgid "lexize_function" msgstr "функция_выделения_лексем" -#: sql_help.c:3093 +#: sql_help.c:3101 msgid "from_sql_function_name" msgstr "имя_функции_из_sql" -#: sql_help.c:3095 +#: sql_help.c:3103 msgid "to_sql_function_name" msgstr "имя_функции_в_sql" -#: sql_help.c:3121 +#: sql_help.c:3129 msgid "referenced_table_name" msgstr "ссылающаяся_таблица" -#: sql_help.c:3122 +#: sql_help.c:3130 msgid "transition_relation_name" msgstr "имя_переходного_отношения" -#: sql_help.c:3125 +#: sql_help.c:3133 msgid "arguments" msgstr "аргументы" -#: sql_help.c:3177 +#: sql_help.c:3185 msgid "label" msgstr "метка" -#: sql_help.c:3179 +#: sql_help.c:3187 msgid "subtype" msgstr "подтип" -#: sql_help.c:3180 +#: sql_help.c:3188 msgid "subtype_operator_class" msgstr "класс_оператора_подтипа" -#: sql_help.c:3182 +#: sql_help.c:3190 msgid "canonical_function" msgstr "каноническая_функция" -#: sql_help.c:3183 +#: sql_help.c:3191 msgid "subtype_diff_function" msgstr "функция_различий_подтипа" -#: sql_help.c:3184 +#: sql_help.c:3192 msgid "multirange_type_name" msgstr "имя_мультидиапазонного_типа" -#: sql_help.c:3186 +#: sql_help.c:3194 msgid "input_function" msgstr "функция_ввода" -#: sql_help.c:3187 +#: sql_help.c:3195 msgid "output_function" msgstr "функция_вывода" -#: sql_help.c:3188 +#: sql_help.c:3196 msgid "receive_function" msgstr "функция_получения" -#: sql_help.c:3189 +#: sql_help.c:3197 msgid "send_function" msgstr "функция_отправки" -#: sql_help.c:3190 +#: sql_help.c:3198 msgid "type_modifier_input_function" msgstr "функция_ввода_модификатора_типа" -#: sql_help.c:3191 +#: sql_help.c:3199 msgid "type_modifier_output_function" msgstr "функция_вывода_модификатора_типа" -#: sql_help.c:3192 +#: sql_help.c:3200 msgid "analyze_function" msgstr "функция_анализа" -#: sql_help.c:3193 +#: sql_help.c:3201 msgid "subscript_function" msgstr "функция_обращения_по_индексу" -#: sql_help.c:3194 +#: sql_help.c:3202 msgid "internallength" msgstr "внутр_длина" -#: sql_help.c:3195 +#: sql_help.c:3203 msgid "alignment" msgstr "выравнивание" -#: sql_help.c:3196 +#: sql_help.c:3204 msgid "storage" msgstr "хранение" -#: sql_help.c:3197 +#: sql_help.c:3205 msgid "like_type" msgstr "тип_образец" -#: sql_help.c:3198 +#: sql_help.c:3206 msgid "category" msgstr "категория" -#: sql_help.c:3199 +#: sql_help.c:3207 msgid "preferred" msgstr "предпочитаемый" -#: sql_help.c:3200 +#: sql_help.c:3208 msgid "default" msgstr "по_умолчанию" -#: sql_help.c:3201 +#: sql_help.c:3209 msgid "element" msgstr "элемент" -#: sql_help.c:3202 +#: sql_help.c:3210 msgid "delimiter" msgstr "разделитель" -#: sql_help.c:3203 +#: sql_help.c:3211 msgid "collatable" msgstr "сортируемый" -#: sql_help.c:3300 sql_help.c:3984 sql_help.c:4076 sql_help.c:4558 -#: sql_help.c:4660 sql_help.c:4815 sql_help.c:4928 sql_help.c:5053 +#: sql_help.c:3308 sql_help.c:3992 sql_help.c:4084 sql_help.c:4566 +#: sql_help.c:4668 sql_help.c:4823 sql_help.c:4936 sql_help.c:5061 msgid "with_query" msgstr "запрос_WITH" -#: sql_help.c:3302 sql_help.c:3986 sql_help.c:4577 sql_help.c:4583 -#: sql_help.c:4586 sql_help.c:4590 sql_help.c:4594 sql_help.c:4602 -#: sql_help.c:4834 sql_help.c:4840 sql_help.c:4843 sql_help.c:4847 -#: sql_help.c:4851 sql_help.c:4859 sql_help.c:4930 sql_help.c:5072 -#: sql_help.c:5078 sql_help.c:5081 sql_help.c:5085 sql_help.c:5089 -#: sql_help.c:5097 +#: sql_help.c:3310 sql_help.c:3994 sql_help.c:4585 sql_help.c:4591 +#: sql_help.c:4594 sql_help.c:4598 sql_help.c:4602 sql_help.c:4610 +#: sql_help.c:4842 sql_help.c:4848 sql_help.c:4851 sql_help.c:4855 +#: sql_help.c:4859 sql_help.c:4867 sql_help.c:4938 sql_help.c:5080 +#: sql_help.c:5086 sql_help.c:5089 sql_help.c:5093 sql_help.c:5097 +#: sql_help.c:5105 msgid "alias" msgstr "псевдоним" -#: sql_help.c:3303 sql_help.c:4562 sql_help.c:4604 sql_help.c:4606 -#: sql_help.c:4610 sql_help.c:4612 sql_help.c:4613 sql_help.c:4614 -#: sql_help.c:4665 sql_help.c:4819 sql_help.c:4861 sql_help.c:4863 -#: sql_help.c:4867 sql_help.c:4869 sql_help.c:4870 sql_help.c:4871 -#: sql_help.c:4937 sql_help.c:5057 sql_help.c:5099 sql_help.c:5101 -#: sql_help.c:5105 sql_help.c:5107 sql_help.c:5108 sql_help.c:5109 +#: sql_help.c:3311 sql_help.c:4570 sql_help.c:4612 sql_help.c:4614 +#: sql_help.c:4618 sql_help.c:4620 sql_help.c:4621 sql_help.c:4622 +#: sql_help.c:4673 sql_help.c:4827 sql_help.c:4869 sql_help.c:4871 +#: sql_help.c:4875 sql_help.c:4877 sql_help.c:4878 sql_help.c:4879 +#: sql_help.c:4945 sql_help.c:5065 sql_help.c:5107 sql_help.c:5109 +#: sql_help.c:5113 sql_help.c:5115 sql_help.c:5116 sql_help.c:5117 msgid "from_item" msgstr "источник_данных" -#: sql_help.c:3305 sql_help.c:3786 sql_help.c:4128 sql_help.c:4939 +#: sql_help.c:3313 sql_help.c:3794 sql_help.c:4136 sql_help.c:4947 msgid "cursor_name" msgstr "имя_курсора" -#: sql_help.c:3306 sql_help.c:3992 sql_help.c:4940 +#: sql_help.c:3314 sql_help.c:4000 sql_help.c:4948 msgid "output_expression" msgstr "выражение_результата" -#: sql_help.c:3307 sql_help.c:3993 sql_help.c:4561 sql_help.c:4663 -#: sql_help.c:4818 sql_help.c:4941 sql_help.c:5056 +#: sql_help.c:3315 sql_help.c:4001 sql_help.c:4569 sql_help.c:4671 +#: sql_help.c:4826 sql_help.c:4949 sql_help.c:5064 msgid "output_name" msgstr "имя_результата" -#: sql_help.c:3323 +#: sql_help.c:3331 msgid "code" msgstr "внедрённый_код" -#: sql_help.c:3728 +#: sql_help.c:3736 msgid "parameter" msgstr "параметр" -#: sql_help.c:3750 sql_help.c:3751 sql_help.c:4153 +#: sql_help.c:3758 sql_help.c:3759 sql_help.c:4161 msgid "statement" msgstr "оператор" -#: sql_help.c:3785 sql_help.c:4127 +#: sql_help.c:3793 sql_help.c:4135 msgid "direction" msgstr "направление" -#: sql_help.c:3787 sql_help.c:4129 +#: sql_help.c:3795 sql_help.c:4137 msgid "where direction can be one of:" msgstr "где допустимое направление:" -#: sql_help.c:3788 sql_help.c:3789 sql_help.c:3790 sql_help.c:3791 -#: sql_help.c:3792 sql_help.c:4130 sql_help.c:4131 sql_help.c:4132 -#: sql_help.c:4133 sql_help.c:4134 sql_help.c:4571 sql_help.c:4573 -#: sql_help.c:4674 sql_help.c:4676 sql_help.c:4828 sql_help.c:4830 -#: sql_help.c:4997 sql_help.c:4999 sql_help.c:5066 sql_help.c:5068 +#: sql_help.c:3796 sql_help.c:3797 sql_help.c:3798 sql_help.c:3799 +#: sql_help.c:3800 sql_help.c:4138 sql_help.c:4139 sql_help.c:4140 +#: sql_help.c:4141 sql_help.c:4142 sql_help.c:4579 sql_help.c:4581 +#: sql_help.c:4682 sql_help.c:4684 sql_help.c:4836 sql_help.c:4838 +#: sql_help.c:5005 sql_help.c:5007 sql_help.c:5074 sql_help.c:5076 msgid "count" msgstr "число" -#: sql_help.c:3895 sql_help.c:4348 +#: sql_help.c:3903 sql_help.c:4356 msgid "sequence_name" msgstr "имя_последовательности" -#: sql_help.c:3913 sql_help.c:4366 +#: sql_help.c:3921 sql_help.c:4374 msgid "arg_name" msgstr "имя_аргумента" -#: sql_help.c:3914 sql_help.c:4367 +#: sql_help.c:3922 sql_help.c:4375 msgid "arg_type" msgstr "тип_аргумента" -#: sql_help.c:3921 sql_help.c:4374 +#: sql_help.c:3929 sql_help.c:4382 msgid "loid" msgstr "код_БО" -#: sql_help.c:3952 +#: sql_help.c:3960 msgid "remote_schema" msgstr "удалённая_схема" -#: sql_help.c:3955 +#: sql_help.c:3963 msgid "local_schema" msgstr "локальная_схема" -#: sql_help.c:3990 +#: sql_help.c:3998 msgid "conflict_target" msgstr "объект_конфликта" -#: sql_help.c:3991 +#: sql_help.c:3999 msgid "conflict_action" msgstr "действие_при_конфликте" -#: sql_help.c:3994 +#: sql_help.c:4002 msgid "where conflict_target can be one of:" msgstr "где допустимый объект_конфликта:" -#: sql_help.c:3995 +#: sql_help.c:4003 msgid "index_column_name" msgstr "имя_столбца_индекса" -#: sql_help.c:3996 +#: sql_help.c:4004 msgid "index_expression" msgstr "выражение_индекса" -#: sql_help.c:3999 +#: sql_help.c:4007 msgid "index_predicate" msgstr "предикат_индекса" -#: sql_help.c:4001 +#: sql_help.c:4009 msgid "and conflict_action is one of:" msgstr "а допустимое действие_при_конфликте:" -#: sql_help.c:4007 sql_help.c:4101 sql_help.c:4936 +#: sql_help.c:4015 sql_help.c:4109 sql_help.c:4944 msgid "sub-SELECT" msgstr "вложенный_SELECT" -#: sql_help.c:4016 sql_help.c:4142 sql_help.c:4912 +#: sql_help.c:4024 sql_help.c:4150 sql_help.c:4920 msgid "channel" msgstr "канал" -#: sql_help.c:4038 +#: sql_help.c:4046 msgid "lockmode" msgstr "режим_блокировки" -#: sql_help.c:4039 +#: sql_help.c:4047 msgid "where lockmode is one of:" msgstr "где допустимый режим_блокировки:" -#: sql_help.c:4077 +#: sql_help.c:4085 msgid "target_table_name" msgstr "имя_целевой_таблицы" -#: sql_help.c:4078 +#: sql_help.c:4086 msgid "target_alias" msgstr "псевдоним_назначения" -#: sql_help.c:4079 +#: sql_help.c:4087 msgid "data_source" msgstr "источник_данных" -#: sql_help.c:4080 sql_help.c:4607 sql_help.c:4864 sql_help.c:5102 +#: sql_help.c:4088 sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 msgid "join_condition" msgstr "условие_соединения" -#: sql_help.c:4081 +#: sql_help.c:4089 msgid "when_clause" msgstr "предложение_when" -#: sql_help.c:4082 +#: sql_help.c:4090 msgid "where data_source is:" msgstr "где источник_данных:" -#: sql_help.c:4083 +#: sql_help.c:4091 msgid "source_table_name" msgstr "имя_исходной_таблицы" -#: sql_help.c:4084 +#: sql_help.c:4092 msgid "source_query" msgstr "исходный_запрос" -#: sql_help.c:4085 +#: sql_help.c:4093 msgid "source_alias" msgstr "псевдоним_источника" -#: sql_help.c:4086 +#: sql_help.c:4094 msgid "and when_clause is:" msgstr "и предложение_when:" -#: sql_help.c:4088 +#: sql_help.c:4096 msgid "merge_update" msgstr "merge_update" -#: sql_help.c:4089 +#: sql_help.c:4097 msgid "merge_delete" msgstr "merge_delete" -#: sql_help.c:4091 +#: sql_help.c:4099 msgid "merge_insert" msgstr "merge_insert" -#: sql_help.c:4092 +#: sql_help.c:4100 msgid "and merge_insert is:" msgstr "и merge_insert:" -#: sql_help.c:4095 +#: sql_help.c:4103 msgid "and merge_update is:" msgstr "и merge_update:" -#: sql_help.c:4102 +#: sql_help.c:4110 msgid "and merge_delete is:" msgstr "и merge_delete:" -#: sql_help.c:4143 +#: sql_help.c:4151 msgid "payload" msgstr "сообщение_нагрузка" -#: sql_help.c:4170 +#: sql_help.c:4178 msgid "old_role" msgstr "старая_роль" -#: sql_help.c:4171 +#: sql_help.c:4179 msgid "new_role" msgstr "новая_роль" -#: sql_help.c:4207 sql_help.c:4416 sql_help.c:4424 +#: sql_help.c:4215 sql_help.c:4424 sql_help.c:4432 msgid "savepoint_name" msgstr "имя_точки_сохранения" -#: sql_help.c:4564 sql_help.c:4622 sql_help.c:4821 sql_help.c:4879 -#: sql_help.c:5059 sql_help.c:5117 +#: sql_help.c:4572 sql_help.c:4630 sql_help.c:4829 sql_help.c:4887 +#: sql_help.c:5067 sql_help.c:5125 msgid "grouping_element" msgstr "элемент_группирования" -#: sql_help.c:4566 sql_help.c:4669 sql_help.c:4823 sql_help.c:5061 +#: sql_help.c:4574 sql_help.c:4677 sql_help.c:4831 sql_help.c:5069 msgid "window_name" msgstr "имя_окна" -#: sql_help.c:4567 sql_help.c:4670 sql_help.c:4824 sql_help.c:5062 +#: sql_help.c:4575 sql_help.c:4678 sql_help.c:4832 sql_help.c:5070 msgid "window_definition" msgstr "определение_окна" -#: sql_help.c:4568 sql_help.c:4582 sql_help.c:4626 sql_help.c:4671 -#: sql_help.c:4825 sql_help.c:4839 sql_help.c:4883 sql_help.c:5063 -#: sql_help.c:5077 sql_help.c:5121 +#: sql_help.c:4576 sql_help.c:4590 sql_help.c:4634 sql_help.c:4679 +#: sql_help.c:4833 sql_help.c:4847 sql_help.c:4891 sql_help.c:5071 +#: sql_help.c:5085 sql_help.c:5129 msgid "select" msgstr "select" -#: sql_help.c:4575 sql_help.c:4832 sql_help.c:5070 +#: sql_help.c:4583 sql_help.c:4840 sql_help.c:5078 msgid "where from_item can be one of:" msgstr "где допустимый источник_данных:" -#: sql_help.c:4578 sql_help.c:4584 sql_help.c:4587 sql_help.c:4591 -#: sql_help.c:4603 sql_help.c:4835 sql_help.c:4841 sql_help.c:4844 -#: sql_help.c:4848 sql_help.c:4860 sql_help.c:5073 sql_help.c:5079 -#: sql_help.c:5082 sql_help.c:5086 sql_help.c:5098 +#: sql_help.c:4586 sql_help.c:4592 sql_help.c:4595 sql_help.c:4599 +#: sql_help.c:4611 sql_help.c:4843 sql_help.c:4849 sql_help.c:4852 +#: sql_help.c:4856 sql_help.c:4868 sql_help.c:5081 sql_help.c:5087 +#: sql_help.c:5090 sql_help.c:5094 sql_help.c:5106 msgid "column_alias" msgstr "псевдоним_столбца" -#: sql_help.c:4579 sql_help.c:4836 sql_help.c:5074 +#: sql_help.c:4587 sql_help.c:4844 sql_help.c:5082 msgid "sampling_method" msgstr "метод_выборки" -#: sql_help.c:4581 sql_help.c:4838 sql_help.c:5076 +#: sql_help.c:4589 sql_help.c:4846 sql_help.c:5084 msgid "seed" msgstr "начальное_число" -#: sql_help.c:4585 sql_help.c:4624 sql_help.c:4842 sql_help.c:4881 -#: sql_help.c:5080 sql_help.c:5119 +#: sql_help.c:4593 sql_help.c:4632 sql_help.c:4850 sql_help.c:4889 +#: sql_help.c:5088 sql_help.c:5127 msgid "with_query_name" msgstr "имя_запроса_WITH" -#: sql_help.c:4595 sql_help.c:4598 sql_help.c:4601 sql_help.c:4852 -#: sql_help.c:4855 sql_help.c:4858 sql_help.c:5090 sql_help.c:5093 -#: sql_help.c:5096 +#: sql_help.c:4603 sql_help.c:4606 sql_help.c:4609 sql_help.c:4860 +#: sql_help.c:4863 sql_help.c:4866 sql_help.c:5098 sql_help.c:5101 +#: sql_help.c:5104 msgid "column_definition" msgstr "определение_столбца" -#: sql_help.c:4605 sql_help.c:4611 sql_help.c:4862 sql_help.c:4868 -#: sql_help.c:5100 sql_help.c:5106 +#: sql_help.c:4613 sql_help.c:4619 sql_help.c:4870 sql_help.c:4876 +#: sql_help.c:5108 sql_help.c:5114 msgid "join_type" msgstr "тип_соединения" -#: sql_help.c:4608 sql_help.c:4865 sql_help.c:5103 +#: sql_help.c:4616 sql_help.c:4873 sql_help.c:5111 msgid "join_column" msgstr "столбец_соединения" -#: sql_help.c:4609 sql_help.c:4866 sql_help.c:5104 +#: sql_help.c:4617 sql_help.c:4874 sql_help.c:5112 msgid "join_using_alias" msgstr "псевдоним_использования_соединения" -#: sql_help.c:4615 sql_help.c:4872 sql_help.c:5110 +#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 msgid "and grouping_element can be one of:" msgstr "где допустимый элемент_группирования:" -#: sql_help.c:4623 sql_help.c:4880 sql_help.c:5118 +#: sql_help.c:4631 sql_help.c:4888 sql_help.c:5126 msgid "and with_query is:" msgstr "и запрос_WITH:" -#: sql_help.c:4627 sql_help.c:4884 sql_help.c:5122 +#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 msgid "values" msgstr "значения" -#: sql_help.c:4628 sql_help.c:4885 sql_help.c:5123 +#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 msgid "insert" msgstr "insert" -#: sql_help.c:4629 sql_help.c:4886 sql_help.c:5124 +#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 msgid "update" msgstr "update" -#: sql_help.c:4630 sql_help.c:4887 sql_help.c:5125 +#: sql_help.c:4638 sql_help.c:4895 sql_help.c:5133 msgid "delete" msgstr "delete" -#: sql_help.c:4632 sql_help.c:4889 sql_help.c:5127 +#: sql_help.c:4640 sql_help.c:4897 sql_help.c:5135 msgid "search_seq_col_name" msgstr "имя_столбца_послед_поиска" -#: sql_help.c:4634 sql_help.c:4891 sql_help.c:5129 +#: sql_help.c:4642 sql_help.c:4899 sql_help.c:5137 msgid "cycle_mark_col_name" msgstr "имя_столбца_пометки_цикла" -#: sql_help.c:4635 sql_help.c:4892 sql_help.c:5130 +#: sql_help.c:4643 sql_help.c:4900 sql_help.c:5138 msgid "cycle_mark_value" msgstr "значение_пометки_цикла" -#: sql_help.c:4636 sql_help.c:4893 sql_help.c:5131 +#: sql_help.c:4644 sql_help.c:4901 sql_help.c:5139 msgid "cycle_mark_default" msgstr "пометка_цикла_по_умолчанию" -#: sql_help.c:4637 sql_help.c:4894 sql_help.c:5132 +#: sql_help.c:4645 sql_help.c:4902 sql_help.c:5140 msgid "cycle_path_col_name" msgstr "имя_столбца_пути_цикла" -#: sql_help.c:4664 +#: sql_help.c:4672 msgid "new_table" msgstr "новая_таблица" -#: sql_help.c:4735 +#: sql_help.c:4743 msgid "snapshot_id" msgstr "код_снимка" -#: sql_help.c:4995 +#: sql_help.c:5003 msgid "sort_expression" msgstr "выражение_сортировки" -#: sql_help.c:5139 sql_help.c:6123 +#: sql_help.c:5147 sql_help.c:6131 msgid "abort the current transaction" msgstr "прервать текущую транзакцию" -#: sql_help.c:5145 +#: sql_help.c:5153 msgid "change the definition of an aggregate function" msgstr "изменить определение агрегатной функции" -#: sql_help.c:5151 +#: sql_help.c:5159 msgid "change the definition of a collation" msgstr "изменить определение правила сортировки" -#: sql_help.c:5157 +#: sql_help.c:5165 msgid "change the definition of a conversion" msgstr "изменить определение преобразования" -#: sql_help.c:5163 +#: sql_help.c:5171 msgid "change a database" msgstr "изменить атрибуты базы данных" -#: sql_help.c:5169 +#: sql_help.c:5177 msgid "define default access privileges" msgstr "определить права доступа по умолчанию" -#: sql_help.c:5175 +#: sql_help.c:5183 msgid "change the definition of a domain" msgstr "изменить определение домена" -#: sql_help.c:5181 +#: sql_help.c:5189 msgid "change the definition of an event trigger" msgstr "изменить определение событийного триггера" -#: sql_help.c:5187 +#: sql_help.c:5195 msgid "change the definition of an extension" msgstr "изменить определение расширения" -#: sql_help.c:5193 +#: sql_help.c:5201 msgid "change the definition of a foreign-data wrapper" msgstr "изменить определение обёртки сторонних данных" -#: sql_help.c:5199 +#: sql_help.c:5207 msgid "change the definition of a foreign table" msgstr "изменить определение сторонней таблицы" -#: sql_help.c:5205 +#: sql_help.c:5213 msgid "change the definition of a function" msgstr "изменить определение функции" -#: sql_help.c:5211 +#: sql_help.c:5219 msgid "change role name or membership" msgstr "изменить имя роли или членство" -#: sql_help.c:5217 +#: sql_help.c:5225 msgid "change the definition of an index" msgstr "изменить определение индекса" -#: sql_help.c:5223 +#: sql_help.c:5231 msgid "change the definition of a procedural language" msgstr "изменить определение процедурного языка" -#: sql_help.c:5229 +#: sql_help.c:5237 msgid "change the definition of a large object" msgstr "изменить определение большого объекта" -#: sql_help.c:5235 +#: sql_help.c:5243 msgid "change the definition of a materialized view" msgstr "изменить определение материализованного представления" -#: sql_help.c:5241 +#: sql_help.c:5249 msgid "change the definition of an operator" msgstr "изменить определение оператора" -#: sql_help.c:5247 +#: sql_help.c:5255 msgid "change the definition of an operator class" msgstr "изменить определение класса операторов" -#: sql_help.c:5253 +#: sql_help.c:5261 msgid "change the definition of an operator family" msgstr "изменить определение семейства операторов" -#: sql_help.c:5259 +#: sql_help.c:5267 msgid "change the definition of a row-level security policy" msgstr "изменить определение политики защиты на уровне строк" -#: sql_help.c:5265 +#: sql_help.c:5273 msgid "change the definition of a procedure" msgstr "изменить определение процедуры" -#: sql_help.c:5271 +#: sql_help.c:5279 msgid "change the definition of a publication" msgstr "изменить определение публикации" -#: sql_help.c:5277 sql_help.c:5379 +#: sql_help.c:5285 sql_help.c:5387 msgid "change a database role" msgstr "изменить роль пользователя БД" -#: sql_help.c:5283 +#: sql_help.c:5291 msgid "change the definition of a routine" msgstr "изменить определение подпрограммы" -#: sql_help.c:5289 +#: sql_help.c:5297 msgid "change the definition of a rule" msgstr "изменить определение правила" -#: sql_help.c:5295 +#: sql_help.c:5303 msgid "change the definition of a schema" msgstr "изменить определение схемы" -#: sql_help.c:5301 +#: sql_help.c:5309 msgid "change the definition of a sequence generator" msgstr "изменить определение генератора последовательности" -#: sql_help.c:5307 +#: sql_help.c:5315 msgid "change the definition of a foreign server" msgstr "изменить определение стороннего сервера" -#: sql_help.c:5313 +#: sql_help.c:5321 msgid "change the definition of an extended statistics object" msgstr "изменить определение объекта расширенной статистики" -#: sql_help.c:5319 +#: sql_help.c:5327 msgid "change the definition of a subscription" msgstr "изменить определение подписки" -#: sql_help.c:5325 +#: sql_help.c:5333 msgid "change a server configuration parameter" msgstr "изменить параметр конфигурации сервера" -#: sql_help.c:5331 +#: sql_help.c:5339 msgid "change the definition of a table" msgstr "изменить определение таблицы" -#: sql_help.c:5337 +#: sql_help.c:5345 msgid "change the definition of a tablespace" msgstr "изменить определение табличного пространства" -#: sql_help.c:5343 +#: sql_help.c:5351 msgid "change the definition of a text search configuration" msgstr "изменить определение конфигурации текстового поиска" -#: sql_help.c:5349 +#: sql_help.c:5357 msgid "change the definition of a text search dictionary" msgstr "изменить определение словаря текстового поиска" -#: sql_help.c:5355 +#: sql_help.c:5363 msgid "change the definition of a text search parser" msgstr "изменить определение анализатора текстового поиска" -#: sql_help.c:5361 +#: sql_help.c:5369 msgid "change the definition of a text search template" msgstr "изменить определение шаблона текстового поиска" -#: sql_help.c:5367 +#: sql_help.c:5375 msgid "change the definition of a trigger" msgstr "изменить определение триггера" -#: sql_help.c:5373 +#: sql_help.c:5381 msgid "change the definition of a type" msgstr "изменить определение типа" -#: sql_help.c:5385 +#: sql_help.c:5393 msgid "change the definition of a user mapping" msgstr "изменить сопоставление пользователей" -#: sql_help.c:5391 +#: sql_help.c:5399 msgid "change the definition of a view" msgstr "изменить определение представления" -#: sql_help.c:5397 +#: sql_help.c:5405 msgid "collect statistics about a database" msgstr "собрать статистику о базе данных" -#: sql_help.c:5403 sql_help.c:6201 +#: sql_help.c:5411 sql_help.c:6209 msgid "start a transaction block" msgstr "начать транзакцию" -#: sql_help.c:5409 +#: sql_help.c:5417 msgid "invoke a procedure" msgstr "вызвать процедуру" -#: sql_help.c:5415 +#: sql_help.c:5423 msgid "force a write-ahead log checkpoint" msgstr "произвести контрольную точку в журнале предзаписи" -#: sql_help.c:5421 +#: sql_help.c:5429 msgid "close a cursor" msgstr "закрыть курсор" -#: sql_help.c:5427 +#: sql_help.c:5435 msgid "cluster a table according to an index" msgstr "перегруппировать таблицу по индексу" -#: sql_help.c:5433 +#: sql_help.c:5441 msgid "define or change the comment of an object" msgstr "задать или изменить комментарий объекта" -#: sql_help.c:5439 sql_help.c:5997 +#: sql_help.c:5447 sql_help.c:6005 msgid "commit the current transaction" msgstr "зафиксировать текущую транзакцию" -#: sql_help.c:5445 +#: sql_help.c:5453 msgid "commit a transaction that was earlier prepared for two-phase commit" msgstr "зафиксировать транзакцию, ранее подготовленную для двухфазной фиксации" -#: sql_help.c:5451 +#: sql_help.c:5459 msgid "copy data between a file and a table" msgstr "импорт/экспорт данных в файл" -#: sql_help.c:5457 +#: sql_help.c:5465 msgid "define a new access method" msgstr "создать новый метод доступа" -#: sql_help.c:5463 +#: sql_help.c:5471 msgid "define a new aggregate function" msgstr "создать агрегатную функцию" -#: sql_help.c:5469 +#: sql_help.c:5477 msgid "define a new cast" msgstr "создать приведение типов" -#: sql_help.c:5475 +#: sql_help.c:5483 msgid "define a new collation" msgstr "создать правило сортировки" -#: sql_help.c:5481 +#: sql_help.c:5489 msgid "define a new encoding conversion" msgstr "создать преобразование кодировки" -#: sql_help.c:5487 +#: sql_help.c:5495 msgid "create a new database" msgstr "создать базу данных" -#: sql_help.c:5493 +#: sql_help.c:5501 msgid "define a new domain" msgstr "создать домен" -#: sql_help.c:5499 +#: sql_help.c:5507 msgid "define a new event trigger" msgstr "создать событийный триггер" -#: sql_help.c:5505 +#: sql_help.c:5513 msgid "install an extension" msgstr "установить расширение" -#: sql_help.c:5511 +#: sql_help.c:5519 msgid "define a new foreign-data wrapper" msgstr "создать обёртку сторонних данных" -#: sql_help.c:5517 +#: sql_help.c:5525 msgid "define a new foreign table" msgstr "создать стороннюю таблицу" -#: sql_help.c:5523 +#: sql_help.c:5531 msgid "define a new function" msgstr "создать функцию" -#: sql_help.c:5529 sql_help.c:5589 sql_help.c:5691 +#: sql_help.c:5537 sql_help.c:5597 sql_help.c:5699 msgid "define a new database role" msgstr "создать роль пользователя БД" -#: sql_help.c:5535 +#: sql_help.c:5543 msgid "define a new index" msgstr "создать индекс" -#: sql_help.c:5541 +#: sql_help.c:5549 msgid "define a new procedural language" msgstr "создать процедурный язык" -#: sql_help.c:5547 +#: sql_help.c:5555 msgid "define a new materialized view" msgstr "создать материализованное представление" -#: sql_help.c:5553 +#: sql_help.c:5561 msgid "define a new operator" msgstr "создать оператор" -#: sql_help.c:5559 +#: sql_help.c:5567 msgid "define a new operator class" msgstr "создать класс операторов" -#: sql_help.c:5565 +#: sql_help.c:5573 msgid "define a new operator family" msgstr "создать семейство операторов" -#: sql_help.c:5571 +#: sql_help.c:5579 msgid "define a new row-level security policy for a table" msgstr "создать новую политику защиты на уровне строк для таблицы" -#: sql_help.c:5577 +#: sql_help.c:5585 msgid "define a new procedure" msgstr "создать процедуру" -#: sql_help.c:5583 +#: sql_help.c:5591 msgid "define a new publication" msgstr "создать публикацию" -#: sql_help.c:5595 +#: sql_help.c:5603 msgid "define a new rewrite rule" msgstr "создать правило перезаписи" -#: sql_help.c:5601 +#: sql_help.c:5609 msgid "define a new schema" msgstr "создать схему" -#: sql_help.c:5607 +#: sql_help.c:5615 msgid "define a new sequence generator" msgstr "создать генератор последовательностей" -#: sql_help.c:5613 +#: sql_help.c:5621 msgid "define a new foreign server" msgstr "создать сторонний сервер" -#: sql_help.c:5619 +#: sql_help.c:5627 msgid "define extended statistics" msgstr "создать расширенную статистику" -#: sql_help.c:5625 +#: sql_help.c:5633 msgid "define a new subscription" msgstr "создать подписку" -#: sql_help.c:5631 +#: sql_help.c:5639 msgid "define a new table" msgstr "создать таблицу" -#: sql_help.c:5637 sql_help.c:6159 +#: sql_help.c:5645 sql_help.c:6167 msgid "define a new table from the results of a query" msgstr "создать таблицу из результатов запроса" -#: sql_help.c:5643 +#: sql_help.c:5651 msgid "define a new tablespace" msgstr "создать табличное пространство" -#: sql_help.c:5649 +#: sql_help.c:5657 msgid "define a new text search configuration" msgstr "создать конфигурацию текстового поиска" -#: sql_help.c:5655 +#: sql_help.c:5663 msgid "define a new text search dictionary" msgstr "создать словарь текстового поиска" -#: sql_help.c:5661 +#: sql_help.c:5669 msgid "define a new text search parser" msgstr "создать анализатор текстового поиска" -#: sql_help.c:5667 +#: sql_help.c:5675 msgid "define a new text search template" msgstr "создать шаблон текстового поиска" -#: sql_help.c:5673 +#: sql_help.c:5681 msgid "define a new transform" msgstr "создать преобразование" -#: sql_help.c:5679 +#: sql_help.c:5687 msgid "define a new trigger" msgstr "создать триггер" -#: sql_help.c:5685 +#: sql_help.c:5693 msgid "define a new data type" msgstr "создать тип данных" -#: sql_help.c:5697 +#: sql_help.c:5705 msgid "define a new mapping of a user to a foreign server" msgstr "создать сопоставление пользователя для стороннего сервера" -#: sql_help.c:5703 +#: sql_help.c:5711 msgid "define a new view" msgstr "создать представление" -#: sql_help.c:5709 +#: sql_help.c:5717 msgid "deallocate a prepared statement" msgstr "освободить подготовленный оператор" -#: sql_help.c:5715 +#: sql_help.c:5723 msgid "define a cursor" msgstr "создать курсор" -#: sql_help.c:5721 +#: sql_help.c:5729 msgid "delete rows of a table" msgstr "удалить записи таблицы" -#: sql_help.c:5727 +#: sql_help.c:5735 msgid "discard session state" msgstr "очистить состояние сеанса" -#: sql_help.c:5733 +#: sql_help.c:5741 msgid "execute an anonymous code block" msgstr "выполнить анонимный блок кода" -#: sql_help.c:5739 +#: sql_help.c:5747 msgid "remove an access method" msgstr "удалить метод доступа" -#: sql_help.c:5745 +#: sql_help.c:5753 msgid "remove an aggregate function" msgstr "удалить агрегатную функцию" -#: sql_help.c:5751 +#: sql_help.c:5759 msgid "remove a cast" msgstr "удалить приведение типа" -#: sql_help.c:5757 +#: sql_help.c:5765 msgid "remove a collation" msgstr "удалить правило сортировки" -#: sql_help.c:5763 +#: sql_help.c:5771 msgid "remove a conversion" msgstr "удалить преобразование" -#: sql_help.c:5769 +#: sql_help.c:5777 msgid "remove a database" msgstr "удалить базу данных" -#: sql_help.c:5775 +#: sql_help.c:5783 msgid "remove a domain" msgstr "удалить домен" -#: sql_help.c:5781 +#: sql_help.c:5789 msgid "remove an event trigger" msgstr "удалить событийный триггер" -#: sql_help.c:5787 +#: sql_help.c:5795 msgid "remove an extension" msgstr "удалить расширение" -#: sql_help.c:5793 +#: sql_help.c:5801 msgid "remove a foreign-data wrapper" msgstr "удалить обёртку сторонних данных" -#: sql_help.c:5799 +#: sql_help.c:5807 msgid "remove a foreign table" msgstr "удалить стороннюю таблицу" -#: sql_help.c:5805 +#: sql_help.c:5813 msgid "remove a function" msgstr "удалить функцию" -#: sql_help.c:5811 sql_help.c:5877 sql_help.c:5979 +#: sql_help.c:5819 sql_help.c:5885 sql_help.c:5987 msgid "remove a database role" msgstr "удалить роль пользователя БД" -#: sql_help.c:5817 +#: sql_help.c:5825 msgid "remove an index" msgstr "удалить индекс" -#: sql_help.c:5823 +#: sql_help.c:5831 msgid "remove a procedural language" msgstr "удалить процедурный язык" -#: sql_help.c:5829 +#: sql_help.c:5837 msgid "remove a materialized view" msgstr "удалить материализованное представление" -#: sql_help.c:5835 +#: sql_help.c:5843 msgid "remove an operator" msgstr "удалить оператор" -#: sql_help.c:5841 +#: sql_help.c:5849 msgid "remove an operator class" msgstr "удалить класс операторов" -#: sql_help.c:5847 +#: sql_help.c:5855 msgid "remove an operator family" msgstr "удалить семейство операторов" -#: sql_help.c:5853 +#: sql_help.c:5861 msgid "remove database objects owned by a database role" msgstr "удалить объекты базы данных, принадлежащие роли" -#: sql_help.c:5859 +#: sql_help.c:5867 msgid "remove a row-level security policy from a table" msgstr "удалить из таблицы политику защиты на уровне строк" -#: sql_help.c:5865 +#: sql_help.c:5873 msgid "remove a procedure" msgstr "удалить процедуру" -#: sql_help.c:5871 +#: sql_help.c:5879 msgid "remove a publication" msgstr "удалить публикацию" -#: sql_help.c:5883 +#: sql_help.c:5891 msgid "remove a routine" msgstr "удалить подпрограмму" -#: sql_help.c:5889 +#: sql_help.c:5897 msgid "remove a rewrite rule" msgstr "удалить правило перезаписи" -#: sql_help.c:5895 +#: sql_help.c:5903 msgid "remove a schema" msgstr "удалить схему" -#: sql_help.c:5901 +#: sql_help.c:5909 msgid "remove a sequence" msgstr "удалить последовательность" -#: sql_help.c:5907 +#: sql_help.c:5915 msgid "remove a foreign server descriptor" msgstr "удалить описание стороннего сервера" -#: sql_help.c:5913 +#: sql_help.c:5921 msgid "remove extended statistics" msgstr "удалить расширенную статистику" -#: sql_help.c:5919 +#: sql_help.c:5927 msgid "remove a subscription" msgstr "удалить подписку" -#: sql_help.c:5925 +#: sql_help.c:5933 msgid "remove a table" msgstr "удалить таблицу" -#: sql_help.c:5931 +#: sql_help.c:5939 msgid "remove a tablespace" msgstr "удалить табличное пространство" -#: sql_help.c:5937 +#: sql_help.c:5945 msgid "remove a text search configuration" msgstr "удалить конфигурацию текстового поиска" -#: sql_help.c:5943 +#: sql_help.c:5951 msgid "remove a text search dictionary" msgstr "удалить словарь текстового поиска" -#: sql_help.c:5949 +#: sql_help.c:5957 msgid "remove a text search parser" msgstr "удалить анализатор текстового поиска" -#: sql_help.c:5955 +#: sql_help.c:5963 msgid "remove a text search template" msgstr "удалить шаблон текстового поиска" -#: sql_help.c:5961 +#: sql_help.c:5969 msgid "remove a transform" msgstr "удалить преобразование" -#: sql_help.c:5967 +#: sql_help.c:5975 msgid "remove a trigger" msgstr "удалить триггер" -#: sql_help.c:5973 +#: sql_help.c:5981 msgid "remove a data type" msgstr "удалить тип данных" -#: sql_help.c:5985 +#: sql_help.c:5993 msgid "remove a user mapping for a foreign server" msgstr "удалить сопоставление пользователя для стороннего сервера" -#: sql_help.c:5991 +#: sql_help.c:5999 msgid "remove a view" msgstr "удалить представление" -#: sql_help.c:6003 +#: sql_help.c:6011 msgid "execute a prepared statement" msgstr "выполнить подготовленный оператор" -#: sql_help.c:6009 +#: sql_help.c:6017 msgid "show the execution plan of a statement" msgstr "показать план выполнения оператора" -#: sql_help.c:6015 +#: sql_help.c:6023 msgid "retrieve rows from a query using a cursor" msgstr "получить результат запроса через курсор" -#: sql_help.c:6021 +#: sql_help.c:6029 msgid "define access privileges" msgstr "определить права доступа" -#: sql_help.c:6027 +#: sql_help.c:6035 msgid "import table definitions from a foreign server" msgstr "импортировать определения таблиц со стороннего сервера" -#: sql_help.c:6033 +#: sql_help.c:6041 msgid "create new rows in a table" msgstr "добавить строки в таблицу" -#: sql_help.c:6039 +#: sql_help.c:6047 msgid "listen for a notification" msgstr "ожидать уведомления" -#: sql_help.c:6045 +#: sql_help.c:6053 msgid "load a shared library file" msgstr "загрузить файл разделяемой библиотеки" -#: sql_help.c:6051 +#: sql_help.c:6059 msgid "lock a table" msgstr "заблокировать таблицу" -#: sql_help.c:6057 +#: sql_help.c:6065 msgid "conditionally insert, update, or delete rows of a table" msgstr "добавление, изменение или удаление строк таблицы по условию" -#: sql_help.c:6063 +#: sql_help.c:6071 msgid "position a cursor" msgstr "установить курсор" -#: sql_help.c:6069 +#: sql_help.c:6077 msgid "generate a notification" msgstr "сгенерировать уведомление" -#: sql_help.c:6075 +#: sql_help.c:6083 msgid "prepare a statement for execution" msgstr "подготовить оператор для выполнения" -#: sql_help.c:6081 +#: sql_help.c:6089 msgid "prepare the current transaction for two-phase commit" msgstr "подготовить текущую транзакцию для двухфазной фиксации" -#: sql_help.c:6087 +#: sql_help.c:6095 msgid "change the ownership of database objects owned by a database role" msgstr "изменить владельца объектов БД, принадлежащих заданной роли" -#: sql_help.c:6093 +#: sql_help.c:6101 msgid "replace the contents of a materialized view" msgstr "заменить содержимое материализованного представления" -#: sql_help.c:6099 +#: sql_help.c:6107 msgid "rebuild indexes" msgstr "перестроить индексы" -#: sql_help.c:6105 +#: sql_help.c:6113 msgid "destroy a previously defined savepoint" msgstr "удалить ранее определённую точку сохранения" -#: sql_help.c:6111 +#: sql_help.c:6119 msgid "restore the value of a run-time parameter to the default value" msgstr "восстановить исходное значение параметра выполнения" -#: sql_help.c:6117 +#: sql_help.c:6125 msgid "remove access privileges" msgstr "удалить права доступа" -#: sql_help.c:6129 +#: sql_help.c:6137 msgid "cancel a transaction that was earlier prepared for two-phase commit" msgstr "отменить транзакцию, подготовленную ранее для двухфазной фиксации" -#: sql_help.c:6135 +#: sql_help.c:6143 msgid "roll back to a savepoint" msgstr "откатиться к точке сохранения" -#: sql_help.c:6141 +#: sql_help.c:6149 msgid "define a new savepoint within the current transaction" msgstr "определить новую точку сохранения в текущей транзакции" -#: sql_help.c:6147 +#: sql_help.c:6155 msgid "define or change a security label applied to an object" msgstr "задать или изменить метку безопасности, применённую к объекту" -#: sql_help.c:6153 sql_help.c:6207 sql_help.c:6243 +#: sql_help.c:6161 sql_help.c:6215 sql_help.c:6251 msgid "retrieve rows from a table or view" msgstr "выбрать строки из таблицы или представления" -#: sql_help.c:6165 +#: sql_help.c:6173 msgid "change a run-time parameter" msgstr "изменить параметр выполнения" -#: sql_help.c:6171 +#: sql_help.c:6179 msgid "set constraint check timing for the current transaction" msgstr "установить время проверки ограничений для текущей транзакции" -#: sql_help.c:6177 +#: sql_help.c:6185 msgid "set the current user identifier of the current session" msgstr "задать идентификатор текущего пользователя в текущем сеансе" -#: sql_help.c:6183 +#: sql_help.c:6191 msgid "" "set the session user identifier and the current user identifier of the " "current session" @@ -6646,31 +6651,31 @@ msgstr "" "задать идентификатор пользователя сеанса и идентификатор текущего " "пользователя в текущем сеансе" -#: sql_help.c:6189 +#: sql_help.c:6197 msgid "set the characteristics of the current transaction" msgstr "задать свойства текущей транзакции" -#: sql_help.c:6195 +#: sql_help.c:6203 msgid "show the value of a run-time parameter" msgstr "показать значение параметра выполнения" -#: sql_help.c:6213 +#: sql_help.c:6221 msgid "empty a table or set of tables" msgstr "опустошить таблицу или набор таблиц" -#: sql_help.c:6219 +#: sql_help.c:6227 msgid "stop listening for a notification" msgstr "прекратить ожидание уведомлений" -#: sql_help.c:6225 +#: sql_help.c:6233 msgid "update rows of a table" msgstr "изменить строки таблицы" -#: sql_help.c:6231 +#: sql_help.c:6239 msgid "garbage-collect and optionally analyze a database" msgstr "произвести сборку мусора и проанализировать базу данных" -#: sql_help.c:6237 +#: sql_help.c:6245 msgid "compute a set of rows" msgstr "получить набор строк" diff --git a/src/bin/scripts/po/es.po b/src/bin/scripts/po/es.po index 16ad8d1d667..10802c8370c 100644 --- a/src/bin/scripts/po/es.po +++ b/src/bin/scripts/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: pgscripts (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:55+0000\n" +"POT-Creation-Date: 2024-11-09 06:24+0000\n" "PO-Revision-Date: 2022-11-04 13:14+0100\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -207,18 +207,18 @@ msgstr "" "\n" #: clusterdb.c:265 createdb.c:281 createuser.c:346 dropdb.c:172 dropuser.c:170 -#: pg_isready.c:226 reindexdb.c:762 vacuumdb.c:964 +#: pg_isready.c:226 reindexdb.c:766 vacuumdb.c:971 #, c-format msgid "Usage:\n" msgstr "Empleo:\n" -#: clusterdb.c:266 reindexdb.c:763 vacuumdb.c:965 +#: clusterdb.c:266 reindexdb.c:767 vacuumdb.c:972 #, c-format msgid " %s [OPTION]... [DBNAME]\n" msgstr " %s [OPCIÓN]... [BASE-DE-DATOS]\n" #: clusterdb.c:267 createdb.c:283 createuser.c:348 dropdb.c:174 dropuser.c:172 -#: pg_isready.c:229 reindexdb.c:764 vacuumdb.c:966 +#: pg_isready.c:229 reindexdb.c:768 vacuumdb.c:973 #, c-format msgid "" "\n" @@ -268,7 +268,7 @@ msgid " -?, --help show this help, then exit\n" msgstr " -?, --help mostrar esta ayuda y salir\n" #: clusterdb.c:276 createdb.c:298 createuser.c:370 dropdb.c:181 dropuser.c:179 -#: pg_isready.c:235 reindexdb.c:779 vacuumdb.c:991 +#: pg_isready.c:235 reindexdb.c:783 vacuumdb.c:998 #, c-format msgid "" "\n" @@ -277,32 +277,32 @@ msgstr "" "\n" "Opciones de conexión:\n" -#: clusterdb.c:277 createuser.c:371 dropdb.c:182 dropuser.c:180 vacuumdb.c:992 +#: clusterdb.c:277 createuser.c:371 dropdb.c:182 dropuser.c:180 vacuumdb.c:999 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr " -h, --host=ANFITRIÓN nombre del servidor o directorio del socket\n" -#: clusterdb.c:278 createuser.c:372 dropdb.c:183 dropuser.c:181 vacuumdb.c:993 +#: clusterdb.c:278 createuser.c:372 dropdb.c:183 dropuser.c:181 vacuumdb.c:1000 #, c-format msgid " -p, --port=PORT database server port\n" msgstr " -p, --port=PUERTO puerto del servidor\n" -#: clusterdb.c:279 dropdb.c:184 vacuumdb.c:994 +#: clusterdb.c:279 dropdb.c:184 vacuumdb.c:1001 #, c-format msgid " -U, --username=USERNAME user name to connect as\n" msgstr " -U, --username=USUARIO nombre de usuario para la conexión\n" -#: clusterdb.c:280 createuser.c:374 dropdb.c:185 dropuser.c:183 vacuumdb.c:995 +#: clusterdb.c:280 createuser.c:374 dropdb.c:185 dropuser.c:183 vacuumdb.c:1002 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password nunca pedir contraseña\n" -#: clusterdb.c:281 createuser.c:375 dropdb.c:186 dropuser.c:184 vacuumdb.c:996 +#: clusterdb.c:281 createuser.c:375 dropdb.c:186 dropuser.c:184 vacuumdb.c:1003 #, c-format msgid " -W, --password force password prompt\n" msgstr " -W, --password forzar la petición de contraseña\n" -#: clusterdb.c:282 dropdb.c:187 vacuumdb.c:997 +#: clusterdb.c:282 dropdb.c:187 vacuumdb.c:1004 #, c-format msgid " --maintenance-db=DBNAME alternate maintenance database\n" msgstr " --maintenance-db=BASE base de datos de mantención alternativa\n" @@ -317,7 +317,7 @@ msgstr "" "Lea la descripción de la orden CLUSTER de SQL para obtener mayores detalles.\n" #: clusterdb.c:284 createdb.c:306 createuser.c:376 dropdb.c:188 dropuser.c:185 -#: pg_isready.c:240 reindexdb.c:787 vacuumdb.c:999 +#: pg_isready.c:240 reindexdb.c:791 vacuumdb.c:1006 #, c-format msgid "" "\n" @@ -327,7 +327,7 @@ msgstr "" "Reporte errores a <%s>.\n" #: clusterdb.c:285 createdb.c:307 createuser.c:377 dropdb.c:189 dropuser.c:186 -#: pg_isready.c:241 reindexdb.c:788 vacuumdb.c:1000 +#: pg_isready.c:241 reindexdb.c:792 vacuumdb.c:1007 #, c-format msgid "%s home page: <%s>\n" msgstr "Sitio web de %s: <%s>\n" @@ -395,7 +395,7 @@ msgstr " %s [OPCIÓN]... [NOMBRE] [DESCRIPCIÓN]\n" msgid " -D, --tablespace=TABLESPACE default tablespace for the database\n" msgstr " -D, --tablespace=TBLSPC tablespace por omisión de la base de datos\n" -#: createdb.c:285 reindexdb.c:768 +#: createdb.c:285 reindexdb.c:772 #, c-format msgid " -e, --echo show the commands being sent to the server\n" msgstr " -e, --echo mostrar las órdenes enviadas al servidor\n" @@ -452,42 +452,42 @@ msgstr "" msgid " -T, --template=TEMPLATE template database to copy\n" msgstr " -T, --template=PATRÓN base de datos patrón a copiar\n" -#: createdb.c:296 reindexdb.c:777 +#: createdb.c:296 reindexdb.c:781 #, c-format msgid " -V, --version output version information, then exit\n" msgstr " -V, --version mostrar información de versión y salir\n" -#: createdb.c:297 reindexdb.c:778 +#: createdb.c:297 reindexdb.c:782 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help mostrar esta ayuda y salir\n" -#: createdb.c:299 reindexdb.c:780 +#: createdb.c:299 reindexdb.c:784 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr " -h, --host=ANFITRIÓN nombre del servidor o directorio del socket\n" -#: createdb.c:300 reindexdb.c:781 +#: createdb.c:300 reindexdb.c:785 #, c-format msgid " -p, --port=PORT database server port\n" msgstr " -p, --port=PUERTO puerto del servidor\n" -#: createdb.c:301 reindexdb.c:782 +#: createdb.c:301 reindexdb.c:786 #, c-format msgid " -U, --username=USERNAME user name to connect as\n" msgstr " -U, --username=USUARIO nombre de usuario para la conexión\n" -#: createdb.c:302 reindexdb.c:783 +#: createdb.c:302 reindexdb.c:787 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password nunca pedir contraseña\n" -#: createdb.c:303 reindexdb.c:784 +#: createdb.c:303 reindexdb.c:788 #, c-format msgid " -W, --password force password prompt\n" msgstr " -W, --password forzar la petición de contraseña\n" -#: createdb.c:304 reindexdb.c:785 +#: createdb.c:304 reindexdb.c:789 #, c-format msgid " --maintenance-db=DBNAME alternate maintenance database\n" msgstr " --maintenance-db=BASE base de datos de mantención alternativa\n" @@ -885,9 +885,9 @@ msgstr "no se pueden usar múltiples procesos para reindexar índices de sistema msgid "cannot use multiple jobs to reindex indexes" msgstr "no se pueden usar múltiples procesos para reindexar índices" -#: reindexdb.c:323 reindexdb.c:330 vacuumdb.c:425 vacuumdb.c:432 vacuumdb.c:439 -#: vacuumdb.c:446 vacuumdb.c:453 vacuumdb.c:460 vacuumdb.c:465 vacuumdb.c:469 -#: vacuumdb.c:473 +#: reindexdb.c:323 reindexdb.c:330 vacuumdb.c:424 vacuumdb.c:431 vacuumdb.c:438 +#: vacuumdb.c:445 vacuumdb.c:452 vacuumdb.c:459 vacuumdb.c:464 vacuumdb.c:468 +#: vacuumdb.c:472 #, c-format msgid "cannot use the \"%s\" option on server versions older than PostgreSQL %s" msgstr "no se puede usar la opción «%s» cuando con versiones más antiguas que PostgreSQL %s" @@ -922,12 +922,12 @@ msgstr "falló la reindexación de los catálogos de sistema en la base de datos msgid "reindexing of table \"%s\" in database \"%s\" failed: %s" msgstr "falló la reindexación de la tabla «%s» en la base de datos «%s»: %s" -#: reindexdb.c:744 +#: reindexdb.c:748 #, c-format msgid "%s: reindexing database \"%s\"\n" msgstr "%s: reindexando la base de datos «%s»\n" -#: reindexdb.c:761 +#: reindexdb.c:765 #, c-format msgid "" "%s reindexes a PostgreSQL database.\n" @@ -936,62 +936,62 @@ msgstr "" "%s reindexa una base de datos PostgreSQL.\n" "\n" -#: reindexdb.c:765 +#: reindexdb.c:769 #, c-format msgid " -a, --all reindex all databases\n" msgstr " -a, --all reindexar todas las bases de datos\n" -#: reindexdb.c:766 +#: reindexdb.c:770 #, c-format msgid " --concurrently reindex concurrently\n" msgstr " --concurrently reindexar en modo concurrente\n" -#: reindexdb.c:767 +#: reindexdb.c:771 #, c-format msgid " -d, --dbname=DBNAME database to reindex\n" msgstr " -d, --dbname=BASE-DATOS base de datos a reindexar\n" -#: reindexdb.c:769 +#: reindexdb.c:773 #, c-format msgid " -i, --index=INDEX recreate specific index(es) only\n" msgstr " -i, --index=ÍNDICE recrear sólo este o estos índice(s)\n" -#: reindexdb.c:770 +#: reindexdb.c:774 #, c-format msgid " -j, --jobs=NUM use this many concurrent connections to reindex\n" msgstr " -j, --jobs=NÚM usar esta cantidad de conexiones concurrentes\n" -#: reindexdb.c:771 +#: reindexdb.c:775 #, c-format msgid " -q, --quiet don't write any messages\n" msgstr " -q, --quiet no desplegar mensajes\n" -#: reindexdb.c:772 +#: reindexdb.c:776 #, c-format msgid " -s, --system reindex system catalogs only\n" msgstr " -s, --system sólo reindexar los catálogos del sistema\n" -#: reindexdb.c:773 +#: reindexdb.c:777 #, c-format msgid " -S, --schema=SCHEMA reindex specific schema(s) only\n" msgstr " -S, --schema=ESQUEMA reindexar sólo este o estos esquemas\n" -#: reindexdb.c:774 +#: reindexdb.c:778 #, c-format msgid " -t, --table=TABLE reindex specific table(s) only\n" msgstr " -t, --table=TABLA reindexar sólo esta(s) tabla(s)\n" -#: reindexdb.c:775 +#: reindexdb.c:779 #, c-format msgid " --tablespace=TABLESPACE tablespace where indexes are rebuilt\n" msgstr " --tablespace=TABLESPACE tablespace donde se reconstruirán los índices\n" -#: reindexdb.c:776 +#: reindexdb.c:780 #, c-format msgid " -v, --verbose write a lot of output\n" msgstr " -v, --verbose desplegar varios mensajes informativos\n" -#: reindexdb.c:786 +#: reindexdb.c:790 #, c-format msgid "" "\n" @@ -1026,39 +1026,39 @@ msgstr "no se pueden limpiar todas las bases de datos y una de ellas en particul msgid "cannot vacuum specific table(s) in all databases" msgstr "no es posible limpiar tablas específicas en todas las bases de datos" -#: vacuumdb.c:412 +#: vacuumdb.c:411 msgid "Generating minimal optimizer statistics (1 target)" msgstr "Generando estadísticas mínimas para el optimizador (tamaño = 1)" -#: vacuumdb.c:413 +#: vacuumdb.c:412 msgid "Generating medium optimizer statistics (10 targets)" msgstr "Generando estadísticas medias para el optimizador (tamaño = 10)" -#: vacuumdb.c:414 +#: vacuumdb.c:413 msgid "Generating default (full) optimizer statistics" msgstr "Generando estadísticas predeterminadas (completas) para el optimizador" -#: vacuumdb.c:479 +#: vacuumdb.c:478 #, c-format msgid "%s: processing database \"%s\": %s\n" msgstr "%s: procesando la base de datos «%s»: %s\n" -#: vacuumdb.c:482 +#: vacuumdb.c:481 #, c-format msgid "%s: vacuuming database \"%s\"\n" msgstr "%s: limpiando la base de datos «%s»\n" -#: vacuumdb.c:952 +#: vacuumdb.c:959 #, c-format msgid "vacuuming of table \"%s\" in database \"%s\" failed: %s" msgstr "falló la limpieza de la tabla «%s» en la base de datos «%s»: %s" -#: vacuumdb.c:955 +#: vacuumdb.c:962 #, c-format msgid "vacuuming of database \"%s\" failed: %s" msgstr "falló la limpieza de la base de datos «%s»: %s" -#: vacuumdb.c:963 +#: vacuumdb.c:970 #, c-format msgid "" "%s cleans and analyzes a PostgreSQL database.\n" @@ -1067,116 +1067,116 @@ msgstr "" "%s limpia (VACUUM) y analiza una base de datos PostgreSQL.\n" "\n" -#: vacuumdb.c:967 +#: vacuumdb.c:974 #, c-format msgid " -a, --all vacuum all databases\n" msgstr " -a, --all limpia todas las bases de datos\n" -#: vacuumdb.c:968 +#: vacuumdb.c:975 #, c-format msgid " -d, --dbname=DBNAME database to vacuum\n" msgstr " -d, --dbname=BASE base de datos a limpiar\n" -#: vacuumdb.c:969 +#: vacuumdb.c:976 #, c-format msgid " --disable-page-skipping disable all page-skipping behavior\n" msgstr " --disable-page-skipping desactiva todo comportamiento de saltar páginas\n" -#: vacuumdb.c:970 +#: vacuumdb.c:977 #, c-format msgid " -e, --echo show the commands being sent to the server\n" msgstr " -e, --echo mostrar las órdenes enviadas al servidor\n" -#: vacuumdb.c:971 +#: vacuumdb.c:978 #, c-format msgid " -f, --full do full vacuuming\n" msgstr " -f, --full usar «vacuum full»\n" -#: vacuumdb.c:972 +#: vacuumdb.c:979 #, c-format msgid " -F, --freeze freeze row transaction information\n" msgstr " -F, --freeze usar «vacuum freeze»\n" -#: vacuumdb.c:973 +#: vacuumdb.c:980 #, c-format msgid " --force-index-cleanup always remove index entries that point to dead tuples\n" msgstr " --force-index-cleanup siempre eliminar entradas de índice que apunten a tuplas muertas\n" -#: vacuumdb.c:974 +#: vacuumdb.c:981 #, c-format msgid " -j, --jobs=NUM use this many concurrent connections to vacuum\n" msgstr " -j, --jobs=NUM usar esta cantidad de conexiones concurrentes\n" -#: vacuumdb.c:975 +#: vacuumdb.c:982 #, c-format msgid " --min-mxid-age=MXID_AGE minimum multixact ID age of tables to vacuum\n" msgstr " --min-mxid-age=EDAD_MXID edad de multixact ID mínima de tablas a limpiar\n" -#: vacuumdb.c:976 +#: vacuumdb.c:983 #, c-format msgid " --min-xid-age=XID_AGE minimum transaction ID age of tables to vacuum\n" msgstr " --min-xid-age=EDAD_XID edad de ID de transacción mínima de tablas a limpiar\n" -#: vacuumdb.c:977 +#: vacuumdb.c:984 #, c-format msgid " --no-index-cleanup don't remove index entries that point to dead tuples\n" msgstr " --no-index-cleanup no eliminar entradas de índice que apunten a tuplas muertas\n" -#: vacuumdb.c:978 +#: vacuumdb.c:985 #, c-format msgid " --no-process-toast skip the TOAST table associated with the table to vacuum\n" msgstr " --no-process-toast omitir la tabla TOAST asociada con la tabla a la que se hará vacuum\n" -#: vacuumdb.c:979 +#: vacuumdb.c:986 #, c-format msgid " --no-truncate don't truncate empty pages at the end of the table\n" msgstr " --no-truncate no truncar las páginas vacías al final de la tabla\n" -#: vacuumdb.c:980 +#: vacuumdb.c:987 #, c-format msgid " -P, --parallel=PARALLEL_WORKERS use this many background workers for vacuum, if available\n" msgstr " -P, --parallel=NPROCS usar esta cantidad de procesos para vacuum, si están disponibles\n" -#: vacuumdb.c:981 +#: vacuumdb.c:988 #, c-format msgid " -q, --quiet don't write any messages\n" msgstr " -q, --quiet no desplegar mensajes\n" -#: vacuumdb.c:982 +#: vacuumdb.c:989 #, c-format msgid " --skip-locked skip relations that cannot be immediately locked\n" msgstr " --skip-locked ignorar relaciones que no pueden bloquearse inmediatamente\n" -#: vacuumdb.c:983 +#: vacuumdb.c:990 #, c-format msgid " -t, --table='TABLE[(COLUMNS)]' vacuum specific table(s) only\n" msgstr "" " -t, --table='TABLA[(COLUMNAS)]'\n" " limpiar sólo esta(s) tabla(s)\n" -#: vacuumdb.c:984 +#: vacuumdb.c:991 #, c-format msgid " -v, --verbose write a lot of output\n" msgstr " -v, --verbose desplegar varios mensajes informativos\n" -#: vacuumdb.c:985 +#: vacuumdb.c:992 #, c-format msgid " -V, --version output version information, then exit\n" msgstr " -V, --version mostrar información de versión y salir\n" -#: vacuumdb.c:986 +#: vacuumdb.c:993 #, c-format msgid " -z, --analyze update optimizer statistics\n" msgstr " -z, --analyze actualizar las estadísticas del optimizador\n" -#: vacuumdb.c:987 +#: vacuumdb.c:994 #, c-format msgid " -Z, --analyze-only only update optimizer statistics; no vacuum\n" msgstr "" " -Z, --analyze-only sólo actualizar las estadísticas del optimizador;\n" " no hacer vacuum\n" -#: vacuumdb.c:988 +#: vacuumdb.c:995 #, c-format msgid "" " --analyze-in-stages only update optimizer statistics, in multiple\n" @@ -1186,12 +1186,12 @@ msgstr "" " en múltiples etapas para resultados más rápidos;\n" " no hacer vacuum\n" -#: vacuumdb.c:990 +#: vacuumdb.c:997 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help mostrar esta ayuda y salir\n" -#: vacuumdb.c:998 +#: vacuumdb.c:1005 #, c-format msgid "" "\n" diff --git a/src/bin/scripts/po/fr.po b/src/bin/scripts/po/fr.po index d024520d5d3..c4b4212852f 100644 --- a/src/bin/scripts/po/fr.po +++ b/src/bin/scripts/po/fr.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2023-10-29 12:05+0000\n" -"PO-Revision-Date: 2023-10-30 13:37+0100\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4\n" +"X-Generator: Poedit 3.5\n" #: ../../../src/common/logging.c:276 #, c-format @@ -1246,199 +1246,3 @@ msgid "" msgstr "" "\n" "Lire la description de la commande SQL VACUUM pour plus d'informations.\n" - -#~ msgid "" -#~ "\n" -#~ "If one of -d, -D, -r, -R, -s, -S, and ROLENAME is not specified, you will\n" -#~ "be prompted interactively.\n" -#~ msgstr "" -#~ "\n" -#~ "Si une des options -d, -D, -r, -R, -s, -S et RÔLE n'est pas précisée,\n" -#~ "elle sera demandée interactivement.\n" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid " %s [OPTION]... LANGNAME [DBNAME]\n" -#~ msgstr " %s [OPTION]... NOMLANGAGE [BASE]\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --help show this help, then exit\n" -#~ msgstr " --help affiche cette aide et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid " -E, --encrypted encrypt stored password\n" -#~ msgstr " -E, --encrypted chiffre le mot de passe stocké\n" - -#~ msgid " -N, --unencrypted do not encrypt stored password\n" -#~ msgstr " -N, --unencrypted ne chiffre pas le mot de passe stocké\n" - -#~ msgid " -d, --dbname=DBNAME database from which to remove the language\n" -#~ msgstr "" -#~ " -d, --dbname=BASE base de données à partir de laquelle\n" -#~ " supprimer le langage\n" - -#~ msgid " -d, --dbname=DBNAME database to install language in\n" -#~ msgstr " -d, --dbname=BASE base sur laquelle installer le langage\n" - -#~ msgid " -l, --list show a list of currently installed languages\n" -#~ msgstr "" -#~ " -l, --list affiche la liste des langages déjà\n" -#~ " installés\n" - -#~ msgid "" -#~ "%s installs a procedural language into a PostgreSQL database.\n" -#~ "\n" -#~ msgstr "" -#~ "%s installe un langage de procédures dans une base de données PostgreSQL.\n" -#~ "\n" - -#~ msgid "" -#~ "%s removes a procedural language from a database.\n" -#~ "\n" -#~ msgstr "" -#~ "%s supprime un langage procédural d'une base de données.\n" -#~ "\n" - -#~ msgid "%s: \"%s\" is not a valid encoding name\n" -#~ msgstr "%s : « %s » n'est pas un nom d'encodage valide\n" - -#~ msgid "%s: %s" -#~ msgstr "%s : %s" - -#~ msgid "%s: cannot use the \"freeze\" option when performing only analyze\n" -#~ msgstr "" -#~ "%s : ne peut utiliser l'option « freeze » lors de l'exécution d'un ANALYZE\n" -#~ "seul\n" - -#~ msgid "%s: could not get current user name: %s\n" -#~ msgstr "%s : n'a pas pu récupérer le nom de l'utilisateur actuel : %s\n" - -#~ msgid "%s: could not obtain information about current user: %s\n" -#~ msgstr "%s : n'a pas pu obtenir les informations concernant l'utilisateur actuel : %s\n" - -#~ msgid "%s: invalid socket: %s" -#~ msgstr "%s : socket invalide : %s" - -#~ msgid "%s: language \"%s\" is already installed in database \"%s\"\n" -#~ msgstr "%s : le langage « %s » est déjà installé sur la base de données « %s »\n" - -#~ msgid "%s: language \"%s\" is not installed in database \"%s\"\n" -#~ msgstr "%s : le langage « %s » n'est pas installé dans la base de données « %s »\n" - -#~ msgid "%s: language installation failed: %s" -#~ msgstr "%s : l'installation du langage a échoué : %s" - -#~ msgid "%s: language removal failed: %s" -#~ msgstr "%s : la suppression du langage a échoué : %s" - -#~ msgid "%s: missing required argument language name\n" -#~ msgstr "%s : argument nom du langage requis mais manquant\n" - -#~ msgid "%s: out of memory\n" -#~ msgstr "%s : mémoire épuisée\n" - -#~ msgid "%s: query failed: %s" -#~ msgstr "%s : échec de la requête : %s" - -#~ msgid "%s: query returned %d row instead of one: %s\n" -#~ msgid_plural "%s: query returned %d rows instead of one: %s\n" -#~ msgstr[0] "%s : la requête a renvoyé %d ligne au lieu d'une seule : %s\n" -#~ msgstr[1] "%s : la requête a renvoyé %d lignes au lieu d'une seule : %s\n" - -#~ msgid "%s: query was: %s\n" -#~ msgstr "%s : la requête était : %s\n" - -#~ msgid "%s: still %s functions declared in language \"%s\"; language not removed\n" -#~ msgstr "" -#~ "%s : il existe encore %s fonctions déclarées dans le langage « %s » ;\n" -#~ "langage non supprimé\n" - -#~ msgid "%s: too many command-line arguments (first is \"%s\")\n" -#~ msgstr "%s : trop d'arguments en ligne de commande (le premier étant « %s »)\n" - -#~ msgid "%s: too many parallel jobs requested (maximum: %d)\n" -#~ msgstr "%s : trop de jobs en parallèle demandés (maximum %d)\n" - -#~ msgid "Could not send cancel request: %s" -#~ msgstr "N'a pas pu envoyer la requête d'annulation : %s" - -#~ msgid "Name" -#~ msgstr "Nom" - -#~ msgid "Procedural Languages" -#~ msgstr "Langages procéduraux" - -#~ msgid "Trusted?" -#~ msgstr "De confiance (trusted) ?" - -#, c-format -#~ msgid "Try \"%s --help\" for more information.\n" -#~ msgstr "Essayer « %s --help » pour plus d'informations.\n" - -#~ msgid "could not connect to database %s: %s" -#~ msgstr "n'a pas pu se connecter à la base de données %s : %s" - -#, c-format -#~ msgid "fatal: " -#~ msgstr "fatal : " - -#, c-format -#~ msgid "invalid value for --connection-limit: %s" -#~ msgstr "valeur invalide pour --connection-limit : %s" - -#, c-format -#~ msgid "minimum multixact ID age must be at least 1" -#~ msgstr "l'âge minimum de l'identifiant de multitransaction doit au moins être 1" - -#, c-format -#~ msgid "minimum transaction ID age must be at least 1" -#~ msgstr "l'identifiant de la transaction (-x) doit valoir au moins 1" - -#~ msgid "no" -#~ msgstr "non" - -#, c-format -#~ msgid "number of parallel jobs must be at least 1" -#~ msgstr "le nombre maximum de jobs en parallèle doit être au moins de 1" - -#, c-format -#~ msgid "only one of --locale and --lc-collate can be specified" -#~ msgstr "une seule des options --locale et --lc-collate peut être indiquée" - -#, c-format -#~ msgid "only one of --locale and --lc-ctype can be specified" -#~ msgstr "une seule des options --locale et --lc-ctype peut être indiquée" - -#~ msgid "parallel vacuum degree must be a non-negative integer" -#~ msgstr "le degré de parallélisation du VACUUM doit être un entier non négatif" - -#, c-format -#~ msgid "parallel workers for vacuum must be greater than or equal to zero" -#~ msgstr "le nombre de processus parallélisés pour l VACUUM doit être supérieur à zéro" - -#~ msgid "pg_strdup: cannot duplicate null pointer (internal error)\n" -#~ msgstr "pg_strdup : ne peut pas dupliquer un pointeur nul (erreur interne)\n" - -#~ msgid "reindexing of system catalogs failed: %s" -#~ msgstr "la réindexation des catalogues système a échoué : %s" - -#~ msgid "yes" -#~ msgstr "oui" diff --git a/src/bin/scripts/po/ru.po b/src/bin/scripts/po/ru.po index 65a9219864f..0373e3c36b8 100644 --- a/src/bin/scripts/po/ru.po +++ b/src/bin/scripts/po/ru.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PostgreSQL package. # Serguei A. Mokhov, , 2003-2004. # Oleg Bartunov , 2004. -# Alexander Lakhin , 2012-2017, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2019, 2020, 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: pgscripts (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2023-11-03 09:09+0300\n" -"PO-Revision-Date: 2023-11-03 10:36+0300\n" +"POT-Creation-Date: 2024-11-02 08:22+0300\n" +"PO-Revision-Date: 2024-09-05 08:25+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" "Language: ru\n" @@ -205,18 +205,18 @@ msgstr "" "\n" #: clusterdb.c:265 createdb.c:281 createuser.c:346 dropdb.c:172 dropuser.c:170 -#: pg_isready.c:226 reindexdb.c:762 vacuumdb.c:964 +#: pg_isready.c:226 reindexdb.c:766 vacuumdb.c:971 #, c-format msgid "Usage:\n" msgstr "Использование:\n" -#: clusterdb.c:266 reindexdb.c:763 vacuumdb.c:965 +#: clusterdb.c:266 reindexdb.c:767 vacuumdb.c:972 #, c-format msgid " %s [OPTION]... [DBNAME]\n" msgstr " %s [ПАРАМЕТР]... [ИМЯ_БД]\n" #: clusterdb.c:267 createdb.c:283 createuser.c:348 dropdb.c:174 dropuser.c:172 -#: pg_isready.c:229 reindexdb.c:764 vacuumdb.c:966 +#: pg_isready.c:229 reindexdb.c:768 vacuumdb.c:973 #, c-format msgid "" "\n" @@ -268,7 +268,7 @@ msgid " -?, --help show this help, then exit\n" msgstr " -?, --help показать эту справку и выйти\n" #: clusterdb.c:276 createdb.c:298 createuser.c:370 dropdb.c:181 dropuser.c:179 -#: pg_isready.c:235 reindexdb.c:779 vacuumdb.c:991 +#: pg_isready.c:235 reindexdb.c:783 vacuumdb.c:998 #, c-format msgid "" "\n" @@ -277,34 +277,35 @@ msgstr "" "\n" "Параметры подключения:\n" -#: clusterdb.c:277 createuser.c:371 dropdb.c:182 dropuser.c:180 vacuumdb.c:992 +#: clusterdb.c:277 createuser.c:371 dropdb.c:182 dropuser.c:180 vacuumdb.c:999 #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" -#: clusterdb.c:278 createuser.c:372 dropdb.c:183 dropuser.c:181 vacuumdb.c:993 +#: clusterdb.c:278 createuser.c:372 dropdb.c:183 dropuser.c:181 vacuumdb.c:1000 #, c-format msgid " -p, --port=PORT database server port\n" msgstr " -p, --port=ПОРТ порт сервера баз данных\n" -#: clusterdb.c:279 dropdb.c:184 vacuumdb.c:994 +#: clusterdb.c:279 dropdb.c:184 vacuumdb.c:1001 #, c-format msgid " -U, --username=USERNAME user name to connect as\n" msgstr "" " -U, --username=ИМЯ имя пользователя для подключения к серверу\n" -#: clusterdb.c:280 createuser.c:374 dropdb.c:185 dropuser.c:183 vacuumdb.c:995 +#: clusterdb.c:280 createuser.c:374 dropdb.c:185 dropuser.c:183 vacuumdb.c:1002 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password не запрашивать пароль\n" -#: clusterdb.c:281 createuser.c:375 dropdb.c:186 dropuser.c:184 vacuumdb.c:996 +#: clusterdb.c:281 createuser.c:375 dropdb.c:186 dropuser.c:184 vacuumdb.c:1003 #, c-format msgid " -W, --password force password prompt\n" msgstr " -W, --password запросить пароль\n" -#: clusterdb.c:282 dropdb.c:187 vacuumdb.c:997 +#: clusterdb.c:282 dropdb.c:187 vacuumdb.c:1004 #, c-format msgid " --maintenance-db=DBNAME alternate maintenance database\n" msgstr " --maintenance-db=ИМЯ_БД сменить опорную базу данных\n" @@ -319,7 +320,7 @@ msgstr "" "Подробнее о кластеризации вы можете узнать в описании SQL-команды CLUSTER.\n" #: clusterdb.c:284 createdb.c:306 createuser.c:376 dropdb.c:188 dropuser.c:185 -#: pg_isready.c:240 reindexdb.c:787 vacuumdb.c:999 +#: pg_isready.c:240 reindexdb.c:791 vacuumdb.c:1006 #, c-format msgid "" "\n" @@ -329,7 +330,7 @@ msgstr "" "Об ошибках сообщайте по адресу <%s>.\n" #: clusterdb.c:285 createdb.c:307 createuser.c:377 dropdb.c:189 dropuser.c:186 -#: pg_isready.c:241 reindexdb.c:788 vacuumdb.c:1000 +#: pg_isready.c:241 reindexdb.c:792 vacuumdb.c:1007 #, c-format msgid "%s home page: <%s>\n" msgstr "Домашняя страница %s: <%s>\n" @@ -401,7 +402,7 @@ msgstr "" " -D, --tablespace=ТАБЛ_ПРОСТР табличное пространство по умолчанию для базы " "данных\n" -#: createdb.c:285 reindexdb.c:768 +#: createdb.c:285 reindexdb.c:772 #, c-format msgid "" " -e, --echo show the commands being sent to the server\n" @@ -464,45 +465,46 @@ msgstr "" msgid " -T, --template=TEMPLATE template database to copy\n" msgstr " -T, --template=ШАБЛОН исходная база данных для копирования\n" -#: createdb.c:296 reindexdb.c:777 +#: createdb.c:296 reindexdb.c:781 #, c-format msgid " -V, --version output version information, then exit\n" msgstr " -V, --version показать версию и выйти\n" -#: createdb.c:297 reindexdb.c:778 +#: createdb.c:297 reindexdb.c:782 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help показать эту справку и выйти\n" -#: createdb.c:299 reindexdb.c:780 +#: createdb.c:299 reindexdb.c:784 #, c-format msgid "" " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" -#: createdb.c:300 reindexdb.c:781 +#: createdb.c:300 reindexdb.c:785 #, c-format msgid " -p, --port=PORT database server port\n" msgstr " -p, --port=ПОРТ порт сервера баз данных\n" -#: createdb.c:301 reindexdb.c:782 +#: createdb.c:301 reindexdb.c:786 #, c-format msgid " -U, --username=USERNAME user name to connect as\n" msgstr "" " -U, --username=ИМЯ имя пользователя для подключения к серверу\n" -#: createdb.c:302 reindexdb.c:783 +#: createdb.c:302 reindexdb.c:787 #, c-format msgid " -w, --no-password never prompt for password\n" msgstr " -w, --no-password не запрашивать пароль\n" -#: createdb.c:303 reindexdb.c:784 +#: createdb.c:303 reindexdb.c:788 #, c-format msgid " -W, --password force password prompt\n" msgstr " -W, --password запросить пароль\n" -#: createdb.c:304 reindexdb.c:785 +#: createdb.c:304 reindexdb.c:789 #, c-format msgid " --maintenance-db=DBNAME alternate maintenance database\n" msgstr " --maintenance-db=ИМЯ_БД сменить опорную базу данных\n" @@ -850,7 +852,8 @@ msgstr " -?, --help показать эту справку и в #, c-format msgid " -h, --host=HOSTNAME database server host or socket directory\n" msgstr "" -" -h, --host=ИМЯ имя сервера баз данных или каталог сокетов\n" +" -h, --host=ИМЯ компьютер с сервером баз данных или каталог " +"сокетов\n" #: pg_isready.c:237 #, c-format @@ -931,9 +934,9 @@ msgstr "" msgid "cannot use multiple jobs to reindex indexes" msgstr "нельзя задействовать несколько заданий для перестроения индексов" -#: reindexdb.c:323 reindexdb.c:330 vacuumdb.c:425 vacuumdb.c:432 vacuumdb.c:439 -#: vacuumdb.c:446 vacuumdb.c:453 vacuumdb.c:460 vacuumdb.c:465 vacuumdb.c:469 -#: vacuumdb.c:473 +#: reindexdb.c:323 reindexdb.c:330 vacuumdb.c:424 vacuumdb.c:431 vacuumdb.c:438 +#: vacuumdb.c:445 vacuumdb.c:452 vacuumdb.c:459 vacuumdb.c:464 vacuumdb.c:468 +#: vacuumdb.c:472 #, c-format msgid "" "cannot use the \"%s\" option on server versions older than PostgreSQL %s" @@ -972,12 +975,12 @@ msgstr "переиндексировать системные каталоги msgid "reindexing of table \"%s\" in database \"%s\" failed: %s" msgstr "переиндексировать таблицу \"%s\" в базе \"%s\" не удалось: %s" -#: reindexdb.c:744 +#: reindexdb.c:748 #, c-format msgid "%s: reindexing database \"%s\"\n" msgstr "%s: переиндексация базы данных \"%s\"\n" -#: reindexdb.c:761 +#: reindexdb.c:765 #, c-format msgid "" "%s reindexes a PostgreSQL database.\n" @@ -986,29 +989,29 @@ msgstr "" "%s переиндексирует базу данных PostgreSQL.\n" "\n" -#: reindexdb.c:765 +#: reindexdb.c:769 #, c-format msgid " -a, --all reindex all databases\n" msgstr " -a, --all переиндексировать все базы данных\n" -#: reindexdb.c:766 +#: reindexdb.c:770 #, c-format msgid " --concurrently reindex concurrently\n" msgstr "" " --concurrently переиндексировать в неблокирующем режиме\n" -#: reindexdb.c:767 +#: reindexdb.c:771 #, c-format msgid " -d, --dbname=DBNAME database to reindex\n" msgstr " -d, --dbname=БД имя базы для переиндексации\n" -#: reindexdb.c:769 +#: reindexdb.c:773 #, c-format msgid " -i, --index=INDEX recreate specific index(es) only\n" msgstr "" " -i, --index=ИНДЕКС пересоздать только указанный индекс(ы)\n" -#: reindexdb.c:770 +#: reindexdb.c:774 #, c-format msgid "" " -j, --jobs=NUM use this many concurrent connections to " @@ -1017,24 +1020,24 @@ msgstr "" " -j, --jobs=ЧИСЛО запускать для переиндексации заданное число\n" " заданий\n" -#: reindexdb.c:771 +#: reindexdb.c:775 #, c-format msgid " -q, --quiet don't write any messages\n" msgstr " -q, --quiet не выводить сообщения\n" -#: reindexdb.c:772 +#: reindexdb.c:776 #, c-format msgid " -s, --system reindex system catalogs only\n" msgstr "" " -s, --system переиндексировать только системные каталоги\n" -#: reindexdb.c:773 +#: reindexdb.c:777 #, c-format msgid " -S, --schema=SCHEMA reindex specific schema(s) only\n" msgstr "" " -S, --schema=СХЕМА переиндексировать только указанную схему(ы)\n" -#: reindexdb.c:774 +#: reindexdb.c:778 #, c-format msgid " -t, --table=TABLE reindex specific table(s) only\n" msgstr "" @@ -1042,19 +1045,19 @@ msgstr "" "таблицу(ы)\n" # well-spelled: ПРОСТР -#: reindexdb.c:775 +#: reindexdb.c:779 #, c-format msgid " --tablespace=TABLESPACE tablespace where indexes are rebuilt\n" msgstr "" " --tablespace=ТАБЛ_ПРОСТР табличное пространство, в котором будут\n" " перестраиваться индексы\n" -#: reindexdb.c:776 +#: reindexdb.c:780 #, c-format msgid " -v, --verbose write a lot of output\n" msgstr " -v, --verbose выводить исчерпывающие сообщения\n" -#: reindexdb.c:786 +#: reindexdb.c:790 #, c-format msgid "" "\n" @@ -1089,39 +1092,39 @@ msgstr "нельзя очистить все базы данных и одну msgid "cannot vacuum specific table(s) in all databases" msgstr "нельзя очистить только указанную таблицу(ы) во всех базах" -#: vacuumdb.c:412 +#: vacuumdb.c:411 msgid "Generating minimal optimizer statistics (1 target)" msgstr "Вычисление минимальной статистики для оптимизатора (1 запись)" -#: vacuumdb.c:413 +#: vacuumdb.c:412 msgid "Generating medium optimizer statistics (10 targets)" msgstr "Вычисление средней статистики для оптимизатора (10 записей)" -#: vacuumdb.c:414 +#: vacuumdb.c:413 msgid "Generating default (full) optimizer statistics" msgstr "Вычисление стандартной (полной) статистики для оптимизатора" -#: vacuumdb.c:479 +#: vacuumdb.c:478 #, c-format msgid "%s: processing database \"%s\": %s\n" msgstr "%s: обработка базы данных \"%s\": %s\n" -#: vacuumdb.c:482 +#: vacuumdb.c:481 #, c-format msgid "%s: vacuuming database \"%s\"\n" msgstr "%s: очистка базы данных \"%s\"\n" -#: vacuumdb.c:952 +#: vacuumdb.c:959 #, c-format msgid "vacuuming of table \"%s\" in database \"%s\" failed: %s" msgstr "очистить таблицу \"%s\" в базе \"%s\" не удалось: %s" -#: vacuumdb.c:955 +#: vacuumdb.c:962 #, c-format msgid "vacuuming of database \"%s\" failed: %s" msgstr "очистить базу данных \"%s\" не удалось: %s" -#: vacuumdb.c:963 +#: vacuumdb.c:970 #, c-format msgid "" "%s cleans and analyzes a PostgreSQL database.\n" @@ -1130,23 +1133,23 @@ msgstr "" "%s очищает и анализирует базу данных PostgreSQL.\n" "\n" -#: vacuumdb.c:967 +#: vacuumdb.c:974 #, c-format msgid " -a, --all vacuum all databases\n" msgstr " -a, --all очистить все базы данных\n" -#: vacuumdb.c:968 +#: vacuumdb.c:975 #, c-format msgid " -d, --dbname=DBNAME database to vacuum\n" msgstr " -d, --dbname=ИМЯ_БД очистить указанную базу данных\n" -#: vacuumdb.c:969 +#: vacuumdb.c:976 #, c-format msgid " --disable-page-skipping disable all page-skipping behavior\n" msgstr "" " --disable-page-skipping исключить все варианты пропуска страниц\n" -#: vacuumdb.c:970 +#: vacuumdb.c:977 #, c-format msgid "" " -e, --echo show the commands being sent to the " @@ -1154,19 +1157,19 @@ msgid "" msgstr "" " -e, --echo отображать команды, отправляемые серверу\n" -#: vacuumdb.c:971 +#: vacuumdb.c:978 #, c-format msgid " -f, --full do full vacuuming\n" msgstr " -f, --full произвести полную очистку\n" -#: vacuumdb.c:972 +#: vacuumdb.c:979 #, c-format msgid " -F, --freeze freeze row transaction information\n" msgstr "" " -F, --freeze заморозить информацию о транзакциях в " "строках\n" -#: vacuumdb.c:973 +#: vacuumdb.c:980 #, c-format msgid "" " --force-index-cleanup always remove index entries that point to " @@ -1176,7 +1179,7 @@ msgstr "" "указывающие\n" " на мёртвые кортежи\n" -#: vacuumdb.c:974 +#: vacuumdb.c:981 #, c-format msgid "" " -j, --jobs=NUM use this many concurrent connections to " @@ -1185,7 +1188,7 @@ msgstr "" " -j, --jobs=ЧИСЛО запускать для очистки заданное число " "заданий\n" -#: vacuumdb.c:975 +#: vacuumdb.c:982 #, c-format msgid "" " --min-mxid-age=MXID_AGE minimum multixact ID age of tables to " @@ -1194,7 +1197,7 @@ msgstr "" " --min-mxid-age=ВОЗРАСТ минимальный возраст мультитранзакций для\n" " таблиц, подлежащих очистке\n" -#: vacuumdb.c:976 +#: vacuumdb.c:983 #, c-format msgid "" " --min-xid-age=XID_AGE minimum transaction ID age of tables to " @@ -1204,7 +1207,7 @@ msgstr "" "таблиц,\n" " подлежащих очистке\n" -#: vacuumdb.c:977 +#: vacuumdb.c:984 #, c-format msgid "" " --no-index-cleanup don't remove index entries that point to " @@ -1213,7 +1216,7 @@ msgstr "" " --no-index-cleanup не удалять элементы индекса, указывающие\n" " на мёртвые кортежи\n" -#: vacuumdb.c:978 +#: vacuumdb.c:985 #, c-format msgid "" " --no-process-toast skip the TOAST table associated with the " @@ -1222,7 +1225,7 @@ msgstr "" " --no-process-toast пропускать TOAST-таблицу, связанную\n" " с очищаемой таблицей\n" -#: vacuumdb.c:979 +#: vacuumdb.c:986 #, c-format msgid "" " --no-truncate don't truncate empty pages at the end of " @@ -1231,7 +1234,7 @@ msgstr "" " --no-truncate не отсекать пустые страницы в конце " "таблицы\n" -#: vacuumdb.c:980 +#: vacuumdb.c:987 #, c-format msgid "" " -P, --parallel=PARALLEL_WORKERS use this many background workers for " @@ -1241,12 +1244,12 @@ msgstr "" " по возможности использовать для очистки\n" " заданное число фоновых процессов\n" -#: vacuumdb.c:981 +#: vacuumdb.c:988 #, c-format msgid " -q, --quiet don't write any messages\n" msgstr " -q, --quiet не выводить сообщения\n" -#: vacuumdb.c:982 +#: vacuumdb.c:989 #, c-format msgid "" " --skip-locked skip relations that cannot be immediately " @@ -1255,29 +1258,29 @@ msgstr "" " --skip-locked пропускать отношения, которые не удаётся\n" " заблокировать немедленно\n" -#: vacuumdb.c:983 +#: vacuumdb.c:990 #, c-format msgid " -t, --table='TABLE[(COLUMNS)]' vacuum specific table(s) only\n" msgstr "" " -t, --table='ТАБЛ[(СТОЛБЦЫ)]' очистить только указанную таблицу(ы)\n" -#: vacuumdb.c:984 +#: vacuumdb.c:991 #, c-format msgid " -v, --verbose write a lot of output\n" msgstr " -v, --verbose выводить исчерпывающие сообщения\n" -#: vacuumdb.c:985 +#: vacuumdb.c:992 #, c-format msgid "" " -V, --version output version information, then exit\n" msgstr " -V, --version показать версию и выйти\n" -#: vacuumdb.c:986 +#: vacuumdb.c:993 #, c-format msgid " -z, --analyze update optimizer statistics\n" msgstr " -z, --analyze обновить статистику оптимизатора\n" -#: vacuumdb.c:987 +#: vacuumdb.c:994 #, c-format msgid "" " -Z, --analyze-only only update optimizer statistics; no " @@ -1286,7 +1289,7 @@ msgstr "" " -Z, --analyze-only только обновить статистику оптимизатора,\n" " не очищать БД\n" -#: vacuumdb.c:988 +#: vacuumdb.c:995 #, c-format msgid "" " --analyze-in-stages only update optimizer statistics, in " @@ -1298,12 +1301,12 @@ msgstr "" " (в несколько проходов для большей " "скорости), без очистки\n" -#: vacuumdb.c:990 +#: vacuumdb.c:997 #, c-format msgid " -?, --help show this help, then exit\n" msgstr " -?, --help показать эту справку и выйти\n" -#: vacuumdb.c:998 +#: vacuumdb.c:1005 #, c-format msgid "" "\n" diff --git a/src/bin/scripts/reindexdb.c b/src/bin/scripts/reindexdb.c index fc2ad9d508a..eb1e6fe825a 100644 --- a/src/bin/scripts/reindexdb.c +++ b/src/bin/scripts/reindexdb.c @@ -638,6 +638,8 @@ get_parallel_object_list(PGconn *conn, ReindexType type, " AND c.relkind IN (" CppAsString2(RELKIND_RELATION) ", " CppAsString2(RELKIND_MATVIEW) ")\n" + " AND c.relpersistence != " + CppAsString2(RELPERSISTENCE_TEMP) "\n" " ORDER BY c.relpages DESC;"); break; @@ -660,6 +662,8 @@ get_parallel_object_list(PGconn *conn, ReindexType type, " WHERE c.relkind IN (" CppAsString2(RELKIND_RELATION) ", " CppAsString2(RELKIND_MATVIEW) ")\n" + " AND c.relpersistence != " + CppAsString2(RELPERSISTENCE_TEMP) "\n" " AND ns.nspname IN ("); for (cell = user_list->head; cell; cell = cell->next) diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c index 2c576345058..a4039213e9f 100644 --- a/src/bin/scripts/vacuumdb.c +++ b/src/bin/scripts/vacuumdb.c @@ -401,7 +401,6 @@ vacuum_one_database(ConnParams *cparams, int ntups; bool failed = false; bool tables_listed = false; - bool has_where = false; const char *initcmd; const char *stage_commands[] = { "SET default_statistics_target=1; SET vacuum_cost_delay=0;", @@ -551,11 +550,22 @@ vacuum_one_database(ConnParams *cparams, " LEFT JOIN pg_catalog.pg_class t" " ON c.reltoastrelid OPERATOR(pg_catalog.=) t.oid\n"); - /* Used to match the tables listed by the user */ + /* + * Used to match the tables listed by the user, completing the JOIN + * clause. + */ if (tables_listed) appendPQExpBufferStr(&catalog_query, " JOIN listed_tables" " ON listed_tables.table_oid OPERATOR(pg_catalog.=) c.oid\n"); + /* + * Exclude temporary tables, beginning the WHERE clause. + */ + appendPQExpBufferStr(&catalog_query, + " WHERE c.relpersistence OPERATOR(pg_catalog.!=) " + CppAsString2(RELPERSISTENCE_TEMP) "\n"); + + /* * If no tables were listed, filter for the relevant relation types. If * tables were given via --table, don't bother filtering by relation type. @@ -564,10 +574,9 @@ vacuum_one_database(ConnParams *cparams, */ if (!tables_listed) { - appendPQExpBufferStr(&catalog_query, " WHERE c.relkind OPERATOR(pg_catalog.=) ANY (array[" + appendPQExpBufferStr(&catalog_query, " AND c.relkind OPERATOR(pg_catalog.=) ANY (array[" CppAsString2(RELKIND_RELATION) ", " CppAsString2(RELKIND_MATVIEW) "])\n"); - has_where = true; } /* @@ -580,25 +589,23 @@ vacuum_one_database(ConnParams *cparams, if (vacopts->min_xid_age != 0) { appendPQExpBuffer(&catalog_query, - " %s GREATEST(pg_catalog.age(c.relfrozenxid)," + " AND GREATEST(pg_catalog.age(c.relfrozenxid)," " pg_catalog.age(t.relfrozenxid)) " " OPERATOR(pg_catalog.>=) '%d'::pg_catalog.int4\n" " AND c.relfrozenxid OPERATOR(pg_catalog.!=)" " '0'::pg_catalog.xid\n", - has_where ? "AND" : "WHERE", vacopts->min_xid_age); - has_where = true; + vacopts->min_xid_age); } if (vacopts->min_mxid_age != 0) { appendPQExpBuffer(&catalog_query, - " %s GREATEST(pg_catalog.mxid_age(c.relminmxid)," + " AND GREATEST(pg_catalog.mxid_age(c.relminmxid)," " pg_catalog.mxid_age(t.relminmxid)) OPERATOR(pg_catalog.>=)" " '%d'::pg_catalog.int4\n" " AND c.relminmxid OPERATOR(pg_catalog.!=)" " '0'::pg_catalog.xid\n", - has_where ? "AND" : "WHERE", vacopts->min_mxid_age); - has_where = true; + vacopts->min_mxid_age); } /* diff --git a/src/common/file_utils.c b/src/common/file_utils.c index 966b987d648..df4d6d240c0 100644 --- a/src/common/file_utils.c +++ b/src/common/file_utils.c @@ -79,7 +79,6 @@ fsync_pgdata(const char *pg_data, */ xlog_is_symlink = false; -#ifndef WIN32 { struct stat st; @@ -88,10 +87,6 @@ fsync_pgdata(const char *pg_data, else if (S_ISLNK(st.st_mode)) xlog_is_symlink = true; } -#else - if (pgwin32_is_junction(pg_wal)) - xlog_is_symlink = true; -#endif /* * If possible, hint to the kernel that we're soon going to fsync the data @@ -459,27 +454,9 @@ get_dirent_type(const char *path, result = PGFILETYPE_REG; else if (S_ISDIR(fst.st_mode)) result = PGFILETYPE_DIR; -#ifdef S_ISLNK else if (S_ISLNK(fst.st_mode)) result = PGFILETYPE_LNK; -#endif } -#if defined(WIN32) && !defined(_MSC_VER) - - /* - * If we're on native Windows (not Cygwin, which has its own POSIX - * symlinks), but not using the MSVC compiler, then we're using a - * readdir() emulation provided by the MinGW runtime that has no d_type. - * Since the lstat() fallback code reports junction points as directories, - * we need an extra system call to check if we should report them as - * symlinks instead, following our convention. - */ - if (result == PGFILETYPE_DIR && - !look_through_symlinks && - pgwin32_is_junction(path)) - result = PGFILETYPE_LNK; -#endif - return result; } diff --git a/src/common/md5.c b/src/common/md5.c index 4dec37705e2..078baccbdc3 100644 --- a/src/common/md5.c +++ b/src/common/md5.c @@ -150,10 +150,6 @@ static const uint8 md5_paddat[MD5_BUFLEN] = { 0, 0, 0, 0, 0, 0, 0, 0, }; -#ifdef WORDS_BIGENDIAN -static uint32 X[16]; -#endif - static void md5_calc(const uint8 *b64, pg_md5_ctx *ctx) { @@ -167,6 +163,7 @@ md5_calc(const uint8 *b64, pg_md5_ctx *ctx) #else /* 4 byte words */ /* what a brute force but fast! */ + uint32 X[16]; uint8 *y = (uint8 *) X; y[0] = b64[3]; diff --git a/src/common/saslprep.c b/src/common/saslprep.c index 6aaba8e422e..3dddb924088 100644 --- a/src/common/saslprep.c +++ b/src/common/saslprep.c @@ -21,8 +21,13 @@ */ #ifndef FRONTEND #include "postgres.h" +#include "utils/memutils.h" #else #include "postgres_fe.h" + +/* It's possible we could use a different value for this in frontend code */ +#define MaxAllocSize ((Size) 0x3fffffff) /* 1 gigabyte - 1 */ + #endif #include "common/saslprep.h" @@ -1077,6 +1082,8 @@ pg_saslprep(const char *input, char **output) input_size = pg_utf8_string_len(input); if (input_size < 0) return SASLPREP_INVALID_UTF8; + if (input_size >= MaxAllocSize / sizeof(pg_wchar)) + goto oom; input_chars = ALLOC((input_size + 1) * sizeof(pg_wchar)); if (!input_chars) diff --git a/src/fe_utils/psqlscan.l b/src/fe_utils/psqlscan.l index 3479bd6d753..c6b4a08c362 100644 --- a/src/fe_utils/psqlscan.l +++ b/src/fe_utils/psqlscan.l @@ -336,12 +336,12 @@ decimalfail {digit}+\.\. real ({integer}|{decimal})[Ee][-+]?{digit}+ realfail ({integer}|{decimal})[Ee][-+] -integer_junk {integer}{ident_start} -decimal_junk {decimal}{ident_start} -real_junk {real}{ident_start} +integer_junk {integer}{identifier} +decimal_junk {decimal}{identifier} +real_junk {real}{identifier} param \${integer} -param_junk \${integer}{ident_start} +param_junk \${integer}{identifier} /* psql-specific: characters allowed in variable names */ variable_char [A-Za-z\200-\377_0-9] diff --git a/src/include/access/genam.h b/src/include/access/genam.h index f6ad7c3ba55..26436abdf2a 100644 --- a/src/include/access/genam.h +++ b/src/include/access/genam.h @@ -228,5 +228,14 @@ extern SysScanDesc systable_beginscan_ordered(Relation heapRelation, extern HeapTuple systable_getnext_ordered(SysScanDesc sysscan, ScanDirection direction); extern void systable_endscan_ordered(SysScanDesc sysscan); +extern void systable_inplace_update_begin(Relation relation, + Oid indexId, + bool indexOK, + Snapshot snapshot, + int nkeys, const ScanKeyData *key, + HeapTuple *oldtupcopy, + void **state); +extern void systable_inplace_update_finish(void *state, HeapTuple tuple); +extern void systable_inplace_update_cancel(void *state); #endif /* GENAM_H */ diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 5285c2e31d2..82e5bf0a7f7 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -179,6 +179,14 @@ extern TM_Result heap_lock_tuple(Relation relation, HeapTuple tuple, bool follow_update, Buffer *buffer, struct TM_FailureData *tmfd); +extern bool heap_inplace_lock(Relation relation, + HeapTuple oldtup_ptr, Buffer buffer, + void (*release_callback) (void *), void *arg); +extern void heap_inplace_update_and_unlock(Relation relation, + HeapTuple oldtup, HeapTuple tuple, + Buffer buffer); +extern void heap_inplace_unlock(Relation relation, + HeapTuple oldtup, Buffer buffer); extern void heap_inplace_update(Relation relation, HeapTuple tuple); extern bool heap_freeze_tuple(HeapTupleHeader tuple, TransactionId relfrozenxid, TransactionId relminmxid, diff --git a/src/include/commands/event_trigger.h b/src/include/commands/event_trigger.h index 6349f5e51f5..4789152b0dc 100644 --- a/src/include/commands/event_trigger.h +++ b/src/include/commands/event_trigger.h @@ -29,6 +29,12 @@ typedef struct EventTriggerData CommandTag tag; } EventTriggerData; +/* + * Reasons for relation rewrites. + * + * pg_event_trigger_table_rewrite_reason() uses these values, so make sure to + * update the documentation when changing this list. + */ #define AT_REWRITE_ALTER_PERSISTENCE 0x01 #define AT_REWRITE_DEFAULT_VAL 0x02 #define AT_REWRITE_COLUMN_REWRITE 0x04 diff --git a/src/include/jit/SectionMemoryManager.h b/src/include/jit/SectionMemoryManager.h new file mode 100644 index 00000000000..93cf9771570 --- /dev/null +++ b/src/include/jit/SectionMemoryManager.h @@ -0,0 +1,226 @@ +/* + * This is a copy LLVM source code modified by the PostgreSQL project. + * See SectionMemoryManager.cpp for notes on provenance and license. + */ + +//===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file contains the declaration of a section-based memory manager used by +// the MCJIT execution engine and RuntimeDyld. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_EXECUTIONENGINE_BACKPORT_SECTIONMEMORYMANAGER_H +#define LLVM_EXECUTIONENGINE_BACKPORT_SECTIONMEMORYMANAGER_H + +#include "llvm/ADT/SmallVector.h" +#include "llvm/ExecutionEngine/RTDyldMemoryManager.h" +#include "llvm/Support/Alignment.h" +#include "llvm/Support/Memory.h" +#include +#include +#include + +namespace llvm { +namespace backport { + +/// This is a simple memory manager which implements the methods called by +/// the RuntimeDyld class to allocate memory for section-based loading of +/// objects, usually those generated by the MCJIT execution engine. +/// +/// This memory manager allocates all section memory as read-write. The +/// RuntimeDyld will copy JITed section memory into these allocated blocks +/// and perform any necessary linking and relocations. +/// +/// Any client using this memory manager MUST ensure that section-specific +/// page permissions have been applied before attempting to execute functions +/// in the JITed object. Permissions can be applied either by calling +/// MCJIT::finalizeObject or by calling SectionMemoryManager::finalizeMemory +/// directly. Clients of MCJIT should call MCJIT::finalizeObject. +class SectionMemoryManager : public RTDyldMemoryManager { +public: + /// This enum describes the various reasons to allocate pages from + /// allocateMappedMemory. + enum class AllocationPurpose { + Code, + ROData, + RWData, + }; + + /// Implementations of this interface are used by SectionMemoryManager to + /// request pages from the operating system. + class MemoryMapper { + public: + /// This method attempts to allocate \p NumBytes bytes of virtual memory for + /// \p Purpose. \p NearBlock may point to an existing allocation, in which + /// case an attempt is made to allocate more memory near the existing block. + /// The actual allocated address is not guaranteed to be near the requested + /// address. \p Flags is used to set the initial protection flags for the + /// block of the memory. \p EC [out] returns an object describing any error + /// that occurs. + /// + /// This method may allocate more than the number of bytes requested. The + /// actual number of bytes allocated is indicated in the returned + /// MemoryBlock. + /// + /// The start of the allocated block must be aligned with the system + /// allocation granularity (64K on Windows, page size on Linux). If the + /// address following \p NearBlock is not so aligned, it will be rounded up + /// to the next allocation granularity boundary. + /// + /// \r a non-null MemoryBlock if the function was successful, otherwise a + /// null MemoryBlock with \p EC describing the error. + virtual sys::MemoryBlock + allocateMappedMemory(AllocationPurpose Purpose, size_t NumBytes, + const sys::MemoryBlock *const NearBlock, + unsigned Flags, std::error_code &EC) = 0; + + /// This method sets the protection flags for a block of memory to the state + /// specified by \p Flags. The behavior is not specified if the memory was + /// not allocated using the allocateMappedMemory method. + /// \p Block describes the memory block to be protected. + /// \p Flags specifies the new protection state to be assigned to the block. + /// + /// If \p Flags is MF_WRITE, the actual behavior varies with the operating + /// system (i.e. MF_READ | MF_WRITE on Windows) and the target architecture + /// (i.e. MF_WRITE -> MF_READ | MF_WRITE on i386). + /// + /// \r error_success if the function was successful, or an error_code + /// describing the failure if an error occurred. + virtual std::error_code protectMappedMemory(const sys::MemoryBlock &Block, + unsigned Flags) = 0; + + /// This method releases a block of memory that was allocated with the + /// allocateMappedMemory method. It should not be used to release any memory + /// block allocated any other way. + /// \p Block describes the memory to be released. + /// + /// \r error_success if the function was successful, or an error_code + /// describing the failure if an error occurred. + virtual std::error_code releaseMappedMemory(sys::MemoryBlock &M) = 0; + + virtual ~MemoryMapper(); + }; + + /// Creates a SectionMemoryManager instance with \p MM as the associated + /// memory mapper. If \p MM is nullptr then a default memory mapper is used + /// that directly calls into the operating system. + /// + /// If \p ReserveAlloc is true all memory will be pre-allocated, and any + /// attempts to allocate beyond pre-allocated memory will fail. + SectionMemoryManager(MemoryMapper *MM = nullptr, bool ReserveAlloc = false); + SectionMemoryManager(const SectionMemoryManager &) = delete; + void operator=(const SectionMemoryManager &) = delete; + ~SectionMemoryManager() override; + + /// Enable reserveAllocationSpace when requested. + bool needsToReserveAllocationSpace() override { return ReserveAllocation; } + + /// Implements allocating all memory in a single block. This is required to + /// limit memory offsets to fit the ARM ABI; large memory systems may + /// otherwise allocate separate sections too far apart. +#if LLVM_VERSION_MAJOR < 16 + virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, + uintptr_t RODataSize, + uint32_t RODataAlign, + uintptr_t RWDataSize, + uint32_t RWDataAlign) override; +#else + void reserveAllocationSpace(uintptr_t CodeSize, Align CodeAlign, + uintptr_t RODataSize, Align RODataAlign, + uintptr_t RWDataSize, Align RWDataAlign) override; +#endif + + /// Allocates a memory block of (at least) the given size suitable for + /// executable code. + /// + /// The value of \p Alignment must be a power of two. If \p Alignment is zero + /// a default alignment of 16 will be used. + uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, + unsigned SectionID, + StringRef SectionName) override; + + /// Allocates a memory block of (at least) the given size suitable for + /// executable code. + /// + /// The value of \p Alignment must be a power of two. If \p Alignment is zero + /// a default alignment of 16 will be used. + uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, + unsigned SectionID, StringRef SectionName, + bool isReadOnly) override; + + /// Update section-specific memory permissions and other attributes. + /// + /// This method is called when object loading is complete and section page + /// permissions can be applied. It is up to the memory manager implementation + /// to decide whether or not to act on this method. The memory manager will + /// typically allocate all sections as read-write and then apply specific + /// permissions when this method is called. Code sections cannot be executed + /// until this function has been called. In addition, any cache coherency + /// operations needed to reliably use the memory are also performed. + /// + /// \returns true if an error occurred, false otherwise. + bool finalizeMemory(std::string *ErrMsg = nullptr) override; + + /// Invalidate instruction cache for code sections. + /// + /// Some platforms with separate data cache and instruction cache require + /// explicit cache flush, otherwise JIT code manipulations (like resolved + /// relocations) will get to the data cache but not to the instruction cache. + /// + /// This method is called from finalizeMemory. + virtual void invalidateInstructionCache(); + +private: + struct FreeMemBlock { + // The actual block of free memory + sys::MemoryBlock Free; + // If there is a pending allocation from the same reservation right before + // this block, store it's index in PendingMem, to be able to update the + // pending region if part of this block is allocated, rather than having to + // create a new one + unsigned PendingPrefixIndex; + }; + + struct MemoryGroup { + // PendingMem contains all blocks of memory (subblocks of AllocatedMem) + // which have not yet had their permissions applied, but have been given + // out to the user. FreeMem contains all block of memory, which have + // neither had their permissions applied, nor been given out to the user. + SmallVector PendingMem; + SmallVector FreeMem; + + // All memory blocks that have been requested from the system + SmallVector AllocatedMem; + + sys::MemoryBlock Near; + }; + + uint8_t *allocateSection(AllocationPurpose Purpose, uintptr_t Size, + unsigned Alignment); + + std::error_code applyMemoryGroupPermissions(MemoryGroup &MemGroup, + unsigned Permissions); + + bool hasSpace(const MemoryGroup &MemGroup, uintptr_t Size) const; + + void anchor() override; + + MemoryGroup CodeMem; + MemoryGroup RWDataMem; + MemoryGroup RODataMem; + MemoryMapper *MMapper; + std::unique_ptr OwnedMMapper; + bool ReserveAllocation; +}; + +} // end namespace backport +} // end namespace llvm + +#endif // LLVM_EXECUTIONENGINE_BACKPORT_SECTIONMEMORYMANAGER_H diff --git a/src/include/jit/llvmjit.h b/src/include/jit/llvmjit.h index 08fac9ec123..03b8e2ceb75 100644 --- a/src/include/jit/llvmjit.h +++ b/src/include/jit/llvmjit.h @@ -17,7 +17,12 @@ */ #ifdef USE_LLVM +#include "jit/llvmjit_backport.h" + #include +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER +#include +#endif /* @@ -148,6 +153,9 @@ extern char *LLVMGetHostCPUFeatures(void); extern unsigned LLVMGetAttributeCountAtIndexPG(LLVMValueRef F, uint32 Idx); extern LLVMTypeRef LLVMGetFunctionReturnType(LLVMValueRef r); extern LLVMTypeRef LLVMGetFunctionType(LLVMValueRef r); +#ifdef USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER +extern LLVMOrcObjectLayerRef LLVMOrcCreateRTDyldObjectLinkingLayerWithSafeSectionMemoryManager(LLVMOrcExecutionSessionRef ES); +#endif #if LLVM_MAJOR_VERSION < 8 extern LLVMTypeRef LLVMGlobalGetValueType(LLVMValueRef g); diff --git a/src/include/jit/llvmjit_backport.h b/src/include/jit/llvmjit_backport.h new file mode 100644 index 00000000000..92874f7998c --- /dev/null +++ b/src/include/jit/llvmjit_backport.h @@ -0,0 +1,25 @@ +/* + * A small header than can be included by backported LLVM code or PostgreSQL + * code, to control conditional compilation. + */ +#ifndef LLVMJIT_BACKPORT_H +#define LLVMJIT_BACKPORT_H + +#include + +/* + * LLVM's RuntimeDyld can produce code that crashes on larger memory ARM + * systems, because llvm::SectionMemoryManager allocates multiple pieces of + * memory that can be placed too far apart for the generated code. See + * src/backend/jit/llvm/SectionMemoryManager.cpp for the patched replacement + * class llvm::backport::SectionMemoryManager that we use as a workaround. + * This header controls whether we use it. + * + * We have adjusted it to compile against a range of LLVM versions, but not + * further back than 12 for now. + */ +#if defined(__aarch64__) && LLVM_VERSION_MAJOR > 11 +#define USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER +#endif + +#endif diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 87fa82602f3..4d5cd294be9 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -351,7 +351,10 @@ extern char *GetUserNameFromId(Oid roleid, bool noerr); extern Oid GetUserId(void); extern Oid GetOuterUserId(void); extern Oid GetSessionUserId(void); +extern bool GetSessionUserIsSuperuser(void); extern Oid GetAuthenticatedUserId(void); +extern bool GetAuthenticatedUserIsSuperuser(void); +extern void SetAuthenticatedUserId(Oid userid, bool is_superuser); extern void GetUserIdAndSecContext(Oid *userid, int *sec_context); extern void SetUserIdAndSecContext(Oid userid, int sec_context); extern bool InLocalUserIdChange(void); diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index d324e33307d..43b50ce23d3 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -456,6 +456,9 @@ typedef struct ResultRelInfo /* Have the projection and the slots above been initialized? */ bool ri_projectNewInfoValid; + /* updates do LockTuple() before oldtup read; see README.tuplock */ + bool ri_needLockTagTuple; + /* triggers to be fired, if any */ TriggerDesc *ri_TrigDesc; diff --git a/src/include/port.h b/src/include/port.h index 9f357612b3f..7f8c3f1797e 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -288,7 +288,6 @@ extern int pgunlink(const char *path); #if defined(WIN32) && !defined(__CYGWIN__) extern int pgsymlink(const char *oldpath, const char *newpath); extern int pgreadlink(const char *path, char *buf, size_t size); -extern bool pgwin32_is_junction(const char *path); #define symlink(oldpath, newpath) pgsymlink(oldpath, newpath) #define readlink(path, buf, size) pgreadlink(path, buf, size) diff --git a/src/include/port/win32.h b/src/include/port/win32.h index c6213c77c3a..4b180bf30d2 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -13,10 +13,12 @@ * Make sure _WIN32_WINNT has the minimum required value. * Leave a higher value in place. When building with at least Visual * Studio 2015 the minimum requirement is Windows Vista (0x0600) to - * get support for GetLocaleInfoEx() with locales. For everything else + * get support for GetLocaleInfoEx() with locales. For other MSC versions * the minimum version is Windows XP (0x0501). + * For non-MSC compilers use 0x0600, which is required to get the inet_pton() + * declaration. */ -#if defined(_MSC_VER) && _MSC_VER >= 1900 +#if !defined(_MSC_VER) || _MSC_VER >= 1900 #define MIN_WINNT 0x0600 #else #define MIN_WINNT 0x0501 diff --git a/src/include/port/win32_port.h b/src/include/port/win32_port.h index d1e89f364ac..c6398662174 100644 --- a/src/include/port/win32_port.h +++ b/src/include/port/win32_port.h @@ -236,7 +236,6 @@ extern pgoff_t _pgftello64(FILE *stream); */ extern int pgsymlink(const char *oldpath, const char *newpath); extern int pgreadlink(const char *path, char *buf, size_t size); -extern bool pgwin32_is_junction(const char *path); #define symlink(oldpath, newpath) pgsymlink(oldpath, newpath) #define readlink(path, buf, size) pgreadlink(path, buf, size) @@ -284,10 +283,11 @@ struct stat /* This should match struct __stat64 */ extern int _pgfstat64(int fileno, struct stat *buf); extern int _pgstat64(const char *name, struct stat *buf); +extern int _pglstat64(const char *name, struct stat *buf); #define fstat(fileno, sb) _pgfstat64(fileno, sb) #define stat(path, sb) _pgstat64(path, sb) -#define lstat(path, sb) _pgstat64(path, sb) +#define lstat(path, sb) _pglstat64(path, sb) /* These macros are not provided by older MinGW, nor by MSVC */ #ifndef S_IRUSR @@ -333,6 +333,21 @@ extern int _pgstat64(const char *name, struct stat *buf); #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif +/* + * In order for lstat() to be able to report junction points as symlinks, we + * need to hijack a bit in st_mode, since neither MSVC nor MinGW provides + * S_ISLNK and there aren't any spare bits. We'll steal the one for character + * devices, because we don't otherwise make use of those. + */ +#ifdef S_ISLNK +#error "S_ISLNK is already defined" +#endif +#ifdef S_IFLNK +#error "S_IFLNK is already defined" +#endif +#define S_IFLNK S_IFCHR +#define S_ISLNK(m) (((m) & S_IFLNK) == S_IFLNK) + /* * Supplement to . * This is the same value as _O_NOINHERIT in the MS header file. This is diff --git a/src/include/regex/regguts.h b/src/include/regex/regguts.h index 91a52840c47..388f128bed5 100644 --- a/src/include/regex/regguts.h +++ b/src/include/regex/regguts.h @@ -405,6 +405,8 @@ struct cnfa int flags; /* bitmask of the following flags: */ #define HASLACONS 01 /* uses lookaround constraints */ #define MATCHALL 02 /* matches all strings of a range of lengths */ +#define HASCANTMATCH 04 /* contains CANTMATCH arcs */ + /* Note: HASCANTMATCH appears in nfa structs' flags, but never in cnfas */ int pre; /* setup state number */ int post; /* teardown state number */ color bos[2]; /* colors, if any, assigned to BOS and BOL */ diff --git a/src/include/storage/lockdefs.h b/src/include/storage/lockdefs.h index 350ddd4da49..1b995337628 100644 --- a/src/include/storage/lockdefs.h +++ b/src/include/storage/lockdefs.h @@ -47,6 +47,8 @@ typedef int LOCKMODE; #define MaxLockMode 8 /* highest standard lock mode */ +/* See README.tuplock section "Locking to write inplace-updated tables" */ +#define InplaceUpdateTupleLock ExclusiveLock /* WAL representation of an AccessExclusiveLock on a table */ typedef struct xl_standby_lock diff --git a/src/include/storage/sinvaladt.h b/src/include/storage/sinvaladt.h index 91e24189a7a..b3a83ccae20 100644 --- a/src/include/storage/sinvaladt.h +++ b/src/include/storage/sinvaladt.h @@ -37,6 +37,7 @@ extern void BackendIdGetTransactionIds(int backendID, TransactionId *xid, Transa extern void SIInsertDataEntries(const SharedInvalidationMessage *data, int n); extern int SIGetDataEntries(SharedInvalidationMessage *data, int datasize); extern void SICleanupQueue(bool callerHasWriteLock, int minFree); +extern void SIResetAll(void); extern LocalTransactionId GetNextLocalTransactionId(void); diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index d0657ebf09f..26c4a76d614 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -240,6 +240,7 @@ typedef enum * available via 'postgres -C' if the server is not running. */ #define GUC_RUNTIME_COMPUTED 0x200000 +#define GUC_ALLOW_IN_PARALLEL 0x400000 /* allow setting in parallel mode */ #define GUC_UNIT (GUC_UNIT_MEMORY | GUC_UNIT_TIME) diff --git a/src/include/utils/pgstat_internal.h b/src/include/utils/pgstat_internal.h index 4b65dfef7d4..efe5dfc2321 100644 --- a/src/include/utils/pgstat_internal.h +++ b/src/include/utils/pgstat_internal.h @@ -93,6 +93,19 @@ typedef struct PgStatShared_HashEntry */ pg_atomic_uint32 refcount; + /* + * Counter tracking the number of times the entry has been reused. + * + * Set to 0 when the entry is created, and incremented by one each time + * the shared entry is reinitialized with pgstat_reinit_entry(). + * + * May only be incremented / decremented while holding at least a shared + * lock on the dshash partition containing the entry. Like refcount, it + * needs to be an atomic variable because multiple backends can increment + * the generation with just a shared lock. + */ + pg_atomic_uint32 generation; + /* * Pointer to shared stats. The stats entry always starts with * PgStatShared_Common, embedded in a larger struct containing the @@ -132,6 +145,12 @@ typedef struct PgStat_EntryRef */ PgStatShared_Common *shared_stats; + /* + * Copy of PgStatShared_HashEntry->generation, keeping locally track of + * the shared stats entry "generation" retrieved (number of times reused). + */ + uint32 generation; + /* * Pending statistics data that will need to be flushed to shared memory * stats eventually. Each stats kind utilizing pending data defines what diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 1bb18a1567c..e74e0ab78b9 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -163,9 +163,14 @@ extern HeapTuple SearchSysCache4(int cacheId, extern void ReleaseSysCache(HeapTuple tuple); +extern HeapTuple SearchSysCacheLocked1(int cacheId, + Datum key1); + /* convenience routines */ extern HeapTuple SearchSysCacheCopy(int cacheId, Datum key1, Datum key2, Datum key3, Datum key4); +extern HeapTuple SearchSysCacheLockedCopy1(int cacheId, + Datum key1); extern bool SearchSysCacheExists(int cacheId, Datum key1, Datum key2, Datum key3, Datum key4); extern Oid GetSysCacheOid(int cacheId, AttrNumber oidcol, diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 80d40aa3e09..407eee2e59c 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -175,6 +175,25 @@ deccopy(decimal *src, decimal *target) memcpy(target, src, sizeof(decimal)); } +static char * +ecpg_strndup(const char *str, size_t len) +{ + size_t real_len = strlen(str); + int use_len = (int) ((real_len > len) ? len : real_len); + + char *new = malloc(use_len + 1); + + if (new) + { + memcpy(new, str, use_len); + new[use_len] = '\0'; + } + else + errno = ENOMEM; + + return new; +} + int deccvasc(const char *cp, int len, decimal *np) { @@ -186,8 +205,8 @@ deccvasc(const char *cp, int len, decimal *np) if (risnull(CSTRINGTYPE, cp)) return 0; - str = pnstrdup(cp, len); /* decimal_in always converts the complete - * string */ + str = ecpg_strndup(cp, len); /* decimal_in always converts the complete + * string */ if (!str) ret = ECPG_INFORMIX_NUM_UNDERFLOW; else diff --git a/src/interfaces/ecpg/ecpglib/po/es.po b/src/interfaces/ecpg/ecpglib/po/es.po index 09bde379108..6cdbec306db 100644 --- a/src/interfaces/ecpg/ecpglib/po/es.po +++ b/src/interfaces/ecpg/ecpglib/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: ecpglib (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:45+0000\n" +"POT-Creation-Date: 2024-11-09 06:14+0000\n" "PO-Revision-Date: 2022-10-20 09:05+0200\n" "Last-Translator: Emanuel Calvo Franco \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/interfaces/ecpg/ecpglib/po/fr.po b/src/interfaces/ecpg/ecpglib/po/fr.po index e976d5cb0ef..86012532429 100644 --- a/src/interfaces/ecpg/ecpglib/po/fr.po +++ b/src/interfaces/ecpg/ecpglib/po/fr.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: connect.c:237 msgid "empty message text" @@ -74,7 +74,7 @@ msgstr "syntaxe invalide en entrée pour le type int : « %s » sur la ligne %d" #: error.c:75 #, c-format msgid "invalid input syntax for type unsigned int: \"%s\", on line %d" -msgstr "syntaxe invalide en entrée pour le type unisgned int : « %s » sur la ligne %d" +msgstr "syntaxe invalide en entrée pour le type unsigned int : « %s » sur la ligne %d" #. translator: this string will be truncated at 149 characters expanded. #: error.c:82 diff --git a/src/interfaces/ecpg/pgtypeslib/dt_common.c b/src/interfaces/ecpg/pgtypeslib/dt_common.c index e0fae3d5f1d..f8ae397be64 100644 --- a/src/interfaces/ecpg/pgtypeslib/dt_common.c +++ b/src/interfaces/ecpg/pgtypeslib/dt_common.c @@ -2325,10 +2325,10 @@ DecodeDateTime(char **field, int *ftype, int nf, return ((fmask & DTK_TIME_M) == DTK_TIME_M) ? 1 : -1; /* - * check for valid day of month, now that we know for sure the month - * and year... + * check for valid day of month and month, now that we know for sure + * the month and year... */ - if (tm->tm_mday < 1 || tm->tm_mday > day_tab[isleap(tm->tm_year)][tm->tm_mon - 1]) + if (tm->tm_mon < 1 || tm->tm_mday < 1 || tm->tm_mday > day_tab[isleap(tm->tm_year)][tm->tm_mon - 1]) return -1; /* diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index c06b2d6f51e..3b16c70bce0 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -369,12 +369,12 @@ decimalfail {digit}+\.\. real ({integer}|{decimal})[Ee][-+]?{digit}+ realfail ({integer}|{decimal})[Ee][-+] -integer_junk {integer}{ident_start} -decimal_junk {decimal}{ident_start} -real_junk {real}{ident_start} +integer_junk {integer}{identifier} +decimal_junk {decimal}{identifier} +real_junk {real}{identifier} param \${integer} -param_junk \${integer}{ident_start} +param_junk \${integer}{identifier} /* special characters for other dbms */ /* we have to react differently in compat mode */ diff --git a/src/interfaces/ecpg/preproc/po/es.po b/src/interfaces/ecpg/preproc/po/es.po index 0a5e8a38ddc..527e4a24128 100644 --- a/src/interfaces/ecpg/preproc/po/es.po +++ b/src/interfaces/ecpg/preproc/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: ecpg (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:45+0000\n" +"POT-Creation-Date: 2024-11-09 06:14+0000\n" "PO-Revision-Date: 2022-10-20 09:05+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -395,12 +395,12 @@ msgstr "inicializador no permitido en definición de tipo" msgid "type name \"string\" is reserved in Informix mode" msgstr "el nombre de tipo «string» está reservado en modo Informix" -#: preproc.y:552 preproc.y:17918 +#: preproc.y:552 preproc.y:17926 #, c-format msgid "type \"%s\" is already defined" msgstr "el tipo «%s» ya está definido" -#: preproc.y:577 preproc.y:18553 preproc.y:18878 variable.c:620 +#: preproc.y:577 preproc.y:18561 preproc.y:18886 variable.c:620 #, c-format msgid "multidimensional arrays for simple data types are not supported" msgstr "los arrays multidimensionales para tipos de datos simples no están soportados" @@ -445,8 +445,8 @@ msgstr "la opción AT no está permitida en la sentencia VAR" msgid "AT option not allowed in WHENEVER statement" msgstr "la opción AT no está permitida en la sentencia WHENEVER" -#: preproc.y:2227 preproc.y:2525 preproc.y:4176 preproc.y:4840 preproc.y:5710 -#: preproc.y:6010 preproc.y:12132 +#: preproc.y:2227 preproc.y:2525 preproc.y:4176 preproc.y:4848 preproc.y:5718 +#: preproc.y:6018 preproc.y:12140 #, c-format msgid "unsupported feature will be passed to server" msgstr "característica no soportada será pasada al servidor" @@ -461,128 +461,128 @@ msgstr "SHOW ALL no está implementado" msgid "COPY FROM STDIN is not implemented" msgstr "COPY FROM STDIN no está implementado" -#: preproc.y:10223 preproc.y:17491 +#: preproc.y:10231 preproc.y:17499 #, c-format msgid "\"database\" cannot be used as cursor name in INFORMIX mode" msgstr "no se puede usar «database» como nombre de cursor en modo INFORMIX" -#: preproc.y:10230 preproc.y:17501 +#: preproc.y:10238 preproc.y:17509 #, c-format msgid "using variable \"%s\" in different declare statements is not supported" msgstr "el uso de la variable «%s» en diferentes sentencias declare no está soportado" -#: preproc.y:10232 preproc.y:17503 +#: preproc.y:10240 preproc.y:17511 #, c-format msgid "cursor \"%s\" is already defined" msgstr "el cursor «%s» ya está definido" -#: preproc.y:10706 +#: preproc.y:10714 #, c-format msgid "no longer supported LIMIT #,# syntax passed to server" msgstr "la sintaxis LIMIT #,# que ya no está soportada ha sido pasada al servidor" -#: preproc.y:11039 preproc.y:11046 +#: preproc.y:11047 preproc.y:11054 #, c-format msgid "subquery in FROM must have an alias" msgstr "las subconsultas en FROM deben tener un alias" -#: preproc.y:17183 preproc.y:17190 +#: preproc.y:17191 preproc.y:17198 #, c-format msgid "CREATE TABLE AS cannot specify INTO" msgstr "CREATE TABLE AS no puede especificar INTO" -#: preproc.y:17226 +#: preproc.y:17234 #, c-format msgid "expected \"@\", found \"%s\"" msgstr "se esperaba «@», se encontró «%s»" -#: preproc.y:17238 +#: preproc.y:17246 #, c-format msgid "only protocols \"tcp\" and \"unix\" and database type \"postgresql\" are supported" msgstr "sólo los protocolos «tcp» y «unix» y tipo de bases de datos «postgresql» están soportados" -#: preproc.y:17241 +#: preproc.y:17249 #, c-format msgid "expected \"://\", found \"%s\"" msgstr "se esperaba «://», se encontró «%s»" -#: preproc.y:17246 +#: preproc.y:17254 #, c-format msgid "Unix-domain sockets only work on \"localhost\" but not on \"%s\"" msgstr "los sockets de dominio unix sólo trabajan en «localhost» pero no en «%s»" -#: preproc.y:17272 +#: preproc.y:17280 #, c-format msgid "expected \"postgresql\", found \"%s\"" msgstr "se esperaba «postgresql», se encontró «%s»" -#: preproc.y:17275 +#: preproc.y:17283 #, c-format msgid "invalid connection type: %s" msgstr "tipo de conexión no válido: %s" -#: preproc.y:17284 +#: preproc.y:17292 #, c-format msgid "expected \"@\" or \"://\", found \"%s\"" msgstr "se esperaba «@» o «://», se encontró «%s»" -#: preproc.y:17359 preproc.y:17377 +#: preproc.y:17367 preproc.y:17385 #, c-format msgid "invalid data type" msgstr "tipo de dato no válido" -#: preproc.y:17388 preproc.y:17405 +#: preproc.y:17396 preproc.y:17413 #, c-format msgid "incomplete statement" msgstr "sentencia incompleta" -#: preproc.y:17391 preproc.y:17408 +#: preproc.y:17399 preproc.y:17416 #, c-format msgid "unrecognized token \"%s\"" msgstr "elemento «%s» no reconocido" -#: preproc.y:17453 +#: preproc.y:17461 #, c-format msgid "name \"%s\" is already declared" msgstr "el nombre «%s» ya está declarado" -#: preproc.y:17721 +#: preproc.y:17729 #, c-format msgid "only data types numeric and decimal have precision/scale argument" msgstr "sólo los tipos de dato numeric y decimal tienen argumento de precisión/escala" -#: preproc.y:17733 +#: preproc.y:17741 #, c-format msgid "interval specification not allowed here" msgstr "la especificación de intervalo no está permitida aquí" -#: preproc.y:17893 preproc.y:17945 +#: preproc.y:17901 preproc.y:17953 #, c-format msgid "too many levels in nested structure/union definition" msgstr "demasiados niveles en la definición anidada de estructura/unión" -#: preproc.y:18068 +#: preproc.y:18076 #, c-format msgid "pointers to varchar are not implemented" msgstr "los punteros a varchar no están implementados" -#: preproc.y:18519 +#: preproc.y:18527 #, c-format msgid "initializer not allowed in EXEC SQL VAR command" msgstr "inicializador no permitido en la orden EXEC SQL VAR" -#: preproc.y:18836 +#: preproc.y:18844 #, c-format msgid "arrays of indicators are not allowed on input" msgstr "no se permiten los arrays de indicadores en la entrada" -#: preproc.y:19023 +#: preproc.y:19031 #, c-format msgid "operator not allowed in variable definition" msgstr "operador no permitido en definición de variable" #. translator: %s is typically the translation of "syntax error" -#: preproc.y:19064 +#: preproc.y:19072 #, c-format msgid "%s at or near \"%s\"" msgstr "%s en o cerca de «%s»" diff --git a/src/interfaces/ecpg/preproc/po/fr.po b/src/interfaces/ecpg/preproc/po/fr.po index ca4aa527eea..a338572288e 100644 --- a/src/interfaces/ecpg/preproc/po/fr.po +++ b/src/interfaces/ecpg/preproc/po/fr.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: descriptor.c:64 #, c-format @@ -733,37 +733,3 @@ msgstr "ce type de données ne supporte pas les pointeurs de pointeur" #, c-format msgid "multidimensional arrays for structures are not supported" msgstr "les tableaux multidimensionnels ne sont pas supportés pour les structures" - -#~ msgid "" -#~ "\n" -#~ "Report bugs to .\n" -#~ msgstr "" -#~ "\n" -#~ "Rapporter les bogues à .\n" - -#~ msgid " --version output version information, then exit\n" -#~ msgstr " --version affiche la version et quitte\n" - -#~ msgid "AT option not allowed in DEALLOCATE statement" -#~ msgstr "option AT non autorisée dans une instruction DEALLOCATE" - -#~ msgid "COPY FROM STDOUT is not possible" -#~ msgstr "COPY FROM STDOUT n'est pas possible" - -#~ msgid "COPY TO STDIN is not possible" -#~ msgstr "COPY TO STDIN n'est pas possible" - -#~ msgid "NEW used in query that is not in a rule" -#~ msgstr "NEW utilisé dans une requête qui n'est pas dans une règle" - -#~ msgid "OLD used in query that is not in a rule" -#~ msgstr "OLD utilisé dans une requête qui n'est pas dans une règle" - -#~ msgid "constraint declared INITIALLY DEFERRED must be DEFERRABLE" -#~ msgstr "une contrainte déclarée INITIALLY DEFERRED doit être DEFERRABLE" - -#~ msgid "declared name %s is already defined" -#~ msgstr "le nom déclaré %s est déjà défini" - -#~ msgid "using unsupported DESCRIBE statement" -#~ msgstr "utilisation de l'instruction DESCRIBE non supporté" diff --git a/src/interfaces/ecpg/preproc/po/ru.po b/src/interfaces/ecpg/preproc/po/ru.po index d6817a31997..2bb508eb58a 100644 --- a/src/interfaces/ecpg/preproc/po/ru.po +++ b/src/interfaces/ecpg/preproc/po/ru.po @@ -1,12 +1,12 @@ # Russian message translation file for ecpg # Copyright (C) 2012-2016 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: ecpg (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-05-04 10:36+0300\n" +"POT-Creation-Date: 2024-09-19 11:25+0300\n" "PO-Revision-Date: 2022-09-05 13:32+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" @@ -394,12 +394,12 @@ msgstr "определение типа не может включать ини msgid "type name \"string\" is reserved in Informix mode" msgstr "имя типа \"string\" в режиме Informix зарезервировано" -#: preproc.y:552 preproc.y:17918 +#: preproc.y:552 preproc.y:17926 #, c-format msgid "type \"%s\" is already defined" msgstr "тип \"%s\" уже определён" -#: preproc.y:577 preproc.y:18553 preproc.y:18878 variable.c:620 +#: preproc.y:577 preproc.y:18561 preproc.y:18886 variable.c:620 #, c-format msgid "multidimensional arrays for simple data types are not supported" msgstr "многомерные массивы с простыми типами данных не поддерживаются" @@ -444,8 +444,8 @@ msgstr "оператор VAR с параметром AT не поддержив msgid "AT option not allowed in WHENEVER statement" msgstr "оператор WHENEVER с параметром AT не поддерживается" -#: preproc.y:2227 preproc.y:2525 preproc.y:4176 preproc.y:4840 preproc.y:5710 -#: preproc.y:6010 preproc.y:12132 +#: preproc.y:2227 preproc.y:2525 preproc.y:4176 preproc.y:4848 preproc.y:5718 +#: preproc.y:6018 preproc.y:12140 #, c-format msgid "unsupported feature will be passed to server" msgstr "неподдерживаемая функция будет передана серверу" @@ -460,44 +460,44 @@ msgstr "SHOW ALL не реализовано" msgid "COPY FROM STDIN is not implemented" msgstr "операция COPY FROM STDIN не реализована" -#: preproc.y:10223 preproc.y:17491 +#: preproc.y:10231 preproc.y:17499 #, c-format msgid "\"database\" cannot be used as cursor name in INFORMIX mode" msgstr "" "в режиме INFORMIX нельзя использовать \"database\" в качестве имени курсора" -#: preproc.y:10230 preproc.y:17501 +#: preproc.y:10238 preproc.y:17509 #, c-format msgid "using variable \"%s\" in different declare statements is not supported" msgstr "" "использование переменной \"%s\" в разных операторах DECLARE не поддерживается" -#: preproc.y:10232 preproc.y:17503 +#: preproc.y:10240 preproc.y:17511 #, c-format msgid "cursor \"%s\" is already defined" msgstr "курсор \"%s\" уже определён" -#: preproc.y:10706 +#: preproc.y:10714 #, c-format msgid "no longer supported LIMIT #,# syntax passed to server" msgstr "не поддерживаемое более предложение LIMIT #,# передано на сервер" -#: preproc.y:11039 preproc.y:11046 +#: preproc.y:11047 preproc.y:11054 #, c-format msgid "subquery in FROM must have an alias" msgstr "подзапрос во FROM должен иметь псевдоним" -#: preproc.y:17183 preproc.y:17190 +#: preproc.y:17191 preproc.y:17198 #, c-format msgid "CREATE TABLE AS cannot specify INTO" msgstr "в CREATE TABLE AS нельзя указать INTO" -#: preproc.y:17226 +#: preproc.y:17234 #, c-format msgid "expected \"@\", found \"%s\"" msgstr "ожидался знак \"@\", но на этом месте \"%s\"" -#: preproc.y:17238 +#: preproc.y:17246 #, c-format msgid "" "only protocols \"tcp\" and \"unix\" and database type \"postgresql\" are " @@ -506,89 +506,89 @@ msgstr "" "поддерживаются только протоколы \"tcp\" и \"unix\", а тип базы данных - " "\"postgresql\"" -#: preproc.y:17241 +#: preproc.y:17249 #, c-format msgid "expected \"://\", found \"%s\"" msgstr "ожидалось \"://\", но на этом месте \"%s\"" -#: preproc.y:17246 +#: preproc.y:17254 #, c-format msgid "Unix-domain sockets only work on \"localhost\" but not on \"%s\"" msgstr "Unix-сокеты работают только с \"localhost\", но не с адресом \"%s\"" -#: preproc.y:17272 +#: preproc.y:17280 #, c-format msgid "expected \"postgresql\", found \"%s\"" msgstr "ожидался тип \"postgresql\", но на этом месте \"%s\"" -#: preproc.y:17275 +#: preproc.y:17283 #, c-format msgid "invalid connection type: %s" msgstr "неверный тип подключения: %s" -#: preproc.y:17284 +#: preproc.y:17292 #, c-format msgid "expected \"@\" or \"://\", found \"%s\"" msgstr "ожидалось \"@\" или \"://\", но на этом месте \"%s\"" -#: preproc.y:17359 preproc.y:17377 +#: preproc.y:17367 preproc.y:17385 #, c-format msgid "invalid data type" msgstr "неверный тип данных" -#: preproc.y:17388 preproc.y:17405 +#: preproc.y:17396 preproc.y:17413 #, c-format msgid "incomplete statement" msgstr "неполный оператор" -#: preproc.y:17391 preproc.y:17408 +#: preproc.y:17399 preproc.y:17416 #, c-format msgid "unrecognized token \"%s\"" msgstr "нераспознанное ключевое слово \"%s\"" -#: preproc.y:17453 +#: preproc.y:17461 #, c-format msgid "name \"%s\" is already declared" msgstr "имя \"%s\" уже объявлено" -#: preproc.y:17721 +#: preproc.y:17729 #, c-format msgid "only data types numeric and decimal have precision/scale argument" msgstr "" "точность/масштаб можно указать только для типов данных numeric и decimal" -#: preproc.y:17733 +#: preproc.y:17741 #, c-format msgid "interval specification not allowed here" msgstr "определение интервала здесь не допускается" -#: preproc.y:17893 preproc.y:17945 +#: preproc.y:17901 preproc.y:17953 #, c-format msgid "too many levels in nested structure/union definition" msgstr "слишком много уровней в определении вложенной структуры/объединения" -#: preproc.y:18068 +#: preproc.y:18076 #, c-format msgid "pointers to varchar are not implemented" msgstr "указатели на varchar не реализованы" -#: preproc.y:18519 +#: preproc.y:18527 #, c-format msgid "initializer not allowed in EXEC SQL VAR command" msgstr "команда EXEC SQL VAR не может включать инициализатор" -#: preproc.y:18836 +#: preproc.y:18844 #, c-format msgid "arrays of indicators are not allowed on input" msgstr "массивы индикаторов на входе недопустимы" -#: preproc.y:19023 +#: preproc.y:19031 #, c-format msgid "operator not allowed in variable definition" msgstr "недопустимый оператор в определении переменной" #. translator: %s is typically the translation of "syntax error" -#: preproc.y:19064 +#: preproc.y:19072 #, c-format msgid "%s at or near \"%s\"" msgstr "%s (примерное положение: \"%s\")" diff --git a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.c b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.c index ee867b6dd86..1f1d341a4ac 100644 --- a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.c +++ b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -22,9 +23,11 @@ -#line 8 "dt_test.pgc" +#line 9 "dt_test.pgc" +static void check_errno(void); + int main(void) { @@ -34,19 +37,19 @@ main(void) -#line 14 "dt_test.pgc" +#line 17 "dt_test.pgc" date date1 ; -#line 15 "dt_test.pgc" +#line 18 "dt_test.pgc" timestamp ts1 ; -#line 16 "dt_test.pgc" +#line 19 "dt_test.pgc" interval * iv1 , iv2 ; -#line 17 "dt_test.pgc" +#line 20 "dt_test.pgc" char * text ; /* exec sql end declare section */ -#line 18 "dt_test.pgc" +#line 21 "dt_test.pgc" date date2; int mdy[3] = { 4, 19, 1998 }; @@ -57,31 +60,31 @@ main(void) ECPGdebug(1, stderr); /* exec sql whenever sqlerror do sqlprint ( ) ; */ -#line 27 "dt_test.pgc" +#line 30 "dt_test.pgc" { ECPGconnect(__LINE__, 0, "ecpg1_regression" , NULL, NULL , NULL, 0); -#line 28 "dt_test.pgc" +#line 31 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 28 "dt_test.pgc" +#line 31 "dt_test.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table date_test ( d date , ts timestamp )", ECPGt_EOIT, ECPGt_EORT); -#line 29 "dt_test.pgc" +#line 32 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 29 "dt_test.pgc" +#line 32 "dt_test.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "set datestyle to iso", ECPGt_EOIT, ECPGt_EORT); -#line 30 "dt_test.pgc" +#line 33 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 30 "dt_test.pgc" +#line 33 "dt_test.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "set intervalstyle to postgres_verbose", ECPGt_EOIT, ECPGt_EORT); -#line 31 "dt_test.pgc" +#line 34 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 31 "dt_test.pgc" +#line 34 "dt_test.pgc" date1 = PGTYPESdate_from_asc(d1, NULL); @@ -92,10 +95,10 @@ if (sqlca.sqlcode < 0) sqlprint ( );} ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_timestamp,&(ts1),(long)1,(long)1,sizeof(timestamp), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT); -#line 36 "dt_test.pgc" +#line 39 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 36 "dt_test.pgc" +#line 39 "dt_test.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select * from date_test where d = $1 ", @@ -105,10 +108,10 @@ if (sqlca.sqlcode < 0) sqlprint ( );} ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_timestamp,&(ts1),(long)1,(long)1,sizeof(timestamp), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT); -#line 38 "dt_test.pgc" +#line 41 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 38 "dt_test.pgc" +#line 41 "dt_test.pgc" text = PGTYPESdate_to_asc(date1); @@ -263,10 +266,19 @@ if (sqlca.sqlcode < 0) sqlprint ( );} PGTYPESchar_free(text); ts1 = PGTYPEStimestamp_from_asc("1994-02-11 26:10:35", NULL); + /* failure, check error code */ + check_errno(); text = PGTYPEStimestamp_to_asc(ts1); printf("timestamp_to_asc3: %s\n", text); PGTYPESchar_free(text); + ts1 = PGTYPEStimestamp_from_asc("AM95000062", NULL); + /* failure, check error code */ + check_errno(); + text = PGTYPEStimestamp_to_asc(ts1); + printf("timestamp_to_asc4: %s\n", text); + PGTYPESchar_free(text); + /* abc-03:10:35-def-02/11/94-gh */ /* 12345678901234567890123456789 */ @@ -453,17 +465,35 @@ if (sqlca.sqlcode < 0) sqlprint ( );} free(out); { ECPGtrans(__LINE__, NULL, "rollback"); -#line 381 "dt_test.pgc" +#line 393 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 381 "dt_test.pgc" +#line 393 "dt_test.pgc" { ECPGdisconnect(__LINE__, "CURRENT"); -#line 382 "dt_test.pgc" +#line 394 "dt_test.pgc" if (sqlca.sqlcode < 0) sqlprint ( );} -#line 382 "dt_test.pgc" +#line 394 "dt_test.pgc" return 0; } + +static void +check_errno(void) +{ + switch(errno) + { + case 0: + printf("(no errno set) - "); + break; + case PGTYPES_TS_BAD_TIMESTAMP: + printf("(errno == PGTYPES_TS_BAD_TIMESTAMP) - "); + break; + default: + printf("(unknown errno (%d))\n", errno); + printf("(libc: (%s)) ", strerror(errno)); + break; + } +} diff --git a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stderr b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stderr index 6e9ed3d3dba..2a109ee7fa1 100644 --- a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stderr +++ b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stderr @@ -2,47 +2,47 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGconnect: opening database ecpg1_regression on port [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 29: query: create table date_test ( d date , ts timestamp ); with 0 parameter(s) on connection ecpg1_regression +[NO_PID]: ecpg_execute on line 32: query: create table date_test ( d date , ts timestamp ); with 0 parameter(s) on connection ecpg1_regression [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 29: using PQexec +[NO_PID]: ecpg_execute on line 32: using PQexec [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_process_output on line 29: OK: CREATE TABLE +[NO_PID]: ecpg_process_output on line 32: OK: CREATE TABLE [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 30: query: set datestyle to iso; with 0 parameter(s) on connection ecpg1_regression +[NO_PID]: ecpg_execute on line 33: query: set datestyle to iso; with 0 parameter(s) on connection ecpg1_regression [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 30: using PQexec +[NO_PID]: ecpg_execute on line 33: using PQexec [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_process_output on line 30: OK: SET +[NO_PID]: ecpg_process_output on line 33: OK: SET [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 31: query: set intervalstyle to postgres_verbose; with 0 parameter(s) on connection ecpg1_regression +[NO_PID]: ecpg_execute on line 34: query: set intervalstyle to postgres_verbose; with 0 parameter(s) on connection ecpg1_regression [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 31: using PQexec +[NO_PID]: ecpg_execute on line 34: using PQexec [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_process_output on line 31: OK: SET +[NO_PID]: ecpg_process_output on line 34: OK: SET [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 36: query: insert into date_test ( d , ts ) values ( $1 , $2 ); with 2 parameter(s) on connection ecpg1_regression +[NO_PID]: ecpg_execute on line 39: query: insert into date_test ( d , ts ) values ( $1 , $2 ); with 2 parameter(s) on connection ecpg1_regression [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 36: using PQexecParams +[NO_PID]: ecpg_execute on line 39: using PQexecParams [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_free_params on line 36: parameter 1 = 1966-01-17 +[NO_PID]: ecpg_free_params on line 39: parameter 1 = 1966-01-17 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_free_params on line 36: parameter 2 = 2000-07-12 17:34:29 +[NO_PID]: ecpg_free_params on line 39: parameter 2 = 2000-07-12 17:34:29 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_process_output on line 36: OK: INSERT 0 1 +[NO_PID]: ecpg_process_output on line 39: OK: INSERT 0 1 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 38: query: select * from date_test where d = $1 ; with 1 parameter(s) on connection ecpg1_regression +[NO_PID]: ecpg_execute on line 41: query: select * from date_test where d = $1 ; with 1 parameter(s) on connection ecpg1_regression [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_execute on line 38: using PQexecParams +[NO_PID]: ecpg_execute on line 41: using PQexecParams [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_free_params on line 38: parameter 1 = 1966-01-17 +[NO_PID]: ecpg_free_params on line 41: parameter 1 = 1966-01-17 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_process_output on line 38: correctly got 1 tuples with 2 fields +[NO_PID]: ecpg_process_output on line 41: correctly got 1 tuples with 2 fields [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_get_data on line 38: RESULT: 1966-01-17 offset: -1; array: no +[NO_PID]: ecpg_get_data on line 41: RESULT: 1966-01-17 offset: -1; array: no [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ecpg_get_data on line 38: RESULT: 2000-07-12 17:34:29 offset: -1; array: no +[NO_PID]: ecpg_get_data on line 41: RESULT: 2000-07-12 17:34:29 offset: -1; array: no [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGtrans on line 381: action "rollback"; connection "ecpg1_regression" +[NO_PID]: ECPGtrans on line 393: action "rollback"; connection "ecpg1_regression" [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ecpg_finish: connection ecpg1_regression closed [NO_PID]: sqlca: code: 0, state: 00000 diff --git a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stdout b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stdout index 4b582fd7a28..6b8bcc9fc27 100644 --- a/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stdout +++ b/src/interfaces/ecpg/test/expected/pgtypeslib-dt_test.stdout @@ -20,7 +20,8 @@ date_defmt_asc10: 1995-12-25 date_defmt_asc12: 0095-12-25 timestamp_to_asc1: 1996-02-29 00:00:00 timestamp_to_asc2: 1994-02-11 03:10:35 -timestamp_to_asc3: 2000-01-01 00:00:00 +(errno == PGTYPES_TS_BAD_TIMESTAMP) - timestamp_to_asc3: 2000-01-01 00:00:00 +(errno == PGTYPES_TS_BAD_TIMESTAMP) - timestamp_to_asc4: 2000-01-01 00:00:00 timestamp_fmt_asc: 0: abc-00:00:00-def-01/01/00-ghi% timestamp_defmt_asc(This is a 4/12/80 3-39l12test, This is a %m/%d/%y %H-%Ml%Stest) = 1980-04-12 03:39:12, error: 0 timestamp_defmt_asc(Tue Jul 22 17:28:44 +0200 2003, %a %b %d %H:%M:%S %z %Y) = 2003-07-22 15:28:44, error: 0 diff --git a/src/interfaces/ecpg/test/pgtypeslib/dt_test.pgc b/src/interfaces/ecpg/test/pgtypeslib/dt_test.pgc index f81a3926655..645c273e503 100644 --- a/src/interfaces/ecpg/test/pgtypeslib/dt_test.pgc +++ b/src/interfaces/ecpg/test/pgtypeslib/dt_test.pgc @@ -2,11 +2,14 @@ #include #include #include +#include #include #include exec sql include ../regression; +static void check_errno(void); + int main(void) { @@ -189,10 +192,19 @@ main(void) PGTYPESchar_free(text); ts1 = PGTYPEStimestamp_from_asc("1994-02-11 26:10:35", NULL); + /* failure, check error code */ + check_errno(); text = PGTYPEStimestamp_to_asc(ts1); printf("timestamp_to_asc3: %s\n", text); PGTYPESchar_free(text); + ts1 = PGTYPEStimestamp_from_asc("AM95000062", NULL); + /* failure, check error code */ + check_errno(); + text = PGTYPEStimestamp_to_asc(ts1); + printf("timestamp_to_asc4: %s\n", text); + PGTYPESchar_free(text); + /* abc-03:10:35-def-02/11/94-gh */ /* 12345678901234567890123456789 */ @@ -383,3 +395,21 @@ main(void) return 0; } + +static void +check_errno(void) +{ + switch(errno) + { + case 0: + printf("(no errno set) - "); + break; + case PGTYPES_TS_BAD_TIMESTAMP: + printf("(errno == PGTYPES_TS_BAD_TIMESTAMP) - "); + break; + default: + printf("(unknown errno (%d))\n", errno); + printf("(libc: (%s)) ", strerror(errno)); + break; + } +} diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 47dcb37fd49..e799564f8df 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -427,6 +427,8 @@ static void pgpassfileWarning(PGconn *conn); static void default_threadlock(int acquire); static bool sslVerifyProtocolVersion(const char *version); static bool sslVerifyProtocolRange(const char *min, const char *max); +static bool parse_int_param(const char *value, int *result, PGconn *conn, + const char *context); /* global variable because fe-auth.c needs to access it */ @@ -1780,14 +1782,14 @@ connectFailureMessage(PGconn *conn, int errorno) static int useKeepalives(PGconn *conn) { - char *ep; int val; if (conn->keepalives == NULL) return 1; - val = strtol(conn->keepalives, &ep, 10); - if (*ep) + + if (!parse_int_param(conn->keepalives, &val, conn, "keepalives")) return -1; + return val != 0 ? 1 : 0; } @@ -2634,8 +2636,7 @@ PQconnectPoll(PGconn *conn) if (usekeepalives < 0) { - appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("keepalives parameter must be an integer\n")); + /* error is already reported */ err = 1; } else if (usekeepalives == 0) @@ -3076,16 +3077,13 @@ PQconnectPoll(PGconn *conn) { /* * Server failure of some sort, such as failure to - * fork a backend process. We need to process and - * report the error message, which might be formatted - * according to either protocol 2 or protocol 3. - * Rather than duplicate the code for that, we flip - * into AWAITING_RESPONSE state and let the code there - * deal with it. Note we have *not* consumed the "E" - * byte here. + * fork a backend process. Don't bother retrieving + * the error message; we should not trust it as the + * server has not been authenticated yet. */ - conn->status = CONNECTION_AWAITING_RESPONSE; - goto keep_going; + appendPQExpBuffer(&conn->errorMessage, + libpq_gettext("server sent an error response during SSL exchange\n")); + goto error_return; } else { diff --git a/src/interfaces/libpq/po/es.po b/src/interfaces/libpq/po/es.po index ec064626e33..635494df599 100644 --- a/src/interfaces/libpq/po/es.po +++ b/src/interfaces/libpq/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: libpq (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:45+0000\n" +"POT-Creation-Date: 2024-11-09 06:15+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -71,11 +71,11 @@ msgstr "no se pudo generar nonce\n" #: fe-auth-scram.c:636 fe-auth-scram.c:662 fe-auth-scram.c:677 #: fe-auth-scram.c:727 fe-auth-scram.c:766 fe-auth.c:290 fe-auth.c:362 #: fe-auth.c:398 fe-auth.c:623 fe-auth.c:799 fe-auth.c:1152 fe-auth.c:1322 -#: fe-connect.c:907 fe-connect.c:1456 fe-connect.c:1625 fe-connect.c:2977 -#: fe-connect.c:4829 fe-connect.c:5090 fe-connect.c:5209 fe-connect.c:5461 -#: fe-connect.c:5542 fe-connect.c:5641 fe-connect.c:5897 fe-connect.c:5926 -#: fe-connect.c:5998 fe-connect.c:6022 fe-connect.c:6040 fe-connect.c:6141 -#: fe-connect.c:6150 fe-connect.c:6508 fe-connect.c:6658 fe-connect.c:6924 +#: fe-connect.c:909 fe-connect.c:1458 fe-connect.c:1627 fe-connect.c:2978 +#: fe-connect.c:4830 fe-connect.c:5091 fe-connect.c:5210 fe-connect.c:5462 +#: fe-connect.c:5543 fe-connect.c:5642 fe-connect.c:5898 fe-connect.c:5927 +#: fe-connect.c:5999 fe-connect.c:6023 fe-connect.c:6041 fe-connect.c:6142 +#: fe-connect.c:6151 fe-connect.c:6509 fe-connect.c:6659 fe-connect.c:6925 #: fe-exec.c:710 fe-exec.c:978 fe-exec.c:1326 fe-exec.c:3165 fe-exec.c:3357 #: fe-exec.c:4139 fe-exec.c:4304 fe-gssapi-common.c:111 fe-lobj.c:884 #: fe-protocol3.c:968 fe-protocol3.c:983 fe-protocol3.c:1016 @@ -267,382 +267,378 @@ msgstr "el valor para password_encryption es demasiado largo\n" msgid "unrecognized password encryption algorithm \"%s\"\n" msgstr "algoritmo para cifrado de contraseña «%s» desconocido\n" -#: fe-connect.c:1090 +#: fe-connect.c:1092 #, c-format msgid "could not match %d host names to %d hostaddr values\n" msgstr "no se pudo emparejar %d nombres de host a %d direcciones de host\n" -#: fe-connect.c:1176 +#: fe-connect.c:1178 #, c-format msgid "could not match %d port numbers to %d hosts\n" msgstr "no se pudo emparejar %d números de puertos a %d hosts\n" -#: fe-connect.c:1269 fe-connect.c:1295 fe-connect.c:1337 fe-connect.c:1346 -#: fe-connect.c:1379 fe-connect.c:1423 +#: fe-connect.c:1271 fe-connect.c:1297 fe-connect.c:1339 fe-connect.c:1348 +#: fe-connect.c:1381 fe-connect.c:1425 #, c-format msgid "invalid %s value: \"%s\"\n" msgstr "valor %s no válido: «%s»\n" -#: fe-connect.c:1316 +#: fe-connect.c:1318 #, c-format msgid "sslmode value \"%s\" invalid when SSL support is not compiled in\n" msgstr "el valor sslmode «%s» no es válido cuando no se ha compilado con soporte SSL\n" -#: fe-connect.c:1364 +#: fe-connect.c:1366 msgid "invalid SSL protocol version range\n" msgstr "rango de protocolo SSL no válido \n" -#: fe-connect.c:1389 +#: fe-connect.c:1391 #, c-format msgid "gssencmode value \"%s\" invalid when GSSAPI support is not compiled in\n" msgstr "el valor gssencmode «%s» no es válido cuando no se ha compilado con soporte GSSAPI\n" -#: fe-connect.c:1649 +#: fe-connect.c:1651 #, c-format msgid "could not set socket to TCP no delay mode: %s\n" msgstr "no se pudo establecer el socket en modo TCP sin retardo: %s\n" -#: fe-connect.c:1711 +#: fe-connect.c:1713 #, c-format msgid "connection to server on socket \"%s\" failed: " msgstr "falló la conexión al servidor en el socket «%s»: " -#: fe-connect.c:1738 +#: fe-connect.c:1740 #, c-format msgid "connection to server at \"%s\" (%s), port %s failed: " msgstr "falló la conexión al servidor en «%s» (%s), puerto %s: " -#: fe-connect.c:1743 +#: fe-connect.c:1745 #, c-format msgid "connection to server at \"%s\", port %s failed: " msgstr "falló la conexión al servidor en «%s», puerto %s: " -#: fe-connect.c:1768 +#: fe-connect.c:1770 msgid "\tIs the server running locally and accepting connections on that socket?\n" msgstr "\t¿Está el servidor en ejecución localmente y aceptando conexiones en ese socket?\n" -#: fe-connect.c:1772 +#: fe-connect.c:1774 msgid "\tIs the server running on that host and accepting TCP/IP connections?\n" msgstr "\t¿Está el servidor en ejecución en ese host y aceptando conexiones TCP/IP?\n" -#: fe-connect.c:1836 +#: fe-connect.c:1838 #, c-format msgid "invalid integer value \"%s\" for connection option \"%s\"\n" msgstr "valor entero «%s» no válido para la opción de conexión «%s»\n" -#: fe-connect.c:1866 fe-connect.c:1901 fe-connect.c:1937 fe-connect.c:2037 -#: fe-connect.c:2651 +#: fe-connect.c:1868 fe-connect.c:1903 fe-connect.c:1939 fe-connect.c:2039 +#: fe-connect.c:2652 #, c-format msgid "%s(%s) failed: %s\n" msgstr "%s(%s) falló: %s\n" -#: fe-connect.c:2002 +#: fe-connect.c:2004 #, c-format msgid "%s(%s) failed: error code %d\n" msgstr "%s(%s) falló: código de error %d\n" -#: fe-connect.c:2317 +#: fe-connect.c:2319 msgid "invalid connection state, probably indicative of memory corruption\n" msgstr "el estado de conexión no es válido, probablemente por corrupción de memoria\n" -#: fe-connect.c:2396 +#: fe-connect.c:2398 #, c-format msgid "invalid port number: \"%s\"\n" msgstr "número de puerto no válido: «%s»\n" -#: fe-connect.c:2412 +#: fe-connect.c:2414 #, c-format msgid "could not translate host name \"%s\" to address: %s\n" msgstr "no se pudo traducir el nombre «%s» a una dirección: %s\n" -#: fe-connect.c:2425 +#: fe-connect.c:2427 #, c-format msgid "could not parse network address \"%s\": %s\n" msgstr "no se pudo interpretar la dirección de red «%s»: %s\n" -#: fe-connect.c:2438 +#: fe-connect.c:2440 #, c-format msgid "Unix-domain socket path \"%s\" is too long (maximum %d bytes)\n" msgstr "la ruta del socket de dominio Unix «%s» es demasiado larga (máximo %d bytes)\n" -#: fe-connect.c:2453 +#: fe-connect.c:2455 #, c-format msgid "could not translate Unix-domain socket path \"%s\" to address: %s\n" msgstr "no se pudo traducir la ruta del socket Unix «%s» a una dirección: %s\n" -#: fe-connect.c:2579 +#: fe-connect.c:2581 #, c-format msgid "could not create socket: %s\n" msgstr "no se pudo crear el socket: %s\n" -#: fe-connect.c:2610 +#: fe-connect.c:2612 #, c-format msgid "could not set socket to nonblocking mode: %s\n" msgstr "no se pudo establecer el socket en modo no bloqueante: %s\n" -#: fe-connect.c:2620 +#: fe-connect.c:2622 #, c-format msgid "could not set socket to close-on-exec mode: %s\n" msgstr "no se pudo poner el socket en modo close-on-exec: %s\n" -#: fe-connect.c:2638 -msgid "keepalives parameter must be an integer\n" -msgstr "el parámetro de keepalives debe ser un entero\n" - -#: fe-connect.c:2779 +#: fe-connect.c:2780 #, c-format msgid "could not get socket error status: %s\n" msgstr "no se pudo determinar el estado de error del socket: %s\n" -#: fe-connect.c:2807 +#: fe-connect.c:2808 #, c-format msgid "could not get client address from socket: %s\n" msgstr "no se pudo obtener la dirección del cliente desde el socket: %s\n" -#: fe-connect.c:2846 +#: fe-connect.c:2847 msgid "requirepeer parameter is not supported on this platform\n" msgstr "el parámetro requirepeer no está soportado en esta plataforma\n" -#: fe-connect.c:2849 +#: fe-connect.c:2850 #, c-format msgid "could not get peer credentials: %s\n" msgstr "no se pudo obtener credenciales de la contraparte: %s\n" -#: fe-connect.c:2863 +#: fe-connect.c:2864 #, c-format msgid "requirepeer specifies \"%s\", but actual peer user name is \"%s\"\n" msgstr "requirepeer especifica «%s», pero el nombre de usuario de la contraparte es «%s»\n" -#: fe-connect.c:2905 +#: fe-connect.c:2906 #, c-format msgid "could not send GSSAPI negotiation packet: %s\n" msgstr "no se pudo enviar el paquete de negociación GSSAPI: %s\n" -#: fe-connect.c:2917 +#: fe-connect.c:2918 msgid "GSSAPI encryption required but was impossible (possibly no credential cache, no server support, or using a local socket)\n" msgstr "cifrado GSSAPI requerido, pero fue imposible (posiblemente no hay cache de credenciales, no hay soporte de servidor, o se está usando un socket local)\n" -#: fe-connect.c:2959 +#: fe-connect.c:2960 #, c-format msgid "could not send SSL negotiation packet: %s\n" msgstr "no se pudo enviar el paquete de negociación SSL: %s\n" -#: fe-connect.c:2990 +#: fe-connect.c:2991 #, c-format msgid "could not send startup packet: %s\n" msgstr "no se pudo enviar el paquete de inicio: %s\n" -#: fe-connect.c:3066 +#: fe-connect.c:3067 msgid "server does not support SSL, but SSL was required\n" msgstr "el servidor no soporta SSL, pero SSL es requerida\n" -#: fe-connect.c:3093 +#: fe-connect.c:3094 #, c-format msgid "received invalid response to SSL negotiation: %c\n" msgstr "se ha recibido una respuesta no válida en la negociación SSL: %c\n" -#: fe-connect.c:3114 +#: fe-connect.c:3115 msgid "received unencrypted data after SSL response\n" msgstr "se recibieron datos no cifrados después de la respuesta SSL\n" -#: fe-connect.c:3195 +#: fe-connect.c:3196 msgid "server doesn't support GSSAPI encryption, but it was required\n" msgstr "el servidor no soporta cifrado GSSAPI, pero es requerida\n" -#: fe-connect.c:3207 +#: fe-connect.c:3208 #, c-format msgid "received invalid response to GSSAPI negotiation: %c\n" msgstr "se ha recibido una respuesta no válida en la negociación GSSAPI: %c\n" -#: fe-connect.c:3226 +#: fe-connect.c:3227 msgid "received unencrypted data after GSSAPI encryption response\n" msgstr "se recibieron datos no cifrados después de la respuesta de cifrado GSSAPI\n" -#: fe-connect.c:3291 fe-connect.c:3316 +#: fe-connect.c:3292 fe-connect.c:3317 #, c-format msgid "expected authentication request from server, but received %c\n" msgstr "se esperaba una petición de autentificación desde el servidor, pero se ha recibido %c\n" -#: fe-connect.c:3523 +#: fe-connect.c:3524 msgid "unexpected message from server during startup\n" msgstr "se ha recibido un mensaje inesperado del servidor durante el inicio\n" -#: fe-connect.c:3615 +#: fe-connect.c:3616 msgid "session is read-only\n" msgstr "la sesión es de solo lectura\n" -#: fe-connect.c:3618 +#: fe-connect.c:3619 msgid "session is not read-only\n" msgstr "la sesión no es de solo lectura\n" -#: fe-connect.c:3672 +#: fe-connect.c:3673 msgid "server is in hot standby mode\n" msgstr "el servidor está en modo hot standby\n" -#: fe-connect.c:3675 +#: fe-connect.c:3676 msgid "server is not in hot standby mode\n" msgstr "el servidor no está en modo hot standby\n" -#: fe-connect.c:3793 fe-connect.c:3845 +#: fe-connect.c:3794 fe-connect.c:3846 #, c-format msgid "\"%s\" failed\n" msgstr "«%s» falló\n" -#: fe-connect.c:3859 +#: fe-connect.c:3860 #, c-format msgid "invalid connection state %d, probably indicative of memory corruption\n" msgstr "estado de conexión no válido %d, probablemente por corrupción de memoria\n" -#: fe-connect.c:4842 +#: fe-connect.c:4843 #, c-format msgid "invalid LDAP URL \"%s\": scheme must be ldap://\n" msgstr "URL LDAP no válida «%s»: el esquema debe ser ldap://\n" -#: fe-connect.c:4857 +#: fe-connect.c:4858 #, c-format msgid "invalid LDAP URL \"%s\": missing distinguished name\n" msgstr "URL LDAP no válida «%s»: distinguished name faltante\n" -#: fe-connect.c:4869 fe-connect.c:4927 +#: fe-connect.c:4870 fe-connect.c:4928 #, c-format msgid "invalid LDAP URL \"%s\": must have exactly one attribute\n" msgstr "URL LDAP no válida «%s»: debe tener exactamente un atributo\n" -#: fe-connect.c:4881 fe-connect.c:4943 +#: fe-connect.c:4882 fe-connect.c:4944 #, c-format msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)\n" msgstr "URL LDAP no válida «%s»: debe tener ámbito de búsqueda (base/one/sub)\n" -#: fe-connect.c:4893 +#: fe-connect.c:4894 #, c-format msgid "invalid LDAP URL \"%s\": no filter\n" msgstr "URL LDAP no válida «%s»: no tiene filtro\n" -#: fe-connect.c:4915 +#: fe-connect.c:4916 #, c-format msgid "invalid LDAP URL \"%s\": invalid port number\n" msgstr "URL LDAP no válida «%s»: número de puerto no válido\n" -#: fe-connect.c:4953 +#: fe-connect.c:4954 msgid "could not create LDAP structure\n" msgstr "no se pudo crear estructura LDAP\n" -#: fe-connect.c:5029 +#: fe-connect.c:5030 #, c-format msgid "lookup on LDAP server failed: %s\n" msgstr "búsqueda en servidor LDAP falló: %s\n" -#: fe-connect.c:5040 +#: fe-connect.c:5041 msgid "more than one entry found on LDAP lookup\n" msgstr "se encontro más de una entrada en búsqueda LDAP\n" -#: fe-connect.c:5041 fe-connect.c:5053 +#: fe-connect.c:5042 fe-connect.c:5054 msgid "no entry found on LDAP lookup\n" msgstr "no se encontró ninguna entrada en búsqueda LDAP\n" -#: fe-connect.c:5064 fe-connect.c:5077 +#: fe-connect.c:5065 fe-connect.c:5078 msgid "attribute has no values on LDAP lookup\n" msgstr "la búsqueda LDAP entregó atributo sin valores\n" -#: fe-connect.c:5129 fe-connect.c:5148 fe-connect.c:5680 +#: fe-connect.c:5130 fe-connect.c:5149 fe-connect.c:5681 #, c-format msgid "missing \"=\" after \"%s\" in connection info string\n" msgstr "falta «=» después de «%s» en la cadena de información de la conexión\n" -#: fe-connect.c:5221 fe-connect.c:5865 fe-connect.c:6641 +#: fe-connect.c:5222 fe-connect.c:5866 fe-connect.c:6642 #, c-format msgid "invalid connection option \"%s\"\n" msgstr "opción de conexión no válida «%s»\n" -#: fe-connect.c:5237 fe-connect.c:5729 +#: fe-connect.c:5238 fe-connect.c:5730 msgid "unterminated quoted string in connection info string\n" msgstr "cadena de caracteres entre comillas sin terminar en la cadena de información de conexión\n" -#: fe-connect.c:5318 +#: fe-connect.c:5319 #, c-format msgid "definition of service \"%s\" not found\n" msgstr "la definición de servicio «%s» no fue encontrada\n" -#: fe-connect.c:5344 +#: fe-connect.c:5345 #, c-format msgid "service file \"%s\" not found\n" msgstr "el archivo de servicio «%s» no fue encontrado\n" -#: fe-connect.c:5358 +#: fe-connect.c:5359 #, c-format msgid "line %d too long in service file \"%s\"\n" msgstr "la línea %d es demasiado larga en archivo de servicio «%s»\n" -#: fe-connect.c:5429 fe-connect.c:5473 +#: fe-connect.c:5430 fe-connect.c:5474 #, c-format msgid "syntax error in service file \"%s\", line %d\n" msgstr "error de sintaxis en archivo de servicio «%s», línea %d\n" -#: fe-connect.c:5440 +#: fe-connect.c:5441 #, c-format msgid "nested service specifications not supported in service file \"%s\", line %d\n" msgstr "especificaciones de servicio anidadas no soportadas en archivo de servicio «%s», línea %d\n" -#: fe-connect.c:6161 +#: fe-connect.c:6162 #, c-format msgid "invalid URI propagated to internal parser routine: \"%s\"\n" msgstr "URI no válida propagada a rutina interna de procesamiento: «%s»\n" -#: fe-connect.c:6238 +#: fe-connect.c:6239 #, c-format msgid "end of string reached when looking for matching \"]\" in IPv6 host address in URI: \"%s\"\n" msgstr "se encontró el fin de la cadena mientras se buscaba el «]» correspondiente en dirección IPv6 en URI: «%s»\n" -#: fe-connect.c:6245 +#: fe-connect.c:6246 #, c-format msgid "IPv6 host address may not be empty in URI: \"%s\"\n" msgstr "la dirección IPv6 no puede ser vacía en la URI: «%s»\n" -#: fe-connect.c:6260 +#: fe-connect.c:6261 #, c-format msgid "unexpected character \"%c\" at position %d in URI (expected \":\" or \"/\"): \"%s\"\n" msgstr "carácter «%c» inesperado en la posición %d en URI (se esperaba «:» o «/»): «%s»\n" -#: fe-connect.c:6390 +#: fe-connect.c:6391 #, c-format msgid "extra key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "separador llave/valor «=» extra en parámetro de la URI: «%s»\n" -#: fe-connect.c:6410 +#: fe-connect.c:6411 #, c-format msgid "missing key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "separador llave/valor «=» faltante en parámetro de la URI: «%s»\n" -#: fe-connect.c:6462 +#: fe-connect.c:6463 #, c-format msgid "invalid URI query parameter: \"%s\"\n" msgstr "parámetro de URI no válido: «%s»\n" -#: fe-connect.c:6536 +#: fe-connect.c:6537 #, c-format msgid "invalid percent-encoded token: \"%s\"\n" msgstr "elemento escapado con %% no válido: «%s»\n" -#: fe-connect.c:6546 +#: fe-connect.c:6547 #, c-format msgid "forbidden value %%00 in percent-encoded value: \"%s\"\n" msgstr "valor no permitido %%00 en valor escapado con %%: «%s»\n" -#: fe-connect.c:6916 +#: fe-connect.c:6917 msgid "connection pointer is NULL\n" msgstr "el puntero de conexión es NULL\n" -#: fe-connect.c:7204 +#: fe-connect.c:7205 #, c-format msgid "WARNING: password file \"%s\" is not a plain file\n" msgstr "ADVERTENCIA: El archivo de claves «%s» no es un archivo plano\n" -#: fe-connect.c:7213 +#: fe-connect.c:7214 #, c-format msgid "WARNING: password file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n" msgstr "ADVERTENCIA: El archivo de claves «%s» tiene permiso de lectura para el grupo u otros; los permisos deberían ser u=rw (0600) o menos\n" -#: fe-connect.c:7321 +#: fe-connect.c:7322 #, c-format msgid "password retrieved from file \"%s\"\n" msgstr "contraseña obtenida desde el archivo «%s»\n" diff --git a/src/interfaces/libpq/po/fr.po b/src/interfaces/libpq/po/fr.po index d1fbd9b4c3a..9dfbf8f6885 100644 --- a/src/interfaces/libpq/po/fr.po +++ b/src/interfaces/libpq/po/fr.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2022-09-26 08:10+0000\n" -"PO-Revision-Date: 2022-09-26 14:05+0200\n" +"POT-Creation-Date: 2024-11-11 02:14+0000\n" +"PO-Revision-Date: 2024-11-11 09:54+0100\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.5\n" #: ../../port/thread.c:100 ../../port/thread.c:136 #, c-format @@ -72,16 +72,16 @@ msgstr "n'a pas pu générer le nonce\n" #: fe-auth-scram.c:636 fe-auth-scram.c:662 fe-auth-scram.c:677 #: fe-auth-scram.c:727 fe-auth-scram.c:766 fe-auth.c:290 fe-auth.c:362 #: fe-auth.c:398 fe-auth.c:623 fe-auth.c:799 fe-auth.c:1152 fe-auth.c:1322 -#: fe-connect.c:907 fe-connect.c:1456 fe-connect.c:1625 fe-connect.c:2977 -#: fe-connect.c:4824 fe-connect.c:5085 fe-connect.c:5204 fe-connect.c:5456 -#: fe-connect.c:5537 fe-connect.c:5636 fe-connect.c:5892 fe-connect.c:5921 -#: fe-connect.c:5993 fe-connect.c:6017 fe-connect.c:6035 fe-connect.c:6136 -#: fe-connect.c:6145 fe-connect.c:6503 fe-connect.c:6653 fe-connect.c:6919 -#: fe-exec.c:710 fe-exec.c:976 fe-exec.c:1324 fe-exec.c:3144 fe-exec.c:3328 -#: fe-exec.c:4110 fe-exec.c:4275 fe-gssapi-common.c:111 fe-lobj.c:884 -#: fe-protocol3.c:973 fe-protocol3.c:988 fe-protocol3.c:1021 -#: fe-protocol3.c:1729 fe-protocol3.c:2132 fe-secure-common.c:112 -#: fe-secure-gssapi.c:504 fe-secure-openssl.c:449 fe-secure-openssl.c:1261 +#: fe-connect.c:909 fe-connect.c:1458 fe-connect.c:1627 fe-connect.c:2978 +#: fe-connect.c:4827 fe-connect.c:5088 fe-connect.c:5207 fe-connect.c:5459 +#: fe-connect.c:5540 fe-connect.c:5639 fe-connect.c:5895 fe-connect.c:5924 +#: fe-connect.c:5996 fe-connect.c:6020 fe-connect.c:6038 fe-connect.c:6139 +#: fe-connect.c:6148 fe-connect.c:6506 fe-connect.c:6656 fe-connect.c:6922 +#: fe-exec.c:710 fe-exec.c:978 fe-exec.c:1326 fe-exec.c:3165 fe-exec.c:3357 +#: fe-exec.c:4139 fe-exec.c:4304 fe-gssapi-common.c:111 fe-lobj.c:884 +#: fe-protocol3.c:968 fe-protocol3.c:983 fe-protocol3.c:1016 +#: fe-protocol3.c:1724 fe-protocol3.c:2127 fe-secure-common.c:112 +#: fe-secure-gssapi.c:500 fe-secure-openssl.c:455 fe-secure-openssl.c:1252 msgid "out of memory\n" msgstr "mémoire épuisée\n" @@ -127,12 +127,12 @@ msgstr "message SCRAM malformé (problème à la fin du server-final-message)\n" msgid "malformed SCRAM message (invalid server signature)\n" msgstr "message SCRAM malformé (signature serveur invalide)\n" -#: fe-auth-scram.c:934 fe-exec.c:527 fe-protocol3.c:207 fe-protocol3.c:232 -#: fe-protocol3.c:261 fe-protocol3.c:279 fe-protocol3.c:360 fe-protocol3.c:733 +#: fe-auth-scram.c:935 fe-exec.c:527 fe-protocol3.c:207 fe-protocol3.c:232 +#: fe-protocol3.c:256 fe-protocol3.c:274 fe-protocol3.c:355 fe-protocol3.c:728 msgid "out of memory" msgstr "mémoire épuisée" -#: fe-auth-scram.c:943 +#: fe-auth-scram.c:944 msgid "could not generate random salt" msgstr "n'a pas pu générer le sel aléatoire" @@ -270,387 +270,387 @@ msgstr "la valeur de password_encryption est trop longue\n" msgid "unrecognized password encryption algorithm \"%s\"\n" msgstr "algorithme de chiffrement du mot de passe « %s » non reconnu\n" -#: fe-connect.c:1090 +#: fe-connect.c:1092 #, c-format msgid "could not match %d host names to %d hostaddr values\n" msgstr "n'a pas pu faire correspondre les %d noms d'hôte aux %d valeurs hostaddr\n" -#: fe-connect.c:1176 +#: fe-connect.c:1178 #, c-format msgid "could not match %d port numbers to %d hosts\n" msgstr "n'a pas pu faire correspondre les %d numéros de port aux %d hôtes\n" -#: fe-connect.c:1269 fe-connect.c:1295 fe-connect.c:1337 fe-connect.c:1346 -#: fe-connect.c:1379 fe-connect.c:1423 +#: fe-connect.c:1271 fe-connect.c:1297 fe-connect.c:1339 fe-connect.c:1348 +#: fe-connect.c:1381 fe-connect.c:1425 #, c-format msgid "invalid %s value: \"%s\"\n" msgstr "valeur %s invalide : « %s »\n" -#: fe-connect.c:1316 +#: fe-connect.c:1318 #, c-format msgid "sslmode value \"%s\" invalid when SSL support is not compiled in\n" msgstr "valeur sslmode « %s » invalide si le support SSL n'est pas compilé initialement\n" -#: fe-connect.c:1364 +#: fe-connect.c:1366 msgid "invalid SSL protocol version range\n" msgstr "intervalle de version invalide pour le protocole SSL\n" -#: fe-connect.c:1389 +#: fe-connect.c:1391 #, c-format msgid "gssencmode value \"%s\" invalid when GSSAPI support is not compiled in\n" msgstr "valeur gssencmode « %s » invalide si le support GSSAPI n'est pas compilé\n" -#: fe-connect.c:1649 +#: fe-connect.c:1651 #, c-format msgid "could not set socket to TCP no delay mode: %s\n" msgstr "n'a pas pu activer le mode TCP sans délai pour la socket : %s\n" -#: fe-connect.c:1711 +#: fe-connect.c:1713 #, c-format msgid "connection to server on socket \"%s\" failed: " msgstr "la connexion au serveur sur le socket « %s » a échoué : " -#: fe-connect.c:1738 +#: fe-connect.c:1740 #, c-format msgid "connection to server at \"%s\" (%s), port %s failed: " msgstr "la connexion au serveur sur « %s » (%s), port %s a échoué : " -#: fe-connect.c:1743 +#: fe-connect.c:1745 #, c-format msgid "connection to server at \"%s\", port %s failed: " msgstr "la connexion au serveur sur « %s », port %s a échoué : " -#: fe-connect.c:1768 +#: fe-connect.c:1770 msgid "\tIs the server running locally and accepting connections on that socket?\n" msgstr "\tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ?\n" -#: fe-connect.c:1772 +#: fe-connect.c:1774 msgid "\tIs the server running on that host and accepting TCP/IP connections?\n" msgstr "\tLe serveur est-il actif sur cet hôte et accepte-t-il les connexions ?\n" -#: fe-connect.c:1836 +#: fe-connect.c:1838 #, c-format msgid "invalid integer value \"%s\" for connection option \"%s\"\n" msgstr "valeur entière « %s » invalide pour l'option de connexion « %s »\n" -#: fe-connect.c:1866 fe-connect.c:1901 fe-connect.c:1937 fe-connect.c:2037 -#: fe-connect.c:2651 +#: fe-connect.c:1868 fe-connect.c:1903 fe-connect.c:1939 fe-connect.c:2039 +#: fe-connect.c:2652 #, c-format msgid "%s(%s) failed: %s\n" msgstr "échec de %s(%s) : %s\n" -#: fe-connect.c:2002 +#: fe-connect.c:2004 #, c-format msgid "%s(%s) failed: error code %d\n" msgstr "échec de %s(%s) : code d'erreur %d\n" -#: fe-connect.c:2317 +#: fe-connect.c:2319 msgid "invalid connection state, probably indicative of memory corruption\n" msgstr "état de connexion invalide, indique probablement une corruption de mémoire\n" -#: fe-connect.c:2396 +#: fe-connect.c:2398 #, c-format msgid "invalid port number: \"%s\"\n" msgstr "numéro de port invalide : « %s »\n" -#: fe-connect.c:2412 +#: fe-connect.c:2414 #, c-format msgid "could not translate host name \"%s\" to address: %s\n" msgstr "n'a pas pu traduire le nom d'hôte « %s » en adresse : %s\n" -#: fe-connect.c:2425 +#: fe-connect.c:2427 #, c-format msgid "could not parse network address \"%s\": %s\n" msgstr "n'a pas pu analyser l'adresse réseau « %s » : %s\n" -#: fe-connect.c:2438 +#: fe-connect.c:2440 #, c-format msgid "Unix-domain socket path \"%s\" is too long (maximum %d bytes)\n" msgstr "Le chemin du socket de domaine Unix, « %s », est trop (maximum %d octets)\n" -#: fe-connect.c:2453 +#: fe-connect.c:2455 #, c-format msgid "could not translate Unix-domain socket path \"%s\" to address: %s\n" msgstr "" "n'a pas pu traduire le chemin de la socket du domaine Unix « %s » en adresse :\n" "%s\n" -#: fe-connect.c:2579 +#: fe-connect.c:2581 #, c-format msgid "could not create socket: %s\n" msgstr "n'a pas pu créer la socket : %s\n" -#: fe-connect.c:2610 +#: fe-connect.c:2612 #, c-format msgid "could not set socket to nonblocking mode: %s\n" msgstr "n'a pas pu activer le mode non-bloquant pour la socket : %s\n" -#: fe-connect.c:2620 +#: fe-connect.c:2622 #, c-format msgid "could not set socket to close-on-exec mode: %s\n" msgstr "n'a pas pu paramétrer la socket en mode close-on-exec : %s\n" -#: fe-connect.c:2638 -msgid "keepalives parameter must be an integer\n" -msgstr "le paramètre keepalives doit être un entier\n" - -#: fe-connect.c:2779 +#: fe-connect.c:2780 #, c-format msgid "could not get socket error status: %s\n" msgstr "n'a pas pu déterminer le statut d'erreur de la socket : %s\n" -#: fe-connect.c:2807 +#: fe-connect.c:2808 #, c-format msgid "could not get client address from socket: %s\n" msgstr "n'a pas pu obtenir l'adresse du client depuis la socket : %s\n" -#: fe-connect.c:2846 +#: fe-connect.c:2847 msgid "requirepeer parameter is not supported on this platform\n" msgstr "le paramètre requirepeer n'est pas supporté sur cette plateforme\n" -#: fe-connect.c:2849 +#: fe-connect.c:2850 #, c-format msgid "could not get peer credentials: %s\n" msgstr "n'a pas pu obtenir l'authentification de l'autre : %s\n" -#: fe-connect.c:2863 +#: fe-connect.c:2864 #, c-format msgid "requirepeer specifies \"%s\", but actual peer user name is \"%s\"\n" msgstr "requirepeer indique « %s » mais le nom de l'utilisateur réel est « %s »\n" -#: fe-connect.c:2905 +#: fe-connect.c:2906 #, c-format msgid "could not send GSSAPI negotiation packet: %s\n" msgstr "n'a pas pu transmettre le paquet de négociation GSSAPI : %s\n" -#: fe-connect.c:2917 +#: fe-connect.c:2918 msgid "GSSAPI encryption required but was impossible (possibly no credential cache, no server support, or using a local socket)\n" msgstr "le chiffrage avec GSSAPI était requis, mais impossible (potentiellement pas de cache, de support serveur ou de socket local)\n" -#: fe-connect.c:2959 +#: fe-connect.c:2960 #, c-format msgid "could not send SSL negotiation packet: %s\n" msgstr "n'a pas pu transmettre le paquet de négociation SSL : %s\n" -#: fe-connect.c:2990 +#: fe-connect.c:2991 #, c-format msgid "could not send startup packet: %s\n" msgstr "n'a pas pu transmettre le paquet de démarrage : %s\n" -#: fe-connect.c:3066 +#: fe-connect.c:3067 msgid "server does not support SSL, but SSL was required\n" msgstr "le serveur ne supporte pas SSL alors que SSL était réclamé\n" -#: fe-connect.c:3093 +#: fe-connect.c:3085 +msgid "server sent an error response during SSL exchange\n" +msgstr "le serveur a envoyé une erreur lors de l'échange SSL\n" + +#: fe-connect.c:3091 #, c-format msgid "received invalid response to SSL negotiation: %c\n" msgstr "a reçu une réponse invalide à la négociation SSL : %c\n" -#: fe-connect.c:3114 +#: fe-connect.c:3112 msgid "received unencrypted data after SSL response\n" msgstr "a reçu des données non chiffrées après la réponse SSL\n" -#: fe-connect.c:3195 +#: fe-connect.c:3193 msgid "server doesn't support GSSAPI encryption, but it was required\n" msgstr "le serveur ne supporte pas le chiffrage GSSAPI alors qu'il était réclamé\n" -#: fe-connect.c:3207 +#: fe-connect.c:3205 #, c-format msgid "received invalid response to GSSAPI negotiation: %c\n" msgstr "a reçu une réponse invalide à la négociation GSSAPI : %c\n" -#: fe-connect.c:3226 +#: fe-connect.c:3224 msgid "received unencrypted data after GSSAPI encryption response\n" msgstr "a reçu des données non chiffrées après la réponse de chiffrement GSSAPI\n" -#: fe-connect.c:3286 fe-connect.c:3311 +#: fe-connect.c:3289 fe-connect.c:3314 #, c-format msgid "expected authentication request from server, but received %c\n" msgstr "" "attendait une requête d'authentification en provenance du serveur, mais a\n" " reçu %c\n" -#: fe-connect.c:3518 +#: fe-connect.c:3521 msgid "unexpected message from server during startup\n" msgstr "message inattendu du serveur lors du démarrage\n" -#: fe-connect.c:3610 +#: fe-connect.c:3613 msgid "session is read-only\n" msgstr "la session est en lecture seule\n" -#: fe-connect.c:3613 +#: fe-connect.c:3616 msgid "session is not read-only\n" msgstr "la session n'est pas en lecture seule\n" -#: fe-connect.c:3667 +#: fe-connect.c:3670 msgid "server is in hot standby mode\n" msgstr "le serveur est dans le mode hot standby\n" -#: fe-connect.c:3670 +#: fe-connect.c:3673 msgid "server is not in hot standby mode\n" msgstr "le serveur n'est pas dans le mode hot standby\n" -#: fe-connect.c:3788 fe-connect.c:3840 +#: fe-connect.c:3791 fe-connect.c:3843 #, c-format msgid "\"%s\" failed\n" msgstr "échec de « %s »\n" -#: fe-connect.c:3854 +#: fe-connect.c:3857 #, c-format msgid "invalid connection state %d, probably indicative of memory corruption\n" msgstr "" "état de connexion invalide (%d), indiquant probablement une corruption de\n" " mémoire\n" -#: fe-connect.c:4837 +#: fe-connect.c:4840 #, c-format msgid "invalid LDAP URL \"%s\": scheme must be ldap://\n" msgstr "URL LDAP « %s » invalide : le schéma doit être ldap://\n" -#: fe-connect.c:4852 +#: fe-connect.c:4855 #, c-format msgid "invalid LDAP URL \"%s\": missing distinguished name\n" msgstr "URL LDAP « %s » invalide : le « distinguished name » manque\n" -#: fe-connect.c:4864 fe-connect.c:4922 +#: fe-connect.c:4867 fe-connect.c:4925 #, c-format msgid "invalid LDAP URL \"%s\": must have exactly one attribute\n" msgstr "URL LDAP « %s » invalide : doit avoir exactement un attribut\n" -#: fe-connect.c:4876 fe-connect.c:4938 +#: fe-connect.c:4879 fe-connect.c:4941 #, c-format msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)\n" msgstr "URL LDAP « %s » invalide : doit avoir une échelle de recherche (base/un/sous)\n" -#: fe-connect.c:4888 +#: fe-connect.c:4891 #, c-format msgid "invalid LDAP URL \"%s\": no filter\n" msgstr "URL LDAP « %s » invalide : aucun filtre\n" -#: fe-connect.c:4910 +#: fe-connect.c:4913 #, c-format msgid "invalid LDAP URL \"%s\": invalid port number\n" msgstr "URL LDAP « %s » invalide : numéro de port invalide\n" -#: fe-connect.c:4948 +#: fe-connect.c:4951 msgid "could not create LDAP structure\n" msgstr "n'a pas pu créer la structure LDAP\n" -#: fe-connect.c:5024 +#: fe-connect.c:5027 #, c-format msgid "lookup on LDAP server failed: %s\n" msgstr "échec de la recherche sur le serveur LDAP : %s\n" -#: fe-connect.c:5035 +#: fe-connect.c:5038 msgid "more than one entry found on LDAP lookup\n" msgstr "plusieurs entrées trouvées pendant la recherche LDAP\n" -#: fe-connect.c:5036 fe-connect.c:5048 +#: fe-connect.c:5039 fe-connect.c:5051 msgid "no entry found on LDAP lookup\n" msgstr "aucune entrée trouvée pendant la recherche LDAP\n" -#: fe-connect.c:5059 fe-connect.c:5072 +#: fe-connect.c:5062 fe-connect.c:5075 msgid "attribute has no values on LDAP lookup\n" msgstr "l'attribut n'a pas de valeur après la recherche LDAP\n" -#: fe-connect.c:5124 fe-connect.c:5143 fe-connect.c:5675 +#: fe-connect.c:5127 fe-connect.c:5146 fe-connect.c:5678 #, c-format msgid "missing \"=\" after \"%s\" in connection info string\n" msgstr "« = » manquant après « %s » dans la chaîne des paramètres de connexion\n" -#: fe-connect.c:5216 fe-connect.c:5860 fe-connect.c:6636 +#: fe-connect.c:5219 fe-connect.c:5863 fe-connect.c:6639 #, c-format msgid "invalid connection option \"%s\"\n" msgstr "option de connexion « %s » invalide\n" -#: fe-connect.c:5232 fe-connect.c:5724 +#: fe-connect.c:5235 fe-connect.c:5727 msgid "unterminated quoted string in connection info string\n" msgstr "guillemets non refermés dans la chaîne des paramètres de connexion\n" -#: fe-connect.c:5313 +#: fe-connect.c:5316 #, c-format msgid "definition of service \"%s\" not found\n" msgstr "définition du service « %s » introuvable\n" -#: fe-connect.c:5339 +#: fe-connect.c:5342 #, c-format msgid "service file \"%s\" not found\n" msgstr "fichier de service « %s » introuvable\n" -#: fe-connect.c:5353 +#: fe-connect.c:5356 #, c-format msgid "line %d too long in service file \"%s\"\n" msgstr "ligne %d trop longue dans le fichier service « %s »\n" -#: fe-connect.c:5424 fe-connect.c:5468 +#: fe-connect.c:5427 fe-connect.c:5471 #, c-format msgid "syntax error in service file \"%s\", line %d\n" msgstr "erreur de syntaxe dans le fichier service « %s », ligne %d\n" -#: fe-connect.c:5435 +#: fe-connect.c:5438 #, c-format msgid "nested service specifications not supported in service file \"%s\", line %d\n" msgstr "spécifications imbriquées de service non supportées dans le fichier service « %s », ligne %d\n" -#: fe-connect.c:6156 +#: fe-connect.c:6159 #, c-format msgid "invalid URI propagated to internal parser routine: \"%s\"\n" msgstr "URI invalide propagée à la routine d'analyse interne : « %s »\n" -#: fe-connect.c:6233 +#: fe-connect.c:6236 #, c-format msgid "end of string reached when looking for matching \"]\" in IPv6 host address in URI: \"%s\"\n" msgstr "" "fin de chaîne atteinte lors de la recherche du « ] » correspondant dans\n" "l'adresse IPv6 de l'hôte indiquée dans l'URI : « %s »\n" -#: fe-connect.c:6240 +#: fe-connect.c:6243 #, c-format msgid "IPv6 host address may not be empty in URI: \"%s\"\n" msgstr "l'adresse IPv6 de l'hôte ne peut pas être vide dans l'URI : « %s »\n" -#: fe-connect.c:6255 +#: fe-connect.c:6258 #, c-format msgid "unexpected character \"%c\" at position %d in URI (expected \":\" or \"/\"): \"%s\"\n" msgstr "" "caractère « %c » inattendu à la position %d de l'URI (caractère « : » ou\n" "« / » attendu) : « %s »\n" -#: fe-connect.c:6385 +#: fe-connect.c:6388 #, c-format msgid "extra key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "séparateur « = » de clé/valeur en trop dans le paramètre de requête URI : « %s »\n" -#: fe-connect.c:6405 +#: fe-connect.c:6408 #, c-format msgid "missing key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "séparateur « = » de clé/valeur manquant dans le paramètre de requête URI : « %s »\n" -#: fe-connect.c:6457 +#: fe-connect.c:6460 #, c-format msgid "invalid URI query parameter: \"%s\"\n" msgstr "paramètre de la requête URI invalide : « %s »\n" -#: fe-connect.c:6531 +#: fe-connect.c:6534 #, c-format msgid "invalid percent-encoded token: \"%s\"\n" msgstr "jeton encodé en pourcentage invalide : « %s »\n" -#: fe-connect.c:6541 +#: fe-connect.c:6544 #, c-format msgid "forbidden value %%00 in percent-encoded value: \"%s\"\n" msgstr "valeur %%00 interdite dans la valeur codée en pourcentage : « %s »\n" -#: fe-connect.c:6911 +#: fe-connect.c:6914 msgid "connection pointer is NULL\n" msgstr "le pointeur de connexion est NULL\n" -#: fe-connect.c:7199 +#: fe-connect.c:7202 #, c-format msgid "WARNING: password file \"%s\" is not a plain file\n" msgstr "ATTENTION : le fichier de mots de passe « %s » n'est pas un fichier texte\n" -#: fe-connect.c:7208 +#: fe-connect.c:7211 #, c-format msgid "WARNING: password file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n" msgstr "" @@ -658,17 +658,17 @@ msgstr "" "lecture pour le groupe ou universel ; les droits devraient être u=rw (0600)\n" "ou inférieur\n" -#: fe-connect.c:7316 +#: fe-connect.c:7319 #, c-format msgid "password retrieved from file \"%s\"\n" msgstr "mot de passe récupéré dans le fichier « %s »\n" -#: fe-exec.c:466 fe-exec.c:3402 +#: fe-exec.c:466 fe-exec.c:3431 #, c-format msgid "row number %d is out of range 0..%d" msgstr "le numéro de ligne %d est en dehors des limites 0..%d" -#: fe-exec.c:528 fe-protocol3.c:1937 +#: fe-exec.c:528 fe-protocol3.c:1932 #, c-format msgid "%s" msgstr "%s" @@ -677,125 +677,125 @@ msgstr "%s" msgid "write to server failed\n" msgstr "échec en écriture vers le serveur\n" -#: fe-exec.c:875 +#: fe-exec.c:877 msgid "no error text available\n" msgstr "aucun texte d'erreur disponible\n" -#: fe-exec.c:964 +#: fe-exec.c:966 msgid "NOTICE" msgstr "NOTICE" -#: fe-exec.c:1022 +#: fe-exec.c:1024 msgid "PGresult cannot support more than INT_MAX tuples" msgstr "PGresult ne supporte pas plus de INT_MAX lignes" -#: fe-exec.c:1034 +#: fe-exec.c:1036 msgid "size_t overflow" msgstr "saturation de size_t" -#: fe-exec.c:1448 fe-exec.c:1519 fe-exec.c:1568 +#: fe-exec.c:1450 fe-exec.c:1521 fe-exec.c:1570 msgid "command string is a null pointer\n" msgstr "la chaîne de commande est un pointeur nul\n" -#: fe-exec.c:1455 fe-exec.c:2914 +#: fe-exec.c:1457 fe-exec.c:2908 #, c-format msgid "%s not allowed in pipeline mode\n" msgstr "%s non autorisé dans le mode pipeline\n" -#: fe-exec.c:1525 fe-exec.c:1574 fe-exec.c:1670 +#: fe-exec.c:1527 fe-exec.c:1576 fe-exec.c:1672 #, c-format msgid "number of parameters must be between 0 and %d\n" msgstr "le nombre de paramètres doit être compris entre 0 et %d\n" -#: fe-exec.c:1562 fe-exec.c:1664 +#: fe-exec.c:1564 fe-exec.c:1666 msgid "statement name is a null pointer\n" msgstr "le nom de l'instruction est un pointeur nul\n" -#: fe-exec.c:1708 fe-exec.c:3255 +#: fe-exec.c:1710 fe-exec.c:3276 msgid "no connection to the server\n" msgstr "aucune connexion au serveur\n" -#: fe-exec.c:1717 fe-exec.c:3264 +#: fe-exec.c:1719 fe-exec.c:3285 msgid "another command is already in progress\n" msgstr "une autre commande est déjà en cours\n" -#: fe-exec.c:1748 +#: fe-exec.c:1750 msgid "cannot queue commands during COPY\n" msgstr "ne peut pas mettre en queue les commandes lors du COPY\n" -#: fe-exec.c:1866 +#: fe-exec.c:1868 msgid "length must be given for binary parameter\n" msgstr "la longueur doit être indiquée pour les paramètres binaires\n" -#: fe-exec.c:2189 +#: fe-exec.c:2183 #, c-format msgid "unexpected asyncStatus: %d\n" msgstr "asyncStatus inattendu : %d\n" -#: fe-exec.c:2347 +#: fe-exec.c:2341 msgid "synchronous command execution functions are not allowed in pipeline mode\n" msgstr "les fonctions d'exécution de commande synchrone ne sont pas autorisées en mode pipeline\n" -#: fe-exec.c:2364 +#: fe-exec.c:2358 msgid "COPY terminated by new PQexec" msgstr "COPY terminé par un nouveau PQexec" -#: fe-exec.c:2381 +#: fe-exec.c:2375 msgid "PQexec not allowed during COPY BOTH\n" msgstr "PQexec non autorisé pendant COPY BOTH\n" -#: fe-exec.c:2609 fe-exec.c:2665 fe-exec.c:2734 fe-protocol3.c:1868 +#: fe-exec.c:2603 fe-exec.c:2659 fe-exec.c:2728 fe-protocol3.c:1863 msgid "no COPY in progress\n" msgstr "aucun COPY en cours\n" -#: fe-exec.c:2923 +#: fe-exec.c:2917 msgid "connection in wrong state\n" msgstr "connexion dans un état erroné\n" -#: fe-exec.c:2967 +#: fe-exec.c:2961 msgid "cannot enter pipeline mode, connection not idle\n" msgstr "ne peut pas entrer dans le mode pipeline, connexion active\n" -#: fe-exec.c:3004 fe-exec.c:3028 +#: fe-exec.c:2998 fe-exec.c:3022 msgid "cannot exit pipeline mode with uncollected results\n" msgstr "ne peut pas sortir du mode pipeline avec des résultats non récupérés\n" -#: fe-exec.c:3009 +#: fe-exec.c:3003 msgid "cannot exit pipeline mode while busy\n" msgstr "ne peut pas sortir du mode pipeline alors qu'il est occupé\n" -#: fe-exec.c:3021 +#: fe-exec.c:3015 msgid "cannot exit pipeline mode while in COPY\n" msgstr "ne peut pas sortir du mode pipeline pendant un COPY\n" -#: fe-exec.c:3188 +#: fe-exec.c:3209 msgid "cannot send pipeline when not in pipeline mode\n" msgstr "ne peut pas envoyer le pipeline lorsqu'il n'est pas en mode pipeline\n" -#: fe-exec.c:3291 +#: fe-exec.c:3320 msgid "invalid ExecStatusType code" msgstr "code ExecStatusType invalide" -#: fe-exec.c:3318 +#: fe-exec.c:3347 msgid "PGresult is not an error result\n" msgstr "PGresult n'est pas un résultat d'erreur\n" -#: fe-exec.c:3386 fe-exec.c:3409 +#: fe-exec.c:3415 fe-exec.c:3438 #, c-format msgid "column number %d is out of range 0..%d" msgstr "le numéro de colonne %d est en dehors des limites 0..%d" -#: fe-exec.c:3424 +#: fe-exec.c:3453 #, c-format msgid "parameter number %d is out of range 0..%d" msgstr "le numéro de paramètre %d est en dehors des limites 0..%d" -#: fe-exec.c:3735 +#: fe-exec.c:3764 #, c-format msgid "could not interpret result from server: %s" msgstr "n'a pas pu interpréter la réponse du serveur : %s" -#: fe-exec.c:4001 fe-exec.c:4092 +#: fe-exec.c:4030 fe-exec.c:4121 msgid "incomplete multibyte character\n" msgstr "caractère multi-octet incomplet\n" @@ -857,8 +857,8 @@ msgstr "entier de taille %lu non supporté par pqPutInt" msgid "connection not open\n" msgstr "la connexion n'est pas active\n" -#: fe-misc.c:755 fe-secure-openssl.c:218 fe-secure-openssl.c:325 -#: fe-secure.c:260 fe-secure.c:423 +#: fe-misc.c:755 fe-secure-openssl.c:213 fe-secure-openssl.c:326 +#: fe-secure.c:262 fe-secure.c:430 #, c-format msgid "" "server closed the connection unexpectedly\n" @@ -887,134 +887,134 @@ msgstr "échec de %s() : %s\n" msgid "message type 0x%02x arrived from server while idle" msgstr "le message de type 0x%02x est arrivé alors que le serveur était en attente" -#: fe-protocol3.c:393 +#: fe-protocol3.c:388 msgid "server sent data (\"D\" message) without prior row description (\"T\" message)\n" msgstr "" "le serveur a envoyé des données (message « D ») sans description préalable\n" "de la ligne (message « T »)\n" -#: fe-protocol3.c:436 +#: fe-protocol3.c:431 #, c-format msgid "unexpected response from server; first received character was \"%c\"\n" msgstr "réponse inattendue du serveur, le premier caractère reçu étant « %c »\n" -#: fe-protocol3.c:461 +#: fe-protocol3.c:456 #, c-format msgid "message contents do not agree with length in message type \"%c\"\n" msgstr "" "le contenu du message ne correspond pas avec la longueur du type de message\n" "« %c »\n" -#: fe-protocol3.c:481 +#: fe-protocol3.c:476 #, c-format msgid "lost synchronization with server: got message type \"%c\", length %d\n" msgstr "" "synchronisation perdue avec le serveur : a reçu le type de message « %c »,\n" "longueur %d\n" -#: fe-protocol3.c:533 fe-protocol3.c:573 +#: fe-protocol3.c:528 fe-protocol3.c:568 msgid "insufficient data in \"T\" message" msgstr "données insuffisantes dans le message « T »" -#: fe-protocol3.c:644 fe-protocol3.c:850 +#: fe-protocol3.c:639 fe-protocol3.c:845 msgid "out of memory for query result" msgstr "mémoire épuisée pour le résultat de la requête" -#: fe-protocol3.c:713 +#: fe-protocol3.c:708 msgid "insufficient data in \"t\" message" msgstr "données insuffisantes dans le message « t »" -#: fe-protocol3.c:772 fe-protocol3.c:804 fe-protocol3.c:822 +#: fe-protocol3.c:767 fe-protocol3.c:799 fe-protocol3.c:817 msgid "insufficient data in \"D\" message" msgstr "données insuffisantes dans le message « D »" -#: fe-protocol3.c:778 +#: fe-protocol3.c:773 msgid "unexpected field count in \"D\" message" msgstr "nombre de champs inattendu dans le message « D »" -#: fe-protocol3.c:1034 +#: fe-protocol3.c:1029 msgid "no error message available\n" msgstr "aucun message d'erreur disponible\n" #. translator: %s represents a digit string -#: fe-protocol3.c:1082 fe-protocol3.c:1101 +#: fe-protocol3.c:1077 fe-protocol3.c:1096 #, c-format msgid " at character %s" msgstr " au caractère %s" -#: fe-protocol3.c:1114 +#: fe-protocol3.c:1109 #, c-format msgid "DETAIL: %s\n" msgstr "DÉTAIL : %s\n" -#: fe-protocol3.c:1117 +#: fe-protocol3.c:1112 #, c-format msgid "HINT: %s\n" msgstr "ASTUCE : %s\n" -#: fe-protocol3.c:1120 +#: fe-protocol3.c:1115 #, c-format msgid "QUERY: %s\n" msgstr "REQUÊTE : %s\n" -#: fe-protocol3.c:1127 +#: fe-protocol3.c:1122 #, c-format msgid "CONTEXT: %s\n" msgstr "CONTEXTE : %s\n" -#: fe-protocol3.c:1136 +#: fe-protocol3.c:1131 #, c-format msgid "SCHEMA NAME: %s\n" msgstr "NOM DE SCHÉMA : %s\n" -#: fe-protocol3.c:1140 +#: fe-protocol3.c:1135 #, c-format msgid "TABLE NAME: %s\n" msgstr "NOM DE TABLE : %s\n" -#: fe-protocol3.c:1144 +#: fe-protocol3.c:1139 #, c-format msgid "COLUMN NAME: %s\n" msgstr "NOM DE COLONNE : %s\n" -#: fe-protocol3.c:1148 +#: fe-protocol3.c:1143 #, c-format msgid "DATATYPE NAME: %s\n" msgstr "NOM DU TYPE DE DONNÉES : %s\n" -#: fe-protocol3.c:1152 +#: fe-protocol3.c:1147 #, c-format msgid "CONSTRAINT NAME: %s\n" msgstr "NOM DE CONTRAINTE : %s\n" -#: fe-protocol3.c:1164 +#: fe-protocol3.c:1159 msgid "LOCATION: " msgstr "EMPLACEMENT : " -#: fe-protocol3.c:1166 +#: fe-protocol3.c:1161 #, c-format msgid "%s, " msgstr "%s, " -#: fe-protocol3.c:1168 +#: fe-protocol3.c:1163 #, c-format msgid "%s:%s" msgstr "%s : %s" -#: fe-protocol3.c:1363 +#: fe-protocol3.c:1358 #, c-format msgid "LINE %d: " msgstr "LIGNE %d : " -#: fe-protocol3.c:1762 +#: fe-protocol3.c:1757 msgid "PQgetline: not doing text COPY OUT\n" msgstr "PQgetline : ne va pas réaliser un COPY OUT au format texte\n" -#: fe-protocol3.c:2139 +#: fe-protocol3.c:2134 msgid "protocol error: no function result\n" msgstr "erreur de protocole : aucun résultat de fonction\n" -#: fe-protocol3.c:2151 +#: fe-protocol3.c:2146 #, c-format msgid "protocol error: id=0x%x\n" msgstr "erreur de protocole : id=0x%x\n" @@ -1046,119 +1046,119 @@ msgstr "le certificat serveur pour « %s » ne correspond pas au nom d'hôte « msgid "could not get server's host name from server certificate\n" msgstr "n'a pas pu récupérer le nom d'hôte du serveur à partir du certificat serveur\n" -#: fe-secure-gssapi.c:201 +#: fe-secure-gssapi.c:194 msgid "GSSAPI wrap error" msgstr "erreur d'emballage GSSAPI" -#: fe-secure-gssapi.c:209 +#: fe-secure-gssapi.c:202 msgid "outgoing GSSAPI message would not use confidentiality\n" msgstr "le message sortant GSSAPI n'utiliserait pas la confidentialité\n" -#: fe-secure-gssapi.c:217 +#: fe-secure-gssapi.c:210 #, c-format msgid "client tried to send oversize GSSAPI packet (%zu > %zu)\n" msgstr "le client a essayé d'envoyer un paquet GSSAPI trop gros (%zu > %zu)\n" -#: fe-secure-gssapi.c:354 fe-secure-gssapi.c:596 +#: fe-secure-gssapi.c:350 fe-secure-gssapi.c:594 #, c-format msgid "oversize GSSAPI packet sent by the server (%zu > %zu)\n" msgstr "paquet GSSAPI trop gros envoyé par le serveur (%zu > %zu)\n" -#: fe-secure-gssapi.c:393 +#: fe-secure-gssapi.c:389 msgid "GSSAPI unwrap error" msgstr "erreur de dépaquetage GSSAPI" -#: fe-secure-gssapi.c:403 +#: fe-secure-gssapi.c:399 msgid "incoming GSSAPI message did not use confidentiality\n" msgstr "le message entrant GSSAPI n'a pas utilisé pas la confidentialité\n" -#: fe-secure-gssapi.c:642 +#: fe-secure-gssapi.c:640 msgid "could not initiate GSSAPI security context" msgstr "n'a pas pu initier le contexte de sécurité GSSAPI" -#: fe-secure-gssapi.c:670 +#: fe-secure-gssapi.c:668 msgid "GSSAPI size check error" msgstr "erreur de vérification de la taille GSSAPI" -#: fe-secure-gssapi.c:681 +#: fe-secure-gssapi.c:679 msgid "GSSAPI context establishment error" msgstr "erreur d'établissement du contexte GSSAPI" -#: fe-secure-openssl.c:223 fe-secure-openssl.c:330 fe-secure-openssl.c:1499 +#: fe-secure-openssl.c:218 fe-secure-openssl.c:331 fe-secure-openssl.c:1492 #, c-format msgid "SSL SYSCALL error: %s\n" msgstr "erreur SYSCALL SSL : %s\n" -#: fe-secure-openssl.c:230 fe-secure-openssl.c:337 fe-secure-openssl.c:1503 +#: fe-secure-openssl.c:225 fe-secure-openssl.c:338 fe-secure-openssl.c:1496 msgid "SSL SYSCALL error: EOF detected\n" msgstr "erreur SYSCALL SSL : EOF détecté\n" -#: fe-secure-openssl.c:241 fe-secure-openssl.c:348 fe-secure-openssl.c:1512 +#: fe-secure-openssl.c:236 fe-secure-openssl.c:349 fe-secure-openssl.c:1505 #, c-format msgid "SSL error: %s\n" msgstr "erreur SSL : %s\n" -#: fe-secure-openssl.c:256 fe-secure-openssl.c:363 +#: fe-secure-openssl.c:251 fe-secure-openssl.c:364 msgid "SSL connection has been closed unexpectedly\n" msgstr "la connexion SSL a été fermée de façon inattendu\n" -#: fe-secure-openssl.c:262 fe-secure-openssl.c:369 fe-secure-openssl.c:1562 +#: fe-secure-openssl.c:257 fe-secure-openssl.c:370 fe-secure-openssl.c:1555 #, c-format msgid "unrecognized SSL error code: %d\n" msgstr "code d'erreur SSL inconnu : %d\n" -#: fe-secure-openssl.c:409 +#: fe-secure-openssl.c:415 msgid "could not determine server certificate signature algorithm\n" msgstr "n'a pas pu déterminer l'algorithme de signature du certificat serveur\n" -#: fe-secure-openssl.c:430 +#: fe-secure-openssl.c:436 #, c-format msgid "could not find digest for NID %s\n" msgstr "n'a pas pu trouver l'entrée pour le NID %s\n" -#: fe-secure-openssl.c:440 +#: fe-secure-openssl.c:446 msgid "could not generate peer certificate hash\n" msgstr "n'a pas pu générer le hachage du certificat peer\n" -#: fe-secure-openssl.c:497 +#: fe-secure-openssl.c:503 msgid "SSL certificate's name entry is missing\n" msgstr "l'entrée du nom du certificat SSL est manquante\n" -#: fe-secure-openssl.c:532 +#: fe-secure-openssl.c:538 msgid "SSL certificate's address entry is missing\n" msgstr "l'entrée d'adresse du certificat SSL est manquante\n" -#: fe-secure-openssl.c:950 +#: fe-secure-openssl.c:940 #, c-format msgid "could not create SSL context: %s\n" msgstr "n'a pas pu créer le contexte SSL : %s\n" -#: fe-secure-openssl.c:989 +#: fe-secure-openssl.c:979 #, c-format msgid "invalid value \"%s\" for minimum SSL protocol version\n" msgstr "valeur « %s » invalide pour la version minimale du protocole SSL\n" -#: fe-secure-openssl.c:1000 +#: fe-secure-openssl.c:990 #, c-format msgid "could not set minimum SSL protocol version: %s\n" msgstr "n'a pas pu configurer la version minimale de protocole SSL : %s\n" -#: fe-secure-openssl.c:1018 +#: fe-secure-openssl.c:1008 #, c-format msgid "invalid value \"%s\" for maximum SSL protocol version\n" msgstr "valeur « %s » invalide pour la version maximale du protocole SSL\n" -#: fe-secure-openssl.c:1029 +#: fe-secure-openssl.c:1019 #, c-format msgid "could not set maximum SSL protocol version: %s\n" msgstr "n'a pas pu configurer la version maximale de protocole SSL : %s\n" -#: fe-secure-openssl.c:1065 +#: fe-secure-openssl.c:1055 #, c-format msgid "could not read root certificate file \"%s\": %s\n" msgstr "n'a pas pu lire le certificat racine « %s » : %s\n" -#: fe-secure-openssl.c:1118 +#: fe-secure-openssl.c:1108 msgid "" "could not get home directory to locate root certificate file\n" "Either provide the file or change sslmode to disable server certificate verification.\n" @@ -1167,7 +1167,7 @@ msgstr "" "Fournissez le fichier ou modifiez sslmode pour désactiver la vérification du\n" "certificat par le serveur.\n" -#: fe-secure-openssl.c:1122 +#: fe-secure-openssl.c:1112 #, c-format msgid "" "root certificate file \"%s\" does not exist\n" @@ -1177,107 +1177,107 @@ msgstr "" "Fournissez le fichier ou modifiez sslmode pour désactiver la vérification du\n" "certificat par le serveur.\n" -#: fe-secure-openssl.c:1153 +#: fe-secure-openssl.c:1143 #, c-format msgid "could not open certificate file \"%s\": %s\n" msgstr "n'a pas pu ouvrir le certificat « %s » : %s\n" -#: fe-secure-openssl.c:1172 +#: fe-secure-openssl.c:1162 #, c-format msgid "could not read certificate file \"%s\": %s\n" msgstr "n'a pas pu lire le certificat « %s » : %s\n" -#: fe-secure-openssl.c:1197 +#: fe-secure-openssl.c:1187 #, c-format msgid "could not establish SSL connection: %s\n" msgstr "n'a pas pu établir la connexion SSL : %s\n" -#: fe-secure-openssl.c:1231 +#: fe-secure-openssl.c:1221 #, c-format msgid "could not set SSL Server Name Indication (SNI): %s\n" msgstr "n'a pas pu configurer le SSL Server Name Indication (SNI) : %s\n" -#: fe-secure-openssl.c:1277 +#: fe-secure-openssl.c:1268 #, c-format msgid "could not load SSL engine \"%s\": %s\n" msgstr "n'a pas pu charger le moteur SSL « %s » : %s\n" -#: fe-secure-openssl.c:1289 +#: fe-secure-openssl.c:1280 #, c-format msgid "could not initialize SSL engine \"%s\": %s\n" msgstr "n'a pas pu initialiser le moteur SSL « %s » : %s\n" -#: fe-secure-openssl.c:1305 +#: fe-secure-openssl.c:1296 #, c-format msgid "could not read private SSL key \"%s\" from engine \"%s\": %s\n" msgstr "n'a pas pu lire la clé privée SSL « %s » à partir du moteur « %s » : %s\n" -#: fe-secure-openssl.c:1319 +#: fe-secure-openssl.c:1310 #, c-format msgid "could not load private SSL key \"%s\" from engine \"%s\": %s\n" msgstr "n'a pas pu charger la clé privée SSL « %s » à partir du moteur « %s » : %s\n" -#: fe-secure-openssl.c:1357 +#: fe-secure-openssl.c:1348 #, c-format msgid "certificate present, but not private key file \"%s\"\n" msgstr "le certificat est présent, mais la clé privée « %s » est absente\n" -#: fe-secure-openssl.c:1361 +#: fe-secure-openssl.c:1352 #, c-format msgid "could not stat private key file \"%s\": %m\n" msgstr "n'a pas pu interroger le fichier de clé privée « %s » : %m\n" -#: fe-secure-openssl.c:1370 +#: fe-secure-openssl.c:1361 #, c-format msgid "private key file \"%s\" is not a regular file\n" msgstr "le fichier de clé privée « %s » n'est pas un fichier standard\n" -#: fe-secure-openssl.c:1403 +#: fe-secure-openssl.c:1394 #, c-format msgid "private key file \"%s\" has group or world access; file must have permissions u=rw (0600) or less if owned by the current user, or permissions u=rw,g=r (0640) or less if owned by root\n" msgstr "le fichier de clé privée « %s » a des droits d'accès pour le groupe ou le monde ; le fichier doit avoir les droits u=rw (0600) ou moins si le propriétaire est l'utilisateur courant, ou les droits u=rw,g=r (0640) ou moins si le propriétaire est root\n" -#: fe-secure-openssl.c:1428 +#: fe-secure-openssl.c:1419 #, c-format msgid "could not load private key file \"%s\": %s\n" msgstr "n'a pas pu charger le fichier de clé privée « %s » : %s\n" -#: fe-secure-openssl.c:1445 +#: fe-secure-openssl.c:1436 #, c-format msgid "certificate does not match private key file \"%s\": %s\n" msgstr "le certificat ne correspond pas à la clé privée « %s » : %s\n" -#: fe-secure-openssl.c:1545 +#: fe-secure-openssl.c:1538 #, c-format msgid "This may indicate that the server does not support any SSL protocol version between %s and %s.\n" msgstr "Ceci pourrait indiquer que le serveur ne supporte aucune des versions du protocole SSL entre %s et %s.\n" -#: fe-secure-openssl.c:1581 +#: fe-secure-openssl.c:1574 #, c-format msgid "certificate could not be obtained: %s\n" msgstr "le certificat n'a pas pu être obtenu : %s\n" -#: fe-secure-openssl.c:1687 +#: fe-secure-openssl.c:1681 #, c-format msgid "no SSL error reported" msgstr "aucune erreur SSL reportée" -#: fe-secure-openssl.c:1696 +#: fe-secure-openssl.c:1707 #, c-format msgid "SSL error code %lu" msgstr "code d'erreur SSL %lu" -#: fe-secure-openssl.c:1944 +#: fe-secure-openssl.c:1986 #, c-format msgid "WARNING: sslpassword truncated\n" msgstr "ATTENTION : sslpassword tronqué\n" -#: fe-secure.c:267 +#: fe-secure.c:274 #, c-format msgid "could not receive data from server: %s\n" msgstr "n'a pas pu recevoir des données depuis le serveur : %s\n" -#: fe-secure.c:436 +#: fe-secure.c:443 #, c-format msgid "could not send data to server: %s\n" msgstr "n'a pas pu transmettre les données au serveur : %s\n" @@ -1287,225 +1287,5 @@ msgstr "n'a pas pu transmettre les données au serveur : %s\n" msgid "unrecognized socket error: 0x%08X/%d" msgstr "erreur de socket non reconnue : 0x%08X/%d" -#~ msgid "\"SELECT pg_is_in_recovery()\" failed\n" -#~ msgstr "\"SELECT pg_is_in_recovery()\" a échoué\n" - -#~ msgid "\"SHOW transaction_read_only\" failed\n" -#~ msgstr "\"SHOW transaction_read_only\" a échoué\n" - -#~ msgid "COPY IN state must be terminated first\n" -#~ msgstr "l'état COPY IN doit d'abord être terminé\n" - -#~ msgid "COPY OUT state must be terminated first\n" -#~ msgstr "l'état COPY OUT doit d'abord être terminé\n" - -#~ msgid "Kerberos 5 authentication rejected: %*s\n" -#~ msgstr "authentification Kerberos 5 rejetée : %*s\n" - -#, c-format -#~ msgid "PGEventProc \"%s\" failed during PGEVT_CONNRESET event\n" -#~ msgstr "échec de PGEventProc « %s » lors de l'événement PGEVT_CONNRESET\n" - -#, c-format -#~ msgid "PGEventProc \"%s\" failed during PGEVT_RESULTCREATE event\n" -#~ msgstr "échec de PGEventProc « %s » lors de l'événement PGEVT_RESULTCREATE\n" - -#~ msgid "SSL library does not support CRL certificates (file \"%s\")\n" -#~ msgstr "la bibliothèque SSL ne supporte pas les certificats CRL (fichier « %s »)\n" - -#~ msgid "WARNING: line %d too long in password file \"%s\"\n" -#~ msgstr "ATTENTION : ligne %d trop longue dans le fichier de mots de passe « %s »\n" - -#~ msgid "WSAIoctl(SIO_KEEPALIVE_VALS) failed: %d\n" -#~ msgstr "échec de WSAIoctl(SIO_KEEPALIVE_VALS) : %d\n" - -#~ msgid "cannot determine OID of function lo_creat\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_creat\n" - -#~ msgid "cannot determine OID of function lo_create\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_create\n" - -#~ msgid "cannot determine OID of function lo_lseek\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_lseek\n" - -#~ msgid "cannot determine OID of function lo_lseek64\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_lseek64\n" - -#~ msgid "cannot determine OID of function lo_open\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_open\n" - -#~ msgid "cannot determine OID of function lo_tell64\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_tell64\n" - -#~ msgid "cannot determine OID of function lo_truncate\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_truncate\n" - -#~ msgid "cannot determine OID of function lo_truncate64\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_truncate64\n" - -#~ msgid "cannot determine OID of function lo_unlink\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lo_unlink\n" - -#~ msgid "cannot determine OID of function loread\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction loread\n" - -#~ msgid "cannot determine OID of function lowrite\n" -#~ msgstr "ne peut pas déterminer l'OID de la fonction lowrite\n" - -#~ msgid "could not acquire mutex: %s\n" -#~ msgstr "n'a pas pu acquérir le mutex : %s\n" - -#~ msgid "" -#~ "could not connect to server: %s\n" -#~ "\tIs the server running on host \"%s\" (%s) and accepting\n" -#~ "\tTCP/IP connections on port %s?\n" -#~ msgstr "" -#~ "n'a pas pu se connecter au serveur : %s\n" -#~ "\tLe serveur est-il actif sur l'hôte « %s » (%s)\n" -#~ "\tet accepte-t-il les connexionsTCP/IP sur le port %s ?\n" - -#~ msgid "could not get home directory to locate client certificate files\n" -#~ msgstr "" -#~ "n'a pas pu récupérer le répertoire personnel pour trouver les certificats\n" -#~ "du client\n" - -#~ msgid "could not get home directory to locate password file\n" -#~ msgstr "" -#~ "n'a pas pu obtenir le répertoire personnel pour trouver le fichier de\n" -#~ "mot de passe\n" - -#~ msgid "could not get home directory to locate service definition file" -#~ msgstr "" -#~ "n'a pas pu obtenir le répertoire personnel pour trouver le certificat de\n" -#~ "définition du service" - -#~ msgid "could not make a writable connection to server \"%s:%s\"\n" -#~ msgstr "n'a pas pu réaliser une connexion en écriture au serveur « %s » : %s\n" - -#~ msgid "could not open private key file \"%s\": %s\n" -#~ msgstr "n'a pas pu ouvrir le fichier de clé privée « %s » : %s\n" - -#~ msgid "could not read private key file \"%s\": %s\n" -#~ msgstr "n'a pas pu lire la clé privée « %s » : %s\n" - -#~ msgid "could not restore nonblocking mode on socket: %s\n" -#~ msgstr "n'a pas pu rétablir le mode non-bloquant pour la socket : %s\n" - -#~ msgid "could not set maximum version of SSL protocol: %s\n" -#~ msgstr "n'a pas pu mettre en place la version maximale du protocole SSL : %s\n" - -#~ msgid "could not set minimum version of SSL protocol: %s\n" -#~ msgstr "n'a pas pu mettre en place la version minimale du protocole SSL : %s\n" - -#~ msgid "could not set socket to blocking mode: %s\n" -#~ msgstr "n'a pas pu activer le mode bloquant pour la socket : %s\n" - -#~ msgid "extraneous data in \"D\" message" -#~ msgstr "données supplémentaires dans le message « D »" - -#~ msgid "extraneous data in \"T\" message" -#~ msgstr "données supplémentaires dans le message « T »" - -#~ msgid "extraneous data in \"t\" message" -#~ msgstr "données supplémentaires dans le message « t »" - -#~ msgid "failed to generate nonce\n" -#~ msgstr "échec pour la génération de nonce\n" - -#~ msgid "failed to generate random salt" -#~ msgstr "a échoué à générer le sel aléatoire" - -#~ msgid "function requires at least protocol version 3.0\n" -#~ msgstr "la fonction nécessite au minimum le protocole 3.0\n" - -#~ msgid "invalid appname state %d, probably indicative of memory corruption\n" -#~ msgstr "état appname %d invalide, indiquant probablement une corruption de la mémoire\n" - -#~ msgid "invalid channel_binding value: \"%s\"\n" -#~ msgstr "valeur de channel_binding invalide : « %s »\n" - -#~ msgid "invalid gssencmode value: \"%s\"\n" -#~ msgstr "valeur gssencmode invalide : « %s »\n" - -#~ msgid "invalid setenv state %c, probably indicative of memory corruption\n" -#~ msgstr "état setenv %c invalide, indiquant probablement une corruption de la mémoire\n" - -#~ msgid "invalid ssl_max_protocol_version value: \"%s\"\n" -#~ msgstr "valeur ssl_max_protocol_version invalide : « %s »\n" - -#~ msgid "invalid ssl_min_protocol_version value: \"%s\"\n" -#~ msgstr "valeur ssl_min_protocol_version invalide : « %s »\n" - -#~ msgid "invalid state %c, probably indicative of memory corruption\n" -#~ msgstr "état %c invalide, indiquant probablement une corruption de la mémoire\n" - -#~ msgid "invalid target_session_attrs value: \"%s\"\n" -#~ msgstr "valeur target_session_attrs invalide : « %s »\n" - -#, c-format -#~ msgid "local user with ID %d does not exist\n" -#~ msgstr "l'utilisateur local dont l'identifiant est %d n'existe pas\n" - -#~ msgid "lost synchronization with server, resetting connection" -#~ msgstr "synchronisation perdue avec le serveur, réinitialisation de la connexion" - -#~ msgid "no GSSAPI support; cannot require GSSAPI\n" -#~ msgstr "pas de support de GSSAPI : ne peut pas nécessiter GSSAPI\n" - -#~ msgid "private key file \"%s\" changed during execution\n" -#~ msgstr "la clé privée « %s » a été modifiée durant l'exécution\n" - -#, c-format -#~ msgid "private key file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n" -#~ msgstr "" -#~ "le fichier de la clé privée « %s » a des droits d'accès en lecture\n" -#~ "pour le groupe ou universel ; les droits devraient être u=rw (0600)\n" -#~ "ou inférieur\n" - -#, c-format -#~ msgid "private key file \"%s\" must be owned by the current user or root\n" -#~ msgstr "le fichier de clé privée « %s » doit avoir comme propriétaire l'utilisateur courant ou root\n" - -#~ msgid "select() failed: %s\n" -#~ msgstr "échec de select() : %s\n" - -#~ msgid "server sent binary data (\"B\" message) without prior row description (\"T\" message)" -#~ msgstr "" -#~ "le serveur a envoyé des données binaires (message « B ») sans description\n" -#~ "préalable de la ligne (message « T »)" - -#~ msgid "server sent data (\"D\" message) without prior row description (\"T\" message)" -#~ msgstr "" -#~ "le serveur a envoyé des données (message « D ») sans description préalable\n" -#~ "de la ligne (message « T »)" - -#~ msgid "setsockopt(%s) failed: %s\n" -#~ msgstr "setsockopt(%s) a échoué : %s\n" - -#~ msgid "setsockopt(SO_KEEPALIVE) failed: %s\n" -#~ msgstr "setsockopt(SO_KEEPALIVE) a échoué : %s\n" - -#~ msgid "setsockopt(TCP_KEEPALIVE) failed: %s\n" -#~ msgstr "setsockopt(TCP_KEEPALIVE) a échoué : %s\n" - -#~ msgid "setsockopt(TCP_KEEPIDLE) failed: %s\n" -#~ msgstr "setsockopt(TCP_KEEPIDLE) a échoué : %s\n" - -#~ msgid "setsockopt(TCP_KEEPINTVL) failed: %s\n" -#~ msgstr "setsockopt(TCP_KEEPINTVL) a échoué : %s\n" - -#~ msgid "socket not open\n" -#~ msgstr "socket non ouvert\n" - -#~ msgid "unexpected character %c following empty query response (\"I\" message)" -#~ msgstr "" -#~ "caractère %c inattendu à la suite d'une réponse de requête vide (message\n" -#~ "« I »)" - -#~ msgid "unrecognized return value from row processor" -#~ msgstr "valeur de retour du traitement de la ligne non reconnue" - -#~ msgid "verified SSL connections are only supported when connecting to a host name\n" -#~ msgstr "" -#~ "les connexions SSL vérifiées ne sont supportées que lors de la connexion\n" -#~ "à un alias hôte\n" +#~ msgid "keepalives parameter must be an integer\n" +#~ msgstr "le paramètre keepalives doit être un entier\n" diff --git a/src/interfaces/libpq/po/ja.po b/src/interfaces/libpq/po/ja.po index c24e1263307..2dbd8355bdc 100644 --- a/src/interfaces/libpq/po/ja.po +++ b/src/interfaces/libpq/po/ja.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: libpq (PostgreSQL 15)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2022-09-26 11:13+0900\n" -"PO-Revision-Date: 2023-04-06 10:33+0900\n" +"POT-Creation-Date: 2024-11-11 14:39+0900\n" +"PO-Revision-Date: 2024-11-11 14:49+0900\n" "Last-Translator: Kyotaro Horiguchi \n" "Language-Team: Japan PostgreSQL Users Group \n" "Language: ja\n" @@ -69,16 +69,16 @@ msgstr "nonce を生成できませんでした\n" #: fe-auth-scram.c:636 fe-auth-scram.c:662 fe-auth-scram.c:677 #: fe-auth-scram.c:727 fe-auth-scram.c:766 fe-auth.c:290 fe-auth.c:362 #: fe-auth.c:398 fe-auth.c:623 fe-auth.c:799 fe-auth.c:1152 fe-auth.c:1322 -#: fe-connect.c:907 fe-connect.c:1456 fe-connect.c:1625 fe-connect.c:2977 -#: fe-connect.c:4824 fe-connect.c:5085 fe-connect.c:5204 fe-connect.c:5456 -#: fe-connect.c:5537 fe-connect.c:5636 fe-connect.c:5892 fe-connect.c:5921 -#: fe-connect.c:5993 fe-connect.c:6017 fe-connect.c:6035 fe-connect.c:6136 -#: fe-connect.c:6145 fe-connect.c:6503 fe-connect.c:6653 fe-connect.c:6919 -#: fe-exec.c:710 fe-exec.c:976 fe-exec.c:1324 fe-exec.c:3144 fe-exec.c:3328 -#: fe-exec.c:4110 fe-exec.c:4275 fe-gssapi-common.c:111 fe-lobj.c:884 -#: fe-protocol3.c:973 fe-protocol3.c:988 fe-protocol3.c:1021 -#: fe-protocol3.c:1729 fe-protocol3.c:2132 fe-secure-common.c:112 -#: fe-secure-gssapi.c:504 fe-secure-openssl.c:449 fe-secure-openssl.c:1261 +#: fe-connect.c:909 fe-connect.c:1458 fe-connect.c:1627 fe-connect.c:2978 +#: fe-connect.c:4827 fe-connect.c:5088 fe-connect.c:5207 fe-connect.c:5459 +#: fe-connect.c:5540 fe-connect.c:5639 fe-connect.c:5895 fe-connect.c:5924 +#: fe-connect.c:5996 fe-connect.c:6020 fe-connect.c:6038 fe-connect.c:6139 +#: fe-connect.c:6148 fe-connect.c:6506 fe-connect.c:6656 fe-connect.c:6922 +#: fe-exec.c:710 fe-exec.c:978 fe-exec.c:1326 fe-exec.c:3165 fe-exec.c:3357 +#: fe-exec.c:4139 fe-exec.c:4304 fe-gssapi-common.c:111 fe-lobj.c:884 +#: fe-protocol3.c:968 fe-protocol3.c:983 fe-protocol3.c:1016 +#: fe-protocol3.c:1724 fe-protocol3.c:2127 fe-secure-common.c:112 +#: fe-secure-gssapi.c:500 fe-secure-openssl.c:455 fe-secure-openssl.c:1252 msgid "out of memory\n" msgstr "メモリ不足\n" @@ -124,12 +124,12 @@ msgstr "SCRAMメッセージのフォーマット異常 (server-final-message msgid "malformed SCRAM message (invalid server signature)\n" msgstr "SCRAMメッセージのフォーマット異常 (不正なサーバー署名)\n" -#: fe-auth-scram.c:934 fe-exec.c:527 fe-protocol3.c:207 fe-protocol3.c:232 -#: fe-protocol3.c:261 fe-protocol3.c:279 fe-protocol3.c:360 fe-protocol3.c:733 +#: fe-auth-scram.c:935 fe-exec.c:527 fe-protocol3.c:207 fe-protocol3.c:232 +#: fe-protocol3.c:256 fe-protocol3.c:274 fe-protocol3.c:355 fe-protocol3.c:728 msgid "out of memory" msgstr "メモリ不足です" -#: fe-auth-scram.c:943 +#: fe-auth-scram.c:944 msgid "could not generate random salt" msgstr "乱数ソルトを生成できませんでした" @@ -265,392 +265,392 @@ msgstr "password_encryptionの値が長すぎます\n" msgid "unrecognized password encryption algorithm \"%s\"\n" msgstr "認識できないパスワード暗号化アルゴリズム \"%s\"\n" -#: fe-connect.c:1090 +#: fe-connect.c:1092 #, c-format msgid "could not match %d host names to %d hostaddr values\n" msgstr "%d個のホスト名と%d個のhostaddrの値との突き合せはできません\n" -#: fe-connect.c:1176 +#: fe-connect.c:1178 #, c-format msgid "could not match %d port numbers to %d hosts\n" msgstr "%d個のポート番号と%d個のホストとの突き合せはできません\n" -#: fe-connect.c:1269 fe-connect.c:1295 fe-connect.c:1337 fe-connect.c:1346 -#: fe-connect.c:1379 fe-connect.c:1423 +#: fe-connect.c:1271 fe-connect.c:1297 fe-connect.c:1339 fe-connect.c:1348 +#: fe-connect.c:1381 fe-connect.c:1425 #, c-format msgid "invalid %s value: \"%s\"\n" msgstr "%s の値が不正: \"%s\"\n" -#: fe-connect.c:1316 +#: fe-connect.c:1318 #, c-format msgid "sslmode value \"%s\" invalid when SSL support is not compiled in\n" msgstr "SSLサポートが組み込まれていない場合sslmodeの値\"%s\"は不正です\n" -#: fe-connect.c:1364 +#: fe-connect.c:1366 msgid "invalid SSL protocol version range\n" msgstr "不正なSSLプロトコルバージョン範囲\n" -#: fe-connect.c:1389 +#: fe-connect.c:1391 #, c-format msgid "gssencmode value \"%s\" invalid when GSSAPI support is not compiled in\n" msgstr "gssencmodeの値\"%s\"はGSSAPIサポートがコンパイルされていない場合は不正\n" -#: fe-connect.c:1649 +#: fe-connect.c:1651 #, c-format msgid "could not set socket to TCP no delay mode: %s\n" msgstr "TCPソケットを非遅延モードに設定できませんでした: %s\n" -#: fe-connect.c:1711 +#: fe-connect.c:1713 #, c-format msgid "connection to server on socket \"%s\" failed: " msgstr "ソケット\"%s\"のサーバーへの接続に失敗しました: " -#: fe-connect.c:1738 +#: fe-connect.c:1740 #, c-format msgid "connection to server at \"%s\" (%s), port %s failed: " msgstr "\"%s\"(%s)、ポート%sのサーバーへの接続に失敗しました: " -#: fe-connect.c:1743 +#: fe-connect.c:1745 #, c-format msgid "connection to server at \"%s\", port %s failed: " msgstr "\"%s\"、ポート%sのサーバーへの接続に失敗しました: " -#: fe-connect.c:1768 +#: fe-connect.c:1770 msgid "\tIs the server running locally and accepting connections on that socket?\n" msgstr "\tサーバーはローカルで稼働していてそのソケットで接続を受け付けていますか?\n" -#: fe-connect.c:1772 +#: fe-connect.c:1774 msgid "\tIs the server running on that host and accepting TCP/IP connections?\n" msgstr "\tサーバーはそのホスト上で稼働していてTCP/IP接続を受け付けていますか?\n" -#: fe-connect.c:1836 +#: fe-connect.c:1838 #, c-format msgid "invalid integer value \"%s\" for connection option \"%s\"\n" msgstr "接続オプション\"%2$s\"に対する不正な整数値\"%1$s\"\n" -#: fe-connect.c:1866 fe-connect.c:1901 fe-connect.c:1937 fe-connect.c:2037 -#: fe-connect.c:2651 +#: fe-connect.c:1868 fe-connect.c:1903 fe-connect.c:1939 fe-connect.c:2039 +#: fe-connect.c:2652 #, c-format msgid "%s(%s) failed: %s\n" msgstr "%s(%s)が失敗しました: %s\n" -#: fe-connect.c:2002 +#: fe-connect.c:2004 #, c-format msgid "%s(%s) failed: error code %d\n" msgstr "%s(%s)が失敗しました: エラーコード %d\n" -#: fe-connect.c:2317 +#: fe-connect.c:2319 msgid "invalid connection state, probably indicative of memory corruption\n" msgstr "接続状態が不正です。メモリ障害の可能性があります\n" -#: fe-connect.c:2396 +#: fe-connect.c:2398 #, c-format msgid "invalid port number: \"%s\"\n" msgstr "不正なポート番号です: \"%s\"\n" -#: fe-connect.c:2412 +#: fe-connect.c:2414 #, c-format msgid "could not translate host name \"%s\" to address: %s\n" msgstr "ホスト名\"%s\"をアドレスに変換できませんでした: %s\n" -#: fe-connect.c:2425 +#: fe-connect.c:2427 #, c-format msgid "could not parse network address \"%s\": %s\n" msgstr "ネットワークアドレス\"%s\"をパースできませんでした: %s\n" -#: fe-connect.c:2438 +#: fe-connect.c:2440 #, c-format msgid "Unix-domain socket path \"%s\" is too long (maximum %d bytes)\n" msgstr "Unixドメインソケットのパス\"%s\"が長すぎます(最大 %d バイト)\n" -#: fe-connect.c:2453 +#: fe-connect.c:2455 #, c-format msgid "could not translate Unix-domain socket path \"%s\" to address: %s\n" msgstr "Unixドメインソケットのパス\"%s\"をアドレスに変換できませんでした: %s\n" -#: fe-connect.c:2579 +#: fe-connect.c:2581 #, c-format msgid "could not create socket: %s\n" msgstr "ソケットを作成できませんでした: %s\n" -#: fe-connect.c:2610 +#: fe-connect.c:2612 #, c-format msgid "could not set socket to nonblocking mode: %s\n" msgstr "ソケットを非ブロッキングモードに設定できませんでした: %s\n" -#: fe-connect.c:2620 +#: fe-connect.c:2622 #, c-format msgid "could not set socket to close-on-exec mode: %s\n" msgstr "ソケットをclose-on-execモードに設定できませんでした: %s\n" -#: fe-connect.c:2638 -msgid "keepalives parameter must be an integer\n" -msgstr "keepaliveのパラメータは整数でなければなりません\n" - -#: fe-connect.c:2779 +#: fe-connect.c:2780 #, c-format msgid "could not get socket error status: %s\n" msgstr "ソケットのエラー状態を入手できませんでした: %s\n" -#: fe-connect.c:2807 +#: fe-connect.c:2808 #, c-format msgid "could not get client address from socket: %s\n" msgstr "ソケットからクライアントアドレスを入手できませんでした: %s\n" -#: fe-connect.c:2846 +#: fe-connect.c:2847 msgid "requirepeer parameter is not supported on this platform\n" msgstr "このプラットフォームでは requirepeer パラメータはサポートされていません\n" -#: fe-connect.c:2849 +#: fe-connect.c:2850 #, c-format msgid "could not get peer credentials: %s\n" msgstr "ピアの資格証明を入手できませんでした: %s\n" -#: fe-connect.c:2863 +#: fe-connect.c:2864 #, c-format msgid "requirepeer specifies \"%s\", but actual peer user name is \"%s\"\n" msgstr "requirepeerは\"%s\"を指定していますが、実際のピア名は\"%s\"です\n" -#: fe-connect.c:2905 +#: fe-connect.c:2906 #, c-format msgid "could not send GSSAPI negotiation packet: %s\n" msgstr "GSSAPIネゴシエーションパケットを送信できませんでした: %s\n" -#: fe-connect.c:2917 +#: fe-connect.c:2918 msgid "GSSAPI encryption required but was impossible (possibly no credential cache, no server support, or using a local socket)\n" msgstr "GSSAPI暗号化が要求されていますが、実行できませんでした(おそらく資格キャッシュがない、サーバーがサポートしていないあるいはローカルソケットで接続しています)\n" -#: fe-connect.c:2959 +#: fe-connect.c:2960 #, c-format msgid "could not send SSL negotiation packet: %s\n" msgstr "SSLネゴシエーションパケットを送信できませんでした: %s\n" -#: fe-connect.c:2990 +#: fe-connect.c:2991 #, c-format msgid "could not send startup packet: %s\n" msgstr "開始パケットを送信できませんでした: %s\n" -#: fe-connect.c:3066 +#: fe-connect.c:3067 msgid "server does not support SSL, but SSL was required\n" msgstr "サーバーはSSLをサポートしていませんが、SSLが要求されました\n" -#: fe-connect.c:3093 +#: fe-connect.c:3085 +msgid "server sent an error response during SSL exchange\n" +msgstr "SSLハンドシェイク中にサーバーからエラー応答が返されました\n" + +#: fe-connect.c:3091 #, c-format msgid "received invalid response to SSL negotiation: %c\n" msgstr "SSLネゴシエーションに対して不正な応答を受信しました: %c\n" -#: fe-connect.c:3114 +#: fe-connect.c:3112 msgid "received unencrypted data after SSL response\n" msgstr "SSL応答の後に非暗号化データを受信しました\n" -#: fe-connect.c:3195 +#: fe-connect.c:3193 msgid "server doesn't support GSSAPI encryption, but it was required\n" msgstr "サーバーはGSSAPI暗号化をサポートしていませんが、要求されました\n" -#: fe-connect.c:3207 +#: fe-connect.c:3205 #, c-format msgid "received invalid response to GSSAPI negotiation: %c\n" msgstr "GSSAPIネゴシエーションに対して不正な応答を受信しました: %c\n" -#: fe-connect.c:3226 +#: fe-connect.c:3224 msgid "received unencrypted data after GSSAPI encryption response\n" msgstr "GSSAPI暗号化応答の後に非暗号化データを受信しました\n" -#: fe-connect.c:3286 fe-connect.c:3311 +#: fe-connect.c:3289 fe-connect.c:3314 #, c-format msgid "expected authentication request from server, but received %c\n" msgstr "サーバーからの認証要求を想定していましたが、%cを受信しました\n" -#: fe-connect.c:3518 +#: fe-connect.c:3521 msgid "unexpected message from server during startup\n" msgstr "起動時にサーバーから想定外のメッセージがありました\n" -#: fe-connect.c:3610 +#: fe-connect.c:3613 msgid "session is read-only\n" msgstr "セッションは読み取り専用です\n" -#: fe-connect.c:3613 +#: fe-connect.c:3616 msgid "session is not read-only\n" msgstr "セッションは読み取り専用ではありません\n" -#: fe-connect.c:3667 +#: fe-connect.c:3670 msgid "server is in hot standby mode\n" msgstr "サーバーはホットスタンバイモードです\n" -#: fe-connect.c:3670 +#: fe-connect.c:3673 msgid "server is not in hot standby mode\n" msgstr "サーバーはスタンバイモードではありません\n" -#: fe-connect.c:3788 fe-connect.c:3840 +#: fe-connect.c:3791 fe-connect.c:3843 #, c-format msgid "\"%s\" failed\n" msgstr "\"%s\"が失敗しました\n" -#: fe-connect.c:3854 +#: fe-connect.c:3857 #, c-format msgid "invalid connection state %d, probably indicative of memory corruption\n" msgstr "接続状態%dが不正です。メモリ障害の可能性があります\n" -#: fe-connect.c:4837 +#: fe-connect.c:4840 #, c-format msgid "invalid LDAP URL \"%s\": scheme must be ldap://\n" msgstr "不正なLDAP URL\"%s\":スキーマはldap://でなければなりません\n" -#: fe-connect.c:4852 +#: fe-connect.c:4855 #, c-format msgid "invalid LDAP URL \"%s\": missing distinguished name\n" msgstr "不正なLDAP URL \"%s\": 区別名がありません\n" -#: fe-connect.c:4864 fe-connect.c:4922 +#: fe-connect.c:4867 fe-connect.c:4925 #, c-format msgid "invalid LDAP URL \"%s\": must have exactly one attribute\n" msgstr "不正なLDAP URL \"%s\": 正確に1つの属性を持たなければなりません\n" -#: fe-connect.c:4876 fe-connect.c:4938 +#: fe-connect.c:4879 fe-connect.c:4941 #, c-format msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)\n" msgstr "不正なLDAP URL \"%s\": 検索スコープ(base/one/sub)を持たなければなりません\n" -#: fe-connect.c:4888 +#: fe-connect.c:4891 #, c-format msgid "invalid LDAP URL \"%s\": no filter\n" msgstr "不正なLDAP URL \"%s\": フィルタがありません\n" -#: fe-connect.c:4910 +#: fe-connect.c:4913 #, c-format msgid "invalid LDAP URL \"%s\": invalid port number\n" msgstr "不正なLDAP URL \"%s\": ポート番号が不正です\n" -#: fe-connect.c:4948 +#: fe-connect.c:4951 msgid "could not create LDAP structure\n" msgstr "LDAP構造体を作成できませんでした\n" -#: fe-connect.c:5024 +#: fe-connect.c:5027 #, c-format msgid "lookup on LDAP server failed: %s\n" msgstr "LDAPサーバーで検索に失敗しました: %s\n" -#: fe-connect.c:5035 +#: fe-connect.c:5038 msgid "more than one entry found on LDAP lookup\n" msgstr "LDAP検索結果が複数ありました\n" -#: fe-connect.c:5036 fe-connect.c:5048 +#: fe-connect.c:5039 fe-connect.c:5051 msgid "no entry found on LDAP lookup\n" msgstr "LDAP検索結果が空でした\n" -#: fe-connect.c:5059 fe-connect.c:5072 +#: fe-connect.c:5062 fe-connect.c:5075 msgid "attribute has no values on LDAP lookup\n" msgstr "LDAP検索で属性に値がありませんでした\n" -#: fe-connect.c:5124 fe-connect.c:5143 fe-connect.c:5675 +#: fe-connect.c:5127 fe-connect.c:5146 fe-connect.c:5678 #, c-format msgid "missing \"=\" after \"%s\" in connection info string\n" msgstr "接続情報文字列において\"%s\"の後に\"=\"がありませんでした\n" -#: fe-connect.c:5216 fe-connect.c:5860 fe-connect.c:6636 +#: fe-connect.c:5219 fe-connect.c:5863 fe-connect.c:6639 #, c-format msgid "invalid connection option \"%s\"\n" msgstr "接続オプション\"%s\"は不正です\n" -#: fe-connect.c:5232 fe-connect.c:5724 +#: fe-connect.c:5235 fe-connect.c:5727 msgid "unterminated quoted string in connection info string\n" msgstr "接続情報文字列において閉じていない引用符がありました\n" -#: fe-connect.c:5313 +#: fe-connect.c:5316 #, c-format msgid "definition of service \"%s\" not found\n" msgstr "サービス定義\"%s\"がみつかりません\n" -#: fe-connect.c:5339 +#: fe-connect.c:5342 #, c-format msgid "service file \"%s\" not found\n" msgstr "サービスファイル\"%s\"がみつかりません\n" -#: fe-connect.c:5353 +#: fe-connect.c:5356 #, c-format msgid "line %d too long in service file \"%s\"\n" msgstr "サービスファイル\"%2$s\"の行%1$dが長すぎます。\n" -#: fe-connect.c:5424 fe-connect.c:5468 +#: fe-connect.c:5427 fe-connect.c:5471 #, c-format msgid "syntax error in service file \"%s\", line %d\n" msgstr "サービスファイル\"%s\"の行%dに構文エラーがあります\n" -#: fe-connect.c:5435 +#: fe-connect.c:5438 #, c-format msgid "nested service specifications not supported in service file \"%s\", line %d\n" msgstr "サービスファイル\"%s\"ではネストしたサービス指定はサポートされていません、行%d\n" -#: fe-connect.c:6156 +#: fe-connect.c:6159 #, c-format msgid "invalid URI propagated to internal parser routine: \"%s\"\n" msgstr "内部パーサ処理へ伝わった不正なURI: \"%s\"\n" -#: fe-connect.c:6233 +#: fe-connect.c:6236 #, c-format msgid "end of string reached when looking for matching \"]\" in IPv6 host address in URI: \"%s\"\n" msgstr "URI \"%s\"内のIPv6ホストアドレスにおいて対応する\"]\"を探している間に文字列が終わりました\n" -#: fe-connect.c:6240 +#: fe-connect.c:6243 #, c-format msgid "IPv6 host address may not be empty in URI: \"%s\"\n" msgstr "URI内ではIPv6ホストアドレスは空であってはなりません: \"%s\"\n" -#: fe-connect.c:6255 +#: fe-connect.c:6258 #, c-format msgid "unexpected character \"%c\" at position %d in URI (expected \":\" or \"/\"): \"%s\"\n" msgstr "URI内の位置%2$dに想定外の文字\"%1$c\"があります(\":\"または\"/\"を期待していました): \"%3$s\"\n" -#: fe-connect.c:6385 +#: fe-connect.c:6388 #, c-format msgid "extra key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "URI問い合わせパラメータ内に余分なキーと値を分ける\"=\"があります: \"%s\"\n" -#: fe-connect.c:6405 +#: fe-connect.c:6408 #, c-format msgid "missing key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "URI問い合わせパラメータ内にキーと値を分ける\\\"=\\\"がありません: \"%s\"\n" -#: fe-connect.c:6457 +#: fe-connect.c:6460 #, c-format msgid "invalid URI query parameter: \"%s\"\n" msgstr "不正なURI問い合わせパラメータ:\"%s\"\n" -#: fe-connect.c:6531 +#: fe-connect.c:6534 #, c-format msgid "invalid percent-encoded token: \"%s\"\n" msgstr "不正なパーセント符号化トークン: \"%s\"\n" -#: fe-connect.c:6541 +#: fe-connect.c:6544 #, c-format msgid "forbidden value %%00 in percent-encoded value: \"%s\"\n" msgstr "パーセント符号化された値では%%00値は許されません: \"%s\"\n" -#: fe-connect.c:6911 +#: fe-connect.c:6914 msgid "connection pointer is NULL\n" msgstr "接続ポインタはNULLです\n" -#: fe-connect.c:7199 +#: fe-connect.c:7202 #, c-format msgid "WARNING: password file \"%s\" is not a plain file\n" msgstr "WARNING: パスワードファイル\"%s\"がテキストファイルではありません\n" -#: fe-connect.c:7208 +#: fe-connect.c:7211 #, c-format msgid "WARNING: password file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n" msgstr "警告: パスワードファイル \"%s\" がグループメンバもしくは他のユーザーから読める状態になっています。この権限はu=rw (0600)以下にすべきです\n" -#: fe-connect.c:7316 +#: fe-connect.c:7319 #, c-format msgid "password retrieved from file \"%s\"\n" msgstr "ファイル\"%s\"からパスワードを読み込みました\n" -#: fe-exec.c:466 fe-exec.c:3402 +#: fe-exec.c:466 fe-exec.c:3431 #, c-format msgid "row number %d is out of range 0..%d" msgstr "行番号%dは0..%dの範囲を超えています" -#: fe-exec.c:528 fe-protocol3.c:1937 +#: fe-exec.c:528 fe-protocol3.c:1932 #, c-format msgid "%s" msgstr "%s" @@ -659,127 +659,127 @@ msgstr "%s" msgid "write to server failed\n" msgstr "サーバーへの書き込みに失敗\n" -#: fe-exec.c:875 +#: fe-exec.c:877 msgid "no error text available\n" msgstr "エラーメッセージがありません\n" -#: fe-exec.c:964 +#: fe-exec.c:966 msgid "NOTICE" msgstr "注意" -#: fe-exec.c:1022 +#: fe-exec.c:1024 msgid "PGresult cannot support more than INT_MAX tuples" msgstr "PGresultはINT_MAX個以上のタプルを扱えません" -#: fe-exec.c:1034 +#: fe-exec.c:1036 msgid "size_t overflow" msgstr "size_t オーバーフロー" -#: fe-exec.c:1448 fe-exec.c:1519 fe-exec.c:1568 +#: fe-exec.c:1450 fe-exec.c:1521 fe-exec.c:1570 msgid "command string is a null pointer\n" msgstr "コマンド文字列がヌルポインタです\n" -#: fe-exec.c:1455 fe-exec.c:2914 +#: fe-exec.c:1457 fe-exec.c:2908 #, c-format msgid "%s not allowed in pipeline mode\n" msgstr "%sはパイプラインモードでは使用できません\n" -#: fe-exec.c:1525 fe-exec.c:1574 fe-exec.c:1670 +#: fe-exec.c:1527 fe-exec.c:1576 fe-exec.c:1672 #, c-format msgid "number of parameters must be between 0 and %d\n" msgstr "パラメータ数は0から%dまでの間でなければなりません\n" -#: fe-exec.c:1562 fe-exec.c:1664 +#: fe-exec.c:1564 fe-exec.c:1666 msgid "statement name is a null pointer\n" msgstr "文の名前がヌルポインタです\n" -#: fe-exec.c:1708 fe-exec.c:3255 +#: fe-exec.c:1710 fe-exec.c:3276 msgid "no connection to the server\n" msgstr "サーバーへの接続がありません\n" -#: fe-exec.c:1717 fe-exec.c:3264 +#: fe-exec.c:1719 fe-exec.c:3285 msgid "another command is already in progress\n" msgstr "他のコマンドを処理しています\n" -#: fe-exec.c:1748 +#: fe-exec.c:1750 msgid "cannot queue commands during COPY\n" msgstr "COPY中はコマンドのキューイングはできません\n" -#: fe-exec.c:1866 +#: fe-exec.c:1868 msgid "length must be given for binary parameter\n" msgstr "バイナリパラメータには長さを指定しなければなりません\n" -#: fe-exec.c:2189 +#: fe-exec.c:2183 #, c-format msgid "unexpected asyncStatus: %d\n" msgstr "想定外のasyncStatus: %d\n" -#: fe-exec.c:2347 +#: fe-exec.c:2341 msgid "synchronous command execution functions are not allowed in pipeline mode\n" msgstr "同期的にコマンドを実行する関数はパイプラインモード中は実行できません\n" -#: fe-exec.c:2364 +#: fe-exec.c:2358 msgid "COPY terminated by new PQexec" msgstr "新たなPQexec\"によりCOPYが終了しました" -#: fe-exec.c:2381 +#: fe-exec.c:2375 msgid "PQexec not allowed during COPY BOTH\n" msgstr "COPY BOTH 実行中の PQexec は許可されていません\n" -#: fe-exec.c:2609 fe-exec.c:2665 fe-exec.c:2734 fe-protocol3.c:1868 +#: fe-exec.c:2603 fe-exec.c:2659 fe-exec.c:2728 fe-protocol3.c:1863 msgid "no COPY in progress\n" msgstr "実行中のCOPYはありません\n" -#: fe-exec.c:2923 +#: fe-exec.c:2917 msgid "connection in wrong state\n" msgstr "接続状態が異常です\n" -#: fe-exec.c:2967 +#: fe-exec.c:2961 msgid "cannot enter pipeline mode, connection not idle\n" msgstr "" "パイプラインモードに入れません、接続がアイドル状態ではありません\n" "\n" -#: fe-exec.c:3004 fe-exec.c:3028 +#: fe-exec.c:2998 fe-exec.c:3022 msgid "cannot exit pipeline mode with uncollected results\n" msgstr "未回収の結果が残っている状態でパイプラインモードを抜けることはできません\n" -#: fe-exec.c:3009 +#: fe-exec.c:3003 msgid "cannot exit pipeline mode while busy\n" msgstr "ビジー状態でパイプラインモードを抜けることはできません\n" -#: fe-exec.c:3021 +#: fe-exec.c:3015 msgid "cannot exit pipeline mode while in COPY\n" msgstr "COPY実行中にパイプラインモードを抜けることはできません\n" -#: fe-exec.c:3188 +#: fe-exec.c:3209 msgid "cannot send pipeline when not in pipeline mode\n" msgstr "パイプラインモード外でパイプライン送出はできません\n" -#: fe-exec.c:3291 +#: fe-exec.c:3320 msgid "invalid ExecStatusType code" msgstr "ExecStatusTypeコードが不正です" -#: fe-exec.c:3318 +#: fe-exec.c:3347 msgid "PGresult is not an error result\n" msgstr "PGresutがエラー結果ではありません\n" -#: fe-exec.c:3386 fe-exec.c:3409 +#: fe-exec.c:3415 fe-exec.c:3438 #, c-format msgid "column number %d is out of range 0..%d" msgstr "列番号%dは0..%dの範囲を超えています" -#: fe-exec.c:3424 +#: fe-exec.c:3453 #, c-format msgid "parameter number %d is out of range 0..%d" msgstr "パラメータ%dは0..%dの範囲を超えています" -#: fe-exec.c:3735 +#: fe-exec.c:3764 #, c-format msgid "could not interpret result from server: %s" msgstr "サーバーからの結果を解釈できませんでした: %s" -#: fe-exec.c:4001 fe-exec.c:4092 +#: fe-exec.c:4030 fe-exec.c:4121 msgid "incomplete multibyte character\n" msgstr "不完全なマルチバイト文字\n" @@ -839,8 +839,8 @@ msgstr "サイズ%luの整数はpqPutIntでサポートされていません" msgid "connection not open\n" msgstr "接続はオープンされていません\n" -#: fe-misc.c:755 fe-secure-openssl.c:218 fe-secure-openssl.c:325 -#: fe-secure.c:260 fe-secure.c:423 +#: fe-misc.c:755 fe-secure-openssl.c:213 fe-secure-openssl.c:326 +#: fe-secure.c:262 fe-secure.c:430 #, c-format msgid "" "server closed the connection unexpectedly\n" @@ -869,128 +869,128 @@ msgstr "%s() が失敗しました: %s\n" msgid "message type 0x%02x arrived from server while idle" msgstr "待機中にサーバーからメッセージ種類0x%02xが届きました" -#: fe-protocol3.c:393 +#: fe-protocol3.c:388 msgid "server sent data (\"D\" message) without prior row description (\"T\" message)\n" msgstr "サーバーが事前の行記述(\"T\"メッセージ)なしにデータ(\"D\"メッセージ)を送信しました\"\n" -#: fe-protocol3.c:436 +#: fe-protocol3.c:431 #, c-format msgid "unexpected response from server; first received character was \"%c\"\n" msgstr "サーバーから想定外の応答がありました。受け付けた先頭文字は\"%c\"です\n" -#: fe-protocol3.c:461 +#: fe-protocol3.c:456 #, c-format msgid "message contents do not agree with length in message type \"%c\"\n" msgstr "メッセージの内容がメッセージ種類\"%c\"の長さに合いません\n" -#: fe-protocol3.c:481 +#: fe-protocol3.c:476 #, c-format msgid "lost synchronization with server: got message type \"%c\", length %d\n" msgstr "サーバーとの同期が失われました。受信したメッセージ種類は\"%c\"、長さは%d\n" -#: fe-protocol3.c:533 fe-protocol3.c:573 +#: fe-protocol3.c:528 fe-protocol3.c:568 msgid "insufficient data in \"T\" message" msgstr "\"T\"メッセージ内のデータが不十分です" -#: fe-protocol3.c:644 fe-protocol3.c:850 +#: fe-protocol3.c:639 fe-protocol3.c:845 msgid "out of memory for query result" msgstr "問い合わせ結果用のメモリが不足しています" -#: fe-protocol3.c:713 +#: fe-protocol3.c:708 msgid "insufficient data in \"t\" message" msgstr "\"t\"メッセージ内のデータが足りません" -#: fe-protocol3.c:772 fe-protocol3.c:804 fe-protocol3.c:822 +#: fe-protocol3.c:767 fe-protocol3.c:799 fe-protocol3.c:817 msgid "insufficient data in \"D\" message" msgstr "\"D\"\"メッセージ内のデータが不十分です" -#: fe-protocol3.c:778 +#: fe-protocol3.c:773 msgid "unexpected field count in \"D\" message" msgstr "\"D\"メッセージ内のフィールド数が想定外です。" -#: fe-protocol3.c:1034 +#: fe-protocol3.c:1029 msgid "no error message available\n" msgstr "エラーメッセージがありません\n" #. translator: %s represents a digit string -#: fe-protocol3.c:1082 fe-protocol3.c:1101 +#: fe-protocol3.c:1077 fe-protocol3.c:1096 #, c-format msgid " at character %s" msgstr "(文字位置: %s)" -#: fe-protocol3.c:1114 +#: fe-protocol3.c:1109 #, c-format msgid "DETAIL: %s\n" msgstr "DETAIL: %s\n" -#: fe-protocol3.c:1117 +#: fe-protocol3.c:1112 #, c-format msgid "HINT: %s\n" msgstr "HINT: %s\n" -#: fe-protocol3.c:1120 +#: fe-protocol3.c:1115 #, c-format msgid "QUERY: %s\n" msgstr "QUERY: %s\n" -#: fe-protocol3.c:1127 +#: fe-protocol3.c:1122 #, c-format msgid "CONTEXT: %s\n" msgstr "CONTEXT: %s\n" -#: fe-protocol3.c:1136 +#: fe-protocol3.c:1131 #, c-format msgid "SCHEMA NAME: %s\n" msgstr "SCHEMA NAME: %s\n" -#: fe-protocol3.c:1140 +#: fe-protocol3.c:1135 #, c-format msgid "TABLE NAME: %s\n" msgstr "TABLE NAME: %s\n" -#: fe-protocol3.c:1144 +#: fe-protocol3.c:1139 #, c-format msgid "COLUMN NAME: %s\n" msgstr "COLUMN NAME: %s\n" -#: fe-protocol3.c:1148 +#: fe-protocol3.c:1143 #, c-format msgid "DATATYPE NAME: %s\n" msgstr "DATATYPE NAME: %s\n" -#: fe-protocol3.c:1152 +#: fe-protocol3.c:1147 #, c-format msgid "CONSTRAINT NAME: %s\n" msgstr "CONSTRAINT NAME: %s\n" -#: fe-protocol3.c:1164 +#: fe-protocol3.c:1159 msgid "LOCATION: " msgstr "LOCATION: " -#: fe-protocol3.c:1166 +#: fe-protocol3.c:1161 #, c-format msgid "%s, " msgstr "%s, " -#: fe-protocol3.c:1168 +#: fe-protocol3.c:1163 #, c-format msgid "%s:%s" msgstr "%s:%s" -#: fe-protocol3.c:1363 +#: fe-protocol3.c:1358 #, c-format msgid "LINE %d: " msgstr "行 %d: " -#: fe-protocol3.c:1762 +#: fe-protocol3.c:1757 msgid "PQgetline: not doing text COPY OUT\n" msgstr "PQgetline: テキストのCOPY OUTを行っていません\n" -#: fe-protocol3.c:2139 +#: fe-protocol3.c:2134 msgid "protocol error: no function result\n" msgstr "プロトコルエラー: 関数の結果がありません\n" -#: fe-protocol3.c:2151 +#: fe-protocol3.c:2146 #, c-format msgid "protocol error: id=0x%x\n" msgstr "プロトコルエラー: id=0x%x\n" @@ -1022,119 +1022,119 @@ msgstr "\"%s\"のサーバー証明書がホスト名\"%s\"とマッチしませ msgid "could not get server's host name from server certificate\n" msgstr "サーバー証明書からサーバーのホスト名を取り出すことができませんでした。\n" -#: fe-secure-gssapi.c:201 +#: fe-secure-gssapi.c:194 msgid "GSSAPI wrap error" msgstr "GSSAPI名ラップエラー" -#: fe-secure-gssapi.c:209 +#: fe-secure-gssapi.c:202 msgid "outgoing GSSAPI message would not use confidentiality\n" msgstr "送出されるGSSAPIメッセージは機密性を使用しません\n" -#: fe-secure-gssapi.c:217 +#: fe-secure-gssapi.c:210 #, c-format msgid "client tried to send oversize GSSAPI packet (%zu > %zu)\n" msgstr "クライアントは過大なGSSAPIパケットを送信しようとしました: (%zu > %zu)\n" -#: fe-secure-gssapi.c:354 fe-secure-gssapi.c:596 +#: fe-secure-gssapi.c:350 fe-secure-gssapi.c:594 #, c-format msgid "oversize GSSAPI packet sent by the server (%zu > %zu)\n" msgstr "過大なGSSAPIパケットがサーバーから送出されました: (%zu > %zu)\n" -#: fe-secure-gssapi.c:393 +#: fe-secure-gssapi.c:389 msgid "GSSAPI unwrap error" msgstr "GSSAPIアンラップエラー" -#: fe-secure-gssapi.c:403 +#: fe-secure-gssapi.c:399 msgid "incoming GSSAPI message did not use confidentiality\n" msgstr "受信したGSSAPIパケットは機密性を使用していませんでした\n" -#: fe-secure-gssapi.c:642 +#: fe-secure-gssapi.c:640 msgid "could not initiate GSSAPI security context" msgstr "GSSAPIセキュリティコンテキストを開始できませんでした" -#: fe-secure-gssapi.c:670 +#: fe-secure-gssapi.c:668 msgid "GSSAPI size check error" msgstr "GSSAPIサイズチェックエラー" -#: fe-secure-gssapi.c:681 +#: fe-secure-gssapi.c:679 msgid "GSSAPI context establishment error" msgstr "GSSAPIコンテクスト確立エラー" -#: fe-secure-openssl.c:223 fe-secure-openssl.c:330 fe-secure-openssl.c:1499 +#: fe-secure-openssl.c:218 fe-secure-openssl.c:331 fe-secure-openssl.c:1492 #, c-format msgid "SSL SYSCALL error: %s\n" msgstr "SSL SYSCALLエラー: %s\n" -#: fe-secure-openssl.c:230 fe-secure-openssl.c:337 fe-secure-openssl.c:1503 +#: fe-secure-openssl.c:225 fe-secure-openssl.c:338 fe-secure-openssl.c:1496 msgid "SSL SYSCALL error: EOF detected\n" msgstr "SSL SYSCALLエラー: EOFを検知\n" -#: fe-secure-openssl.c:241 fe-secure-openssl.c:348 fe-secure-openssl.c:1512 +#: fe-secure-openssl.c:236 fe-secure-openssl.c:349 fe-secure-openssl.c:1505 #, c-format msgid "SSL error: %s\n" msgstr "SSLエラー: %s\n" -#: fe-secure-openssl.c:256 fe-secure-openssl.c:363 +#: fe-secure-openssl.c:251 fe-secure-openssl.c:364 msgid "SSL connection has been closed unexpectedly\n" msgstr "SSL接続が意図せずにクローズされました\n" -#: fe-secure-openssl.c:262 fe-secure-openssl.c:369 fe-secure-openssl.c:1562 +#: fe-secure-openssl.c:257 fe-secure-openssl.c:370 fe-secure-openssl.c:1555 #, c-format msgid "unrecognized SSL error code: %d\n" msgstr "不明のSSLエラーコード: %d\n" -#: fe-secure-openssl.c:409 +#: fe-secure-openssl.c:415 msgid "could not determine server certificate signature algorithm\n" msgstr "サーバー証明書の署名アルゴリズムを決定できませんでした\n" -#: fe-secure-openssl.c:430 +#: fe-secure-openssl.c:436 #, c-format msgid "could not find digest for NID %s\n" msgstr "NID %sのダイジェストが見つかりませんでした\n" -#: fe-secure-openssl.c:440 +#: fe-secure-openssl.c:446 msgid "could not generate peer certificate hash\n" msgstr "ピアの証明書ハッシュの生成に失敗しました\n" -#: fe-secure-openssl.c:497 +#: fe-secure-openssl.c:503 msgid "SSL certificate's name entry is missing\n" msgstr "SSL証明書に名前の項目がありません\n" -#: fe-secure-openssl.c:532 +#: fe-secure-openssl.c:538 msgid "SSL certificate's address entry is missing\n" msgstr "SSL証明書のアドレスのエントリがありません\n" -#: fe-secure-openssl.c:950 +#: fe-secure-openssl.c:940 #, c-format msgid "could not create SSL context: %s\n" msgstr "SSLコンテキストを作成できませんでした: %s\n" -#: fe-secure-openssl.c:989 +#: fe-secure-openssl.c:979 #, c-format msgid "invalid value \"%s\" for minimum SSL protocol version\n" msgstr "不正なSSLプロトコル最小バージョンの値\"%s\"\n" -#: fe-secure-openssl.c:1000 +#: fe-secure-openssl.c:990 #, c-format msgid "could not set minimum SSL protocol version: %s\n" msgstr "SSLプロトコル最小バージョンを設定できませんでした: %s\n" -#: fe-secure-openssl.c:1018 +#: fe-secure-openssl.c:1008 #, c-format msgid "invalid value \"%s\" for maximum SSL protocol version\n" msgstr "不正なSSLプロトコル最大バージョンの値\"%s\"\n" -#: fe-secure-openssl.c:1029 +#: fe-secure-openssl.c:1019 #, c-format msgid "could not set maximum SSL protocol version: %s\n" msgstr "SSLプロトコル最大バージョンを設定できませんでした: %s\n" -#: fe-secure-openssl.c:1065 +#: fe-secure-openssl.c:1055 #, c-format msgid "could not read root certificate file \"%s\": %s\n" msgstr "ルート証明書\"%s\"を読み取れませんでした: %s\n" -#: fe-secure-openssl.c:1118 +#: fe-secure-openssl.c:1108 msgid "" "could not get home directory to locate root certificate file\n" "Either provide the file or change sslmode to disable server certificate verification.\n" @@ -1142,7 +1142,7 @@ msgstr "" "ルート証明書ファイルを特定するためのホームディレクトリが取得できませんでした\n" "ファイルを用意するか、サーバー証明書の検証を無効にするように sslmode を変更してください\n" -#: fe-secure-openssl.c:1122 +#: fe-secure-openssl.c:1112 #, c-format msgid "" "root certificate file \"%s\" does not exist\n" @@ -1151,109 +1151,109 @@ msgstr "" "ルート証明書ファイル\"%s\"が存在しません。\n" "ファイルを用意するかサーバー証明書の検証を無効にするようにsslmodeを変更してください\n" -#: fe-secure-openssl.c:1153 +#: fe-secure-openssl.c:1143 #, c-format msgid "could not open certificate file \"%s\": %s\n" msgstr "証明書ファイル\"%s\"をオープンできませんでした: %s\n" -#: fe-secure-openssl.c:1172 +#: fe-secure-openssl.c:1162 #, c-format msgid "could not read certificate file \"%s\": %s\n" msgstr "証明書ファイル\"%s\"を読み込めませんでした: %s\n" -#: fe-secure-openssl.c:1197 +#: fe-secure-openssl.c:1187 #, c-format msgid "could not establish SSL connection: %s\n" msgstr "SSL接続を確立できませんでした: %s\n" -#: fe-secure-openssl.c:1231 +#: fe-secure-openssl.c:1221 #, c-format msgid "could not set SSL Server Name Indication (SNI): %s\n" msgstr "" "SSLサーバー名表示(SNI)を設定できませんでした: %s\n" "\n" -#: fe-secure-openssl.c:1277 +#: fe-secure-openssl.c:1268 #, c-format msgid "could not load SSL engine \"%s\": %s\n" msgstr "SSLエンジン\"%s\"を読み込みできませんでした: %s\n" -#: fe-secure-openssl.c:1289 +#: fe-secure-openssl.c:1280 #, c-format msgid "could not initialize SSL engine \"%s\": %s\n" msgstr "SSLエンジン\"%s\"を初期化できませんでした: %s\n" -#: fe-secure-openssl.c:1305 +#: fe-secure-openssl.c:1296 #, c-format msgid "could not read private SSL key \"%s\" from engine \"%s\": %s\n" msgstr "SSL秘密鍵ファイル\"%s\"をエンジン\"%s\"から読み取れませんでした: %s\n" -#: fe-secure-openssl.c:1319 +#: fe-secure-openssl.c:1310 #, c-format msgid "could not load private SSL key \"%s\" from engine \"%s\": %s\n" msgstr "SSL秘密鍵\"%s\"をエンジン\"%s\"から読み取れませんでした: %s\n" -#: fe-secure-openssl.c:1357 +#: fe-secure-openssl.c:1348 #, c-format msgid "certificate present, but not private key file \"%s\"\n" msgstr "証明書はありましたが、秘密鍵ファイル\"%s\"はありませんでした\n" -#: fe-secure-openssl.c:1361 +#: fe-secure-openssl.c:1352 #, c-format msgid "could not stat private key file \"%s\": %m\n" msgstr "秘密鍵ファイル\"%s\"をstatできませんでした: %m\n" -#: fe-secure-openssl.c:1370 +#: fe-secure-openssl.c:1361 #, c-format msgid "private key file \"%s\" is not a regular file\n" msgstr "秘密鍵ファイル\"%s\"は通常のファイルではありません\n" -#: fe-secure-openssl.c:1403 +#: fe-secure-openssl.c:1394 #, c-format msgid "private key file \"%s\" has group or world access; file must have permissions u=rw (0600) or less if owned by the current user, or permissions u=rw,g=r (0640) or less if owned by root\n" msgstr "秘密鍵ファイル\"%s\"はグループに対して、もしくは無制限にアクセスを許可しています; ファイルのパーミッションは u=rw (0600) かそれよりも狭い必要があります、rootが所有している場合は u=rw,g=r (0640) かそれよりも狭い必要があります\n" -#: fe-secure-openssl.c:1428 +#: fe-secure-openssl.c:1419 #, c-format msgid "could not load private key file \"%s\": %s\n" msgstr "秘密鍵ファイル\"%s\"をロードできませんでした: %s\n" -#: fe-secure-openssl.c:1445 +#: fe-secure-openssl.c:1436 #, c-format msgid "certificate does not match private key file \"%s\": %s\n" msgstr "証明書と秘密鍵ファイル\"%s\"が一致しません: %s\n" -#: fe-secure-openssl.c:1545 +#: fe-secure-openssl.c:1538 #, c-format msgid "This may indicate that the server does not support any SSL protocol version between %s and %s.\n" msgstr "このことは、クライアントがSSLプロトコルのバージョン%sから%sの間のいずれもサポートしていないことを示唆しているかもしれません。\n" -#: fe-secure-openssl.c:1581 +#: fe-secure-openssl.c:1574 #, c-format msgid "certificate could not be obtained: %s\n" msgstr "証明書を入手できませんでした: %s\n" -#: fe-secure-openssl.c:1687 +#: fe-secure-openssl.c:1681 #, c-format msgid "no SSL error reported" msgstr "SSLエラーはありませんでした" -#: fe-secure-openssl.c:1696 +#: fe-secure-openssl.c:1707 #, c-format msgid "SSL error code %lu" msgstr "SSLエラーコード: %lu" -#: fe-secure-openssl.c:1944 +#: fe-secure-openssl.c:1986 #, c-format msgid "WARNING: sslpassword truncated\n" msgstr "警告: sslpasswordが切り詰められました\n" -#: fe-secure.c:267 +#: fe-secure.c:274 #, c-format msgid "could not receive data from server: %s\n" msgstr "サーバーからデータを受信できませんでした: %s\n" -#: fe-secure.c:436 +#: fe-secure.c:443 #, c-format msgid "could not send data to server: %s\n" msgstr "サーバーにデータを送信できませんでした: %s\n" @@ -1262,3 +1262,6 @@ msgstr "サーバーにデータを送信できませんでした: %s\n" #, c-format msgid "unrecognized socket error: 0x%08X/%d" msgstr "不明なソケットエラー 0x%08X/%d" + +#~ msgid "keepalives parameter must be an integer\n" +#~ msgstr "keepaliveのパラメータは整数でなければなりません\n" diff --git a/src/interfaces/libpq/po/ru.po b/src/interfaces/libpq/po/ru.po index 3897c71eb37..a7f3322023b 100644 --- a/src/interfaces/libpq/po/ru.po +++ b/src/interfaces/libpq/po/ru.po @@ -4,13 +4,13 @@ # Serguei A. Mokhov , 2001-2004. # Oleg Bartunov , 2005. # Andrey Sudnik , 2010. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024. # Maxim Yablokov , 2021. msgid "" msgstr "" "Project-Id-Version: libpq (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-01 12:51+0300\n" +"POT-Creation-Date: 2024-11-02 08:22+0300\n" "PO-Revision-Date: 2023-08-30 15:09+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" @@ -72,11 +72,11 @@ msgstr "не удалось сгенерировать разовый код\n" #: fe-auth-scram.c:636 fe-auth-scram.c:662 fe-auth-scram.c:677 #: fe-auth-scram.c:727 fe-auth-scram.c:766 fe-auth.c:290 fe-auth.c:362 #: fe-auth.c:398 fe-auth.c:623 fe-auth.c:799 fe-auth.c:1152 fe-auth.c:1322 -#: fe-connect.c:907 fe-connect.c:1456 fe-connect.c:1625 fe-connect.c:2977 -#: fe-connect.c:4829 fe-connect.c:5090 fe-connect.c:5209 fe-connect.c:5461 -#: fe-connect.c:5542 fe-connect.c:5641 fe-connect.c:5897 fe-connect.c:5926 -#: fe-connect.c:5998 fe-connect.c:6022 fe-connect.c:6040 fe-connect.c:6141 -#: fe-connect.c:6150 fe-connect.c:6508 fe-connect.c:6658 fe-connect.c:6924 +#: fe-connect.c:909 fe-connect.c:1458 fe-connect.c:1627 fe-connect.c:2978 +#: fe-connect.c:4830 fe-connect.c:5091 fe-connect.c:5210 fe-connect.c:5462 +#: fe-connect.c:5543 fe-connect.c:5642 fe-connect.c:5898 fe-connect.c:5927 +#: fe-connect.c:5999 fe-connect.c:6023 fe-connect.c:6041 fe-connect.c:6142 +#: fe-connect.c:6151 fe-connect.c:6509 fe-connect.c:6659 fe-connect.c:6925 #: fe-exec.c:710 fe-exec.c:978 fe-exec.c:1326 fe-exec.c:3165 fe-exec.c:3357 #: fe-exec.c:4139 fe-exec.c:4304 fe-gssapi-common.c:111 fe-lobj.c:884 #: fe-protocol3.c:968 fe-protocol3.c:983 fe-protocol3.c:1016 @@ -289,171 +289,167 @@ msgstr "слишком длинное значение password_encryption\n" msgid "unrecognized password encryption algorithm \"%s\"\n" msgstr "нераспознанный алгоритм шифрования пароля \"%s\"\n" -#: fe-connect.c:1090 +#: fe-connect.c:1092 #, c-format msgid "could not match %d host names to %d hostaddr values\n" msgstr "не удалось сопоставить имена узлов (%d) со значениями hostaddr (%d)\n" -#: fe-connect.c:1176 +#: fe-connect.c:1178 #, c-format msgid "could not match %d port numbers to %d hosts\n" msgstr "не удалось сопоставить номера портов (%d) с узлами (%d)\n" -#: fe-connect.c:1269 fe-connect.c:1295 fe-connect.c:1337 fe-connect.c:1346 -#: fe-connect.c:1379 fe-connect.c:1423 +#: fe-connect.c:1271 fe-connect.c:1297 fe-connect.c:1339 fe-connect.c:1348 +#: fe-connect.c:1381 fe-connect.c:1425 #, c-format msgid "invalid %s value: \"%s\"\n" msgstr "неверное значение %s: \"%s\"\n" -#: fe-connect.c:1316 +#: fe-connect.c:1318 #, c-format msgid "sslmode value \"%s\" invalid when SSL support is not compiled in\n" msgstr "значение sslmode \"%s\" недопустимо для сборки без поддержки SSL\n" -#: fe-connect.c:1364 +#: fe-connect.c:1366 msgid "invalid SSL protocol version range\n" msgstr "неверный диапазон версий протокола SSL\n" -#: fe-connect.c:1389 +#: fe-connect.c:1391 #, c-format msgid "" "gssencmode value \"%s\" invalid when GSSAPI support is not compiled in\n" msgstr "" "значение gssencmode \"%s\" недопустимо для сборки без поддержки GSSAPI\n" -#: fe-connect.c:1649 +#: fe-connect.c:1651 #, c-format msgid "could not set socket to TCP no delay mode: %s\n" msgstr "не удалось перевести сокет в режим TCP-передачи без задержки: %s\n" -#: fe-connect.c:1711 +#: fe-connect.c:1713 #, c-format msgid "connection to server on socket \"%s\" failed: " msgstr "подключиться к серверу через сокет \"%s\" не удалось: " -#: fe-connect.c:1738 +#: fe-connect.c:1740 #, c-format msgid "connection to server at \"%s\" (%s), port %s failed: " msgstr "подключиться к серверу \"%s\" (%s), порту %s не удалось: " -#: fe-connect.c:1743 +#: fe-connect.c:1745 #, c-format msgid "connection to server at \"%s\", port %s failed: " msgstr "подключиться к серверу \"%s\", порту %s не удалось: " -#: fe-connect.c:1768 +#: fe-connect.c:1770 msgid "" "\tIs the server running locally and accepting connections on that socket?\n" msgstr "" "\tСервер действительно работает локально и принимает подключения через этот " "сокет?\n" -#: fe-connect.c:1772 +#: fe-connect.c:1774 msgid "" "\tIs the server running on that host and accepting TCP/IP connections?\n" msgstr "" "\tСервер действительно работает по данному адресу и принимает TCP-" "соединения?\n" -#: fe-connect.c:1836 +#: fe-connect.c:1838 #, c-format msgid "invalid integer value \"%s\" for connection option \"%s\"\n" msgstr "" "неверное целочисленное значение \"%s\" для параметра соединения \"%s\"\n" -#: fe-connect.c:1866 fe-connect.c:1901 fe-connect.c:1937 fe-connect.c:2037 -#: fe-connect.c:2651 +#: fe-connect.c:1868 fe-connect.c:1903 fe-connect.c:1939 fe-connect.c:2039 +#: fe-connect.c:2652 #, c-format msgid "%s(%s) failed: %s\n" msgstr "ошибка в %s(%s): %s\n" -#: fe-connect.c:2002 +#: fe-connect.c:2004 #, c-format msgid "%s(%s) failed: error code %d\n" msgstr "ошибка в %s(%s): код ошибки %d\n" -#: fe-connect.c:2317 +#: fe-connect.c:2319 msgid "invalid connection state, probably indicative of memory corruption\n" msgstr "неверное состояние соединения - возможно разрушение памяти\n" -#: fe-connect.c:2396 +#: fe-connect.c:2398 #, c-format msgid "invalid port number: \"%s\"\n" msgstr "неверный номер порта: \"%s\"\n" -#: fe-connect.c:2412 +#: fe-connect.c:2414 #, c-format msgid "could not translate host name \"%s\" to address: %s\n" msgstr "преобразовать имя \"%s\" в адрес не удалось: %s\n" -#: fe-connect.c:2425 +#: fe-connect.c:2427 #, c-format msgid "could not parse network address \"%s\": %s\n" msgstr "не удалось разобрать сетевой адрес \"%s\": %s\n" -#: fe-connect.c:2438 +#: fe-connect.c:2440 #, c-format msgid "Unix-domain socket path \"%s\" is too long (maximum %d bytes)\n" msgstr "длина пути Unix-сокета \"%s\" превышает предел (%d байт)\n" -#: fe-connect.c:2453 +#: fe-connect.c:2455 #, c-format msgid "could not translate Unix-domain socket path \"%s\" to address: %s\n" msgstr "преобразовать путь Unix-сокета \"%s\" в адрес не удалось: %s\n" -#: fe-connect.c:2579 +#: fe-connect.c:2581 #, c-format msgid "could not create socket: %s\n" msgstr "не удалось создать сокет: %s\n" -#: fe-connect.c:2610 +#: fe-connect.c:2612 #, c-format msgid "could not set socket to nonblocking mode: %s\n" msgstr "не удалось перевести сокет в неблокирующий режим: %s\n" -#: fe-connect.c:2620 +#: fe-connect.c:2622 #, c-format msgid "could not set socket to close-on-exec mode: %s\n" msgstr "" "не удалось перевести сокет в режим закрытия при выполнении (close-on-exec): " "%s\n" -#: fe-connect.c:2638 -msgid "keepalives parameter must be an integer\n" -msgstr "параметр keepalives должен быть целым числом\n" - -#: fe-connect.c:2779 +#: fe-connect.c:2780 #, c-format msgid "could not get socket error status: %s\n" msgstr "не удалось получить статус ошибки сокета: %s\n" -#: fe-connect.c:2807 +#: fe-connect.c:2808 #, c-format msgid "could not get client address from socket: %s\n" msgstr "не удалось получить адрес клиента из сокета: %s\n" -#: fe-connect.c:2846 +#: fe-connect.c:2847 msgid "requirepeer parameter is not supported on this platform\n" msgstr "параметр requirepeer не поддерживается в этой ОС\n" -#: fe-connect.c:2849 +#: fe-connect.c:2850 #, c-format msgid "could not get peer credentials: %s\n" msgstr "не удалось получить учётные данные сервера: %s\n" -#: fe-connect.c:2863 +#: fe-connect.c:2864 #, c-format msgid "requirepeer specifies \"%s\", but actual peer user name is \"%s\"\n" msgstr "" "requirepeer допускает подключение только к \"%s\", но сервер работает под " "именем \"%s\"\n" -#: fe-connect.c:2905 +#: fe-connect.c:2906 #, c-format msgid "could not send GSSAPI negotiation packet: %s\n" msgstr "не удалось отправить пакет согласования GSSAPI: %s\n" -#: fe-connect.c:2917 +#: fe-connect.c:2918 msgid "" "GSSAPI encryption required but was impossible (possibly no credential cache, " "no server support, or using a local socket)\n" @@ -462,165 +458,165 @@ msgstr "" "отсутствует кеш учётных данных, нет поддержки на сервере или используется " "локальный сокет)\n" -#: fe-connect.c:2959 +#: fe-connect.c:2960 #, c-format msgid "could not send SSL negotiation packet: %s\n" msgstr "не удалось отправить пакет согласования SSL: %s\n" -#: fe-connect.c:2990 +#: fe-connect.c:2991 #, c-format msgid "could not send startup packet: %s\n" msgstr "не удалось отправить стартовый пакет: %s\n" -#: fe-connect.c:3066 +#: fe-connect.c:3067 msgid "server does not support SSL, but SSL was required\n" msgstr "затребовано подключение через SSL, но сервер не поддерживает SSL\n" -#: fe-connect.c:3093 +#: fe-connect.c:3094 #, c-format msgid "received invalid response to SSL negotiation: %c\n" msgstr "получен неверный ответ при согласовании SSL: %c\n" -#: fe-connect.c:3114 +#: fe-connect.c:3115 msgid "received unencrypted data after SSL response\n" msgstr "после ответа SSL получены незашифрованные данные\n" -#: fe-connect.c:3195 +#: fe-connect.c:3196 msgid "server doesn't support GSSAPI encryption, but it was required\n" msgstr "затребовано шифрование GSSAPI, но сервер его не поддерживает\n" -#: fe-connect.c:3207 +#: fe-connect.c:3208 #, c-format msgid "received invalid response to GSSAPI negotiation: %c\n" msgstr "получен неверный ответ при согласовании GSSAPI: %c\n" -#: fe-connect.c:3226 +#: fe-connect.c:3227 msgid "received unencrypted data after GSSAPI encryption response\n" msgstr "" "после ответа на запрос шифрования GSSAPI получены незашифрованные данные\n" -#: fe-connect.c:3291 fe-connect.c:3316 +#: fe-connect.c:3292 fe-connect.c:3317 #, c-format msgid "expected authentication request from server, but received %c\n" msgstr "ожидался запрос аутентификации от сервера, но получено: %c\n" -#: fe-connect.c:3523 +#: fe-connect.c:3524 msgid "unexpected message from server during startup\n" msgstr "неожиданное сообщение от сервера в начале работы\n" -#: fe-connect.c:3615 +#: fe-connect.c:3616 msgid "session is read-only\n" msgstr "сеанс не допускает запись\n" -#: fe-connect.c:3618 +#: fe-connect.c:3619 msgid "session is not read-only\n" msgstr "сеанс допускает запись\n" -#: fe-connect.c:3672 +#: fe-connect.c:3673 msgid "server is in hot standby mode\n" msgstr "сервер работает в режиме горячего резерва\n" -#: fe-connect.c:3675 +#: fe-connect.c:3676 msgid "server is not in hot standby mode\n" msgstr "сервер работает не в режиме горячего резерва\n" -#: fe-connect.c:3793 fe-connect.c:3845 +#: fe-connect.c:3794 fe-connect.c:3846 #, c-format msgid "\"%s\" failed\n" msgstr "выполнить \"%s\" не удалось\n" -#: fe-connect.c:3859 +#: fe-connect.c:3860 #, c-format msgid "invalid connection state %d, probably indicative of memory corruption\n" msgstr "неверное состояние соединения %d - возможно разрушение памяти\n" -#: fe-connect.c:4842 +#: fe-connect.c:4843 #, c-format msgid "invalid LDAP URL \"%s\": scheme must be ldap://\n" msgstr "некорректный адрес LDAP \"%s\": схема должна быть ldap://\n" -#: fe-connect.c:4857 +#: fe-connect.c:4858 #, c-format msgid "invalid LDAP URL \"%s\": missing distinguished name\n" msgstr "некорректный адрес LDAP \"%s\": отсутствует уникальное имя\n" -#: fe-connect.c:4869 fe-connect.c:4927 +#: fe-connect.c:4870 fe-connect.c:4928 #, c-format msgid "invalid LDAP URL \"%s\": must have exactly one attribute\n" msgstr "некорректный адрес LDAP \"%s\": должен быть только один атрибут\n" -#: fe-connect.c:4881 fe-connect.c:4943 +#: fe-connect.c:4882 fe-connect.c:4944 #, c-format msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)\n" msgstr "" "некорректный адрес LDAP \"%s\": не указана область поиска (base/one/sub)\n" -#: fe-connect.c:4893 +#: fe-connect.c:4894 #, c-format msgid "invalid LDAP URL \"%s\": no filter\n" msgstr "некорректный адрес LDAP \"%s\": нет фильтра\n" -#: fe-connect.c:4915 +#: fe-connect.c:4916 #, c-format msgid "invalid LDAP URL \"%s\": invalid port number\n" msgstr "некорректный адрес LDAP \"%s\": неверный номер порта\n" -#: fe-connect.c:4953 +#: fe-connect.c:4954 msgid "could not create LDAP structure\n" msgstr "не удалось создать структуру LDAP\n" -#: fe-connect.c:5029 +#: fe-connect.c:5030 #, c-format msgid "lookup on LDAP server failed: %s\n" msgstr "ошибка поиска на сервере LDAP: %s\n" -#: fe-connect.c:5040 +#: fe-connect.c:5041 msgid "more than one entry found on LDAP lookup\n" msgstr "при поиске LDAP найдено более одного вхождения\n" -#: fe-connect.c:5041 fe-connect.c:5053 +#: fe-connect.c:5042 fe-connect.c:5054 msgid "no entry found on LDAP lookup\n" msgstr "при поиске LDAP ничего не найдено\n" -#: fe-connect.c:5064 fe-connect.c:5077 +#: fe-connect.c:5065 fe-connect.c:5078 msgid "attribute has no values on LDAP lookup\n" msgstr "атрибут не содержит значений при поиске LDAP\n" -#: fe-connect.c:5129 fe-connect.c:5148 fe-connect.c:5680 +#: fe-connect.c:5130 fe-connect.c:5149 fe-connect.c:5681 #, c-format msgid "missing \"=\" after \"%s\" in connection info string\n" msgstr "в строке соединения нет \"=\" после \"%s\"\n" -#: fe-connect.c:5221 fe-connect.c:5865 fe-connect.c:6641 +#: fe-connect.c:5222 fe-connect.c:5866 fe-connect.c:6642 #, c-format msgid "invalid connection option \"%s\"\n" msgstr "неверный параметр соединения \"%s\"\n" -#: fe-connect.c:5237 fe-connect.c:5729 +#: fe-connect.c:5238 fe-connect.c:5730 msgid "unterminated quoted string in connection info string\n" msgstr "в строке соединения не хватает закрывающей кавычки\n" -#: fe-connect.c:5318 +#: fe-connect.c:5319 #, c-format msgid "definition of service \"%s\" not found\n" msgstr "определение службы \"%s\" не найдено\n" -#: fe-connect.c:5344 +#: fe-connect.c:5345 #, c-format msgid "service file \"%s\" not found\n" msgstr "файл определений служб \"%s\" не найден\n" -#: fe-connect.c:5358 +#: fe-connect.c:5359 #, c-format msgid "line %d too long in service file \"%s\"\n" msgstr "слишком длинная строка (%d) в файле определений служб \"%s\"\n" -#: fe-connect.c:5429 fe-connect.c:5473 +#: fe-connect.c:5430 fe-connect.c:5474 #, c-format msgid "syntax error in service file \"%s\", line %d\n" msgstr "синтаксическая ошибка в файле определения служб \"%s\" (строка %d)\n" -#: fe-connect.c:5440 +#: fe-connect.c:5441 #, c-format msgid "" "nested service specifications not supported in service file \"%s\", line %d\n" @@ -628,24 +624,24 @@ msgstr "" "рекурсивные определения служб не поддерживаются (файл определения служб " "\"%s\", строка %d)\n" -#: fe-connect.c:6161 +#: fe-connect.c:6162 #, c-format msgid "invalid URI propagated to internal parser routine: \"%s\"\n" msgstr "во внутреннюю процедуру разбора строки передан ошибочный URI: \"%s\"\n" -#: fe-connect.c:6238 +#: fe-connect.c:6239 #, c-format msgid "" "end of string reached when looking for matching \"]\" in IPv6 host address " "in URI: \"%s\"\n" msgstr "URI не содержит символ \"]\" после адреса IPv6: \"%s\"\n" -#: fe-connect.c:6245 +#: fe-connect.c:6246 #, c-format msgid "IPv6 host address may not be empty in URI: \"%s\"\n" msgstr "IPv6, содержащийся в URI, не может быть пустым: \"%s\"\n" -#: fe-connect.c:6260 +#: fe-connect.c:6261 #, c-format msgid "" "unexpected character \"%c\" at position %d in URI (expected \":\" or \"/\"): " @@ -654,41 +650,41 @@ msgstr "" "неожиданный символ \"%c\" в позиции %d в URI (ожидалось \":\" или \"/\"): " "\"%s\"\n" -#: fe-connect.c:6390 +#: fe-connect.c:6391 #, c-format msgid "extra key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "лишний разделитель ключа/значения \"=\" в параметрах URI: \"%s\"\n" -#: fe-connect.c:6410 +#: fe-connect.c:6411 #, c-format msgid "missing key/value separator \"=\" in URI query parameter: \"%s\"\n" msgstr "в параметрах URI не хватает разделителя ключа/значения \"=\": \"%s\"\n" -#: fe-connect.c:6462 +#: fe-connect.c:6463 #, c-format msgid "invalid URI query parameter: \"%s\"\n" msgstr "неверный параметр в URI: \"%s\"\n" -#: fe-connect.c:6536 +#: fe-connect.c:6537 #, c-format msgid "invalid percent-encoded token: \"%s\"\n" msgstr "неверный символ, закодированный с %%: \"%s\"\n" -#: fe-connect.c:6546 +#: fe-connect.c:6547 #, c-format msgid "forbidden value %%00 in percent-encoded value: \"%s\"\n" msgstr "недопустимое значение %%00 для символа, закодированного с %%: \"%s\"\n" -#: fe-connect.c:6916 +#: fe-connect.c:6917 msgid "connection pointer is NULL\n" msgstr "нулевой указатель соединения\n" -#: fe-connect.c:7204 +#: fe-connect.c:7205 #, c-format msgid "WARNING: password file \"%s\" is not a plain file\n" msgstr "ПРЕДУПРЕЖДЕНИЕ: файл паролей \"%s\" - не обычный файл\n" -#: fe-connect.c:7213 +#: fe-connect.c:7214 #, c-format msgid "" "WARNING: password file \"%s\" has group or world access; permissions should " @@ -697,7 +693,7 @@ msgstr "" "ПРЕДУПРЕЖДЕНИЕ: к файлу паролей \"%s\" имеют доступ все или группа; права " "должны быть u=rw (0600) или более ограниченные\n" -#: fe-connect.c:7321 +#: fe-connect.c:7322 #, c-format msgid "password retrieved from file \"%s\"\n" msgstr "пароль получен из файла \"%s\"\n" @@ -1340,6 +1336,9 @@ msgstr "не удалось передать данные серверу: %s\n" msgid "unrecognized socket error: 0x%08X/%d" msgstr "нераспознанная ошибка сокета: 0x%08X/%d" +#~ msgid "keepalives parameter must be an integer\n" +#~ msgstr "параметр keepalives должен быть целым числом\n" + #~ msgid "PGEventProc \"%s\" failed during PGEVT_CONNRESET event\n" #~ msgstr "ошибка в PGEventProc \"%s\" при обработке события PGEVT_CONNRESET\n" diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index 3a6954ce60e..01588d016a0 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -55,10 +55,10 @@ endif # win32 SHLIB_LINK = $(perl_embed_ldflags) -REGRESS_OPTS = --dbname=$(PL_TESTDB) +REGRESS_OPTS = --dbname=$(PL_TESTDB) --dlpath=$(top_builddir)/src/test/regress REGRESS = plperl_setup plperl plperl_lc plperl_trigger plperl_shared \ plperl_elog plperl_util plperl_init plperlu plperl_array \ - plperl_call plperl_transaction + plperl_call plperl_transaction plperl_env # if Perl can support two interpreters in one backend, # test plperl-and-plperlu cases ifneq ($(PERL),) diff --git a/src/pl/plperl/expected/plperl_env.out b/src/pl/plperl/expected/plperl_env.out new file mode 100644 index 00000000000..f777c072b56 --- /dev/null +++ b/src/pl/plperl/expected/plperl_env.out @@ -0,0 +1,55 @@ +-- +-- Test the environment setting +-- +-- directory path and dlsuffix are passed to us in environment variables +\getenv libdir PG_LIBDIR +\getenv dlsuffix PG_DLSUFFIX +\set regresslib :libdir '/regress' :dlsuffix +CREATE FUNCTION get_environ() + RETURNS text[] + AS :'regresslib', 'get_environ' + LANGUAGE C STRICT; +-- fetch the process environment +CREATE FUNCTION process_env () RETURNS text[] +LANGUAGE plpgsql AS +$$ + +declare + res text[]; + tmp text[]; + f record; +begin + for f in select unnest(get_environ()) as t loop + tmp := regexp_split_to_array(f.t, '='); + if array_length(tmp, 1) = 2 then + res := res || tmp; + end if; + end loop; + return res; +end + +$$; +-- plperl should not be able to affect the process environment +DO +$$ + $ENV{TEST_PLPERL_ENV_FOO} = "shouldfail"; + untie %ENV; + $ENV{TEST_PLPERL_ENV_FOO} = "testval"; + my $penv = spi_exec_query("select unnest(process_env()) as pe"); + my %received; + for (my $f = 0; $f < $penv->{processed}; $f += 2) + { + my $k = $penv->{rows}[$f]->{pe}; + my $v = $penv->{rows}[$f+1]->{pe}; + $received{$k} = $v; + } + unless (exists $received{TEST_PLPERL_ENV_FOO}) + { + elog(NOTICE, "environ unaffected") + } + +$$ LANGUAGE plperl; +WARNING: attempted alteration of $ENV{TEST_PLPERL_ENV_FOO} at line 12. +NOTICE: environ unaffected +-- clean up to simplify cross-version upgrade testing +DROP FUNCTION get_environ(); diff --git a/src/pl/plperl/plc_trusted.pl b/src/pl/plperl/plc_trusted.pl index 41b9b6a3530..cf7b4d9cea9 100644 --- a/src/pl/plperl/plc_trusted.pl +++ b/src/pl/plperl/plc_trusted.pl @@ -30,3 +30,27 @@ package PostgreSQL::InServer::safe; ## no critic (RequireFilenameMatchesPackage) require Carp::Heavy; require warnings; require feature if $] >= 5.010000; + +#<<< protect next line from perltidy so perlcritic annotation works +package PostgreSQL::InServer::WarnEnv; ## no critic (RequireFilenameMatchesPackage) +#>>> + +use strict; +use warnings; +use Tie::Hash; +our @ISA = qw(Tie::StdHash); + +sub STORE { warn "attempted alteration of \$ENV{$_[1]}"; } +sub DELETE { warn "attempted deletion of \$ENV{$_[1]}"; } +sub CLEAR { warn "attempted clearance of ENV hash"; } + +# Remove magic property of %ENV. Changes to this will now not be reflected in +# the process environment. +*main::ENV = {%ENV}; + +# Block %ENV changes from trusted PL/Perl, and warn. We changed %ENV to just a +# normal hash, yet the application may be expecting the usual Perl %ENV +# magic. Blocking and warning avoids silent application breakage. The user can +# untie or otherwise disable this, e.g. if the lost mutation is unimportant +# and modifying the code to stop that mutation would be onerous. +tie %main::ENV, 'PostgreSQL::InServer::WarnEnv', %ENV or die $!; diff --git a/src/pl/plperl/po/es.po b/src/pl/plperl/po/es.po index cdbbb6aa8f5..5b0070f5ddc 100644 --- a/src/pl/plperl/po/es.po +++ b/src/pl/plperl/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: plperl (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:44+0000\n" +"POT-Creation-Date: 2024-11-09 06:13+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/pl/plperl/po/fr.po b/src/pl/plperl/po/fr.po index fcb6d67fa05..ee51f02410d 100644 --- a/src/pl/plperl/po/fr.po +++ b/src/pl/plperl/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: plperl.c:408 msgid "If true, trusted and untrusted Perl code will be compiled in strict mode." @@ -242,23 +242,3 @@ msgstr "compilation de la fonction PL/Perl « %s »" #, c-format msgid "PL/Perl anonymous code block" msgstr "bloc de code PL/Perl anonyme" - -#~ msgid "PL/Perl function must return reference to hash or array" -#~ msgstr "la fonction PL/perl doit renvoyer la référence à un hachage ou à un tableau" - -#~ msgid "composite-returning PL/Perl function must return reference to hash" -#~ msgstr "" -#~ "la fonction PL/perl renvoyant des valeurs composites doit renvoyer la\n" -#~ "référence à un hachage" - -#~ msgid "creation of Perl function \"%s\" failed: %s" -#~ msgstr "échec de la création de la fonction Perl « %s » : %s" - -#~ msgid "error from Perl function \"%s\": %s" -#~ msgstr "échec dans la fonction Perl « %s » : %s" - -#~ msgid "out of memory" -#~ msgstr "mémoire épuisée" - -#~ msgid "while executing PLC_SAFE_OK" -#~ msgstr "lors de l'exécution de PLC_SAFE_OK" diff --git a/src/pl/plperl/po/ru.po b/src/pl/plperl/po/ru.po index 342c79c0fb9..48ede62533b 100644 --- a/src/pl/plperl/po/ru.po +++ b/src/pl/plperl/po/ru.po @@ -1,7 +1,7 @@ # Russian message translation file for plperl # Copyright (C) 2012-2016 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2012-2017, 2019, 2022. +# Alexander Lakhin , 2012-2017, 2019, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: plperl (PostgreSQL current)\n" diff --git a/src/pl/plperl/sql/plperl_env.sql b/src/pl/plperl/sql/plperl_env.sql new file mode 100644 index 00000000000..fa5f04146cc --- /dev/null +++ b/src/pl/plperl/sql/plperl_env.sql @@ -0,0 +1,61 @@ +-- +-- Test the environment setting +-- + +-- directory path and dlsuffix are passed to us in environment variables +\getenv libdir PG_LIBDIR +\getenv dlsuffix PG_DLSUFFIX + +\set regresslib :libdir '/regress' :dlsuffix + +CREATE FUNCTION get_environ() + RETURNS text[] + AS :'regresslib', 'get_environ' + LANGUAGE C STRICT; + +-- fetch the process environment + +CREATE FUNCTION process_env () RETURNS text[] +LANGUAGE plpgsql AS +$$ + +declare + res text[]; + tmp text[]; + f record; +begin + for f in select unnest(get_environ()) as t loop + tmp := regexp_split_to_array(f.t, '='); + if array_length(tmp, 1) = 2 then + res := res || tmp; + end if; + end loop; + return res; +end + +$$; + +-- plperl should not be able to affect the process environment + +DO +$$ + $ENV{TEST_PLPERL_ENV_FOO} = "shouldfail"; + untie %ENV; + $ENV{TEST_PLPERL_ENV_FOO} = "testval"; + my $penv = spi_exec_query("select unnest(process_env()) as pe"); + my %received; + for (my $f = 0; $f < $penv->{processed}; $f += 2) + { + my $k = $penv->{rows}[$f]->{pe}; + my $v = $penv->{rows}[$f+1]->{pe}; + $received{$k} = $v; + } + unless (exists $received{TEST_PLPERL_ENV_FOO}) + { + elog(NOTICE, "environ unaffected") + } + +$$ LANGUAGE plperl; + +-- clean up to simplify cross-version upgrade testing +DROP FUNCTION get_environ(); diff --git a/src/pl/plpgsql/src/expected/plpgsql_call.out b/src/pl/plpgsql/src/expected/plpgsql_call.out index 0a63b1d44ef..ea7107dca0d 100644 --- a/src/pl/plpgsql/src/expected/plpgsql_call.out +++ b/src/pl/plpgsql/src/expected/plpgsql_call.out @@ -597,6 +597,26 @@ NOTICE: f_get_x(1) NOTICE: f_print_x(1) NOTICE: f_get_x(2) NOTICE: f_print_x(2) +-- test in non-atomic context, except exception block is locally atomic +DO $$ +BEGIN + BEGIN + UPDATE t_test SET x = x + 1; + RAISE NOTICE 'f_get_x(%)', f_get_x(); + CALL f_print_x(f_get_x()); + UPDATE t_test SET x = x + 1; + RAISE NOTICE 'f_get_x(%)', f_get_x(); + CALL f_print_x(f_get_x()); + EXCEPTION WHEN division_by_zero THEN + RAISE NOTICE '%', SQLERRM; + END; + ROLLBACK; +END +$$; +NOTICE: f_get_x(1) +NOTICE: f_print_x(1) +NOTICE: f_get_x(2) +NOTICE: f_print_x(2) -- test in atomic context BEGIN; DO $$ diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index f6dca48efb6..a9eebc85c95 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -2276,8 +2276,8 @@ exec_stmt_call(PLpgSQL_execstate *estate, PLpgSQL_stmt_call *stmt) static PLpgSQL_variable * make_callstmt_target(PLpgSQL_execstate *estate, PLpgSQL_expr *expr) { - List *plansources; - CachedPlanSource *plansource; + CachedPlan *cplan; + PlannedStmt *pstmt; CallStmt *stmt; FuncExpr *funcexpr; HeapTuple func_tuple; @@ -2294,16 +2294,15 @@ make_callstmt_target(PLpgSQL_execstate *estate, PLpgSQL_expr *expr) oldcontext = MemoryContextSwitchTo(get_eval_mcontext(estate)); /* - * Get the parsed CallStmt, and look up the called procedure + * Get the parsed CallStmt, and look up the called procedure. We use + * SPI_plan_get_cached_plan to cover the edge case where expr->plan is + * already stale and needs to be updated. */ - plansources = SPI_plan_get_plan_sources(expr->plan); - if (list_length(plansources) != 1) - elog(ERROR, "query for CALL statement is not a CallStmt"); - plansource = (CachedPlanSource *) linitial(plansources); - if (list_length(plansource->query_list) != 1) + cplan = SPI_plan_get_cached_plan(expr->plan); + if (cplan == NULL || list_length(cplan->stmt_list) != 1) elog(ERROR, "query for CALL statement is not a CallStmt"); - stmt = (CallStmt *) linitial_node(Query, - plansource->query_list)->utilityStmt; + pstmt = linitial_node(PlannedStmt, cplan->stmt_list); + stmt = (CallStmt *) pstmt->utilityStmt; if (stmt == NULL || !IsA(stmt, CallStmt)) elog(ERROR, "query for CALL statement is not a CallStmt"); @@ -2383,6 +2382,8 @@ make_callstmt_target(PLpgSQL_execstate *estate, PLpgSQL_expr *expr) row->nfields = nfields; + ReleaseCachedPlan(cplan, CurrentResourceOwner); + MemoryContextSwitchTo(oldcontext); return (PLpgSQL_variable *) row; @@ -4259,8 +4260,9 @@ exec_stmt_execsql(PLpgSQL_execstate *estate, /* * We could look at the raw_parse_tree, but it seems simpler to * check the command tag. Note we should *not* look at the Query - * tree(s), since those are the result of rewriting and could have - * been transmogrified into something else entirely. + * tree(s), since those are the result of rewriting and could be + * stale, or could have been transmogrified into something else + * entirely. */ if (plansource->commandTag == CMDTAG_INSERT || plansource->commandTag == CMDTAG_UPDATE || diff --git a/src/pl/plpgsql/src/po/es.po b/src/pl/plpgsql/src/po/es.po index 373b9839de5..f33f365ef1d 100644 --- a/src/pl/plpgsql/src/po/es.po +++ b/src/pl/plpgsql/src/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: plpgsql (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:44+0000\n" +"POT-Creation-Date: 2024-11-09 06:14+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" @@ -78,8 +78,8 @@ msgstr "la referencia a la columna «%s» es ambigua" msgid "It could refer to either a PL/pgSQL variable or a table column." msgstr "Podría referirse tanto a una variable PL/pgSQL como a una columna de una tabla." -#: pl_comp.c:1324 pl_exec.c:5250 pl_exec.c:5423 pl_exec.c:5510 pl_exec.c:5601 -#: pl_exec.c:6629 +#: pl_comp.c:1324 pl_exec.c:5252 pl_exec.c:5425 pl_exec.c:5512 pl_exec.c:5603 +#: pl_exec.c:6631 #, c-format msgid "record \"%s\" has no field \"%s\"" msgstr "el registro «%s» no tiene un campo «%s»" @@ -104,7 +104,7 @@ msgstr "la variable «%s» tiene pseudotipo %s" msgid "type \"%s\" is only a shell" msgstr "el tipo «%s» está inconcluso" -#: pl_comp.c:2204 pl_exec.c:6930 +#: pl_comp.c:2204 pl_exec.c:6932 #, c-format msgid "type %s is not composite" msgstr "el tipo %s no es compuesto" @@ -140,12 +140,12 @@ msgstr "la ejecución alcanzó el fin de la función sin encontrar RETURN" msgid "while casting return value to function's return type" msgstr "mientras se hacía la conversión del valor de retorno al tipo de retorno de la función" -#: pl_exec.c:647 pl_exec.c:3676 +#: pl_exec.c:647 pl_exec.c:3677 #, c-format msgid "set-valued function called in context that cannot accept a set" msgstr "se llamó una función que retorna un conjunto en un contexto que no puede aceptarlo" -#: pl_exec.c:652 pl_exec.c:3682 +#: pl_exec.c:652 pl_exec.c:3683 #, c-format msgid "materialize mode required, but it is not allowed in this context" msgstr "se requiere un nodo «materialize», pero no está permitido en este contexto" @@ -154,7 +154,7 @@ msgstr "se requiere un nodo «materialize», pero no está permitido en este con msgid "during function exit" msgstr "durante la salida de la función" -#: pl_exec.c:834 pl_exec.c:898 pl_exec.c:3475 +#: pl_exec.c:834 pl_exec.c:898 pl_exec.c:3476 msgid "returned record type does not match expected record type" msgstr "el tipo de registro retornado no coincide con el tipo de registro esperado" @@ -215,304 +215,304 @@ msgstr "durante la salida del bloque de sentencias" msgid "during exception cleanup" msgstr "durante la finalización por excepción" -#: pl_exec.c:2371 +#: pl_exec.c:2370 #, c-format msgid "procedure parameter \"%s\" is an output parameter but corresponding argument is not writable" msgstr "el parámetro de procedimiento «%s» es un parámetro de salida pero el argumento correspondiente no es escribible" -#: pl_exec.c:2376 +#: pl_exec.c:2375 #, c-format msgid "procedure parameter %d is an output parameter but corresponding argument is not writable" msgstr "el parámetro de procedimiento %d es un parámetro de salida pero el argumento correspondiente no es escribible" -#: pl_exec.c:2410 +#: pl_exec.c:2411 #, c-format msgid "GET STACKED DIAGNOSTICS cannot be used outside an exception handler" msgstr "GET STACKED DIAGNOSTICS no puede ser usado fuera de un manejador de excepción" -#: pl_exec.c:2610 +#: pl_exec.c:2611 #, c-format msgid "case not found" msgstr "caso no encontrado" -#: pl_exec.c:2611 +#: pl_exec.c:2612 #, c-format msgid "CASE statement is missing ELSE part." msgstr "A la sentencia CASE le falta la parte ELSE." -#: pl_exec.c:2704 +#: pl_exec.c:2705 #, c-format msgid "lower bound of FOR loop cannot be null" msgstr "el límite inferior de un ciclo FOR no puede ser null" -#: pl_exec.c:2720 +#: pl_exec.c:2721 #, c-format msgid "upper bound of FOR loop cannot be null" msgstr "el límite superior de un ciclo FOR no puede ser null" -#: pl_exec.c:2738 +#: pl_exec.c:2739 #, c-format msgid "BY value of FOR loop cannot be null" msgstr "el valor BY de un ciclo FOR no puede ser null" -#: pl_exec.c:2744 +#: pl_exec.c:2745 #, c-format msgid "BY value of FOR loop must be greater than zero" msgstr "el valor BY de un ciclo FOR debe ser mayor que cero" -#: pl_exec.c:2878 pl_exec.c:4683 +#: pl_exec.c:2879 pl_exec.c:4685 #, c-format msgid "cursor \"%s\" already in use" msgstr "el cursor «%s» ya está en uso" -#: pl_exec.c:2901 pl_exec.c:4753 +#: pl_exec.c:2902 pl_exec.c:4755 #, c-format msgid "arguments given for cursor without arguments" msgstr "se dieron argumentos a un cursor sin argumentos" -#: pl_exec.c:2920 pl_exec.c:4772 +#: pl_exec.c:2921 pl_exec.c:4774 #, c-format msgid "arguments required for cursor" msgstr "se requieren argumentos para el cursor" -#: pl_exec.c:3011 +#: pl_exec.c:3012 #, c-format msgid "FOREACH expression must not be null" msgstr "la expresión FOREACH no debe ser nula" -#: pl_exec.c:3026 +#: pl_exec.c:3027 #, c-format msgid "FOREACH expression must yield an array, not type %s" msgstr "una expresión FOREACH debe retornar un array, no tipo %s" -#: pl_exec.c:3043 +#: pl_exec.c:3044 #, c-format msgid "slice dimension (%d) is out of the valid range 0..%d" msgstr "la dimensión del slice (%d) está fuera de rango 0..%d" -#: pl_exec.c:3070 +#: pl_exec.c:3071 #, c-format msgid "FOREACH ... SLICE loop variable must be of an array type" msgstr "las variables de bucles FOREACH ... SLICE deben ser de un tipo array" -#: pl_exec.c:3074 +#: pl_exec.c:3075 #, c-format msgid "FOREACH loop variable must not be of an array type" msgstr "la variable de bucle FOREACH no debe ser de tipo array" -#: pl_exec.c:3236 pl_exec.c:3293 pl_exec.c:3468 +#: pl_exec.c:3237 pl_exec.c:3294 pl_exec.c:3469 #, c-format msgid "cannot return non-composite value from function returning composite type" msgstr "no se puede retornar un valor no-compuesto desde una función que retorne tipos compuestos" -#: pl_exec.c:3332 pl_gram.y:3374 +#: pl_exec.c:3333 pl_gram.y:3374 #, c-format msgid "cannot use RETURN NEXT in a non-SETOF function" msgstr "no se puede usar RETURN NEXT en una función que no es SETOF" -#: pl_exec.c:3373 pl_exec.c:3505 +#: pl_exec.c:3374 pl_exec.c:3506 #, c-format msgid "wrong result type supplied in RETURN NEXT" msgstr "se pasó un tipo incorrecto de resultado a RETURN NEXT" -#: pl_exec.c:3411 pl_exec.c:3432 +#: pl_exec.c:3412 pl_exec.c:3433 #, c-format msgid "wrong record type supplied in RETURN NEXT" msgstr "se pasó un tipo de registro incorrecto a RETURN NEXT" -#: pl_exec.c:3524 +#: pl_exec.c:3525 #, c-format msgid "RETURN NEXT must have a parameter" msgstr "RETURN NEXT debe tener un parámetro" -#: pl_exec.c:3552 pl_gram.y:3438 +#: pl_exec.c:3553 pl_gram.y:3438 #, c-format msgid "cannot use RETURN QUERY in a non-SETOF function" msgstr "no se puede usar RETURN QUERY en una función que no ha sido declarada SETOF" -#: pl_exec.c:3570 +#: pl_exec.c:3571 msgid "structure of query does not match function result type" msgstr "la estructura de la consulta no coincide con el tipo del resultado de la función" -#: pl_exec.c:3625 pl_exec.c:4460 pl_exec.c:8752 +#: pl_exec.c:3626 pl_exec.c:4462 pl_exec.c:8754 #, c-format msgid "query string argument of EXECUTE is null" msgstr "el argumento de consulta a ejecutar en EXECUTE es null" -#: pl_exec.c:3710 pl_exec.c:3848 +#: pl_exec.c:3711 pl_exec.c:3849 #, c-format msgid "RAISE option already specified: %s" msgstr "la opción de RAISE ya se especificó: %s" -#: pl_exec.c:3744 +#: pl_exec.c:3745 #, c-format msgid "RAISE without parameters cannot be used outside an exception handler" msgstr "RAISE sin parámetros no puede ser usado fuera de un manejador de excepción" -#: pl_exec.c:3838 +#: pl_exec.c:3839 #, c-format msgid "RAISE statement option cannot be null" msgstr "la opción de sentencia en RAISE no puede ser null" -#: pl_exec.c:3908 +#: pl_exec.c:3909 #, c-format msgid "%s" msgstr "%s" -#: pl_exec.c:3963 +#: pl_exec.c:3964 #, c-format msgid "assertion failed" msgstr "aseveración falló" -#: pl_exec.c:4333 pl_exec.c:4522 +#: pl_exec.c:4335 pl_exec.c:4524 #, c-format msgid "cannot COPY to/from client in PL/pgSQL" msgstr "no se puede ejecutar COPY desde/a un cliente en PL/pgSQL" -#: pl_exec.c:4339 +#: pl_exec.c:4341 #, c-format msgid "unsupported transaction command in PL/pgSQL" msgstr "orden de transacción no soportada en PL/pgSQL" -#: pl_exec.c:4362 pl_exec.c:4551 +#: pl_exec.c:4364 pl_exec.c:4553 #, c-format msgid "INTO used with a command that cannot return data" msgstr "INTO es utilizado con una orden que no puede retornar datos" -#: pl_exec.c:4385 pl_exec.c:4574 +#: pl_exec.c:4387 pl_exec.c:4576 #, c-format msgid "query returned no rows" msgstr "la consulta no regresó filas" -#: pl_exec.c:4407 pl_exec.c:4593 pl_exec.c:5745 +#: pl_exec.c:4409 pl_exec.c:4595 pl_exec.c:5747 #, c-format msgid "query returned more than one row" msgstr "la consulta regresó más de una fila" -#: pl_exec.c:4409 +#: pl_exec.c:4411 #, c-format msgid "Make sure the query returns a single row, or use LIMIT 1." msgstr "Asegúrese que la consulta retorne una única fila, o use LIMIT 1." -#: pl_exec.c:4425 +#: pl_exec.c:4427 #, c-format msgid "query has no destination for result data" msgstr "la consulta no tiene un destino para los datos de resultado" -#: pl_exec.c:4426 +#: pl_exec.c:4428 #, c-format msgid "If you want to discard the results of a SELECT, use PERFORM instead." msgstr "Si quiere descartar los resultados de un SELECT, utilice PERFORM." -#: pl_exec.c:4514 +#: pl_exec.c:4516 #, c-format msgid "EXECUTE of SELECT ... INTO is not implemented" msgstr "no está implementado EXECUTE de un SELECT ... INTO" -#: pl_exec.c:4515 +#: pl_exec.c:4517 #, c-format msgid "You might want to use EXECUTE ... INTO or EXECUTE CREATE TABLE ... AS instead." msgstr "Puede desear usar EXECUTE ... INTO o EXECUTE CREATE TABLE ... AS en su lugar." -#: pl_exec.c:4528 +#: pl_exec.c:4530 #, c-format msgid "EXECUTE of transaction commands is not implemented" msgstr "no está implementado EXECUTE de órdenes de transacción" -#: pl_exec.c:4838 pl_exec.c:4926 +#: pl_exec.c:4840 pl_exec.c:4928 #, c-format msgid "cursor variable \"%s\" is null" msgstr "variable cursor «%s» es null" -#: pl_exec.c:4849 pl_exec.c:4937 +#: pl_exec.c:4851 pl_exec.c:4939 #, c-format msgid "cursor \"%s\" does not exist" msgstr "no existe el cursor «%s»" -#: pl_exec.c:4862 +#: pl_exec.c:4864 #, c-format msgid "relative or absolute cursor position is null" msgstr "la posición relativa o absoluta del cursor es null" -#: pl_exec.c:5100 pl_exec.c:5195 +#: pl_exec.c:5102 pl_exec.c:5197 #, c-format msgid "null value cannot be assigned to variable \"%s\" declared NOT NULL" msgstr "no puede asignarse un valor null a la variable «%s» que fue declarada NOT NULL" -#: pl_exec.c:5176 +#: pl_exec.c:5178 #, c-format msgid "cannot assign non-composite value to a row variable" msgstr "no se puede asignar un valor no compuesto a una variable de tipo row" -#: pl_exec.c:5208 +#: pl_exec.c:5210 #, c-format msgid "cannot assign non-composite value to a record variable" msgstr "no se puede asignar un valor no compuesto a una variable de tipo record" -#: pl_exec.c:5259 +#: pl_exec.c:5261 #, c-format msgid "cannot assign to system column \"%s\"" msgstr "no se puede asignar a la columna de sistema «%s»" -#: pl_exec.c:5708 +#: pl_exec.c:5710 #, c-format msgid "query did not return data" msgstr "la consulta no retornó datos" -#: pl_exec.c:5709 pl_exec.c:5721 pl_exec.c:5746 pl_exec.c:5822 pl_exec.c:5827 +#: pl_exec.c:5711 pl_exec.c:5723 pl_exec.c:5748 pl_exec.c:5824 pl_exec.c:5829 #, c-format msgid "query: %s" msgstr "consulta: %s" -#: pl_exec.c:5717 +#: pl_exec.c:5719 #, c-format msgid "query returned %d column" msgid_plural "query returned %d columns" msgstr[0] "la consulta retornó %d columna" msgstr[1] "la consulta retornó %d columnas" -#: pl_exec.c:5821 +#: pl_exec.c:5823 #, c-format msgid "query is SELECT INTO, but it should be plain SELECT" msgstr "la consulta es SELECT INTO, pero debería ser un SELECT simple" -#: pl_exec.c:5826 +#: pl_exec.c:5828 #, c-format msgid "query is not a SELECT" msgstr "la consulta no es un SELECT" -#: pl_exec.c:6643 pl_exec.c:6683 pl_exec.c:6723 +#: pl_exec.c:6645 pl_exec.c:6685 pl_exec.c:6725 #, c-format msgid "type of parameter %d (%s) does not match that when preparing the plan (%s)" msgstr "el tipo del parámetro %d (%s) no coincide aquel con que fue preparado el plan (%s)" -#: pl_exec.c:7134 pl_exec.c:7168 pl_exec.c:7242 pl_exec.c:7268 +#: pl_exec.c:7136 pl_exec.c:7170 pl_exec.c:7244 pl_exec.c:7270 #, c-format msgid "number of source and target fields in assignment does not match" msgstr "no coincide el número de campos de origen y destino en la asignación" #. translator: %s represents a name of an extra check -#: pl_exec.c:7136 pl_exec.c:7170 pl_exec.c:7244 pl_exec.c:7270 +#: pl_exec.c:7138 pl_exec.c:7172 pl_exec.c:7246 pl_exec.c:7272 #, c-format msgid "%s check of %s is active." msgstr "El chequeo %s de %s está activo." -#: pl_exec.c:7140 pl_exec.c:7174 pl_exec.c:7248 pl_exec.c:7274 +#: pl_exec.c:7142 pl_exec.c:7176 pl_exec.c:7250 pl_exec.c:7276 #, c-format msgid "Make sure the query returns the exact list of columns." msgstr "Asegúrese que la consulta retorna la lista exacta de columnas." -#: pl_exec.c:7661 +#: pl_exec.c:7663 #, c-format msgid "record \"%s\" is not assigned yet" msgstr "el registro «%s» no ha sido asignado aún" -#: pl_exec.c:7662 +#: pl_exec.c:7664 #, c-format msgid "The tuple structure of a not-yet-assigned record is indeterminate." msgstr "La estructura de fila de un registro aún no asignado no está determinado." -#: pl_exec.c:8350 pl_gram.y:3497 +#: pl_exec.c:8352 pl_gram.y:3497 #, c-format msgid "variable \"%s\" is declared CONSTANT" msgstr "la variable «%s» esta declarada como CONSTANT" diff --git a/src/pl/plpgsql/src/po/fr.po b/src/pl/plpgsql/src/po/fr.po index 19676ff681c..98942a2eb91 100644 --- a/src/pl/plpgsql/src/po/fr.po +++ b/src/pl/plpgsql/src/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2022-04-12 05:16+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: pl_comp.c:438 pl_handler.c:496 #, c-format @@ -69,7 +69,7 @@ msgstr "le nom du paramètre « %s » est utilisé plus d'une fois" #: pl_comp.c:1139 #, c-format msgid "column reference \"%s\" is ambiguous" -msgstr "la référence à la colonne « %s » est ambigüe" +msgstr "la référence à la colonne « %s » est ambiguë" #: pl_comp.c:1141 #, c-format @@ -411,7 +411,7 @@ msgstr "Si vous voulez ignorer le résultat d'un SELECT, utilisez PERFORM à la #: pl_exec.c:4489 #, c-format msgid "EXECUTE of SELECT ... INTO is not implemented" -msgstr "EXECUTE n'est pas implementé pour SELECT ... INTO" +msgstr "EXECUTE n'est pas implémenté pour SELECT ... INTO" #: pl_exec.c:4490 #, c-format @@ -857,148 +857,3 @@ msgstr "%s à la fin de l'entrée" #, c-format msgid "%s at or near \"%s\"" msgstr "%s sur ou près de « %s »" - -#~ msgid "EXECUTE statement" -#~ msgstr "instruction EXECUTE" - -#~ msgid "Expected \"FOR\", to open a cursor for an unbound cursor variable." -#~ msgstr "Attendait « FOR » pour ouvrir un curseur pour une variable sans limite." - -#~ msgid "Expected record variable, row variable, or list of scalar variables following INTO." -#~ msgstr "" -#~ "Attendait une variable RECORD, ROW ou une liste de variables scalaires\n" -#~ "suivant INTO." - -#~ msgid "N/A (dropped column)" -#~ msgstr "N/A (colonne supprimée)" - -#~ msgid "Number of returned columns (%d) does not match expected column count (%d)." -#~ msgstr "" -#~ "Le nombre de colonnes renvoyées (%d) ne correspond pas au nombre de colonnes\n" -#~ "attendues (%d)." - -#~ msgid "RETURN NEXT must specify a record or row variable in function returning row" -#~ msgstr "" -#~ "RETURN NEXT doit indiquer une variable RECORD ou ROW dans une fonction\n" -#~ "renvoyant une ligne" - -#~ msgid "RETURN cannot have a parameter in function returning set; use RETURN NEXT or RETURN QUERY" -#~ msgstr "" -#~ "RETURN ne peut pas avoir un paramètre dans une fonction renvoyant des\n" -#~ "lignes ; utilisez RETURN NEXT ou RETURN QUERY" - -#~ msgid "RETURN must specify a record or row variable in function returning row" -#~ msgstr "" -#~ "RETURN ne peut pas indiquer une variable RECORD ou ROW dans une fonction\n" -#~ "renvoyant une ligne" - -#~ msgid "Returned type %s does not match expected type %s in column \"%s\"." -#~ msgstr "Le type %s renvoyé ne correspond pas au type %s attendu dans la colonne « %s »." - -#~ msgid "SQL statement in PL/PgSQL function \"%s\" near line %d" -#~ msgstr "instruction SQL dans la fonction PL/pgsql « %s » près de la ligne %d" - -#~ msgid "Use a BEGIN block with an EXCEPTION clause instead." -#~ msgstr "Utiliser un bloc BEGIN dans une clause EXCEPTION à la place." - -#~ msgid "array subscript in assignment must not be null" -#~ msgstr "un indice de tableau dans une affectation ne peut pas être NULL" - -#~ msgid "cannot assign to tg_argv" -#~ msgstr "ne peut pas affecter à tg_argv" - -#~ msgid "cursor \"%s\" closed unexpectedly" -#~ msgstr "le curseur « %s » a été fermé de façon inattendu" - -#~ msgid "default value for row or record variable is not supported" -#~ msgstr "la valeur par défaut de variable ROW ou RECORD n'est pas supportée" - -#~ msgid "expected \")\"" -#~ msgstr "« ) » attendu" - -#~ msgid "expected \"[\"" -#~ msgstr "« [ » attendu" - -#~ msgid "expected a cursor or refcursor variable" -#~ msgstr "attendait une variable de type cursor ou refcursor" - -#~ msgid "expected an integer variable" -#~ msgstr "attend une variable entière" - -#~ msgid "function has no parameter \"%s\"" -#~ msgstr "la fonction n'a pas de paramètre « %s »" - -#~ msgid "label does not exist" -#~ msgstr "le label n'existe pas" - -#~ msgid "number of array dimensions (%d) exceeds the maximum allowed (%d)" -#~ msgstr "le nombre de dimensions du tableau (%d) dépasse la maximum autorisé (%d)" - -#~ msgid "only positional parameters can be aliased" -#~ msgstr "seuls les paramètres de position peuvent avoir un alias" - -#~ msgid "qualified identifier cannot be used here: %s" -#~ msgstr "l'identifiant qualifié ne peut pas être utilisé ici : %s" - -#~ msgid "query \"%s\" returned more than one row" -#~ msgstr "la requête « %s » a renvoyé plus d'une ligne" - -#~ msgid "relation \"%s\" is not a table" -#~ msgstr "la relation « %s » n'est pas une table" - -#~ msgid "relation \"%s.%s\" does not exist" -#~ msgstr "la relation « %s.%s » n'existe pas" - -#~ msgid "row \"%s\" has no field \"%s\"" -#~ msgstr "la ligne « %s » n'a aucun champ « %s »" - -#~ msgid "row \"%s.%s\" has no field \"%s\"" -#~ msgstr "la ligne « %s.%s » n'a aucun champ « %s »" - -#~ msgid "row or record variable cannot be CONSTANT" -#~ msgstr "la variable ROW ou RECORD ne peut pas être CONSTANT" - -#~ msgid "row or record variable cannot be NOT NULL" -#~ msgstr "la variable ROW ou RECORD ne peut pas être NOT NULL" - -#~ msgid "string literal in PL/PgSQL function \"%s\" near line %d" -#~ msgstr "chaîne littérale dans la fonction PL/pgsql « %s » près de la ligne %d" - -#~ msgid "subscripted object is not an array" -#~ msgstr "l'objet souscrit n'est pas un tableau" - -#~ msgid "syntax error at \"%s\"" -#~ msgstr "erreur de syntaxe à « %s »" - -#~ msgid "too many variables specified in SQL statement" -#~ msgstr "trop de variables spécifiées dans l'instruction SQL" - -#~ msgid "type of \"%s\" does not match that when preparing the plan" -#~ msgstr "le type de « %s » ne correspond pas à ce qui est préparé dans le plan" - -#~ msgid "type of \"%s.%s\" does not match that when preparing the plan" -#~ msgstr "le type de « %s.%s » ne correspond pas à ce qui est préparé dans le plan" - -#~ msgid "type of tg_argv[%d] does not match that when preparing the plan" -#~ msgstr "le type de tg_argv[%d] ne correspond pas à ce qui est préparé dans le plan" - -#~ msgid "unterminated \" in identifier: %s" -#~ msgstr "\" non terminé dans l'identifiant : %s" - -#~ msgid "unterminated /* comment" -#~ msgstr "commentaire /* non terminé" - -#~ msgid "unterminated dollar-quoted string" -#~ msgstr "chaîne entre dollars non terminée" - -#~ msgid "unterminated quoted identifier" -#~ msgstr "identifiant entre guillemets non terminé" - -#~ msgid "unterminated quoted string" -#~ msgstr "chaîne entre guillemets non terminée" - -#~ msgid "variable \"%s\" declared NOT NULL cannot default to NULL" -#~ msgstr "la variable « %s » déclarée NOT NULL ne peut pas valoir NULL par défaut" - -#~ msgid "variable \"%s\" does not exist in the current block" -#~ msgstr "la variable « %s » n'existe pas dans le bloc actuel" diff --git a/src/pl/plpgsql/src/po/ru.po b/src/pl/plpgsql/src/po/ru.po index 715fdf64047..bc7e332cdf7 100644 --- a/src/pl/plpgsql/src/po/ru.po +++ b/src/pl/plpgsql/src/po/ru.po @@ -1,12 +1,12 @@ # Russian message translation file for plpgsql # Copyright (C) 2012-2016 PostgreSQL Global Development Group # This file is distributed under the same license as the PostgreSQL package. -# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022. +# Alexander Lakhin , 2012-2017, 2018, 2019, 2020, 2021, 2022, 2024. msgid "" msgstr "" "Project-Id-Version: plpgsql (PostgreSQL current)\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-01 12:51+0300\n" +"POT-Creation-Date: 2024-09-07 17:27+0300\n" "PO-Revision-Date: 2022-09-05 13:38+0300\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" @@ -78,8 +78,8 @@ msgstr "неоднозначная ссылка на столбец \"%s\"" msgid "It could refer to either a PL/pgSQL variable or a table column." msgstr "Подразумевается ссылка на переменную PL/pgSQL или столбец таблицы." -#: pl_comp.c:1324 pl_exec.c:5250 pl_exec.c:5423 pl_exec.c:5510 pl_exec.c:5601 -#: pl_exec.c:6629 +#: pl_comp.c:1324 pl_exec.c:5252 pl_exec.c:5425 pl_exec.c:5512 pl_exec.c:5603 +#: pl_exec.c:6631 #, c-format msgid "record \"%s\" has no field \"%s\"" msgstr "в записи \"%s\" нет поля \"%s\"" @@ -104,7 +104,7 @@ msgstr "переменная \"%s\" имеет псевдотип %s" msgid "type \"%s\" is only a shell" msgstr "тип \"%s\" является пустышкой" -#: pl_comp.c:2204 pl_exec.c:6930 +#: pl_comp.c:2204 pl_exec.c:6932 #, c-format msgid "type %s is not composite" msgstr "тип %s не является составным" @@ -143,13 +143,13 @@ msgstr "конец функции достигнут без RETURN" msgid "while casting return value to function's return type" msgstr "при приведении возвращаемого значения к типу результата функции" -#: pl_exec.c:647 pl_exec.c:3676 +#: pl_exec.c:647 pl_exec.c:3677 #, c-format msgid "set-valued function called in context that cannot accept a set" msgstr "" "функция, возвращающая множество, вызвана в контексте, где ему нет места" -#: pl_exec.c:652 pl_exec.c:3682 +#: pl_exec.c:652 pl_exec.c:3683 #, c-format msgid "materialize mode required, but it is not allowed in this context" msgstr "требуется режим материализации, но он недопустим в этом контексте" @@ -158,7 +158,7 @@ msgstr "требуется режим материализации, но он н msgid "during function exit" msgstr "при выходе из функции" -#: pl_exec.c:834 pl_exec.c:898 pl_exec.c:3475 +#: pl_exec.c:834 pl_exec.c:898 pl_exec.c:3476 msgid "returned record type does not match expected record type" msgstr "возвращаемый тип записи не соответствует ожидаемому" @@ -222,7 +222,7 @@ msgstr "при выходе из блока операторов" msgid "during exception cleanup" msgstr "при очистке после исключения" -#: pl_exec.c:2371 +#: pl_exec.c:2370 #, c-format msgid "" "procedure parameter \"%s\" is an output parameter but corresponding argument " @@ -231,7 +231,7 @@ msgstr "" "параметр процедуры \"%s\" является выходным, но соответствующий аргумент не " "допускает запись" -#: pl_exec.c:2376 +#: pl_exec.c:2375 #, c-format msgid "" "procedure parameter %d is an output parameter but corresponding argument is " @@ -240,199 +240,199 @@ msgstr "" "параметр процедуры %d является выходным, но соответствующий аргумент не " "допускает запись" -#: pl_exec.c:2410 +#: pl_exec.c:2411 #, c-format msgid "GET STACKED DIAGNOSTICS cannot be used outside an exception handler" msgstr "" "GET STACKED DIAGNOSTICS нельзя использовать вне блока обработчика исключения" -#: pl_exec.c:2610 +#: pl_exec.c:2611 #, c-format msgid "case not found" msgstr "неправильный CASE" -#: pl_exec.c:2611 +#: pl_exec.c:2612 #, c-format msgid "CASE statement is missing ELSE part." msgstr "В операторе CASE не хватает части ELSE." -#: pl_exec.c:2704 +#: pl_exec.c:2705 #, c-format msgid "lower bound of FOR loop cannot be null" msgstr "нижняя граница цикла FOR не может быть равна NULL" -#: pl_exec.c:2720 +#: pl_exec.c:2721 #, c-format msgid "upper bound of FOR loop cannot be null" msgstr "верхняя граница цикла FOR не может быть равна NULL" -#: pl_exec.c:2738 +#: pl_exec.c:2739 #, c-format msgid "BY value of FOR loop cannot be null" msgstr "значение BY в цикле FOR не может быть равно NULL" -#: pl_exec.c:2744 +#: pl_exec.c:2745 #, c-format msgid "BY value of FOR loop must be greater than zero" msgstr "значение BY в цикле FOR должно быть больше нуля" -#: pl_exec.c:2878 pl_exec.c:4683 +#: pl_exec.c:2879 pl_exec.c:4685 #, c-format msgid "cursor \"%s\" already in use" msgstr "курсор \"%s\" уже используется" -#: pl_exec.c:2901 pl_exec.c:4753 +#: pl_exec.c:2902 pl_exec.c:4755 #, c-format msgid "arguments given for cursor without arguments" msgstr "курсору без аргументов были переданы аргументы" -#: pl_exec.c:2920 pl_exec.c:4772 +#: pl_exec.c:2921 pl_exec.c:4774 #, c-format msgid "arguments required for cursor" msgstr "курсору требуются аргументы" -#: pl_exec.c:3011 +#: pl_exec.c:3012 #, c-format msgid "FOREACH expression must not be null" msgstr "выражение FOREACH не может быть равно NULL" -#: pl_exec.c:3026 +#: pl_exec.c:3027 #, c-format msgid "FOREACH expression must yield an array, not type %s" msgstr "выражение в FOREACH должно быть массивом, но не типом %s" -#: pl_exec.c:3043 +#: pl_exec.c:3044 #, c-format msgid "slice dimension (%d) is out of the valid range 0..%d" msgstr "размерность среза (%d) вне допустимого диапазона 0..%d" -#: pl_exec.c:3070 +#: pl_exec.c:3071 #, c-format msgid "FOREACH ... SLICE loop variable must be of an array type" msgstr "переменная цикла FOREACH ... SLICE должна быть массивом" -#: pl_exec.c:3074 +#: pl_exec.c:3075 #, c-format msgid "FOREACH loop variable must not be of an array type" msgstr "переменная цикла FOREACH не должна быть массивом" -#: pl_exec.c:3236 pl_exec.c:3293 pl_exec.c:3468 +#: pl_exec.c:3237 pl_exec.c:3294 pl_exec.c:3469 #, c-format msgid "" "cannot return non-composite value from function returning composite type" msgstr "" "функция, возвращающая составной тип, не может вернуть несоставное значение" -#: pl_exec.c:3332 pl_gram.y:3374 +#: pl_exec.c:3333 pl_gram.y:3374 #, c-format msgid "cannot use RETURN NEXT in a non-SETOF function" msgstr "" "RETURN NEXT можно использовать только в функциях, возвращающих множества" -#: pl_exec.c:3373 pl_exec.c:3505 +#: pl_exec.c:3374 pl_exec.c:3506 #, c-format msgid "wrong result type supplied in RETURN NEXT" msgstr "в RETURN NEXT передан неправильный тип результата" -#: pl_exec.c:3411 pl_exec.c:3432 +#: pl_exec.c:3412 pl_exec.c:3433 #, c-format msgid "wrong record type supplied in RETURN NEXT" msgstr "в RETURN NEXT передан неправильный тип записи" -#: pl_exec.c:3524 +#: pl_exec.c:3525 #, c-format msgid "RETURN NEXT must have a parameter" msgstr "у оператора RETURN NEXT должен быть параметр" -#: pl_exec.c:3552 pl_gram.y:3438 +#: pl_exec.c:3553 pl_gram.y:3438 #, c-format msgid "cannot use RETURN QUERY in a non-SETOF function" msgstr "" "RETURN QUERY можно использовать только в функциях, возвращающих множества" -#: pl_exec.c:3570 +#: pl_exec.c:3571 msgid "structure of query does not match function result type" msgstr "структура запроса не соответствует типу результата функции" -#: pl_exec.c:3625 pl_exec.c:4460 pl_exec.c:8752 +#: pl_exec.c:3626 pl_exec.c:4462 pl_exec.c:8754 #, c-format msgid "query string argument of EXECUTE is null" msgstr "в качестве текста запроса в EXECUTE передан NULL" -#: pl_exec.c:3710 pl_exec.c:3848 +#: pl_exec.c:3711 pl_exec.c:3849 #, c-format msgid "RAISE option already specified: %s" msgstr "этот параметр RAISE уже указан: %s" -#: pl_exec.c:3744 +#: pl_exec.c:3745 #, c-format msgid "RAISE without parameters cannot be used outside an exception handler" msgstr "" "RAISE без параметров нельзя использовать вне блока обработчика исключения" -#: pl_exec.c:3838 +#: pl_exec.c:3839 #, c-format msgid "RAISE statement option cannot be null" msgstr "параметром оператора RAISE не может быть NULL" -#: pl_exec.c:3908 +#: pl_exec.c:3909 #, c-format msgid "%s" msgstr "%s" -#: pl_exec.c:3963 +#: pl_exec.c:3964 #, c-format msgid "assertion failed" msgstr "нарушение истинности" -#: pl_exec.c:4333 pl_exec.c:4522 +#: pl_exec.c:4335 pl_exec.c:4524 #, c-format msgid "cannot COPY to/from client in PL/pgSQL" msgstr "в PL/pgSQL нельзя выполнить COPY с участием клиента" -#: pl_exec.c:4339 +#: pl_exec.c:4341 #, c-format msgid "unsupported transaction command in PL/pgSQL" msgstr "неподдерживаемая транзакционная команда в PL/pgSQL" -#: pl_exec.c:4362 pl_exec.c:4551 +#: pl_exec.c:4364 pl_exec.c:4553 #, c-format msgid "INTO used with a command that cannot return data" msgstr "INTO с командой не может возвращать данные" -#: pl_exec.c:4385 pl_exec.c:4574 +#: pl_exec.c:4387 pl_exec.c:4576 #, c-format msgid "query returned no rows" msgstr "запрос не вернул строк" -#: pl_exec.c:4407 pl_exec.c:4593 pl_exec.c:5745 +#: pl_exec.c:4409 pl_exec.c:4595 pl_exec.c:5747 #, c-format msgid "query returned more than one row" msgstr "запрос вернул несколько строк" -#: pl_exec.c:4409 +#: pl_exec.c:4411 #, c-format msgid "Make sure the query returns a single row, or use LIMIT 1." msgstr "" "Измените запрос, чтобы он выбирал одну строку, или используйте LIMIT 1." -#: pl_exec.c:4425 +#: pl_exec.c:4427 #, c-format msgid "query has no destination for result data" msgstr "в запросе нет назначения для данных результата" -#: pl_exec.c:4426 +#: pl_exec.c:4428 #, c-format msgid "If you want to discard the results of a SELECT, use PERFORM instead." msgstr "Если вам нужно отбросить результаты SELECT, используйте PERFORM." -#: pl_exec.c:4514 +#: pl_exec.c:4516 #, c-format msgid "EXECUTE of SELECT ... INTO is not implemented" msgstr "возможность выполнения SELECT ... INTO в EXECUTE не реализована" # skip-rule: space-before-ellipsis -#: pl_exec.c:4515 +#: pl_exec.c:4517 #, c-format msgid "" "You might want to use EXECUTE ... INTO or EXECUTE CREATE TABLE ... AS " @@ -441,57 +441,57 @@ msgstr "" "Альтернативой может стать EXECUTE ... INTO или EXECUTE CREATE TABLE ... " "AS ..." -#: pl_exec.c:4528 +#: pl_exec.c:4530 #, c-format msgid "EXECUTE of transaction commands is not implemented" msgstr "EXECUTE с транзакционными командами не поддерживается" -#: pl_exec.c:4838 pl_exec.c:4926 +#: pl_exec.c:4840 pl_exec.c:4928 #, c-format msgid "cursor variable \"%s\" is null" msgstr "переменная курсора \"%s\" равна NULL" -#: pl_exec.c:4849 pl_exec.c:4937 +#: pl_exec.c:4851 pl_exec.c:4939 #, c-format msgid "cursor \"%s\" does not exist" msgstr "курсор \"%s\" не существует" -#: pl_exec.c:4862 +#: pl_exec.c:4864 #, c-format msgid "relative or absolute cursor position is null" msgstr "относительная или абсолютная позиция курсора равна NULL" -#: pl_exec.c:5100 pl_exec.c:5195 +#: pl_exec.c:5102 pl_exec.c:5197 #, c-format msgid "null value cannot be assigned to variable \"%s\" declared NOT NULL" msgstr "значение NULL нельзя присвоить переменной \"%s\", объявленной NOT NULL" -#: pl_exec.c:5176 +#: pl_exec.c:5178 #, c-format msgid "cannot assign non-composite value to a row variable" msgstr "переменной типа кортеж можно присвоить только составное значение" -#: pl_exec.c:5208 +#: pl_exec.c:5210 #, c-format msgid "cannot assign non-composite value to a record variable" msgstr "переменной типа запись можно присвоить только составное значение" -#: pl_exec.c:5259 +#: pl_exec.c:5261 #, c-format msgid "cannot assign to system column \"%s\"" msgstr "присвоить значение системному столбцу \"%s\" нельзя" -#: pl_exec.c:5708 +#: pl_exec.c:5710 #, c-format msgid "query did not return data" msgstr "запрос не вернул данные" -#: pl_exec.c:5709 pl_exec.c:5721 pl_exec.c:5746 pl_exec.c:5822 pl_exec.c:5827 +#: pl_exec.c:5711 pl_exec.c:5723 pl_exec.c:5748 pl_exec.c:5824 pl_exec.c:5829 #, c-format msgid "query: %s" msgstr "запрос: %s" -#: pl_exec.c:5717 +#: pl_exec.c:5719 #, c-format msgid "query returned %d column" msgid_plural "query returned %d columns" @@ -499,17 +499,17 @@ msgstr[0] "запрос вернул %d столбец" msgstr[1] "запрос вернул %d столбца" msgstr[2] "запрос вернул %d столбцов" -#: pl_exec.c:5821 +#: pl_exec.c:5823 #, c-format msgid "query is SELECT INTO, but it should be plain SELECT" msgstr "запрос - не просто SELECT, а SELECT INTO" -#: pl_exec.c:5826 +#: pl_exec.c:5828 #, c-format msgid "query is not a SELECT" msgstr "запрос - не SELECT" -#: pl_exec.c:6643 pl_exec.c:6683 pl_exec.c:6723 +#: pl_exec.c:6645 pl_exec.c:6685 pl_exec.c:6725 #, c-format msgid "" "type of parameter %d (%s) does not match that when preparing the plan (%s)" @@ -517,35 +517,35 @@ msgstr "" "тип параметра %d (%s) не соответствует тому, с которым подготавливался план " "(%s)" -#: pl_exec.c:7134 pl_exec.c:7168 pl_exec.c:7242 pl_exec.c:7268 +#: pl_exec.c:7136 pl_exec.c:7170 pl_exec.c:7244 pl_exec.c:7270 #, c-format msgid "number of source and target fields in assignment does not match" msgstr "в левой и правой части присваивания разное количество полей" #. translator: %s represents a name of an extra check -#: pl_exec.c:7136 pl_exec.c:7170 pl_exec.c:7244 pl_exec.c:7270 +#: pl_exec.c:7138 pl_exec.c:7172 pl_exec.c:7246 pl_exec.c:7272 #, c-format msgid "%s check of %s is active." msgstr "Включена проверка %s (с %s)." -#: pl_exec.c:7140 pl_exec.c:7174 pl_exec.c:7248 pl_exec.c:7274 +#: pl_exec.c:7142 pl_exec.c:7176 pl_exec.c:7250 pl_exec.c:7276 #, c-format msgid "Make sure the query returns the exact list of columns." msgstr "" "Измените запрос, чтобы он возвращал в точности требуемый список столбцов." -#: pl_exec.c:7661 +#: pl_exec.c:7663 #, c-format msgid "record \"%s\" is not assigned yet" msgstr "записи \"%s\" не присвоено значение" -#: pl_exec.c:7662 +#: pl_exec.c:7664 #, c-format msgid "The tuple structure of a not-yet-assigned record is indeterminate." msgstr "" "Для записи, которой не присвоено значение, структура кортежа не определена." -#: pl_exec.c:8350 pl_gram.y:3497 +#: pl_exec.c:8352 pl_gram.y:3497 #, c-format msgid "variable \"%s\" is declared CONSTANT" msgstr "переменная \"%s\" объявлена как CONSTANT" diff --git a/src/pl/plpgsql/src/sql/plpgsql_call.sql b/src/pl/plpgsql/src/sql/plpgsql_call.sql index 4cbda0382e9..08c1659ef15 100644 --- a/src/pl/plpgsql/src/sql/plpgsql_call.sql +++ b/src/pl/plpgsql/src/sql/plpgsql_call.sql @@ -557,6 +557,23 @@ BEGIN END $$; +-- test in non-atomic context, except exception block is locally atomic +DO $$ +BEGIN + BEGIN + UPDATE t_test SET x = x + 1; + RAISE NOTICE 'f_get_x(%)', f_get_x(); + CALL f_print_x(f_get_x()); + UPDATE t_test SET x = x + 1; + RAISE NOTICE 'f_get_x(%)', f_get_x(); + CALL f_print_x(f_get_x()); + EXCEPTION WHEN division_by_zero THEN + RAISE NOTICE '%', SQLERRM; + END; + ROLLBACK; +END +$$; + -- test in atomic context BEGIN; diff --git a/src/pl/plpython/po/es.po b/src/pl/plpython/po/es.po index cf2e6d8d139..910841b1fc5 100644 --- a/src/pl/plpython/po/es.po +++ b/src/pl/plpython/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: plpython (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:44+0000\n" +"POT-Creation-Date: 2024-11-09 06:13+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/pl/plpython/po/fr.po b/src/pl/plpython/po/fr.po index b002f9b9f99..d576ab8ebdf 100644 --- a/src/pl/plpython/po/fr.po +++ b/src/pl/plpython/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2023-05-05 17:08+0000\n" -"PO-Revision-Date: 2022-04-12 17:29+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.5\n" #: plpy_cursorobject.c:72 #, c-format @@ -390,7 +390,7 @@ msgstr "n'a pas pu créer une représentation chaîne de caractères de l'objet #: plpy_typeio.c:1060 #, c-format msgid "could not convert Python object into cstring: Python string representation appears to contain null bytes" -msgstr "n'a pas pu convertir l'objet Python en csting : la représentation de la chaîne Python contient des octets nuls" +msgstr "n'a pas pu convertir l'objet Python en cstring : la représentation de la chaîne Python contient des octets nuls" #: plpy_typeio.c:1157 #, c-format @@ -417,7 +417,7 @@ msgstr "le nombre de dimensions du tableau dépasse le maximum autorisé (%d)" #: plpy_typeio.c:1329 #, c-format msgid "malformed record literal: \"%s\"" -msgstr "enregistrement litéral invalide : « %s »" +msgstr "enregistrement littéral invalide : « %s »" #: plpy_typeio.c:1330 #, c-format @@ -469,122 +469,3 @@ msgstr "n'a pas pu convertir l'objet Unicode Python en octets" #, c-format msgid "could not extract bytes from encoded string" msgstr "n'a pas pu extraire les octets de la chaîne encodée" - -#~ msgid "PL/Python does not support conversion to arrays of row types." -#~ msgstr "PL/Python ne supporte pas les conversions vers des tableaux de types row." - -#~ msgid "PL/Python function \"%s\" could not execute plan" -#~ msgstr "la fonction PL/python « %s » n'a pas pu exécuter un plan" - -#~ msgid "PL/Python function \"%s\" failed" -#~ msgstr "échec de la fonction PL/python « %s »" - -#~ msgid "PL/Python only supports one-dimensional arrays." -#~ msgstr "PL/Python supporte seulement les tableaux uni-dimensionnels." - -#~ msgid "PL/Python: %s" -#~ msgstr "PL/python : %s" - -#~ msgid "PyCObject_AsVoidPtr() failed" -#~ msgstr "échec de PyCObject_AsVoidPtr()" - -#~ msgid "PyCObject_FromVoidPtr() failed" -#~ msgstr "échec de PyCObject_FromVoidPtr()" - -#~ msgid "Python major version mismatch in session" -#~ msgstr "Différence de version majeure de Python dans la session" - -#~ msgid "Start a new session to use a different Python major version." -#~ msgstr "" -#~ "Lancez une nouvelle session pour utiliser une version majeure différente de\n" -#~ "Python." - -#~ msgid "This session has previously used Python major version %d, and it is now attempting to use Python major version %d." -#~ msgstr "" -#~ "Cette session a auparavant utilisé la version majeure %d de Python et elle\n" -#~ "essaie maintenant d'utiliser la version majeure %d." - -#, c-format -#~ msgid "To construct a multidimensional array, the inner sequences must all have the same length." -#~ msgstr "Pour construire un tableau multidimensionnel, les séquences internes doivent toutes avoir la même longueur." - -#, c-format -#~ msgid "array size exceeds the maximum allowed" -#~ msgstr "la taille du tableau dépasse le maximum permis" - -#~ msgid "cannot convert multidimensional array to Python list" -#~ msgstr "ne peut pas convertir un tableau multidimensionnel en liste Python" - -#~ msgid "could not compute string representation of Python object in PL/Python function \"%s\" while modifying trigger row" -#~ msgstr "" -#~ "n'a pas pu traiter la représentation de la chaîne d'un objet Python dans\n" -#~ "la fonction PL/Python « %s » lors de la modification de la ligne du trigger" - -#~ msgid "could not create exception \"%s\"" -#~ msgstr "n'a pas pu créer l'exception « %s »" - -#~ msgid "could not create globals" -#~ msgstr "n'a pas pu créer les globales" - -#~ msgid "could not create new Python list" -#~ msgstr "n'a pas pu créer la nouvelle liste Python" - -#~ msgid "could not create new dictionary" -#~ msgstr "n'a pas pu créer le nouveau dictionnaire" - -#~ msgid "could not create new dictionary while building trigger arguments" -#~ msgstr "" -#~ "n'a pas pu créer un nouveau dictionnaire lors de la construction des\n" -#~ "arguments du trigger" - -#~ msgid "could not create procedure cache" -#~ msgstr "n'a pas pu créer le cache de procédure" - -#~ msgid "could not create string representation of Python object in PL/Python function \"%s\" while creating return value" -#~ msgstr "" -#~ "n'a pas pu créer la représentation en chaîne de caractère de l'objet\n" -#~ "Python dans la fonction PL/python « %s » lors de la création de la valeur\n" -#~ "de retour" - -#~ msgid "could not create the base SPI exceptions" -#~ msgstr "n'a pas pu créer les exceptions SPI de base" - -#~ msgid "invalid arguments for plpy.prepare" -#~ msgstr "arguments invalides pour plpy.prepare" - -#~ msgid "multidimensional arrays must have array expressions with matching dimensions. PL/Python function return value has sequence length %d while expected %d" -#~ msgstr "" -#~ "les tableaux multidimensionnels doivent avoir des expressions de tableaux\n" -#~ "avec des dimensions correspondantes. La valeur de retour de la fonction\n" -#~ "PL/Python a une longueur de séquence %d alors que %d est attendue" - -#~ msgid "out of memory" -#~ msgstr "mémoire épuisée" - -#~ msgid "plan.status takes no arguments" -#~ msgstr "plan.status ne prends pas d'arguments" - -#~ msgid "plpy.prepare does not support composite types" -#~ msgstr "plpy.prepare ne supporte pas les types composites" - -#~ msgid "the message is already specified" -#~ msgstr "le message est déjà spécifié" - -#~ msgid "transaction aborted" -#~ msgstr "transaction annulée" - -#~ msgid "unrecognized error in PLy_spi_execute_fetch_result" -#~ msgstr "erreur inconnue dans PLy_spi_execute_fetch_result" - -#~ msgid "unrecognized error in PLy_spi_execute_plan" -#~ msgstr "erreur inconnue dans PLy_spi_execute_plan" - -#~ msgid "unrecognized error in PLy_spi_execute_query" -#~ msgstr "erreur inconnue dans PLy_spi_execute_query" - -#~ msgid "unrecognized error in PLy_spi_prepare" -#~ msgstr "erreur inconnue dans PLy_spi_prepare" - -#, c-format -#~ msgid "wrong length of inner sequence: has length %d, but %d was expected" -#~ msgstr "mauvaise longueur de la séquence interne : a une longueur %d, mais %d était attendu" diff --git a/src/pl/tcl/po/es.po b/src/pl/tcl/po/es.po index 67727f195b8..87ba57b8a89 100644 --- a/src/pl/tcl/po/es.po +++ b/src/pl/tcl/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: pltcl (PostgreSQL) 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" -"POT-Creation-Date: 2024-08-02 09:43+0000\n" +"POT-Creation-Date: 2024-11-09 06:13+0000\n" "PO-Revision-Date: 2022-10-20 09:06+0200\n" "Last-Translator: Carlos Chapi \n" "Language-Team: PgSQL-es-Ayuda \n" diff --git a/src/pl/tcl/po/fr.po b/src/pl/tcl/po/fr.po index 104e4886318..ffa9bfa4e73 100644 --- a/src/pl/tcl/po/fr.po +++ b/src/pl/tcl/po/fr.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PostgreSQL 15\n" "Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n" "POT-Creation-Date: 2024-07-20 18:44+0000\n" -"PO-Revision-Date: 2024-07-22 14:45+0200\n" +"PO-Revision-Date: 2024-09-16 16:35+0200\n" "Last-Translator: Guillaume Lelarge \n" "Language-Team: French \n" "Language: fr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.5\n" #: pltcl.c:463 msgid "PL/Tcl function to call once when pltcl is first used." @@ -125,25 +125,3 @@ msgstr "ne peut pas initialiser l'attribut système « %s »" #, c-format msgid "cannot set generated column \"%s\"" msgstr "ne peut pas initialiser la colonne générée « %s »" - -#~ msgid "PL/Tcl functions cannot return composite types" -#~ msgstr "les fonctions PL/Tcl ne peuvent pas renvoyer des types composites" - -#~ msgid "could not load module \"unknown\": %s" -#~ msgstr "n'a pas pu charger le module « unknown » : %s" - -#, c-format -#~ msgid "could not split return value from trigger: %s" -#~ msgstr "n'a pas pu séparer la valeur de retour du trigger : %s" - -#~ msgid "module \"unknown\" not found in pltcl_modules" -#~ msgstr "module « unkown » introuvable dans pltcl_modules" - -#~ msgid "out of memory" -#~ msgstr "mémoire épuisée" - -#~ msgid "trigger's return list must have even number of elements" -#~ msgstr "la liste de retour du trigger doit avoir un nombre pair d'éléments" - -#~ msgid "unrecognized attribute \"%s\"" -#~ msgstr "attribut « %s » non reconnu" diff --git a/src/port/bsearch_arg.c b/src/port/bsearch_arg.c index a74c5882eb7..debb9fb5e6f 100644 --- a/src/port/bsearch_arg.c +++ b/src/port/bsearch_arg.c @@ -58,8 +58,8 @@ bsearch_arg(const void *key, const void *base0, void *arg) { const char *base = (const char *) base0; - int lim, - cmp; + size_t lim; + int cmp; const void *p; for (lim = nmemb; lim != 0; lim >>= 1) diff --git a/src/port/dirmod.c b/src/port/dirmod.c index 7ce042e75d0..2818bfd2e95 100644 --- a/src/port/dirmod.c +++ b/src/port/dirmod.c @@ -99,6 +99,32 @@ int pgunlink(const char *path) { int loops = 0; + struct stat st; + + /* + * This function might be called for a regular file or for a junction + * point (which we use to emulate symlinks). The latter must be unlinked + * with rmdir() on Windows. Before we worry about any of that, let's see + * if we can unlink directly, since that's expected to be the most common + * case. + */ + if (unlink(path) == 0) + return 0; + if (errno != EACCES) + return -1; + + /* + * EACCES is reported for many reasons including unlink() of a junction + * point. Check if that's the case so we can redirect to rmdir(). + * + * Note that by checking only once, we can't cope with a path that changes + * from regular file to junction point underneath us while we're retrying + * due to sharing violations, but that seems unlikely. We could perhaps + * prevent that by holding a file handle ourselves across the lstat() and + * the retry loop, but that seems like over-engineering for now. + */ + if (lstat(path, &st) < 0) + return -1; /* * We need to loop because even though PostgreSQL uses flags that allow @@ -107,7 +133,7 @@ pgunlink(const char *path) * someone else to close the file, as the caller might be holding locks * and blocking other backends. */ - while (unlink(path)) + while ((S_ISLNK(st.st_mode) ? rmdir(path) : unlink(path)) < 0) { if (errno != EACCES) return -1; @@ -336,20 +362,4 @@ pgreadlink(const char *path, char *buf, size_t size) return r; } -/* - * Assumes the file exists, so will return false if it doesn't - * (since a nonexistent file is not a junction) - */ -bool -pgwin32_is_junction(const char *path) -{ - DWORD attr = GetFileAttributes(path); - - if (attr == INVALID_FILE_ATTRIBUTES) - { - _dosmaperr(GetLastError()); - return false; - } - return ((attr & FILE_ATTRIBUTE_REPARSE_POINT) == FILE_ATTRIBUTE_REPARSE_POINT); -} #endif /* defined(WIN32) && !defined(__CYGWIN__) */ diff --git a/src/port/win32error.c b/src/port/win32error.c index fca867ba3d5..67ce805d775 100644 --- a/src/port/win32error.c +++ b/src/port/win32error.c @@ -164,6 +164,12 @@ static const struct }, { ERROR_DELETE_PENDING, ENOENT + }, + { + ERROR_INVALID_NAME, ENOENT + }, + { + ERROR_CANT_RESOLVE_FILENAME, ENOENT } }; diff --git a/src/port/win32stat.c b/src/port/win32stat.c index e25811d290e..c0521d6ffa9 100644 --- a/src/port/win32stat.c +++ b/src/port/win32stat.c @@ -15,7 +15,11 @@ #ifdef WIN32 +#define UMDF_USING_NTSTATUS + #include "c.h" +#include "port/win32ntdll.h" + #include /* @@ -107,12 +111,10 @@ fileinfo_to_stat(HANDLE hFile, struct stat *buf) } /* - * Windows implementation of stat(). - * - * This currently also implements lstat(), though perhaps that should change. + * Windows implementation of lstat(). */ int -_pgstat64(const char *name, struct stat *buf) +_pglstat64(const char *name, struct stat *buf) { /* * Our open wrapper will report STATUS_DELETE_PENDING as ENOENT. We @@ -125,11 +127,128 @@ _pgstat64(const char *name, struct stat *buf) hFile = pgwin32_open_handle(name, O_RDONLY, true); if (hFile == INVALID_HANDLE_VALUE) - return -1; + { + if (errno == ENOENT) + { + /* + * If it's a junction point pointing to a non-existent path, we'll + * have ENOENT here (because pgwin32_open_handle does not use + * FILE_FLAG_OPEN_REPARSE_POINT). In that case, we'll try again + * with readlink() below, which will distinguish true ENOENT from + * pseudo-symlink. + */ + memset(buf, 0, sizeof(*buf)); + ret = 0; + } + else + return -1; + } + else + ret = fileinfo_to_stat(hFile, buf); - ret = fileinfo_to_stat(hFile, buf); + /* + * Junction points appear as directories to fileinfo_to_stat(), so we'll + * need to do a bit more work to distinguish them. + */ + if ((ret == 0 && S_ISDIR(buf->st_mode)) || hFile == INVALID_HANDLE_VALUE) + { + char next[MAXPGPATH]; + ssize_t size; + + /* + * POSIX says we need to put the length of the target path into + * st_size. Use readlink() to get it, or learn that this is not a + * junction point. + */ + size = readlink(name, next, sizeof(next)); + if (size < 0) + { + if (errno == EACCES && + pg_RtlGetLastNtStatus() == STATUS_DELETE_PENDING) + { + /* Unlinked underneath us. */ + errno = ENOENT; + ret = -1; + } + else if (errno == EINVAL) + { + /* It's not a junction point, nothing to do. */ + } + else + { + /* Some other failure. */ + ret = -1; + } + } + else + { + /* It's a junction point, so report it as a symlink. */ + buf->st_mode &= ~S_IFDIR; + buf->st_mode |= S_IFLNK; + buf->st_size = size; + ret = 0; + } + } + + if (hFile != INVALID_HANDLE_VALUE) + CloseHandle(hFile); + return ret; +} + +/* + * Windows implementation of stat(). + */ +int +_pgstat64(const char *name, struct stat *buf) +{ + int ret; + + ret = _pglstat64(name, buf); + + /* Do we need to follow a symlink (junction point)? */ + if (ret == 0 && S_ISLNK(buf->st_mode)) + { + char next[MAXPGPATH]; + ssize_t size; + + /* + * _pglstat64() already called readlink() once to be able to fill in + * st_size, and now we need to do it again to get the path to follow. + * That could be optimized, but stat() on symlinks is probably rare + * and this way is simple. + */ + size = readlink(name, next, sizeof(next)); + if (size < 0) + { + if (errno == EACCES && + pg_RtlGetLastNtStatus() == STATUS_DELETE_PENDING) + { + /* Unlinked underneath us. */ + errno = ENOENT; + } + return -1; + } + if (size >= sizeof(next)) + { + errno = ENAMETOOLONG; + return -1; + } + next[size] = 0; + + ret = _pglstat64(next, buf); + if (ret == 0 && S_ISLNK(buf->st_mode)) + { + /* + * We're only prepared to go one hop, because we only expect to + * deal with the simple cases that we create. The error for too + * many symlinks is supposed to be ELOOP, but Windows hasn't got + * it. + */ + errno = EIO; + return -1; + } + } - CloseHandle(hFile); return ret; } diff --git a/src/test/isolation/expected/intra-grant-inplace-db.out b/src/test/isolation/expected/intra-grant-inplace-db.out index 432ece56361..a91402ccb8f 100644 --- a/src/test/isolation/expected/intra-grant-inplace-db.out +++ b/src/test/isolation/expected/intra-grant-inplace-db.out @@ -9,20 +9,20 @@ step b1: BEGIN; step grant1: GRANT TEMP ON DATABASE isolation_regression TO regress_temp_grantee; -step vac2: VACUUM (FREEZE); +step vac2: VACUUM (FREEZE); step snap3: INSERT INTO frozen_witness SELECT datfrozenxid FROM pg_database WHERE datname = current_catalog; step c1: COMMIT; +step vac2: <... completed> step cmp3: SELECT 'datfrozenxid retreated' FROM pg_database WHERE datname = current_catalog AND age(datfrozenxid) > (SELECT min(age(x)) FROM frozen_witness); -?column? ----------------------- -datfrozenxid retreated -(1 row) +?column? +-------- +(0 rows) diff --git a/src/test/isolation/expected/intra-grant-inplace.out b/src/test/isolation/expected/intra-grant-inplace.out index cc1e47a302c..4e9695a0214 100644 --- a/src/test/isolation/expected/intra-grant-inplace.out +++ b/src/test/isolation/expected/intra-grant-inplace.out @@ -14,15 +14,16 @@ relhasindex f (1 row) -step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); +step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); step c1: COMMIT; +step addk2: <... completed> step read2: SELECT relhasindex FROM pg_class WHERE oid = 'intra_grant_inplace'::regclass; relhasindex ----------- -f +t (1 row) @@ -58,8 +59,33 @@ relhasindex f (1 row) -step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); +step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); step r3: ROLLBACK; +step addk2: <... completed> + +starting permutation: b3 sfnku3 keyshr5 addk2 r3 +step b3: BEGIN ISOLATION LEVEL READ COMMITTED; +step sfnku3: + SELECT relhasindex FROM pg_class + WHERE oid = 'intra_grant_inplace'::regclass FOR NO KEY UPDATE; + +relhasindex +----------- +f +(1 row) + +step keyshr5: + SELECT relhasindex FROM pg_class + WHERE oid = 'intra_grant_inplace'::regclass FOR KEY SHARE; + +relhasindex +----------- +f +(1 row) + +step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); +step r3: ROLLBACK; +step addk2: <... completed> starting permutation: b2 sfnku2 addk2 c2 step b2: BEGIN; @@ -122,17 +148,18 @@ relhasindex f (1 row) -step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); +step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); step r3: ROLLBACK; step grant1: <... completed> step c1: COMMIT; +step addk2: <... completed> step read2: SELECT relhasindex FROM pg_class WHERE oid = 'intra_grant_inplace'::regclass; relhasindex ----------- -f +t (1 row) @@ -151,9 +178,11 @@ step b1: BEGIN; step grant1: GRANT SELECT ON intra_grant_inplace TO PUBLIC; -step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); -step c2: COMMIT; +step addk2: ALTER TABLE intra_grant_inplace ADD PRIMARY KEY (c); +step addk2: <... completed> +ERROR: deadlock detected step grant1: <... completed> +step c2: COMMIT; step c1: COMMIT; step read2: SELECT relhasindex FROM pg_class @@ -191,9 +220,8 @@ relhasindex f (1 row) -s4: WARNING: got: tuple concurrently updated -step revoke4: <... completed> step r3: ROLLBACK; +step revoke4: <... completed> starting permutation: b1 drop1 b3 sfu3 revoke4 c1 r3 step b1: BEGIN; @@ -220,6 +248,6 @@ relhasindex ----------- (0 rows) -s4: WARNING: got: tuple concurrently deleted +s4: WARNING: got: cache lookup failed for relation REDACTED step revoke4: <... completed> step r3: ROLLBACK; diff --git a/src/test/isolation/specs/eval-plan-qual.spec b/src/test/isolation/specs/eval-plan-qual.spec index 1bcf5d3eca4..76d12326b50 100644 --- a/src/test/isolation/specs/eval-plan-qual.spec +++ b/src/test/isolation/specs/eval-plan-qual.spec @@ -190,7 +190,7 @@ step simplepartupdate_noroute { update parttbl set b = 2 where c = 1 returning *; } -# test system class updates +# test system class LockTuple() step sys1 { UPDATE pg_class SET reltuples = 123 WHERE oid = 'accounts'::regclass; diff --git a/src/test/isolation/specs/intra-grant-inplace-db.spec b/src/test/isolation/specs/intra-grant-inplace-db.spec index bbecd5ddde5..9de40ec5c94 100644 --- a/src/test/isolation/specs/intra-grant-inplace-db.spec +++ b/src/test/isolation/specs/intra-grant-inplace-db.spec @@ -42,5 +42,4 @@ step cmp3 { } -# XXX extant bug permutation snap3 b1 grant1 vac2(c1) snap3 c1 cmp3 diff --git a/src/test/isolation/specs/intra-grant-inplace.spec b/src/test/isolation/specs/intra-grant-inplace.spec index 3cd696b81f2..9936d389359 100644 --- a/src/test/isolation/specs/intra-grant-inplace.spec +++ b/src/test/isolation/specs/intra-grant-inplace.spec @@ -14,6 +14,7 @@ teardown # heap_update() session s1 +setup { SET deadlock_timeout = '100s'; } step b1 { BEGIN; } step grant1 { GRANT SELECT ON intra_grant_inplace TO PUBLIC; @@ -25,6 +26,7 @@ step c1 { COMMIT; } # inplace update session s2 +setup { SET deadlock_timeout = '10ms'; } step read2 { SELECT relhasindex FROM pg_class WHERE oid = 'intra_grant_inplace'::regclass; @@ -73,8 +75,6 @@ step keyshr5 { teardown { ROLLBACK; } -# XXX extant bugs: permutation comments refer to planned post-bugfix behavior - permutation b1 grant1 @@ -96,6 +96,14 @@ permutation addk2(r3) r3 +# reproduce bug in DoesMultiXactIdConflict() call +permutation + b3 + sfnku3 + keyshr5 + addk2(r3) + r3 + # same-xact rowmark permutation b2 @@ -126,8 +134,8 @@ permutation b2 sfnku2 b1 - grant1(c2) # acquire LockTuple(), await sfnku2 xmax - addk2 # block in LockTuple() behind grant1 = deadlock + grant1(addk2) # acquire LockTuple(), await sfnku2 xmax + addk2(*) # block in LockTuple() behind grant1 = deadlock c2 c1 read2 @@ -138,7 +146,7 @@ permutation grant1 b3 sfu3(c1) # acquire LockTuple(), await grant1 xmax - revoke4(sfu3) # block in LockTuple() behind sfu3 + revoke4(r3) # block in LockTuple() behind sfu3 c1 r3 # revoke4 unlocks old tuple and finds new diff --git a/src/test/modules/test_pg_dump/expected/test_pg_dump.out b/src/test/modules/test_pg_dump/expected/test_pg_dump.out index 8df7f090544..ea8daf01130 100644 --- a/src/test/modules/test_pg_dump/expected/test_pg_dump.out +++ b/src/test/modules/test_pg_dump/expected/test_pg_dump.out @@ -91,6 +91,8 @@ ALTER EXTENSION test_pg_dump DROP SERVER s0; ALTER EXTENSION test_pg_dump DROP TABLE test_pg_dump_t1; ALTER EXTENSION test_pg_dump DROP TYPE test_pg_dump_e1; ALTER EXTENSION test_pg_dump DROP VIEW test_pg_dump_v1; +DROP OWNED BY regress_dump_test_role RESTRICT; +DROP ROLE regress_dump_test_role; DROP EXTENSION test_pg_dump; -- shouldn't be anything left in pg_init_privs SELECT * FROM pg_init_privs WHERE privtype = 'e'; diff --git a/src/test/modules/test_pg_dump/sql/test_pg_dump.sql b/src/test/modules/test_pg_dump/sql/test_pg_dump.sql index 7f2e7d32f6d..5c0a3a2058b 100644 --- a/src/test/modules/test_pg_dump/sql/test_pg_dump.sql +++ b/src/test/modules/test_pg_dump/sql/test_pg_dump.sql @@ -107,6 +107,10 @@ ALTER EXTENSION test_pg_dump DROP TABLE test_pg_dump_t1; ALTER EXTENSION test_pg_dump DROP TYPE test_pg_dump_e1; ALTER EXTENSION test_pg_dump DROP VIEW test_pg_dump_v1; +DROP OWNED BY regress_dump_test_role RESTRICT; + +DROP ROLE regress_dump_test_role; + DROP EXTENSION test_pg_dump; -- shouldn't be anything left in pg_init_privs diff --git a/src/test/modules/test_regex/expected/test_regex.out b/src/test/modules/test_regex/expected/test_regex.out index 731ba506d35..c44c717edf4 100644 --- a/src/test/modules/test_regex/expected/test_regex.out +++ b/src/test/modules/test_regex/expected/test_regex.out @@ -2071,6 +2071,20 @@ select * from test_regex('[\s\S]*', '012 3456789abc_*', 'LNPE'); {"012 3456789abc_*"} (2 rows) +-- bug #18708: +select * from test_regex('(?:[^\d\D]){0}', '0123456789abc*', 'LNPQE'); + test_regex +-------------------------------------------------------------------- + {0,REG_UBOUNDS,REG_UBBS,REG_UNONPOSIX,REG_ULOCALE,REG_UEMPTYMATCH} + {""} +(2 rows) + +select * from test_regex('[^\d\D]', '0123456789abc*', 'ILPE'); + test_regex +-------------------------------------------------------- + {0,REG_UBBS,REG_UNONPOSIX,REG_ULOCALE,REG_UIMPOSSIBLE} +(1 row) + -- check char classes' handling of newlines select * from test_regex('\s+', E'abc \n def', 'LP'); test_regex diff --git a/src/test/modules/test_regex/sql/test_regex.sql b/src/test/modules/test_regex/sql/test_regex.sql index 478fa2c5475..b2a847577e8 100644 --- a/src/test/modules/test_regex/sql/test_regex.sql +++ b/src/test/modules/test_regex/sql/test_regex.sql @@ -619,6 +619,9 @@ select * from test_regex('[^1\D0]', 'abc0123456789*', 'LPE'); select * from test_regex('\W', '0123456789abc_*', 'LP'); select * from test_regex('[\W]', '0123456789abc_*', 'LPE'); select * from test_regex('[\s\S]*', '012 3456789abc_*', 'LNPE'); +-- bug #18708: +select * from test_regex('(?:[^\d\D]){0}', '0123456789abc*', 'LNPQE'); +select * from test_regex('[^\d\D]', '0123456789abc*', 'ILPE'); -- check char classes' handling of newlines select * from test_regex('\s+', E'abc \n def', 'LP'); diff --git a/src/test/modules/unsafe_tests/Makefile b/src/test/modules/unsafe_tests/Makefile index 90d19791871..d4ff227ef07 100644 --- a/src/test/modules/unsafe_tests/Makefile +++ b/src/test/modules/unsafe_tests/Makefile @@ -1,6 +1,9 @@ # src/test/modules/unsafe_tests/Makefile -REGRESS = rolenames alter_system_table guc_privs +REGRESS = rolenames setconfig alter_system_table guc_privs +REGRESS_OPTS = \ + --create-role=regress_authenticated_user_sr \ + --create-role=regress_authenticated_user_ssa # the whole point of these tests is to not run installcheck NO_INSTALLCHECK = 1 diff --git a/src/test/modules/unsafe_tests/expected/setconfig.out b/src/test/modules/unsafe_tests/expected/setconfig.out new file mode 100644 index 00000000000..6a021d9ad03 --- /dev/null +++ b/src/test/modules/unsafe_tests/expected/setconfig.out @@ -0,0 +1,31 @@ +-- This is borderline unsafe in that an additional login-capable user exists +-- during the test run. Under installcheck, a too-permissive pg_hba.conf +-- might allow unwanted logins as regress_authenticated_user_ssa. +ALTER USER regress_authenticated_user_ssa superuser; +CREATE ROLE regress_session_user; +CREATE ROLE regress_current_user; +GRANT regress_current_user TO regress_authenticated_user_sr; +GRANT regress_session_user TO regress_authenticated_user_ssa; +ALTER ROLE regress_authenticated_user_ssa + SET session_authorization = regress_session_user; +ALTER ROLE regress_authenticated_user_sr SET ROLE = regress_current_user; +\c - regress_authenticated_user_sr +SELECT current_user, session_user; + current_user | session_user +----------------------+------------------------------- + regress_current_user | regress_authenticated_user_sr +(1 row) + +-- The longstanding historical behavior is that session_authorization in +-- setconfig has no effect. Hence, session_user remains +-- regress_authenticated_user_ssa. See comment in InitializeSessionUserId(). +\c - regress_authenticated_user_ssa +SELECT current_user, session_user; + current_user | session_user +--------------------------------+-------------------------------- + regress_authenticated_user_ssa | regress_authenticated_user_ssa +(1 row) + +RESET SESSION AUTHORIZATION; +DROP USER regress_session_user; +DROP USER regress_current_user; diff --git a/src/test/modules/unsafe_tests/sql/setconfig.sql b/src/test/modules/unsafe_tests/sql/setconfig.sql new file mode 100644 index 00000000000..8817a7c7636 --- /dev/null +++ b/src/test/modules/unsafe_tests/sql/setconfig.sql @@ -0,0 +1,24 @@ +-- This is borderline unsafe in that an additional login-capable user exists +-- during the test run. Under installcheck, a too-permissive pg_hba.conf +-- might allow unwanted logins as regress_authenticated_user_ssa. + +ALTER USER regress_authenticated_user_ssa superuser; +CREATE ROLE regress_session_user; +CREATE ROLE regress_current_user; +GRANT regress_current_user TO regress_authenticated_user_sr; +GRANT regress_session_user TO regress_authenticated_user_ssa; +ALTER ROLE regress_authenticated_user_ssa + SET session_authorization = regress_session_user; +ALTER ROLE regress_authenticated_user_sr SET ROLE = regress_current_user; + +\c - regress_authenticated_user_sr +SELECT current_user, session_user; + +-- The longstanding historical behavior is that session_authorization in +-- setconfig has no effect. Hence, session_user remains +-- regress_authenticated_user_ssa. See comment in InitializeSessionUserId(). +\c - regress_authenticated_user_ssa +SELECT current_user, session_user; +RESET SESSION AUTHORIZATION; +DROP USER regress_session_user; +DROP USER regress_current_user; diff --git a/src/test/recovery/t/037_invalid_database.pl b/src/test/recovery/t/037_invalid_database.pl index 29b9bb6977c..7e5e0bb31f9 100644 --- a/src/test/recovery/t/037_invalid_database.pl +++ b/src/test/recovery/t/037_invalid_database.pl @@ -84,7 +84,10 @@ # Test that interruption of DROP DATABASE is handled properly. To ensure the # interruption happens at the appropriate moment, we lock pg_tablespace. DROP # DATABASE scans pg_tablespace once it has reached the "irreversible" part of -# dropping the database, making it a suitable point to wait. +# dropping the database, making it a suitable point to wait. Since relcache +# init reads pg_tablespace, establish each connection before locking. This +# avoids a connection-time hang with debug_discard_caches. +my $cancel = $node->background_psql('postgres', on_error_stop => 1); my $bgpsql = $node->background_psql('postgres', on_error_stop => 0); my $pid = $bgpsql->query('SELECT pg_backend_pid()'); @@ -100,14 +103,19 @@ # Try to drop. This will wait due to the still held lock. $bgpsql->query_until(qr//, "DROP DATABASE regression_invalid_interrupt;\n"); -# Ensure we're waiting for the lock -$node->poll_query_until('postgres', - qq(SELECT EXISTS(SELECT * FROM pg_locks WHERE NOT granted AND relation = 'pg_tablespace'::regclass AND mode = 'AccessShareLock');) -); -# and finally interrupt the DROP DATABASE -ok($node->safe_psql('postgres', "SELECT pg_cancel_backend($pid)"), +# Once the DROP DATABASE is waiting for the lock, interrupt it. +ok( $cancel->query_safe( + qq( + DO \$\$ + BEGIN + WHILE NOT EXISTS(SELECT * FROM pg_locks WHERE NOT granted AND relation = 'pg_tablespace'::regclass AND mode = 'AccessShareLock') LOOP + PERFORM pg_sleep(.1); + END LOOP; + END\$\$; + SELECT pg_cancel_backend($pid);)), "canceling DROP DATABASE"); +$cancel->quit(); # wait for cancellation to be processed ok( pump_until( @@ -116,7 +124,8 @@ "cancel processed"); $bgpsql->{stderr} = ''; -# verify that connection to the database aren't allowed +# Verify that connections to the database aren't allowed. The backend checks +# this before relcache init, so the lock won't interfere. is($node->psql('regression_invalid_interrupt', ''), 2, "can't connect to invalid_interrupt database"); diff --git a/src/test/recovery/t/039_end_of_wal.pl b/src/test/recovery/t/039_end_of_wal.pl index b3b813d425d..88fe92a36f4 100644 --- a/src/test/recovery/t/039_end_of_wal.pl +++ b/src/test/recovery/t/039_end_of_wal.pl @@ -251,6 +251,12 @@ sub advance_to_record_splitting_zone $TLI = $node->safe_psql('postgres', "SELECT timeline_id FROM pg_control_checkpoint();"); +# Initial LSN may vary across systems due to different catalog contents set up +# by initdb. Switch to a new WAL file so all systems start out in the same +# place. The first test depends on trailing zeroes on a page with a valid +# header. +$node->safe_psql('postgres', "SELECT pg_switch_wal();"); + my $end_lsn; my $prev_lsn; diff --git a/src/test/regress/expected/advisory_lock.out b/src/test/regress/expected/advisory_lock.out index 2a2df6f7e4b..02e07765ac2 100644 --- a/src/test/regress/expected/advisory_lock.out +++ b/src/test/regress/expected/advisory_lock.out @@ -1,6 +1,7 @@ -- -- ADVISORY LOCKS -- +SELECT oid AS datoid FROM pg_database WHERE datname = current_database() \gset BEGIN; SELECT pg_advisory_xact_lock(1), pg_advisory_xact_lock_shared(2), @@ -11,7 +12,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -28,7 +29,7 @@ SELECT pg_advisory_unlock_all(); (1 row) -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 4 @@ -49,7 +50,7 @@ WARNING: you don't own a lock of type ShareLock -- automatically release xact locks at commit COMMIT; -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 @@ -66,7 +67,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -86,7 +87,7 @@ SELECT ROLLBACK; SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -111,7 +112,7 @@ WARNING: you don't own a lock of type ShareLock t | f | t | f | t | f | t | f (1 row) -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 @@ -128,7 +129,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -148,7 +149,7 @@ SELECT ROLLBACK; SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -165,7 +166,7 @@ SELECT pg_advisory_unlock_all(); (1 row) -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 @@ -184,7 +185,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -195,7 +196,7 @@ SELECT locktype, classid, objid, objsubid, mode, granted (4 rows) COMMIT; -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 @@ -213,7 +214,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -233,7 +234,7 @@ SELECT t | t | t | t | t | t | t | t (1 row) -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 @@ -251,7 +252,7 @@ SELECT (1 row) SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; locktype | classid | objid | objsubid | mode | granted ----------+---------+-------+----------+---------------+--------- @@ -267,7 +268,7 @@ SELECT pg_advisory_unlock_all(); (1 row) -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; count ------- 0 diff --git a/src/test/regress/expected/collate.icu.utf8.out b/src/test/regress/expected/collate.icu.utf8.out index d4c8c6de38e..b7d78e32ee0 100644 --- a/src/test/regress/expected/collate.icu.utf8.out +++ b/src/test/regress/expected/collate.icu.utf8.out @@ -1952,6 +1952,214 @@ SELECT (SELECT count(*) FROM test33_0) <> (SELECT count(*) FROM test33_1); t (1 row) +-- +-- Bug #18568 +-- +-- Partitionwise aggregate (full or partial) should not be used when a +-- partition key's collation doesn't match that of the GROUP BY column it is +-- matched with. +SET max_parallel_workers_per_gather TO 0; +SET enable_incremental_sort TO off; +CREATE TABLE pagg_tab3 (a text, c text collate case_insensitive) PARTITION BY LIST(c collate "C"); +CREATE TABLE pagg_tab3_p1 PARTITION OF pagg_tab3 FOR VALUES IN ('a', 'b'); +CREATE TABLE pagg_tab3_p2 PARTITION OF pagg_tab3 FOR VALUES IN ('B', 'A'); +INSERT INTO pagg_tab3 SELECT i % 4 + 1, substr('abAB', (i % 4) + 1 , 1) FROM generate_series(0, 19) i; +ANALYZE pagg_tab3; +SET enable_partitionwise_aggregate TO false; +EXPLAIN (COSTS OFF) +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + QUERY PLAN +----------------------------------------------------------- + Sort + Sort Key: (upper(pagg_tab3.c)) COLLATE case_insensitive + -> HashAggregate + Group Key: pagg_tab3.c + -> Append + -> Seq Scan on pagg_tab3_p2 pagg_tab3_1 + -> Seq Scan on pagg_tab3_p1 pagg_tab3_2 +(7 rows) + +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + upper | count +-------+------- + A | 10 + B | 10 +(2 rows) + +-- No "full" partitionwise aggregation allowed, though "partial" is allowed. +SET enable_partitionwise_aggregate TO true; +EXPLAIN (COSTS OFF) +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + QUERY PLAN +-------------------------------------------------------------- + Sort + Sort Key: (upper(pagg_tab3.c)) COLLATE case_insensitive + -> Finalize HashAggregate + Group Key: pagg_tab3.c + -> Append + -> Partial HashAggregate + Group Key: pagg_tab3.c + -> Seq Scan on pagg_tab3_p2 pagg_tab3 + -> Partial HashAggregate + Group Key: pagg_tab3_1.c + -> Seq Scan on pagg_tab3_p1 pagg_tab3_1 +(11 rows) + +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + upper | count +-------+------- + A | 10 + B | 10 +(2 rows) + +-- OK to use full partitionwise aggregate after changing the GROUP BY column's +-- collation to be the same as that of the partition key. +EXPLAIN (COSTS OFF) +SELECT c collate "C", count(c) FROM pagg_tab3 GROUP BY c collate "C" ORDER BY 1; + QUERY PLAN +-------------------------------------------------------- + Sort + Sort Key: ((pagg_tab3.c)::text) COLLATE "C" + -> Append + -> HashAggregate + Group Key: (pagg_tab3.c)::text + -> Seq Scan on pagg_tab3_p2 pagg_tab3 + -> HashAggregate + Group Key: (pagg_tab3_1.c)::text + -> Seq Scan on pagg_tab3_p1 pagg_tab3_1 +(9 rows) + +SELECT c collate "C", count(c) FROM pagg_tab3 GROUP BY c collate "C" ORDER BY 1; + c | count +---+------- + A | 5 + B | 5 + a | 5 + b | 5 +(4 rows) + +-- Partitionwise join should not be allowed too when the collation used by the +-- join keys doesn't match the partition key collation. +SET enable_partitionwise_join TO false; +EXPLAIN (COSTS OFF) +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + QUERY PLAN +------------------------------------------------------------- + Sort + Sort Key: t1.c COLLATE "C" + -> HashAggregate + Group Key: t1.c + -> Hash Join + Hash Cond: (t1.c = t2.c) + -> Append + -> Seq Scan on pagg_tab3_p2 t1_1 + -> Seq Scan on pagg_tab3_p1 t1_2 + -> Hash + -> Append + -> Seq Scan on pagg_tab3_p2 t2_1 + -> Seq Scan on pagg_tab3_p1 t2_2 +(13 rows) + +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + c | count +---+------- + A | 100 + B | 100 +(2 rows) + +SET enable_partitionwise_join TO true; +EXPLAIN (COSTS OFF) +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + QUERY PLAN +------------------------------------------------------------- + Sort + Sort Key: t1.c COLLATE "C" + -> HashAggregate + Group Key: t1.c + -> Hash Join + Hash Cond: (t1.c = t2.c) + -> Append + -> Seq Scan on pagg_tab3_p2 t1_1 + -> Seq Scan on pagg_tab3_p1 t1_2 + -> Hash + -> Append + -> Seq Scan on pagg_tab3_p2 t2_1 + -> Seq Scan on pagg_tab3_p1 t2_2 +(13 rows) + +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + c | count +---+------- + A | 100 + B | 100 +(2 rows) + +-- OK when the join clause uses the same collation as the partition key. +EXPLAIN (COSTS OFF) +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + QUERY PLAN +------------------------------------------------------------------ + Sort + Sort Key: ((t1.c)::text) COLLATE "C" + -> Append + -> HashAggregate + Group Key: (t1.c)::text + -> Hash Join + Hash Cond: ((t1.c)::text = (t2.c)::text) + -> Seq Scan on pagg_tab3_p2 t1 + -> Hash + -> Seq Scan on pagg_tab3_p2 t2 + -> HashAggregate + Group Key: (t1_1.c)::text + -> Hash Join + Hash Cond: ((t1_1.c)::text = (t2_1.c)::text) + -> Seq Scan on pagg_tab3_p1 t1_1 + -> Hash + -> Seq Scan on pagg_tab3_p1 t2_1 +(17 rows) + +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + c | count +---+------- + A | 25 + B | 25 + a | 25 + b | 25 +(4 rows) + +SET enable_partitionwise_join TO false; +EXPLAIN (COSTS OFF) +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + QUERY PLAN +------------------------------------------------------------- + Sort + Sort Key: ((t1.c)::text) COLLATE "C" + -> HashAggregate + Group Key: (t1.c)::text + -> Hash Join + Hash Cond: ((t1.c)::text = (t2.c)::text) + -> Append + -> Seq Scan on pagg_tab3_p2 t1_1 + -> Seq Scan on pagg_tab3_p1 t1_2 + -> Hash + -> Append + -> Seq Scan on pagg_tab3_p2 t2_1 + -> Seq Scan on pagg_tab3_p1 t2_2 +(13 rows) + +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + c | count +---+------- + A | 25 + B | 25 + a | 25 + b | 25 +(4 rows) + +DROP TABLE pagg_tab3; +RESET enable_partitionwise_aggregate; +RESET max_parallel_workers_per_gather; +RESET enable_incremental_sort; -- cleanup RESET search_path; SET client_min_messages TO warning; diff --git a/src/test/regress/expected/copydml.out b/src/test/regress/expected/copydml.out index b5a225628f4..e91e83260aa 100644 --- a/src/test/regress/expected/copydml.out +++ b/src/test/regress/expected/copydml.out @@ -38,7 +38,7 @@ ERROR: DO INSTEAD NOTHING rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on insert to copydml_test do also delete from copydml_test; copy (insert into copydml_test default values) to stdout; -ERROR: DO ALSO rules are not supported for the COPY +ERROR: DO ALSO rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on insert to copydml_test do instead (delete from copydml_test; delete from copydml_test); copy (insert into copydml_test default values) to stdout; @@ -54,7 +54,7 @@ ERROR: DO INSTEAD NOTHING rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on update to copydml_test do also delete from copydml_test; copy (update copydml_test set t = 'f') to stdout; -ERROR: DO ALSO rules are not supported for the COPY +ERROR: DO ALSO rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on update to copydml_test do instead (delete from copydml_test; delete from copydml_test); copy (update copydml_test set t = 'f') to stdout; @@ -70,7 +70,7 @@ ERROR: DO INSTEAD NOTHING rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on delete to copydml_test do also insert into copydml_test default values; copy (delete from copydml_test) to stdout; -ERROR: DO ALSO rules are not supported for the COPY +ERROR: DO ALSO rules are not supported for COPY drop rule qqq on copydml_test; create rule qqq as on delete to copydml_test do instead (insert into copydml_test default values; insert into copydml_test default values); copy (delete from copydml_test) to stdout; @@ -80,6 +80,10 @@ create rule qqq as on delete to copydml_test where old.t <> 'f' do instead inser copy (delete from copydml_test) to stdout; ERROR: conditional DO INSTEAD rules are not supported for COPY drop rule qqq on copydml_test; +create rule qqq as on insert to copydml_test do instead notify copydml_test; +copy (insert into copydml_test default values) to stdout; +ERROR: COPY query must not be a utility command +drop rule qqq on copydml_test; -- triggers create function qqq_trig() returns trigger as $$ begin diff --git a/src/test/regress/expected/date.out b/src/test/regress/expected/date.out index 75ff6593789..341123978ce 100644 --- a/src/test/regress/expected/date.out +++ b/src/test/regress/expected/date.out @@ -1264,7 +1264,7 @@ SELECT DATE_TRUNC('MILLENNIUM', TIMESTAMP '1970-03-20 04:30:00.00000'); -- 1001 SELECT DATE_TRUNC('MILLENNIUM', DATE '1970-03-20'); -- 1001-01-01 date_trunc ------------------------------ - Thu Jan 01 00:00:00 1001 PST + Thu Jan 01 00:00:00 1001 LMT (1 row) SELECT DATE_TRUNC('CENTURY', TIMESTAMP '1970-03-20 04:30:00.00000'); -- 1901 @@ -1288,13 +1288,13 @@ SELECT DATE_TRUNC('CENTURY', DATE '2004-08-10'); -- 2001-01-01 SELECT DATE_TRUNC('CENTURY', DATE '0002-02-04'); -- 0001-01-01 date_trunc ------------------------------ - Mon Jan 01 00:00:00 0001 PST + Mon Jan 01 00:00:00 0001 LMT (1 row) SELECT DATE_TRUNC('CENTURY', DATE '0055-08-10 BC'); -- 0100-01-01 BC date_trunc --------------------------------- - Tue Jan 01 00:00:00 0100 PST BC + Tue Jan 01 00:00:00 0100 LMT BC (1 row) SELECT DATE_TRUNC('DECADE', DATE '1993-12-25'); -- 1990-01-01 @@ -1306,13 +1306,13 @@ SELECT DATE_TRUNC('DECADE', DATE '1993-12-25'); -- 1990-01-01 SELECT DATE_TRUNC('DECADE', DATE '0004-12-25'); -- 0001-01-01 BC date_trunc --------------------------------- - Sat Jan 01 00:00:00 0001 PST BC + Sat Jan 01 00:00:00 0001 LMT BC (1 row) SELECT DATE_TRUNC('DECADE', DATE '0002-12-31 BC'); -- 0011-01-01 BC date_trunc --------------------------------- - Mon Jan 01 00:00:00 0011 PST BC + Mon Jan 01 00:00:00 0011 LMT BC (1 row) -- diff --git a/src/test/regress/expected/foreign_key.out b/src/test/regress/expected/foreign_key.out index a97d67e414c..eac62806c1e 100644 --- a/src/test/regress/expected/foreign_key.out +++ b/src/test/regress/expected/foreign_key.out @@ -1967,6 +1967,23 @@ INSERT INTO fk_notpartitioned_pk VALUES (1600, 601), (1600, 1601); ALTER TABLE fk_partitioned_fk ATTACH PARTITION fk_partitioned_fk_2 FOR VALUES IN (1600); -- leave these tables around intentionally +-- Verify that attaching a table that's referenced by an existing FK +-- in the parent throws an error +CREATE TABLE fk_partitioned_pk_6 (a int PRIMARY KEY); +CREATE TABLE fk_partitioned_fk_6 (a int REFERENCES fk_partitioned_pk_6) PARTITION BY LIST (a); +ALTER TABLE fk_partitioned_fk_6 ATTACH PARTITION fk_partitioned_pk_6 FOR VALUES IN (1); +ERROR: cannot attach table "fk_partitioned_pk_6" as a partition because it is referenced by foreign key "fk_partitioned_fk_6_a_fkey" +DROP TABLE fk_partitioned_pk_6, fk_partitioned_fk_6; +-- This case is similar to above, but the referenced relation is one level +-- lower in the hierarchy. This one fails in a different way as the above, +-- because we don't bother to protect against this case explicitly. If the +-- current error stops happening, we'll need to add a better protection. +CREATE TABLE fk_partitioned_pk_6 (a int PRIMARY KEY) PARTITION BY list (a); +CREATE TABLE fk_partitioned_pk_61 PARTITION OF fk_partitioned_pk_6 FOR VALUES IN (1); +CREATE TABLE fk_partitioned_fk_6 (a int REFERENCES fk_partitioned_pk_61) PARTITION BY LIST (a); +ALTER TABLE fk_partitioned_fk_6 ATTACH PARTITION fk_partitioned_pk_6 FOR VALUES IN (1); +ERROR: cannot ALTER TABLE "fk_partitioned_pk_61" because it is being used by active queries in this session +DROP TABLE fk_partitioned_pk_6, fk_partitioned_fk_6; -- test the case when the referenced table is owned by a different user create role regress_other_partitioned_fk_owner; grant references on fk_notpartitioned_pk to regress_other_partitioned_fk_owner; @@ -2917,3 +2934,102 @@ DETAIL: drop cascades to table fkpart11.pk drop cascades to table fkpart11.fk_parted drop cascades to table fkpart11.fk_another drop cascades to function fkpart11.print_row() +-- When a table is attached as partition to a partitioned table that has +-- a foreign key to another partitioned table, it acquires a clone of the +-- FK. Upon detach, this clone is not removed, but instead becomes an +-- independent FK. If it then attaches to the partitioned table again, +-- the FK from the parent "takes over" ownership of the independent FK rather +-- than creating a separate one. +CREATE SCHEMA fkpart12 + CREATE TABLE fk_p ( id int, jd int, PRIMARY KEY(id, jd)) PARTITION BY list (id) + CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) PARTITION BY list (jd) + CREATE TABLE fk_p_1_1 PARTITION OF fk_p_1 FOR VALUES IN (1) + CREATE TABLE fk_p_1_2 (x int, y int, jd int NOT NULL, id int NOT NULL) + CREATE TABLE fk_p_2 PARTITION OF fk_p FOR VALUES IN (2) PARTITION BY list (jd) + CREATE TABLE fk_p_2_1 PARTITION OF fk_p_2 FOR VALUES IN (1) + CREATE TABLE fk_p_2_2 PARTITION OF fk_p_2 FOR VALUES IN (2) + CREATE TABLE fk_r_1 ( p_jd int NOT NULL, x int, id int PRIMARY KEY, p_id int NOT NULL) + CREATE TABLE fk_r_2 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL) PARTITION BY list (id) + CREATE TABLE fk_r_2_1 PARTITION OF fk_r_2 FOR VALUES IN (2, 1) + CREATE TABLE fk_r ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL, + FOREIGN KEY (p_id, p_jd) REFERENCES fk_p (id, jd) + ) PARTITION BY list (id); +SET search_path TO fkpart12; +ALTER TABLE fk_p_1_2 DROP COLUMN x, DROP COLUMN y; +ALTER TABLE fk_p_1 ATTACH PARTITION fk_p_1_2 FOR VALUES IN (2); +ALTER TABLE fk_r_1 DROP COLUMN x; +INSERT INTO fk_p VALUES (1, 1); +ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1); +ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2); +\d fk_r_2 + Partitioned table "fkpart12.fk_r_2" + Column | Type | Collation | Nullable | Default +--------+---------+-----------+----------+--------- + id | integer | | not null | + p_id | integer | | not null | + p_jd | integer | | not null | +Partition of: fk_r FOR VALUES IN (2) +Partition key: LIST (id) +Indexes: + "fk_r_2_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + TABLE "fk_r" CONSTRAINT "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd) +Number of partitions: 1 (Use \d+ to list them.) + +INSERT INTO fk_r VALUES (1, 1, 1); +INSERT INTO fk_r VALUES (2, 2, 1); +ERROR: insert or update on table "fk_r_2_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey" +DETAIL: Key (p_id, p_jd)=(2, 1) is not present in table "fk_p". +ALTER TABLE fk_r DETACH PARTITION fk_r_1; +ALTER TABLE fk_r DETACH PARTITION fk_r_2; +\d fk_r_2 + Partitioned table "fkpart12.fk_r_2" + Column | Type | Collation | Nullable | Default +--------+---------+-----------+----------+--------- + id | integer | | not null | + p_id | integer | | not null | + p_jd | integer | | not null | +Partition key: LIST (id) +Indexes: + "fk_r_2_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd) +Number of partitions: 1 (Use \d+ to list them.) + +INSERT INTO fk_r_1 (id, p_id, p_jd) VALUES (2, 1, 2); -- should fail +ERROR: insert or update on table "fk_r_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey" +DETAIL: Key (p_id, p_jd)=(1, 2) is not present in table "fk_p". +DELETE FROM fk_p; -- should fail +ERROR: update or delete on table "fk_p_1_1" violates foreign key constraint "fk_r_1_p_id_p_jd_fkey1" on table "fk_r_1" +DETAIL: Key (id, jd)=(1, 1) is still referenced from table "fk_r_1". +ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1); +ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2); +\d fk_r_2 + Partitioned table "fkpart12.fk_r_2" + Column | Type | Collation | Nullable | Default +--------+---------+-----------+----------+--------- + id | integer | | not null | + p_id | integer | | not null | + p_jd | integer | | not null | +Partition of: fk_r FOR VALUES IN (2) +Partition key: LIST (id) +Indexes: + "fk_r_2_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + TABLE "fk_r" CONSTRAINT "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd) +Number of partitions: 1 (Use \d+ to list them.) + +DELETE FROM fk_p; -- should fail +ERROR: update or delete on table "fk_p_1_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey2" on table "fk_r" +DETAIL: Key (id, jd)=(1, 1) is still referenced from table "fk_r". +-- these should all fail +ALTER TABLE fk_r_1 DROP CONSTRAINT fk_r_p_id_p_jd_fkey; +ERROR: cannot drop inherited constraint "fk_r_p_id_p_jd_fkey" of relation "fk_r_1" +ALTER TABLE fk_r DROP CONSTRAINT fk_r_p_id_p_jd_fkey1; +ERROR: cannot drop inherited constraint "fk_r_p_id_p_jd_fkey1" of relation "fk_r" +ALTER TABLE fk_r_2 DROP CONSTRAINT fk_r_p_id_p_jd_fkey; +ERROR: cannot drop inherited constraint "fk_r_p_id_p_jd_fkey" of relation "fk_r_2" +SET client_min_messages TO warning; +DROP SCHEMA fkpart12 CASCADE; +RESET client_min_messages; +RESET search_path; diff --git a/src/test/regress/expected/generated.out b/src/test/regress/expected/generated.out index 10208484ee5..9ee4559bd5a 100644 --- a/src/test/regress/expected/generated.out +++ b/src/test/regress/expected/generated.out @@ -836,7 +836,8 @@ SELECT * FROM gtest27; (2 rows) ALTER TABLE gtest27 ALTER COLUMN x TYPE boolean USING x <> 0; -- error -ERROR: generation expression for column "x" cannot be cast automatically to type boolean +ERROR: cannot specify USING when altering type of generated column +DETAIL: Column "x" is a generated column. ALTER TABLE gtest27 ALTER COLUMN x DROP DEFAULT; -- error ERROR: column "x" of relation "gtest27" is a generated column HINT: Use ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSION instead. diff --git a/src/test/regress/expected/horology.out b/src/test/regress/expected/horology.out index 735352976c7..e41a71a6723 100644 --- a/src/test/regress/expected/horology.out +++ b/src/test/regress/expected/horology.out @@ -1,11 +1,16 @@ -- -- HOROLOGY -- -SET DateStyle = 'Postgres, MDY'; -SHOW TimeZone; -- Many of these tests depend on the prevailing setting - TimeZone ----------- - PST8PDT +SHOW TimeZone; -- Many of these tests depend on the prevailing settings + TimeZone +--------------------- + America/Los_Angeles +(1 row) + +SHOW DateStyle; + DateStyle +--------------- + Postgres, MDY (1 row) -- @@ -769,12 +774,12 @@ SELECT d1 + interval '1 year' AS one_year FROM TIMESTAMPTZ_TBL; Sat Feb 14 17:32:01 1998 PST Sun Feb 15 17:32:01 1998 PST Mon Feb 16 17:32:01 1998 PST - Thu Feb 16 17:32:01 0096 PST BC - Sun Feb 16 17:32:01 0098 PST - Fri Feb 16 17:32:01 0598 PST - Wed Feb 16 17:32:01 1098 PST - Sun Feb 16 17:32:01 1698 PST - Fri Feb 16 17:32:01 1798 PST + Thu Feb 16 17:32:01 0096 LMT BC + Sun Feb 16 17:32:01 0098 LMT + Fri Feb 16 17:32:01 0598 LMT + Wed Feb 16 17:32:01 1098 LMT + Sun Feb 16 17:32:01 1698 LMT + Fri Feb 16 17:32:01 1798 LMT Wed Feb 16 17:32:01 1898 PST Mon Feb 16 17:32:01 1998 PST Sun Feb 16 17:32:01 2098 PST @@ -840,12 +845,12 @@ SELECT d1 - interval '1 year' AS one_year FROM TIMESTAMPTZ_TBL; Wed Feb 14 17:32:01 1996 PST Thu Feb 15 17:32:01 1996 PST Fri Feb 16 17:32:01 1996 PST - Mon Feb 16 17:32:01 0098 PST BC - Thu Feb 16 17:32:01 0096 PST - Tue Feb 16 17:32:01 0596 PST - Sun Feb 16 17:32:01 1096 PST - Thu Feb 16 17:32:01 1696 PST - Tue Feb 16 17:32:01 1796 PST + Mon Feb 16 17:32:01 0098 LMT BC + Thu Feb 16 17:32:01 0096 LMT + Tue Feb 16 17:32:01 0596 LMT + Sun Feb 16 17:32:01 1096 LMT + Thu Feb 16 17:32:01 1696 LMT + Tue Feb 16 17:32:01 1796 LMT Sun Feb 16 17:32:01 1896 PST Fri Feb 16 17:32:01 1996 PST Thu Feb 16 17:32:01 2096 PST @@ -2124,7 +2129,7 @@ SELECT '2020-10-05'::timestamptz > '2202020-10-05'::date as f; SELECT '4714-11-24 BC'::date::timestamptz; timestamptz --------------------------------- - Mon Nov 24 00:00:00 4714 PST BC + Mon Nov 24 00:00:00 4714 LMT BC (1 row) SET TimeZone = 'UTC-2'; @@ -2702,13 +2707,13 @@ RESET DateStyle; SELECT to_timestamp('0097/Feb/16 --> 08:14:30', 'YYYY/Mon/DD --> HH:MI:SS'); to_timestamp ------------------------------ - Sat Feb 16 08:14:30 0097 PST + Sat Feb 16 08:14:30 0097 LMT (1 row) SELECT to_timestamp('97/2/16 8:14:30', 'FMYYYY/FMMM/FMDD FMHH:FMMI:FMSS'); to_timestamp ------------------------------ - Sat Feb 16 08:14:30 0097 PST + Sat Feb 16 08:14:30 0097 LMT (1 row) SELECT to_timestamp('2011$03!18 23_38_15', 'YYYY-MM-DD HH24:MI:SS'); @@ -2745,7 +2750,7 @@ SELECT to_timestamp('My birthday-> Year: 1976, Month: May, Day: 16', SELECT to_timestamp('1,582nd VIII 21', 'Y,YYYth FMRM DD'); to_timestamp ------------------------------ - Sat Aug 21 00:00:00 1582 PST + Sat Aug 21 00:00:00 1582 LMT (1 row) SELECT to_timestamp('15 "text between quote marks" 98 54 45', @@ -2809,7 +2814,7 @@ SELECT to_timestamp('1997 AD 11 16', 'YYYY BC MM DD'); SELECT to_timestamp('1997 BC 11 16', 'YYYY BC MM DD'); to_timestamp --------------------------------- - Tue Nov 16 00:00:00 1997 PST BC + Tue Nov 16 00:00:00 1997 LMT BC (1 row) SELECT to_timestamp('1997 A.D. 11 16', 'YYYY B.C. MM DD'); @@ -2821,7 +2826,7 @@ SELECT to_timestamp('1997 A.D. 11 16', 'YYYY B.C. MM DD'); SELECT to_timestamp('1997 B.C. 11 16', 'YYYY B.C. MM DD'); to_timestamp --------------------------------- - Tue Nov 16 00:00:00 1997 PST BC + Tue Nov 16 00:00:00 1997 LMT BC (1 row) SELECT to_timestamp('9-1116', 'Y-MMDD'); @@ -3091,19 +3096,19 @@ SELECT to_date('-44-02-01 BC','YYYY-MM-DD BC'); SELECT to_timestamp('44-02-01 11:12:13 BC','YYYY-MM-DD HH24:MI:SS BC'); to_timestamp --------------------------------- - Fri Feb 01 11:12:13 0044 PST BC + Fri Feb 01 11:12:13 0044 LMT BC (1 row) SELECT to_timestamp('-44-02-01 11:12:13','YYYY-MM-DD HH24:MI:SS'); to_timestamp --------------------------------- - Fri Feb 01 11:12:13 0044 PST BC + Fri Feb 01 11:12:13 0044 LMT BC (1 row) SELECT to_timestamp('-44-02-01 11:12:13 BC','YYYY-MM-DD HH24:MI:SS BC'); to_timestamp ------------------------------ - Mon Feb 01 11:12:13 0044 PST + Mon Feb 01 11:12:13 0044 LMT (1 row) -- diff --git a/src/test/regress/expected/identity.out b/src/test/regress/expected/identity.out index cc7772349f2..1b74958de93 100644 --- a/src/test/regress/expected/identity.out +++ b/src/test/regress/expected/identity.out @@ -686,3 +686,19 @@ SELECT * FROM itest16; DROP TABLE itest15; DROP TABLE itest16; +-- For testing of pg_dump and pg_upgrade, leave behind some identity +-- sequences whose logged-ness doesn't match their owning table's. +CREATE TABLE identity_dump_logged (a INT GENERATED ALWAYS AS IDENTITY); +ALTER SEQUENCE identity_dump_logged_a_seq SET UNLOGGED; +CREATE UNLOGGED TABLE identity_dump_unlogged (a INT GENERATED ALWAYS AS IDENTITY); +ALTER SEQUENCE identity_dump_unlogged_a_seq SET LOGGED; +SELECT relname, relpersistence FROM pg_class + WHERE relname ~ '^identity_dump_' ORDER BY 1; + relname | relpersistence +------------------------------+---------------- + identity_dump_logged | p + identity_dump_logged_a_seq | u + identity_dump_unlogged | u + identity_dump_unlogged_a_seq | p +(4 rows) + diff --git a/src/test/regress/expected/inherit.out b/src/test/regress/expected/inherit.out index 33d9f13f15d..9eb60e37e70 100644 --- a/src/test/regress/expected/inherit.out +++ b/src/test/regress/expected/inherit.out @@ -1568,6 +1568,36 @@ select min(1-id) from matest0; reset enable_seqscan; reset enable_parallel_append; +explain (verbose, costs off) -- bug #18652 +select 1 - id as c from +(select id from matest3 t1 union all select id * 2 from matest3 t2) ss +order by c; + QUERY PLAN +------------------------------------------------------------ + Result + Output: ((1 - t1.id)) + -> Merge Append + Sort Key: ((1 - t1.id)) + -> Index Scan using matest3i on public.matest3 t1 + Output: t1.id, (1 - t1.id) + -> Sort + Output: ((t2.id * 2)), ((1 - (t2.id * 2))) + Sort Key: ((1 - (t2.id * 2))) + -> Seq Scan on public.matest3 t2 + Output: (t2.id * 2), (1 - (t2.id * 2)) +(11 rows) + +select 1 - id as c from +(select id from matest3 t1 union all select id * 2 from matest3 t2) ss +order by c; + c +----- + -11 + -9 + -5 + -4 +(4 rows) + drop table matest0 cascade; NOTICE: drop cascades to 3 other objects DETAIL: drop cascades to table matest1 diff --git a/src/test/regress/expected/numerology.out b/src/test/regress/expected/numerology.out index 77d48434173..c369e5ff738 100644 --- a/src/test/regress/expected/numerology.out +++ b/src/test/regress/expected/numerology.out @@ -6,15 +6,15 @@ -- Trailing junk in numeric literals -- SELECT 123abc; -ERROR: trailing junk after numeric literal at or near "123a" +ERROR: trailing junk after numeric literal at or near "123abc" LINE 1: SELECT 123abc; ^ SELECT 0x0o; -ERROR: trailing junk after numeric literal at or near "0x" +ERROR: trailing junk after numeric literal at or near "0x0o" LINE 1: SELECT 0x0o; ^ SELECT 1_2_3; -ERROR: trailing junk after numeric literal at or near "1_" +ERROR: trailing junk after numeric literal at or near "1_2_3" LINE 1: SELECT 1_2_3; ^ SELECT 0.a; diff --git a/src/test/regress/expected/privileges.out b/src/test/regress/expected/privileges.out index 8213be3d216..6d58833af23 100644 --- a/src/test/regress/expected/privileges.out +++ b/src/test/regress/expected/privileges.out @@ -50,6 +50,73 @@ SET SESSION AUTHORIZATION regress_priv_user8; SET ROLE pg_read_all_settings; RESET ROLE; RESET SESSION AUTHORIZATION; +-- test interaction of SET SESSION AUTHORIZATION and SET ROLE, +-- as well as propagation of these settings to parallel workers +GRANT regress_priv_user9 TO regress_priv_user8; +SET SESSION AUTHORIZATION regress_priv_user8; +SET ROLE regress_priv_user9; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +--------------------+--------------------+--------------------+-------------------- + regress_priv_user8 | regress_priv_user9 | regress_priv_user9 | regress_priv_user9 +(1 row) + +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +--------------------+--------------------+--------------------+-------------------- + regress_priv_user8 | regress_priv_user9 | regress_priv_user9 | regress_priv_user9 +(1 row) + +BEGIN; +SET SESSION AUTHORIZATION regress_priv_user10; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +---------------------+---------------------+---------------------+------ + regress_priv_user10 | regress_priv_user10 | regress_priv_user10 | none +(1 row) + +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +---------------------+---------------------+---------------------+------ + regress_priv_user10 | regress_priv_user10 | regress_priv_user10 | none +(1 row) + +ROLLBACK; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +--------------------+--------------------+--------------------+-------------------- + regress_priv_user8 | regress_priv_user9 | regress_priv_user9 | regress_priv_user9 +(1 row) + +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; + session_user | current_role | current_user | role +--------------------+--------------------+--------------------+-------------------- + regress_priv_user8 | regress_priv_user9 | regress_priv_user9 | regress_priv_user9 +(1 row) + +RESET SESSION AUTHORIZATION; +-- session_user at this point is installation-dependent +SET force_parallel_mode = 0; +SELECT session_user = current_role as c_r_ok, session_user = current_user as c_u_ok, current_setting('role') as role; + c_r_ok | c_u_ok | role +--------+--------+------ + t | t | none +(1 row) + +SET force_parallel_mode = 1; +SELECT session_user = current_role as c_r_ok, session_user = current_user as c_u_ok, current_setting('role') as role; + c_r_ok | c_u_ok | role +--------+--------+------ + t | t | none +(1 row) + +RESET force_parallel_mode; REVOKE pg_read_all_settings FROM regress_priv_user8; DROP USER regress_priv_user10; DROP USER regress_priv_user9; diff --git a/src/test/regress/expected/rowsecurity.out b/src/test/regress/expected/rowsecurity.out index 2d99b897594..2bab32d0b2a 100644 --- a/src/test/regress/expected/rowsecurity.out +++ b/src/test/regress/expected/rowsecurity.out @@ -4511,8 +4511,108 @@ execute q; --------------+--- (0 rows) +-- make sure RLS dependencies in CTEs are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ with cte as (select * from rls_t) select * from cte $$; +prepare r as select current_user, * from rls_f(); +set role regress_rls_alice; +execute r; + current_user | c +-------------------+------------------ + regress_rls_alice | invisible to bob +(1 row) + +set role regress_rls_bob; +execute r; + current_user | c +--------------+--- +(0 rows) + +-- make sure RLS dependencies in subqueries are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from (select * from rls_t) _ $$; +prepare s as select current_user, * from rls_f(); +set role regress_rls_alice; +execute s; + current_user | c +-------------------+------------------ + regress_rls_alice | invisible to bob +(1 row) + +set role regress_rls_bob; +execute s; + current_user | c +--------------+--- +(0 rows) + +-- make sure RLS dependencies in sublinks are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select exists(select * from rls_t)::text $$; +prepare t as select current_user, * from rls_f(); +set role regress_rls_alice; +execute t; + current_user | c +-------------------+------ + regress_rls_alice | true +(1 row) + +set role regress_rls_bob; +execute t; + current_user | c +-----------------+------- + regress_rls_bob | false +(1 row) + +-- make sure RLS dependencies are handled when coercion projections are inserted +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from (select array_agg(c) as cs from rls_t) _ group by cs $$; +prepare u as select current_user, * from rls_f(); +set role regress_rls_alice; +execute u; + current_user | c +-------------------+---------------------- + regress_rls_alice | {"invisible to bob"} +(1 row) + +set role regress_rls_bob; +execute u; + current_user | c +-----------------+--- + regress_rls_bob | +(1 row) + +-- make sure RLS dependencies in security invoker views are handled +reset role; +create view rls_v with (security_invoker) as select * from rls_t; +grant select on rls_v to regress_rls_alice, regress_rls_bob; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from rls_v $$; +prepare v as select current_user, * from rls_f(); +set role regress_rls_alice; +execute v; + current_user | c +-------------------+------------------ + regress_rls_alice | invisible to bob +(1 row) + +set role regress_rls_bob; +execute v; + current_user | c +--------------+--- +(0 rows) + RESET ROLE; DROP FUNCTION rls_f(); +DROP VIEW rls_v; DROP TABLE rls_t; -- -- Clean up objects diff --git a/src/test/regress/expected/rowtypes.out b/src/test/regress/expected/rowtypes.out index 52de8b2de84..9660371e8ba 100644 --- a/src/test/regress/expected/rowtypes.out +++ b/src/test/regress/expected/rowtypes.out @@ -1269,6 +1269,60 @@ select pg_get_viewdef('composite_v', true); (1 row) drop view composite_v; +-- +-- Check cases where the composite comes from a proven-dummy rel (bug #18576) +-- +explain (verbose, costs off) +select (ss.a).x, (ss.a).n from + (select information_schema._pg_expandarray(array[1,2]) AS a) ss; + QUERY PLAN +------------------------------------------------------------------------ + Subquery Scan on ss + Output: (ss.a).x, (ss.a).n + -> ProjectSet + Output: information_schema._pg_expandarray('{1,2}'::integer[]) + -> Result +(5 rows) + +explain (verbose, costs off) +select (ss.a).x, (ss.a).n from + (select information_schema._pg_expandarray(array[1,2]) AS a) ss +where false; + QUERY PLAN +-------------------------- + Result + Output: (a).f1, (a).f2 + One-Time Filter: false +(3 rows) + +explain (verbose, costs off) +with cte(c) as materialized (select row(1, 2)), + cte2(c) as (select * from cte) +select (c).f1 from cte2 as t; + QUERY PLAN +----------------------------------- + CTE Scan on cte + Output: (cte.c).f1 + CTE cte + -> Result + Output: '(1,2)'::record +(5 rows) + +explain (verbose, costs off) +with cte(c) as materialized (select row(1, 2)), + cte2(c) as (select * from cte) +select (c).f1 from cte2 as t +where false; + QUERY PLAN +----------------------------------- + Result + Output: (cte.c).f1 + One-Time Filter: false + CTE cte + -> Result + Output: '(1,2)'::record +(6 rows) + -- -- Tests for component access / FieldSelect -- diff --git a/src/test/regress/expected/select_parallel.out b/src/test/regress/expected/select_parallel.out index 91f74fe47a3..5686e95d104 100644 --- a/src/test/regress/expected/select_parallel.out +++ b/src/test/regress/expected/select_parallel.out @@ -1219,3 +1219,60 @@ SELECT 1 FROM tenk1_vw_sec (9 rows) rollback; +-- test that function option SET ROLE works in parallel workers. +create role regress_parallel_worker; +create function set_and_report_role() returns text as + $$ select current_setting('role') $$ language sql parallel safe + set role = regress_parallel_worker; +create function set_role_and_error(int) returns int as + $$ select 1 / $1 $$ language sql parallel safe + set role = regress_parallel_worker; +set force_parallel_mode = 0; +select set_and_report_role(); + set_and_report_role +------------------------- + regress_parallel_worker +(1 row) + +select set_role_and_error(0); +ERROR: division by zero +CONTEXT: SQL function "set_role_and_error" statement 1 +set force_parallel_mode = 1; +select set_and_report_role(); + set_and_report_role +------------------------- + regress_parallel_worker +(1 row) + +select set_role_and_error(0); +ERROR: division by zero +CONTEXT: SQL function "set_role_and_error" statement 1 +parallel worker +reset force_parallel_mode; +drop function set_and_report_role(); +drop function set_role_and_error(int); +drop role regress_parallel_worker; +-- don't freeze in ParallelFinish while holding an LWLock +BEGIN; +CREATE FUNCTION my_cmp (int4, int4) +RETURNS int LANGUAGE sql AS +$$ + SELECT + CASE WHEN $1 < $2 THEN -1 + WHEN $1 > $2 THEN 1 + ELSE 0 + END; +$$; +CREATE TABLE parallel_hang (i int4); +INSERT INTO parallel_hang + (SELECT * FROM generate_series(1, 400) gs); +CREATE OPERATOR CLASS int4_custom_ops FOR TYPE int4 USING btree AS + OPERATOR 1 < (int4, int4), OPERATOR 2 <= (int4, int4), + OPERATOR 3 = (int4, int4), OPERATOR 4 >= (int4, int4), + OPERATOR 5 > (int4, int4), FUNCTION 1 my_cmp(int4, int4); +CREATE UNIQUE INDEX parallel_hang_idx + ON parallel_hang + USING btree (i int4_custom_ops); +SET force_parallel_mode = on; +DELETE FROM parallel_hang WHERE 380 <= i AND i <= 420; +ROLLBACK; diff --git a/src/test/regress/expected/timestamptz.out b/src/test/regress/expected/timestamptz.out index 790cae15abd..dd7887256bb 100644 --- a/src/test/regress/expected/timestamptz.out +++ b/src/test/regress/expected/timestamptz.out @@ -293,12 +293,12 @@ SELECT d1 FROM TIMESTAMPTZ_TBL; Fri Feb 14 17:32:01 1997 PST Sat Feb 15 17:32:01 1997 PST Sun Feb 16 17:32:01 1997 PST - Tue Feb 16 17:32:01 0097 PST BC - Sat Feb 16 17:32:01 0097 PST - Thu Feb 16 17:32:01 0597 PST - Tue Feb 16 17:32:01 1097 PST - Sat Feb 16 17:32:01 1697 PST - Thu Feb 16 17:32:01 1797 PST + Tue Feb 16 17:32:01 0097 LMT BC + Sat Feb 16 17:32:01 0097 LMT + Thu Feb 16 17:32:01 0597 LMT + Tue Feb 16 17:32:01 1097 LMT + Sat Feb 16 17:32:01 1697 LMT + Thu Feb 16 17:32:01 1797 LMT Tue Feb 16 17:32:01 1897 PST Sun Feb 16 17:32:01 1997 PST Sat Feb 16 17:32:01 2097 PST @@ -322,19 +322,19 @@ SELECT d1 FROM TIMESTAMPTZ_TBL; SELECT '4714-11-24 00:00:00+00 BC'::timestamptz; timestamptz --------------------------------- - Sun Nov 23 16:00:00 4714 PST BC + Sun Nov 23 16:07:02 4714 LMT BC (1 row) SELECT '4714-11-23 16:00:00-08 BC'::timestamptz; timestamptz --------------------------------- - Sun Nov 23 16:00:00 4714 PST BC + Sun Nov 23 16:07:02 4714 LMT BC (1 row) SELECT 'Sun Nov 23 16:00:00 4714 PST BC'::timestamptz; timestamptz --------------------------------- - Sun Nov 23 16:00:00 4714 PST BC + Sun Nov 23 16:07:02 4714 LMT BC (1 row) SELECT '4714-11-23 23:59:59+00 BC'::timestamptz; -- out of range @@ -424,12 +424,12 @@ SELECT d1 FROM TIMESTAMPTZ_TBL --------------------------------- -infinity Wed Dec 31 16:00:00 1969 PST - Tue Feb 16 17:32:01 0097 PST BC - Sat Feb 16 17:32:01 0097 PST - Thu Feb 16 17:32:01 0597 PST - Tue Feb 16 17:32:01 1097 PST - Sat Feb 16 17:32:01 1697 PST - Thu Feb 16 17:32:01 1797 PST + Tue Feb 16 17:32:01 0097 LMT BC + Sat Feb 16 17:32:01 0097 LMT + Thu Feb 16 17:32:01 0597 LMT + Tue Feb 16 17:32:01 1097 LMT + Sat Feb 16 17:32:01 1697 LMT + Thu Feb 16 17:32:01 1797 LMT Tue Feb 16 17:32:01 1897 PST Wed Feb 28 17:32:01 1996 PST Thu Feb 29 17:32:01 1996 PST @@ -492,12 +492,12 @@ SELECT d1 FROM TIMESTAMPTZ_TBL Fri Feb 14 17:32:01 1997 PST Sat Feb 15 17:32:01 1997 PST Sun Feb 16 17:32:01 1997 PST - Tue Feb 16 17:32:01 0097 PST BC - Sat Feb 16 17:32:01 0097 PST - Thu Feb 16 17:32:01 0597 PST - Tue Feb 16 17:32:01 1097 PST - Sat Feb 16 17:32:01 1697 PST - Thu Feb 16 17:32:01 1797 PST + Tue Feb 16 17:32:01 0097 LMT BC + Sat Feb 16 17:32:01 0097 LMT + Thu Feb 16 17:32:01 0597 LMT + Tue Feb 16 17:32:01 1097 LMT + Sat Feb 16 17:32:01 1697 LMT + Thu Feb 16 17:32:01 1797 LMT Tue Feb 16 17:32:01 1897 PST Sun Feb 16 17:32:01 1997 PST Sat Feb 16 17:32:01 2097 PST @@ -524,12 +524,12 @@ SELECT d1 FROM TIMESTAMPTZ_TBL -infinity Wed Dec 31 16:00:00 1969 PST Thu Jan 02 00:00:00 1997 PST - Tue Feb 16 17:32:01 0097 PST BC - Sat Feb 16 17:32:01 0097 PST - Thu Feb 16 17:32:01 0597 PST - Tue Feb 16 17:32:01 1097 PST - Sat Feb 16 17:32:01 1697 PST - Thu Feb 16 17:32:01 1797 PST + Tue Feb 16 17:32:01 0097 LMT BC + Sat Feb 16 17:32:01 0097 LMT + Thu Feb 16 17:32:01 0597 LMT + Tue Feb 16 17:32:01 1097 LMT + Sat Feb 16 17:32:01 1697 LMT + Thu Feb 16 17:32:01 1797 LMT Tue Feb 16 17:32:01 1897 PST Wed Feb 28 17:32:01 1996 PST Thu Feb 29 17:32:01 1996 PST @@ -883,12 +883,12 @@ SELECT d1 as timestamptz, Fri Feb 14 17:32:01 1997 PST | 1997 | 2 | 14 | 17 | 32 | 1 Sat Feb 15 17:32:01 1997 PST | 1997 | 2 | 15 | 17 | 32 | 1 Sun Feb 16 17:32:01 1997 PST | 1997 | 2 | 16 | 17 | 32 | 1 - Tue Feb 16 17:32:01 0097 PST BC | -97 | 2 | 16 | 17 | 32 | 1 - Sat Feb 16 17:32:01 0097 PST | 97 | 2 | 16 | 17 | 32 | 1 - Thu Feb 16 17:32:01 0597 PST | 597 | 2 | 16 | 17 | 32 | 1 - Tue Feb 16 17:32:01 1097 PST | 1097 | 2 | 16 | 17 | 32 | 1 - Sat Feb 16 17:32:01 1697 PST | 1697 | 2 | 16 | 17 | 32 | 1 - Thu Feb 16 17:32:01 1797 PST | 1797 | 2 | 16 | 17 | 32 | 1 + Tue Feb 16 17:32:01 0097 LMT BC | -97 | 2 | 16 | 17 | 32 | 1 + Sat Feb 16 17:32:01 0097 LMT | 97 | 2 | 16 | 17 | 32 | 1 + Thu Feb 16 17:32:01 0597 LMT | 597 | 2 | 16 | 17 | 32 | 1 + Tue Feb 16 17:32:01 1097 LMT | 1097 | 2 | 16 | 17 | 32 | 1 + Sat Feb 16 17:32:01 1697 LMT | 1697 | 2 | 16 | 17 | 32 | 1 + Thu Feb 16 17:32:01 1797 LMT | 1797 | 2 | 16 | 17 | 32 | 1 Tue Feb 16 17:32:01 1897 PST | 1897 | 2 | 16 | 17 | 32 | 1 Sun Feb 16 17:32:01 1997 PST | 1997 | 2 | 16 | 17 | 32 | 1 Sat Feb 16 17:32:01 2097 PST | 2097 | 2 | 16 | 17 | 32 | 1 @@ -957,12 +957,12 @@ SELECT d1 as timestamptz, Fri Feb 14 17:32:01 1997 PST | 1 | 1000 | 1000000 Sat Feb 15 17:32:01 1997 PST | 1 | 1000 | 1000000 Sun Feb 16 17:32:01 1997 PST | 1 | 1000 | 1000000 - Tue Feb 16 17:32:01 0097 PST BC | 1 | 1000 | 1000000 - Sat Feb 16 17:32:01 0097 PST | 1 | 1000 | 1000000 - Thu Feb 16 17:32:01 0597 PST | 1 | 1000 | 1000000 - Tue Feb 16 17:32:01 1097 PST | 1 | 1000 | 1000000 - Sat Feb 16 17:32:01 1697 PST | 1 | 1000 | 1000000 - Thu Feb 16 17:32:01 1797 PST | 1 | 1000 | 1000000 + Tue Feb 16 17:32:01 0097 LMT BC | 1 | 1000 | 1000000 + Sat Feb 16 17:32:01 0097 LMT | 1 | 1000 | 1000000 + Thu Feb 16 17:32:01 0597 LMT | 1 | 1000 | 1000000 + Tue Feb 16 17:32:01 1097 LMT | 1 | 1000 | 1000000 + Sat Feb 16 17:32:01 1697 LMT | 1 | 1000 | 1000000 + Thu Feb 16 17:32:01 1797 LMT | 1 | 1000 | 1000000 Tue Feb 16 17:32:01 1897 PST | 1 | 1000 | 1000000 Sun Feb 16 17:32:01 1997 PST | 1 | 1000 | 1000000 Sat Feb 16 17:32:01 2097 PST | 1 | 1000 | 1000000 @@ -1032,12 +1032,12 @@ SELECT d1 as timestamptz, Fri Feb 14 17:32:01 1997 PST | 1997 | 7 | 5 | 5 | 45 Sat Feb 15 17:32:01 1997 PST | 1997 | 7 | 6 | 6 | 46 Sun Feb 16 17:32:01 1997 PST | 1997 | 7 | 7 | 0 | 47 - Tue Feb 16 17:32:01 0097 PST BC | -97 | 7 | 2 | 2 | 47 - Sat Feb 16 17:32:01 0097 PST | 97 | 7 | 6 | 6 | 47 - Thu Feb 16 17:32:01 0597 PST | 597 | 7 | 4 | 4 | 47 - Tue Feb 16 17:32:01 1097 PST | 1097 | 7 | 2 | 2 | 47 - Sat Feb 16 17:32:01 1697 PST | 1697 | 7 | 6 | 6 | 47 - Thu Feb 16 17:32:01 1797 PST | 1797 | 7 | 4 | 4 | 47 + Tue Feb 16 17:32:01 0097 LMT BC | -97 | 7 | 2 | 2 | 47 + Sat Feb 16 17:32:01 0097 LMT | 97 | 7 | 6 | 6 | 47 + Thu Feb 16 17:32:01 0597 LMT | 597 | 7 | 4 | 4 | 47 + Tue Feb 16 17:32:01 1097 LMT | 1097 | 7 | 2 | 2 | 47 + Sat Feb 16 17:32:01 1697 LMT | 1697 | 7 | 6 | 6 | 47 + Thu Feb 16 17:32:01 1797 LMT | 1797 | 7 | 4 | 4 | 47 Tue Feb 16 17:32:01 1897 PST | 1897 | 7 | 2 | 2 | 47 Sun Feb 16 17:32:01 1997 PST | 1997 | 7 | 7 | 0 | 47 Sat Feb 16 17:32:01 2097 PST | 2097 | 7 | 6 | 6 | 47 @@ -1109,12 +1109,12 @@ SELECT d1 as timestamptz, Fri Feb 14 17:32:01 1997 PST | 199 | 20 | 2 | 2450495 | 855970321 Sat Feb 15 17:32:01 1997 PST | 199 | 20 | 2 | 2450496 | 856056721 Sun Feb 16 17:32:01 1997 PST | 199 | 20 | 2 | 2450497 | 856143121 - Tue Feb 16 17:32:01 0097 PST BC | -10 | -1 | -1 | 1686043 | -65192682479 - Sat Feb 16 17:32:01 0097 PST | 9 | 1 | 1 | 1756537 | -59102000879 - Thu Feb 16 17:32:01 0597 PST | 59 | 6 | 1 | 1939158 | -43323546479 - Tue Feb 16 17:32:01 1097 PST | 109 | 11 | 2 | 2121779 | -27545092079 - Sat Feb 16 17:32:01 1697 PST | 169 | 17 | 2 | 2340925 | -8610877679 - Thu Feb 16 17:32:01 1797 PST | 179 | 18 | 2 | 2377449 | -5455204079 + Tue Feb 16 17:32:01 0097 LMT BC | -10 | -1 | -1 | 1686043 | -65192682901 + Sat Feb 16 17:32:01 0097 LMT | 9 | 1 | 1 | 1756537 | -59102001301 + Thu Feb 16 17:32:01 0597 LMT | 59 | 6 | 1 | 1939158 | -43323546901 + Tue Feb 16 17:32:01 1097 LMT | 109 | 11 | 2 | 2121779 | -27545092501 + Sat Feb 16 17:32:01 1697 LMT | 169 | 17 | 2 | 2340925 | -8610878101 + Thu Feb 16 17:32:01 1797 LMT | 179 | 18 | 2 | 2377449 | -5455204501 Tue Feb 16 17:32:01 1897 PST | 189 | 19 | 2 | 2413973 | -2299530479 Sun Feb 16 17:32:01 1997 PST | 199 | 20 | 2 | 2450497 | 856143121 Sat Feb 16 17:32:01 2097 PST | 209 | 21 | 3 | 2487022 | 4011903121 @@ -1184,12 +1184,12 @@ SELECT d1 as timestamptz, Fri Feb 14 17:32:01 1997 PST | -28800 | -8 | 0 Sat Feb 15 17:32:01 1997 PST | -28800 | -8 | 0 Sun Feb 16 17:32:01 1997 PST | -28800 | -8 | 0 - Tue Feb 16 17:32:01 0097 PST BC | -28800 | -8 | 0 - Sat Feb 16 17:32:01 0097 PST | -28800 | -8 | 0 - Thu Feb 16 17:32:01 0597 PST | -28800 | -8 | 0 - Tue Feb 16 17:32:01 1097 PST | -28800 | -8 | 0 - Sat Feb 16 17:32:01 1697 PST | -28800 | -8 | 0 - Thu Feb 16 17:32:01 1797 PST | -28800 | -8 | 0 + Tue Feb 16 17:32:01 0097 LMT BC | -28378 | -7 | -52 + Sat Feb 16 17:32:01 0097 LMT | -28378 | -7 | -52 + Thu Feb 16 17:32:01 0597 LMT | -28378 | -7 | -52 + Tue Feb 16 17:32:01 1097 LMT | -28378 | -7 | -52 + Sat Feb 16 17:32:01 1697 LMT | -28378 | -7 | -52 + Thu Feb 16 17:32:01 1797 LMT | -28378 | -7 | -52 Tue Feb 16 17:32:01 1897 PST | -28800 | -8 | 0 Sun Feb 16 17:32:01 1997 PST | -28800 | -8 | 0 Sat Feb 16 17:32:01 2097 PST | -28800 | -8 | 0 @@ -1263,12 +1263,12 @@ SELECT d1 as "timestamp", Fri Feb 14 17:32:01 1997 PST | 1000000 | 1000.000 | 1.000000 | 2450495 | 855970321.000000 Sat Feb 15 17:32:01 1997 PST | 1000000 | 1000.000 | 1.000000 | 2450496 | 856056721.000000 Sun Feb 16 17:32:01 1997 PST | 1000000 | 1000.000 | 1.000000 | 2450497 | 856143121.000000 - Tue Feb 16 17:32:01 0097 PST BC | 1000000 | 1000.000 | 1.000000 | 1686043 | -65192682479.000000 - Sat Feb 16 17:32:01 0097 PST | 1000000 | 1000.000 | 1.000000 | 1756537 | -59102000879.000000 - Thu Feb 16 17:32:01 0597 PST | 1000000 | 1000.000 | 1.000000 | 1939158 | -43323546479.000000 - Tue Feb 16 17:32:01 1097 PST | 1000000 | 1000.000 | 1.000000 | 2121779 | -27545092079.000000 - Sat Feb 16 17:32:01 1697 PST | 1000000 | 1000.000 | 1.000000 | 2340925 | -8610877679.000000 - Thu Feb 16 17:32:01 1797 PST | 1000000 | 1000.000 | 1.000000 | 2377449 | -5455204079.000000 + Tue Feb 16 17:32:01 0097 LMT BC | 1000000 | 1000.000 | 1.000000 | 1686043 | -65192682901.000000 + Sat Feb 16 17:32:01 0097 LMT | 1000000 | 1000.000 | 1.000000 | 1756537 | -59102001301.000000 + Thu Feb 16 17:32:01 0597 LMT | 1000000 | 1000.000 | 1.000000 | 1939158 | -43323546901.000000 + Tue Feb 16 17:32:01 1097 LMT | 1000000 | 1000.000 | 1.000000 | 2121779 | -27545092501.000000 + Sat Feb 16 17:32:01 1697 LMT | 1000000 | 1000.000 | 1.000000 | 2340925 | -8610878101.000000 + Thu Feb 16 17:32:01 1797 LMT | 1000000 | 1000.000 | 1.000000 | 2377449 | -5455204501.000000 Tue Feb 16 17:32:01 1897 PST | 1000000 | 1000.000 | 1.000000 | 2413973 | -2299530479.000000 Sun Feb 16 17:32:01 1997 PST | 1000000 | 1000.000 | 1.000000 | 2450497 | 856143121.000000 Sat Feb 16 17:32:01 2097 PST | 1000000 | 1000.000 | 1.000000 | 2487022 | 4011903121.000000 @@ -2258,7 +2258,7 @@ INSERT INTO TIMESTAMPTZ_TST VALUES(4, '1000000312 23:58:48 IST'); SELECT * FROM TIMESTAMPTZ_TST ORDER BY a; a | b ---+-------------------------------- - 1 | Wed Mar 12 13:58:48 1000 PST + 1 | Wed Mar 12 14:05:50 1000 LMT 2 | Sun Mar 12 14:58:48 10000 PDT 3 | Sun Mar 12 14:58:48 100000 PDT 3 | Sun Mar 12 14:58:48 10000 PDT @@ -2369,7 +2369,14 @@ SELECT make_timestamptz(2008, 12, 10, 10, 10, 10, 'EDT'); Wed Dec 10 09:10:10 2008 EST (1 row) -SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'PST8PDT'); +SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'FOO8BAR'); + make_timestamptz +------------------------------ + Wed Dec 10 13:10:10 2014 EST +(1 row) + +-- POSIX +SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'PST8PDT,M3.2.0,M11.1.0'); make_timestamptz ------------------------------ Wed Dec 10 13:10:10 2014 EST diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index e275871e8c4..3a248c6306b 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -625,7 +625,7 @@ initialize_environment(void) /* * Set timezone and datestyle for datetime-related tests */ - setenv("PGTZ", "PST8PDT", 1); + setenv("PGTZ", "America/Los_Angeles", 1); setenv("PGDATESTYLE", "Postgres, MDY", 1); /* diff --git a/src/test/regress/regress.c b/src/test/regress/regress.c index ba3532a51e8..6764589418e 100644 --- a/src/test/regress/regress.c +++ b/src/test/regress/regress.c @@ -639,6 +639,29 @@ make_tuple_indirect(PG_FUNCTION_ARGS) PG_RETURN_POINTER(newtup->t_data); } +PG_FUNCTION_INFO_V1(get_environ); + +Datum +get_environ(PG_FUNCTION_ARGS) +{ + extern char **environ; + int nvals = 0; + ArrayType *result; + Datum *env; + + for (char **s = environ; *s; s++) + nvals++; + + env = palloc(nvals * sizeof(Datum)); + + for (int i = 0; i < nvals; i++) + env[i] = CStringGetTextDatum(environ[i]); + + result = construct_array(env, nvals, TEXTOID, -1, false, TYPALIGN_INT); + + PG_RETURN_POINTER(result); +} + PG_FUNCTION_INFO_V1(regress_setenv); Datum diff --git a/src/test/regress/sql/advisory_lock.sql b/src/test/regress/sql/advisory_lock.sql index 57c47c0faca..8513ab8e98f 100644 --- a/src/test/regress/sql/advisory_lock.sql +++ b/src/test/regress/sql/advisory_lock.sql @@ -2,6 +2,8 @@ -- ADVISORY LOCKS -- +SELECT oid AS datoid FROM pg_database WHERE datname = current_database() \gset + BEGIN; SELECT @@ -9,14 +11,14 @@ SELECT pg_advisory_xact_lock(1, 1), pg_advisory_xact_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; -- pg_advisory_unlock_all() shouldn't release xact locks SELECT pg_advisory_unlock_all(); -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; -- can't unlock xact locks @@ -28,7 +30,7 @@ SELECT -- automatically release xact locks at commit COMMIT; -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; BEGIN; @@ -39,7 +41,7 @@ SELECT pg_advisory_xact_lock(1, 1), pg_advisory_xact_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; SELECT @@ -49,7 +51,7 @@ SELECT ROLLBACK; SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; @@ -60,7 +62,7 @@ SELECT pg_advisory_unlock(1, 1), pg_advisory_unlock(1, 1), pg_advisory_unlock_shared(2, 2), pg_advisory_unlock_shared(2, 2); -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; BEGIN; @@ -71,7 +73,7 @@ SELECT pg_advisory_lock(1, 1), pg_advisory_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; SELECT @@ -81,14 +83,14 @@ SELECT ROLLBACK; SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; -- releasing all session locks SELECT pg_advisory_unlock_all(); -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; BEGIN; @@ -102,12 +104,12 @@ SELECT pg_advisory_xact_lock_shared(2, 2), pg_advisory_xact_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; COMMIT; -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; -- grabbing session locks multiple times @@ -118,7 +120,7 @@ SELECT pg_advisory_lock_shared(2, 2), pg_advisory_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; SELECT @@ -127,7 +129,7 @@ SELECT pg_advisory_unlock(1, 1), pg_advisory_unlock(1, 1), pg_advisory_unlock_shared(2, 2), pg_advisory_unlock_shared(2, 2); -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; -- .. and releasing them all at once @@ -138,9 +140,9 @@ SELECT pg_advisory_lock_shared(2, 2), pg_advisory_lock_shared(2, 2); SELECT locktype, classid, objid, objsubid, mode, granted - FROM pg_locks WHERE locktype = 'advisory' + FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid ORDER BY classid, objid, objsubid; SELECT pg_advisory_unlock_all(); -SELECT count(*) FROM pg_locks WHERE locktype = 'advisory'; +SELECT count(*) FROM pg_locks WHERE locktype = 'advisory' AND database = :datoid; diff --git a/src/test/regress/sql/collate.icu.utf8.sql b/src/test/regress/sql/collate.icu.utf8.sql index b0ddc7db44b..397b96bb7d0 100644 --- a/src/test/regress/sql/collate.icu.utf8.sql +++ b/src/test/regress/sql/collate.icu.utf8.sql @@ -749,6 +749,65 @@ INSERT INTO test33 VALUES (2, 'DEF'); -- they end up in the same partition (but it's platform-dependent which one) SELECT (SELECT count(*) FROM test33_0) <> (SELECT count(*) FROM test33_1); +-- +-- Bug #18568 +-- +-- Partitionwise aggregate (full or partial) should not be used when a +-- partition key's collation doesn't match that of the GROUP BY column it is +-- matched with. +SET max_parallel_workers_per_gather TO 0; +SET enable_incremental_sort TO off; + +CREATE TABLE pagg_tab3 (a text, c text collate case_insensitive) PARTITION BY LIST(c collate "C"); +CREATE TABLE pagg_tab3_p1 PARTITION OF pagg_tab3 FOR VALUES IN ('a', 'b'); +CREATE TABLE pagg_tab3_p2 PARTITION OF pagg_tab3 FOR VALUES IN ('B', 'A'); +INSERT INTO pagg_tab3 SELECT i % 4 + 1, substr('abAB', (i % 4) + 1 , 1) FROM generate_series(0, 19) i; +ANALYZE pagg_tab3; + +SET enable_partitionwise_aggregate TO false; +EXPLAIN (COSTS OFF) +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + +-- No "full" partitionwise aggregation allowed, though "partial" is allowed. +SET enable_partitionwise_aggregate TO true; +EXPLAIN (COSTS OFF) +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; +SELECT upper(c collate case_insensitive), count(c) FROM pagg_tab3 GROUP BY c collate case_insensitive ORDER BY 1; + +-- OK to use full partitionwise aggregate after changing the GROUP BY column's +-- collation to be the same as that of the partition key. +EXPLAIN (COSTS OFF) +SELECT c collate "C", count(c) FROM pagg_tab3 GROUP BY c collate "C" ORDER BY 1; +SELECT c collate "C", count(c) FROM pagg_tab3 GROUP BY c collate "C" ORDER BY 1; + +-- Partitionwise join should not be allowed too when the collation used by the +-- join keys doesn't match the partition key collation. +SET enable_partitionwise_join TO false; +EXPLAIN (COSTS OFF) +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + +SET enable_partitionwise_join TO true; +EXPLAIN (COSTS OFF) +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; +SELECT t1.c, count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c GROUP BY 1 ORDER BY t1.c COLLATE "C"; + +-- OK when the join clause uses the same collation as the partition key. +EXPLAIN (COSTS OFF) +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + +SET enable_partitionwise_join TO false; +EXPLAIN (COSTS OFF) +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; +SELECT t1.c COLLATE "C", count(t2.c) FROM pagg_tab3 t1 JOIN pagg_tab3 t2 ON t1.c = t2.c COLLATE "C" GROUP BY t1.c COLLATE "C" ORDER BY t1.c COLLATE "C"; + +DROP TABLE pagg_tab3; + +RESET enable_partitionwise_aggregate; +RESET max_parallel_workers_per_gather; +RESET enable_incremental_sort; -- cleanup RESET search_path; diff --git a/src/test/regress/sql/copydml.sql b/src/test/regress/sql/copydml.sql index 4578342253b..b7eeb0eed81 100644 --- a/src/test/regress/sql/copydml.sql +++ b/src/test/regress/sql/copydml.sql @@ -66,6 +66,10 @@ create rule qqq as on delete to copydml_test where old.t <> 'f' do instead inser copy (delete from copydml_test) to stdout; drop rule qqq on copydml_test; +create rule qqq as on insert to copydml_test do instead notify copydml_test; +copy (insert into copydml_test default values) to stdout; +drop rule qqq on copydml_test; + -- triggers create function qqq_trig() returns trigger as $$ begin diff --git a/src/test/regress/sql/foreign_key.sql b/src/test/regress/sql/foreign_key.sql index 5e3291e0446..4128e4e4049 100644 --- a/src/test/regress/sql/foreign_key.sql +++ b/src/test/regress/sql/foreign_key.sql @@ -1417,6 +1417,23 @@ ALTER TABLE fk_partitioned_fk ATTACH PARTITION fk_partitioned_fk_2 -- leave these tables around intentionally +-- Verify that attaching a table that's referenced by an existing FK +-- in the parent throws an error +CREATE TABLE fk_partitioned_pk_6 (a int PRIMARY KEY); +CREATE TABLE fk_partitioned_fk_6 (a int REFERENCES fk_partitioned_pk_6) PARTITION BY LIST (a); +ALTER TABLE fk_partitioned_fk_6 ATTACH PARTITION fk_partitioned_pk_6 FOR VALUES IN (1); +DROP TABLE fk_partitioned_pk_6, fk_partitioned_fk_6; + +-- This case is similar to above, but the referenced relation is one level +-- lower in the hierarchy. This one fails in a different way as the above, +-- because we don't bother to protect against this case explicitly. If the +-- current error stops happening, we'll need to add a better protection. +CREATE TABLE fk_partitioned_pk_6 (a int PRIMARY KEY) PARTITION BY list (a); +CREATE TABLE fk_partitioned_pk_61 PARTITION OF fk_partitioned_pk_6 FOR VALUES IN (1); +CREATE TABLE fk_partitioned_fk_6 (a int REFERENCES fk_partitioned_pk_61) PARTITION BY LIST (a); +ALTER TABLE fk_partitioned_fk_6 ATTACH PARTITION fk_partitioned_pk_6 FOR VALUES IN (1); +DROP TABLE fk_partitioned_pk_6, fk_partitioned_fk_6; + -- test the case when the referenced table is owned by a different user create role regress_other_partitioned_fk_owner; grant references on fk_notpartitioned_pk to regress_other_partitioned_fk_owner; @@ -2069,3 +2086,64 @@ UPDATE fkpart11.pk SET a = 3 WHERE a = 4; UPDATE fkpart11.pk SET a = 1 WHERE a = 2; DROP SCHEMA fkpart11 CASCADE; + +-- When a table is attached as partition to a partitioned table that has +-- a foreign key to another partitioned table, it acquires a clone of the +-- FK. Upon detach, this clone is not removed, but instead becomes an +-- independent FK. If it then attaches to the partitioned table again, +-- the FK from the parent "takes over" ownership of the independent FK rather +-- than creating a separate one. +CREATE SCHEMA fkpart12 + CREATE TABLE fk_p ( id int, jd int, PRIMARY KEY(id, jd)) PARTITION BY list (id) + CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) PARTITION BY list (jd) + CREATE TABLE fk_p_1_1 PARTITION OF fk_p_1 FOR VALUES IN (1) + CREATE TABLE fk_p_1_2 (x int, y int, jd int NOT NULL, id int NOT NULL) + CREATE TABLE fk_p_2 PARTITION OF fk_p FOR VALUES IN (2) PARTITION BY list (jd) + CREATE TABLE fk_p_2_1 PARTITION OF fk_p_2 FOR VALUES IN (1) + CREATE TABLE fk_p_2_2 PARTITION OF fk_p_2 FOR VALUES IN (2) + CREATE TABLE fk_r_1 ( p_jd int NOT NULL, x int, id int PRIMARY KEY, p_id int NOT NULL) + CREATE TABLE fk_r_2 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL) PARTITION BY list (id) + CREATE TABLE fk_r_2_1 PARTITION OF fk_r_2 FOR VALUES IN (2, 1) + CREATE TABLE fk_r ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL, + FOREIGN KEY (p_id, p_jd) REFERENCES fk_p (id, jd) + ) PARTITION BY list (id); +SET search_path TO fkpart12; + +ALTER TABLE fk_p_1_2 DROP COLUMN x, DROP COLUMN y; +ALTER TABLE fk_p_1 ATTACH PARTITION fk_p_1_2 FOR VALUES IN (2); +ALTER TABLE fk_r_1 DROP COLUMN x; + +INSERT INTO fk_p VALUES (1, 1); + +ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1); +ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2); + +\d fk_r_2 + +INSERT INTO fk_r VALUES (1, 1, 1); +INSERT INTO fk_r VALUES (2, 2, 1); + +ALTER TABLE fk_r DETACH PARTITION fk_r_1; +ALTER TABLE fk_r DETACH PARTITION fk_r_2; + +\d fk_r_2 + +INSERT INTO fk_r_1 (id, p_id, p_jd) VALUES (2, 1, 2); -- should fail +DELETE FROM fk_p; -- should fail + +ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1); +ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2); + +\d fk_r_2 + +DELETE FROM fk_p; -- should fail + +-- these should all fail +ALTER TABLE fk_r_1 DROP CONSTRAINT fk_r_p_id_p_jd_fkey; +ALTER TABLE fk_r DROP CONSTRAINT fk_r_p_id_p_jd_fkey1; +ALTER TABLE fk_r_2 DROP CONSTRAINT fk_r_p_id_p_jd_fkey; + +SET client_min_messages TO warning; +DROP SCHEMA fkpart12 CASCADE; +RESET client_min_messages; +RESET search_path; diff --git a/src/test/regress/sql/horology.sql b/src/test/regress/sql/horology.sql index 7d6153a4329..d3a68264d7c 100644 --- a/src/test/regress/sql/horology.sql +++ b/src/test/regress/sql/horology.sql @@ -1,9 +1,9 @@ -- -- HOROLOGY -- -SET DateStyle = 'Postgres, MDY'; -SHOW TimeZone; -- Many of these tests depend on the prevailing setting +SHOW TimeZone; -- Many of these tests depend on the prevailing settings +SHOW DateStyle; -- -- Test various input formats diff --git a/src/test/regress/sql/identity.sql b/src/test/regress/sql/identity.sql index 91d2e443b4d..7537258a754 100644 --- a/src/test/regress/sql/identity.sql +++ b/src/test/regress/sql/identity.sql @@ -419,3 +419,12 @@ SELECT * FROM itest15; SELECT * FROM itest16; DROP TABLE itest15; DROP TABLE itest16; + +-- For testing of pg_dump and pg_upgrade, leave behind some identity +-- sequences whose logged-ness doesn't match their owning table's. +CREATE TABLE identity_dump_logged (a INT GENERATED ALWAYS AS IDENTITY); +ALTER SEQUENCE identity_dump_logged_a_seq SET UNLOGGED; +CREATE UNLOGGED TABLE identity_dump_unlogged (a INT GENERATED ALWAYS AS IDENTITY); +ALTER SEQUENCE identity_dump_unlogged_a_seq SET LOGGED; +SELECT relname, relpersistence FROM pg_class + WHERE relname ~ '^identity_dump_' ORDER BY 1; diff --git a/src/test/regress/sql/inherit.sql b/src/test/regress/sql/inherit.sql index bd908343042..eb0d512122e 100644 --- a/src/test/regress/sql/inherit.sql +++ b/src/test/regress/sql/inherit.sql @@ -562,6 +562,14 @@ select min(1-id) from matest0; reset enable_seqscan; reset enable_parallel_append; +explain (verbose, costs off) -- bug #18652 +select 1 - id as c from +(select id from matest3 t1 union all select id * 2 from matest3 t2) ss +order by c; +select 1 - id as c from +(select id from matest3 t1 union all select id * 2 from matest3 t2) ss +order by c; + drop table matest0 cascade; -- diff --git a/src/test/regress/sql/privileges.sql b/src/test/regress/sql/privileges.sql index 55b5df584bb..fe657be533e 100644 --- a/src/test/regress/sql/privileges.sql +++ b/src/test/regress/sql/privileges.sql @@ -60,6 +60,39 @@ SET ROLE pg_read_all_settings; RESET ROLE; RESET SESSION AUTHORIZATION; + +-- test interaction of SET SESSION AUTHORIZATION and SET ROLE, +-- as well as propagation of these settings to parallel workers +GRANT regress_priv_user9 TO regress_priv_user8; + +SET SESSION AUTHORIZATION regress_priv_user8; +SET ROLE regress_priv_user9; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; + +BEGIN; +SET SESSION AUTHORIZATION regress_priv_user10; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; +ROLLBACK; +SET force_parallel_mode = 0; +SELECT session_user, current_role, current_user, current_setting('role') as role; +SET force_parallel_mode = 1; +SELECT session_user, current_role, current_user, current_setting('role') as role; + +RESET SESSION AUTHORIZATION; +-- session_user at this point is installation-dependent +SET force_parallel_mode = 0; +SELECT session_user = current_role as c_r_ok, session_user = current_user as c_u_ok, current_setting('role') as role; +SET force_parallel_mode = 1; +SELECT session_user = current_role as c_r_ok, session_user = current_user as c_u_ok, current_setting('role') as role; + +RESET force_parallel_mode; + REVOKE pg_read_all_settings FROM regress_priv_user8; DROP USER regress_priv_user10; diff --git a/src/test/regress/sql/rowsecurity.sql b/src/test/regress/sql/rowsecurity.sql index 34ea2045603..e928e1cb67a 100644 --- a/src/test/regress/sql/rowsecurity.sql +++ b/src/test/regress/sql/rowsecurity.sql @@ -2201,8 +2201,66 @@ execute q; set role regress_rls_bob; execute q; +-- make sure RLS dependencies in CTEs are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ with cte as (select * from rls_t) select * from cte $$; +prepare r as select current_user, * from rls_f(); +set role regress_rls_alice; +execute r; +set role regress_rls_bob; +execute r; + +-- make sure RLS dependencies in subqueries are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from (select * from rls_t) _ $$; +prepare s as select current_user, * from rls_f(); +set role regress_rls_alice; +execute s; +set role regress_rls_bob; +execute s; + +-- make sure RLS dependencies in sublinks are handled +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select exists(select * from rls_t)::text $$; +prepare t as select current_user, * from rls_f(); +set role regress_rls_alice; +execute t; +set role regress_rls_bob; +execute t; + +-- make sure RLS dependencies are handled when coercion projections are inserted +reset role; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from (select array_agg(c) as cs from rls_t) _ group by cs $$; +prepare u as select current_user, * from rls_f(); +set role regress_rls_alice; +execute u; +set role regress_rls_bob; +execute u; + +-- make sure RLS dependencies in security invoker views are handled +reset role; +create view rls_v with (security_invoker) as select * from rls_t; +grant select on rls_v to regress_rls_alice, regress_rls_bob; +create or replace function rls_f() returns setof rls_t + stable language sql + as $$ select * from rls_v $$; +prepare v as select current_user, * from rls_f(); +set role regress_rls_alice; +execute v; +set role regress_rls_bob; +execute v; + RESET ROLE; DROP FUNCTION rls_f(); +DROP VIEW rls_v; DROP TABLE rls_t; -- diff --git a/src/test/regress/sql/rowtypes.sql b/src/test/regress/sql/rowtypes.sql index da2e74d8a59..76e4ca58d47 100644 --- a/src/test/regress/sql/rowtypes.sql +++ b/src/test/regress/sql/rowtypes.sql @@ -513,6 +513,27 @@ where (select * from (select c as c1) s select pg_get_viewdef('composite_v', true); drop view composite_v; +-- +-- Check cases where the composite comes from a proven-dummy rel (bug #18576) +-- +explain (verbose, costs off) +select (ss.a).x, (ss.a).n from + (select information_schema._pg_expandarray(array[1,2]) AS a) ss; +explain (verbose, costs off) +select (ss.a).x, (ss.a).n from + (select information_schema._pg_expandarray(array[1,2]) AS a) ss +where false; + +explain (verbose, costs off) +with cte(c) as materialized (select row(1, 2)), + cte2(c) as (select * from cte) +select (c).f1 from cte2 as t; +explain (verbose, costs off) +with cte(c) as materialized (select row(1, 2)), + cte2(c) as (select * from cte) +select (c).f1 from cte2 as t +where false; + -- -- Tests for component access / FieldSelect -- diff --git a/src/test/regress/sql/select_parallel.sql b/src/test/regress/sql/select_parallel.sql index 62fb68c7a04..3faf09e405e 100644 --- a/src/test/regress/sql/select_parallel.sql +++ b/src/test/regress/sql/select_parallel.sql @@ -462,3 +462,57 @@ SELECT 1 FROM tenk1_vw_sec WHERE (SELECT sum(f1) FROM int4_tbl WHERE f1 < unique1) < 100; rollback; + +-- test that function option SET ROLE works in parallel workers. +create role regress_parallel_worker; + +create function set_and_report_role() returns text as + $$ select current_setting('role') $$ language sql parallel safe + set role = regress_parallel_worker; + +create function set_role_and_error(int) returns int as + $$ select 1 / $1 $$ language sql parallel safe + set role = regress_parallel_worker; + +set force_parallel_mode = 0; +select set_and_report_role(); +select set_role_and_error(0); +set force_parallel_mode = 1; +select set_and_report_role(); +select set_role_and_error(0); +reset force_parallel_mode; + +drop function set_and_report_role(); +drop function set_role_and_error(int); +drop role regress_parallel_worker; + +-- don't freeze in ParallelFinish while holding an LWLock +BEGIN; + +CREATE FUNCTION my_cmp (int4, int4) +RETURNS int LANGUAGE sql AS +$$ + SELECT + CASE WHEN $1 < $2 THEN -1 + WHEN $1 > $2 THEN 1 + ELSE 0 + END; +$$; + +CREATE TABLE parallel_hang (i int4); +INSERT INTO parallel_hang + (SELECT * FROM generate_series(1, 400) gs); + +CREATE OPERATOR CLASS int4_custom_ops FOR TYPE int4 USING btree AS + OPERATOR 1 < (int4, int4), OPERATOR 2 <= (int4, int4), + OPERATOR 3 = (int4, int4), OPERATOR 4 >= (int4, int4), + OPERATOR 5 > (int4, int4), FUNCTION 1 my_cmp(int4, int4); + +CREATE UNIQUE INDEX parallel_hang_idx + ON parallel_hang + USING btree (i int4_custom_ops); + +SET force_parallel_mode = on; +DELETE FROM parallel_hang WHERE 380 <= i AND i <= 420; + +ROLLBACK; diff --git a/src/test/regress/sql/timestamptz.sql b/src/test/regress/sql/timestamptz.sql index 875479e4962..b493398d583 100644 --- a/src/test/regress/sql/timestamptz.sql +++ b/src/test/regress/sql/timestamptz.sql @@ -436,7 +436,10 @@ SELECT make_timestamptz(1910, 12, 24, 0, 0, 0, 'Nehwon/Lankhmar'); -- abbreviations SELECT make_timestamptz(2008, 12, 10, 10, 10, 10, 'EST'); SELECT make_timestamptz(2008, 12, 10, 10, 10, 10, 'EDT'); -SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'PST8PDT'); +SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'FOO8BAR'); + +-- POSIX +SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, 'PST8PDT,M3.2.0,M11.1.0'); RESET TimeZone; diff --git a/src/timezone/data/tzdata.zi b/src/timezone/data/tzdata.zi index be1c4085920..62e78bb826c 100644 --- a/src/timezone/data/tzdata.zi +++ b/src/timezone/data/tzdata.zi @@ -1,4 +1,4 @@ -# version 2024a +# version 2024b # This zic input file is in the public domain. R d 1916 o - Jun 14 23s 1 S R d 1916 1919 - O Su>=1 23s 0 - @@ -1324,14 +1324,10 @@ R O 1961 1964 - May lastSu 1s 1 S R O 1962 1964 - S lastSu 1s 0 - R p 1916 o - Jun 17 23 1 S R p 1916 o - N 1 1 0 - -R p 1917 o - F 28 23s 1 S -R p 1917 1921 - O 14 23s 0 - -R p 1918 o - Mar 1 23s 1 S -R p 1919 o - F 28 23s 1 S -R p 1920 o - F 29 23s 1 S -R p 1921 o - F 28 23s 1 S +R p 1917 1921 - Mar 1 0 1 S +R p 1917 1921 - O 14 24 0 - R p 1924 o - Ap 16 23s 1 S -R p 1924 o - O 14 23s 0 - +R p 1924 o - O 4 23s 0 - R p 1926 o - Ap 17 23s 1 S R p 1926 1929 - O Sa>=1 23s 0 - R p 1927 o - Ap 9 23s 1 S @@ -1349,8 +1345,9 @@ R p 1938 o - Mar 26 23s 1 S R p 1939 o - Ap 15 23s 1 S R p 1939 o - N 18 23s 0 - R p 1940 o - F 24 23s 1 S -R p 1940 1941 - O 5 23s 0 - +R p 1940 o - O 7 23s 0 - R p 1941 o - Ap 5 23s 1 S +R p 1941 o - O 5 23s 0 - R p 1942 1945 - Mar Sa>=8 23s 1 S R p 1942 o - Ap 25 22s 2 M R p 1942 o - Au 15 22s 1 S @@ -1360,16 +1357,16 @@ R p 1943 1945 - Au Sa>=25 22s 1 S R p 1944 1945 - Ap Sa>=21 22s 2 M R p 1946 o - Ap Sa>=1 23s 1 S R p 1946 o - O Sa>=1 23s 0 - -R p 1947 1965 - Ap Su>=1 2s 1 S +R p 1947 1966 - Ap Su>=1 2s 1 S R p 1947 1965 - O Su>=1 2s 0 - -R p 1977 o - Mar 27 0s 1 S -R p 1977 o - S 25 0s 0 - -R p 1978 1979 - Ap Su>=1 0s 1 S -R p 1978 o - O 1 0s 0 - -R p 1979 1982 - S lastSu 1s 0 - -R p 1980 o - Mar lastSu 0s 1 S -R p 1981 1982 - Mar lastSu 1s 1 S -R p 1983 o - Mar lastSu 2s 1 S +R p 1976 o - S lastSu 1 0 - +R p 1977 o - Mar lastSu 0s 1 S +R p 1977 o - S lastSu 0s 0 - +R p 1978 1980 - Ap Su>=1 1s 1 S +R p 1978 o - O 1 1s 0 - +R p 1979 1980 - S lastSu 1s 0 - +R p 1981 1986 - Mar lastSu 0s 1 S +R p 1981 1985 - S lastSu 0s 0 - R z 1932 o - May 21 0s 1 S R z 1932 1939 - O Su>=1 0s 0 - R z 1933 1939 - Ap Su>=2 0s 1 S @@ -1728,7 +1725,7 @@ R Y 1972 2006 - O lastSu 2 0 S R Y 1987 2006 - Ap Su>=1 2 1 D R Yu 1965 o - Ap lastSu 0 2 DD R Yu 1965 o - O lastSu 2 0 S -R m 1931 o - May 1 23 1 D +R m 1931 o - April 30 0 1 D R m 1931 o - O 1 0 0 S R m 1939 o - F 5 0 1 D R m 1939 o - Jun 25 0 0 S @@ -2096,15 +2093,15 @@ Z Africa/Algiers 0:12:12 - LMT 1891 Mar 16 0 d WE%sT 1981 May 1 - CET Z Africa/Bissau -1:2:20 - LMT 1912 Ja 1 1u --1 - -01 1975 +-1 - %z 1975 0 - GMT Z Africa/Cairo 2:5:9 - LMT 1900 O 2 K EE%sT Z Africa/Casablanca -0:30:20 - LMT 1913 O 26 -0 M +00/+01 1984 Mar 16 -1 - +01 1986 -0 M +00/+01 2018 O 28 3 -1 M +01/+00 +0 M %z 1984 Mar 16 +1 - %z 1986 +0 M %z 2018 O 28 3 +1 M %z Z Africa/Ceuta -0:21:16 - LMT 1901 Ja 1 0u 0 - WET 1918 May 6 23 0 1 WEST 1918 O 7 23 @@ -2115,9 +2112,9 @@ Z Africa/Ceuta -0:21:16 - LMT 1901 Ja 1 0u 1 - CET 1986 1 E CE%sT Z Africa/El_Aaiun -0:52:48 - LMT 1934 --1 - -01 1976 Ap 14 -0 M +00/+01 2018 O 28 3 -1 M +01/+00 +-1 - %z 1976 Ap 14 +0 M %z 2018 O 28 3 +1 M %z Z Africa/Johannesburg 1:52 - LMT 1892 F 8 1:30 - SAST 1903 Mar 2 SA SAST @@ -2132,19 +2129,19 @@ Z Africa/Khartoum 2:10:8 - LMT 1931 Z Africa/Lagos 0:13:35 - LMT 1905 Jul 0 - GMT 1908 Jul 0:13:35 - LMT 1914 -0:30 - +0030 1919 S +0:30 - %z 1919 S 1 - WAT -Z Africa/Maputo 2:10:20 - LMT 1903 Mar +Z Africa/Maputo 2:10:18 - LMT 1909 2 - CAT Z Africa/Monrovia -0:43:8 - LMT 1882 -0:43:8 - MMT 1919 Mar -0:44:30 - MMT 1972 Ja 7 0 - GMT Z Africa/Nairobi 2:27:16 - LMT 1908 May -2:30 - +0230 1928 Jun 30 24 +2:30 - %z 1928 Jun 30 24 3 - EAT 1930 Ja 4 24 -2:30 - +0230 1936 D 31 24 -2:45 - +0245 1942 Jul 31 24 +2:30 - %z 1936 D 31 24 +2:45 - %z 1942 Jul 31 24 3 - EAT Z Africa/Ndjamena 1:0:12 - LMT 1912 1 - WAT 1979 O 14 @@ -2168,7 +2165,7 @@ Z Africa/Tunis 0:40:44 - LMT 1881 May 12 0:9:21 - PMT 1911 Mar 11 1 n CE%sT Z Africa/Windhoek 1:8:24 - LMT 1892 F 8 -1:30 - +0130 1903 Mar +1:30 - %z 1903 Mar 2 - SAST 1942 S 20 2 2 1 SAST 1943 Mar 21 2 2 - SAST 1990 Mar 21 @@ -2191,167 +2188,166 @@ Z America/Anchorage 14:0:24 - LMT 1867 O 19 14:31:37 -9 u Y%sT 1983 N 30 -9 u AK%sT Z America/Araguaina -3:12:48 - LMT 1914 --3 B -03/-02 1990 S 17 --3 - -03 1995 S 14 --3 B -03/-02 2003 S 24 --3 - -03 2012 O 21 --3 B -03/-02 2013 S --3 - -03 +-3 B %z 1990 S 17 +-3 - %z 1995 S 14 +-3 B %z 2003 S 24 +-3 - %z 2012 O 21 +-3 B %z 2013 S +-3 - %z Z America/Argentina/Buenos_Aires -3:53:48 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 A -03/-02 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 A %z Z America/Argentina/Catamarca -4:23:8 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar 3 --4 - -04 1991 O 20 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 Jun --4 - -04 2004 Jun 20 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar 3 +-4 - %z 1991 O 20 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 Jun +-4 - %z 2004 Jun 20 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/Cordoba -4:16:48 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar 3 --4 - -04 1991 O 20 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 A -03/-02 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar 3 +-4 - %z 1991 O 20 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 A %z Z America/Argentina/Jujuy -4:21:12 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1990 Mar 4 --4 - -04 1990 O 28 --4 1 -03 1991 Mar 17 --4 - -04 1991 O 6 --3 1 -02 1992 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1990 Mar 4 +-4 - %z 1990 O 28 +-4 1 %z 1991 Mar 17 +-4 - %z 1991 O 6 +-3 1 %z 1992 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/La_Rioja -4:27:24 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar --4 - -04 1991 May 7 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 Jun --4 - -04 2004 Jun 20 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar +-4 - %z 1991 May 7 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 Jun +-4 - %z 2004 Jun 20 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/Mendoza -4:35:16 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1990 Mar 4 --4 - -04 1990 O 15 --4 1 -03 1991 Mar --4 - -04 1991 O 15 --4 1 -03 1992 Mar --4 - -04 1992 O 18 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 May 23 --4 - -04 2004 S 26 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1990 Mar 4 +-4 - %z 1990 O 15 +-4 1 %z 1991 Mar +-4 - %z 1991 O 15 +-4 1 %z 1992 Mar +-4 - %z 1992 O 18 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 May 23 +-4 - %z 2004 S 26 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/Rio_Gallegos -4:36:52 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 Jun --4 - -04 2004 Jun 20 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 Jun +-4 - %z 2004 Jun 20 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/Salta -4:21:40 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar 3 --4 - -04 1991 O 20 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar 3 +-4 - %z 1991 O 20 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/San_Juan -4:34:4 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar --4 - -04 1991 May 7 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 May 31 --4 - -04 2004 Jul 25 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar +-4 - %z 1991 May 7 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 May 31 +-4 - %z 2004 Jul 25 +-3 A %z 2008 O 18 +-3 - %z Z America/Argentina/San_Luis -4:25:24 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1990 --3 1 -02 1990 Mar 14 --4 - -04 1990 O 15 --4 1 -03 1991 Mar --4 - -04 1991 Jun --3 - -03 1999 O 3 --4 1 -03 2000 Mar 3 --3 - -03 2004 May 31 --4 - -04 2004 Jul 25 --3 A -03/-02 2008 Ja 21 --4 Sa -04/-03 2009 O 11 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1990 +-3 1 %z 1990 Mar 14 +-4 - %z 1990 O 15 +-4 1 %z 1991 Mar +-4 - %z 1991 Jun +-3 - %z 1999 O 3 +-4 1 %z 2000 Mar 3 +-3 - %z 2004 May 31 +-4 - %z 2004 Jul 25 +-3 A %z 2008 Ja 21 +-4 Sa %z 2009 O 11 +-3 - %z Z America/Argentina/Tucuman -4:20:52 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1991 Mar 3 --4 - -04 1991 O 20 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 Jun --4 - -04 2004 Jun 13 --3 A -03/-02 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1991 Mar 3 +-4 - %z 1991 O 20 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 Jun +-4 - %z 2004 Jun 13 +-3 A %z Z America/Argentina/Ushuaia -4:33:12 - LMT 1894 O 31 -4:16:48 - CMT 1920 May --4 - -04 1930 D --4 A -04/-03 1969 O 5 --3 A -03/-02 1999 O 3 --4 A -04/-03 2000 Mar 3 --3 - -03 2004 May 30 --4 - -04 2004 Jun 20 --3 A -03/-02 2008 O 18 --3 - -03 +-4 - %z 1930 D +-4 A %z 1969 O 5 +-3 A %z 1999 O 3 +-4 A %z 2000 Mar 3 +-3 - %z 2004 May 30 +-4 - %z 2004 Jun 20 +-3 A %z 2008 O 18 +-3 - %z Z America/Asuncion -3:50:40 - LMT 1890 -3:50:40 - AMT 1931 O 10 --4 - -04 1972 O --3 - -03 1974 Ap --4 y -04/-03 +-4 - %z 1972 O +-3 - %z 1974 Ap +-4 y %z Z America/Bahia -2:34:4 - LMT 1914 --3 B -03/-02 2003 S 24 --3 - -03 2011 O 16 --3 B -03/-02 2012 O 21 --3 - -03 +-3 B %z 2003 S 24 +-3 - %z 2011 O 16 +-3 B %z 2012 O 21 +-3 - %z Z America/Bahia_Banderas -7:1 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1942 Ap 24 --7 - MST 1949 Ja 14 --8 - PST 1970 +-7 - MST 1970 -7 m M%sT 2010 Ap 4 2 -6 m C%sT Z America/Barbados -3:58:29 - LMT 1911 Au 28 @@ -2359,18 +2355,18 @@ Z America/Barbados -3:58:29 - LMT 1911 Au 28 -4 BB AST/-0330 1945 -4 BB A%sT Z America/Belem -3:13:56 - LMT 1914 --3 B -03/-02 1988 S 12 --3 - -03 +-3 B %z 1988 S 12 +-3 - %z Z America/Belize -5:52:48 - LMT 1912 Ap -6 BZ %s Z America/Boa_Vista -4:2:40 - LMT 1914 --4 B -04/-03 1988 S 12 --4 - -04 1999 S 30 --4 B -04/-03 2000 O 15 --4 - -04 +-4 B %z 1988 S 12 +-4 - %z 1999 S 30 +-4 B %z 2000 O 15 +-4 - %z Z America/Bogota -4:56:16 - LMT 1884 Mar 13 -4:56:16 - BMT 1914 N 23 --5 CO -05/-04 +-5 CO %z Z America/Boise -7:44:49 - LMT 1883 N 18 20u -8 u P%sT 1923 May 13 2 -7 u M%sT 1974 @@ -2383,21 +2379,23 @@ Z America/Cambridge_Bay 0 - -00 1920 -6 - CST 2001 Ap 1 3 -7 C M%sT Z America/Campo_Grande -3:38:28 - LMT 1914 --4 B -04/-03 +-4 B %z Z America/Cancun -5:47:4 - LMT 1922 Ja 1 6u --6 - CST 1981 D 23 +-6 - CST 1981 D 26 2 +-5 - EST 1983 Ja 4 +-6 m C%sT 1997 O 26 2 -5 m E%sT 1998 Au 2 2 -6 m C%sT 2015 F 1 2 -5 - EST Z America/Caracas -4:27:44 - LMT 1890 -4:27:40 - CMT 1912 F 12 --4:30 - -0430 1965 --4 - -04 2007 D 9 3 --4:30 - -0430 2016 May 1 2:30 --4 - -04 +-4:30 - %z 1965 +-4 - %z 2007 D 9 3 +-4:30 - %z 2016 May 1 2:30 +-4 - %z Z America/Cayenne -3:29:20 - LMT 1911 Jul --4 - -04 1967 O --3 - -03 +-4 - %z 1967 O +-3 - %z Z America/Chicago -5:50:36 - LMT 1883 N 18 18u -6 u C%sT 1920 -6 Ch C%sT 1936 Mar 1 2 @@ -2407,7 +2405,7 @@ Z America/Chicago -5:50:36 - LMT 1883 N 18 18u -6 Ch C%sT 1967 -6 u C%sT Z America/Chihuahua -7:4:20 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1996 @@ -2416,7 +2414,7 @@ Z America/Chihuahua -7:4:20 - LMT 1922 Ja 1 7u -7 m M%sT 2022 O 30 2 -6 - CST Z America/Ciudad_Juarez -7:5:56 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1996 @@ -2430,12 +2428,12 @@ Z America/Costa_Rica -5:36:13 - LMT 1890 -5:36:13 - SJMT 1921 Ja 15 -6 CR C%sT Z America/Cuiaba -3:44:20 - LMT 1914 --4 B -04/-03 2003 S 24 --4 - -04 2004 O --4 B -04/-03 +-4 B %z 2003 S 24 +-4 - %z 2004 O +-4 B %z Z America/Danmarkshavn -1:14:40 - LMT 1916 Jul 28 --3 - -03 1980 Ap 6 2 --3 E -03/-02 1996 +-3 - %z 1980 Ap 6 2 +-3 E %z 1996 0 - GMT Z America/Dawson -9:17:40 - LMT 1900 Au 20 -9 Y Y%sT 1965 @@ -2467,12 +2465,12 @@ Z America/Edmonton -7:33:52 - LMT 1906 S -7 Ed M%sT 1987 -7 C M%sT Z America/Eirunepe -4:39:28 - LMT 1914 --5 B -05/-04 1988 S 12 --5 - -05 1993 S 28 --5 B -05/-04 1994 S 22 --5 - -05 2008 Jun 24 --4 - -04 2013 N 10 --5 - -05 +-5 B %z 1988 S 12 +-5 - %z 1993 S 28 +-5 B %z 1994 S 22 +-5 - %z 2008 Jun 24 +-4 - %z 2013 N 10 +-5 - %z Z America/El_Salvador -5:56:48 - LMT 1921 -6 SV C%sT Z America/Fort_Nelson -8:10:47 - LMT 1884 @@ -2482,12 +2480,12 @@ Z America/Fort_Nelson -8:10:47 - LMT 1884 -8 C P%sT 2015 Mar 8 2 -7 - MST Z America/Fortaleza -2:34 - LMT 1914 --3 B -03/-02 1990 S 17 --3 - -03 1999 S 30 --3 B -03/-02 2000 O 22 --3 - -03 2001 S 13 --3 B -03/-02 2002 O --3 - -03 +-3 B %z 1990 S 17 +-3 - %z 1999 S 30 +-3 B %z 2000 O 22 +-3 - %z 2001 S 13 +-3 B %z 2002 O +-3 - %z Z America/Glace_Bay -3:59:48 - LMT 1902 Jun 15 -4 C A%sT 1953 -4 H A%sT 1954 @@ -2514,12 +2512,12 @@ Z America/Guatemala -6:2:4 - LMT 1918 O 5 -6 GT C%sT Z America/Guayaquil -5:19:20 - LMT 1890 -5:14 - QMT 1931 --5 EC -05/-04 +-5 EC %z Z America/Guyana -3:52:39 - LMT 1911 Au --4 - -04 1915 Mar --3:45 - -0345 1975 Au --3 - -03 1992 Mar 29 1 --4 - -04 +-4 - %z 1915 Mar +-3:45 - %z 1975 Au +-3 - %z 1992 Mar 29 1 +-4 - %z Z America/Halifax -4:14:24 - LMT 1902 Jun 15 -4 H A%sT 1918 -4 C A%sT 1919 @@ -2531,12 +2529,11 @@ Z America/Havana -5:29:28 - LMT 1890 -5:29:36 - HMT 1925 Jul 19 12 -5 Q C%sT Z America/Hermosillo -7:23:52 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1942 Ap 24 --7 - MST 1949 Ja 14 --8 - PST 1970 +-7 - MST 1996 -7 m M%sT 1999 -7 - MST Z America/Indiana/Indianapolis -5:44:38 - LMT 1883 N 18 18u @@ -2644,23 +2641,23 @@ Z America/Kentucky/Monticello -5:39:24 - LMT 1883 N 18 18u Z America/La_Paz -4:32:36 - LMT 1890 -4:32:36 - CMT 1931 O 15 -4:32:36 1 BST 1932 Mar 21 --4 - -04 +-4 - %z Z America/Lima -5:8:12 - LMT 1890 -5:8:36 - LMT 1908 Jul 28 --5 PE -05/-04 +-5 PE %z Z America/Los_Angeles -7:52:58 - LMT 1883 N 18 20u -8 u P%sT 1946 -8 CA P%sT 1967 -8 u P%sT Z America/Maceio -2:22:52 - LMT 1914 --3 B -03/-02 1990 S 17 --3 - -03 1995 O 13 --3 B -03/-02 1996 S 4 --3 - -03 1999 S 30 --3 B -03/-02 2000 O 22 --3 - -03 2001 S 13 --3 B -03/-02 2002 O --3 - -03 +-3 B %z 1990 S 17 +-3 - %z 1995 O 13 +-3 B %z 1996 S 4 +-3 - %z 1999 S 30 +-3 B %z 2000 O 22 +-3 - %z 2001 S 13 +-3 B %z 2002 O +-3 - %z Z America/Managua -5:45:8 - LMT 1890 -5:45:12 - MMT 1934 Jun 23 -6 - CST 1973 May @@ -2671,10 +2668,10 @@ Z America/Managua -5:45:8 - LMT 1890 -5 - EST 1997 -6 NI C%sT Z America/Manaus -4:0:4 - LMT 1914 --4 B -04/-03 1988 S 12 --4 - -04 1993 S 28 --4 B -04/-03 1994 S 22 --4 - -04 +-4 B %z 1988 S 12 +-4 - %z 1993 S 28 +-4 B %z 1994 S 22 +-4 - %z Z America/Martinique -4:4:20 - LMT 1890 -4:4:20 - FFMT 1911 May -4 - AST 1980 Ap 6 @@ -2686,12 +2683,11 @@ Z America/Matamoros -6:30 - LMT 1922 Ja 1 6u -6 m C%sT 2010 -6 u C%sT Z America/Mazatlan -7:5:40 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1942 Ap 24 --7 - MST 1949 Ja 14 --8 - PST 1970 +-7 - MST 1970 -7 m M%sT Z America/Menominee -5:50:27 - LMT 1885 S 18 12 -6 u C%sT 1946 @@ -2699,8 +2695,8 @@ Z America/Menominee -5:50:27 - LMT 1885 S 18 12 -5 - EST 1973 Ap 29 2 -6 u C%sT Z America/Merida -5:58:28 - LMT 1922 Ja 1 6u --6 - CST 1981 D 23 --5 - EST 1982 D 2 +-6 - CST 1981 D 26 2 +-5 - EST 1982 N 2 2 -6 m C%sT Z America/Metlakatla 15:13:42 - LMT 1867 O 19 15:44:55 -8:46:18 - LMT 1900 Au 20 12 @@ -2713,7 +2709,7 @@ Z America/Metlakatla 15:13:42 - LMT 1867 O 19 15:44:55 -8 - PST 2019 Ja 20 2 -9 u AK%sT Z America/Mexico_City -6:36:36 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 m C%sT 2001 S 30 2 @@ -2721,8 +2717,8 @@ Z America/Mexico_City -6:36:36 - LMT 1922 Ja 1 7u -6 m C%sT Z America/Miquelon -3:44:40 - LMT 1911 Jun 15 -4 - AST 1980 May --3 - -03 1987 --3 C -03/-02 +-3 - %z 1987 +-3 C %z Z America/Moncton -4:19:8 - LMT 1883 D 9 -5 - EST 1902 Jun 15 -4 C A%sT 1933 @@ -2733,20 +2729,23 @@ Z America/Moncton -4:19:8 - LMT 1883 D 9 -4 o A%sT 2007 -4 C A%sT Z America/Monterrey -6:41:16 - LMT 1922 Ja 1 6u +-7 - MST 1927 Jun 10 +-6 - CST 1930 N 15 +-7 m M%sT 1932 Ap -6 - CST 1988 -6 u C%sT 1989 -6 m C%sT Z America/Montevideo -3:44:51 - LMT 1908 Jun 10 -3:44:51 - MMT 1920 May --4 - -04 1923 O --3:30 U -0330/-03 1942 D 14 --3 U -03/-0230 1960 --3 U -03/-02 1968 --3 U -03/-0230 1970 --3 U -03/-02 1974 --3 U -03/-0130 1974 Mar 10 --3 U -03/-0230 1974 D 22 --3 U -03/-02 +-4 - %z 1923 O +-3:30 U %z 1942 D 14 +-3 U %z 1960 +-3 U %z 1968 +-3 U %z 1970 +-3 U %z 1974 +-3 U %z 1974 Mar 10 +-3 U %z 1974 D 22 +-3 U %z Z America/New_York -4:56:2 - LMT 1883 N 18 17u -5 u E%sT 1920 -5 NY E%sT 1942 @@ -2763,12 +2762,12 @@ Z America/Nome 12:58:22 - LMT 1867 O 19 13:29:35 -9 u Y%sT 1983 N 30 -9 u AK%sT Z America/Noronha -2:9:40 - LMT 1914 --2 B -02/-01 1990 S 17 --2 - -02 1999 S 30 --2 B -02/-01 2000 O 15 --2 - -02 2001 S 13 --2 B -02/-01 2002 O --2 - -02 +-2 B %z 1990 S 17 +-2 - %z 1999 S 30 +-2 B %z 2000 O 15 +-2 - %z 2001 S 13 +-2 B %z 2002 O +-2 - %z Z America/North_Dakota/Beulah -6:47:7 - LMT 1883 N 18 19u -7 u M%sT 2010 N 7 2 -6 u C%sT @@ -2779,12 +2778,12 @@ Z America/North_Dakota/New_Salem -6:45:39 - LMT 1883 N 18 19u -7 u M%sT 2003 O 26 2 -6 u C%sT Z America/Nuuk -3:26:56 - LMT 1916 Jul 28 --3 - -03 1980 Ap 6 2 --3 E -03/-02 2023 Mar 26 1u --2 - -02 2023 O 29 1u --2 E -02/-01 +-3 - %z 1980 Ap 6 2 +-3 E %z 2023 Mar 26 1u +-2 - %z 2023 O 29 1u +-2 E %z Z America/Ojinaga -6:57:40 - LMT 1922 Ja 1 7u --7 - MST 1927 Jun 10 23 +-7 - MST 1927 Jun 10 -6 - CST 1930 N 15 -7 m M%sT 1932 Ap -6 - CST 1996 @@ -2800,8 +2799,8 @@ Z America/Panama -5:18:8 - LMT 1890 Z America/Paramaribo -3:40:40 - LMT 1911 -3:40:52 - PMT 1935 -3:40:36 - PMT 1945 O --3:30 - -0330 1984 O --3 - -03 +-3:30 - %z 1984 O +-3 - %z Z America/Phoenix -7:28:18 - LMT 1883 N 18 19u -7 u M%sT 1944 Ja 1 0:1 -7 - MST 1944 Ap 1 0:1 @@ -2813,37 +2812,37 @@ Z America/Port-au-Prince -4:49:20 - LMT 1890 -4:49 - PPMT 1917 Ja 24 12 -5 HT E%sT Z America/Porto_Velho -4:15:36 - LMT 1914 --4 B -04/-03 1988 S 12 --4 - -04 +-4 B %z 1988 S 12 +-4 - %z Z America/Puerto_Rico -4:24:25 - LMT 1899 Mar 28 12 -4 - AST 1942 May 3 -4 u A%sT 1946 -4 - AST Z America/Punta_Arenas -4:43:40 - LMT 1890 -4:42:45 - SMT 1910 Ja 10 --5 - -05 1916 Jul +-5 - %z 1916 Jul -4:42:45 - SMT 1918 S 10 --4 - -04 1919 Jul +-4 - %z 1919 Jul -4:42:45 - SMT 1927 S --5 x -05/-04 1932 S --4 - -04 1942 Jun --5 - -05 1942 Au --4 - -04 1946 Au 28 24 --5 1 -04 1947 Mar 31 24 --5 - -05 1947 May 21 23 --4 x -04/-03 2016 D 4 --3 - -03 +-5 x %z 1932 S +-4 - %z 1942 Jun +-5 - %z 1942 Au +-4 - %z 1946 Au 28 24 +-5 1 %z 1947 Mar 31 24 +-5 - %z 1947 May 21 23 +-4 x %z 2016 D 4 +-3 - %z Z America/Rankin_Inlet 0 - -00 1957 -6 Y C%sT 2000 O 29 2 -5 - EST 2001 Ap 1 3 -6 C C%sT Z America/Recife -2:19:36 - LMT 1914 --3 B -03/-02 1990 S 17 --3 - -03 1999 S 30 --3 B -03/-02 2000 O 15 --3 - -03 2001 S 13 --3 B -03/-02 2002 O --3 - -03 +-3 B %z 1990 S 17 +-3 - %z 1999 S 30 +-3 B %z 2000 O 15 +-3 - %z 2001 S 13 +-3 B %z 2002 O +-3 - %z Z America/Regina -6:58:36 - LMT 1905 S -7 r M%sT 1960 Ap lastSu 2 -6 - CST @@ -2854,28 +2853,28 @@ Z America/Resolute 0 - -00 1947 Au 31 -5 - EST 2007 Mar 11 3 -6 C C%sT Z America/Rio_Branco -4:31:12 - LMT 1914 --5 B -05/-04 1988 S 12 --5 - -05 2008 Jun 24 --4 - -04 2013 N 10 --5 - -05 +-5 B %z 1988 S 12 +-5 - %z 2008 Jun 24 +-4 - %z 2013 N 10 +-5 - %z Z America/Santarem -3:38:48 - LMT 1914 --4 B -04/-03 1988 S 12 --4 - -04 2008 Jun 24 --3 - -03 +-4 B %z 1988 S 12 +-4 - %z 2008 Jun 24 +-3 - %z Z America/Santiago -4:42:45 - LMT 1890 -4:42:45 - SMT 1910 Ja 10 --5 - -05 1916 Jul +-5 - %z 1916 Jul -4:42:45 - SMT 1918 S 10 --4 - -04 1919 Jul +-4 - %z 1919 Jul -4:42:45 - SMT 1927 S --5 x -05/-04 1932 S --4 - -04 1942 Jun --5 - -05 1942 Au --4 - -04 1946 Jul 14 24 --4 1 -03 1946 Au 28 24 --5 1 -04 1947 Mar 31 24 --5 - -05 1947 May 21 23 --4 x -04/-03 +-5 x %z 1932 S +-4 - %z 1942 Jun +-5 - %z 1942 Au +-4 - %z 1946 Jul 14 24 +-4 1 %z 1946 Au 28 24 +-5 1 %z 1947 Mar 31 24 +-5 - %z 1947 May 21 23 +-4 x %z Z America/Santo_Domingo -4:39:36 - LMT 1890 -4:40 - SDMT 1933 Ap 1 12 -5 DO %s 1974 O 27 @@ -2883,14 +2882,14 @@ Z America/Santo_Domingo -4:39:36 - LMT 1890 -5 u E%sT 2000 D 3 1 -4 - AST Z America/Sao_Paulo -3:6:28 - LMT 1914 --3 B -03/-02 1963 O 23 --3 1 -02 1964 --3 B -03/-02 +-3 B %z 1963 O 23 +-3 1 %z 1964 +-3 B %z Z America/Scoresbysund -1:27:52 - LMT 1916 Jul 28 --2 - -02 1980 Ap 6 2 --2 c -02/-01 1981 Mar 29 --1 E -01/+00 2024 Mar 31 --2 E -02/-01 +-2 - %z 1980 Ap 6 2 +-2 c %z 1981 Mar 29 +-1 E %z 2024 Mar 31 +-2 E %z Z America/Sitka 14:58:47 - LMT 1867 O 19 15:30 -9:1:13 - LMT 1900 Au 20 12 -8 - PST 1942 @@ -2918,15 +2917,21 @@ Z America/Thule -4:35:8 - LMT 1916 Jul 28 -4 Th A%sT Z America/Tijuana -7:48:4 - LMT 1922 Ja 1 7u -7 - MST 1924 --8 - PST 1927 Jun 10 23 +-8 - PST 1927 Jun 10 -7 - MST 1930 N 15 -8 - PST 1931 Ap -8 1 PDT 1931 S 30 -8 - PST 1942 Ap 24 -8 1 PWT 1945 Au 14 23u --8 1 PPT 1945 N 12 +-8 1 PPT 1945 N 15 -8 - PST 1948 Ap 5 -8 1 PDT 1949 Ja 14 +-8 - PST 1950 May +-8 1 PDT 1950 S 24 +-8 - PST 1951 Ap 29 2 +-8 1 PDT 1951 S 30 2 +-8 - PST 1952 Ap 27 2 +-8 1 PDT 1952 S 28 2 -8 - PST 1954 -8 CA P%sT 1961 -8 - PST 1976 @@ -2961,31 +2966,31 @@ Z America/Yakutat 14:41:5 - LMT 1867 O 19 15:12:18 -9 u Y%sT 1983 N 30 -9 u AK%sT Z Antarctica/Casey 0 - -00 1969 -8 - +08 2009 O 18 2 -11 - +11 2010 Mar 5 2 -8 - +08 2011 O 28 2 -11 - +11 2012 F 21 17u -8 - +08 2016 O 22 -11 - +11 2018 Mar 11 4 -8 - +08 2018 O 7 4 -11 - +11 2019 Mar 17 3 -8 - +08 2019 O 4 3 -11 - +11 2020 Mar 8 3 -8 - +08 2020 O 4 0:1 -11 - +11 2021 Mar 14 -8 - +08 2021 O 3 0:1 -11 - +11 2022 Mar 13 -8 - +08 2022 O 2 0:1 -11 - +11 2023 Mar 9 3 -8 - +08 +8 - %z 2009 O 18 2 +11 - %z 2010 Mar 5 2 +8 - %z 2011 O 28 2 +11 - %z 2012 F 21 17u +8 - %z 2016 O 22 +11 - %z 2018 Mar 11 4 +8 - %z 2018 O 7 4 +11 - %z 2019 Mar 17 3 +8 - %z 2019 O 4 3 +11 - %z 2020 Mar 8 3 +8 - %z 2020 O 4 0:1 +11 - %z 2021 Mar 14 +8 - %z 2021 O 3 0:1 +11 - %z 2022 Mar 13 +8 - %z 2022 O 2 0:1 +11 - %z 2023 Mar 9 3 +8 - %z Z Antarctica/Davis 0 - -00 1957 Ja 13 -7 - +07 1964 N +7 - %z 1964 N 0 - -00 1969 F -7 - +07 2009 O 18 2 -5 - +05 2010 Mar 10 20u -7 - +07 2011 O 28 2 -5 - +05 2012 F 21 20u -7 - +07 +7 - %z 2009 O 18 2 +5 - %z 2010 Mar 10 20u +7 - %z 2011 O 28 2 +5 - %z 2012 F 21 20u +7 - %z Z Antarctica/Macquarie 0 - -00 1899 N 10 - AEST 1916 O 1 2 10 1 AEDT 1917 F @@ -2996,151 +3001,146 @@ Z Antarctica/Macquarie 0 - -00 1899 N 10 1 AEDT 2011 10 AT AE%sT Z Antarctica/Mawson 0 - -00 1954 F 13 -6 - +06 2009 O 18 2 -5 - +05 +6 - %z 2009 O 18 2 +5 - %z Z Antarctica/Palmer 0 - -00 1965 --4 A -04/-03 1969 O 5 --3 A -03/-02 1982 May --4 x -04/-03 2016 D 4 --3 - -03 +-4 A %z 1969 O 5 +-3 A %z 1982 May +-4 x %z 2016 D 4 +-3 - %z Z Antarctica/Rothera 0 - -00 1976 D --3 - -03 +-3 - %z Z Antarctica/Troll 0 - -00 2005 F 12 0 Tr %s Z Antarctica/Vostok 0 - -00 1957 D 16 -7 - +07 1994 F +7 - %z 1994 F 0 - -00 1994 N -7 - +07 2023 D 18 2 -5 - +05 +7 - %z 2023 D 18 2 +5 - %z Z Asia/Almaty 5:7:48 - LMT 1924 May 2 -5 - +05 1930 Jun 21 -6 R +06/+07 1991 Mar 31 2s -5 R +05/+06 1992 Ja 19 2s -6 R +06/+07 2004 O 31 2s -6 - +06 2024 Mar -5 - +05 +5 - %z 1930 Jun 21 +6 R %z 1991 Mar 31 2s +5 R %z 1992 Ja 19 2s +6 R %z 2004 O 31 2s +6 - %z 2024 Mar +5 - %z Z Asia/Amman 2:23:44 - LMT 1931 2 J EE%sT 2022 O 28 0s -3 - +03 +3 - %z Z Asia/Anadyr 11:49:56 - LMT 1924 May 2 -12 - +12 1930 Jun 21 -13 R +13/+14 1982 Ap 1 0s -12 R +12/+13 1991 Mar 31 2s -11 R +11/+12 1992 Ja 19 2s -12 R +12/+13 2010 Mar 28 2s -11 R +11/+12 2011 Mar 27 2s -12 - +12 +12 - %z 1930 Jun 21 +13 R %z 1982 Ap 1 0s +12 R %z 1991 Mar 31 2s +11 R %z 1992 Ja 19 2s +12 R %z 2010 Mar 28 2s +11 R %z 2011 Mar 27 2s +12 - %z Z Asia/Aqtau 3:21:4 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 - +05 1981 O -6 - +06 1982 Ap -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 1994 S 25 2s -4 R +04/+05 2004 O 31 2s -5 - +05 +4 - %z 1930 Jun 21 +5 - %z 1981 O +6 - %z 1982 Ap +5 R %z 1991 Mar 31 2s +4 R %z 1992 Ja 19 2s +5 R %z 1994 S 25 2s +4 R %z 2004 O 31 2s +5 - %z Z Asia/Aqtobe 3:48:40 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 - +05 1981 Ap -5 1 +06 1981 O -6 - +06 1982 Ap -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 2004 O 31 2s -5 - +05 +4 - %z 1930 Jun 21 +5 - %z 1981 Ap +5 1 %z 1981 O +6 - %z 1982 Ap +5 R %z 1991 Mar 31 2s +4 R %z 1992 Ja 19 2s +5 R %z 2004 O 31 2s +5 - %z Z Asia/Ashgabat 3:53:32 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 R +05/+06 1991 Mar 31 2 -4 R +04/+05 1992 Ja 19 2 -5 - +05 +4 - %z 1930 Jun 21 +5 R %z 1991 Mar 31 2 +4 R %z 1992 Ja 19 2 +5 - %z Z Asia/Atyrau 3:27:44 - LMT 1924 May 2 -3 - +03 1930 Jun 21 -5 - +05 1981 O -6 - +06 1982 Ap -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 1999 Mar 28 2s -4 R +04/+05 2004 O 31 2s -5 - +05 +3 - %z 1930 Jun 21 +5 - %z 1981 O +6 - %z 1982 Ap +5 R %z 1991 Mar 31 2s +4 R %z 1992 Ja 19 2s +5 R %z 1999 Mar 28 2s +4 R %z 2004 O 31 2s +5 - %z Z Asia/Baghdad 2:57:40 - LMT 1890 2:57:36 - BMT 1918 -3 - +03 1982 May -3 IQ +03/+04 +3 - %z 1982 May +3 IQ %z Z Asia/Baku 3:19:24 - LMT 1924 May 2 -3 - +03 1957 Mar -4 R +04/+05 1991 Mar 31 2s -3 R +03/+04 1992 S lastSu 2s -4 - +04 1996 -4 E +04/+05 1997 -4 AZ +04/+05 +3 - %z 1957 Mar +4 R %z 1991 Mar 31 2s +3 R %z 1992 S lastSu 2s +4 - %z 1996 +4 E %z 1997 +4 AZ %z Z Asia/Bangkok 6:42:4 - LMT 1880 6:42:4 - BMT 1920 Ap -7 - +07 +7 - %z Z Asia/Barnaul 5:35 - LMT 1919 D 10 -6 - +06 1930 Jun 21 -7 R +07/+08 1991 Mar 31 2s -6 R +06/+07 1992 Ja 19 2s -7 R +07/+08 1995 May 28 -6 R +06/+07 2011 Mar 27 2s -7 - +07 2014 O 26 2s -6 - +06 2016 Mar 27 2s -7 - +07 +6 - %z 1930 Jun 21 +7 R %z 1991 Mar 31 2s +6 R %z 1992 Ja 19 2s +7 R %z 1995 May 28 +6 R %z 2011 Mar 27 2s +7 - %z 2014 O 26 2s +6 - %z 2016 Mar 27 2s +7 - %z Z Asia/Beirut 2:22 - LMT 1880 2 l EE%sT Z Asia/Bishkek 4:58:24 - LMT 1924 May 2 -5 - +05 1930 Jun 21 -6 R +06/+07 1991 Mar 31 2s -5 R +05/+06 1991 Au 31 2 -5 KG +05/+06 2005 Au 12 -6 - +06 +5 - %z 1930 Jun 21 +6 R %z 1991 Mar 31 2s +5 R %z 1991 Au 31 2 +5 KG %z 2005 Au 12 +6 - %z Z Asia/Chita 7:33:52 - LMT 1919 D 15 -8 - +08 1930 Jun 21 -9 R +09/+10 1991 Mar 31 2s -8 R +08/+09 1992 Ja 19 2s -9 R +09/+10 2011 Mar 27 2s -10 - +10 2014 O 26 2s -8 - +08 2016 Mar 27 2 -9 - +09 -Z Asia/Choibalsan 7:38 - LMT 1905 Au -7 - +07 1978 -8 - +08 1983 Ap -9 X +09/+10 2008 Mar 31 -8 X +08/+09 +8 - %z 1930 Jun 21 +9 R %z 1991 Mar 31 2s +8 R %z 1992 Ja 19 2s +9 R %z 2011 Mar 27 2s +10 - %z 2014 O 26 2s +8 - %z 2016 Mar 27 2 +9 - %z Z Asia/Colombo 5:19:24 - LMT 1880 5:19:32 - MMT 1906 -5:30 - +0530 1942 Ja 5 -5:30 0:30 +06 1942 S -5:30 1 +0630 1945 O 16 2 -5:30 - +0530 1996 May 25 -6:30 - +0630 1996 O 26 0:30 -6 - +06 2006 Ap 15 0:30 -5:30 - +0530 +5:30 - %z 1942 Ja 5 +5:30 0:30 %z 1942 S +5:30 1 %z 1945 O 16 2 +5:30 - %z 1996 May 25 +6:30 - %z 1996 O 26 0:30 +6 - %z 2006 Ap 15 0:30 +5:30 - %z Z Asia/Damascus 2:25:12 - LMT 1920 2 S EE%sT 2022 O 28 -3 - +03 +3 - %z Z Asia/Dhaka 6:1:40 - LMT 1890 5:53:20 - HMT 1941 O -6:30 - +0630 1942 May 15 -5:30 - +0530 1942 S -6:30 - +0630 1951 S 30 -6 - +06 2009 -6 BD +06/+07 -Z Asia/Dili 8:22:20 - LMT 1912 -8 - +08 1942 F 21 23 -9 - +09 1976 May 3 -8 - +08 2000 S 17 -9 - +09 +6:30 - %z 1942 May 15 +5:30 - %z 1942 S +6:30 - %z 1951 S 30 +6 - %z 2009 +6 BD %z +Z Asia/Dili 8:22:20 - LMT 1911 D 31 16u +8 - %z 1942 F 21 23 +9 - %z 1976 May 3 +8 - %z 2000 S 17 +9 - %z Z Asia/Dubai 3:41:12 - LMT 1920 -4 - +04 +4 - %z Z Asia/Dushanbe 4:35:12 - LMT 1924 May 2 -5 - +05 1930 Jun 21 -6 R +06/+07 1991 Mar 31 2s -5 1 +06 1991 S 9 2s -5 - +05 +5 - %z 1930 Jun 21 +6 R %z 1991 Mar 31 2s +5 1 %z 1991 S 9 2s +5 - %z Z Asia/Famagusta 2:15:48 - LMT 1921 N 14 2 CY EE%sT 1998 S 2 E EE%sT 2016 S 8 -3 - +03 2017 O 29 1u +3 - %z 2017 O 29 1u 2 E EE%sT Z Asia/Gaza 2:17:52 - LMT 1900 O 2 Z EET/EEST 1948 May 15 @@ -3162,14 +3162,14 @@ Z Asia/Hebron 2:20:23 - LMT 1900 O 2 P EE%sT Z Asia/Ho_Chi_Minh 7:6:30 - LMT 1906 Jul 7:6:30 - PLMT 1911 May -7 - +07 1942 D 31 23 -8 - +08 1945 Mar 14 23 -9 - +09 1945 S 1 24 -7 - +07 1947 Ap -8 - +08 1955 Jul 1 1 -7 - +07 1959 D 31 23 -8 - +08 1975 Jun 13 -7 - +07 +7 - %z 1942 D 31 23 +8 - %z 1945 Mar 14 23 +9 - %z 1945 S 1 24 +7 - %z 1947 Ap +8 - %z 1955 Jul 1 1 +7 - %z 1959 D 31 23 +8 - %z 1975 Jun 13 +7 - %z Z Asia/Hong_Kong 7:36:42 - LMT 1904 O 29 17u 8 - HKT 1941 Jun 15 3 8 1 HKST 1941 O 1 4 @@ -3177,96 +3177,96 @@ Z Asia/Hong_Kong 7:36:42 - LMT 1904 O 29 17u 9 - JST 1945 N 18 2 8 HK HK%sT Z Asia/Hovd 6:6:36 - LMT 1905 Au -6 - +06 1978 -7 X +07/+08 +6 - %z 1978 +7 X %z Z Asia/Irkutsk 6:57:5 - LMT 1880 6:57:5 - IMT 1920 Ja 25 -7 - +07 1930 Jun 21 -8 R +08/+09 1991 Mar 31 2s -7 R +07/+08 1992 Ja 19 2s -8 R +08/+09 2011 Mar 27 2s -9 - +09 2014 O 26 2s -8 - +08 +7 - %z 1930 Jun 21 +8 R %z 1991 Mar 31 2s +7 R %z 1992 Ja 19 2s +8 R %z 2011 Mar 27 2s +9 - %z 2014 O 26 2s +8 - %z Z Asia/Jakarta 7:7:12 - LMT 1867 Au 10 7:7:12 - BMT 1923 D 31 16:40u -7:20 - +0720 1932 N -7:30 - +0730 1942 Mar 23 -9 - +09 1945 S 23 -7:30 - +0730 1948 May -8 - +08 1950 May -7:30 - +0730 1964 +7:20 - %z 1932 N +7:30 - %z 1942 Mar 23 +9 - %z 1945 S 23 +7:30 - %z 1948 May +8 - %z 1950 May +7:30 - %z 1964 7 - WIB Z Asia/Jayapura 9:22:48 - LMT 1932 N -9 - +09 1944 S -9:30 - +0930 1964 +9 - %z 1944 S +9:30 - %z 1964 9 - WIT Z Asia/Jerusalem 2:20:54 - LMT 1880 2:20:40 - JMT 1918 2 Z I%sT Z Asia/Kabul 4:36:48 - LMT 1890 -4 - +04 1945 -4:30 - +0430 +4 - %z 1945 +4:30 - %z Z Asia/Kamchatka 10:34:36 - LMT 1922 N 10 -11 - +11 1930 Jun 21 -12 R +12/+13 1991 Mar 31 2s -11 R +11/+12 1992 Ja 19 2s -12 R +12/+13 2010 Mar 28 2s -11 R +11/+12 2011 Mar 27 2s -12 - +12 +11 - %z 1930 Jun 21 +12 R %z 1991 Mar 31 2s +11 R %z 1992 Ja 19 2s +12 R %z 2010 Mar 28 2s +11 R %z 2011 Mar 27 2s +12 - %z Z Asia/Karachi 4:28:12 - LMT 1907 -5:30 - +0530 1942 S -5:30 1 +0630 1945 O 15 -5:30 - +0530 1951 S 30 -5 - +05 1971 Mar 26 +5:30 - %z 1942 S +5:30 1 %z 1945 O 15 +5:30 - %z 1951 S 30 +5 - %z 1971 Mar 26 5 PK PK%sT Z Asia/Kathmandu 5:41:16 - LMT 1920 -5:30 - +0530 1986 -5:45 - +0545 +5:30 - %z 1986 +5:45 - %z Z Asia/Khandyga 9:2:13 - LMT 1919 D 15 -8 - +08 1930 Jun 21 -9 R +09/+10 1991 Mar 31 2s -8 R +08/+09 1992 Ja 19 2s -9 R +09/+10 2004 -10 R +10/+11 2011 Mar 27 2s -11 - +11 2011 S 13 0s -10 - +10 2014 O 26 2s -9 - +09 +8 - %z 1930 Jun 21 +9 R %z 1991 Mar 31 2s +8 R %z 1992 Ja 19 2s +9 R %z 2004 +10 R %z 2011 Mar 27 2s +11 - %z 2011 S 13 0s +10 - %z 2014 O 26 2s +9 - %z Z Asia/Kolkata 5:53:28 - LMT 1854 Jun 28 5:53:20 - HMT 1870 5:21:10 - MMT 1906 5:30 - IST 1941 O -5:30 1 +0630 1942 May 15 +5:30 1 %z 1942 May 15 5:30 - IST 1942 S -5:30 1 +0630 1945 O 15 +5:30 1 %z 1945 O 15 5:30 - IST Z Asia/Krasnoyarsk 6:11:26 - LMT 1920 Ja 6 -6 - +06 1930 Jun 21 -7 R +07/+08 1991 Mar 31 2s -6 R +06/+07 1992 Ja 19 2s -7 R +07/+08 2011 Mar 27 2s -8 - +08 2014 O 26 2s -7 - +07 +6 - %z 1930 Jun 21 +7 R %z 1991 Mar 31 2s +6 R %z 1992 Ja 19 2s +7 R %z 2011 Mar 27 2s +8 - %z 2014 O 26 2s +7 - %z Z Asia/Kuching 7:21:20 - LMT 1926 Mar -7:30 - +0730 1933 -8 NB +08/+0820 1942 F 16 -9 - +09 1945 S 12 -8 - +08 +7:30 - %z 1933 +8 NB %z 1942 F 16 +9 - %z 1945 S 12 +8 - %z Z Asia/Macau 7:34:10 - LMT 1904 O 30 8 - CST 1941 D 21 23 -9 _ +09/+10 1945 S 30 24 +9 _ %z 1945 S 30 24 8 _ C%sT Z Asia/Magadan 10:3:12 - LMT 1924 May 2 -10 - +10 1930 Jun 21 -11 R +11/+12 1991 Mar 31 2s -10 R +10/+11 1992 Ja 19 2s -11 R +11/+12 2011 Mar 27 2s -12 - +12 2014 O 26 2s -10 - +10 2016 Ap 24 2s -11 - +11 +10 - %z 1930 Jun 21 +11 R %z 1991 Mar 31 2s +10 R %z 1992 Ja 19 2s +11 R %z 2011 Mar 27 2s +12 - %z 2014 O 26 2s +10 - %z 2016 Ap 24 2s +11 - %z Z Asia/Makassar 7:57:36 - LMT 1920 7:57:36 - MMT 1932 N -8 - +08 1942 F 9 -9 - +09 1945 S 23 +8 - %z 1942 F 9 +9 - %z 1945 S 23 8 - WITA Z Asia/Manila -15:56 - LMT 1844 D 31 8:4 - LMT 1899 May 11 @@ -3277,45 +3277,45 @@ Z Asia/Nicosia 2:13:28 - LMT 1921 N 14 2 CY EE%sT 1998 S 2 E EE%sT Z Asia/Novokuznetsk 5:48:48 - LMT 1924 May -6 - +06 1930 Jun 21 -7 R +07/+08 1991 Mar 31 2s -6 R +06/+07 1992 Ja 19 2s -7 R +07/+08 2010 Mar 28 2s -6 R +06/+07 2011 Mar 27 2s -7 - +07 +6 - %z 1930 Jun 21 +7 R %z 1991 Mar 31 2s +6 R %z 1992 Ja 19 2s +7 R %z 2010 Mar 28 2s +6 R %z 2011 Mar 27 2s +7 - %z Z Asia/Novosibirsk 5:31:40 - LMT 1919 D 14 6 -6 - +06 1930 Jun 21 -7 R +07/+08 1991 Mar 31 2s -6 R +06/+07 1992 Ja 19 2s -7 R +07/+08 1993 May 23 -6 R +06/+07 2011 Mar 27 2s -7 - +07 2014 O 26 2s -6 - +06 2016 Jul 24 2s -7 - +07 +6 - %z 1930 Jun 21 +7 R %z 1991 Mar 31 2s +6 R %z 1992 Ja 19 2s +7 R %z 1993 May 23 +6 R %z 2011 Mar 27 2s +7 - %z 2014 O 26 2s +6 - %z 2016 Jul 24 2s +7 - %z Z Asia/Omsk 4:53:30 - LMT 1919 N 14 -5 - +05 1930 Jun 21 -6 R +06/+07 1991 Mar 31 2s -5 R +05/+06 1992 Ja 19 2s -6 R +06/+07 2011 Mar 27 2s -7 - +07 2014 O 26 2s -6 - +06 +5 - %z 1930 Jun 21 +6 R %z 1991 Mar 31 2s +5 R %z 1992 Ja 19 2s +6 R %z 2011 Mar 27 2s +7 - %z 2014 O 26 2s +6 - %z Z Asia/Oral 3:25:24 - LMT 1924 May 2 -3 - +03 1930 Jun 21 -5 - +05 1981 Ap -5 1 +06 1981 O -6 - +06 1982 Ap -5 R +05/+06 1989 Mar 26 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 1992 Mar 29 2s -4 R +04/+05 2004 O 31 2s -5 - +05 +3 - %z 1930 Jun 21 +5 - %z 1981 Ap +5 1 %z 1981 O +6 - %z 1982 Ap +5 R %z 1989 Mar 26 2s +4 R %z 1992 Ja 19 2s +5 R %z 1992 Mar 29 2s +4 R %z 2004 O 31 2s +5 - %z Z Asia/Pontianak 7:17:20 - LMT 1908 May 7:17:20 - PMT 1932 N -7:30 - +0730 1942 Ja 29 -9 - +09 1945 S 23 -7:30 - +0730 1948 May -8 - +08 1950 May -7:30 - +0730 1964 +7:30 - %z 1942 Ja 29 +9 - %z 1945 S 23 +7:30 - %z 1948 May +8 - %z 1950 May +7:30 - %z 1964 8 - WITA 1988 7 - WIB Z Asia/Pyongyang 8:23 - LMT 1908 Ap @@ -3325,48 +3325,48 @@ Z Asia/Pyongyang 8:23 - LMT 1908 Ap 8:30 - KST 2018 May 4 23:30 9 - KST Z Asia/Qatar 3:26:8 - LMT 1920 -4 - +04 1972 Jun -3 - +03 +4 - %z 1972 Jun +3 - %z Z Asia/Qostanay 4:14:28 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 - +05 1981 Ap -5 1 +06 1981 O -6 - +06 1982 Ap -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 2004 O 31 2s -6 - +06 2024 Mar -5 - +05 +4 - %z 1930 Jun 21 +5 - %z 1981 Ap +5 1 %z 1981 O +6 - %z 1982 Ap +5 R %z 1991 Mar 31 2s +4 R %z 1992 Ja 19 2s +5 R %z 2004 O 31 2s +6 - %z 2024 Mar +5 - %z Z Asia/Qyzylorda 4:21:52 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 - +05 1981 Ap -5 1 +06 1981 O -6 - +06 1982 Ap -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1991 S 29 2s -5 R +05/+06 1992 Ja 19 2s -6 R +06/+07 1992 Mar 29 2s -5 R +05/+06 2004 O 31 2s -6 - +06 2018 D 21 -5 - +05 +4 - %z 1930 Jun 21 +5 - %z 1981 Ap +5 1 %z 1981 O +6 - %z 1982 Ap +5 R %z 1991 Mar 31 2s +4 R %z 1991 S 29 2s +5 R %z 1992 Ja 19 2s +6 R %z 1992 Mar 29 2s +5 R %z 2004 O 31 2s +6 - %z 2018 D 21 +5 - %z Z Asia/Riyadh 3:6:52 - LMT 1947 Mar 14 -3 - +03 +3 - %z Z Asia/Sakhalin 9:30:48 - LMT 1905 Au 23 -9 - +09 1945 Au 25 -11 R +11/+12 1991 Mar 31 2s -10 R +10/+11 1992 Ja 19 2s -11 R +11/+12 1997 Mar lastSu 2s -10 R +10/+11 2011 Mar 27 2s -11 - +11 2014 O 26 2s -10 - +10 2016 Mar 27 2s -11 - +11 +9 - %z 1945 Au 25 +11 R %z 1991 Mar 31 2s +10 R %z 1992 Ja 19 2s +11 R %z 1997 Mar lastSu 2s +10 R %z 2011 Mar 27 2s +11 - %z 2014 O 26 2s +10 - %z 2016 Mar 27 2s +11 - %z Z Asia/Samarkand 4:27:53 - LMT 1924 May 2 -4 - +04 1930 Jun 21 -5 - +05 1981 Ap -5 1 +06 1981 O -6 - +06 1982 Ap -5 R +05/+06 1992 -5 - +05 +4 - %z 1930 Jun 21 +5 - %z 1981 Ap +5 1 %z 1981 O +6 - %z 1982 Ap +5 R %z 1992 +5 - %z Z Asia/Seoul 8:27:52 - LMT 1908 Ap 8:30 - KST 1912 9 - JST 1945 S 8 @@ -3378,161 +3378,147 @@ Z Asia/Shanghai 8:5:43 - LMT 1901 8 CN C%sT Z Asia/Singapore 6:55:25 - LMT 1901 6:55:25 - SMT 1905 Jun -7 - +07 1933 -7 0:20 +0720 1936 -7:20 - +0720 1941 S -7:30 - +0730 1942 F 16 -9 - +09 1945 S 12 -7:30 - +0730 1981 D 31 16u -8 - +08 +7 - %z 1933 +7 0:20 %z 1936 +7:20 - %z 1941 S +7:30 - %z 1942 F 16 +9 - %z 1945 S 12 +7:30 - %z 1981 D 31 16u +8 - %z Z Asia/Srednekolymsk 10:14:52 - LMT 1924 May 2 -10 - +10 1930 Jun 21 -11 R +11/+12 1991 Mar 31 2s -10 R +10/+11 1992 Ja 19 2s -11 R +11/+12 2011 Mar 27 2s -12 - +12 2014 O 26 2s -11 - +11 +10 - %z 1930 Jun 21 +11 R %z 1991 Mar 31 2s +10 R %z 1992 Ja 19 2s +11 R %z 2011 Mar 27 2s +12 - %z 2014 O 26 2s +11 - %z Z Asia/Taipei 8:6 - LMT 1896 8 - CST 1937 O 9 - JST 1945 S 21 1 8 f C%sT Z Asia/Tashkent 4:37:11 - LMT 1924 May 2 -5 - +05 1930 Jun 21 -6 R +06/+07 1991 Mar 31 2 -5 R +05/+06 1992 -5 - +05 +5 - %z 1930 Jun 21 +6 R %z 1991 Mar 31 2 +5 R %z 1992 +5 - %z Z Asia/Tbilisi 2:59:11 - LMT 1880 2:59:11 - TBMT 1924 May 2 -3 - +03 1957 Mar -4 R +04/+05 1991 Mar 31 2s -3 R +03/+04 1992 -3 e +03/+04 1994 S lastSu -4 e +04/+05 1996 O lastSu -4 1 +05 1997 Mar lastSu -4 e +04/+05 2004 Jun 27 -3 R +03/+04 2005 Mar lastSu 2 -4 - +04 +3 - %z 1957 Mar +4 R %z 1991 Mar 31 2s +3 R %z 1992 +3 e %z 1994 S lastSu +4 e %z 1996 O lastSu +4 1 %z 1997 Mar lastSu +4 e %z 2004 Jun 27 +3 R %z 2005 Mar lastSu 2 +4 - %z Z Asia/Tehran 3:25:44 - LMT 1916 3:25:44 - TMT 1935 Jun 13 -3:30 i +0330/+0430 1977 O 20 24 -4 i +04/+05 1979 -3:30 i +0330/+0430 +3:30 i %z 1977 O 20 24 +4 i %z 1979 +3:30 i %z Z Asia/Thimphu 5:58:36 - LMT 1947 Au 15 -5:30 - +0530 1987 O -6 - +06 +5:30 - %z 1987 O +6 - %z Z Asia/Tokyo 9:18:59 - LMT 1887 D 31 15u 9 JP J%sT Z Asia/Tomsk 5:39:51 - LMT 1919 D 22 -6 - +06 1930 Jun 21 -7 R +07/+08 1991 Mar 31 2s -6 R +06/+07 1992 Ja 19 2s -7 R +07/+08 2002 May 1 3 -6 R +06/+07 2011 Mar 27 2s -7 - +07 2014 O 26 2s -6 - +06 2016 May 29 2s -7 - +07 +6 - %z 1930 Jun 21 +7 R %z 1991 Mar 31 2s +6 R %z 1992 Ja 19 2s +7 R %z 2002 May 1 3 +6 R %z 2011 Mar 27 2s +7 - %z 2014 O 26 2s +6 - %z 2016 May 29 2s +7 - %z Z Asia/Ulaanbaatar 7:7:32 - LMT 1905 Au -7 - +07 1978 -8 X +08/+09 +7 - %z 1978 +8 X %z Z Asia/Urumqi 5:50:20 - LMT 1928 -6 - +06 +6 - %z Z Asia/Ust-Nera 9:32:54 - LMT 1919 D 15 -8 - +08 1930 Jun 21 -9 R +09/+10 1981 Ap -11 R +11/+12 1991 Mar 31 2s -10 R +10/+11 1992 Ja 19 2s -11 R +11/+12 2011 Mar 27 2s -12 - +12 2011 S 13 0s -11 - +11 2014 O 26 2s -10 - +10 +8 - %z 1930 Jun 21 +9 R %z 1981 Ap +11 R %z 1991 Mar 31 2s +10 R %z 1992 Ja 19 2s +11 R %z 2011 Mar 27 2s +12 - %z 2011 S 13 0s +11 - %z 2014 O 26 2s +10 - %z Z Asia/Vladivostok 8:47:31 - LMT 1922 N 15 -9 - +09 1930 Jun 21 -10 R +10/+11 1991 Mar 31 2s -9 R +09/+10 1992 Ja 19 2s -10 R +10/+11 2011 Mar 27 2s -11 - +11 2014 O 26 2s -10 - +10 +9 - %z 1930 Jun 21 +10 R %z 1991 Mar 31 2s +9 R %z 1992 Ja 19 2s +10 R %z 2011 Mar 27 2s +11 - %z 2014 O 26 2s +10 - %z Z Asia/Yakutsk 8:38:58 - LMT 1919 D 15 -8 - +08 1930 Jun 21 -9 R +09/+10 1991 Mar 31 2s -8 R +08/+09 1992 Ja 19 2s -9 R +09/+10 2011 Mar 27 2s -10 - +10 2014 O 26 2s -9 - +09 +8 - %z 1930 Jun 21 +9 R %z 1991 Mar 31 2s +8 R %z 1992 Ja 19 2s +9 R %z 2011 Mar 27 2s +10 - %z 2014 O 26 2s +9 - %z Z Asia/Yangon 6:24:47 - LMT 1880 6:24:47 - RMT 1920 -6:30 - +0630 1942 May -9 - +09 1945 May 3 -6:30 - +0630 +6:30 - %z 1942 May +9 - %z 1945 May 3 +6:30 - %z Z Asia/Yekaterinburg 4:2:33 - LMT 1916 Jul 3 3:45:5 - PMT 1919 Jul 15 4 -4 - +04 1930 Jun 21 -5 R +05/+06 1991 Mar 31 2s -4 R +04/+05 1992 Ja 19 2s -5 R +05/+06 2011 Mar 27 2s -6 - +06 2014 O 26 2s -5 - +05 +4 - %z 1930 Jun 21 +5 R %z 1991 Mar 31 2s +4 R %z 1992 Ja 19 2s +5 R %z 2011 Mar 27 2s +6 - %z 2014 O 26 2s +5 - %z Z Asia/Yerevan 2:58 - LMT 1924 May 2 -3 - +03 1957 Mar -4 R +04/+05 1991 Mar 31 2s -3 R +03/+04 1995 S 24 2s -4 - +04 1997 -4 R +04/+05 2011 -4 AM +04/+05 +3 - %z 1957 Mar +4 R %z 1991 Mar 31 2s +3 R %z 1995 S 24 2s +4 - %z 1997 +4 R %z 2011 +4 AM %z Z Atlantic/Azores -1:42:40 - LMT 1884 -1:54:32 - HMT 1912 Ja 1 2u --2 p -02/-01 1942 Ap 25 22s --2 p +00 1942 Au 15 22s --2 p -02/-01 1943 Ap 17 22s --2 p +00 1943 Au 28 22s --2 p -02/-01 1944 Ap 22 22s --2 p +00 1944 Au 26 22s --2 p -02/-01 1945 Ap 21 22s --2 p +00 1945 Au 25 22s --2 p -02/-01 1966 Ap 3 2 --1 p -01/+00 1983 S 25 1s --1 W- -01/+00 1992 S 27 1s -0 E WE%sT 1993 Mar 28 1u --1 E -01/+00 +-2 p %z 1966 O 2 2s +-1 - %z 1982 Mar 28 0s +-1 p %z 1986 +-1 E %z 1992 D 27 1s +0 E WE%sT 1993 Jun 17 1u +-1 E %z Z Atlantic/Bermuda -4:19:18 - LMT 1890 -4:19:18 Be BMT/BST 1930 Ja 1 2 -4 Be A%sT 1974 Ap 28 2 -4 C A%sT 1976 -4 u A%sT Z Atlantic/Canary -1:1:36 - LMT 1922 Mar --1 - -01 1946 S 30 1 +-1 - %z 1946 S 30 1 0 - WET 1980 Ap 6 0s 0 1 WEST 1980 S 28 1u 0 E WE%sT Z Atlantic/Cape_Verde -1:34:4 - LMT 1912 Ja 1 2u --2 - -02 1942 S --2 1 -01 1945 O 15 --2 - -02 1975 N 25 2 --1 - -01 +-2 - %z 1942 S +-2 1 %z 1945 O 15 +-2 - %z 1975 N 25 2 +-1 - %z Z Atlantic/Faroe -0:27:4 - LMT 1908 Ja 11 0 - WET 1981 0 E WE%sT Z Atlantic/Madeira -1:7:36 - LMT 1884 -1:7:36 - FMT 1912 Ja 1 1u --1 p -01/+00 1942 Ap 25 22s --1 p +01 1942 Au 15 22s --1 p -01/+00 1943 Ap 17 22s --1 p +01 1943 Au 28 22s --1 p -01/+00 1944 Ap 22 22s --1 p +01 1944 Au 26 22s --1 p -01/+00 1945 Ap 21 22s --1 p +01 1945 Au 25 22s --1 p -01/+00 1966 Ap 3 2 -0 p WE%sT 1983 S 25 1s +-1 p %z 1966 O 2 2s +0 - WET 1982 Ap 4 +0 p WE%sT 1986 Jul 31 0 E WE%sT Z Atlantic/South_Georgia -2:26:8 - LMT 1890 --2 - -02 +-2 - %z Z Atlantic/Stanley -3:51:24 - LMT 1890 -3:51:24 - SMT 1912 Mar 12 --4 FK -04/-03 1983 May --3 FK -03/-02 1985 S 15 --4 FK -04/-03 2010 S 5 2 --3 - -03 +-4 FK %z 1983 May +-3 FK %z 1985 S 15 +-4 FK %z 2010 S 5 2 +-3 - %z Z Australia/Adelaide 9:14:20 - LMT 1895 F 9 - ACST 1899 May 9:30 AU AC%sT 1971 @@ -3550,8 +3536,8 @@ Z Australia/Darwin 8:43:20 - LMT 1895 F 9 - ACST 1899 May 9:30 AU AC%sT Z Australia/Eucla 8:35:28 - LMT 1895 D -8:45 AU +0845/+0945 1943 Jul -8:45 AW +0845/+0945 +8:45 AU %z 1943 Jul +8:45 AW %z Z Australia/Hobart 9:49:16 - LMT 1895 S 10 AT AE%sT 1919 O 24 10 AU AE%sT 1967 @@ -3562,8 +3548,8 @@ Z Australia/Lindeman 9:55:56 - LMT 1895 10 Ho AE%sT Z Australia/Lord_Howe 10:36:20 - LMT 1895 F 10 - AEST 1981 Mar -10:30 LH +1030/+1130 1985 Jul -10:30 LH +1030/+11 +10:30 LH %z 1985 Jul +10:30 LH %z Z Australia/Melbourne 9:39:52 - LMT 1895 F 10 AU AE%sT 1971 10 AV AE%sT @@ -3573,52 +3559,47 @@ Z Australia/Perth 7:43:24 - LMT 1895 D Z Australia/Sydney 10:4:52 - LMT 1895 F 10 AU AE%sT 1971 10 AN AE%sT -Z CET 1 c CE%sT -Z CST6CDT -6 u C%sT -Z EET 2 E EE%sT -Z EST -5 - EST -Z EST5EDT -5 u E%sT Z Etc/GMT 0 - GMT -Z Etc/GMT+1 -1 - -01 -Z Etc/GMT+10 -10 - -10 -Z Etc/GMT+11 -11 - -11 -Z Etc/GMT+12 -12 - -12 -Z Etc/GMT+2 -2 - -02 -Z Etc/GMT+3 -3 - -03 -Z Etc/GMT+4 -4 - -04 -Z Etc/GMT+5 -5 - -05 -Z Etc/GMT+6 -6 - -06 -Z Etc/GMT+7 -7 - -07 -Z Etc/GMT+8 -8 - -08 -Z Etc/GMT+9 -9 - -09 -Z Etc/GMT-1 1 - +01 -Z Etc/GMT-10 10 - +10 -Z Etc/GMT-11 11 - +11 -Z Etc/GMT-12 12 - +12 -Z Etc/GMT-13 13 - +13 -Z Etc/GMT-14 14 - +14 -Z Etc/GMT-2 2 - +02 -Z Etc/GMT-3 3 - +03 -Z Etc/GMT-4 4 - +04 -Z Etc/GMT-5 5 - +05 -Z Etc/GMT-6 6 - +06 -Z Etc/GMT-7 7 - +07 -Z Etc/GMT-8 8 - +08 -Z Etc/GMT-9 9 - +09 +Z Etc/GMT+1 -1 - %z +Z Etc/GMT+10 -10 - %z +Z Etc/GMT+11 -11 - %z +Z Etc/GMT+12 -12 - %z +Z Etc/GMT+2 -2 - %z +Z Etc/GMT+3 -3 - %z +Z Etc/GMT+4 -4 - %z +Z Etc/GMT+5 -5 - %z +Z Etc/GMT+6 -6 - %z +Z Etc/GMT+7 -7 - %z +Z Etc/GMT+8 -8 - %z +Z Etc/GMT+9 -9 - %z +Z Etc/GMT-1 1 - %z +Z Etc/GMT-10 10 - %z +Z Etc/GMT-11 11 - %z +Z Etc/GMT-12 12 - %z +Z Etc/GMT-13 13 - %z +Z Etc/GMT-14 14 - %z +Z Etc/GMT-2 2 - %z +Z Etc/GMT-3 3 - %z +Z Etc/GMT-4 4 - %z +Z Etc/GMT-5 5 - %z +Z Etc/GMT-6 6 - %z +Z Etc/GMT-7 7 - %z +Z Etc/GMT-8 8 - %z +Z Etc/GMT-9 9 - %z Z Etc/UTC 0 - UTC Z Europe/Andorra 0:6:4 - LMT 1901 0 - WET 1946 S 30 1 - CET 1985 Mar 31 2 1 E CE%sT Z Europe/Astrakhan 3:12:12 - LMT 1924 May -3 - +03 1930 Jun 21 -4 R +04/+05 1989 Mar 26 2s -3 R +03/+04 1991 Mar 31 2s -4 - +04 1992 Mar 29 2s -3 R +03/+04 2011 Mar 27 2s -4 - +04 2014 O 26 2s -3 - +03 2016 Mar 27 2s -4 - +04 +3 - %z 1930 Jun 21 +4 R %z 1989 Mar 26 2s +3 R %z 1991 Mar 31 2s +4 - %z 1992 Mar 29 2s +3 R %z 2011 Mar 27 2s +4 - %z 2014 O 26 2s +3 - %z 2016 Mar 27 2s +4 - %z Z Europe/Athens 1:34:52 - LMT 1895 S 14 1:34:52 - AMT 1916 Jul 28 0:1 2 g EE%sT 1941 Ap 30 @@ -3691,7 +3672,7 @@ Z Europe/Helsinki 1:39:49 - LMT 1878 May 31 Z Europe/Istanbul 1:55:52 - LMT 1880 1:56:56 - IMT 1910 O 2 T EE%sT 1978 Jun 29 -3 T +03/+04 1984 N 1 2 +3 T %z 1984 N 1 2 2 T EE%sT 2007 2 E EE%sT 2011 Mar 27 1u 2 - EET 2011 Mar 28 1u @@ -3700,19 +3681,19 @@ Z Europe/Istanbul 1:55:52 - LMT 1880 2 E EE%sT 2015 O 25 1u 2 1 EEST 2015 N 8 1u 2 E EE%sT 2016 S 7 -3 - +03 +3 - %z Z Europe/Kaliningrad 1:22 - LMT 1893 Ap 1 c CE%sT 1945 Ap 10 2 O EE%sT 1946 Ap 7 3 R MSK/MSD 1989 Mar 26 2s 2 R EE%sT 2011 Mar 27 2s -3 - +03 2014 O 26 2s +3 - %z 2014 O 26 2s 2 - EET Z Europe/Kirov 3:18:48 - LMT 1919 Jul 1 0u -3 - +03 1930 Jun 21 -4 R +04/+05 1989 Mar 26 2s +3 - %z 1930 Jun 21 +4 R %z 1989 Mar 26 2s 3 R MSK/MSD 1991 Mar 31 2s -4 - +04 1992 Mar 29 2s +4 - %z 1992 Mar 29 2s 3 R MSK/MSD 2011 Mar 27 2s 4 - MSK 2014 O 26 2s 3 - MSK @@ -3727,10 +3708,10 @@ Z Europe/Kyiv 2:2:4 - LMT 1880 2 E EE%sT Z Europe/Lisbon -0:36:45 - LMT 1884 -0:36:45 - LMT 1912 Ja 1 0u -0 p WE%sT 1966 Ap 3 2 +0 p WE%sT 1966 O 2 2s 1 - CET 1976 S 26 1 -0 p WE%sT 1983 S 25 1s -0 W- WE%sT 1992 S 27 1s +0 p WE%sT 1986 +0 E WE%sT 1992 S 27 1u 1 E CE%sT 1996 Mar 31 1u 0 E WE%sT Z Europe/London -0:1:15 - LMT 1847 D @@ -3754,7 +3735,7 @@ Z Europe/Minsk 1:50:16 - LMT 1880 3 R MSK/MSD 1990 3 - MSK 1991 Mar 31 2s 2 R EE%sT 2011 Mar 27 2s -3 - +03 +3 - %z Z Europe/Moscow 2:30:17 - LMT 1880 2:30:17 - MMT 1916 Jul 3 2:31:19 R %s 1919 Jul 1 0u @@ -3802,24 +3783,24 @@ Z Europe/Rome 0:49:56 - LMT 1866 D 12 1 I CE%sT 1980 1 E CE%sT Z Europe/Samara 3:20:20 - LMT 1919 Jul 1 0u -3 - +03 1930 Jun 21 -4 - +04 1935 Ja 27 -4 R +04/+05 1989 Mar 26 2s -3 R +03/+04 1991 Mar 31 2s -2 R +02/+03 1991 S 29 2s -3 - +03 1991 O 20 3 -4 R +04/+05 2010 Mar 28 2s -3 R +03/+04 2011 Mar 27 2s -4 - +04 +3 - %z 1930 Jun 21 +4 - %z 1935 Ja 27 +4 R %z 1989 Mar 26 2s +3 R %z 1991 Mar 31 2s +2 R %z 1991 S 29 2s +3 - %z 1991 O 20 3 +4 R %z 2010 Mar 28 2s +3 R %z 2011 Mar 27 2s +4 - %z Z Europe/Saratov 3:4:18 - LMT 1919 Jul 1 0u -3 - +03 1930 Jun 21 -4 R +04/+05 1988 Mar 27 2s -3 R +03/+04 1991 Mar 31 2s -4 - +04 1992 Mar 29 2s -3 R +03/+04 2011 Mar 27 2s -4 - +04 2014 O 26 2s -3 - +03 2016 D 4 2s -4 - +04 +3 - %z 1930 Jun 21 +4 R %z 1988 Mar 27 2s +3 R %z 1991 Mar 31 2s +4 - %z 1992 Mar 29 2s +3 R %z 2011 Mar 27 2s +4 - %z 2014 O 26 2s +3 - %z 2016 D 4 2s +4 - %z Z Europe/Simferopol 2:16:24 - LMT 1880 2:16 - SMT 1924 May 2 2 - EET 1930 Jun 21 @@ -3863,14 +3844,14 @@ Z Europe/Tirane 1:19:20 - LMT 1914 1 q CE%sT 1984 Jul 1 E CE%sT Z Europe/Ulyanovsk 3:13:36 - LMT 1919 Jul 1 0u -3 - +03 1930 Jun 21 -4 R +04/+05 1989 Mar 26 2s -3 R +03/+04 1991 Mar 31 2s -2 R +02/+03 1992 Ja 19 2s -3 R +03/+04 2011 Mar 27 2s -4 - +04 2014 O 26 2s -3 - +03 2016 Mar 27 2s -4 - +04 +3 - %z 1930 Jun 21 +4 R %z 1989 Mar 26 2s +3 R %z 1991 Mar 31 2s +2 R %z 1992 Ja 19 2s +3 R %z 2011 Mar 27 2s +4 - %z 2014 O 26 2s +3 - %z 2016 Mar 27 2s +4 - %z Z Europe/Vienna 1:5:21 - LMT 1893 Ap 1 c CE%sT 1920 1 a CE%sT 1940 Ap 1 2s @@ -3895,15 +3876,15 @@ Z Europe/Vilnius 1:41:16 - LMT 1880 2 - EET 2003 2 E EE%sT Z Europe/Volgograd 2:57:40 - LMT 1920 Ja 3 -3 - +03 1930 Jun 21 -4 - +04 1961 N 11 -4 R +04/+05 1988 Mar 27 2s +3 - %z 1930 Jun 21 +4 - %z 1961 N 11 +4 R %z 1988 Mar 27 2s 3 R MSK/MSD 1991 Mar 31 2s -4 - +04 1992 Mar 29 2s +4 - %z 1992 Mar 29 2s 3 R MSK/MSD 2011 Mar 27 2s 4 - MSK 2014 O 26 2s 3 - MSK 2018 O 28 2s -4 - +04 2020 D 27 2s +4 - %z 2020 D 27 2s 3 - MSK Z Europe/Warsaw 1:24 - LMT 1880 1:24 - WMT 1915 Au 5 @@ -3919,58 +3900,53 @@ Z Europe/Zurich 0:34:8 - LMT 1853 Jul 16 1 CH CE%sT 1981 1 E CE%sT Z Factory 0 - -00 -Z HST -10 - HST Z Indian/Chagos 4:49:40 - LMT 1907 -5 - +05 1996 -6 - +06 +5 - %z 1996 +6 - %z Z Indian/Maldives 4:54 - LMT 1880 4:54 - MMT 1960 -5 - +05 +5 - %z Z Indian/Mauritius 3:50 - LMT 1907 -4 MU +04/+05 -Z MET 1 c ME%sT -Z MST -7 - MST -Z MST7MDT -7 u M%sT -Z PST8PDT -8 u P%sT +4 MU %z Z Pacific/Apia 12:33:4 - LMT 1892 Jul 5 -11:26:56 - LMT 1911 --11:30 - -1130 1950 --11 WS -11/-10 2011 D 29 24 -13 WS +13/+14 +-11:30 - %z 1950 +-11 WS %z 2011 D 29 24 +13 WS %z Z Pacific/Auckland 11:39:4 - LMT 1868 N 2 11:30 NZ NZ%sT 1946 12 NZ NZ%sT Z Pacific/Bougainville 10:22:16 - LMT 1880 9:48:32 - PMMT 1895 -10 - +10 1942 Jul -9 - +09 1945 Au 21 -10 - +10 2014 D 28 2 -11 - +11 +10 - %z 1942 Jul +9 - %z 1945 Au 21 +10 - %z 2014 D 28 2 +11 - %z Z Pacific/Chatham 12:13:48 - LMT 1868 N 2 -12:15 - +1215 1946 -12:45 k +1245/+1345 +12:15 - %z 1946 +12:45 k %z Z Pacific/Easter -7:17:28 - LMT 1890 -7:17:28 - EMT 1932 S --7 x -07/-06 1982 Mar 14 3u --6 x -06/-05 +-7 x %z 1982 Mar 14 3u +-6 x %z Z Pacific/Efate 11:13:16 - LMT 1912 Ja 13 -11 VU +11/+12 +11 VU %z Z Pacific/Fakaofo -11:24:56 - LMT 1901 --11 - -11 2011 D 30 -13 - +13 +-11 - %z 2011 D 30 +13 - %z Z Pacific/Fiji 11:55:44 - LMT 1915 O 26 -12 FJ +12/+13 +12 FJ %z Z Pacific/Galapagos -5:58:24 - LMT 1931 --5 - -05 1986 --6 EC -06/-05 +-5 - %z 1986 +-6 EC %z Z Pacific/Gambier -8:59:48 - LMT 1912 O --9 - -09 +-9 - %z Z Pacific/Guadalcanal 10:39:48 - LMT 1912 O -11 - +11 +11 - %z Z Pacific/Guam -14:21 - LMT 1844 D 31 9:39 - LMT 1901 10 - GST 1941 D 10 -9 - +09 1944 Jul 31 +9 - %z 1944 Jul 31 10 Gu G%sT 2000 D 23 10 - ChST Z Pacific/Honolulu -10:31:26 - LMT 1896 Ja 13 12 @@ -3979,74 +3955,73 @@ Z Pacific/Honolulu -10:31:26 - LMT 1896 Ja 13 12 -10:30 u H%sT 1947 Jun 8 2 -10 - HST Z Pacific/Kanton 0 - -00 1937 Au 31 --12 - -12 1979 O --11 - -11 1994 D 31 -13 - +13 +-12 - %z 1979 O +-11 - %z 1994 D 31 +13 - %z Z Pacific/Kiritimati -10:29:20 - LMT 1901 --10:40 - -1040 1979 O --10 - -10 1994 D 31 -14 - +14 +-10:40 - %z 1979 O +-10 - %z 1994 D 31 +14 - %z Z Pacific/Kosrae -13:8:4 - LMT 1844 D 31 10:51:56 - LMT 1901 -11 - +11 1914 O -9 - +09 1919 F -11 - +11 1937 -10 - +10 1941 Ap -9 - +09 1945 Au -11 - +11 1969 O -12 - +12 1999 -11 - +11 +11 - %z 1914 O +9 - %z 1919 F +11 - %z 1937 +10 - %z 1941 Ap +9 - %z 1945 Au +11 - %z 1969 O +12 - %z 1999 +11 - %z Z Pacific/Kwajalein 11:9:20 - LMT 1901 -11 - +11 1937 -10 - +10 1941 Ap -9 - +09 1944 F 6 -11 - +11 1969 O --12 - -12 1993 Au 20 24 -12 - +12 +11 - %z 1937 +10 - %z 1941 Ap +9 - %z 1944 F 6 +11 - %z 1969 O +-12 - %z 1993 Au 20 24 +12 - %z Z Pacific/Marquesas -9:18 - LMT 1912 O --9:30 - -0930 +-9:30 - %z Z Pacific/Nauru 11:7:40 - LMT 1921 Ja 15 -11:30 - +1130 1942 Au 29 -9 - +09 1945 S 8 -11:30 - +1130 1979 F 10 2 -12 - +12 +11:30 - %z 1942 Au 29 +9 - %z 1945 S 8 +11:30 - %z 1979 F 10 2 +12 - %z Z Pacific/Niue -11:19:40 - LMT 1952 O 16 --11:20 - -1120 1964 Jul --11 - -11 +-11:20 - %z 1964 Jul +-11 - %z Z Pacific/Norfolk 11:11:52 - LMT 1901 -11:12 - +1112 1951 -11:30 - +1130 1974 O 27 2s -11:30 1 +1230 1975 Mar 2 2s -11:30 - +1130 2015 O 4 2s -11 - +11 2019 Jul -11 AN +11/+12 +11:12 - %z 1951 +11:30 - %z 1974 O 27 2s +11:30 1 %z 1975 Mar 2 2s +11:30 - %z 2015 O 4 2s +11 - %z 2019 Jul +11 AN %z Z Pacific/Noumea 11:5:48 - LMT 1912 Ja 13 -11 NC +11/+12 +11 NC %z Z Pacific/Pago_Pago 12:37:12 - LMT 1892 Jul 5 -11:22:48 - LMT 1911 -11 - SST Z Pacific/Palau -15:2:4 - LMT 1844 D 31 8:57:56 - LMT 1901 -9 - +09 +9 - %z Z Pacific/Pitcairn -8:40:20 - LMT 1901 --8:30 - -0830 1998 Ap 27 --8 - -08 +-8:30 - %z 1998 Ap 27 +-8 - %z Z Pacific/Port_Moresby 9:48:40 - LMT 1880 9:48:32 - PMMT 1895 -10 - +10 +10 - %z Z Pacific/Rarotonga 13:20:56 - LMT 1899 D 26 -10:39:4 - LMT 1952 O 16 --10:30 - -1030 1978 N 12 --10 CK -10/-0930 +-10:30 - %z 1978 N 12 +-10 CK %z Z Pacific/Tahiti -9:58:16 - LMT 1912 O --10 - -10 +-10 - %z Z Pacific/Tarawa 11:32:4 - LMT 1901 -12 - +12 +12 - %z Z Pacific/Tongatapu 12:19:12 - LMT 1945 S 10 -12:20 - +1220 1961 -13 - +13 1999 -13 TO +13/+14 -Z WET 0 E WE%sT +12:20 - %z 1961 +13 - %z 1999 +13 TO %z L Etc/GMT GMT L Australia/Sydney Australia/ACT L Australia/Lord_Howe Australia/LHI @@ -4062,6 +4037,8 @@ L America/Rio_Branco Brazil/Acre L America/Noronha Brazil/DeNoronha L America/Sao_Paulo Brazil/East L America/Manaus Brazil/West +L Europe/Brussels CET +L America/Chicago CST6CDT L America/Halifax Canada/Atlantic L America/Winnipeg Canada/Central L America/Toronto Canada/Eastern @@ -4073,6 +4050,9 @@ L America/Whitehorse Canada/Yukon L America/Santiago Chile/Continental L Pacific/Easter Chile/EasterIsland L America/Havana Cuba +L Europe/Athens EET +L America/Panama EST +L America/New_York EST5EDT L Africa/Cairo Egypt L Europe/Dublin Eire L Etc/GMT Etc/GMT+0 @@ -4096,6 +4076,9 @@ L America/Jamaica Jamaica L Asia/Tokyo Japan L Pacific/Kwajalein Kwajalein L Africa/Tripoli Libya +L Europe/Brussels MET +L America/Phoenix MST +L America/Denver MST7MDT L America/Tijuana Mexico/BajaNorte L America/Mazatlan Mexico/BajaSur L America/Mexico_City Mexico/General @@ -4259,6 +4242,7 @@ L America/Denver America/Shiprock L America/Toronto America/Thunder_Bay L America/Edmonton America/Yellowknife L Pacific/Auckland Antarctica/South_Pole +L Asia/Ulaanbaatar Asia/Choibalsan L Asia/Shanghai Asia/Chongqing L Asia/Shanghai Asia/Harbin L Asia/Urumqi Asia/Kashgar @@ -4273,6 +4257,7 @@ L Europe/Kyiv Europe/Zaporozhye L Pacific/Kanton Pacific/Enderbury L Pacific/Honolulu Pacific/Johnston L Pacific/Port_Moresby Pacific/Yap +L Europe/Lisbon WET L Africa/Nairobi Africa/Asmera L America/Nuuk America/Godthab L Asia/Ashgabat Asia/Ashkhabad @@ -4290,5 +4275,7 @@ L Asia/Ulaanbaatar Asia/Ulan_Bator L Atlantic/Faroe Atlantic/Faeroe L Europe/Kyiv Europe/Kiev L Asia/Nicosia Europe/Nicosia +L Pacific/Honolulu HST +L America/Los_Angeles PST8PDT L Pacific/Guadalcanal Pacific/Ponape L Pacific/Port_Moresby Pacific/Truk diff --git a/src/timezone/known_abbrevs.txt b/src/timezone/known_abbrevs.txt index d03fe0af131..efdf9092b16 100644 --- a/src/timezone/known_abbrevs.txt +++ b/src/timezone/known_abbrevs.txt @@ -80,8 +80,6 @@ IST 7200 JST 32400 KST 32400 MDT -21600 D -MEST 7200 D -MET 3600 MSK 10800 MST -25200 NDT -9000 D diff --git a/src/timezone/tznames/Default b/src/timezone/tznames/Default index 563a125353b..5e692423b5a 100644 --- a/src/timezone/tznames/Default +++ b/src/timezone/tznames/Default @@ -551,12 +551,10 @@ EETDST 10800 D # East-Egypt Summertime FET 10800 # Further-eastern European Time (obsolete) # (Europe/Kaliningrad) # (Europe/Minsk) -MEST 7200 D # Middle Europe Summer Time - # (MET) +MEST 7200 D # Middle Europe Summer Time (obsolete) MESZ 7200 D # Mitteleuropaeische Sommerzeit (German) # (attested in IANA comments though not their code) -MET 3600 # Middle Europe Time - # (MET) +MET 3600 # Middle Europe Time (obsolete) METDST 7200 D # Middle Europe Summer Time (not in IANA database) MEZ 3600 # Mitteleuropaeische Zeit (German) # (attested in IANA comments though not their code) diff --git a/src/timezone/tznames/Europe.txt b/src/timezone/tznames/Europe.txt index 2e762b90700..7a7a8340456 100644 --- a/src/timezone/tznames/Europe.txt +++ b/src/timezone/tznames/Europe.txt @@ -183,12 +183,10 @@ GMT 0 # Greenwich Mean Time # - IST: Israel Standard Time (Asia) IST 3600 # Irish Standard Time # (Europe/Dublin) -MEST 7200 D # Middle Europe Summer Time - # (MET) +MEST 7200 D # Middle Europe Summer Time (obsolete) MESZ 7200 D # Mitteleuropaeische Sommerzeit (German) # (attested in IANA comments though not their code) -MET 3600 # Middle Europe Time - # (MET) +MET 3600 # Middle Europe Time (obsolete) METDST 7200 D # Middle Europe Summer Time (not in IANA database) MEZ 3600 # Mitteleuropaeische Zeit (German) # (attested in IANA comments though not their code) diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES index e8de724fcd8..5c4a77bb895 100644 --- a/src/tools/RELEASE_CHANGES +++ b/src/tools/RELEASE_CHANGES @@ -10,6 +10,7 @@ For All Releases (major, minor, beta, RC) o update doc/src/sgml/release-NN.sgml in relevant branches o run spellchecker on result o add SGML markup + o run src/tools/add_commit_links.pl * Update timezone data to match latest IANA timezone database and new Windows releases, if any (see src/timezone/README) diff --git a/src/tools/add_commit_links.pl b/src/tools/add_commit_links.pl new file mode 100755 index 00000000000..64a57832972 --- /dev/null +++ b/src/tools/add_commit_links.pl @@ -0,0 +1,133 @@ +#! /usr/bin/perl + +################################################################# +# add_commit_links.pl -- add commit links to the release notes +# +# Copyright (c) 2024, PostgreSQL Global Development Group +# +# src/tools/add_commit_links.pl +################################################################# + +# +# This script adds commit links to the release notes. +# +# Usage: cd to top of source tree and issue +# src/tools/add_commit_links.pl release_notes_file +# +# The script can add links for release note items that lack them, and update +# those that have them. The script is sensitive to the release note file being +# in a specific format: +# +# * File name contains the major version number preceded by a dash +# and followed by a period +# * Commit text is generated by src/tools/git_changelog +# * SGML comments around commit text start in the first column +# * The commit item title ends with an attribution that ends with +# a closing parentheses +# * previously added URL link text is unmodified +# * a "" follows the commit item title +# +# The major version number is used to select the commit hash for minor +# releases. An error will be generated if valid commits are found but +# no proper location for the commit links is found. + +use strict; +use warnings FATAL => 'all'; + +sub process_file +{ + my $file = shift; + + my $in_comment = 0; + my $prev_line_ended_with_paren = 0; + my $prev_leading_space = ''; + my $lineno = 0; + + my @hashes = (); + + my $tmpfile = $file . '.tmp'; + + # Get major version number from the file name. + $file =~ m/-(\d+)\./; + my $major_version = $1; + + open(my $fh, '<', $file) || die "could not open file $file: $!\n"; + open(my $tfh, '>', $tmpfile) || die "could not open file $tmpfile: $!\n"; + + while (<$fh>) + { + $lineno++; + + $in_comment = 1 if (m/^/); + } + + close($fh); + close($tfh); + + rename($tmpfile, $file) || die "could not rename %s to %s: $!\n", + $tmpfile, + $file; + + return; +} + +if (@ARGV == 0) +{ + printf(STDERR "Usage: %s release_notes_file [...]\n", $0); + exit(1); +} + +for my $file (@ARGV) +{ + process_file($file); +} diff --git a/src/tools/ci/ci_macports_packages.sh b/src/tools/ci/ci_macports_packages.sh index 5b5fad97aca..692fa88c325 100755 --- a/src/tools/ci/ci_macports_packages.sh +++ b/src/tools/ci/ci_macports_packages.sh @@ -19,7 +19,7 @@ echo "macOS major version: $macos_major_version" # Scan the available MacPorts releases to find one that matches the running # macOS release. macports_release_list_url="https://api.github.com/repos/macports/macports-base/releases" -macports_version_pattern="2\.9\.3" +macports_version_pattern="2\.10\.1" macports_url="$( curl -s $macports_release_list_url | grep "\"https://github.com/macports/macports-base/releases/download/v$macports_version_pattern/MacPorts-$macports_version_pattern-$macos_major_version-[A-Za-z]*\.pkg\"" | sed 's/.*: "//;s/".*//' | head -1 )" echo "MacPorts package URL: $macports_url" diff --git a/src/tools/msvc/Mkvcbuild.pm b/src/tools/msvc/Mkvcbuild.pm index 990c223a9b4..f86a065375f 100644 --- a/src/tools/msvc/Mkvcbuild.pm +++ b/src/tools/msvc/Mkvcbuild.pm @@ -582,7 +582,9 @@ sub mkvcbuild push(@perl_embed_ccflags, 'PLPERL_HAVE_UID_GID'); # prevent binary mismatch between MSVC built plperl and # Strawberry or msys ucrt perl libraries - push(@perl_embed_ccflags, 'NO_THREAD_SAFE_LOCALE'); + my $perl_v = `$^X -V 2>&1`; + push(@perl_embed_ccflags, 'NO_THREAD_SAFE_LOCALE') + unless $perl_v =~ /USE_THREAD_SAFE_LOCALE/; # Windows offers several 32-bit ABIs. Perl is sensitive to # sizeof(time_t), one of the ABI dimensions. To get 32-bit time_t, diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 74fb735ec43..1f6f19bd91b 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -404,13 +404,15 @@ sub plcheck # Move on if no tests are listed. next if (scalar @tests == 0); + my @opts = fetchRegressOpts(); + print "============================================================\n"; print "Checking $lang\n"; my @args = ( "$topdir/$Config/pg_regress/pg_regress", "--bindir=$topdir/$Config/psql", - "--dbname=pl_regression", @lang_args, @tests); + "--dbname=pl_regression", @lang_args, @opts, @tests); system(@args); my $status = $? >> 8; exit $status if $status; diff --git a/src/tools/pginclude/headerscheck b/src/tools/pginclude/headerscheck index f8b0674a661..0bea62a7997 100755 --- a/src/tools/pginclude/headerscheck +++ b/src/tools/pginclude/headerscheck @@ -124,6 +124,9 @@ do # This produces a "no previous prototype" warning. test "$f" = src/include/storage/checksum_impl.h && continue + # SectionMemoryManager.h is C++ + test "$f" = src/include/jit/SectionMemoryManager.h && continue + # ppport.h is not under our control, so we can't make it standalone. test "$f" = src/pl/plperl/ppport.h && continue diff --git a/src/tools/pgindent/exclude_file_patterns b/src/tools/pgindent/exclude_file_patterns index f08180b0d08..c6a61be1738 100644 --- a/src/tools/pgindent/exclude_file_patterns +++ b/src/tools/pgindent/exclude_file_patterns @@ -4,8 +4,9 @@ src/include/storage/s_lock\.h$ src/include/port/atomics/ # -# This contains C++ constructs that confuse pgindent. +# These contains C++ constructs that confuse pgindent. src/include/jit/llvmjit\.h$ +src/include/jit/SectionMemoryManager\.h$ # # This confuses pgindent, and it's a derived file anyway. src/backend/utils/fmgrtab\.c$ diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 47d2790ef60..1d7f3b3a6cf 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -7,7 +7,7 @@ use warnings; use Cwd qw(abs_path getcwd); use File::Find; -use File::Spec qw(devnull); +use File::Spec; use File::Temp; use IO::Handle; use Getopt::Long; diff --git a/src/tools/pgindent/typedefs.list b/src/tools/pgindent/typedefs.list index 649254b4695..e094b74da2c 100644 --- a/src/tools/pgindent/typedefs.list +++ b/src/tools/pgindent/typedefs.list @@ -3076,6 +3076,7 @@ _locale_t _resultmap _stringlist acquireLocksOnSubLinks_context +addFkConstraintSides adjust_appendrel_attrs_context aff_regex_struct allocfunc @@ -3254,6 +3255,7 @@ fill_string_relopt finalize_primnode_context find_dependent_phvs_context find_expr_references_context +fireRIRonSubLink_context fix_join_expr_context fix_scan_expr_context fix_upper_expr_context @@ -3367,6 +3369,8 @@ json_manifest_perwalrange_callback json_ofield_action json_scalar_action json_struct_action +keepwal_entry +keepwal_hash keyEntryData key_t lclContext