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

WIP: Find regression.

parent 901b19c7
No related branches found
No related tags found
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 {
return ret;
}
/** Return the value type as string, for debugging puposes. */
public String getValueType() {
if (this.vInt != null) { // vInt
System.out.println(this.vInt);
return "Integer";
}
if (this.vDouble != null) { // vInt
return "Double";
}
if (this.vDatetime != null) { // vInt
return "Datetime";
}
return "String";
}
/** Return the Int value, which may be null. */
public Integer getVInt() {
return this.vInt;
}
/** Return the Double value, which may be null. */
public Double getVDouble() {
return this.vDouble;
}
/** Return the Datetime value, which may be null. */
public DateTimeInterface getVDatetime() {
return this.vDatetime;
}
/** Return the value type as string, for debugging purposes. */
// public String getValueType() {
// if (this.vInt != null) { // vInt
// System.out.println(this.vInt);
// return "Integer";
// }
// if (this.vDouble != null) { // vInt
// return "Double";
// }
// if (this.vDatetime != null) { // vInt
// return "Datetime";
// }
// return "String";
// }
// /** Return the Int value, which may be null. */
// public Integer getVInt() {
// return this.vInt;
// }
// /** Return the Double value, which may be null. */
// public Double getVDouble() {
// return this.vDouble;
// }
// /** Return the Datetime value, which may be null. */
// public DateTimeInterface getVDatetime() {
// return this.vDatetime;
// }
public String getAggregate() {
return this.aggregate;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment