New unimplemented feature: roles

This commit is contained in:
Jesse Haber-Kucharsky
2017-08-28 14:22:25 -04:00
parent 922f095f22
commit b58914feb8
2 changed files with 2 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ std::ostream& operator<<(std::ostream& out, cause c) {
case cause::SCHEMA_CHANGE: return out << "SCHEMA_CHANGE";
case cause::MIXED_CF: return out << "MIXED_CF";
case cause::VIEWS: return out << "MATERIALIZED_VIEWS";
case cause::ROLES: return out << "ROLES";
}
abort();
}

View File

@@ -57,6 +57,7 @@ enum class cause {
SCHEMA_CHANGE,
MIXED_CF,
VIEWS,
ROLES,
};
void fail(cause what) __attribute__((noreturn));