Scala (2.10 を使用) と Slick (2.0-M2 を使用) は初めてです。Slick でテーブルの 22 列の制限を回避する方法の 1 つは、ネストされたタプルを使用することです。GitHub でこの部分的なコードを見つけたにもかかわらず、その方法がわかりません。
Current dev branch Scala (2.11-M5) supports case classes with more than 22 elements, but not tuples with arity > 22. And Slick is not yet distributed for Scala 2.11 pre-releases. How can I define a 33 column table (and have it work with all Slick's syntactic sugar)?
N.B., I'm trying to support an existing schema and can't change the table normalization.