Sha256: 18f3321c5e639d36443bdcefd81acc49f9c065319b24cd5e1f97c25c8406647f

Contents?: true

Size: 1.01 KB

Versions: 6

Compression:

Stored size: 1.01 KB

Contents

= New Features

* Dataset#select_prepend has been added for prepending to the
  currently selected columns:

    DB[:table].select_prepend(:column)
    # SELECT column, table.*

  As not all databases support "SELECT column, *", select_prepend
  qualifies wildcard selections to all tables referenced in the
  query.

  The only reason to use select_prepend is if you want the hashes
  returned by Sequel to be in a specific order.  Otherwise, it is
  better to use select_append.

* On PostgreSQL, Sequel now supports an :unlogged_tables_default
  Database option, which will default created tables to be UNLOGGED.
  This can be useful to speedup testing in some cases, but it should
  never be used in cases where data integrity is important.

= Other Improvements

* On PostgreSQL, Database#create_or_replace_view now supports the
  :materialized option.  This allows for dropping an existing
  materialized view and creating a new one with the same name
  (PostgreSQL does not have native support for replacing materialized
  views).

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sequel-5.83.1 doc/release_notes/5.79.0.txt
sequel-5.83.0 doc/release_notes/5.79.0.txt
sequel-5.82.0 doc/release_notes/5.79.0.txt
sequel-5.81.0 doc/release_notes/5.79.0.txt
sequel-5.80.0 doc/release_notes/5.79.0.txt
sequel-5.79.0 doc/release_notes/5.79.0.txt