mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
385d27449e
https://github.com/hasura/graphql-engine-mono/pull/1599 Co-authored-by: Chris Done <11019+chrisdone@users.noreply.github.com> Co-authored-by: Aniket Deshpande <922486+aniketd@users.noreply.github.com> Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com> GitOrigin-RevId: 4df4a8ff00fa8ef311a85199d66abe4cc10adc8c
22 lines
1.2 KiB
Haskell
22 lines
1.2 KiB
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.MySQL.Instances.Metadata where
|
|
|
|
import qualified Hasura.Backends.MySQL.Connection as MySQL
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.Metadata.Backend
|
|
import Hasura.SQL.Backend
|
|
|
|
instance BackendMetadata 'MySQL where
|
|
buildComputedFieldInfo = error "MySQL backend does not support this operation yet."
|
|
fetchAndValidateEnumValues = error "MySQL backend does not support this operation yet."
|
|
resolveSourceConfig = MySQL.resolveSourceConfig
|
|
resolveDatabaseMetadata = MySQL.resolveDatabaseMetadata
|
|
createTableEventTrigger = error "MySQL backend does not support this operation yet."
|
|
buildEventTriggerInfo = error "MySQL backend does not support this operation yet."
|
|
parseBoolExpOperations = error "MySQL backend does not support this operation yet."
|
|
buildFunctionInfo = error "MySQL backend does not support this operation yet."
|
|
updateColumnInEventTrigger = error "MySQL backend does not support this operation yet."
|
|
parseCollectableType = error "MySQL backend does not support this operation yet."
|
|
postDropSourceHook = error "MySQL backend does not support this operation yet."
|