Open
Description
Hi,
Currently, Criteria only supports "unquoted" SqlIdentifier
s - this occurs because the API only accepts a String and then passes it on to SqlIdentifier.unquoted()
.
I have a use-case where I would like to reuse the Criteria API but need to construct SqlIdentifier
(I need support for quoted and composite). This would enable to better compose a custom add-on on top of the R2DBC repositories as I would be able to reuse the same Criteria class for filtering (rather than having to "invent my own").