Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mquery
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Subconscious Compute (Open)
mquery
Merge requests
!24
Resolve "Subquery support"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Subquery support"
43-subquery-support
into
main
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
Maaz Ahmed
requested to merge
43-subquery-support
into
main
1 year ago
Overview
0
Commits
2
Pipelines
2
Changes
1
Expand
Closes
#43 (closed)
0
0
Merge request reports
Viewing commit
d75fc57d
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d75fc57d
fix: make Offset fields pub
· d75fc57d
Maaz Ahmed
authored
1 year ago
src/query/mod.rs
+
1
−
1
Options
@@ -244,7 +244,7 @@ impl From<(u64, Unit)> for Duration {
/// Specify time offset for the queries
#[derive(Debug,
Clone,
Copy)]
pub
struct
Offset
(
i64
,
Unit
);
pub
struct
Offset
(
pub
i64
,
pub
Unit
);
impl
Display
for
Offset
{
fn
fmt
(
&
self
,
f
:
&
mut
std
::
fmt
::
Formatter
<
'_
>
)
->
std
::
fmt
::
Result
{
Loading