Skip to content

Commit 58ebbc1

Browse files
committed
AliasReplacer: Also handle Table additions like prefix#table_name FOR SYSTEM_TIME ALL
1 parent 821cb2e commit 58ebbc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/AliasReplacer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ public function replace(string $name): string {
2222
$string = $this->aliasRegistry->get($alias);
2323
return $string.$part;
2424
};
25-
return (string) preg_replace_callback('/^(\\w+)#(\\w+)$/', $fn, $name);
25+
return (string) preg_replace_callback('{^(\\w+)#(\\w+.*)$}', $fn, $name);
2626
}
2727
}

0 commit comments

Comments
 (0)