Sha256: 28891d6cbcf6006f8b9cf262dde8248330c1a2eb8e1e16e528ca759954078c0e

Contents?: true

Size: 1.51 KB

Versions: 91

Compression:

Stored size: 1.51 KB

Contents

= New Features

* Sequel now supports Ruby 2.7+ startless ranges in filters:

    DB[:table].where(:column=>(..10))
    # SELECT * FROM table WHERE (column <= 10)

    DB[:table].where(:column=>(...10))
    # SELECT * FROM table WHERE (column < 10)

  It also supports startless, endless ranges in filters, using a
  condition that is always true:

    DB[:table].where(:column=>(nil..nil))
    # SELECT * FROM table WHERE (1 = 1)

* Sequel now supports startless ranges in the pg_range extension:

    DB.extension :pg_range

    DB[:table].insert(:column=>(..10))
    # INSERT INTO "table" ("column") VALUES ('[,10]') RETURNING "id"

    DB[:table].insert(:column=>(...10))
    # INSERT INTO "table" ("column") VALUES ('[,10)') RETURNING "id"

    DB[:table].insert(:column=>(nil..nil))
    # INSERT INTO "table" ("column") VALUES ('[,]') RETURNING "id"

* Sequel now supports a :materialized option in Dataset#with on
  PostgreSQL 12+, to control the inlining of common table expressions:

    DB[:t].with(:t, DB[:t2], :materialized=>false)
    # WITH "t" AS NOT MATERIALIZED (SELECT * FROM "t2")
    # SELECT * FROM "t"

    DB[:t].with(:t, DB[:t2], :materialized=>true)
    # WITH "t" AS MATERIALIZED (SELECT * FROM "t2")
    # SELECT * FROM "t"

= Other Improvements

* Database#primary_key_sequence now works for tables without serial
  sequences on PostgreSQL 12+.

* Dataset#multi_insert and #import with return: :primary_key option
  on Microsoft SQL Server now work correctly if the dataset uses
  a row_proc (e.g. for model datasets).

Version data entries

91 entries across 77 versions & 2 rubygems

Version Path
sequel-5.83.1 doc/release_notes/5.22.0.txt
sequel-5.83.0 doc/release_notes/5.22.0.txt
sequel-5.82.0 doc/release_notes/5.22.0.txt
sequel-5.81.0 doc/release_notes/5.22.0.txt
sequel-5.80.0 doc/release_notes/5.22.0.txt
sequel-5.79.0 doc/release_notes/5.22.0.txt
sequel-5.78.0 doc/release_notes/5.22.0.txt
sequel-5.77.0 doc/release_notes/5.22.0.txt
sequel-5.76.0 doc/release_notes/5.22.0.txt
sequel-5.75.0 doc/release_notes/5.22.0.txt
sequel-5.74.0 doc/release_notes/5.22.0.txt
sequel-5.73.0 doc/release_notes/5.22.0.txt
sequel-5.72.0 doc/release_notes/5.22.0.txt
sequel-5.71.0 doc/release_notes/5.22.0.txt
sequel-5.70.0 doc/release_notes/5.22.0.txt
sequel-5.69.0 doc/release_notes/5.22.0.txt
sequel-5.68.0 doc/release_notes/5.22.0.txt
sequel-5.67.0 doc/release_notes/5.22.0.txt
sequel-5.66.0 doc/release_notes/5.22.0.txt
sequel-5.65.0 doc/release_notes/5.22.0.txt