Github user paul-rogers commented on the issue:

    https://github.com/apache/drill/pull/594
  
    We have three cases for nulls:
    
    1. See a typed field, followed by nulls. Here, we know the type, just mark 
the current field as null.
    2. Run of nulls at start of file, followed by a non-null value within the 
same record batch. We can transform the null field into a typed field. That is 
what this fix tries to do.
    3. Run of nulls in one record batch, followed by a non-null value in the 
next batch. This must trigger a schema change. The question is, does it trigger 
based on adding a new field, or assuming a type in the first batch, then 
changing the type in the second?
    
    The code presumably handles the first case. Case 3 is beyond the scope of 
this fix. So, the question is, how best to handle the second case? Is the 
present fix sufficient?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to