activerecord-sqlserver-adapter 7.0.5.1 → 7.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/CHANGELOG.md +6 -0
- data/README.md +3 -3
- data/VERSION +1 -1
- data/lib/active_record/connection_adapters/sqlserver/schema_statements.rb +23 -0
- data/lib/active_record/connection_adapters/sqlserver_adapter.rb +4 -0
- data/test/cases/coerced_tests.rb +56 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b4383f74e5eb074b9cbe32e45c13f29139ec454f9da2b9f2d3b12f20fd6dcff
|
4
|
+
data.tar.gz: 5f0a17eae3d510ab6c842276e1265bb523d1682a1f65cf7ae5039b96115f2b63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f7e83b119e54652678c2b9293128ad7da186bc6493dbeb254bee97c7bb4b1714587e420718dd8764ca28cec68e471c7834b2944ebcca4b3ed4e64c1df167189
|
7
|
+
data.tar.gz: dfd8d4cf7f83f5275725ce33f9d8dbda1bfa1eef8cccd3d29f8f49f0d5a9e287316ce400847b93d4029993707784e4b143abec542ae747f15859b2f200493ef7
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -12,11 +12,11 @@ The SQL Server adapter for ActiveRecord using SQL Server 2012 or higher.
|
|
12
12
|
Interested in older versions? We follow a rational versioning policy that tracks Rails. That means that our 7.x version of the adapter is only for the latest 7.x version of Rails. If you need the adapter for SQL Server 2008 or 2005, you are still in the right spot. Just install the latest 3.2.x to 4.1.x version of the adapter that matches your Rails version. We also have stable branches for each major/minor release of ActiveRecord.
|
13
13
|
|
14
14
|
| Adapter Version | Rails Version | Support |
|
15
|
-
|-----------------| -------------
|
16
|
-
| `7.0.
|
15
|
+
|-----------------| ------------- |---------------------------------------------------------------------------------------------|
|
16
|
+
| `7.0.6` | `7.0.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/7-0-stable) |
|
17
17
|
| `6.1.2.1` | `6.1.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/6-1-stable) |
|
18
18
|
| `6.0.3` | `6.0.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/6-0-stable) |
|
19
|
-
| `5.2.1` | `5.2.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/5-2-stable)
|
19
|
+
| `5.2.1` | `5.2.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/5-2-stable) |
|
20
20
|
| `5.1.6` | `5.1.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/5-1-stable) |
|
21
21
|
| `4.2.18` | `4.2.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/4-2-stable) |
|
22
22
|
| `4.1.8` | `4.1.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/4-1-stable) |
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
7.0.
|
1
|
+
7.0.6
|
@@ -240,6 +240,29 @@ module ActiveRecord
|
|
240
240
|
end
|
241
241
|
end
|
242
242
|
|
243
|
+
def check_constraints(table_name)
|
244
|
+
sql = <<~SQL
|
245
|
+
select chk.name AS 'name',
|
246
|
+
chk.definition AS 'expression'
|
247
|
+
from sys.check_constraints chk
|
248
|
+
inner join sys.tables st on chk.parent_object_id = st.object_id
|
249
|
+
where
|
250
|
+
st.name = '#{table_name}'
|
251
|
+
SQL
|
252
|
+
|
253
|
+
chk_info = exec_query(sql, "SCHEMA")
|
254
|
+
|
255
|
+
chk_info.map do |row|
|
256
|
+
options = {
|
257
|
+
name: row["name"]
|
258
|
+
}
|
259
|
+
expression = row["expression"]
|
260
|
+
expression = expression[1..-2] if expression.start_with?("(") && expression.end_with?(")")
|
261
|
+
|
262
|
+
CheckConstraintDefinition.new(table_name, expression, options)
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
243
266
|
def type_to_sql(type, limit: nil, precision: nil, scale: nil, **)
|
244
267
|
type_limitable = %w(string integer float char nchar varchar nvarchar).include?(type.to_s)
|
245
268
|
limit = nil unless type_limitable
|
data/test/cases/coerced_tests.rb
CHANGED
@@ -1449,6 +1449,13 @@ class SchemaDumperTest < ActiveRecord::TestCase
|
|
1449
1449
|
output = dump_all_table_schema([/^[^n]/])
|
1450
1450
|
assert_match %r{precision: 3,[[:space:]]+scale: 2,[[:space:]]+default: 2\.78}, output
|
1451
1451
|
end
|
1452
|
+
|
1453
|
+
# SQL Server formats the check constraint expression differently.
|
1454
|
+
coerce_tests! :test_schema_dumps_check_constraints
|
1455
|
+
def test_schema_dumps_check_constraints_coerced
|
1456
|
+
constraint_definition = dump_table_schema("products").split(/\n/).grep(/t.check_constraint.*products_price_check/).first.strip
|
1457
|
+
assert_equal 't.check_constraint "[price]>[discounted_price]", name: "products_price_check"', constraint_definition
|
1458
|
+
end
|
1452
1459
|
end
|
1453
1460
|
|
1454
1461
|
class SchemaDumperDefaultsTest < ActiveRecord::TestCase
|
@@ -2150,7 +2157,7 @@ class FieldOrderedValuesTest < ActiveRecord::TestCase
|
|
2150
2157
|
coerce_tests! :test_in_order_of_with_nil
|
2151
2158
|
def test_in_order_of_with_nil_coerced
|
2152
2159
|
Book.connection.remove_index(:books, column: [:author_id, :name])
|
2153
|
-
|
2160
|
+
|
2154
2161
|
original_test_in_order_of_with_nil
|
2155
2162
|
ensure
|
2156
2163
|
Book.where(author_id: nil, name: nil).delete_all
|
@@ -2294,3 +2301,51 @@ class ActiveRecord::Encryption::EncryptableRecordTest < ActiveRecord::Encryption
|
|
2294
2301
|
assert_not author.valid?
|
2295
2302
|
end
|
2296
2303
|
end
|
2304
|
+
|
2305
|
+
module ActiveRecord
|
2306
|
+
class Migration
|
2307
|
+
class CheckConstraintTest < ActiveRecord::TestCase
|
2308
|
+
# SQL Server formats the check constraint expression differently.
|
2309
|
+
coerce_tests! :test_check_constraints
|
2310
|
+
def test_check_constraints_coerced
|
2311
|
+
check_constraints = @connection.check_constraints("products")
|
2312
|
+
assert_equal 1, check_constraints.size
|
2313
|
+
|
2314
|
+
constraint = check_constraints.first
|
2315
|
+
assert_equal "products", constraint.table_name
|
2316
|
+
assert_equal "products_price_check", constraint.name
|
2317
|
+
assert_equal "[price]>[discounted_price]", constraint.expression
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
# SQL Server formats the check constraint expression differently.
|
2321
|
+
coerce_tests! :test_add_check_constraint
|
2322
|
+
def test_add_check_constraint_coerced
|
2323
|
+
@connection.add_check_constraint :trades, "quantity > 0"
|
2324
|
+
|
2325
|
+
check_constraints = @connection.check_constraints("trades")
|
2326
|
+
assert_equal 1, check_constraints.size
|
2327
|
+
|
2328
|
+
constraint = check_constraints.first
|
2329
|
+
assert_equal "trades", constraint.table_name
|
2330
|
+
assert_equal "chk_rails_2189e9f96c", constraint.name
|
2331
|
+
assert_equal "[quantity]>(0)", constraint.expression
|
2332
|
+
end
|
2333
|
+
|
2334
|
+
# SQL Server formats the check constraint expression differently.
|
2335
|
+
coerce_tests! :test_remove_check_constraint
|
2336
|
+
def test_remove_check_constraint_coerced
|
2337
|
+
@connection.add_check_constraint :trades, "price > 0", name: "price_check"
|
2338
|
+
@connection.add_check_constraint :trades, "quantity > 0", name: "quantity_check"
|
2339
|
+
|
2340
|
+
assert_equal 2, @connection.check_constraints("trades").size
|
2341
|
+
@connection.remove_check_constraint :trades, name: "quantity_check"
|
2342
|
+
assert_equal 1, @connection.check_constraints("trades").size
|
2343
|
+
|
2344
|
+
constraint = @connection.check_constraints("trades").first
|
2345
|
+
assert_equal "trades", constraint.table_name
|
2346
|
+
assert_equal "price_check", constraint.name
|
2347
|
+
assert_equal "[price]>(0)", constraint.expression
|
2348
|
+
end
|
2349
|
+
end
|
2350
|
+
end
|
2351
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-sqlserver-adapter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ken Collins
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2023-11-
|
18
|
+
date: 2023-11-20 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: activerecord
|
@@ -231,8 +231,8 @@ licenses:
|
|
231
231
|
- MIT
|
232
232
|
metadata:
|
233
233
|
bug_tracker_uri: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/issues
|
234
|
-
changelog_uri: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/blob/v7.0.
|
235
|
-
source_code_uri: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/v7.0.
|
234
|
+
changelog_uri: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/blob/v7.0.6/CHANGELOG.md
|
235
|
+
source_code_uri: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/v7.0.6
|
236
236
|
post_install_message:
|
237
237
|
rdoc_options: []
|
238
238
|
require_paths:
|