diff --git a/regress/expected/direct_field_access.out b/regress/expected/direct_field_access.out index 0a059cdd9..25082d9fa 100644 --- a/regress/expected/direct_field_access.out +++ b/regress/expected/direct_field_access.out @@ -78,7 +78,7 @@ $$) AS (lt agtype, gt agtype, eq agtype, ne agtype); (1 row) SELECT * FROM cypher('direct_access', $$ - RETURN 'hello world' < 'hello worlds', 'test' > 'TEST' + RETURN 'hello world' < 'hello worlds', 'abd' > 'abc' $$) AS (lt agtype, gt agtype); lt | gt ------+------ diff --git a/regress/sql/direct_field_access.sql b/regress/sql/direct_field_access.sql index c8060be4a..3ca2259f4 100644 --- a/regress/sql/direct_field_access.sql +++ b/regress/sql/direct_field_access.sql @@ -61,7 +61,7 @@ SELECT * FROM cypher('direct_access', $$ $$) AS (lt agtype, gt agtype, eq agtype, ne agtype); SELECT * FROM cypher('direct_access', $$ - RETURN 'hello world' < 'hello worlds', 'test' > 'TEST' + RETURN 'hello world' < 'hello worlds', 'abd' > 'abc' $$) AS (lt agtype, gt agtype); -- Boolean comparisons