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 +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_3.dll → tdclc_32_3_4.dll} +0 -0
- data/bin/common/tdclcpp_vc100_32mr_3_4.dll +0 -0
- data/source/bzs/test/tdclrb/transactd_v3_spec.rb +5 -4
- metadata +4 -4
- data/bin/common/tdclcpp_vc100_32mr_3_3.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: ada40a27fcfaf519a6ff400fea60c0a26233f67f
|
4
|
+
data.tar.gz: 70ddd25d5c030ea3dfc47b3e01abbf42577fdfd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
Binary file
|
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
|
-
|
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.
|
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(
|
859
|
+
expect(mgr.slaveStatusName(0)).to eq "Slave_IO_State"
|
859
860
|
|
860
861
|
for i in 0...recs.size() do
|
861
|
-
puts (
|
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.
|
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-
|
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/
|
26
|
-
- bin/common/
|
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
|