sequel 5.107.0 → 5.108.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/bin/sequel +5 -5
  3. data/lib/sequel/adapters/ado.rb +1 -1
  4. data/lib/sequel/adapters/ibmdb.rb +2 -2
  5. data/lib/sequel/adapters/jdbc/hsqldb.rb +1 -1
  6. data/lib/sequel/adapters/jdbc/mysql.rb +1 -1
  7. data/lib/sequel/adapters/jdbc.rb +2 -2
  8. data/lib/sequel/adapters/mock.rb +1 -1
  9. data/lib/sequel/adapters/mysql.rb +7 -2
  10. data/lib/sequel/adapters/mysql2.rb +5 -4
  11. data/lib/sequel/adapters/postgres.rb +37 -37
  12. data/lib/sequel/adapters/shared/db2.rb +2 -2
  13. data/lib/sequel/adapters/shared/mssql.rb +4 -4
  14. data/lib/sequel/adapters/shared/mysql.rb +2 -2
  15. data/lib/sequel/adapters/shared/postgres.rb +67 -44
  16. data/lib/sequel/adapters/shared/sqlite.rb +3 -3
  17. data/lib/sequel/adapters/utils/emulate_offset_with_reverse_and_count.rb +1 -1
  18. data/lib/sequel/adapters/utils/mysql_mysql2.rb +11 -1
  19. data/lib/sequel/connection_pool/sharded_single.rb +1 -1
  20. data/lib/sequel/connection_pool/sharded_threaded.rb +7 -5
  21. data/lib/sequel/connection_pool/sharded_timed_queue.rb +3 -3
  22. data/lib/sequel/connection_pool/threaded.rb +9 -7
  23. data/lib/sequel/connection_pool/timed_queue.rb +2 -2
  24. data/lib/sequel/connection_pool.rb +3 -3
  25. data/lib/sequel/core.rb +30 -22
  26. data/lib/sequel/database/connecting.rb +1 -1
  27. data/lib/sequel/database/features.rb +1 -1
  28. data/lib/sequel/database/misc.rb +7 -7
  29. data/lib/sequel/database/query.rb +2 -2
  30. data/lib/sequel/database/schema_generator.rb +4 -4
  31. data/lib/sequel/database/schema_methods.rb +2 -2
  32. data/lib/sequel/database/transactions.rb +4 -4
  33. data/lib/sequel/dataset/actions.rb +1 -1
  34. data/lib/sequel/dataset/features.rb +4 -4
  35. data/lib/sequel/dataset/graph.rb +1 -1
  36. data/lib/sequel/dataset/misc.rb +3 -3
  37. data/lib/sequel/dataset/prepared_statements.rb +2 -2
  38. data/lib/sequel/dataset/query.rb +8 -8
  39. data/lib/sequel/dataset/sql.rb +18 -10
  40. data/lib/sequel/dataset.rb +2 -2
  41. data/lib/sequel/deprecated.rb +2 -2
  42. data/lib/sequel/exceptions.rb +2 -2
  43. data/lib/sequel/extensions/_pretty_table.rb +1 -1
  44. data/lib/sequel/extensions/async_thread_pool.rb +3 -3
  45. data/lib/sequel/extensions/auto_cast_date_and_time.rb +2 -2
  46. data/lib/sequel/extensions/blank.rb +2 -2
  47. data/lib/sequel/extensions/constraint_validations.rb +1 -1
  48. data/lib/sequel/extensions/core_refinements.rb +8 -8
  49. data/lib/sequel/extensions/date_arithmetic.rb +1 -1
  50. data/lib/sequel/extensions/datetime_parse_to_time.rb +2 -2
  51. data/lib/sequel/extensions/duplicate_columns_handler.rb +2 -2
  52. data/lib/sequel/extensions/graph_each.rb +1 -1
  53. data/lib/sequel/extensions/index_caching.rb +1 -1
  54. data/lib/sequel/extensions/inflector.rb +5 -5
  55. data/lib/sequel/extensions/is_distinct_from.rb +2 -2
  56. data/lib/sequel/extensions/lit_require_frozen.rb +3 -3
  57. data/lib/sequel/extensions/migration.rb +21 -7
  58. data/lib/sequel/extensions/named_timezones.rb +8 -8
  59. data/lib/sequel/extensions/pg_array.rb +9 -8
  60. data/lib/sequel/extensions/pg_array_ops.rb +69 -14
  61. data/lib/sequel/extensions/pg_auto_parameterize.rb +2 -2
  62. data/lib/sequel/extensions/pg_auto_parameterize_in_array.rb +3 -3
  63. data/lib/sequel/extensions/pg_enum.rb +2 -2
  64. data/lib/sequel/extensions/pg_extended_date_support.rb +5 -5
  65. data/lib/sequel/extensions/pg_extended_integer_support.rb +1 -1
  66. data/lib/sequel/extensions/pg_hstore.rb +2 -2
  67. data/lib/sequel/extensions/pg_hstore_ops.rb +5 -5
  68. data/lib/sequel/extensions/pg_inet.rb +2 -2
  69. data/lib/sequel/extensions/pg_inet_ops.rb +2 -2
  70. data/lib/sequel/extensions/pg_interval.rb +6 -6
  71. data/lib/sequel/extensions/pg_json.rb +4 -4
  72. data/lib/sequel/extensions/pg_json_ops.rb +11 -11
  73. data/lib/sequel/extensions/pg_range.rb +6 -6
  74. data/lib/sequel/extensions/pg_range_ops.rb +7 -7
  75. data/lib/sequel/extensions/pg_row.rb +4 -4
  76. data/lib/sequel/extensions/pg_row_ops.rb +6 -6
  77. data/lib/sequel/extensions/provenance.rb +2 -2
  78. data/lib/sequel/extensions/query.rb +2 -2
  79. data/lib/sequel/extensions/s.rb +2 -2
  80. data/lib/sequel/extensions/schema_dumper.rb +4 -4
  81. data/lib/sequel/extensions/sequel_4_dataset_methods.rb +2 -0
  82. data/lib/sequel/extensions/sql_comments.rb +1 -1
  83. data/lib/sequel/extensions/sql_log_normalizer.rb +1 -1
  84. data/lib/sequel/extensions/sqlite_json_ops.rb +2 -2
  85. data/lib/sequel/extensions/string_agg.rb +5 -5
  86. data/lib/sequel/extensions/symbol_aref.rb +3 -3
  87. data/lib/sequel/extensions/symbol_aref_refinement.rb +3 -3
  88. data/lib/sequel/extensions/symbol_as_refinement.rb +2 -2
  89. data/lib/sequel/extensions/transaction_connection_validator.rb +1 -1
  90. data/lib/sequel/model/associations.rb +17 -17
  91. data/lib/sequel/model/base.rb +19 -11
  92. data/lib/sequel/model/inflections.rb +1 -1
  93. data/lib/sequel/model/plugins.rb +2 -2
  94. data/lib/sequel/model.rb +2 -2
  95. data/lib/sequel/plugins/association_pks.rb +1 -1
  96. data/lib/sequel/plugins/association_proxies.rb +4 -4
  97. data/lib/sequel/plugins/auto_restrict_eager_graph.rb +2 -0
  98. data/lib/sequel/plugins/caching.rb +1 -1
  99. data/lib/sequel/plugins/class_table_inheritance.rb +1 -1
  100. data/lib/sequel/plugins/column_encryption.rb +10 -10
  101. data/lib/sequel/plugins/concurrent_eager_loading.rb +2 -2
  102. data/lib/sequel/plugins/csv_serializer.rb +2 -2
  103. data/lib/sequel/plugins/deprecated_associations.rb +2 -2
  104. data/lib/sequel/plugins/eager_each.rb +1 -1
  105. data/lib/sequel/plugins/finder.rb +1 -1
  106. data/lib/sequel/plugins/forbid_lazy_load.rb +3 -3
  107. data/lib/sequel/plugins/insert_conflict.rb +1 -1
  108. data/lib/sequel/plugins/insert_returning_select.rb +1 -1
  109. data/lib/sequel/plugins/json_serializer.rb +4 -4
  110. data/lib/sequel/plugins/lazy_attributes.rb +1 -1
  111. data/lib/sequel/plugins/many_through_many.rb +1 -1
  112. data/lib/sequel/plugins/pg_array_associations.rb +4 -4
  113. data/lib/sequel/plugins/pg_auto_constraint_validations.rb +3 -3
  114. data/lib/sequel/plugins/pg_eager_any_typed_array.rb +2 -2
  115. data/lib/sequel/plugins/prepared_statements.rb +2 -2
  116. data/lib/sequel/plugins/serialization.rb +1 -1
  117. data/lib/sequel/plugins/sharding.rb +1 -1
  118. data/lib/sequel/plugins/single_table_inheritance.rb +1 -1
  119. data/lib/sequel/plugins/skip_saving_columns.rb +2 -2
  120. data/lib/sequel/plugins/split_values.rb +1 -1
  121. data/lib/sequel/plugins/sql_comments.rb +8 -8
  122. data/lib/sequel/plugins/subclasses.rb +6 -6
  123. data/lib/sequel/plugins/subset_conditions.rb +2 -2
  124. data/lib/sequel/plugins/tactical_eager_loading.rb +1 -1
  125. data/lib/sequel/plugins/throw_failures.rb +2 -2
  126. data/lib/sequel/plugins/unused_associations.rb +5 -5
  127. data/lib/sequel/plugins/validation_helpers.rb +1 -1
  128. data/lib/sequel/plugins/xml_serializer.rb +2 -0
  129. data/lib/sequel/sql.rb +11 -11
  130. data/lib/sequel/version.rb +1 -1
  131. metadata +1 -1
