From 26d25a4edd900bf5f5b6a216b9b53c17c54d64cc Mon Sep 17 00:00:00 2001 From: Ed J Date: Sun, 26 Aug 2018 22:42:49 +0100 Subject: [PATCH] doc that DEFERRABILITY now handled --- lib/DBD/SQLite.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 73742e3..c8c3ca0 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -1716,10 +1716,12 @@ B: The referential action for the DELETE rule. The codes are the same as for UPDATE_RULE. -Unfortunately, the B field is always C; -as a matter of fact, deferrability clauses are supported by SQLite, -but they can't be reported because the C -tells nothing about them. +B: +The following codes are defined: + + INITIALLY DEFERRED 5 + INITIALLY IMMEDIATE 6 + NOT DEFERRABLE 7 B: Whether the column is primary or unique.