Skip to content
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

Making column names lowercase to make output table schema compatible with the Lakehouse #979

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions transforms/code/code_profiler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ run-cli-sample:
source venv/bin/activate && \
$(PYTHON) -m dpk_$(TRANSFORM_NAME).transform_python \
--data_local_config "{ 'input_folder' : 'test-data/input', 'output_folder' : 'output'}" \
--language "language" \
--programming_language "programming_language" \
--contents "contents"

run-ray-cli-sample:
Expand All @@ -28,5 +28,5 @@ run-ray-cli-sample:
$(PYTHON) -m dpk_$(TRANSFORM_NAME).ray.transform \
--data_local_config "{ 'input_folder' : 'test-data/input', 'output_folder' : 'output'}" \
--run_locally True \
--language "language" \
--programming_language "programming_language" \
--contents "contents"
2 changes: 1 addition & 1 deletion transforms/code/code_profiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The set of dictionary keys holding [code_profiler_transform](dpk_code_profiler/t
configuration for values are as follows:

* content - specifies the column name in the dataframe that has the code snippet
* language - specifies the programming languages of the code snippet
* programming_language - specifies the programming languages of the code snippet

## Running

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"input_folder": input_folder,
"output_folder": output_folder,
"contents": "contents",
"language": "language",
"programming_language": "programming_language",
}
params = {
# Data access. Only required parameters are specified
Expand Down
Loading