fluent-plugin-filter_where 1.0.0 → 1.0.1
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/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/fluent-plugin-filter_where.gemspec +1 -1
- data/lib/fluent/plugin/filter_where/v12.rb +1 -1
- data/test/helper.rb +1 -1
- data/test/test_where_parser.rb +1 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72f1c27433b1df5e239750bb6cb245439f8ad860
|
4
|
+
data.tar.gz: 87831d270a3c55207fae546fe20fb46d484fdb8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca8830bf8f2418674ca5777fab1dd4f44fc4655e63221d822093a9e9f29d9b50b98740176e8a7d0375aa98333095b055324e1660626b0172c16c4a4f3e579d0b
|
7
|
+
data.tar.gz: b425a6b2fc96b0a3acd7b1dc1ebc355996862ff9d0420b3f1329484829c5218dec25a6a99087fd4b97d74fc620aae610df1b96e05ff3a58c0e8e04569c99aec6
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -59,7 +59,7 @@ Not supported yet
|
|
59
59
|
|
60
60
|
### Identifier Literal
|
61
61
|
|
62
|
-
Characters matching with a regular expression `[a-zA-Z_][a-zA-z0-9_]*` such as `foobar`, and characters surrounded by `"` such as `"foo-bar"`, `"foo.bar"`, and `"foo\"bar"` are considred as an identifier literal, that is,
|
62
|
+
Characters matching with a regular expression `[a-zA-Z_][a-zA-z0-9_]*` such as `foobar`, and characters surrounded by `"` such as `"foo-bar"`, `"foo.bar"`, and `"foo\"bar"` are considred as an identifier literal, that is, fluentd's record key name.
|
63
63
|
|
64
64
|
## Operators
|
65
65
|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.name = "fluent-plugin-filter_where"
|
6
|
-
gem.version = "1.0.
|
6
|
+
gem.version = "1.0.1"
|
7
7
|
gem.authors = ["Naotoshi Seo"]
|
8
8
|
gem.email = "sonots@gmail.com"
|
9
9
|
gem.homepage = "https://github.com/sonots/fluent-plugin-filter_where"
|
data/test/helper.rb
CHANGED
@@ -93,6 +93,6 @@ else # <= v0.12
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def create_driver(conf, syntax: :v1, default_tag: 'tag')
|
96
|
-
FilterWhereTestDriver.new(Fluent::
|
96
|
+
FilterWhereTestDriver.new(Fluent::PluginFilterWhere, default_tag).configure(conf, syntax: syntax)
|
97
97
|
end
|
98
98
|
end
|
data/test/test_where_parser.rb
CHANGED
@@ -2,14 +2,8 @@ require_relative 'helper'
|
|
2
2
|
|
3
3
|
class WhereParserTest < Test::Unit::TestCase
|
4
4
|
class << self
|
5
|
-
def systemputs(cmd)
|
6
|
-
puts cmd
|
7
|
-
raise unless system cmd
|
8
|
-
end
|
9
|
-
|
10
5
|
def startup
|
11
|
-
|
12
|
-
systemputs "rex #{ROOT}/lib/fluent/plugin/filter_where/parser.rex -o #{ROOT}/lib/fluent/plugin/filter_where/parser.rex.rb"
|
6
|
+
system "rake compile"
|
13
7
|
require 'fluent/plugin/filter_where/parser.tab'
|
14
8
|
end
|
15
9
|
end
|