Commit a5c24191 authored by catch's avatar catch
Browse files

Issue #3118591 by alexpott, xjm, chesnut: Datetime-related test failures on PostgreSQL 12

(cherry picked from commit 1111de84)
parent ee387f37
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ public function __construct(Connection $database) {
  public function getDateField($field, $string_date) {
    if ($string_date) {
      // Ensures compatibility with field offset operation below.
      return "TO_TIMESTAMP($field, 'YYYY-MM-DD HH24:MI:SS')";
      return "TO_TIMESTAMP($field, 'YYYY-MM-DD\"T\"HH24:MI:SS')";
    }
    return "TO_TIMESTAMP($field)";
  }
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ public function setUp(): void {
  public function testGetDateField() {
    $date_sql = new PostgresqlDateSql($this->database);

    $expected = "TO_TIMESTAMP(foo.field, 'YYYY-MM-DD HH24:MI:SS')";
    $expected = "TO_TIMESTAMP(foo.field, 'YYYY-MM-DD\"T\"HH24:MI:SS')";
    $this->assertEquals($expected, $date_sql->getDateField('foo.field', TRUE));

    $expected = 'TO_TIMESTAMP(foo.field)';