Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Modified the DSL.jsonEntry (closes #7)
Previously the jsonEntry was ``` is ColumnField -> { DSL.jsonEntry( alias, DSL.field(DSL.name(field.name)) ) } ``` Modified that so that, the issue of aliasing is resolved ``` is ColumnField -> { DSL.jsonEntry( alias, DSL.field(DSL.name(alias)) ) } ```
- Loading branch information