I want to understand what properties can be set on a Column in Spanner table. I only see length, not null, allow_commit_timestamp=true (for timestamp).
Do we have any options like: - Unique property - so that record insert gives an error if another record has the same value (not same as not null) - Default value or bounded list - if not provided by application layer or for validation - Comments: like a short description of that column and who created it
My impression is that all these are not available in SPANNER for a column and has to be handled in the business layer. Can someone confirm!