module Sequel::SQLite::DatasetMethods
def constant_sql_append(sql, constant)
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
def constant_sql_append(sql, constant) if c = CONSTANT_MAP[constant] sql << c else super end end