@@ -63,7 +63,7 @@
63
63
  # DB[:tab].update(h: Sequel.hstore_op(:h).delete('k1'))
64
64
  #
65
65
  # On PostgreSQL 14+, The hstore <tt>[]</tt> method will use subscripts instead of being
66
- # the same as +get+, if the value being wrapped is an identifer:
66
+ # the same as +get+, if the value being wrapped is an identifier:
67
67
  #
68
68
  # Sequel.hstore_op(:hstore_column)['a'] # hstore_column['a']
69
69
  # Sequel.hstore_op(Sequel[:h][:s])['a'] # h.s['a']
@@ -367,9 +367,9 @@ module Sequel
367
367
  end
368
368
  end
369
369
 
370
- # :nocov:
370
+ # simplecov:disable
371
371
  if defined?(HStore)
372
- # :nocov:
372
+ # simplecov:enable
373
373
  class HStore
374
374
  # Wrap the receiver in an HStoreOp so you can easily use the PostgreSQL
375
375
  # hstore functions and operators with it.
@@ -401,7 +401,7 @@ module Sequel
401
401
  end
402
402
  end
403
403
 
404
- # :nocov:
404
+ # simplecov:disable
405
405
  if Sequel.core_extensions?
406
406
  class Symbol
407
407
  include Sequel::Postgres::HStoreOpMethods
