Skip to content

Commit aff4250

Browse files
committed
Use 1.0.1 of TinyTDS.
1 parent 99678f2 commit aff4250

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ init:
22
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
33
- SET PATH=C:\MinGW\msys\1.0\bin;%PATH%
44
- SET RAKEOPT=-rdevkit
5-
- SET TINYTDS_VERSION=0.9.5.rc.3
5+
- SET TINYTDS_VERSION=1.0.1
66
clone_depth: 5
77
skip_tags: true
88
matrix:

lib/active_record/tasks/sqlserver_database_tasks.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def structure_dump(filename)
6161
command.concat(table_args)
6262
view_args = connection.views.map { |v| Shellwords.escape(v) }
6363
command.concat(view_args)
64+
puts command.inspect
6465
raise 'Error dumping database' unless Kernel.system(command.join(' '))
6566
dump = File.read(filename)
6667
dump.gsub!(/^USE .*$\nGO\n/, '') # Strip db USE statements

0 commit comments

Comments
 (0)