module Sequel::SQLite::DatasetMethods

def constant_sql_append(sql, constant)

of in localtime, so convert those constants to local time.
SQLite has CURRENT_TIMESTAMP and related constants in UTC instead
def constant_sql_append(sql, constant)
  if c = CONSTANT_MAP[constant]
    sql << c
  else
    super
  end
end