Created
January 31, 2015 21:25
-
-
Save RussellSpitzer/eac1bc453ae23c7780fa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| protected lazy val rowTransformer = { | |
| logDebug("Row Transformer time") | |
| logDebug(s"Table def null? ${tableDef == null}") | |
| logDebug(s"Implictly[RowReaderFactory[R] null? ${implicitly[RowReaderFactory[R]] == null}") | |
| logDebug(s"What is R? ${ct.toString()}") | |
| implicitly[RowReaderFactory[R]].rowReader(tableDef) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment