!      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ None&',0136;<=>?FKQTVi9tQ beam-postgres.Specifies how we should handle lock conflicts.See  Ohttps://www.postgresql.org/docs/9.5/static/sql-select.html#SQL-FOR-UPDATE-SHAREthe manual section for more informationR beam-postgresNOWAIT2. Report an error rather than waiting for the lockS beam-postgres SKIP LOCKED3. Rather than wait for a lock, skip the row insteadT beam-postgresCSpecifies the level of lock that will be taken against a row. See  Qhttps://www.postgresql.org/docs/current/static/explicit-locking.html#LOCKING-ROWSthe manual section for more information.U beam-postgres UPDATEV beam-postgres  NO KEY UPDATEW beam-postgres SHAREX beam-postgres  KEY SHARE beam-postgres for Postgres beam-postgres for Postgres beam-postgres for Postgres beam-postgres for Postgres beam-postgresoRepresentation of an arbitrary Postgres command. This is the combination of the command syntax (repesented by 3), as well as the type of command (represented by [). The command type is necessary for us to know how to retrieve results from the database. beam-postgres]A piece of Postgres SQL syntax, which may contain embedded escaped byte and text sequences. / composes monoidally, and may be created with , , ,  escapBytea, and . beam-postgrescPostgres TypeInfo for tsvector TODO Is the Oid stable from postgres instance to postgres instance? beam-postgresLIMIT  beam-postgresOFFSET  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~պ}~z{|wxy^_`atuvqrsnopklmhijefgbcdKLMIJFGHABCDE=>?@9:;<6782345./01+,-()*%&'"#$ !YZ[\]TUVWXQRSNOPNone&'016;<=>?FQTV]iF{ beam-postgres0The Postgres backend type, used to parameterize U. See the definitions there for more information. The corresponding query monad is Pg. See documentation for  and the  https://tathougies.github/beam/ user guide- for more information on using this backend. beam-postgresnDeserialize integral fields, possibly downcasting from a larger integral type, but only if we won't lose dataNone&'+,-016;<=>?FKQSTViQ beam-postgres Postgres MONEY" data type. A simple wrapper over , because Postgres money format is locale-dependent, and we don't handle currency symbol placement, digit grouping, or decimal separation.The 4- function can be used to convert a number to . beam-postgresPostgres provides separate json_ and jsonb_j functions. However, we know what we're dealing with based on the type of data, so we can be less obtuse.YFor more information on how these functions behave, see the Postgres manual section on  Bhttps://www.postgresql.org/docs/current/static/functions-json.htmlJSON. beam-postgresThe  json_each or  jsonb_each function. Values returned as json or jsonb respectively. Use > to join against the result beam-postgresLike #, but returning text values instead beam-postgresThe json_object_keys and jsonb_object_keys function. Use > to join against the result. beam-postgresThe json_array_elements and jsonb_array_elements function. Use > to join against the result beam-postgresLike , but returning the values as  beam-postgresThe  json_typeof or  jsonb_typeof function beam-postgresThe json_strip_nulls or jsonb_strip_nulls function. beam-postgresThe json_agg or  jsonb_agg aggregate. beam-postgresThe json_object_agg or jsonb_object_aggS. The first argument gives the key source and the second the corresponding values. beam-postgresOutput row of  and  beam-postgresOutput row of  beam-postgres"Key-value pair, used as output of  and  beam-postgres The Postgres JSONBR type, which stores JSON-encoded data in a postgres-specific binary format. Like I, the type parameter indicates the Hgaskell type which the JSON encodes.;Fields with this type are automatically given the Postgres JSONB type beam-postgres The Postgres JSON type, which stores textual values that represent JSON objects. The type parameter indicates the Haskell type which the JSON encodes. This type must be a member of  and E in order for deserialization and serialization to work as expected.The defaultMigratableDbSettings. function automatically assigns the postgres JSON type to fields with this type. beam-postgresbA class representing Postgres Range types and how to refer to them when speaking to the database.ZFor custom Range types, create an uninhabited type, and make it an instance of this class. beam-postgres$The range type name in the database. beam-postgres0A range of a given Haskell type (represented by a9) stored as a given Postgres Range Type (represented by n).A reasonable example might be Range PgInt8Range Int64&. This represents a range of Haskell Int64 values stored as a range of bigint in Postgres. beam-postgresRepresents a single bound on a Range. A bound always has a type, but may not have a value (the absense of a value represents unbounded). beam-postgresjRepresents the types of bounds a range can have. A range can and often does have mis-matched bound types. beam-postgresIf you are extending beam-postgres and provide another expression context that can be represented in an array, provide an empty instance of this class. beam-postgresAn expression context that determines which types of expressions can be put inside an array element. Any scalar, aggregate, or window expression can be placed within an array. beam-postgres:A query that can be run against a document contained in a .-When this field is embedded in a beam table, defaultMigratableDbSettings$ will give the column the postgres TSVECTOR type beam-postgres7The identifier of a Postgres text search configuration.Use the . instance to construct new values of this type beam-postgresIThe type of a document preprocessed for full-text search. The contained ' is the Postgres representation of the TSVECTOR type. Use , to construct these on-the-fly from strings.-When this field is embedded in a beam table, defaultMigratableDbSettings$ will give the column the postgres TSVECTOR type. beam-postgres Postgres NOW()) function. Returns the server's timestamp beam-postgres Postgres ILIKE) operator. A case-insensitive version of . beam-postgresCA full-text search configuration with sensible defaults for english beam-postgres The Postgres  to_tsvector9 function. Given a configuration and string, return the TSVECTOR, that represents the contents of the string. beam-postgresDetermine if the given TSQUERY* matches the document represented by the TSVECTOR@. Behaves exactly like the similarly-named operator in postgres. beam-postgres The Postgres  to_tsquery9 function. Given a configuration and string, return the TSQUERY, that represents the contents of the string. beam-postgres3Index into the given array. This translates to the  array[ index]f syntax in postgres. The beam operator name has been chosen to match the 'Data.Vector.(!)' operator. beam-postgres Postgres  array_dims()L function. Returns a textual representation of the dimensions of the array. beam-postgres|Return the upper or lower bound of the given array at the given dimension (statically supplied as a type application on a ). Note that beam will attempt to statically determine if the dimension is in range. GHC errors will be thrown if this cannot be proved.EFor example, to get the upper bound of the 2nd-dimension of an array: &arrayUpper_ @2 vectorValuedExpression  beam-postgres|Return the upper or lower bound of the given array at the given dimension (statically supplied as a type application on a ). Note that beam will attempt to statically determine if the dimension is in range. GHC errors will be thrown if this cannot be proved.EFor example, to get the upper bound of the 2nd-dimension of an array: &arrayUpper_ @2 vectorValuedExpression  beam-postgresThese functions can be used to find the lower and upper bounds of an array where the dimension number is not known until run-time. They are marked unsafe because they may cause query processing to fail at runtime, even if they typecheck successfully. beam-postgresThese functions can be used to find the lower and upper bounds of an array where the dimension number is not known until run-time. They are marked unsafe because they may cause query processing to fail at runtime, even if they typecheck successfully. beam-postgres_Get the size of the array at the given (statically known) dimension, provided as a type-level  . Like the  and J functions,throws a compile-time error if the dimension is out of bounds. beam-postgresGet the size of an array at a dimension not known until run-time. Marked unsafe as this may cause runtime errors even if it type checks. beam-postgres The Postgres @>U operator. Returns true if every member of the second array is present in the first. beam-postgres The Postgres <@U operator. Returns true if every member of the first array is present in the second. beam-postgres Postgres ||= operator. Concatenates two vectors and returns their result. beam-postgres7Build a 1-dimensional postgres array from an arbitrary  containing expressions. beam-postgres4Build a 1-dimensional postgres array from a subquery beam-postgresThe postgres range operator - . beam-postgres Postgres @> and <@ operators for JSON. Return true if the json object pointed to by the arrow is completely contained in the other. See the Postgres documentation for more in formation on what this means. beam-postgres Postgres @> and <@ operators for JSON. Return true if the json object pointed to by the arrow is completely contained in the other. See the Postgres documentation for more in formation on what this means. beam-postgres:Access a JSON array by index. Corresponds to the Postgres ->I operator. See '(->$)' for the corresponding operator for object access. beam-postgres8Acces a JSON object by key. Corresponds to the Postgres ->B operator. See '(->#)' for the corresponding operator for arrays. beam-postgresfAccess a JSON array by index, returning the embedded object as a string. Corresponds to the Postgres ->>C operator. See '(->>$)' for the corresponding operator on objects.  beam-postgreseAccess a JSON object by key, returning the embedded object as a string. Corresponds to the Postgres ->>B operator. See '(->>#)' for the corresponding operator on arrays.! beam-postgressAccess a deeply nested JSON object. The first argument is the JSON object to look within, the second is the path of keys from the first argument to the target. Returns the result as a new json value. Note that the postgres function allows etiher string keys or integer indices, but this function only allows string keys. PRs to improve this functionality are welcome." beam-postgres/Like '(#>)' but returns the result as a string.# beam-postgres Postgres ?R operator. Checks if the given string exists as top-level key of the json object.$ beam-postgres Postgres ?| and ?&n operators. Check if any or all of the given strings exist as top-level keys of the json object respectively.% beam-postgres Postgres ?| and ?&n operators. Check if any or all of the given strings exist as top-level keys of the json object respectively.& beam-postgres Postgres -` operator on json objects. Returns the supplied json object with the supplied key deleted. See '+ for the corresponding operator on arrays.' beam-postgres Postgres - operator on json arrays. See &, for the corresponding operator on objects.( beam-postgres Postgres #-Y operator. Removes all the keys specificied from the JSON object and returns the result.) beam-postgres Postgres json_array_length` function. The supplied json object should be an array, but this isn't checked at compile-time.* beam-postgres The postgres  jsonb_set function.  pgJsonUpdate expects the value specified by the path in the second argument to exist. If it does not, the first argument is not modified. +J will create any intermediate objects necessary. This corresponds to the create_missing argument of  jsonb_set) being set to false or true respectively.+ beam-postgres The postgres  jsonb_set function.  pgJsonUpdate expects the value specified by the path in the second argument to exist. If it does not, the first argument is not modified. +J will create any intermediate objects necessary. This corresponds to the create_missing argument of  jsonb_set) being set to false or true respectively., beam-postgres Postgres  jsonb_pretty function- beam-postgres>An aggregate that adds each value to the resulting array. See  pgArrayOverC if you want to specify a quantifier. Corresponds to the Postgres  ARRAY_AGG function.. beam-postgres Postgres  ARRAY_AGGf with an explicit quantifier. Includes each row that meets the quantification criteria in the result./ beam-postgres Postgres bool_or5 aggregate. Returns true if any of the rows are true.0 beam-postgres Postgres bool_and3 aggregate. Returns false unless every row is true.1 beam-postgresiJoins the string value in each row of the first argument, using the second argument as a delimiter. See 21 if you want to provide explicit quantification.2 beam-postgres The Postgres  string_aggx function, with an explicit quantifier. Joins the values of the second argument using the delimiter given by the third.3 beam-postgres}Modify a query to only return rows where the supplied key function returns a unique value. This corresponds to the Postgres  DISTINCT ON support.4 beam-postgres,Attempt to pack a floating point value as a { value, paying no attention to the locale-dependent currency symbol, digit grouping, or decimal point. This will use the .! symbol as the decimal separator.5 beam-postgres Multiply a MONEY8 value by a numeric value. Corresponds to the Postgres * operator.6 beam-postgres Divide a MONEY3 value by a numeric value. Corresponds to Postgres / where the numerator has type MONEYC and the denominator is a number. If you would like to divide two MONEY. values and have their units cancel out, use 7.7 beam-postgres Dividing two MONEY4 value results in a number. Corresponds to Postgres / on two MONEY% values. If you would like to divide MONEY by a scalar, use 68 beam-postgres Postgres + and - operators on money.9 beam-postgres Postgres + and - operators on money.: beam-postgres The Postgres MONEYm type can be summed or averaged in an aggregation. These functions provide the quantified aggregations. See < and = for the unquantified versions.; beam-postgres The Postgres MONEYm type can be summed or averaged in an aggregation. These functions provide the quantified aggregations. See < and = for the unquantified versions.< beam-postgres The Postgres MONEY_ type can be summed or averaged in an aggregation. To provide an explicit quantification, see : and ;.= beam-postgres The Postgres MONEY_ type can be summed or averaged in an aggregation. To provide an explicit quantification, see : and ;. beam-postgresLower bound type beam-postgresUpper bound type beam-postgres. Lower bound value beam-postgres. Lower bound value      !"#$%&'()*+,-./0123456789:;<=>?@None&'016;<=>?FKNQTV]isA beam-postgresThe most general kind of DELETE that postgres can performC beam-postgresThe most general kind of UPDATE that postgres can performF beam-postgresCA description of what to do when a constraint or index is violated.H beam-postgresNSpecifies the kind of constraint that must be violated for the action to occurJ beam-postgresWhat to do when an INSERT( statement inserts a row into the table tbl that violates a constraint.L beam-postgresThe most general kind of INSERT that postgres can performO beam-postgresbCombines the result of a query along with a set of locked tables. Used as a return value for the T function.P beam-postgresTAn explicit lock against some tables. You can create a value of this type using the S` function. You can combine these values monoidally to combine multiple locks for use with the R function.Q beam-postgres Use with T* to lock all tables mentioned in the queryR beam-postgresPReturn and lock the given tables. Typically used as an infix operator. See the  Chttp://tathougies.github.io/beam/user-guide/backends/beam-postgres/the user guide for usage examplesS beam-postgres:Join with a table while locking it explicitly. Provides a P value that can be used with R% to explicitly lock a table during a SELECT statementT beam-postgresxLock some tables during the execution of a query. This is rather complicated, and there are several usage examples in Chttp://tathougies.github.io/beam/user-guide/backends/beam-postgres/the user guideThe Postgres locking clause is rather complex, and beam currently does not check several pre-conditions. It is assumed you kinda know what you're doing.4Things which postgres doesn't like, but beam will do9Using aggregates within a query that has a locking clauseUsing UNION,  INTERSECT, or EXCEPTSee  Nhttps://www.postgresql.org/docs/10/static/sql-select.html#SQL-FOR-UPDATE-SHAREhere for more details.*This function accepts a locking strength (UPDATE, SHARE,  KEY SHARE%, etc), an optional locking option (NOWAIT or  SKIP LOCKEDR), and a query whose rows to lock. The query should return its result wrapped in O , via the R or Q function.[If you want to use the most common behavior (lock all rows in every table mentioned), the U# function may be what you're after.U beam-postgresLike TQ, but does not require an explicit set of locked tables. This produces an empty  FOR .. OF clause.V beam-postgresA  beam-postgres-specific version of  >, which provides fuller support for the much richer Postgres INSERT% syntax. This allows you to specify  ON CONFLICT/ actions. For even more complete support, see W.W beam-postgresThe full Postgres INSERT. syntax, supporting conflict actions and the RETURNING CLAUSE. See J2 for how to specify a conflict action or provide X' to preserve the behavior without any  ON CONFLICTp clause. The last argument takes a newly inserted row and returns the expression to be returned as part of the  RETURNINGD clause. For a backend-agnostic version of this functionality see MonadBeamInsertReturning. Use runInsertReturning to get the results.X beam-postgresiBy default, Postgres will throw an error when a conflict is detected. This preserves that functionality.Y beam-postgres Tells postgres what to do on an INSERT conflict. The first argument is the type of conflict to provide an action for. For example, to only provide an action for certain fields, use [^. Or to only provide an action over certain fields where a particular condition is met, use [>. If you have a particular constraint violation in mind, use ]-. To perform an action on any conflict, use Z. See the  >https://www.postgresql.org/docs/current/static/sql-insert.htmlPostgres documentation.Z beam-postgresfPerform the conflict action when any constraint or index conflict occurs. Syntactically, this is the  ON CONFLICT clause, without any conflict target.[ beam-postgresPerform the conflict action only when these fields conflict. The first argument gets the current row as a table of expressions. Return the conflict key. For more information, see the  beam-postgres manual.\ beam-postgresLike [g, but only perform the action if the condition given in the second argument is met. See the postgres  >https://www.postgresql.org/docs/current/static/sql-insert.htmlmanual for more information.] beam-postgresAPerform the action only if the given named constraint is violated^ beam-postgres The Postgres  DO NOTHING action_ beam-postgres The Postgres  DO UPDATE SET action, without the WHERED clause. The argument takes an updatable row (like the one used in  ) and the conflicting row. Use L on the first argument to get the current value of the row in the database.` beam-postgres The Postgres  DO UPDATE SET action, with the WHERE clause. This is like _, but only rows satisfying the given condition are updated. Sometimes this results in more efficient locking. See the Postgres  >https://www.postgresql.org/docs/current/static/sql-insert.htmlmanual for more information.a beam-postgresSometimes you want to update certain columns in the row. Given a projection from a row to the fields you want, Beam can auto-generate an assignment that assigns the corresponding fields of the conflicting row.b beam-postgresSometimes you want to update every value in the row. Beam can auto-generate an assignment that assigns the conflicting row to every field in the database row. This may not always be what you want.c beam-postgres Postgres UPDATE ... RETURNINGp statement support. The last argument takes the newly inserted row and returns the values to be returned. Use runUpdateReturning to get the results.d beam-postgres Postgres DELETE ... RETURNINGp statement support. The last argument takes the newly inserted row and returns the values to be returned. Use runDeleteReturning to get the results.,QRSTUVWXABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcd,OPTUVWXQRSUTSQRVWLMNJKHIFGXYZ[\]^_`abCDEcABd None&'016;<=>?FKQTVi  beam-postgrescPostgres-specific database predicate asserting the existence of an extension in the database. The  properly provides CREATE EXTENSION and DROP EXTENSION$ statements to the migration finder.h beam-postgres2Type class implemented by any Postgresql extensioni beam-postgresPReturn the name of this extension. This should be the string that is passed to CREATE EXTENSION. For example, PgCrypto returns  "pgcrypto".j beam-postgrescReturn a value of this extension type. This should fill in all fields in the record. For example, PgCryptoH builds a record where each function wraps the underlying Postgres one.k beam-postgres&Represents an extension in a database.For example, to include the Database.Beam.Postgres.PgCrypto extension in a database, import Database.Beam.Migrate.PgCrypto data MyDatabase entity = MyDatabase { _table1 :: entity (TableEntity Table1) , _cryptoExtension :: entity (PgExtensionEntity PgCrypto) } migratableDbSettings :: CheckedDatabaseSettings Postgres MyDatabase migratableDbSettings = defaultMigratableDbSettings dbSettings :: DatabaseSettings Postgres MyDatabase dbSettings = unCheckDatabase migratableDbSettings -Note that our database now only works in the  backend.uExtensions are implemented as records of functions and values that expose extension functionality. For example, the pgcrypto extension (implemented by PgCrypto*) provides cryptographic functions. Thus, PgCrypto is a record of functions over 3 which wrap the underlying postgres functionality.VYou get access to these functions by retrieving them from the entity in the database.For example, to use the pgcrypto! extension in the database above: let PgCrypto { pgCryptoDigestText = digestText , pgCryptoCrypt = crypt } = getPgExtension (_cryptoExtension dbSettings) in fmap_ (tbl -> (tbl, crypt (_field1 tbl) (_salt tbl))) (all_ (table1 dbSettings)) JTo implement your own extension, create a record type, and implement the h type class.l beam-postgresLGet the extension record from a database entity. See the documentation for k.m beam-postgres representing the Postgres CREATE EXTENSIONU command. Because the extension name is statically known by the extension type and h@ type class, this simply produces the checked extension entity.EIf you need to use the extension in subsequent migration steps, use l and " to get access to the underlying .n beam-postgres representing the Postgres DROP EXTENSION. After this executes, you should expect any further uses of the extension to fail. Unfortunately, without linear types, we cannot check this. beam-postgres4There are no fields to rename when defining entitieshjiklmnNone&'016;<=>?FQTVio beam-postgres4Data type representing definitions contained in the pgcrypto extension*Each field maps closely to the underlying pgcrypto: function, which are described in further detail in the  <https://www.postgresql.org/docs/current/static/pgcrypto.htmlpgcrypto manual.opqrstuvwxyz{|}~opqrstuvwxyz{|}~ None&'+0136;<=>?FKQTV]i beam-postgresC in which we can run Postgres commands. See the documentation for  on examples of how to use. beam-postgres; also provides functions that let you run queries without F. These functions may be more efficient and offer a conduit API. See Database.Beam.Postgres.Conduit for more information. beam-postgres+An error that may occur while parsing a row beam-postgresWe attempted to read more columns than postgres returned. First argument is the zero-based index of the column we attempted to read, and the second is the total number of columns beam-postgresThere was an error while parsing the field. The first argument gives the zero-based index of the column that could not have been parsed. This is usually caused by your Haskell schema type being incompatible with the one in the database. beam-postgres&Errors that may arise while using the  monad. beam-postgres for the standard  postgresql:h URI scheme. See the postgres documentation for more details on the formatting. See documentation for 2 for more information on how to use this with beamNone&'-016;<=>?FQTVi beam-postgres'Top-level migration backend for use by  beam-migrate tools beam-postgresBeamDeserializers for postgres-specific types:  beam-postgresConverts postgres DatabasePredicates to DatabasePredicateds in the Haskell syntax. Allows automatic generation of Haskell schemas from postgres constraints. beam-postgresTurn a A into the corresponding |. This is a best effort guess, and may fail on more exotic types. Feel free to send PRs to make this function more robust! beam-postgresTurn a series of  into a line-by-line array of #s suitable for writing to a script. beam-postgres!Write the migration given by the  to a file. beam-postgres for tsquery. See  for more information beam-postgres for tsvector. See  for more information beam-postgres for Postgres TEXT. characterLargeObject" is also mapped to this data type beam-postgres for Postgres BYTEA. binaryLargeObject" is also mapped to this data type beam-postgres) for a Postgres array without any bounds.Note that array support in  beam-migrate is still incomplete. beam-postgres for JSON. See  for more information beam-postgres for JSONB. See  for more information beam-postgres for UUID columns. The pgCryptoGenRandomUUID function in the PgCrypto3 extension can be used to generate UUIDs at random. beam-postgres for MONEY columns. beam-postgres Postgres SERIAL5 data types. Automatically generates an appropriate DEFAULT clause and sequence beam-postgres Postgres SERIAL5 data types. Automatically generates an appropriate DEFAULT clause and sequence beam-postgres Postgres SERIAL5 data types. Automatically generates an appropriate DEFAULT clause and sequenceNone&'016;<=>?FQTV]i  beam-postgresRun a PostgreSQL SELECT statement in any . beam-postgresRun a PostgreSQL INSERT statement in any '. Returns the number of rows affected. beam-postgresRun a PostgreSQL INSERT ... RETURNING ... statement in any  and get a  of the newly inserted rows. beam-postgresRun a PostgreSQL UPDATE statement in any '. Returns the number of rows affected. beam-postgresRun a PostgreSQL UPDATE ... RETURNING ... statement in any  and get a  of the newly updated rows. beam-postgresRun a PostgreSQL DELETE statement in any '. Returns the number of rows affected. beam-postgresRun a PostgreSQl DELETE ... RETURNING ... statement in any  and get a  of the deleted rows. beam-postgres9Run any DML statement. Return the number of rows affected beam-postgres+Runs any query that returns a set of values  None&'016;<=>?FQTVi       !"#$%&'()*+,-./0123456789:;<=>?@hijklmn !"#$%&'()*+,456789:;<=>?@-.     /0123khijmnl                    ! " # # $ % & ' ( ) )**+,,-../001223445667899:;<<=>>?@AABCDDEFGHHIJJKKLMNOPQRSTUVWXXYZ[\\]^__`aabccdeefgghiijkklmmnoopqqrsstuuvwwxyyz{{|}}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !!""##$$%&'()*+, -./0123456789:;<= > ? @ A B C DEEFGHIJKLMNOPQRSTUVWXY Z [ \ ] ^ _ ` a b cdefghijklmnopqrstuvwxyz{|}~          Z          ,beam-postgres-0.3.2.2-B48435qmrQU5uzI7MM8u6ZDatabase.Beam.PostgresDatabase.Beam.Postgres.SyntaxDatabase.Beam.Postgres.FullDatabase.Beam.Postgres.PgCryptoDatabase.Beam.Postgres.MigrateDatabase.Beam.Postgres.ConduitDatabase.Beam.Postgres.Types!Database.Beam.Postgres.PgSpecificDatabase.Beam.Queryinsert!Database.Beam.Postgres.Extensions!Database.Beam.Postgres.Connection0postgresql-simple-0.5.4.0-HBvDPhy1bMwCR3LtbBHFuZ$Database.PostgreSQL.Simple.FromField errMessageerrHaskellType errSQLFielderrSQLTableOid errSQLTypeConversionFailedUnexpectedNull Incompatible ResultError#Database.PostgreSQL.Simple.InternalcloseconnectPostgreSQLconnectdefaultConnectInfo Connection sqlErrorHintsqlErrorDetail sqlErrorMsg sqlExecStatussqlStateSqlErrorconnectDatabaseconnectPassword connectUser connectPort connectHost ConnectInfoPgWindowFrameBoundSyntaxfromPgWindowFrameBoundPgWindowFrameBoundsSyntaxfromPgWindowFrameBoundsPgWindowFrameSyntaxfromPgWindowFramePgAlterColumnActionSyntaxfromPgAlterColumnActionPgAlterTableActionSyntaxfromPgAlterTableActionPgAlterTableSyntaxfromPgAlterTablePgReferentialActionSyntaxfromPgReferentialActionpgReferentialActionSerializedPgMatchTypeSyntaxfromPgMatchTypepgMatchTypeSerializedPgTableConstraintSyntaxfromPgTableConstraintPgColumnConstraintSyntaxfromPgColumnConstraintpgColumnConstraintSerialized"PgColumnConstraintDefinitionSyntax fromPgColumnConstraintDefinition&pgColumnConstraintDefinitionSerializedPgDataTypeSyntaxpgDataTypeDescrfromPgDataTypepgDataTypeSerializedPgColumnSchemaSyntaxfromPgColumnSchemaPgTableOptionsSyntaxPgCreateTableSyntaxfromPgCreateTablePgDataTypeDescrPgDataTypeDescrOidPgDataTypeDescrDomainPgSelectLockingOptionsPgSelectLockingOptionsNoWait PgSelectLockingOptionsSkipLockedPgSelectLockingStrengthPgSelectLockingStrengthUpdate"PgSelectLockingStrengthNoKeyUpdatePgSelectLockingStrengthSharePgSelectLockingStrengthKeySharePgSelectLockingClauseSyntaxpgSelectLockingClauseStrengthpgSelectLockingTablespgSelectLockingClauseOptionsPgOrderingSyntaxpgOrderingSyntaxpgOrderingNullOrderingPgConflictActionSyntaxfromPgConflictActionPgInsertOnConflictTargetSyntaxfromPgInsertOnConflictTargetPgInsertOnConflictSyntaxfromPgInsertOnConflictPgInsertValuesSyntaxfromPgInsertValuesPgFieldNameSyntaxfromPgFieldNamePgTableSourceSyntaxfromPgTableSource PgValueSyntax fromPgValuePgGroupingSyntaxfromPgGroupingPgProjectionSyntaxfromPgProjectionPgExtractFieldSyntaxfromPgExtractFieldPgComparisonQuantifierSyntaxfromPgComparisonQuantifier PgFromSyntax fromPgFromPgSelectSetQuantifierSyntaxfromPgSelectSetQuantifier PgAggregationSetQuantifierSyntaxfromPgAggregationSetQuantifierPgExpressionSyntaxfromPgExpressionPgUpdateSyntax fromPgUpdatePgDeleteSyntax fromPgDeletePgInsertSyntax fromPgInsertPgSelectSyntax fromPgSelectPgCommandSyntax pgCommandType fromPgCommand PgCommandTypePgCommandTypeQueryPgCommandTypeDdlPgCommandTypeDataUpdate PgCommandTypeDataUpdateReturningPgSyntax buildPgSyntax PgSyntaxM PgSyntaxFEmitByteString EmitBuilder EscapeString EscapeByteaEscapeIdentifierPostgresInaccessibleemit emitBuilder escapeString escapeByteaescapeIdentifiernextSyntaxStepfromPgSelectLockingClausepgDataTypeJSON pgByteaTypepgSmallSerialType pgSerialTypepgBigSerialTypepgUnboundedArrayTypepgTsQueryTypeInfo pgTsQueryTypepgTsVectorTypeInfopgTsVectorType pgTextType pgJsonType pgJsonbType pgUuidType pgMoneyTypepgSelectSetQuantifierDistinctOninsertDefaultspgSimpleMatchSyntaxpgQuotedIdentifierpgParenspgCompOppgBinOp pgPostFixpgUnOppgSepBypgDebugRenderSyntax pgBuildAction pgSelectStmtpgCreateExtensionSyntaxpgDropExtensionSyntax pgTestSyntaxpgRenderSyntaxScript $fEqPgSyntaxF$fEq1PgSyntaxF$fShowPgSyntax $fEqPgSyntax$fMonoidPgSyntax$fSemigroupPgSyntax$fSql92DisplaySyntaxPgSyntax$fHashablePgSyntax$fHasQBuilderPgSelectSyntax$fIsSql92SyntaxPgCommandSyntax7$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxTagged-$fHasSqlEqualityCheckPgExpressionSyntaxTagged3$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxCI)$fHasSqlEqualityCheckPgExpressionSyntaxCI4$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxCI0*$fHasSqlEqualityCheckPgExpressionSyntaxCI07$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxVector-$fHasSqlEqualityCheckPgExpressionSyntaxVector;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxByteString1$fHasSqlEqualityCheckPgExpressionSyntaxByteString<$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxByteString02$fHasSqlEqualityCheckPgExpressionSyntaxByteString0;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxScientific1$fHasSqlEqualityCheckPgExpressionSyntaxScientific:$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUnbounded0$fHasSqlEqualityCheckPgExpressionSyntaxUnbounded;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUnbounded01$fHasSqlEqualityCheckPgExpressionSyntaxUnbounded0;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUnbounded11$fHasSqlEqualityCheckPgExpressionSyntaxUnbounded1;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUnbounded21$fHasSqlEqualityCheckPgExpressionSyntaxUnbounded2;$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxHStoreList1$fHasSqlEqualityCheckPgExpressionSyntaxHStoreList:$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxHStoreMap0$fHasSqlEqualityCheckPgExpressionSyntaxHStoreMap3$fHasSqlQuantifiedEqualityCheckPgExpressionSyntax[])$fHasSqlEqualityCheckPgExpressionSyntax[]5$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUUID+$fHasSqlEqualityCheckPgExpressionSyntaxUUID4$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxDay*$fHasSqlEqualityCheckPgExpressionSyntaxDay@$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxNominalDiffTime6$fHasSqlEqualityCheckPgExpressionSyntaxNominalDiffTime:$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxTimeOfDay0$fHasSqlEqualityCheckPgExpressionSyntaxTimeOfDay:$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxZonedTime0$fHasSqlEqualityCheckPgExpressionSyntaxZonedTime:$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxLocalTime0$fHasSqlEqualityCheckPgExpressionSyntaxLocalTime4$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxOid*$fHasSqlEqualityCheckPgExpressionSyntaxOid6$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxValue,$fHasSqlEqualityCheckPgExpressionSyntaxValue8$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxUTCTime.$fHasSqlEqualityCheckPgExpressionSyntaxUTCTime5$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxText+$fHasSqlEqualityCheckPgExpressionSyntaxText6$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxText0,$fHasSqlEqualityCheckPgExpressionSyntaxText07$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxWord64-$fHasSqlEqualityCheckPgExpressionSyntaxWord647$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxWord32-$fHasSqlEqualityCheckPgExpressionSyntaxWord327$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxWord16-$fHasSqlEqualityCheckPgExpressionSyntaxWord166$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxWord8,$fHasSqlEqualityCheckPgExpressionSyntaxWord85$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxWord+$fHasSqlEqualityCheckPgExpressionSyntaxWord8$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInteger.$fHasSqlEqualityCheckPgExpressionSyntaxInteger6$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInt64,$fHasSqlEqualityCheckPgExpressionSyntaxInt646$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInt32,$fHasSqlEqualityCheckPgExpressionSyntaxInt326$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInt16,$fHasSqlEqualityCheckPgExpressionSyntaxInt165$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInt8+$fHasSqlEqualityCheckPgExpressionSyntaxInt84$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxInt*$fHasSqlEqualityCheckPgExpressionSyntaxInt6$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxFloat,$fHasSqlEqualityCheckPgExpressionSyntaxFloat7$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxDouble-$fHasSqlEqualityCheckPgExpressionSyntaxDouble5$fHasSqlQuantifiedEqualityCheckPgExpressionSyntaxBool+$fHasSqlEqualityCheckPgExpressionSyntaxBool6$fIsSql99AggregationExpressionSyntaxPgExpressionSyntax5$fIsSql2003NthValueExpressionSyntaxPgExpressionSyntaxC$fIsSql2003FirstValueAndLastValueExpressionSyntaxPgExpressionSyntax7$fIsSql2003LeadAndLagExpressionSyntaxPgExpressionSyntax2$fIsSql2003NtileExpressionSyntaxPgExpressionSyntaxP$fIsSql2003EnhancedNumericFunctionsAggregationExpressionSyntaxPgExpressionSyntaxE$fIsSql2003ExpressionElementaryOLAPOperationsSyntaxPgExpressionSyntaxC$fIsSql2003ExpressionAdvancedOLAPOperationsSyntaxPgExpressionSyntaxE$fIsSql2003EnhancedNumericFunctionsExpressionSyntaxPgExpressionSyntax1$fIsSql99ConcatExpressionSyntaxPgExpressionSyntax+$fIsSql99ExpressionSyntaxPgExpressionSyntax?$fIsSqlExpressionSyntaxStringTypeTYPETYPEPgExpressionSyntaxText=$fIsSqlExpressionSyntaxStringTypeTYPETYPEPgExpressionSyntax[]$fIsStringCustomSqlSyntax%$fIsCustomSqlSyntaxPgExpressionSyntax#$fIsSql92DeleteSyntaxPgDeleteSyntaxG$fIsSql92AggregationSetQuantifierSyntaxPgAggregationSetQuantifierSyntax6$fIsSql92AggregationExpressionSyntaxPgExpressionSyntaxB$fIsSql92AggregationSetQuantifierSyntaxPgSelectSetQuantifierSyntax($fIsSql92FromOuterJoinSyntaxPgFromSyntax5$fIsSql92QuantifierSyntaxPgComparisonQuantifierSyntax+$fIsSql92ProjectionSyntaxPgProjectionSyntax'$fIsSql92GroupingSyntaxPgGroupingSyntax-$fIsSql92SelectTableSyntaxPgSelectTableSyntax*$fHasSqlValueSyntaxPgValueSyntaxByteString+$fHasSqlValueSyntaxPgValueSyntaxByteString0%$fHasSqlValueSyntaxPgValueSyntaxMaybe'$fHasSqlValueSyntaxPgValueSyntaxSqlNull"$fHasSqlValueSyntaxPgValueSyntaxCI#$fHasSqlValueSyntaxPgValueSyntaxCI0*$fHasSqlValueSyntaxPgValueSyntaxScientific)$fHasSqlValueSyntaxPgValueSyntaxUnbounded*$fHasSqlValueSyntaxPgValueSyntaxUnbounded0*$fHasSqlValueSyntaxPgValueSyntaxUnbounded1*$fHasSqlValueSyntaxPgValueSyntaxUnbounded2-$fHasSqlValueSyntaxPgValueSyntaxHStoreBuilder*$fHasSqlValueSyntaxPgValueSyntaxHStoreList)$fHasSqlValueSyntaxPgValueSyntaxHStoreMap"$fHasSqlValueSyntaxPgValueSyntax[]$$fHasSqlValueSyntaxPgValueSyntaxUUID#$fHasSqlValueSyntaxPgValueSyntaxDay/$fHasSqlValueSyntaxPgValueSyntaxNominalDiffTime)$fHasSqlValueSyntaxPgValueSyntaxTimeOfDay)$fHasSqlValueSyntaxPgValueSyntaxZonedTime)$fHasSqlValueSyntaxPgValueSyntaxLocalTime#$fHasSqlValueSyntaxPgValueSyntaxOid%$fHasSqlValueSyntaxPgValueSyntaxValue'$fHasSqlValueSyntaxPgValueSyntaxUTCTime$$fHasSqlValueSyntaxPgValueSyntaxText%$fHasSqlValueSyntaxPgValueSyntaxText0&$fHasSqlValueSyntaxPgValueSyntaxWord64&$fHasSqlValueSyntaxPgValueSyntaxWord32&$fHasSqlValueSyntaxPgValueSyntaxWord16%$fHasSqlValueSyntaxPgValueSyntaxWord8$$fHasSqlValueSyntaxPgValueSyntaxWord'$fHasSqlValueSyntaxPgValueSyntaxInteger%$fHasSqlValueSyntaxPgValueSyntaxInt64%$fHasSqlValueSyntaxPgValueSyntaxInt32%$fHasSqlValueSyntaxPgValueSyntaxInt16$$fHasSqlValueSyntaxPgValueSyntaxInt8#$fHasSqlValueSyntaxPgValueSyntaxInt%$fHasSqlValueSyntaxPgValueSyntaxFloat&$fHasSqlValueSyntaxPgValueSyntaxDouble$$fHasSqlValueSyntaxPgValueSyntaxBool-$fIsSql92TableSourceSyntaxPgTableSourceSyntax$fIsSql92FromSyntaxPgFromSyntax)$fIsSql92FieldNameSyntaxPgFieldNameSyntax#$fIsSql92UpdateSyntaxPgUpdateSyntax/$fIsSql92InsertValuesSyntaxPgInsertValuesSyntax#$fIsSql92InsertSyntaxPgInsertSyntaxA$fIsSql2003OrderingElementaryOLAPOperationsSyntaxPgOrderingSyntax'$fIsSql92OrderingSyntaxPgOrderingSyntax#$fIsSql92SelectSyntaxPgSelectSyntax$fHashablePgDataTypeDescr:$fHasDefaultSqlDataTypeConstraintsPgColumnSchemaSyntaxUUID?$fHasDefaultSqlDataTypeConstraintsPgColumnSchemaSyntaxSqlSerial?$fHasDefaultSqlDataTypeConstraintsPgColumnSchemaSyntaxLocalTime@$fHasDefaultSqlDataTypeConstraintsPgColumnSchemaSyntaxByteString$fHashablePgColumnSchemaSyntax($fSql92DisplaySyntaxPgColumnSchemaSyntax+$fHasDefaultSqlDataTypePgDataTypeSyntaxUUID0$fHasDefaultSqlDataTypePgDataTypeSyntaxSqlSerial0$fHasDefaultSqlDataTypePgDataTypeSyntaxLocalTime1$fHasDefaultSqlDataTypePgDataTypeSyntaxByteString+$fIsSql92ExpressionSyntaxPgExpressionSyntax1$fSql92SerializableDataTypeSyntaxPgDataTypeSyntax/$fIsSql2008BigIntDataTypeSyntaxPgDataTypeSyntax'$fIsSql99DataTypeSyntaxPgDataTypeSyntax'$fIsSql92DataTypeSyntaxPgDataTypeSyntax$fEqPgDataTypeSyntax$fHashablePgDataTypeSyntax$$fSql92DisplaySyntaxPgDataTypeSyntaxO$fSql92SerializableConstraintDefinitionSyntaxPgColumnConstraintDefinitionSyntax,$fHashablePgColumnConstraintDefinitionSyntax/$fIsSql92ColumnSchemaSyntaxPgColumnSchemaSyntax&$fEqPgColumnConstraintDefinitionSyntax6$fSql92DisplaySyntaxPgColumnConstraintDefinitionSyntaxK$fIsSql92ColumnConstraintDefinitionSyntaxPgColumnConstraintDefinitionSyntax5$fIsSql92TableConstraintSyntaxPgTableConstraintSyntax-$fIsSql92CreateTableSyntaxPgCreateTableSyntax)$fIsSql92MatchTypeSyntaxPgMatchTypeSyntax7$fIsSql92ColumnConstraintSyntaxPgColumnConstraintSyntax9$fIsSql92ReferentialActionSyntaxPgReferentialActionSyntax)$fIsSql92DropTableSyntaxPgDropTableSyntax($fIsSql92DdlCommandSyntaxPgCommandSyntax+$fIsSql92AlterTableSyntaxPgAlterTableSyntax9$fIsSql92AlterColumnActionSyntaxPgAlterColumnActionSyntax7$fIsSql92AlterTableActionSyntaxPgAlterTableActionSyntax-$fIsSql2003ExpressionSyntaxPgExpressionSyntax/$fIsSql2003WindowFrameSyntaxPgWindowFrameSyntax9$fIsSql2003WindowFrameBoundSyntaxPgWindowFrameBoundSyntax;$fIsSql2003WindowFrameBoundsSyntaxPgWindowFrameBoundsSyntax$fIsStringPgSyntaxPrim$fMonoidCustomSqlSyntax$fSemigroupCustomSqlSyntax$fShowPgCommandType$fEqPgExpressionSyntax$fShowPgNullOrdering$fEqPgNullOrdering$fGenericPgNullOrdering$fShowPgSelectLockingStrength$fEqPgSelectLockingStrength $fGenericPgSelectLockingStrength$fShowPgSelectLockingOptions$fEqPgSelectLockingOptions$fGenericPgSelectLockingOptions$fShowPgDataTypeDescr$fEqPgDataTypeDescr$fGenericPgDataTypeDescr$fShowPgColumnSchemaSyntax$fEqPgColumnSchemaSyntax$fShowPgDataTypeSyntax($fShowPgColumnConstraintDefinitionSyntax$fShowPgEscapeType$fEqPgEscapeType$fOrdPgEscapeType$fEnumPgEscapeType$fBoundedPgEscapeType$fShowPgSyntaxPrim$fFunctorPgSyntaxFPostgresPgSetOfPgMoney fromPgMoneyIsPgJSON pgJsonEachpgJsonEachText pgJsonKeyspgJsonArrayElementspgJsonArrayElementsText pgJsonTypeOfpgJsonStripNulls pgJsonAggpgJsonObjectAgg PgJSONElement pgJsonElement PgJSONKey pgJsonKey PgJSONEach pgJsonEachKeypgJsonEachValuePgJSONBPgJSON PgDateRange PgTsTzRange PgTsRange PgNumRange PgInt8Range PgInt4Range PgIsRange rangeNamePgRange PgEmptyRange PgRangeBound PgBoundType Inclusive ExclusivePgIsArrayContextPgArrayValueContextTsQueryTsVectorConfigTsVectornow_ilike_english toTsVector@@ toTsQuery!. arrayDims_ arrayUpper_ arrayLower_arrayUpperUnsafe_arrayLowerUnsafe_ arrayLength_arrayLengthUnsafe_ isSupersetOf_ isSubsetOf_++.array_arrayOf_ inclusive exclusive unbounded-@>--@>-<@-<@--&&--<<-->>--&<--&>---|---+--*--.-rLower_rUpper_isEmpty_ lowerInc_ upperInc_ lowerInf_ upperInf_ rangeMerge_range_@><@->#->$->>#->>$#>#>>??|?& withoutKey withoutIdx withoutKeyspgJsonArrayLength pgJsonbUpdate pgJsonbSet pgJsonbPretty pgArrayAggpgArrayAggOverpgBoolOr pgBoolAnd pgStringAggpgStringAggOverpgNubBy_pgMoney pgScaleMoney_pgDivideMoney_pgDivideMoneys_ pgAddMoney_pgSubtractMoney_pgSumMoneyOver_pgAvgMoneyOver_ pgSumMoney_ pgAvgMoney_pgUnnest pgUnnestArraypgUnnestArrayWithOrdinalityPgDeleteReturningPgUpdateReturningPgUpdateReturningEmptyPgConflictActionPgInsertOnConflictTargetPgInsertOnConflictPgInsertReturningPgInsertReturningEmpty PgWithLockingPgLockedTableslockAll_ withLocks_locked_ lockingFor_lockingAllTablesFor_insertReturningonConflictDefault onConflict anyConflictconflictingFieldsconflictingFieldsWhereconflictingConstraintonConflictDoNothingonConflictUpdateSetonConflictUpdateSetWhereonConflictUpdateInsteadonConflictSetAllupdateReturningdeleteReturning.$fProjectibleWithPredicatecsyntaxPgWithLocking$fSemigroupPgLockedTables$fMonoidPgLockedTables IsPgExtensionpgExtensionNamepgExtensionBuildPgExtensionEntitygetPgExtensionpgCreateExtensionpgDropExtensionPgCryptopgCryptoDigestTextpgCryptoDigestBytespgCryptoHmacTextpgCryptoHmacBytes pgCryptoCryptpgCryptoGenSaltpgCryptoPgpSymEncryptpgCryptoPgpSymEncryptByteapgCryptoPgpSymDecryptpgCryptoPgpSymDecryptByteapgCryptoPgpPubEncryptpgCryptoPgpPubEncryptByteapgCryptoPgpPubDecryptpgCryptoPgpPubDecryptByteapgCryptoPgpKeyId pgCryptoArmorpgCryptoDearmorpgCryptoGenRandomBytespgCryptoGenRandomUUID$fIsPgExtensionPgCryptoPgPgRowReadErrorPgRowReadNoMoreColumnsPgRowCouldNotParseFieldPgErrorPgRowParseErrorPgInternalErrorpostgresUriSyntaxrunBeamPostgresDebugrunBeamPostgresmigrationBackendpostgresDataTypeDeserializerspgPredConverter pgTypeToHs migrateScriptwriteMigrationScriptgetDbConstraintstsquerytsvectortextbyteaunboundedArrayjsonjsonbuuidmoney smallserialserial bigserial4$fIsBeamSerialColumnSchemaSyntaxPgColumnSchemaSyntax8$fFieldReturnTypeFalseFalsePgColumnSchemaSyntaxresTy(->) runSelect runInsertrunInsertReturning runUpdaterunUpdateReturning runDeleterunDeleteReturningexecuteStatementrunQueryReturning(beam-core-0.7.2.2-4W13nyCiMFZIdzGUCHMAzMDatabase.Beam.Backend.SQL.SQL92IsSql92UpdateSyntaxIsSql92DeleteSyntaxIsSql92InsertSyntaxIsSql92SelectSyntaxDatabase.Beam.Backend.SQL MonadBeamfromPgIntegralbytestring-0.10.8.2Data.ByteString.Internal ByteString text-1.2.3.0Data.Text.InternalText$aeson-1.4.0.0-7FkrknqMzN6EEUGxujx6f6Data.Aeson.Types.FromJSONFromJSONData.Aeson.Types.ToJSONToJSONbase Data.StringIsStringDatabase.Beam.Query.Operatorlike_ghc-prim GHC.TypesNat Data.FoldableFoldableupdateDatabase.Beam.Query.Combinatorscurrent_PgHasExtensionpgExtensionActionProviderDatabase.Beam.Query.InternalQGenExpr+beam-migrate-0.3.2.1-5uUjtiBqfLqFuBaaiGZEEbDatabase.Beam.Migrate.Types Migration+Database.Beam.Migrate.Types.CheckedEntitiesunCheckDatabase.Beam.Schema.TablesDatabaseEntity$fRenamableWithRuleFieldRenamerDatabaseEntityDescriptorPgDatabaseExtensionCheckedDatabaseEntityDescriptorCheckedPgExtensionpgCreateExtensionProviderpgDropExtensionProviderDatabase.Beam.Backend.URIBeamURIOpenersrunPgPgFPgLiftIOPgLiftWithHandle PgFetchNextPgRunReturningpgRenderSyntax getFieldsrunPgRowReader withPgDebugDatabase.Beam.Haskell.Syntax HsDataTypeMigrationStepsData.ByteString.Lazy.InternalDatabase.Beam.Migrate.SQL.TypesDataTypeControl.Monad.IO.ClassMonadIO&conduit-1.3.0.3-2fIXeKLIWlZLpEv53wg8p1Data.Conduit.Internal.ConduitSource