-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
support Variable Operation #2415
Conversation
duhanmin
commented
Jul 5, 2022
•
edited
Loading
edited
variable | result |
---|---|
${yyyy-01-01} | 2021-01-01 |
${yyyy-01-01%-2y} | 2019-01-01 |
${yyyy-MM-01%-2M} | 2021-02-01 |
${yyyy-MM-dd%-2d} | 2021-03-31 |
${yyyy MM ----- HH%-1H} | 2021 04 ----- 14 |
${yyyyMMdd%-1d} | 20210401 |
${yyyyMM01%-1M} | 20210301 |
${HH%-1H} | 14 |
...mmons/linkis-common/src/main/java/org/apache/linkis/common/utils/VariableOperationUtils.java
Outdated
Show resolved
Hide resolved
Codecov Report
@@ Coverage Diff @@
## dev-1.2.0 #2415 +/- ##
===============================================
+ Coverage 17.83% 18.12% +0.29%
- Complexity 1077 1094 +17
===============================================
Files 595 597 +2
Lines 17667 17805 +138
Branches 2635 2660 +25
===============================================
+ Hits 3151 3228 +77
- Misses 14092 14144 +52
- Partials 424 433 +9
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.