@@ -415,4 +415,4 @@ if defined?(Sequel::CoreRefinements)
415
415
  end
416
416
  end
417
417
  end
418
- # :nocov:
418
+ # simplecov:enable
@@ -41,9 +41,9 @@ module Sequel
41
41
  db.instance_exec do
42
42
  extend_datasets(InetDatasetMethods)
43
43
 
44
- # :nocov:
44
+ # simplecov:disable
45
45
  if !defined?(SEQUEL_PG_VERSION_INTEGER) || SEQUEL_PG_VERSION_INTEGER >= 11300
46
- # :nocov:
46
+ # simplecov:enable
47
47
  # sequel_pg 1.13.0+ will use inet/cidr conversion procs, but doing so is
48
48
  # slower, so don't add the conversion procs if using sequel_pg 1.13.0+.
49
49
  meth = IPAddr.method(:new)
@@ -187,7 +187,7 @@ module Sequel
187
187
  end
188
188
  end
189
189
 
190
- # :nocov:
190
+ # simplecov:disable
191
191
  if Sequel.core_extensions?
192
192
  class Symbol
193
193
  include Sequel::Postgres::InetOpMethods
@@ -201,4 +201,4 @@ if defined?(Sequel::CoreRefinements)
201
201
  end
202
202
  end
203
203
  end
204
- # :nocov:
204
+ # simplecov:enable
@@ -35,12 +35,12 @@
35
35
  require 'active_support'
36
36
  require 'active_support/duration'
37
37
 
38
- # :nocov:
38
+ # simplecov:disable
39
39
  begin
40
40
  require 'active_support/version'
41
41
  rescue LoadError
42
42
  end
43
- # :nocov:
43
+ # simplecov:enable
44
44
 
45
45
  module Sequel
46
46
  module Postgres
@@ -75,11 +75,11 @@ module Sequel
75
75
  if defined?(ActiveSupport::Duration::SECONDS_PER_MONTH)
76
76
  SECONDS_PER_MONTH = ActiveSupport::Duration::SECONDS_PER_MONTH
77
77
  SECONDS_PER_YEAR = ActiveSupport::Duration::SECONDS_PER_YEAR
