Tool to transform OLTP database schemas to OLAP database schemas automatically
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ringo/ringo/src/Ringo/Types.hs

35 lines
608 B

7 years ago
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE Rank2Types #-}
module Ringo.Types
( ColumnName
, ColumnType
, TableName
, Nullable(..)
, Column(..)
, TableConstraint(..)
, Table(..)
, TimeUnit(..)
, timeUnitName
, timeUnitToSeconds
, Fact(..)
, FactColumnKind(..)
, FactColumnType(..)
, FactColumn(..)
, factSourceColumnName
, Settings(..)
, defSettings
, ValidationError(..)
, TypeDefaults
, Env
, envTables
, envFacts
, envSettings
, envTypeDefaults
, TablePopulationMode(..)
, Dependencies
) where
import Ringo.Types.Internal