Github user jeanlyn commented on the pull request:

    https://github.com/apache/spark/pull/5079#issuecomment-83383402
  
    I also don't have CHAR in `mapjoin_addjar.q`. I only find one 
`mapjoin_addjar.q`,and the path of my file is
    
sql/hive/src/test/resources/ql/src/test/queries/clientpositive/mapjoin_addjar.q
    ```sql
    set hive.auto.convert.join=true;
    set hive.auto.convert.join.use.nonstaged=false;
    
    add jar 
${system:maven.local.repository}/org/apache/hive/hcatalog/hive-hcatalog-core/${system:hive.version}/hive-hcatalog-core-${system:hive.version}.jar;
    
    CREATE TABLE t1 (a string, b string)
    ROW FORMAT SERDE 'org.apache.hive.hcatalog.data.JsonSerDe'
    ;
    LOAD DATA LOCAL INPATH "../../data/files/sample.json" INTO TABLE t1;
    select * from src join t1 on src.key =t1.a;
    drop table t1;
    set hive.auto.convert.join=false;
    
    ```
    May be we can discuss this offline?


---
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.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to