78
- # :nocov:
78
+ # simplecov:disable
79
79
  else
80
80
  SECONDS_PER_MONTH = 2592000
81
81
  SECONDS_PER_YEAR = 31557600
82
- # :nocov:
82
+ # simplecov:enable
83
83
  end
84
84
 
85
85
  # Parse the interval input string into an ActiveSupport::Duration instance.
@@ -125,11 +125,11 @@ module Sequel
125
125
  parts[:seconds] = seconds
126
126
  end
127
127
 
128
- # :nocov:
128
+ # simplecov:disable
129
129
  if USE_PARTS_ARRAY
130
130
  parts = parts.to_a
131
131
  end
132
- # :nocov:
132
+ # simplecov:enable
133
133
 
134
134
  ActiveSupport::Duration.new(value, parts)
135
135
  end
@@ -206,12 +206,12 @@ module Sequel
206
206
  }
207
207
 
208
208
  if RUBY_VERSION < '2.4'
209
- # :nocov:
209
+ # simplecov:disable
210
210
  JSON_PRIMITIVE_WRAPPER_MAPPING[Fixnum] = JSONInteger
211
211
  JSON_PRIMITIVE_WRAPPER_MAPPING[Bignum] = JSONInteger
212
212
  JSONB_PRIMITIVE_WRAPPER_MAPPING[Fixnum] = JSONBInteger
213
213
  JSONB_PRIMITIVE_WRAPPER_MAPPING[Bignum] = JSONBInteger
214
- # :nocov:
214
+ # simplecov:enable
215
215
  end
216
216
 
217
217
  JSON_PRIMITIVE_WRAPPER_MAPPING.freeze
@@ -583,7 +583,7 @@ module Sequel
583
583
  Database.register_extension(:pg_json, Postgres::JSONDatabaseMethods)
584
584
  end
585
585
 
586
- # :nocov:
586
+ # simplecov:disable
587
587
  if Sequel.core_extensions?
588
588
  class Array
589
589
  # Return a Sequel::Postgres::JSONArray proxy to the receiver.
@@ -641,4 +641,4 @@ if defined?(Sequel::CoreRefinements)
641
641
  end
642
642
  end
643
643
  end
644
- # :nocov:
644
+ # simplecov:enable
@@ -103,7 +103,7 @@
103
103
  # j.path_query_first_tz('$.foo') # jsonb_path_query_first_tz(jsonb_column, '$.foo')
104
104
  #
105
105
  # On PostgreSQL 14+, The JSONB <tt>[]</tt> method will use subscripts instead of being
106
- # the same as +get+, if the value being wrapped is an identifer:
106
+ # the same as +get+, if the value being wrapped is an identifier:
107
107
  #
108
108
  # Sequel.pg_jsonb_op(:jsonb_column)[1] # jsonb_column[1]
109
109
  # Sequel.pg_jsonb_op(:jsonb_column)[1][2] # jsonb_column[1][2]
@@ -173,7 +173,7 @@
173
173
  #
174
174
  # If you are also using the pg_json extension, you should load it before
175
175
  # loading this extension. Doing so will allow you to use the #op method on
176
- # JSONHash, JSONHarray, JSONBHash, and JSONBArray, allowing you to perform json/jsonb operations
176
+ # JSONHash, JSONArray, JSONBHash, and JSONBArray, allowing you to perform json/jsonb operations
177
177
  # on json/jsonb literals.
178
178
  #
179
179
  # In order to get the automatic conversion from a ruby array to a PostgreSQL array
@@ -843,9 +843,9 @@ module Sequel
843
843
 
844
844
  # Wrap argument in a PGArray if it is an array or a set
845
845
  def wrap_input_array(obj)
846
- # :nocov:
846
+ # simplecov:disable
847
847
  if Sequel.respond_to?(:pg_array)
848
- # :nocov:
848
+ # simplecov:enable
849
849
  case obj
850
850
  when Array
851
851
  return Sequel.pg_array(obj)
@@ -1074,7 +1074,7 @@ module Sequel
1074
1074
  end
1075
1075
  end
1076
1076
 
1077
- # Do not auto paramterize default value, as PostgreSQL doesn't allow it.
1077
+ # Do not auto parameterize default value, as PostgreSQL doesn't allow it.
1078
1078
  def default_literal_append(ds, sql, v)
1079
1079
  if sql.respond_to?(:skip_auto_param)
1080
1080
  sql.skip_auto_param do
