Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Tasks.php

function Tasks::checkBinaryOutputSuccess

Verify that a binary data roundtrip returns the original string.

1 call to Tasks::checkBinaryOutputSuccess()
Tasks::checkBinaryOutput in core/modules/pgsql/src/Driver/Database/pgsql/Install/Tasks.php
Check Binary Output.

File

core/modules/pgsql/src/Driver/Database/pgsql/Install/Tasks.php, line 190

Class

Tasks
Specifies installation tasks for PostgreSQL databases.

Namespace

Drupal\pgsql\Driver\Database\pgsql\Install

Code

protected function checkBinaryOutputSuccess() {
    $bytea_output = Database::getConnection()->query("SHOW bytea_output")
        ->fetchField();
    return $bytea_output == 'escape';
}
RSS feed
Powered by Drupal