transactd 3.2.1-x64-mswin64-100 → 3.3.0-x64-mswin64-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_64_3_2.dll → tdclc_64_3_3.dll} +0 -0
 - data/bin/common/tdclcpp_vc100_64mr_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_64mr_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: 854a1e7aba5ef42819dfae057816ced094122a9a
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 256a5368af7a3e12d2b0a0f3783b209820701069
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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 
     | 
| 
         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: 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 
     | 
    
         
            +
            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_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 
     |