Skip to content
Snippets Groups Projects
Commit 5e0f82de authored by gmantele's avatar gmantele
Browse files

[ADQL] Complete the previous commit 33a790a4

parent 33a790a4
No related branches found
No related tags found
No related merge requests found
......@@ -171,9 +171,9 @@ public class TestADQLParser {
// But in a string, delimited identifier or a comment, it is fine:
try{
(new ADQLParser()).parseQuery("select 'grégory' FROM aTable");
(new ADQLParser()).parseQuery("select \"grégory\" FROM aTable");
(new ADQLParser()).parseQuery("select * FROM aTable -- a comment by Grégory");
(new ADQLParser()).parseQuery("select 'gr\u00e9gory' FROM aTable");
(new ADQLParser()).parseQuery("select \"gr\u00e9gory\" FROM aTable");
(new ADQLParser()).parseQuery("select * FROM aTable -- a comment by Gr\u00e9gory");
}catch(Throwable t){
fail("This error should never occurs because all these queries have an accentuated character but at a correct place.");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment