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

Method isNull

core/src/main/java/io/questdb/std/Decimal256.java:683–686  ·  view source on GitHub ↗

Returns whether the Decimal256 is null or not. @param hh the highest 64 bits (bits 192-255) @param hl the high 64 bits (bits 128-191) @param lh the mid 64 bits (bits 64-127) @param ll the low 64 bits (bits 0-63) @return true if null, false otherwise

(long hh, long hl, long lh, long ll)

Source from the content-addressed store, hash-verified

681 * @return true if null, false otherwise
682 */
683 public static boolean isNull(long hh, long hl, long lh, long ll) {
684 return hh == Decimals.DECIMAL256_HH_NULL && hl == Decimals.DECIMAL256_HL_NULL
685 && lh == Decimals.DECIMAL256_LH_NULL && ll == Decimals.DECIMAL256_LL_NULL;
686 }
687
688 /**
689 * Static modulo method.

Callers 15

assertCellMethod · 0.95
testZeroLengthMethod · 0.95
assertLoadNullDecimalMethod · 0.95
testConstantMethod · 0.95
testDivRandomValuesMethod · 0.95
testSetDecimalNullMethod · 0.95
testToDecimal256NullMethod · 0.95

Calls

no outgoing calls

Tested by 15

assertCellMethod · 0.76
testZeroLengthMethod · 0.76
assertLoadNullDecimalMethod · 0.76
testConstantMethod · 0.76
testDivRandomValuesMethod · 0.76
testSetDecimalNullMethod · 0.76
testToDecimal256NullMethod · 0.76