db/fixup_kernel.sh: fix clear_user() handling
[smatch.git] / smatch_data / db / mtag_info.schema
blobc445cb132d9b5113d204e2ef8c3a3bf5c6658e29
1 CREATE TABLE mtag_info (
2         file big int,
3         tag big int,
4         type integer,
5         value varchar(80),
7         CONSTRAINT mtag_info_row UNIQUE (file, tag, type, value)
8 );