Sha256: b52fb9b2e04965b32fa92a9349b7d794f31236377a31c83f5481de75cd471e85

Contents?: true

Size: 991 Bytes

Versions: 31

Compression:

Stored size: 991 Bytes

Contents

= New Features

* An is_distinct_from extension has been added with support for the
  SQL IS DISTINCT FROM operator.  This operator is similar to the
  not equals operator, except in terms of NULL handling.  It returns
  true if only one side is NULL, and false if both sides are NULL.
  You can call is_distinct_from on Sequel itself or on Sequel objects:

    Sequel.is_distinct_from(:column_a, :column_b)
    Sequel[:column_a].is_distinct_from(:column_b)
    # (column_a IS DISTINCT FROM column_b)

  On databases not supporting IS DISTINCT FROM, support is emulated
  using a CASE statement.

* Column definitions on MySQL can use the :on_update_current_timestamp
  option for ON UPDATE CURRENT_TIMESTAMP, which creates a column that
  will automatically have its value set to CURRENT_TIMESTAMP on every
  update.

* Database#create_function on PostgreSQL now supports a :parallel
  option to set the thread safety of the funciton.  The value should
  be :safe, :unsafe, or :restricted.

Version data entries

31 entries across 31 versions & 2 rubygems

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