transactd 3.3.0-x86-mswin32-100 → 3.4.0-x86-mswin32-100

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bc7b6f00ebc2f683f5b0018bab25b1d773897c89
4
- data.tar.gz: 6278f155d87754199f9381ca7a3e98d10fe45eee
3
+ metadata.gz: ada40a27fcfaf519a6ff400fea60c0a26233f67f
4
+ data.tar.gz: 70ddd25d5c030ea3dfc47b3e01abbf42577fdfd4
5
5
  SHA512:
6
- metadata.gz: ffc4dde0fdb58ff8b5c90205ba7b0ee45a75f255740c42be3a970972c00fa59b03c45137c4458a02f4679b09a282825ed7ebf8def3760198c21445bffe1a1573
7
- data.tar.gz: 015123f1199915d0677a3238c1139ff4660f3e4270788664643d1d9aef534eada0cb4367f63d3a5c647aaddc1fe517bf87b83d7d137ecf28dbe1accf940b715b
6
+ metadata.gz: 1796c2eca6ef3486b4b54d023fd083c015cdd96084a88f0e2d0bb4e957d1c437843d35ff534c27847755666b66179bc5951b41102b6b8140cbbc2767ce2c0617
7
+ data.tar.gz: 59f37ec0b0e81dbf5113ce0d4e3325f30991b926b9077abde784e29bcd3bf5e5b1150da07b19d7ff6d9c2375379cfc997e6deadc475967043d70110c025cc7bf
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
@@ -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: x86-mswin32-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_32mr_3_3.dll
26
- - bin/common/tdclc_32_3_3.dll
25
+ - bin/common/tdclcpp_vc100_32mr_3_4.dll
26
+ - bin/common/tdclc_32_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