prakol16

Results 5 issues of prakol16

## Description When types cannot be inferred for placeholder values (`$n`), postgres defaults to "text" which is not necessarily what is desired. Instead, when building queries with placeholder values, since...

## Description When an array appears in an expression but its type cannot be inferred, postgres will throw an error. SeaQuery should make sure to annotate all arrays with their...

## Motivation If the wrong `PostgresValues` parameters are passed to a postgres call (or even if they are the right ones but there is a sea query bug e.g. see...

## Description The default string escaper [uses](https://github.com/SeaQL/sea-query/blob/36c03c36a360cb1c4a68cf8059b630ddcda62c33/src/backend/mod.rs#L43) `\z` to escape `0x1a` ("substitute character"). However, this is not a valid escape sequence in postgresql. The list of valid escape sequences can...

## Motivation I want to be able to construct a postgres array using the `Array` constructor: ``` SELECT ARRAY[3, 4, 5 + 6]; ``` Notice that the elements are *expressions*...

C-enhancement