mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
1727b5236a
[GDC-1015]: https://hasurahq.atlassian.net/browse/GDC-1015?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8232 GitOrigin-RevId: 0cc3b7b1f17b2e6d4cdfa713b1581357de62f359
26 lines
1.5 KiB
Haskell
26 lines
1.5 KiB
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.MySQL.Instances.Metadata () where
|
|
|
|
import Hasura.Backends.MySQL.Connection qualified as MySQL
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.EventTrigger (RecreateEventTriggers (RETDoNothing))
|
|
import Hasura.RQL.Types.Metadata.Backend
|
|
import Hasura.SQL.Backend
|
|
import Hasura.Server.Migrate.Version (SourceCatalogMigrationState (SCMSNotSupported))
|
|
|
|
instance BackendMetadata 'MySQL where
|
|
prepareCatalog _ = pure (RETDoNothing, SCMSNotSupported)
|
|
buildComputedFieldInfo = error "buildComputedFieldInfo: MySQL backend does not support this operation yet."
|
|
fetchAndValidateEnumValues = error "fetchAndValidateEnumValues: MySQL backend does not support this operation yet."
|
|
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."
|
|
updateColumnInEventTrigger = error "updateColumnInEventTrigger: MySQL backend does not support this operation yet."
|
|
parseCollectableType = error "parseCollectableType: MySQL backend does not support this operation yet."
|
|
postDropSourceHook = MySQL.postDropSourceHook
|
|
buildComputedFieldBooleanExp _ _ _ _ _ _ =
|
|
error "buildComputedFieldBooleanExp: MySQL backend does not support this operation yet."
|
|
supportsBeingRemoteRelationshipTarget _ = False
|