swcdb 0.5.5.0 → 0.5.6.0
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/lib/swcdb/thrift/gen/service_types.rb +9 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80a7f4772789e8b03ea6ae46cba00a1504085d6ef930d980a09fb7808fc6736b
|
4
|
+
data.tar.gz: dcaac60261bafb8c6b9d5c0a7e3c8b5aa13c9beb8f1e838028351f76cebf44dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 832bf2533ae7d2a4cfdc441cfd480956d49e5f9577535c244c16ffe66c99ed55e9d5a1ae673ab1edebb67622ea7694848775296089c4454a6ef1ebe3559b4597
|
7
|
+
data.tar.gz: aad0981bad7c020b68341b9f0e49b01f8438ce4833a775b567f940c0fc1a187b104aa73c34ce2be5af8f22de5db14c0aa71b335a5d8224e138b8ff71107aca56
|
@@ -66,11 +66,11 @@ module Swcdb
|
|
66
66
|
# Create Column Function
|
67
67
|
CREATE = 3
|
68
68
|
# Delete Column Function
|
69
|
-
|
69
|
+
REMOVE = 5
|
70
70
|
# Modify Column Function
|
71
71
|
MODIFY = 7
|
72
|
-
VALUE_MAP = {3 => "CREATE", 5 => "
|
73
|
-
VALID_VALUES = Set.new([CREATE,
|
72
|
+
VALUE_MAP = {3 => "CREATE", 5 => "REMOVE", 7 => "MODIFY"}
|
73
|
+
VALID_VALUES = Set.new([CREATE, REMOVE, MODIFY]).freeze
|
74
74
|
end
|
75
75
|
|
76
76
|
module Comp
|
@@ -136,12 +136,12 @@ module Swcdb
|
|
136
136
|
NONE = 0
|
137
137
|
# The Cell is an insert
|
138
138
|
INSERT = 1
|
139
|
-
# The Cell is a delete
|
140
|
-
|
141
|
-
# The Cell is a
|
142
|
-
|
143
|
-
VALUE_MAP = {0 => "NONE", 1 => "INSERT", 2 => "
|
144
|
-
VALID_VALUES = Set.new([NONE, INSERT,
|
139
|
+
# The Cell is a delete versions lower-equal
|
140
|
+
DELETE_LE = 2
|
141
|
+
# The Cell is a delete version equal
|
142
|
+
DELETE_EQ = 3
|
143
|
+
VALUE_MAP = {0 => "NONE", 1 => "INSERT", 2 => "DELETE_LE", 3 => "DELETE_EQ"}
|
144
|
+
VALID_VALUES = Set.new([NONE, INSERT, DELETE_LE, DELETE_EQ]).freeze
|
145
145
|
end
|
146
146
|
|
147
147
|
module CellsResult
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swcdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Kashirin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thrift
|