Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R2DBC support @riba2101 #291

Closed
wants to merge 10 commits into from
Closed

R2DBC support @riba2101 #291

wants to merge 10 commits into from

Conversation

velo
Copy link
Member

@velo velo commented Feb 7, 2024

all credit to @riba2101 that did the original work

Fixes querydsl/querydsl#2468

Ognjen Ribicic and others added 10 commits June 8, 2020 22:15
# Conflicts:
#	pom.xml
#	querydsl-core/src/main/java/com/querydsl/core/group/GroupImpl.java
#	querydsl-examples/pom.xml
#	querydsl-maven-plugin/src/main/java/com/querydsl/maven/AbstractSqlMetaDataExportMojo.java
#	querydsl-sql/src/main/resources/keywords/h2
@velo velo closed this Feb 7, 2024
@velo velo deleted the querydsl-r2dbc branch February 7, 2024 22:41
private final List<Type<?, ?>> customTypes = new ArrayList<>();

protected boolean requiresQuotes(final String identifier, final boolean precededByDot) {
if (identifier.matches(".*[^A-z0-9_].*")) {

Check warning

Code scanning / CodeQL

Overly permissive regular expression range Medium

Suspicious character range that is equivalent to [A-Z[]^_`a-z].
protected boolean requiresQuotes(final String identifier, final boolean precededByDot) {
if (identifier.matches(".*[^A-z0-9_].*")) {
return true;
} else if (identifier.matches("^[^A-z_].*")) {

Check warning

Code scanning / CodeQL

Overly permissive regular expression range Medium

Suspicious character range that is equivalent to [A-Z[]^_`a-z].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

R2DBC support
1 participant