MCPcopy Create free account
hub / github.com/questdb/questdb / Decimal128

Method Decimal128

core/src/main/java/io/questdb/std/Decimal128.java:215–219  ·  view source on GitHub ↗

Default constructor - creates zero with scale 0

()

Source from the content-addressed store, hash-verified

213 * Default constructor - creates zero with scale 0
214 */
215 public Decimal128() {
216 this.high = 0;
217 this.low = 0;
218 this.scale = 0;
219 }
220
221 public Decimal128(long high, long low) {
222 this.high = high;

Callers

nothing calls this directly

Calls 4

validateScaleMethod · 0.95
hasUnsignOverflowedMethod · 0.95
instanceMethod · 0.95
putMethod · 0.65

Tested by

no test coverage detected