transactd 3.2.1-x64-mswin64-100 → 3.3.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: 92d411e04c8983f46818fb874370b1e96a320428
4
- data.tar.gz: d226ce5ce0a77ddd1f8e29a044be563ff86366ba
3
+ metadata.gz: 854a1e7aba5ef42819dfae057816ced094122a9a
4
+ data.tar.gz: 256a5368af7a3e12d2b0a0f3783b209820701069
5
5
  SHA512:
6
- metadata.gz: 99452755a5f60d8e72962fe7eb671034d0cb5a69257cebcb1c48c7cf015ba5617b9a05b1ec511eb36a3873394be494dd024e67ed6b6fad47978f1d7aca28e953
7
- data.tar.gz: 362d88beafcc6edbafbace251d4fd789c4ed8ae6ffbd4d2f259d50641910585e86bc8b9dbe3e73bcc1c0c0fd8dbff03b1f501bc68ccc47ce91d82a00a67c147c
6
+ metadata.gz: 31174ec3b1a9dbc01044331bedc9e6793319529c2a7b4b5d322df3a8dfd760a5f926e7b30b5f49ecd2156622f3807a5e70b3a45b121c0ceeb58b5ec4cf8c78a6
7
+ data.tar.gz: 167b2c789c6e78bba650c7db6afd25b367737a237e8ae88d76a8c323b9ab93341248e689ecab331522edcd8f176b8e80bbce25374a55972674d25c35acd475b8
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: 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-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_64mr_3_2.dll
26
- - bin/common/tdclc_64_3_2.dll
25
+ - bin/common/tdclcpp_vc100_64mr_3_3.dll
26
+ - bin/common/tdclc_64_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