File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
lib/active_record/connection_adapters Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 11
22* 3.2.13 *
33
4+ * Use CONCAT_NULL_YIELDS_NULL for all TinyTDS connections. Fixes #262. Thanks @noel.
5+ * Fix for Azure SQL. Fixed #263. Thanks @eklipse2k8.
46* Drop shoulda and use minitest-spec-rails!!!
57* Test TinyTDS 0.6.0.
68* Fixed the unit tests due to changes in ActiveRecord that removes blank config values.
Original file line number Diff line number Diff line change @@ -438,13 +438,13 @@ def connect
438438 client . execute ( "SET ANSI_PADDING ON" ) . do
439439 client . execute ( "SET QUOTED_IDENTIFIER ON" )
440440 client . execute ( "SET ANSI_WARNINGS ON" ) . do
441- client . execute ( "SET CONCAT_NULL_YIELDS_NULL ON" ) . do
442441 else
443442 client . execute ( "SET ANSI_DEFAULTS ON" ) . do
444443 client . execute ( "SET CURSOR_CLOSE_ON_COMMIT OFF" ) . do
445444 client . execute ( "SET IMPLICIT_TRANSACTIONS OFF" ) . do
446445 end
447446 client . execute ( "SET TEXTSIZE 2147483647" ) . do
447+ client . execute ( "SET CONCAT_NULL_YIELDS_NULL ON" ) . do
448448 end
449449 when :odbc
450450 if config [ :dsn ] . include? ( ';' )
You can’t perform that action at this time.
0 commit comments