Method: Sequel::SQLite::DatasetMethods#supports_window_function_frame_option?

Defined in:
lib/sequel/adapters/shared/sqlite.rb

#supports_window_function_frame_option?(option) ⇒ Boolean

SQLite 3.28.0+ supports all window frame options that Sequel supports



872
873
874
# File 'lib/sequel/adapters/shared/sqlite.rb', line 872

def supports_window_function_frame_option?(option)
  db.sqlite_version >= 32800 ? true : super
end