Skip to content

Commit

Permalink
add missing identifier function #900
Browse files Browse the repository at this point in the history
  • Loading branch information
MelinaGoula committed Mar 26, 2024
1 parent 2c706f5 commit b209977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gis/gccview/gcc_puller_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def create_audited_table(output_table, return_json, schema_name, primary_key, co
create_sql = sql.SQL("CREATE TABLE IF NOT EXISTS {schema_table} ({columns}, CONSTRAINT {pk_name} PRIMARY KEY ({pk}))").format(
schema_table = sql.Identifier(schema_name, temp_table_name),
columns = col_list_string,
pk_name = pk_name,
pk_name = sql.Identifier(pk_name),
pk = sql.Identifier(primary_key)
)
LOGGER.info(create_sql.as_string(con))
Expand Down

0 comments on commit b209977

Please sign in to comment.