Skip to content
Snippets Groups Projects
Commit 39db84a0 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

WIP: Find regression.

parent 901b19c7
Branches
Tags
2 merge requests!66REL: prepare release 0.8.0,!62Fix large integer queries
Pipeline #24534 passed
...@@ -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 purposes. */
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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment