File: 5.19.0.txt

package info (click to toggle)
ruby-sequel 5.63.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,408 kB
  • sloc: ruby: 113,747; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
= New Features

* A Database#rename_enum_value method has been added to the pg_enum
  extension. It is supported on PostgreSQL 10+:

    DB.rename_enum_value(:enum_type, 'old_name', 'new_name')

= Other Improvements

* The performance of row fetching and type conversion in the
  sqlanywhere adapter has been improved.

* The performance of row fetching in the sqlite adapter has been
  improved.

* Calling Database#drop_table now drops any constraint validations
  metadata for the table if using the constraint_validations
  extension.  However, modifying the table using Database#alter_table
  does not affect the constraint validations metadata.

* The sqlite adapter when used with ruby-sqlite3 1.4.0+ now uses
  SQLite extended result codes for a more accurate determination of
  specific database errors types.

* Performance for typecasting to decimal and floats has been improved
  slightly.

* Performance when merging hashes has been improved slightly.