Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

tolower() in odata query string produces LCASE() rather than LOWER() pg method #3

@KFoster-Marks

Description

@KFoster-Marks

When passing in the following:

$filter=contains(tolower(name), ${var})

the following is generated:

LCASE("name") like $1

which returns the following from the postgresql db:

ERROR: function lcase(character varying) does not exist

This package should generate the following, I believe:

LOWER("name") like $1

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions