This issue can't be edited

Because it belongs to an archived project. Jira admins can restore projects from the archive.

Parameter in LIKE clause not working for Neo4j

Description

Example (You can add this test in SimpleQueriesTest:

@Test public void testParametricLikeQueries() throws Exception { List<?> result = session .createQuery( "from Hypothesis h where h.description LIKE :myParam" ) .setString( "myParam", "%stuff%" ) .list(); assertThat( result ).onProperty( "id" ).containsOnly( "16" ); }

This is because Neo4jQueryRendererDelegate#predicateLike doesn't check if the prameterValue is a query parameter.

Environment

None

Activity

Show:

Davide D'AltoDecember 15, 2017 at 1:13 AM

This issue is more complicated than I initially thought.
It requires a change in the parser (see https://hibernate.atlassian.net/browse/HQLPARSER-78#icft=HQLPARSER-78). Once that's done we need to update the parser in OGM, the problem is that the latest version of the parser uses Search 5.8 and ORM 5.2.

I think it's better to postpone this issue when we have updated to ORM 5.2

Guillaume SmetDecember 13, 2017 at 2:23 PM

Moved it to 5.2 as I'm wondering if it's a quick fix or not?

If it is, let's do it, if not, let's move it to 5.4.

Details

Assignee

Reporter

Bug Testcase Reminder (view)

Bug reports should generally be accompanied by a test case!

Bug Testcase Reminder (edit)

Bug reports should generally be accompanied by a test case!

Participants

Davide D'Alto
Guillaume Smet

Components

Fix versions

Priority

Created February 20, 2017 at 12:10 PM
Updated February 12, 2018 at 10:31 AM

Flag notifications