Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
39db84a0
Commit
39db84a0
authored
3 years ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Find regression.
parent
901b19c7
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!66
REL: prepare release 0.8.0
,
!62
Fix large integer queries
Pipeline
#24534
passed
3 years ago
Stage: info
Stage: test
Stage: deploy
Changes
1
Pipelines
3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/caosdb/server/query/POV.java
+29
-29
29 additions, 29 deletions
src/main/java/org/caosdb/server/query/POV.java
with
29 additions
and
29 deletions
src/main/java/org/caosdb/server/query/POV.java
+
29
−
29
View file @
39db84a0
...
@@ -507,35 +507,35 @@ public class POV implements EntityFilterInterface {
...
@@ -507,35 +507,35 @@ public class POV implements EntityFilterInterface {
return
ret
;
return
ret
;
}
}
/** Return the value type as string, for debugging puposes. */
/** Return the value type as string, for debugging pu
r
poses. */
public
String
getValueType
()
{
//
public String getValueType() {
if
(
this
.
vInt
!=
null
)
{
// vInt
//
if (this.vInt != null) { // vInt
System
.
out
.
println
(
this
.
vInt
);
//
System.out.println(this.vInt);
return
"Integer"
;
//
return "Integer";
}
//
}
if
(
this
.
vDouble
!=
null
)
{
// vInt
//
if (this.vDouble != null) { // vInt
return
"Double"
;
//
return "Double";
}
//
}
if
(
this
.
vDatetime
!=
null
)
{
// vInt
//
if (this.vDatetime != null) { // vInt
return
"Datetime"
;
//
return "Datetime";
}
//
}
return
"String"
;
//
return "String";
}
//
}
/** Return the Int value, which may be null. */
//
/** Return the Int value, which may be null. */
public
Integer
getVInt
()
{
//
public Integer getVInt() {
return
this
.
vInt
;
//
return this.vInt;
}
//
}
/** Return the Double value, which may be null. */
//
/** Return the Double value, which may be null. */
public
Double
getVDouble
()
{
//
public Double getVDouble() {
return
this
.
vDouble
;
//
return this.vDouble;
}
//
}
/** Return the Datetime value, which may be null. */
//
/** Return the Datetime value, which may be null. */
public
DateTimeInterface
getVDatetime
()
{
//
public DateTimeInterface getVDatetime() {
return
this
.
vDatetime
;
//
return this.vDatetime;
}
//
}
public
String
getAggregate
()
{
public
String
getAggregate
()
{
return
this
.
aggregate
;
return
this
.
aggregate
;
...
...
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