Skip to content

Commit

Permalink
fix missing module import
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshkky committed Nov 5, 2020
1 parent f58dd53 commit 1bb7871
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions server/src-lib/Hasura/RQL/IR/Returning.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ module Hasura.RQL.IR.Returning where

import Hasura.Prelude

import qualified Data.Aeson as J
import qualified Data.HashMap.Strict.InsOrd as OMap
import qualified Data.Aeson as J
import qualified Data.HashMap.Strict.InsOrd as OMap

import Hasura.EncJSON
import Hasura.RQL.IR.Select
import Hasura.RQL.Types.Common
import Hasura.SQL.Backend

import qualified Hasura.Backends.Postgres.SQL.DML as S


data MutFldG (b :: Backend) v
= MCount
Expand Down
2 changes: 1 addition & 1 deletion server/tests-py/queries/explain/simple_query.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ response:
sql: "SELECT coalesce(json_agg(\"root\" ), '[]' ) AS \"root\" FROM (SELECT row_to_json((SELECT\
\ \"_1_e\" FROM (SELECT \"_0_root.base\".\"id\" AS \"id\", \"_0_root.base\"\
.\"name\" AS \"name\", \"_0_root.base\".\"age\" AS \"age\" ) AS \"_1_e\"\
\ ) ) AS \"root\" FROM (SELECT * FROM \"public\".\"user\" WHERE ('true')\
\ ) ) AS \"root\" FROM (SELECT * FROM \"public\".\"user\" WHERE (true)\
\ ) AS \"_0_root.base\" ) AS \"_2_root\" "
plan:
- Aggregate (cost=40.00..40.01 rows=1 width=32)
Expand Down

0 comments on commit 1bb7871

Please sign in to comment.