Hoogle Search

Within LTS Haskell 24.55 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type SelectStmt = Either SelectNoParens SelectWithParens

    postgresql-syntax PostgresqlSyntax.Ast

    References

    SelectStmt:
    |  select_no_parens
    |  select_with_parens
    

  2. UpdatePreparableStmt :: UpdateStmt -> PreparableStmt

    postgresql-syntax PostgresqlSyntax.Ast

    No documentation available.

  3. data UpdateStmt

    postgresql-syntax PostgresqlSyntax.Ast

    References

    UpdateStmt:
    | opt_with_clause UPDATE relation_expr_opt_alias
    SET set_clause_list
    from_clause
    where_or_current_clause
    returning_clause
    

  4. UpdateStmt :: Maybe WithClause -> RelationExprOptAlias -> SetClauseList -> Maybe FromClause -> Maybe WhereOrCurrentClause -> Maybe ReturningClause -> UpdateStmt

    postgresql-syntax PostgresqlSyntax.Ast

    No documentation available.

  5. callStmt :: HeadedParsec Void Text CallStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

  6. deleteStmt :: HeadedParsec Void Text DeleteStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

  7. insertStmt :: HeadedParsec Void Text InsertStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

  8. preparableStmt :: Parser PreparableStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

  9. selectStmt :: HeadedParsec Void Text SelectStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    >>> test = testParser selectStmt
    
    >>> test "select id from as"
    ...
    |
    1 | select id from as
    |                  ^
    Reserved keyword "as" used as an identifier. If that's what you intend, you have to wrap it in double quotes.
    

  10. updateStmt :: HeadedParsec Void Text UpdateStmt

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

Page 160 of many | Previous | Next