Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
e607ba1a
Commit
e607ba1a
authored
Nov 25, 2019
by
Nikhil Bonte
Committed by
Ashutosh Mestry
Nov 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-3532: DSL: Fix for test case failure.
Signed-off-by:
Ashutosh Mestry
<
amestry@hortonworks.com
>
parent
7be3a6f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
GremlinQueryComposerTest.java
...java/org/apache/atlas/query/GremlinQueryComposerTest.java
+1
-1
No files found.
repository/src/test/java/org/apache/atlas/query/GremlinQueryComposerTest.java
View file @
e607ba1a
...
...
@@ -168,7 +168,7 @@ public class GremlinQueryComposerTest {
verify
(
"Table where Asset.name like \"Tab*\""
,
"g.V().has('__typeName', 'Table').has('Asset.__s_name', org.janusgraph.core.attribute.Text.textRegex(\"Tab.*\")).dedup().limit(25).toList()"
);
verify
(
"Table where owner like \"Tab*\""
,
"g.V().has('__typeName', 'Table').has('Table.owner', org.janusgraph.core.attribute.Text.text
Contains
Regex(\"Tab.*\")).dedup().limit(25).toList()"
);
"g.V().has('__typeName', 'Table').has('Table.owner', org.janusgraph.core.attribute.Text.textRegex(\"Tab.*\")).dedup().limit(25).toList()"
);
verify
(
"Table where owner like \"*Tab_*\""
,
"g.V().has('__typeName', 'Table').has('Table.owner', org.janusgraph.core.attribute.Text.textRegex(\".*Tab_.*\")).dedup().limit(25).toList()"
);
verify
(
"from Table where (db.name = \"Reporting\")"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment