mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
ea5c92acae
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8876 GitOrigin-RevId: abfc18eeef96a1f3593bfe823adab4d161161333
40 lines
1.5 KiB
Haskell
40 lines
1.5 KiB
Haskell
-- | This module contains supporting definitions for building temporary tables
|
|
-- based off of the schema of other tables. This is used in mutations to capture
|
|
-- the data of rows that are affected.
|
|
module Hasura.Backends.MSSQL.FromIr.SelectIntoTempTable
|
|
( toSelectIntoTempTable,
|
|
)
|
|
where
|
|
|
|
import Hasura.Backends.MSSQL.Instances.Types ()
|
|
import Hasura.Backends.MSSQL.Types.Internal as TSQL
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.BackendType
|
|
import Hasura.RQL.Types.Column qualified as IR
|
|
|
|
-- | Create a temporary table with the same schema as the given table.
|
|
toSelectIntoTempTable :: TempTableName -> TableName -> [IR.ColumnInfo 'MSSQL] -> SITTConstraints -> SelectIntoTempTable
|
|
toSelectIntoTempTable tempTableName fromTable allColumns withConstraints = do
|
|
SelectIntoTempTable
|
|
{ sittTempTableName = tempTableName,
|
|
sittColumns = map columnInfoToUnifiedColumn allColumns,
|
|
sittFromTableName = fromTable,
|
|
sittConstraints = withConstraints
|
|
}
|
|
|
|
-- | Extracts the type and column name of a ColumnInfo
|
|
columnInfoToUnifiedColumn :: IR.ColumnInfo 'MSSQL -> UnifiedColumn
|
|
columnInfoToUnifiedColumn colInfo =
|
|
case IR.ciType colInfo of
|
|
IR.ColumnScalar t ->
|
|
UnifiedColumn
|
|
{ name = IR.ciColumn colInfo,
|
|
type' = t
|
|
}
|
|
-- Enum values are represented as text value so they will always be of type text
|
|
IR.ColumnEnumReference {} ->
|
|
UnifiedColumn
|
|
{ name = IR.ciColumn colInfo,
|
|
type' = TextType
|
|
}
|