Files
postgresql-for-wordpress/pg4wp/rewriters/ShowTablesSQLRewriter.php

11 lines
228 B
PHP
Raw Permalink Normal View History

<?php
class ShowTablesSQLRewriter extends AbstractSQLRewriter
{
public function rewrite(): string
{
$schema = DB_SCHEMA;
return 'SELECT tablename FROM pg_tables WHERE schemaname = \'$schema\';';
}
}