class DuckDB::Appender

def append_int16(value)

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

Appends an int16(SMALLINT) value to the current row in the appender.

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