[ 
https://issues.apache.org/jira/browse/DRILL-4264?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16138702#comment-16138702
 ] 

ASF GitHub Bot commented on DRILL-4264:
---------------------------------------

Github user vvysotskyi commented on a diff in the pull request:

    https://github.com/apache/drill/pull/909#discussion_r134788014
  
    --- Diff: 
exec/java-exec/src/test/java/org/apache/drill/test/rowSet/RowSetSchema.java ---
    @@ -94,12 +102,20 @@ private void updateStructure(int index, PhysicalSchema 
children) {
        */
     
       public static class NameSpace<T> {
    -    private final Map<String,Integer> nameSpace = new HashMap<>();
    +    private final Map<String, Integer> nameSpace = new HashMap<>();
         private final List<T> columns = new ArrayList<>();
     
    -    public int add(String key, T value) {
    +    /**
    +     * Adds column path with specified value to the columns list
    +     * and returns the index of the column in the list.
    +     *
    +     * @param key   full name path of the column in the schema
    +     * @param value value to be added to the list
    +     * @return index of the column in the list
    +     */
    +    public int add(String[] key, T value) {
           int index = columns.size();
    -      nameSpace.put(key, index);
    +      nameSpace.put(SchemaPath.getCompoundPath(key).toExpr(), index);
    --- End diff --
    
    Thanks for the explanation, reverted my changes.


> Allow field names to include dots
> ---------------------------------
>
>                 Key: DRILL-4264
>                 URL: https://issues.apache.org/jira/browse/DRILL-4264
>             Project: Apache Drill
>          Issue Type: Improvement
>          Components: Execution - Codegen
>            Reporter: Alex
>            Assignee: Volodymyr Vysotskyi
>              Labels: doc-impacting
>             Fix For: 1.12.0
>
>
> If you have some json data like this...
> {code:javascript}
>     {
>       "0.0.1":{
>         "version":"0.0.1",
>         "date_created":"2014-03-15"
>       },
>       "0.1.2":{
>         "version":"0.1.2",
>         "date_created":"2014-05-21"
>       }
>     }
> {code}
> ... there is no way to select any of the rows since their identifiers contain 
> dots and when trying to select them, Drill throws the following error:
> Error: SYSTEM ERROR: UnsupportedOperationException: Unhandled field reference 
> "0.0.1"; a field reference identifier must not have the form of a qualified 
> name
> This must be fixed since there are many json data files containing dots in 
> some of the keys (e.g. when specifying version numbers etc)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to