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 +4 -4
- data/bin/2.0/transactd.so +0 -0
- data/bin/2.1/transactd.so +0 -0
- data/bin/2.2/transactd.so +0 -0
- data/bin/2.3/transactd.so +0 -0
- data/bin/common/{tdclc_32_3_2.dll → tdclc_32_3_3.dll} +0 -0
- data/bin/common/tdclcpp_vc100_32mr_3_3.dll +0 -0
- data/source/bzs/test/tdclrb/transactd_spec.rb +3 -1
- data/source/bzs/test/tdclrb/transactd_v3_spec.rb +11 -1
- metadata +4 -4
- data/bin/common/tdclcpp_vc100_32mr_3_2.dll +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc7b6f00ebc2f683f5b0018bab25b1d773897c89
|
4
|
+
data.tar.gz: 6278f155d87754199f9381ca7a3e98d10fe45eee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
Binary file
|
Binary file
|
@@ -1805,12 +1805,14 @@ def testDelete()
|
|
1805
1805
|
tb = testOpenTable(db)
|
1806
1806
|
# estimate count
|
1807
1807
|
count = tb.recordCount(true)
|
1808
|
-
|
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.
|
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
|
+
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/
|
26
|
-
- bin/common/
|
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
|