-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply select list rewriting to EQL and JPQL parsers as well. See: #3269 Original pull request: #3276
- Loading branch information
Showing
7 changed files
with
104 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...ta-jpa/src/main/java/org/springframework/data/jpa/repository/query/QueryTransformers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.springframework.data.jpa.repository.query; | ||
|
||
import static org.springframework.data.jpa.repository.query.JpaQueryParsingToken.*; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* Utility class encapsulating common query transformations. | ||
* | ||
* @author Mark Paluch | ||
* @since 3.2.5 | ||
*/ | ||
class QueryTransformers { | ||
|
||
/** | ||
* Filter a token list from a {@code SELECT} clause to be used within a count query. That is, filter any {@code AS …} | ||
* aliases. | ||
* | ||
* @param selection the input selection. | ||
* @return filtered selection to be used with count queries. | ||
*/ | ||
static List<JpaQueryParsingToken> filterCountSelection(List<JpaQueryParsingToken> selection) { | ||
|
||
List<JpaQueryParsingToken> target = new ArrayList<>(selection.size()); | ||
boolean skipNext = false; | ||
|
||
for (JpaQueryParsingToken token : selection) { | ||
|
||
if (skipNext) { | ||
skipNext = false; | ||
continue; | ||
} | ||
|
||
if (token.isA(TOKEN_AS)) { | ||
skipNext = true; | ||
continue; | ||
} | ||
target.add(token); | ||
} | ||
|
||
return target; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters