transactd 3.2.1-x86-mswin32-100 → 3.3.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: fbb82528af9f37b3e00babfff99dc25b611b28d1
4
- data.tar.gz: bf5cd093d6ea7eadf8d76a0722ebbe80c874ed3a
3
+ metadata.gz: bc7b6f00ebc2f683f5b0018bab25b1d773897c89
4
+ data.tar.gz: 6278f155d87754199f9381ca7a3e98d10fe45eee
5
5
  SHA512:
6
- metadata.gz: 1e5202f247d036bfed17b330adb7d925e59eda0d88b41d2ceddf84622bb934230e574697835f4117182d77cc4d5aeaed69572611f520b68b39cd46434b24ecfc
7
- data.tar.gz: c61d9d0cdae5e0efccfb4f9961c7a570b4c896f1e4c36d5cdeeaac00db748234298ad94e59647e13bf416245feca70ba9115c10c317e1a5f99494b5dac003093
6
+ metadata.gz: ffc4dde0fdb58ff8b5c90205ba7b0ee45a75f255740c42be3a970972c00fa59b03c45137c4458a02f4679b09a282825ed7ebf8def3760198c21445bffe1a1573
7
+ data.tar.gz: 015123f1199915d0677a3238c1139ff4660f3e4270788664643d1d9aef534eada0cb4367f63d3a5c647aaddc1fe517bf87b83d7d137ecf28dbe1accf940b715b
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
@@ -1805,12 +1805,14 @@ def testDelete()
1805
1805
  tb = testOpenTable(db)
1806
1806
  # estimate count
1807
1807
  count = tb.recordCount(true)
1808
- is_valid_count = ((count - expected_count).abs < 5000)
1808
+ expect(tb.stat()).to eq 0
1809
+ is_valid_count = ((count - expected_count).abs < 10000)
1809
1810
  expect(is_valid_count).to be true
1810
1811
  if !is_valid_count
1811
1812
  puts "true record count = #{expected_count.to_s} and estimate recordCount count = #{count.to_s}"
1812
1813
  end
1813
1814
  expect(tb.recordCount(false)).to eq expected_count # true count
1815
+ expect(tb.stat()).to eq 0
1814
1816
  vv = TEST_COUNT * 3 / 4 + 1
1815
1817
  tb.clearBuffer()
1816
1818
  tb.setFV(FDI_ID, vv)
@@ -844,11 +844,21 @@ describe Transactd, 'V3Features' do
844
844
  Transactd::ConnMgr::removeSystemDb(recs)
845
845
  expect(mgr.stat()).to eq 0
846
846
  expect(recs.size()).not_to eq size
847
+ # sysvar
848
+ recs = mgr.sysvars()
849
+ expect(mgr.stat()).to eq 0
850
+ expect(Transactd::ConnMgr::sysvarName(0)).to eq "database_version"
851
+ # statusvar
852
+ recs = mgr.statusvars()
853
+ expect(mgr.stat()).to eq 0
854
+ expect(Transactd::ConnMgr::statusvarName(0)).to eq "tcp_connections"
847
855
  # slaveStatus
848
856
  recs = mgr.slaveStatus()
849
857
  expect(mgr.stat()).to eq 0
858
+ expect(Transactd::ConnMgr::slaveStatusName(0)).to eq "Slave_IO_State"
859
+
850
860
  for i in 0...recs.size() do
851
- puts (Transactd::ConnMgr::slaveStatusName(i) + "\t" + recs[i].value)
861
+ puts (Transactd::ConnMgr::slaveStatusName(i) + "\t:" + recs[i].value.to_s)
852
862
  end
853
863
  mgr.disconnect()
854
864
  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.2.1
4
+ version: 3.3.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-11 00:00:00.000000000 Z
11
+ date: 2016-04-18 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_2.dll
26
- - bin/common/tdclc_32_3_2.dll
25
+ - bin/common/tdclcpp_vc100_32mr_3_3.dll
26
+ - bin/common/tdclc_32_3_3.dll
27
27
  - build/tdclrb/gem/detect.rb
28
28
  - build/tdclrb/gem/helper.rb
29
29
  - build/tdclrb/gem/INSTALLLOG.win32
Binary file