queryverse / queryverse/Query.jl
Names with spaces
Open
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 403
- Forks
- 48
- Avg merge
- 3d 6h
- Merged PRs (30d)
- 6
Description
everything goes well with simple column names like "Name", "Full_Name", "Age", but i cant get it done when i have field names with spaces like "Full Name", "ID Number".
This works,
df = x |>
@filter(_.Age > 2) |>
@map({_.Name}) |>
DataFrame
this does not work:
df = x |>
@filter(_.Age> 2) |>
@map({_."Full Name"}) |>
DataFrame
What i am doing wrong?
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the two examples in Julia and inspect Query.jl's handling of column references when names contain spaces. No file or test is named in the issue, so trace the failing expression from the example and determine whether the expected result requires syntax support or documentation.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- data
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100