CodeLionX / actordb

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

Apply a function on a column of a relation #70

Closed CodeLionX closed 6 years ago

CodeLionX commented 6 years ago

Proposed Changes

val newRelation = relation.applyOn(stringCol, (s: String) => s + " test")

Note:

I implemented it and after that noticed that I do not need it. Don't wanted to throw it away anyway.