2022-04-22 16:38:35 +03:00
|
|
|
-- | This module contains worker definitions pertaining to generating 'Select'
|
|
|
|
-- AST nodes.
|
|
|
|
--
|
|
|
|
-- NOTE: 'generateSQLSelect' is mutually recursive with
|
|
|
|
-- 'connectionToSelectWith', thus these two cohabitate in this module.
|
2022-04-22 20:18:20 +03:00
|
|
|
module Hasura.Backends.Postgres.Translate.Select.Internal.GenerateSelect
|
2022-04-22 16:38:35 +03:00
|
|
|
( generateSQLSelect,
|
|
|
|
generateSQLSelectFromArrayNode,
|
|
|
|
connectionToSelectWith,
|
|
|
|
)
|
|
|
|
where
|
|
|
|
|
|
|
|
import Data.HashMap.Strict qualified as HM
|
|
|
|
import Data.List.NonEmpty qualified as NE
|
|
|
|
import Hasura.Backends.Postgres.SQL.DML qualified as S
|
|
|
|
import Hasura.Backends.Postgres.SQL.Types
|
2022-10-11 13:42:15 +03:00
|
|
|
import Hasura.Backends.Postgres.SQL.Types qualified as S
|
2022-04-22 20:18:20 +03:00
|
|
|
import Hasura.Backends.Postgres.Translate.Select.Internal.Aliases (mkBaseTableAlias)
|
|
|
|
import Hasura.Backends.Postgres.Translate.Select.Internal.Helpers
|
2022-04-22 16:38:35 +03:00
|
|
|
( cursorIdentifier,
|
2022-10-05 13:03:36 +03:00
|
|
|
cursorsSelectAlias,
|
2022-04-22 16:38:35 +03:00
|
|
|
cursorsSelectAliasIdentifier,
|
|
|
|
endCursorIdentifier,
|
|
|
|
hasNextPageIdentifier,
|
|
|
|
hasPreviousPageIdentifier,
|
|
|
|
mkFirstElementExp,
|
|
|
|
mkLastElementExp,
|
2022-10-05 13:03:36 +03:00
|
|
|
pageInfoSelectAlias,
|
2022-04-22 16:38:35 +03:00
|
|
|
startCursorIdentifier,
|
|
|
|
)
|
|
|
|
import Hasura.Backends.Postgres.Translate.Types
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.RQL.IR.Select (ConnectionSlice (SliceFirst, SliceLast))
|
|
|
|
|
|
|
|
generateSQLSelect ::
|
2022-09-22 16:56:50 +03:00
|
|
|
-- | Pre join condition for lateral joins
|
2022-04-22 16:38:35 +03:00
|
|
|
S.BoolExp ->
|
|
|
|
SelectSource ->
|
|
|
|
SelectNode ->
|
|
|
|
S.Select
|
|
|
|
generateSQLSelect joinCondition selectSource selectNode =
|
|
|
|
S.mkSelect
|
2022-09-22 16:56:50 +03:00
|
|
|
{ S.selExtr =
|
|
|
|
case [S.Extractor e $ Just a | (a, e) <- HM.toList extractors] of
|
|
|
|
-- If the select list is empty we will generated code which looks like this:
|
|
|
|
-- > SELECT FROM ...
|
|
|
|
-- This works for postgres, but not for cockroach, which expects a non-empty
|
|
|
|
-- select list. So we add a dummy value:
|
|
|
|
[] -> S.dummySelectList -- SELECT 1 FROM ...
|
|
|
|
exts -> exts,
|
2022-04-22 16:38:35 +03:00
|
|
|
S.selFrom = Just $ S.FromExp [joinedFrom],
|
|
|
|
S.selOrderBy = nodeOrderBy,
|
|
|
|
S.selLimit = S.LimitExp . S.intToSQLExp <$> _ssLimit nodeSlicing,
|
|
|
|
S.selOffset = S.OffsetExp . S.int64ToSQLExp <$> _ssOffset nodeSlicing,
|
|
|
|
S.selDistinct = nodeDistinctOn
|
|
|
|
}
|
|
|
|
where
|
|
|
|
SelectSource sourcePrefix fromItem whereExp sortAndSlice = selectSource
|
|
|
|
SelectNode extractors joinTree = selectNode
|
|
|
|
JoinTree objectRelations arrayRelations arrayConnections computedFields = joinTree
|
|
|
|
ApplySortingAndSlicing
|
|
|
|
(baseOrderBy, baseSlicing, baseDistinctOn)
|
|
|
|
(nodeOrderBy, nodeSlicing, nodeDistinctOn) = applySortingAndSlicing sortAndSlice
|
|
|
|
|
|
|
|
-- this is the table which is aliased as "sourcePrefix.base"
|
|
|
|
baseSelect =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = [S.Extractor (S.SEStar Nothing) Nothing],
|
|
|
|
S.selFrom = Just $ S.FromExp [fromItem],
|
|
|
|
S.selWhere = Just $ injectJoinCond joinCondition whereExp,
|
|
|
|
S.selOrderBy = baseOrderBy,
|
|
|
|
S.selLimit = S.LimitExp . S.intToSQLExp <$> _ssLimit baseSlicing,
|
|
|
|
S.selOffset = S.OffsetExp . S.int64ToSQLExp <$> _ssOffset baseSlicing,
|
|
|
|
S.selDistinct = baseDistinctOn
|
|
|
|
}
|
2022-10-11 13:42:15 +03:00
|
|
|
-- This is why 'SelectSource{sourcePrefix}' needs to be a TableAlias!
|
|
|
|
baseSelectAlias = mkBaseTableAlias (S.toTableAlias sourcePrefix)
|
|
|
|
baseSelectIdentifier = S.tableAliasToIdentifier baseSelectAlias
|
2022-04-22 16:38:35 +03:00
|
|
|
baseFromItem = S.mkSelFromItem baseSelect baseSelectAlias
|
|
|
|
|
|
|
|
injectJoinCond ::
|
|
|
|
S.BoolExp -> -- Join condition
|
|
|
|
S.BoolExp -> -- Where condition
|
|
|
|
S.WhereFrag -- New where frag
|
|
|
|
injectJoinCond joinCond whereCond =
|
|
|
|
S.WhereFrag $ S.simplifyBoolExp $ S.BEBin S.AndOp joinCond whereCond
|
|
|
|
|
|
|
|
-- function to create a joined from item from two from items
|
|
|
|
leftOuterJoin current new =
|
|
|
|
S.FIJoin $
|
|
|
|
S.JoinExpr current S.LeftOuter new $
|
|
|
|
S.JoinOn $ S.BELit True
|
|
|
|
|
|
|
|
-- this is the from eexp for the final select
|
|
|
|
joinedFrom :: S.FromItem
|
|
|
|
joinedFrom =
|
|
|
|
foldl' leftOuterJoin baseFromItem $
|
|
|
|
map objectRelationToFromItem (HM.toList objectRelations)
|
|
|
|
<> map arrayRelationToFromItem (HM.toList arrayRelations)
|
|
|
|
<> map arrayConnectionToFromItem (HM.toList arrayConnections)
|
|
|
|
<> map computedFieldToFromItem (HM.toList computedFields)
|
|
|
|
|
|
|
|
objectRelationToFromItem ::
|
|
|
|
(ObjectRelationSource, SelectNode) -> S.FromItem
|
|
|
|
objectRelationToFromItem (objectRelationSource, node) =
|
|
|
|
let ObjectRelationSource _ colMapping objectSelectSource = objectRelationSource
|
2022-07-18 12:44:17 +03:00
|
|
|
alias = S.toTableAlias $ _ossPrefix objectSelectSource
|
2022-04-22 16:38:35 +03:00
|
|
|
source = objectSelectSourceToSelectSource objectSelectSource
|
2022-10-11 13:42:15 +03:00
|
|
|
select = generateSQLSelect (mkJoinCond baseSelectIdentifier colMapping) source node
|
2022-04-22 16:38:35 +03:00
|
|
|
in S.mkLateralFromItem select alias
|
|
|
|
|
|
|
|
arrayRelationToFromItem ::
|
|
|
|
(ArrayRelationSource, MultiRowSelectNode) -> S.FromItem
|
|
|
|
arrayRelationToFromItem (arrayRelationSource, arraySelectNode) =
|
|
|
|
let ArrayRelationSource _ colMapping source = arrayRelationSource
|
2022-07-18 12:44:17 +03:00
|
|
|
alias = S.toTableAlias $ _ssPrefix source
|
2022-04-22 16:38:35 +03:00
|
|
|
select =
|
|
|
|
generateSQLSelectFromArrayNode source arraySelectNode $
|
2022-10-11 13:42:15 +03:00
|
|
|
mkJoinCond baseSelectIdentifier colMapping
|
2022-04-22 16:38:35 +03:00
|
|
|
in S.mkLateralFromItem select alias
|
|
|
|
|
|
|
|
arrayConnectionToFromItem ::
|
|
|
|
(ArrayConnectionSource, MultiRowSelectNode) -> S.FromItem
|
|
|
|
arrayConnectionToFromItem (arrayConnectionSource, arraySelectNode) =
|
|
|
|
let selectWith = connectionToSelectWith baseSelectAlias arrayConnectionSource arraySelectNode
|
2022-07-18 12:44:17 +03:00
|
|
|
alias = S.toTableAlias $ _ssPrefix $ _acsSource arrayConnectionSource
|
2022-04-22 16:38:35 +03:00
|
|
|
in S.FISelectWith (S.Lateral True) selectWith alias
|
|
|
|
|
|
|
|
computedFieldToFromItem ::
|
|
|
|
(ComputedFieldTableSetSource, MultiRowSelectNode) -> S.FromItem
|
|
|
|
computedFieldToFromItem (computedFieldTableSource, node) =
|
|
|
|
let ComputedFieldTableSetSource _ source = computedFieldTableSource
|
|
|
|
internalSelect = generateSQLSelect (S.BELit True) source $ _mrsnSelectNode node
|
2022-07-18 12:44:17 +03:00
|
|
|
alias = S.toTableAlias $ _ssPrefix source
|
2022-04-22 16:38:35 +03:00
|
|
|
select =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = _mrsnTopExtractors node,
|
|
|
|
S.selFrom = Just $ S.FromExp [S.mkSelFromItem internalSelect alias]
|
|
|
|
}
|
|
|
|
in S.mkLateralFromItem select alias
|
|
|
|
|
2022-09-22 16:56:50 +03:00
|
|
|
-- | Create a select query
|
2022-04-22 16:38:35 +03:00
|
|
|
generateSQLSelectFromArrayNode ::
|
|
|
|
SelectSource ->
|
|
|
|
MultiRowSelectNode ->
|
|
|
|
S.BoolExp ->
|
|
|
|
S.Select
|
2022-09-22 16:56:50 +03:00
|
|
|
generateSQLSelectFromArrayNode selectSource (MultiRowSelectNode topExtractors selectNode) joinCondition =
|
2022-04-22 16:38:35 +03:00
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = topExtractors,
|
2022-09-22 16:56:50 +03:00
|
|
|
S.selFrom =
|
|
|
|
Just $
|
|
|
|
S.FromExp
|
|
|
|
[ S.mkSelFromItem
|
|
|
|
(generateSQLSelect joinCondition selectSource selectNode)
|
|
|
|
$ S.toTableAlias $ _ssPrefix selectSource
|
|
|
|
]
|
2022-04-22 16:38:35 +03:00
|
|
|
}
|
|
|
|
|
2022-10-11 13:42:15 +03:00
|
|
|
mkJoinCond :: S.TableIdentifier -> HashMap PGCol PGCol -> S.BoolExp
|
2022-04-22 16:38:35 +03:00
|
|
|
mkJoinCond baseTablepfx colMapn =
|
|
|
|
foldl' (S.BEBin S.AndOp) (S.BELit True) $
|
|
|
|
flip map (HM.toList colMapn) $ \(lCol, rCol) ->
|
|
|
|
S.BECompare S.SEQ (S.mkQIdenExp baseTablepfx lCol) (S.mkSIdenExp rCol)
|
|
|
|
|
|
|
|
connectionToSelectWith ::
|
2022-07-18 12:44:17 +03:00
|
|
|
S.TableAlias ->
|
2022-04-22 16:38:35 +03:00
|
|
|
ArrayConnectionSource ->
|
|
|
|
MultiRowSelectNode ->
|
|
|
|
S.SelectWithG S.Select
|
2022-10-05 13:03:36 +03:00
|
|
|
connectionToSelectWith rootSelectAlias arrayConnectionSource arraySelectNode =
|
2022-04-22 16:38:35 +03:00
|
|
|
let extractionSelect =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = topExtractors,
|
|
|
|
S.selFrom = Just $ S.FromExp [S.FIIdentifier finalSelectIdentifier]
|
|
|
|
}
|
|
|
|
in S.SelectWith fromBaseSelections extractionSelect
|
|
|
|
where
|
|
|
|
ArrayConnectionSource _ columnMapping maybeSplit maybeSlice selectSource =
|
|
|
|
arrayConnectionSource
|
|
|
|
MultiRowSelectNode topExtractors selectNode = arraySelectNode
|
2022-10-05 13:03:36 +03:00
|
|
|
|
2022-10-11 13:42:15 +03:00
|
|
|
rootSelectIdentifier = S.tableAliasToIdentifier rootSelectAlias
|
|
|
|
|
2022-10-05 13:03:36 +03:00
|
|
|
baseSelectAlias = S.mkTableAlias "__base_select"
|
|
|
|
baseSelectIdentifier = S.tableAliasToIdentifier baseSelectAlias
|
|
|
|
|
|
|
|
splitSelectAlias = S.mkTableAlias "__split_select"
|
|
|
|
splitSelectIdentifier = S.tableAliasToIdentifier splitSelectAlias
|
|
|
|
|
|
|
|
sliceSelectAlias = S.mkTableAlias "__slice_select"
|
|
|
|
sliceSelectIdentifier = S.tableAliasToIdentifier sliceSelectAlias
|
|
|
|
|
|
|
|
finalSelectAlias = S.mkTableAlias "__final_select"
|
|
|
|
finalSelectIdentifier = S.tableAliasToIdentifier finalSelectAlias
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
rowNumberIdentifier = Identifier "__row_number"
|
|
|
|
rowNumberExp = S.SEUnsafe "(row_number() over (partition by 1))"
|
|
|
|
startRowNumberIdentifier = Identifier "__start_row_number"
|
|
|
|
endRowNumberIdentifier = Identifier "__end_row_number"
|
|
|
|
|
|
|
|
startCursorExp = mkFirstElementExp $ S.SEIdentifier cursorIdentifier
|
|
|
|
endCursorExp = mkLastElementExp $ S.SEIdentifier cursorIdentifier
|
|
|
|
|
|
|
|
startRowNumberExp = mkFirstElementExp $ S.SEIdentifier rowNumberIdentifier
|
|
|
|
endRowNumberExp = mkLastElementExp $ S.SEIdentifier rowNumberIdentifier
|
|
|
|
|
|
|
|
fromBaseSelections =
|
2022-10-11 13:42:15 +03:00
|
|
|
let joinCond = mkJoinCond rootSelectIdentifier columnMapping
|
2022-04-22 16:38:35 +03:00
|
|
|
baseSelectFrom =
|
|
|
|
S.mkSelFromItem
|
|
|
|
(generateSQLSelect joinCond selectSource selectNode)
|
2022-07-18 12:44:17 +03:00
|
|
|
$ S.toTableAlias $ _ssPrefix selectSource
|
2022-04-22 16:38:35 +03:00
|
|
|
select =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr =
|
|
|
|
[ S.selectStar,
|
2022-07-18 12:44:17 +03:00
|
|
|
S.Extractor rowNumberExp $ Just $ S.toColumnAlias rowNumberIdentifier
|
2022-04-22 16:38:35 +03:00
|
|
|
],
|
|
|
|
S.selFrom = Just $ S.FromExp [baseSelectFrom]
|
|
|
|
}
|
2022-10-05 13:03:36 +03:00
|
|
|
in (baseSelectAlias, select) : fromSplitSelection
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
mkStarSelect fromIdentifier =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = [S.selectStar],
|
|
|
|
S.selFrom = Just $ S.FromExp [S.FIIdentifier fromIdentifier]
|
|
|
|
}
|
|
|
|
|
|
|
|
fromSplitSelection = case maybeSplit of
|
|
|
|
Nothing -> fromSliceSelection baseSelectIdentifier
|
|
|
|
Just splitBool ->
|
|
|
|
let select =
|
|
|
|
(mkStarSelect baseSelectIdentifier) {S.selWhere = Just $ S.WhereFrag splitBool}
|
2022-10-05 13:03:36 +03:00
|
|
|
in (splitSelectAlias, select) : fromSliceSelection splitSelectIdentifier
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
fromSliceSelection prevSelect = case maybeSlice of
|
|
|
|
Nothing -> fromFinalSelect prevSelect
|
|
|
|
Just slice ->
|
|
|
|
let select = case slice of
|
|
|
|
SliceFirst limit ->
|
|
|
|
(mkStarSelect prevSelect)
|
|
|
|
{ S.selLimit = (Just . S.LimitExp . S.intToSQLExp) limit
|
|
|
|
}
|
|
|
|
SliceLast limit ->
|
|
|
|
let mkRowNumberOrderBy obType =
|
|
|
|
let orderByItem =
|
|
|
|
S.OrderByItem (S.SEIdentifier rowNumberIdentifier) (Just obType) Nothing
|
|
|
|
in S.OrderByExp $ orderByItem NE.:| []
|
|
|
|
|
|
|
|
sliceLastSelect =
|
|
|
|
(mkStarSelect prevSelect)
|
|
|
|
{ S.selLimit = (Just . S.LimitExp . S.intToSQLExp) limit,
|
|
|
|
S.selOrderBy = Just $ mkRowNumberOrderBy S.OTDesc
|
|
|
|
}
|
|
|
|
sliceLastSelectFrom =
|
2022-10-05 13:03:36 +03:00
|
|
|
S.mkSelFromItem sliceLastSelect $ sliceSelectAlias
|
2022-04-22 16:38:35 +03:00
|
|
|
in S.mkSelect
|
|
|
|
{ S.selExtr = [S.selectStar],
|
|
|
|
S.selFrom = Just $ S.FromExp [sliceLastSelectFrom],
|
|
|
|
S.selOrderBy = Just $ mkRowNumberOrderBy S.OTAsc
|
|
|
|
}
|
2022-10-05 13:03:36 +03:00
|
|
|
in (sliceSelectAlias, select) : fromFinalSelect sliceSelectIdentifier
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
fromFinalSelect prevSelect =
|
|
|
|
let select = mkStarSelect prevSelect
|
2022-10-05 13:03:36 +03:00
|
|
|
in (finalSelectAlias, select) : fromCursorSelection
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
fromCursorSelection =
|
|
|
|
let extrs =
|
2022-07-18 12:44:17 +03:00
|
|
|
[ S.Extractor startCursorExp $ Just $ S.toColumnAlias startCursorIdentifier,
|
|
|
|
S.Extractor endCursorExp $ Just $ S.toColumnAlias endCursorIdentifier,
|
|
|
|
S.Extractor startRowNumberExp $ Just $ S.toColumnAlias startRowNumberIdentifier,
|
|
|
|
S.Extractor endRowNumberExp $ Just $ S.toColumnAlias endRowNumberIdentifier
|
2022-04-22 16:38:35 +03:00
|
|
|
]
|
|
|
|
select =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr = extrs,
|
|
|
|
S.selFrom = Just $ S.FromExp [S.FIIdentifier finalSelectIdentifier]
|
|
|
|
}
|
2022-10-05 13:03:36 +03:00
|
|
|
in (cursorsSelectAlias, select) : fromPageInfoSelection
|
2022-04-22 16:38:35 +03:00
|
|
|
|
|
|
|
fromPageInfoSelection =
|
|
|
|
let hasPrevPage =
|
|
|
|
S.SEBool $
|
|
|
|
S.mkExists (S.FIIdentifier baseSelectIdentifier) $
|
|
|
|
S.BECompare S.SLT (S.SEIdentifier rowNumberIdentifier) $
|
|
|
|
S.SESelect $
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selFrom = Just $ S.FromExp [S.FIIdentifier cursorsSelectAliasIdentifier],
|
|
|
|
S.selExtr = [S.Extractor (S.SEIdentifier startRowNumberIdentifier) Nothing]
|
|
|
|
}
|
|
|
|
hasNextPage =
|
|
|
|
S.SEBool $
|
|
|
|
S.mkExists (S.FIIdentifier baseSelectIdentifier) $
|
|
|
|
S.BECompare S.SGT (S.SEIdentifier rowNumberIdentifier) $
|
|
|
|
S.SESelect $
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selFrom = Just $ S.FromExp [S.FIIdentifier cursorsSelectAliasIdentifier],
|
|
|
|
S.selExtr = [S.Extractor (S.SEIdentifier endRowNumberIdentifier) Nothing]
|
|
|
|
}
|
|
|
|
|
|
|
|
select =
|
|
|
|
S.mkSelect
|
|
|
|
{ S.selExtr =
|
2022-07-18 12:44:17 +03:00
|
|
|
[ S.Extractor hasPrevPage $ Just $ S.toColumnAlias hasPreviousPageIdentifier,
|
|
|
|
S.Extractor hasNextPage $ Just $ S.toColumnAlias hasNextPageIdentifier
|
2022-04-22 16:38:35 +03:00
|
|
|
]
|
|
|
|
}
|
2022-10-05 13:03:36 +03:00
|
|
|
in pure (pageInfoSelectAlias, select)
|