1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use crate::;
/// Represents a column definition in a table.
///
/// A `ColumnEntry` stores the column's name, data type, and the
/// resolved per-column constraint flags. Constraints that were
/// expressed in `ColumnConstraint` form at parse time (e.g.
/// `NOT NULL`, `PRIMARY KEY`, `DEFAULT <expr>`) are folded into
/// these flags during binding — the executor and storage layers
/// never need to inspect `ColumnConstraint` directly.