Re: Bacula 15.0.2 update

Martin Simmons <[email protected]> Fri, 10 May 2024 12:04:26 +0100
Newsgroups gmane.comp.sysutils.backup.bacula.devel
Message-ID <[email protected]>
>>>>> On Thu, 9 May 2024 14:45:31 -0400, Phil Stracchino said:
> 
> I'm seeing a LOT of columns either defined with a DEFAULT but allowed to 
> be NULL (in which case the DEFAULT will not be used because NULL is 
> allowed),

Are you sure the DEFAULT will not be used?  I think it will be used if the
column is omitted in an INSERT.  If you want to insert NULL and there is a non
NULL DEFAULT then you need to provide NULL for that column explicity in the
INSERT.

__Martin