mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
3247c8bd71
https://github.com/hasura/graphql-engine-mono/pull/2270 GitOrigin-RevId: d7644b25d3ee57ffa630de15ae692c1bfa03b4f6
23 lines
919 B
Haskell
23 lines
919 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
{-# LANGUAGE UndecidableInstances #-}
|
|
|
|
module Hasura.Backends.MSSQL.Instances.Metadata () where
|
|
|
|
import qualified Hasura.Backends.MSSQL.DDL 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
|
|
createTableEventTrigger = MSSQL.createTableEventTrigger
|
|
parseBoolExpOperations = MSSQL.parseBoolExpOperations
|
|
buildFunctionInfo = MSSQL.buildFunctionInfo
|
|
updateColumnInEventTrigger = MSSQL.updateColumnInEventTrigger
|
|
parseCollectableType = MSSQL.parseCollectableType
|
|
postDropSourceHook = MSSQL.postDropSourceHook
|