File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 259259 column_types::AbstractDict=ColumnTypeMap(),
260260 type_map::AbstractDict=LibPQ.PQTypeMap(),
261261 conversions::AbstractDict=LibPQ.PQConversions(),
262+ not_null::Union{Bool, AbstractVector}=false,
262263 ) -> Result
263264
264265Run a query on the PostgreSQL database and return a `Result`.
@@ -273,6 +274,11 @@ strings to PostgreSQL.
273274
274275`column_types` accepts type overrides for columns in the result which take priority over
275276those in `type_map`.
277+
278+ `not_null` indicates whether parsed columns should be able to contain null values, parsed as
279+ `missing`. The argument can be a single `Bool` for all columns, a list of `Bool`, or a list
280+ of column names.
281+
276282For information on the `column_types`, `type_map`, and `conversions` arguments, see
277283[Type Conversions](@ref typeconv).
278284
You can’t perform that action at this time.
0 commit comments