validateSchema
Whether this statement is checked against the schema.
Schema validation reads what it can and says nothing about the rest, so a statement it
cannot parse costs you nothing already. This is for the other case: a statement it can
read and gets wrong, or one whose schema lives somewhere YoSQL was never told about.
Set it to false and this statement is generated without any of the checks
validation
turns on. Nothing else changes about it.
Related Options
Also in this group: annotations , catchAndRethrow , createConnection , description , executeBatch , executeBatchPrefix , executeBatchSuffix , executeOnce , executeOncePrefix , executeOnceSuffix , generateConnectionOverloads , name , parameters , repository , resultRowColumns , resultRowConverter , resultRowType , returningMode , throwOnMultipleResults , type , vendor , writesReturnUpdateCount .
Front Matter
In order to configure this option, place the following code in the front matter of your SQL statement:
-- validateSchema: false
SELECT something
FROM your_database_schema
WHERE some_column = :some_value