class DuckDB::Appender

def append_uint16(value)

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

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

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