Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Nulls LAST / FIRST ignored in Version 1.4.0 #696

Open
Labels
@ShaneLee

Description

Hi,

I'm currently looking at using Criteria queries to query my database. I think I've found a bug where ordering of nulls is ignored. I have to do this programmatically, so can't get around it using @query.

I've written some basic unit tests for the R2DBCEntityTemplate which I think expose the issue (but I'm not sure if this is where the problem is or if I'm just wrong)


	@Test
	void shouldSelectByCriteriaWhereNullsLast() {
		recorder.addStubbing(s -> s.startsWith("SELECT"), Collections.emptyList());
		entityTemplate.select(Query.query(Criteria.where("name")
						.is("Walter"))
						.sort(Sort.by(new Sort.Order(Sort.Direction.ASC, "name", Sort.NullHandling.NULLS_LAST))), Person.class) //
				.as(StepVerifier::create) //
				.verifyComplete();
		StatementRecorder.RecordedStatement statement = recorder.getCreatedStatement(s -> s.startsWith("SELECT"));
		assertThat(statement.getSql())
				.isEqualTo("SELECT person.* FROM person WHERE person.THE_NAME = 1ドル ORDER BY person.THE_NAME ASC NULLS LAST");
		assertThat(statement.getBindings()).hasSize(1).containsEntry(0, Parameter.from("Walter"));
	}
	@Test
	void shouldSelectByCriteriaWhereNullsFirst() {
		recorder.addStubbing(s -> s.startsWith("SELECT"), Collections.emptyList());
		entityTemplate.select(Query.query(Criteria.where("name")
								.is("Walter"))
						.sort(Sort.by(new Sort.Order(Sort.Direction.ASC, "name", Sort.NullHandling.NULLS_FIRST))), Person.class) //
				.as(StepVerifier::create) //
				.verifyComplete();
		StatementRecorder.RecordedStatement statement = recorder.getCreatedStatement(s -> s.startsWith("SELECT"));
		assertThat(statement.getSql())
				.isEqualTo("SELECT person.* FROM person WHERE person.THE_NAME = 1ドル ORDER BY person.THE_NAME ASC NULLS FIRST");
		assertThat(statement.getBindings()).hasSize(1).containsEntry(0, Parameter.from("Walter"));
	}

Any help with this is appreciated.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

        AltStyle によって変換されたページ (->オリジナル) /