Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
akrambek committed Dec 16, 2024
1 parent c4ad8f5 commit 57fb1d5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -511,11 +511,10 @@ private void doExecute(
long authorization)
{
String name = command.name();
String schema = command.schema();

String newSql = sql.replace(ZTABLE_NAME, TABLE_NAME)
.replace("\u0000", "");
String sqlQuery = String.format(sqlFormat, systemSchema, schema, name, newSql);
String sqlQuery = String.format(sqlFormat, systemSchema, ZTABLE_NAME, name, newSql);

handler.doExecute(traceId, authorization, sqlQuery);
}
Expand Down

0 comments on commit 57fb1d5

Please sign in to comment.