CodeLionX / actordb

Actor Database System Framework using Akka
MIT License
0 stars 2 forks source link

Use Set instead of Seq for ColumnDefs and Record / Relation access #16

Closed srfc closed 6 years ago

srfc commented 6 years ago

Issue

Use Set instead of Seq for ColumnDef and Record / Relation access

Problem Description

Right now we're using Seq as a container for our Column's, ColumnDef's, Relation's etc. We don't need the ordering of Seq and want to avoid users/devs to use index access to columns due to the possibility of breaking those when adding columns etc.

Supporting Information