-
Notifications
You must be signed in to change notification settings - Fork 28.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loads test tables when running "sbt hive/console" without HIVE_DEV_HOME #417
Conversation
@marmbrus I think we can remove |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
This change seems reasonable. I think we should leave |
@pwendell, this can be merged. No reason not to include in 1.0 as well. |
After I merge some commits recently into my previous cloned repo, I can no longer run hive/test by |
@adrian-wang You should run |
@liancheng Thank you for your solution, that works fine:) |
Not quite sure about what has been changed exactly right now. But |
Anyway I can run that locally now, thank you very much! |
Thanks I've merged this. |
When running Hive tests, the working directory is `$SPARK_HOME/sql/hive`, while when running `sbt hive/console`, it becomes `$SPARK_HOME`, and test tables are not loaded if `HIVE_DEV_HOME` is not defined. Author: Cheng Lian <[email protected]> Closes #417 from liancheng/loadTestTables and squashes the following commits: 7cea8d6 [Cheng Lian] Loads test tables when running "sbt hive/console" without HIVE_DEV_HOME (cherry picked from commit fec462c) Signed-off-by: Patrick Wendell <[email protected]>
BTW, its likely that the problem with SBT is that you don't have Also, ask these sorts of questions on the dev list. Other people might want to know the answer :) |
When running Hive tests, the working directory is `$SPARK_HOME/sql/hive`, while when running `sbt hive/console`, it becomes `$SPARK_HOME`, and test tables are not loaded if `HIVE_DEV_HOME` is not defined. Author: Cheng Lian <[email protected]> Closes apache#417 from liancheng/loadTestTables and squashes the following commits: 7cea8d6 [Cheng Lian] Loads test tables when running "sbt hive/console" without HIVE_DEV_HOME
Sometimes secgroup_2 is residue after fusioncloud job running, clean up it. And also clean up port resource. Closes: theopenlab/openlab#170
When running Hive tests, the working directory is
$SPARK_HOME/sql/hive
, while when runningsbt hive/console
, it becomes$SPARK_HOME
, and test tables are not loaded ifHIVE_DEV_HOME
is not defined.