-
Notifications
You must be signed in to change notification settings - Fork 14
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
Add load local path #167
Add load local path #167
Conversation
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Review 🔍
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨
|
PR Type
Enhancement
Description
RESOURCE_LOCAL_PATH
initialization inTester
andRunConfUtil
classes.RESOURCE_LOCAL_PATH_FLAG
andRESOURCE_LOCAL_PATH
constants inCOMMON
class.Executor
class to supportRESOURCE_LOCAL_PATH_FLAG
in SQL command execution.Changes walkthrough 📝
Tester.java
Initialize `RESOURCE_LOCAL_PATH` in Tester class.
src/main/java/io/mo/Tester.java
RESOURCE_LOCAL_PATH
initialization.COMMON.java
Add constants for local resource path in COMMON class.
src/main/java/io/mo/constant/COMMON.java
RESOURCE_LOCAL_PATH_FLAG
constant.RESOURCE_LOCAL_PATH
constant.Executor.java
Support local resource path flag in SQL command execution.
src/main/java/io/mo/db/Executor.java
RESOURCE_LOCAL_PATH_FLAG
in SQL commandexecution.
RunConfUtil.java
Initialize `RESOURCE_LOCAL_PATH` in RunConfUtil class.
src/main/java/io/mo/util/RunConfUtil.java
RESOURCE_LOCAL_PATH
initialization ingetResourcePath
method.