Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Commits
98775b18
Commit
98775b18
authored
3 years ago
by
Kirill Stytsenko
Browse files
Options
Downloads
Patches
Plain Diff
Fix apostrophe location
Former-commit-id:
a02edd4e
parent
00bbe314
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fda-query-service/services/src/main/java/at/tuwien/mapper/QueryMapper.java
+2
-2
2 additions, 2 deletions
.../services/src/main/java/at/tuwien/mapper/QueryMapper.java
with
2 additions
and
2 deletions
fda-query-service/services/src/main/java/at/tuwien/mapper/QueryMapper.java
+
2
−
2
View file @
98775b18
...
...
@@ -192,8 +192,8 @@ public interface QueryMapper {
return
query
+
" FOR SYSTEM_TIME AS OF TIMESTAMP '"
+
LocalDateTime
.
ofInstant
(
timestamp
,
ZoneId
.
of
(
"Europe/Vienna"
))
+
" LIMIT "
+
size
+
" OFFSET "
+
(
page
*
size
)
+
"
'
;"
;
"
'
LIMIT "
+
size
+
" OFFSET "
+
(
page
*
size
)
+
";"
;
}
return
query
+
" FOR SYSTEM_TIME AS OF TIMESTAMP '"
+
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment