-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: EXPOSED-248 Support array column type (#1986)
* feat: EXPOSED-248 Support array column type - Add new ArrayColumnType that stores and retrieves elements of a List. - Supported databases include: PostgreSQL, PostgreSQLNG, H2 (and variants). - Maximum array size can be set (for H2). - Currently on 1-dimensional arrays are supported. - Stored array can be accessed using index reference as well as sliced. - Updating a stored array using index reference is currently not supported. - Using an arry column with ANY or ALL operatora is not currently supported. * feat: EXPOSED-248 Support array column type - Add more tests - Add apiDump changes - Edit KDocs * feat: EXPOSED-248 Support array column type - Replace SchemaUtils if block with when block. - Add index reference get operator and update test. * feat: EXPOSED-248 Support array column type Drop elementAt() in favor of get() index reference operator.
- Loading branch information
Showing
14 changed files
with
525 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.