@@ -1341,7 +1341,7 @@ module Sequel
1341
1341
  end
1342
1342
  end
1343
1343
 
1344
- # Append path caluse to the SQL
1344
+ # Append path clause to the SQL
1345
1345
  def to_s_append_path(ds, sql, path)
1346
1346
  if path
1347
1347
  sql << ' PATH '
@@ -1349,7 +1349,7 @@ module Sequel
1349
1349
  end
1350
1350
  end
1351
1351
 
1352
- # Do not auto paramterize default value or path value, as PostgreSQL doesn't allow it.
1352
+ # Do not auto parameterize default value or path value, as PostgreSQL doesn't allow it.
1353
1353
  def default_literal_append(ds, sql, v)
1354
1354
  if sql.respond_to?(:skip_auto_param)
1355
1355
  sql.skip_auto_param do
@@ -1375,9 +1375,9 @@ module Sequel
1375
1375
  end
1376
1376
  end
1377
1377
 
1378
- # :nocov:
1378
+ # simplecov:disable
1379
1379
  if defined?(JSONArray)
1380
- # :nocov:
1380
+ # simplecov:enable
1381
1381
  class JSONArray
1382
1382
  # Wrap the JSONArray instance in an JSONOp, allowing you to easily use
1383
1383
  # the PostgreSQL json functions and operators with literal jsons.
@@ -1443,7 +1443,7 @@ module Sequel
1443
1443
  end
1444
1444
  end
1445
1445
 
1446
- # :nocov:
1446
+ # simplecov:disable
1447
1447
  if Sequel.core_extensions?
1448
1448
  class Symbol
1449
1449
  include Sequel::Postgres::JSONOpMethods
@@ -1457,4 +1457,4 @@ if defined?(Sequel::CoreRefinements)
1457
1457
  end
1458
1458
  end
1459
1459
  end
1460
- # :nocov:
1460
+ # simplecov:enable
@@ -2,11 +2,11 @@
2
2
  #
3
3
  # The pg_range extension adds support for the PostgreSQL 9.2+ range
4
4
  # types to Sequel. PostgreSQL range types are similar to ruby's
5
- # Range class, representating an array of values. However, they
5
+ # Range class, representing an array of values. However, they
6
6
  # are more flexible than ruby's ranges, allowing exclusive beginnings
7
7
  # and endings (ruby's range only allows exclusive endings).
8
8
  #
9
- # When PostgreSQL range values are retreived, they are parsed and returned
9
+ # When PostgreSQL range values are retrieved, they are parsed and returned
10
10
  # as instances of Sequel::Postgres::PGRange. PGRange mostly acts
11
11
  # like a Range, but it's not a Range as not all PostgreSQL range
12
12
  # type values would be valid ruby ranges. If the range type value
@@ -459,10 +459,10 @@ module Sequel
459
459
  return @range if @range
460
460
  raise(Error, "cannot create ruby range for an empty PostgreSQL range") if empty?
461
461
  raise(Error, "cannot create ruby range when PostgreSQL range excludes beginning element") if exclude_begin?
462
- # :nocov:
462
+ # simplecov:disable
463
463
  raise(Error, "cannot create ruby range when PostgreSQL range has unbounded beginning") if STARTLESS_RANGE_NOT_SUPPORTED && !self.begin
464
464
  raise(Error, "cannot create ruby range when PostgreSQL range has unbounded ending") if ENDLESS_RANGE_NOT_SUPPORTED && !self.end
465
- # :nocov:
465
+ # simplecov:enable
466
466
  @range = Range.new(self.begin, self.end, exclude_end?)
467
467
  end
468
468
 
@@ -549,7 +549,7 @@ module Sequel
549
549
  Database.register_extension(:pg_range, Postgres::PGRange::DatabaseMethods)
550
550
  end
551
551
 
552
- # :nocov:
552
+ # simplecov:disable
553
553
  if Sequel.core_extensions?
554
554
  class Range
555
555
  # Create a new PGRange using the receiver as the input range,
@@ -569,4 +569,4 @@ if defined?(Sequel::CoreRefinements)
569
569
  end
570
570
  end
571
571
  end
572
- # :nocov:
572
+ # simplecov:enable
@@ -113,7 +113,7 @@ module Sequel
113
113
 
114
114
  private
115
115
 
116
- # Create a boolen expression for the given type and argument.
116
+ # Create a boolean expression for the given type and argument.
117
117
  def operator(type, other)
118
118
  Sequel::SQL::BooleanExpression.new(:NOOP, Sequel::SQL::PlaceholderLiteralString.new(OPERATORS[type], [value, other]))
119
119
  end
@@ -132,9 +132,9 @@ module Sequel
132
132
  end
133
133
  end
134
134
 
135
- # :nocov:
135
+ # simplecov:disable
136
136
  if defined?(PGRange)
137
- # :nocov:
137
+ # simplecov:enable
138
138
  class PGRange
139
139
  # Wrap the PGRange instance in an RangeOp, allowing you to easily use
140
140
  # the PostgreSQL range functions and operators with literal ranges.
@@ -144,9 +144,9 @@ module Sequel
144
144
  end
145
145
  end
146
146
 
147
- # :nocov:
147
+ # simplecov:disable
148
148
  if defined?(PGMultiRange)
149
- # :nocov:
149
+ # simplecov:enable
150
150
  class PGMultiRange
151
151
  # Wrap the PGRange instance in an RangeOp, allowing you to easily use
152
152
  # the PostgreSQL range functions and operators with literal ranges.
@@ -178,7 +178,7 @@ module Sequel
178
178
  end
179
179
  end
180
180
 
181
- # :nocov:
181
+ # simplecov:disable
182
182
  if Sequel.core_extensions?
183
183
  class Symbol
184
184
  include Sequel::Postgres::RangeOpMethods
@@ -192,4 +192,4 @@ if defined?(Sequel::CoreRefinements)
192
192
  end
193
193
  end
194
194
  end
195
- # :nocov:
195
+ # simplecov:enable
@@ -247,9 +247,9 @@ module Sequel
247
247
  if skip(/\)/)
248
248
  values << nil
249
249
  else
250
- # :nocov:
250
+ # simplecov:disable
251
251
  until eos?
