rom-sql 3.3.2 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddc33a4e8bd74212636e3c07be5ee12ab1e8947d4e5f76a3981c31c577140697
4
- data.tar.gz: '097637bec7bac21c61128ed798ae0038e7f19ffed9579e89d596243f4b3f8bc0'
3
+ metadata.gz: 72190a3c5b2df9cf0bc5db0ba2a4cae185f88e87dfa9ad7d0f7cf3967c1fe048
4
+ data.tar.gz: acd353e5348e8c797275829dacfedb445289e5e76d636df4b5cb7b40c1f48e7b
5
5
  SHA512:
6
- metadata.gz: 279b99442b0b5b6434c2d5cbf9817e1e04b62897cdf485cbbc1164259336d47bf621e98a2b2a5f648d61ef0e0fa7f5c9f7dfcec2b448f33db49f41b1e1295352
7
- data.tar.gz: 466bbb815b90464ada9de31e040e36d91e75c9a34d9d36d8bb85f639fc1808318d87ab91e037bf0ee69a03433a4326ef6640eda323b6bceaf5b0f473cbffa4e6
6
+ metadata.gz: 93bc3e2cb1873865a886d221d34ff164a7d83de2ddaec4f6f3d99daf65465a14ded348c546151ae9d44e6eae6ca4dded468cc7386ff4513d6b02bab843485f14
7
+ data.tar.gz: 6c45fd11d745c05d1f536700c1cb246dd358e09668a406377281486b3d062c366db847dea96e457170e518e104baf64bb296f41613dd0099b5ffb7e839cd7679
data/CHANGELOG.md CHANGED
@@ -1,6 +1,39 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
- ## 3.3.2 2020-01-06
3
+ ## 3.5.0 2021-03-26
4
+
5
+
6
+ ### Fixed
7
+
8
+ - Restored the fix for #390 that was lost by an accident in 3.3.3 and 3.4.0 (@solnic)
9
+
10
+ ### Added
11
+
12
+ - Support for using partial indixes in PG upsert commands (issue #394 fixed via #395) (@smaximov)
13
+
14
+ [Compare v3.4.0...v3.5.0](https://github.com/rom-rb/rom-sql/compare/v3.4.0...v3.5.0)
15
+
16
+ ## 3.4.0 2021-03-19
17
+
18
+
19
+ ### Added
20
+
21
+ - `Relation#unordered` (@radar)
22
+
23
+
24
+ [Compare v3.3.3...v3.4.0](https://github.com/rom-rb/rom-sql/compare/v3.3.3...v3.4.0)
25
+
26
+ ## 3.3.3 2021-03-05
27
+
28
+
29
+ ### Added
30
+
31
+ - Support for streaming composite relations (@ianks)
32
+
33
+
34
+ [Compare v3.3.2...v3.3.3](https://github.com/rom-rb/rom-sql/compare/v3.3.2...v3.3.3)
35
+
36
+ ## 3.3.2 2021-01-06
4
37
 
5
38
 
6
39
  ### Fixed
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2021 rom-rb team
3
+ Copyright (c) 2015-2020 rom-rb team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
@@ -36,6 +36,7 @@ module ROM
36
36
  def self.included(klass)
37
37
  super
38
38
  ROM::Relation::Graph.include(Combined)
39
+ ROM::Relation::Composite.include(Composite)
39
40
  end
40
41
 
41
42
  if defined?(JRUBY_VERSION)
@@ -82,6 +83,16 @@ module ROM
82
83
  raise StreamingNotSupportedError, "not supported on combined relations"
83
84
  end
84
85
  end
86
+
87
+ module Composite
88
+ def stream_each
89
+ return to_enum unless block_given?
90
+
91
+ left.stream_each do |tuple|
92
+ yield right.call([tuple]).first
93
+ end
94
+ end
95
+ end
85
96
  end
86
97
  end
87
98
  end
@@ -85,7 +85,7 @@ module ROM
85
85
  class Upsert < SQL::Commands::Create
86
86
  adapter :sql
87
87
 
88
- defines :constraint, :conflict_target, :update_statement, :update_where
88
+ defines :constraint, :conflict_target, :conflict_where, :update_statement, :update_where
89
89
 
90
90
  # @!attribute [r] constraint
91
91
  # @return [Symbol] the name of the constraint expected to be violated
@@ -95,6 +95,10 @@ module ROM
95
95
  # @return [Object] the column or expression to handle a violation on
96
96
  option :conflict_target, default: -> { self.class.conflict_target }
97
97
 
98
+ # @!attribute [r] conflict_where
99
+ # @return [Object] the index filter, when using a partial index to determine uniqueness
100
+ option :conflict_where, default: -> { self.class.conflict_where }
101
+
98
102
  # @!attribute [r] update_statement
99
103
  # @return [Object] the update statement which will be executed in case of a violation
100
104
  option :update_statement, default: -> { self.class.update_statement }
@@ -123,6 +127,7 @@ module ROM
123
127
  @upsert_options ||= {
124
128
  constraint: constraint,
125
129
  target: conflict_target,
130
+ conflict_where: conflict_where,
126
131
  update_where: update_where,
127
132
  update: update_statement
128
133
  }
@@ -197,8 +197,8 @@ module ROM
197
197
  # Filter aggregate using the specified conditions
198
198
  #
199
199
  # @example
200
- # users.project { integer::count(:id).filter(name.is("Jack")).as(:jacks) }.order(nil)
201
- # users.project { integer::count(:id).filter { name.is("John") }).as(:johns) }.order(nil)
200
+ # users.project { integer::count(:id).filter(name.is("Jack")).as(:jacks) }.unordered
201
+ # users.project { integer::count(:id).filter { name.is("John") }).as(:johns) }.ordered
202
202
  #
203
203
  # @param condition [Hash,SQL::Attribute] Conditions
204
204
  # @yield [block] A block with restrictions
@@ -481,6 +481,18 @@ module ROM
481
481
  end
482
482
  end
483
483
 
484
+ # Removes ordering for the relation
485
+ #
486
+ # @example
487
+ # users.unordered
488
+ #
489
+ # @return [Relation]
490
+ #
491
+ # @api public
492
+ def unordered
493
+ new(dataset.unordered)
494
+ end
495
+
484
496
  # Reverse the order of the relation
485
497
  #
486
498
  # @example
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ROM
4
4
  module SQL
5
- VERSION = '3.3.2'.freeze
5
+ VERSION = '3.5.0'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rom-sql
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-06 00:00:00.000000000 Z
11
+ date: 2021-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sequel