Skip to content

Commit

Permalink
Fixed typo, thanks mavroudis
Browse files Browse the repository at this point in the history
  • Loading branch information
jv2222 committed May 11, 2012
1 parent 2bfb94b commit 9f755d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgresql/ez_sql_postgresql.php
Expand Up @@ -144,7 +144,7 @@ function showTables()

function descTable($tbl_name)
{
return return "ordinal_position, column_name, data_type, column_default, is_nullable, character_maximum_length, numeric_precision FROM information_schema.columns WHERE table_name = '$tbl_name' AND table_schema='$this->dbname' ORDER BY ordinal_position";
return "ordinal_position, column_name, data_type, column_default, is_nullable, character_maximum_length, numeric_precision FROM information_schema.columns WHERE table_name = '$tbl_name' AND table_schema='$this->dbname' ORDER BY ordinal_position";
}

function showDatabases()
Expand Down

0 comments on commit 9f755d0

Please sign in to comment.