2023-10-28 02:56:41 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class ShowTablesSQLRewriter extends AbstractSQLRewriter
|
|
|
|
|
{
|
|
|
|
|
public function rewrite(): string
|
|
|
|
|
{
|
2024-02-21 01:22:57 -08:00
|
|
|
$schema = "public";
|
|
|
|
|
return 'SELECT tablename FROM pg_tables WHERE schemaname = \'$schema\';';
|
2023-10-28 02:56:41 -07:00
|
|
|
}
|
|
|
|
|
}
|