isPostgresKeywordLexeme function

bool isPostgresKeywordLexeme(
  1. String name
)

Returns true if name is a reserved keyword in postgres.

Implementation

bool isPostgresKeywordLexeme(String name) =>
    postgresKeywords.containsKey(name.toUpperCase());