Frames-0.6.2: test/Overlap.hs
{-# LANGUAGE DataKinds, FlexibleContexts, TemplateHaskell, TypeApplications #-}
module Main
( main
)
where
import Frames
-- These data files have overlapping column definitions. Frames should
-- not try to re-define an existing identifier.
tableTypes "ManagerRec" "test/data/managers.csv"
tableTypes "EmployeeRec" "test/data/employees.csv"
main :: IO ()
main = return ()