macro_rules! query_file_scalar_unchecked {
($path:literal) => { ... };
($path:literal, $($args:tt)*) => { ... };
}
Available on crate feature
macros
only.Expand description
A variant of query_file_scalar!
which does not typecheck bind
parameters and leaves the output type to inference.
The query itself is still checked that it is syntactically and
semantically valid for the database, that it only produces one column and that the number of
bind parameters is correct.
For this macro variant the name of the column is irrelevant.