Remove quotes from table_name.
Esse commit está contido em:
@@ -67,7 +67,7 @@ extends de.bezier.data.sql.SQL
|
|||||||
if ( tableNames == null )
|
if ( tableNames == null )
|
||||||
{
|
{
|
||||||
tableNames = new ArrayList<String>();
|
tableNames = new ArrayList<String>();
|
||||||
query( "SELECT relname AS 'table_name' FROM pg_stat_user_tables WHERE schemaname='public'" );
|
query( "SELECT relname AS table_name FROM pg_stat_user_tables WHERE schemaname='public'" );
|
||||||
while ( next() ) {
|
while ( next() ) {
|
||||||
tableNames.add( getObject("table_name").toString() );
|
tableNames.add( getObject("table_name").toString() );
|
||||||
}
|
}
|
||||||
|
|||||||
Referência em uma Nova Issue
Bloquear um usuário