IMSMWU/RClickhouse

uint-overflow

inkrement opened this issue · 0 comments

CREATE TABLE test (
  id UInt64 DEFAULT rand64()
) Engine=TinyLog;

the following query will return a column id containing positive and negative numbers, which should not be the case for a UInt64:

batch <- DBI::dbGetQuery(con, 'select * from test limit 100')