2021-07-15 15:44:26 +03:00
|
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
|
|
|
|
module Hasura.Backends.MySQL.Instances.Metadata where
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
import Hasura.Backends.MySQL.Connection qualified as MySQL
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.RQL.Types.Metadata.Backend
|
|
|
|
import Hasura.SQL.Backend
|
2021-07-15 15:44:26 +03:00
|
|
|
|
|
|
|
instance BackendMetadata 'MySQL where
|
2021-09-24 01:56:37 +03:00
|
|
|
buildComputedFieldInfo = error "buildComputedFieldInfo: MySQL backend does not support this operation yet."
|
2021-08-04 14:42:24 +03:00
|
|
|
fetchAndValidateEnumValues = error "fetchAndValidateEnumValues: MySQL backend does not support this operation yet."
|
2021-09-24 01:56:37 +03:00
|
|
|
resolveSourceConfig = MySQL.resolveSourceConfig
|
|
|
|
resolveDatabaseMetadata = MySQL.resolveDatabaseMetadata
|
|
|
|
parseBoolExpOperations = error "parseBoolExpOperations: MySQL backend does not support this operation yet."
|
|
|
|
buildFunctionInfo = error "buildFunctionInfo: MySQL backend does not support this operation yet."
|
2021-08-04 14:42:24 +03:00
|
|
|
updateColumnInEventTrigger = error "updateColumnInEventTrigger: MySQL backend does not support this operation yet."
|
2021-09-24 01:56:37 +03:00
|
|
|
parseCollectableType = error "parseCollectableType: MySQL backend does not support this operation yet."
|
|
|
|
postDropSourceHook = error "postDropSourceHook: MySQL backend does not support this operation yet."
|