red-datafusion 10.0.0 → 21.0.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/NEWS.md +7 -1
- data/lib/datafusion/loader.rb +2 -1
- data/lib/datafusion/parquet-writer-properties.rb +22 -0
- data/lib/datafusion/version.rb +2 -2
- data/red-datafusion.gemspec +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 342fac35c0680e8d0d8ff9ccb4080229f81592d85012e9197e78d4423d362c1f
|
|
4
|
+
data.tar.gz: a6c7db64f05a8ff3e7ee0bc13a80edde26532eea0e3f19c20d8ba07ef8895106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93bacee10934f5e8cfb6198637a8ce4eaaa80139543fd7714c5c9a0bd9b9d18263b1fe9db1726d2ac5c7f6a6fd7f4eef879bd82ea80689c3f483a409751c0cd9
|
|
7
|
+
data.tar.gz: b5a067b7fea712b8b1a0edcc1644389fac8f254ca0dacc2391bc0f4fdae30ae7627073f814b80a203ae8e0d294d5ae71ce2692b28a7aa8bc60b118ac05a91842
|
data/NEWS.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!--
|
|
2
|
-
Copyright 2022 Sutou Kouhei <kou@clear-code.com>
|
|
2
|
+
Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
|
|
17
17
|
# News
|
|
18
18
|
|
|
19
|
+
## 21.0.0 - 2023-04-03
|
|
20
|
+
|
|
21
|
+
### Improvements
|
|
22
|
+
|
|
23
|
+
- #13: Added support for datafusion-c 21.0.0.
|
|
24
|
+
|
|
19
25
|
## 10.0.0 - 2022-08-22
|
|
20
26
|
|
|
21
27
|
Initial release!!!
|
data/lib/datafusion/loader.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2022 Sutou Kouhei <kou@clear-code.com>
|
|
1
|
+
# Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
# you may not use this file except in compliance with the License.
|
|
@@ -27,6 +27,7 @@ module DataFusion
|
|
|
27
27
|
def require_libraries
|
|
28
28
|
require_relative "csv-read-options"
|
|
29
29
|
require_relative "parquet-read-options"
|
|
30
|
+
require_relative "parquet-writer-properties"
|
|
30
31
|
require_relative "session-context"
|
|
31
32
|
end
|
|
32
33
|
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Copyright 2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
require_relative "options-try-convertable"
|
|
16
|
+
|
|
17
|
+
module DataFusion
|
|
18
|
+
class ParquetWriterProperties
|
|
19
|
+
# @api private
|
|
20
|
+
extend OptionsTryConvertable
|
|
21
|
+
end
|
|
22
|
+
end
|
data/lib/datafusion/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2022 Sutou Kouhei <kou@clear-code.com>
|
|
1
|
+
# Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
# you may not use this file except in compliance with the License.
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
|
|
14
14
|
module DataFusion
|
|
15
|
-
VERSION = "
|
|
15
|
+
VERSION = "21.0.0"
|
|
16
16
|
|
|
17
17
|
module Version
|
|
18
18
|
MAJOR, MINOR, MICRO = VERSION.split(".").collect(&:to_i)
|
data/red-datafusion.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- ruby -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright 2022 Sutou Kouhei <kou@clear-code.com>
|
|
3
|
+
# Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
|
|
4
4
|
#
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
# you may not use this file except in compliance with the License.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: red-datafusion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 21.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sutou Kouhei
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: red-arrow
|
|
@@ -44,6 +44,7 @@ files:
|
|
|
44
44
|
- lib/datafusion/loader.rb
|
|
45
45
|
- lib/datafusion/options-try-convertable.rb
|
|
46
46
|
- lib/datafusion/parquet-read-options.rb
|
|
47
|
+
- lib/datafusion/parquet-writer-properties.rb
|
|
47
48
|
- lib/datafusion/session-context.rb
|
|
48
49
|
- lib/datafusion/version.rb
|
|
49
50
|
- red-datafusion.gemspec
|
|
@@ -51,7 +52,7 @@ homepage: https://github.com/datafusion-contrib/datafusion-ruby
|
|
|
51
52
|
licenses:
|
|
52
53
|
- Apache-2.0
|
|
53
54
|
metadata: {}
|
|
54
|
-
post_install_message:
|
|
55
|
+
post_install_message:
|
|
55
56
|
rdoc_options: []
|
|
56
57
|
require_paths:
|
|
57
58
|
- lib
|
|
@@ -66,8 +67,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
67
|
- !ruby/object:Gem::Version
|
|
67
68
|
version: '0'
|
|
68
69
|
requirements: []
|
|
69
|
-
rubygems_version: 3.
|
|
70
|
-
signing_key:
|
|
70
|
+
rubygems_version: 3.5.0.dev
|
|
71
|
+
signing_key:
|
|
71
72
|
specification_version: 4
|
|
72
73
|
summary: Red DataFusion is the Ruby bindings of Apache Arrow DataFusion
|
|
73
74
|
test_files: []
|