Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dlink
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhaowei
dlink
Commits
f0692faf
Unverified
Commit
f0692faf
authored
Apr 09, 2022
by
aiwenmo
Committed by
GitHub
Apr 09, 2022
Browse files
Options
Browse Files
Download
Plain Diff
[bugfix 370]避免因为特殊字符导致替换失败
[bugfix 370]避免因为特殊字符导致替换失败
parents
ff90eb8a
cb37d76e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
SqlManager.java
...executor/src/main/java/com/dlink/executor/SqlManager.java
+2
-1
No files found.
dlink-executor/src/main/java/com/dlink/executor/SqlManager.java
View file @
f0692faf
...
...
@@ -200,7 +200,8 @@ public final class SqlManager {
while
(
m
.
find
())
{
String
key
=
m
.
group
(
1
);
String
value
=
this
.
getSqlFragment
(
key
);
m
.
appendReplacement
(
sb
,
value
==
null
?
""
:
value
);
m
.
appendReplacement
(
sb
,
""
);
sb
.
append
(
value
==
null
?
""
:
value
);
}
m
.
appendTail
(
sb
);
return
sb
.
toString
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment