algebra-sql-0.1.0.0: src/Database/Algebra/SQL/Compatibility.hs
-- This module defines compatibility modes, for different SQL dialects.
module Database.Algebra.SQL.Compatibility
( CompatMode(..)
) where
-- TODO Provide feature specific records, in case this file gets bigger.
-- | Defines the possible modes used for certain tasks like rendering and
-- materialization.
data CompatMode = SQL99
| PostgreSQL
| MonetDB