transactd 3.3.0-x64-mswin64-100 → 3.4.0-x64-mswin64-100

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 854a1e7aba5ef42819dfae057816ced094122a9a
4
- data.tar.gz: 256a5368af7a3e12d2b0a0f3783b209820701069
3
+ metadata.gz: 1593e3ae9e89aca325a03a8cc7dd6777a83470ac
4
+ data.tar.gz: 7f102d0cc14e0c405a0cd97c6072f1a441247c29
5
5
  SHA512:
6
- metadata.gz: 31174ec3b1a9dbc01044331bedc9e6793319529c2a7b4b5d322df3a8dfd760a5f926e7b30b5f49ecd2156622f3807a5e70b3a45b121c0ceeb58b5ec4cf8c78a6
7
- data.tar.gz: 167b2c789c6e78bba650c7db6afd25b367737a237e8ae88d76a8c323b9ab93341248e689ecab331522edcd8f176b8e80bbce25374a55972674d25c35acd475b8
6
+ metadata.gz: c2826c2b55f2da0233fb95734db6ee3945985940f890755ce8a2e0ead2e800175c485f46b019fb80ae81ece81391fb89d8ce1601badc0c5d2a3fd078edd58127
7
+ data.tar.gz: d78baf877d6a3ee46506f14d5a1af22b29af3d7c8184c040125ef0b0470c4777a34c5831317519b4ca288e0b5b2f4555201ea8b89066001cb13d60716b0b7acb
data/bin/2.0/transactd.so CHANGED
Binary file
data/bin/2.1/transactd.so CHANGED
Binary file
data/bin/2.2/transactd.so CHANGED
Binary file
data/bin/2.3/transactd.so CHANGED
Binary file
Binary file
@@ -767,7 +767,8 @@ describe Transactd, 'V3Features' do
767
767
  if (isMariaDBWithGtid(db))
768
768
  expect(bpos.type).to eq Transactd::REPL_POSTYPE_MARIA_GTID
769
769
  else
770
- expect(bpos.type).to eq Transactd::REPL_POSTYPE_POS
770
+ ret = (bpos.type == Transactd::REPL_POSTYPE_POS) || (bpos.type == Transactd::REPL_POSTYPE_GTID)
771
+ expect(ret).to eq true
771
772
  end
772
773
  expect(bpos.pos).not_to eq 0
773
774
  expect(bpos.filename).not_to eq ""
@@ -778,7 +779,7 @@ describe Transactd, 'V3Features' do
778
779
  it 'get sql' do
779
780
  db = Transactd::Database.new()
780
781
  openDatabase(db)
781
- db.createTable("create view idlessthan5 as select * from user where id < 5")
782
+ db.execSql("create view idlessthan5 as select * from user where id < 5")
782
783
  view = db.getCreateViewSql("idlessthan5")
783
784
  expect(view.include?("idlessthan5")).to eq true
784
785
  expect(view.include?("名前")).to eq true
@@ -855,10 +856,10 @@ describe Transactd, 'V3Features' do
855
856
  # slaveStatus
856
857
  recs = mgr.slaveStatus()
857
858
  expect(mgr.stat()).to eq 0
858
- expect(Transactd::ConnMgr::slaveStatusName(0)).to eq "Slave_IO_State"
859
+ expect(mgr.slaveStatusName(0)).to eq "Slave_IO_State"
859
860
 
860
861
  for i in 0...recs.size() do
861
- puts (Transactd::ConnMgr::slaveStatusName(i) + "\t:" + recs[i].value.to_s)
862
+ puts (mgr.slaveStatusName(i) + "\t:" + recs[i].value.to_s)
862
863
  end
863
864
  mgr.disconnect()
864
865
  expect(mgr.stat()).to eq 0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transactd
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.4.0
5
5
  platform: x64-mswin64-100
6
6
  authors:
7
7
  - BizStation Corp.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-18 00:00:00.000000000 Z
11
+ date: 2016-05-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Transactd client for ruby gem
14
14
  email: transactd@bizstation.jp
@@ -22,8 +22,8 @@ files:
22
22
  - bin/2.2/transactd.so
23
23
  - bin/2.3/transactd.so
24
24
  - build/tdclrb/bldgem/extconf.rb
25
- - bin/common/tdclcpp_vc100_64mr_3_3.dll
26
- - bin/common/tdclc_64_3_3.dll
25
+ - bin/common/tdclcpp_vc100_64mr_3_4.dll
26
+ - bin/common/tdclc_64_3_4.dll
27
27
  - build/tdclrb/gem/detect.rb
28
28
  - build/tdclrb/gem/helper.rb
29
29
  - build/tdclrb/gem/INSTALLLOG.win32
Binary file
Binary file