Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vollt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sonia Zorba
vollt
Commits
4dea14fc
Commit
4dea14fc
authored
7 years ago
by
gmantele
Browse files
Options
Downloads
Patches
Plain Diff
[ADQL] Finally, do not test exactly the weirdly encoded character
Follow up to the commits
33a790a4
and
5e0f82de
parent
5e0f82de
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/adql/parser/TestADQLParser.java
+1
-1
1 addition, 1 deletion
test/adql/parser/TestADQLParser.java
with
1 addition
and
1 deletion
test/adql/parser/TestADQLParser.java
+
1
−
1
View file @
4dea14fc
...
@@ -166,7 +166,7 @@ public class TestADQLParser {
...
@@ -166,7 +166,7 @@ public class TestADQLParser {
(
new
ADQLParser
()).
parseQuery
(
"select gr\u00e9gory FROM aTable"
);
(
new
ADQLParser
()).
parseQuery
(
"select gr\u00e9gory FROM aTable"
);
}
catch
(
Throwable
t
){
}
catch
(
Throwable
t
){
assertEquals
(
ParseException
.
class
,
t
.
getClass
());
assertEquals
(
ParseException
.
class
,
t
.
getClass
());
assertTrue
(
t
.
getMessage
().
startsWith
(
"Incorrect character encountered at l.1, c.10:
\"\\u00e9\" ('
"
));
assertTrue
(
t
.
getMessage
().
startsWith
(
"Incorrect character encountered at l.1, c.10: "
));
}
}
// But in a string, delimited identifier or a comment, it is fine:
// But in a string, delimited identifier or a comment, it is fine:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment