Skip to content

Commit

Permalink
Fix broken merge between #8075 and #8079
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan committed Dec 7, 2024
1 parent dfd3c0c commit e7aea68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edb/server/compiler/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def compile_sql(
current_database: str,
current_user: str,
allow_user_specified_id: Optional[bool],
apply_access_policies_sql: Optional[bool],
apply_access_policies: Optional[bool],
include_edgeql_io_format_alternative: bool = False,
allow_prepared_statements: bool = True,
disambiguate_column_names: bool,
Expand All @@ -82,7 +82,7 @@ def _try(q: str) -> List[dbstate.SQLQueryUnit]:
current_database=current_database,
current_user=current_user,
allow_user_specified_id=allow_user_specified_id,
apply_access_policies_sql=apply_access_policies_sql,
apply_access_policies=apply_access_policies,
include_edgeql_io_format_alternative=(
include_edgeql_io_format_alternative),
allow_prepared_statements=allow_prepared_statements,
Expand Down

0 comments on commit e7aea68

Please sign in to comment.