You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2019/09/17 09:36:40 UTC

[GitHub] [incubator-iceberg] shawnding opened a new pull request #478: Fix testImportAsHiveTable when create a unpartition table the spec should be to unpartitioned

shawnding opened a new pull request #478: Fix testImportAsHiveTable when create a unpartition table the spec  should be to unpartitioned
URL: https://github.com/apache/incubator-iceberg/pull/478
 
 
   When running ```TestSparkTableUtil#testImportAsHiveTable```, the column
   ```data``` in the table ```test_unpartitioned_table``` is null. I think the spec should be set to ```unpartitioned```.
   
   without the fix the table is like that:
   
   ```
    spark.read().format("iceberg").load(DB_NAME + ".test_unpartitioned_table").show();
   +---+----+
   | id|data|
   +---+----+
   |  3|null|
   |  2|null|
   |  1|null|
   +---+----+
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org