Skip to content

Commit 1d61de7

Browse files
committed
documentation
1 parent 1125b0b commit 1d61de7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/src/main/java/io/questdb/client/cutlass/qwp/client/ColumnView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* {@code arrayRowAddr} accessors expose raw native pointers into the WebSocket
5757
* payload buffer for SIMD or JNI consumers. The layout of the bytes behind
5858
* these addresses follows the QWP wire format (see
59-
* {@code docs/QWP_EGRESS_EXTENSION.md}); these methods are an expert API and
59+
* {@code docs/qwp/wire-egress.md}); these methods are an expert API and
6060
* may shift as the wire format evolves.
6161
* <p>
6262
* <strong>Type contract / NULL handling.</strong> Each typed accessor delegates

core/src/main/java/io/questdb/client/cutlass/qwp/client/QwpColumnBatch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ public long getUuidLo(int col, int row) {
563563
/**
564564
* True if the cell is NULL on the wire.
565565
* <p>
566-
* Note on type-specific sentinels (see {@code docs/QWP_EGRESS_EXTENSION.md} sec 11.5):
566+
* Note on type-specific sentinels (see {@code docs/qwp/wire-egress.md} sec 11.5):
567567
* QuestDB stores NULL as a sentinel value for several types -- {@code Long.MIN_VALUE}
568568
* for LONG/INT/etc., {@code 0.0.0.0} for IPv4, {@code -1} for GEOHASH, and crucially
569569
* {@code NaN} for FLOAT and DOUBLE. Egress preserves these conventions: a row carrying

core/src/main/java/io/questdb/client/cutlass/qwp/client/WebSocketResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class WebSocketResponse {
7575
*/
7676
public static final byte STATUS_DURABLE_ACK = 0x02;
7777
public static final byte STATUS_INTERNAL_ERROR = 0x06;
78-
// Status codes (must match QWP_SPECIFICATION.md)
78+
// Status codes (must match docs/qwp/wire-ingress.md)
7979
public static final byte STATUS_OK = 0x00;
8080
public static final byte STATUS_PARSE_ERROR = 0x05;
8181
public static final byte STATUS_SCHEMA_MISMATCH = 0x03;

0 commit comments

Comments
 (0)