#[cfg(feature = "postgres")]
pub static COLUMN_PROTECTION_BLOCKED_POSTGRES: [&str; 13] = [
"pg_",
"information_schema.",
"oid",
"tableoid",
"xmin",
"xmax",
"cmin",
"cmax",
"ctid",
"pg_catalog",
"pg_toast",
"pg_temp",
"pg_internal",
];
#[cfg(feature = "sqlite")]
pub static COLUMN_PROTECTION_BLOCKED_SQLITE: [&str; 7] = [
"sqlite_master",
"sqlite_schema",
"sqlite_temp_master",
"sqlite_sequence",
"sqlite_",
"rowid",
"_rowid_",
];