Skip to content

Commit

Permalink
update H2 to latest 1.4 beta - 178 and let us see how it rollzzz
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed May 28, 2014
1 parent 81abbb8 commit 0252a9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion jdbc-h2/lib/jdbc/h2/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Jdbc
module H2
DRIVER_VERSION = '1.4.177'
DRIVER_VERSION = '1.4.178'
VERSION = DRIVER_VERSION
end
end
8 changes: 4 additions & 4 deletions test/db/h2/serialize_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ class H2SerializeTest < Test::Unit::TestCase
def test_serialized_attribute_should_raise_exception_on_save_with_wrong_type
Topic.serialize(:content, Hash)
topic = Topic.new(:content => "string")
if ENV['CI'] == true.to_s
version = ActiveRecord::Base.connection.jdbc_connection.meta_data.driver_version
skip "H2 1.4.177 (beta) bug" if version.index '1.4.177' # "1.4.177 (2014-04-12)"
end
#if ENV['CI'] == true.to_s
# version = ActiveRecord::Base.connection.jdbc_connection.meta_data.driver_version
# skip "H2 1.4.177 (beta) bug" if version.index '1.4.177' # "1.4.177 (2014-04-12)"
#end
begin
topic.save
fail "SerializationTypeMismatch not raised"
Expand Down

0 comments on commit 0252a9b

Please sign in to comment.