File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 259
259
column_types::AbstractDict=ColumnTypeMap(),
260
260
type_map::AbstractDict=LibPQ.PQTypeMap(),
261
261
conversions::AbstractDict=LibPQ.PQConversions(),
262
+ not_null::Union{Bool, AbstractVector}=false,
262
263
) -> Result
263
264
264
265
Run a query on the PostgreSQL database and return a `Result`.
@@ -273,6 +274,11 @@ strings to PostgreSQL.
273
274
274
275
`column_types` accepts type overrides for columns in the result which take priority over
275
276
those 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
+
276
282
For information on the `column_types`, `type_map`, and `conversions` arguments, see
277
283
[Type Conversions](@ref typeconv).
278
284
You can’t perform that action at this time.
0 commit comments