mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
aa19f1e0d0
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3778 GitOrigin-RevId: 13bb97bdb7afad265db899f368c74d9f240b214a
23 lines
918 B
Haskell
23 lines
918 B
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
-- | MSSQL Instances Metadata
|
|
--
|
|
-- Defines a 'Hasura.RQL.Types.Metadata.Backend.BackendMetadata' type class instance for MSSQL.
|
|
module Hasura.Backends.MSSQL.Instances.Metadata () where
|
|
|
|
import Hasura.Backends.MSSQL.DDL qualified as MSSQL
|
|
import Hasura.RQL.Types.Metadata.Backend
|
|
import Hasura.SQL.Backend
|
|
|
|
instance BackendMetadata 'MSSQL where
|
|
buildComputedFieldInfo = MSSQL.buildComputedFieldInfo
|
|
fetchAndValidateEnumValues = MSSQL.fetchAndValidateEnumValues
|
|
resolveSourceConfig = MSSQL.resolveSourceConfig
|
|
resolveDatabaseMetadata _ = MSSQL.resolveDatabaseMetadata
|
|
parseBoolExpOperations = MSSQL.parseBoolExpOperations
|
|
buildFunctionInfo = MSSQL.buildFunctionInfo
|
|
updateColumnInEventTrigger = MSSQL.updateColumnInEventTrigger
|
|
parseCollectableType = MSSQL.parseCollectableType
|
|
postDropSourceHook = MSSQL.postDropSourceHook
|