252
- # :nocov:
252
+ # simplecov:enable
253
253
  if skip(/"/)
254
254
  values << scan(/(\\.|""|[^"])*/).gsub(/\\(.)|"(")/, '\1\2')
255
255
  skip(/"[,)]/)
@@ -563,7 +563,7 @@ module Sequel
563
563
  Database.register_extension(:pg_row, Postgres::PGRow::DatabaseMethods)
564
564
  end
565
565
 
566
- # :nocov:
566
+ # simplecov:disable
567
567
  if Sequel.core_extensions?
568
568
  class Array
569
569
  # Wraps the receiver in an anonymous Sequel::Postgres::PGRow::ArrayRow instance.
@@ -582,4 +582,4 @@ if defined?(Sequel::CoreRefinements)
582
582
  end
583
583
  end
584
584
  end
585
- # :nocov:
585
+ # simplecov:enable
@@ -159,9 +159,9 @@ module Sequel
159
159
  end
160
160
  end
161
161
 
162
- # :nocov:
162
+ # simplecov:disable
163
163
  if defined?(PGRow::ArrayRow)
164
- # :nocov:
164
+ # simplecov:enable
165
165
  class PGRow::ArrayRow
166
166
  # Wrap the PGRow::ArrayRow instance in an PGRowOp, allowing you to easily use
167
167
  # the PostgreSQL row functions and operators with literal rows.
@@ -171,9 +171,9 @@ module Sequel
171
171
  end
172
172
  end
173
173
 
174
- # :nocov:
174
+ # simplecov:disable
175
175
  if defined?(PGRow::HashRow)
176
- # :nocov:
176
+ # simplecov:enable
177
177
  class PGRow::HashRow
178
178
  # Wrap the PGRow::ArrayRow instance in an PGRowOp, allowing you to easily use
179
179
  # the PostgreSQL row functions and operators with literal rows.
@@ -200,7 +200,7 @@ module Sequel
200
200
  end
201
201
  end
202
202
 
203
- # :nocov:
203
+ # simplecov:disable
204
204
  if Sequel.core_extensions?
205
205
  class Symbol
206
206
  include Sequel::Postgres::PGRowOp::ExpressionMethods
@@ -214,4 +214,4 @@ if defined?(Sequel::CoreRefinements)
214
214
  end
215
215
  end
216
216
  end
217
- # :nocov:
217
+ # simplecov:enable
@@ -46,11 +46,11 @@ module Sequel
46
46
  super(provenance_opts(opts))
47
47
  end
48
48
  else
49
- # :nocov:
49
+ # simplecov:disable
50
50
  def clone(opts = OPTS) # :nodoc:
51
51
  super(provenance_opts(opts))
52
52
  end
53
- # :nocov:
53
+ # simplecov:enable
54
54
  end
55
55
 
56
56
  %w'select insert update delete'.each do |type|
@@ -74,9 +74,9 @@ module Sequel
74
74
  raise(Sequel::Error, "method #{method.inspect} did not return a dataset") unless @dataset.is_a?(Dataset)
75
75
  self
76
76
  end
77
- # :nocov:
77
+ # simplecov:disable
78
78
  ruby2_keywords(:method_missing) if respond_to?(:ruby2_keywords, true)
79
- # :nocov:
79
+ # simplecov:enable
80
80
  end
81
81
  end
82
82
 
@@ -49,10 +49,10 @@ module Sequel::S
49
49
  Sequel.expr(*a, &block)
50
50
  end
51
51
 
52
- # :nocov:
52
+ # simplecov:disable
53
53
  if RUBY_VERSION >= '2.0.0'
54
54
  include_meth = RUBY_VERSION >= '3.1' ? :import_methods : :include
55
- # :nocov:
55
+ # simplecov:enable
56
56
  refine Object do
57
57
  send include_meth, Sequel::S
58
58
  end
@@ -27,9 +27,9 @@ Sequel.extension :eval_inspect
27
27
 
28
28
  module Sequel
29
29
  module SchemaDumper
30
- # :nocov:
30
+ # simplecov:disable
31
31
  IGNORE_INDEX_ERRORS_KEY = RUBY_VERSION >= '3.4' ? 'ignore_index_errors: ' : ':ignore_index_errors=>'
32
- # :nocov:
32
+ # simplecov:enable
33
33
  private_constant :IGNORE_INDEX_ERRORS_KEY
34
34
 
35
35
  # Convert the column schema information to a hash of column options, one of which must
@@ -430,10 +430,10 @@ END_MIG
430
430
 
431
431
  module Schema
432
432
  class CreateTableGenerator
433
- # :nocov:
433
+ # simplecov:disable
434
434
  DEFAULT_KEY = RUBY_VERSION >= '3.4' ? 'default: ' : ':default=>'
435
435
  IGNORE_ERRORS_KEY = RUBY_VERSION >= '3.4' ? 'ignore_errors: ' : ':ignore_errors=>'
436
- # :nocov:
436
+ # simplecov:enable
437
437
  private_constant :DEFAULT_KEY
438
438
  private_constant :IGNORE_ERRORS_KEY
439
439
 
@@ -21,6 +21,8 @@
21
21
  #
22
22
  # Related module: Sequel::Sequel4DatasetMethods
23
23
 
24
+ # SEQUEL6: Remove
25
+
24
26
  #
25
27
  module Sequel
26
28
  module Sequel4DatasetMethods
@@ -108,7 +108,7 @@ module Sequel
108
108
  # injection.
109
109
  #
110
110
  # Additionally, due to the use of an SQL comment, if any
111
- # SQL is appened to the query after the comment is added,
111
+ # SQL is appended to the query after the comment is added,
112
112
  # it will become part of the comment unless it is preceded
113
113
  # by a newline.
114
114
  if sql.frozen?
@@ -14,7 +14,7 @@
14
14
  # The normalization is done by scanning the SQL string being executed
15
15
  # for literal strings and numbers, and replacing them with question
16
16
  # marks. While this should work for all or almost all production queries,
17
- # there are pathlogical queries that will not be handled correctly, such as
17
+ # there are pathological queries that will not be handled correctly, such as
18
18
  # the use of apostrophes in identifiers:
19
19
  #
20
20
  # DB[:"asf'bar"].where(a: 1, b: 'something').first
@@ -296,7 +296,7 @@ module Sequel
296
296
  end
297
297
  end
298
298
 
299
- # :nocov:
299
+ # simplecov:disable
300
300
  if Sequel.core_extensions?
301
301
  class Symbol
302
302
  include Sequel::SQLite::JSONOpMethods
@@ -310,4 +310,4 @@ if defined?(Sequel::CoreRefinements)
310
310
  end
311
311
  end
312
312
  end
313
- # :nocov:
313
+ # simplecov:enable
@@ -1,7 +1,7 @@
1
1
  # frozen-string-literal: true
2
2
  #
3
3
  # The string_agg extension adds the ability to perform database-independent
4
- # aggregate string concatentation. For example, with a table like:
4
+ # aggregate string concatenation. For example, with a table like:
5
5
  #
6
6
  # c1 | c2
7
7
  # ---+---
@@ -28,7 +28,7 @@
28
28
  # # or:
29
29
  # sa = Sequel.string_agg(:column_name, '-') # custom separator
30
30
  #
31
- # You can specify the order in which the concatention happens by
31
+ # You can specify the order in which the concatenation happens by
32
32
  # calling +order+ on the expression:
33
33
  #
34
34
  # sa = Sequel.string_agg(:column_name).order(:other_column)
@@ -45,7 +45,7 @@
45
45
  # select_group(:c1).
46
46
  # select_append(Sequel.string_agg(:c2))
47
47
  #
48
- # This extension currenly supports the following databases:
48
+ # This extension currently supports the following databases:
49
49
  #
50
50
  # * PostgreSQL 9+
51
51
  # * SQLAnywhere 12+
@@ -62,13 +62,13 @@
62
62
  module Sequel
63
63
  module SQL
64
64
  module Builders
65
- # Return a StringAgg expression for an aggregate string concatentation.
65
+ # Return a StringAgg expression for an aggregate string concatenation.
66
66
  def string_agg(*a)
67
67
  StringAgg.new(*a)
68
68
  end
69
69
  end
70
70
 
71
- # The StringAgg class represents an aggregate string concatentation.
71
+ # The StringAgg class represents an aggregate string concatenation.
72
72
  class StringAgg < GenericExpression
73
73
  include StringMethods
74
74
  include StringConcatenationMethods
@@ -1,7 +1,7 @@
1
1
  # frozen-string-literal: true
2
2
  #
3
3
  # The symbol_aref extension makes Symbol#[] support Symbol,
4
- # Sequel::SQL::Indentifier, and Sequel::SQL::QualifiedIdentifier instances,
4
+ # Sequel::SQL::Identifier, and Sequel::SQL::QualifiedIdentifier instances,
5
5
  # returning appropriate Sequel::SQL::QualifiedIdentifier instances. It's
6
6
  # designed as a shortcut so that instead of:
7
7
  #
@@ -35,7 +35,7 @@ if RUBY_VERSION >= '2.0'
35
35
  class Symbol
36
36
  prepend Sequel::SymbolAref
37
37
  end
38
- # :nocov:
38
+ # simplecov:disable
39
39
  else
40
40
  class Symbol
41
41
  if method_defined?(:[])
@@ -52,4 +52,4 @@ else
52
52
  end
53
53
  end
54
54
  end
55
- # :nocov:
55
+ # simplecov:enable
@@ -1,7 +1,7 @@
1
1
  # frozen-string-literal: true
2
2
  #
3
3
  # The symbol_aref_refinement extension adds a refinement that makes
4
- # Symbol#[] support Symbol, #Sequel::SQL::Indentifier, and
4
+ # Symbol#[] support Symbol, #Sequel::SQL::Identifier, and
5
5
  # Sequel::SQL::QualifiedIdentifier instances, returning appropriate
6
6
  # Sequel::SQL::QualifiedIdentifier instances. It's designed as a
7
7
  # shortcut so that instead of:
@@ -25,9 +25,9 @@
25
25
  #
26
26
  # Related module: Sequel::SymbolAref
27
27
 
28
- # :nocov:
28
+ # simplecov:disable
29
29
  raise(Sequel::Error, "Refinements require ruby 2.0.0 or greater") unless RUBY_VERSION >= '2.0.0'
30
- # :nocov:
30
+ # simplecov:enable
31
31
 
32
32
  module Sequel::SymbolAref
33
33
  refine Symbol do
@@ -23,9 +23,9 @@
23
23
  #
24
24
  # Related module: Sequel::SymbolAs
25
25
 
26
- # :nocov:
26
+ # simplecov:disable
27
27
  raise(Sequel::Error, "Refinements require ruby 2.0.0 or greater") unless RUBY_VERSION >= '2.0.0'
28
- # :nocov:
28
+ # simplecov:enable
29
29
 
30
30
  module Sequel::SymbolAs
31
31
  refine Symbol do
@@ -33,7 +33,7 @@ module Sequel
33
33
  end
34
34
 
35
35
  # Rescue disconnect errors raised when beginning a new transaction. If there
36
- # is a disconnnect error, it should be safe to retry the transaction using a
36
+ # is a disconnect error, it should be safe to retry the transaction using a
37
37
  # new connection, as we haven't yielded control to the user yet.
38
38
  def transaction(opts=OPTS)
39
39
  super