oracle-sql-parser 0.9.0 → 0.9.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65ccb6c5ca3fa99eda70ba5fe0d4873b5f8a96bb
|
|
4
|
+
data.tar.gz: 24ffc169688001d4cee229cddeed547df734f970
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e4e81064d53395224a30ee3439bd86046ad8165ce4ecb0e7beec9f411f34f63864e29cda50ba1de10d6a8b186874aeac55f2228673079df454a0e2bd1b637d6
|
|
7
|
+
data.tar.gz: 1be368a6fb68eee71b9a80131988d6ec19030a5c3181a5fd4ab02cc32d7c542811bcd600f7911464f86c2fdff09c75cf5125d2bddc9e7140a124998bb03dfae2
|
|
@@ -42,8 +42,8 @@ module OracleSqlParser::Grammar
|
|
|
42
42
|
rule logical_condition
|
|
43
43
|
(
|
|
44
44
|
op:not_keyword space? right:condition /
|
|
45
|
-
left:condition space? op:and_keyword space? right:condition /
|
|
46
|
-
left:condition space? op:or_keyword space? right:condition
|
|
45
|
+
left:condition space? op:and_keyword space? right:(logical_condition / condition ) /
|
|
46
|
+
left:condition space? op:or_keyword space? right:(logical_condition / condition) /
|
|
47
47
|
cond:condition
|
|
48
48
|
) {
|
|
49
49
|
def ast
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oracle-sql-parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Junichiro Kasuya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: treetop
|
|
@@ -236,7 +236,6 @@ files:
|
|
|
236
236
|
- lib/oracle-sql-parser/grammar/expression.treetop
|
|
237
237
|
- lib/oracle-sql-parser/grammar/expression/case.rb
|
|
238
238
|
- lib/oracle-sql-parser/grammar/expression/case.treetop
|
|
239
|
-
- lib/oracle-sql-parser/grammar/expression/cast.rb
|
|
240
239
|
- lib/oracle-sql-parser/grammar/expression/compound.rb
|
|
241
240
|
- lib/oracle-sql-parser/grammar/expression/compound.treetop
|
|
242
241
|
- lib/oracle-sql-parser/grammar/expression/cursor.rb
|
|
@@ -247,7 +246,6 @@ files:
|
|
|
247
246
|
- lib/oracle-sql-parser/grammar/expression/function.treetop
|
|
248
247
|
- lib/oracle-sql-parser/grammar/expression/interval.rb
|
|
249
248
|
- lib/oracle-sql-parser/grammar/expression/interval.treetop
|
|
250
|
-
- lib/oracle-sql-parser/grammar/expression/placeholder.rb
|
|
251
249
|
- lib/oracle-sql-parser/grammar/expression/simple.rb
|
|
252
250
|
- lib/oracle-sql-parser/grammar/expression/simple.treetop
|
|
253
251
|
- lib/oracle-sql-parser/grammar/grammar.rb
|
|
@@ -298,7 +296,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
298
296
|
version: '0'
|
|
299
297
|
requirements: []
|
|
300
298
|
rubyforge_project:
|
|
301
|
-
rubygems_version: 2.
|
|
299
|
+
rubygems_version: 2.6.12
|
|
302
300
|
signing_key:
|
|
303
301
|
specification_version: 4
|
|
304
302
|
summary: SQL Parser for Oracle
|