Hristo Katsarski
04/27/2023, 12:21 PMUPDATE 'stock' set open = ?, high = ?, low = ?, close = ?, volume = ? WHERE code = ? AND ddate = ?
The open, high, low and close are set as doulbe-s, volume as long, code is String and ddate a Timestamp. The expected number updated rows is returned by:
int cntUpd = prepStmt.executeUpdate();
and should be 1 but I'm getting other random values. When querying the data via QDB web-console the updated row is correct, and there are no other updated rows.
Looks like the result of an update should be ignored. Table is partitioned and with WAL.Bolek Ziobrowski
04/27/2023, 12:27 PMUPDATE
◦ No row count returned
◦ No support for JOIN
at https://questdb.io/docs/concept/write-ahead-log/ .Hristo Katsarski
04/27/2023, 12:32 PM