Loading core/modules/views/src/Plugin/views/query/PostgresqlDateSql.php +1 −1 Original line number Diff line number Diff line Loading @@ -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)"; } Loading core/modules/views/tests/src/Unit/Plugin/views/query/PostgresqlDateSqlTest.php +1 −1 Original line number Diff line number Diff line Loading @@ -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)'; Loading Loading
core/modules/views/src/Plugin/views/query/PostgresqlDateSql.php +1 −1 Original line number Diff line number Diff line Loading @@ -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)"; } Loading
core/modules/views/tests/src/Unit/Plugin/views/query/PostgresqlDateSqlTest.php +1 −1 Original line number Diff line number Diff line Loading @@ -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)'; Loading