You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to add new tests related to collations based on capitalization. Related to main issue #1535.
Some examples of this would be to ensure it works with both cases SELECT json_agg(to_jsonb(table0)) FROM (SELECT title FROM books ORDER BY title asc) as table0 and SELECT json_agg(to_jsonb(table0)) FROM (SELECT TITLE FROM BOOKS ORDER BY TITLE asc) as table0.
The text was updated successfully, but these errors were encountered:
## Why make this change?
Solves issue #2350, to add collation tests related to capitalization.
## What is this change?
Added collation tests related to case sensitivity for `MSSQL`, `MYSQL`,
& `POSTGRESQL` by creating a new `GraphQLCollationTests` file under
`SQLTests` that will have all the tests related to changes in collations
for SQL databases.
## How was this tested?
- [X] Integration Tests
- [ ] Unit Tests
---------
Co-authored-by: Ruben Cerna <[email protected]>
Need to add new tests related to collations based on capitalization. Related to main issue #1535.
Some examples of this would be to ensure it works with both cases
SELECT json_agg(to_jsonb(table0)) FROM (SELECT title FROM books ORDER BY title asc) as table0
andSELECT json_agg(to_jsonb(table0)) FROM (SELECT TITLE FROM BOOKS ORDER BY TITLE asc) as table0
.The text was updated successfully, but these errors were encountered: