diff --git a/reference/pgsql/constants.xml b/reference/pgsql/constants.xml index 6e99a9419736..70e2eeefe68d 100644 --- a/reference/pgsql/constants.xml +++ b/reference/pgsql/constants.xml @@ -870,85 +870,6 @@ - - - PGSQL_SHOW_CONTEXT_NEVER - (int) - - - - To be used with pg_set_error_context_set_visibility, - the context is never shown. - Available as of PHP 8.3.0. - - - - - - PGSQL_SHOW_CONTEXT_ERRORS - (int) - - - - To be used with pg_set_error_context_set_visibility, - the context's fields are included in error messages only. - This is the default behaviour. - Available as of PHP 8.3.0. - - - - - - PGSQL_SHOW_CONTEXT_ALWAYS - (int) - - - - To be used with pg_set_error_context_set_visibility, - the context's fields are included in error, notice and warning messages. - Available as of PHP 8.3.0. - - - - - - PGSQL_PIPELINE_ON - (int) - - - - Returned by pg_pipeline_status, - when the connection is in pipeline mode - Available as of PHP 8.3.0. - - - - - - PGSQL_PIPELINE_OFF - (int) - - - - Returned by pg_pipeline_status, - when the connection is not in pipeline mode - Available as of PHP 8.3.0. - - - - - - PGSQL_PIPELINE_ABORTED - (int) - - - - Returned by pg_pipeline_status, - when the connection is in pipeline mode, and an error occurred. - Available as of PHP 8.3.0. - - - diff --git a/reference/pgsql/functions/pg-exit-pipeline-mode.xml b/reference/pgsql/functions/pg-exit-pipeline-mode.xml deleted file mode 100644 index 276aeca2258e..000000000000 --- a/reference/pgsql/functions/pg-exit-pipeline-mode.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - pg_exit_pipeline_mode - Causes a connection to exit pipeline mode - - - - &reftitle.description; - - boolpg_exit_pipeline_mode - PgSql\Connectionconnection - - - Causes a connection to exit pipeline mode if it is currently in pipeline mode with an empty queue and no pending results. - - - - - &reftitle.parameters; - - - - connection - - &pgsql.parameter.connection; - - - - - - - - &reftitle.returnvalues; - - Returns &true; if it succeeds to exit the pipeline mode, assuming - it was in this mode via pg_enter_pipeline_mode, - &false; otherwise. - - - - - &reftitle.examples; - - <function>pg_exit_pipeline_mode</function> example - - -]]> - - &example.outputs; - - - - - - - - &reftitle.seealso; - - pg_enter_pipeline_mode - pg_connect - pg_connect_poll - pg_flush - - - - - diff --git a/reference/pgsql/functions/pg-pipeline-status.xml b/reference/pgsql/functions/pg-pipeline-status.xml deleted file mode 100644 index 5173a6a797ed..000000000000 --- a/reference/pgsql/functions/pg-pipeline-status.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - pg_pipeline_status - Returns the current pipeline mode status of the libpq connection. - - - - &reftitle.description; - - intpg_pipeline_status - PgSql\Connectionconnection - - - Returns the current pipeline mode status of the libpq connection. - - - - - &reftitle.parameters; - - - - connection - - &pgsql.parameter.connection; - - - - - - - - &reftitle.returnvalues; - - Returns one of the following status: - PGSQL_PIPELINE_ON, PGSQL_PIPELINE_OFF or - PGSQL_PIPELINE_ABORTED. - - - - - &reftitle.examples; - - <function>pg_pipeline_status</function> example - - -]]> - - &example.outputs; - - - - - - - - &reftitle.seealso; - - pg_enter_pipeline_mode - - - - diff --git a/reference/pgsql/functions/pg-pipeline-sync.xml b/reference/pgsql/functions/pg-pipeline-sync.xml deleted file mode 100644 index 80932bf8acbf..000000000000 --- a/reference/pgsql/functions/pg-pipeline-sync.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - pg_pipeline_sync - Marks a synchronization point in a pipeline by sending a sync message and flushing the send buffer. - - - - &reftitle.description; - - boolpg_pipeline_sync - PgSql\Connectionconnection - - - Marks a synchronization point in a pipeline by sending a sync message and flushing the send buffer. - - - - - &reftitle.parameters; - - - - connection - - &pgsql.parameter.connection; - - - - - - - - &reftitle.returnvalues; - - Returns &true; on success or &false; - - - - - &reftitle.examples; - - <function>pg_pipeline_sync</function> example - - -]]> - - &example.outputs; - - - - - - - - &reftitle.seealso; - - pg_enter_pipeline_mode - pg_pipeline_status - - - - diff --git a/reference/pgsql/functions/pg-set-error-context-visibility.xml b/reference/pgsql/functions/pg-set-error-context-visibility.xml deleted file mode 100644 index c9db0faf7c0e..000000000000 --- a/reference/pgsql/functions/pg-set-error-context-visibility.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - pg_set_error_context_visibility - - Determines the visibility of the context's error messages. - - - - - &reftitle.description; - - intpg_set_error_context_visibility - PgSql\Connectionconnection - intvisibility - - - Determines the visibility of the context's error messages returned by pg_last_error - and pg_result_error - - - - - &reftitle.parameters; - - - - connection - - &pgsql.parameter.connection; - - - - visibility - - - The required visibility: PGSQL_SHOW_CONTEXT_NEVER, - PGSQL_SHOW_CONTEXT_ERRORS - or PGSQL_SHOW_CONTEXT_ALWAYS. - - - - - - - - - &reftitle.returnvalues; - - The previous visibility level: PGSQL_SHOW_CONTEXT_NEVER, - PGSQL_SHOW_CONTEXT_ERRORS - or PGSQL_SHOW_CONTEXT_ALWAYS. - - - - - &reftitle.examples; - - <function>pg_set_error_context_visibility</function> example - - -]]> - - - - - - &reftitle.seealso; - - - pg_last_error - pg_result_error - - - - - diff --git a/reference/pgsql/functions/pg-trace.xml b/reference/pgsql/functions/pg-trace.xml index 17bd785c6f96..a802480fcb96 100644 --- a/reference/pgsql/functions/pg-trace.xml +++ b/reference/pgsql/functions/pg-trace.xml @@ -14,7 +14,6 @@ stringfilename stringmode"w" PgSql\Connectionnullconnection&null; - inttrace_mode0 pg_trace enables tracing of the PostgreSQL diff --git a/reference/pgsql/versions.xml b/reference/pgsql/versions.xml index aaba7cdaa718..134edaa08590 100644 --- a/reference/pgsql/versions.xml +++ b/reference/pgsql/versions.xml @@ -20,14 +20,12 @@ - - @@ -72,8 +70,6 @@ - - @@ -89,7 +85,6 @@ -