class DuckDB::Appender

def append_uint8(value)

.flush
.end_row
.append_uint8(20)
.append_int32(1)
appender
appender = con.appender('users')
con.query('CREATE TABLE users (id INTEGER, age UTINYINT)')
con = db.connect
db = DuckDB::Database.open
require 'duckdb'

Appends an uint8 value to the current row in the appender.

appender.append_uint8(val) -> self
call-seq:
def append_uint8(value)
  return self if _append_uint8(value)
  raise_appender_error('failed to append_uint8')
end