rbhive 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/thrift/facebook_service.rb +53 -40
- data/lib/thrift/hive_metastore_constants.rb +9 -0
- data/lib/thrift/hive_metastore_types.rb +89 -51
- data/lib/thrift/hive_service_types.rb +10 -10
- data/lib/thrift/queryplan_constants.rb +8 -0
- data/lib/thrift/queryplan_types.rb +253 -0
- data/lib/thrift/reflection_limited_types.rb +12 -12
- data/lib/thrift/serde_constants.rb +2 -0
- data/lib/thrift/thrift_hive.rb +88 -23
- data/lib/thrift/thrift_hive_metastore.rb +1255 -150
- metadata +16 -5
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbhive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
9
|
+
- 3
|
10
|
+
version: 0.1.3
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Andy Kent
|
@@ -15,19 +16,23 @@ autorequire:
|
|
15
16
|
bindir: bin
|
16
17
|
cert_chain: []
|
17
18
|
|
18
|
-
date: 2010-
|
19
|
+
date: 2010-09-23 00:00:00 +01:00
|
19
20
|
default_executable:
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
23
|
name: thrift
|
23
24
|
prerelease: false
|
24
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
25
27
|
requirements:
|
26
28
|
- - ">="
|
27
29
|
- !ruby/object:Gem::Version
|
30
|
+
hash: 15
|
28
31
|
segments:
|
29
32
|
- 0
|
30
|
-
|
33
|
+
- 4
|
34
|
+
- 0
|
35
|
+
version: 0.4.0
|
31
36
|
type: :runtime
|
32
37
|
version_requirements: *id001
|
33
38
|
description: Simple lib for executing Hive queries
|
@@ -48,6 +53,8 @@ files:
|
|
48
53
|
- lib/thrift/hive_metastore_types.rb
|
49
54
|
- lib/thrift/hive_service_constants.rb
|
50
55
|
- lib/thrift/hive_service_types.rb
|
56
|
+
- lib/thrift/queryplan_constants.rb
|
57
|
+
- lib/thrift/queryplan_types.rb
|
51
58
|
- lib/thrift/reflection_limited_constants.rb
|
52
59
|
- lib/thrift/reflection_limited_types.rb
|
53
60
|
- lib/thrift/serde_constants.rb
|
@@ -64,23 +71,27 @@ rdoc_options: []
|
|
64
71
|
require_paths:
|
65
72
|
- lib
|
66
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
67
75
|
requirements:
|
68
76
|
- - ">="
|
69
77
|
- !ruby/object:Gem::Version
|
78
|
+
hash: 3
|
70
79
|
segments:
|
71
80
|
- 0
|
72
81
|
version: "0"
|
73
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
74
84
|
requirements:
|
75
85
|
- - ">="
|
76
86
|
- !ruby/object:Gem::Version
|
87
|
+
hash: 3
|
77
88
|
segments:
|
78
89
|
- 0
|
79
90
|
version: "0"
|
80
91
|
requirements: []
|
81
92
|
|
82
93
|
rubyforge_project:
|
83
|
-
rubygems_version: 1.3.
|
94
|
+
rubygems_version: 1.3.7
|
84
95
|
signing_key:
|
85
96
|
specification_version: 3
|
86
97
|
summary: Simple lib for executing Hive queries
|