GetPredicateNames returns the list of all the predicates stored in the restored pdir.
(pdir string)
| 227 | |
| 228 | // GetPredicateNames returns the list of all the predicates stored in the restored pdir. |
| 229 | func GetPredicateNames(pdir string) ([]string, error) { |
| 230 | return readSchema(pdir, schemaPredicate) |
| 231 | } |
| 232 | |
| 233 | // GetTypeNames returns the list of all the types stored in the restored pdir. |
| 234 | func GetTypeNames(pdir string) ([]string, error) { |