module Sequel::SQLite::DatasetMethods

def _truncate_sql(table)

SQLite treats a DELETE with no WHERE clause as a TRUNCATE
def _truncate_sql(table)
  "DELETE FROM #{table}"
end