MCPcopy Index your code
hub / github.com/questdb/questdb / NoOpRow

Class NoOpRow

core/src/main/java/io/questdb/cairo/TableWriter.java:14410–14630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14408 }
14409
14410 private static class NoOpRow implements Row {
14411 @Override
14412 public void append() {
14413 // no-op
14414 }
14415
14416 @Override
14417 public void cancel() {
14418 // no-op
14419 }
14420
14421 @Override
14422 public void putArray(int columnIndex, @NotNull ArrayView array) {
14423 // no-op
14424 }
14425
14426 @Override
14427 public void putBin(int columnIndex, long address, long len) {
14428 // no-op
14429 }
14430
14431 @Override
14432 public void putBin(int columnIndex, BinarySequence sequence) {
14433 // no-op
14434 }
14435
14436 @Override
14437 public void putBool(int columnIndex, boolean value) {
14438 // no-op
14439 }
14440
14441 @Override
14442 public void putByte(int columnIndex, byte value) {
14443 // no-op
14444 }
14445
14446 @Override
14447 public void putChar(int columnIndex, char value) {
14448 // no-op
14449 }
14450
14451 @Override
14452 public void putDate(int columnIndex, long value) {
14453 // no-op
14454 }
14455
14456 @Override
14457 public void putDecimal(int columnIndex, Decimal256 value) {
14458 // no-op
14459 }
14460
14461 @Override
14462 public void putDecimal128(int columnIndex, long high, long low) {
14463 // no-op
14464 }
14465
14466 @Override
14467 public void putDecimal256(int columnIndex, long hh, long hl, long lh, long ll) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…