2012-04-10 14:06:34 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
2014-01-02 12:36:50 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
2012-04-10 14:06:34 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-12 15:24:47 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-04-24 15:32:09 -04:00
|
|
|
namespace Query\Driver\SQL;
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2012-04-10 14:06:34 -04:00
|
|
|
/**
|
|
|
|
* PostgreSQL specifc SQL
|
2012-04-20 13:17:39 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
|
|
|
* @subpackage Drivers
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
2014-03-26 21:33:58 -04:00
|
|
|
class PgSQL_SQL extends Abstract_SQL {
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
/**
|
|
|
|
* Get the query plan for the sql query
|
|
|
|
*
|
|
|
|
* @param string $sql
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function explain($sql)
|
|
|
|
{
|
|
|
|
return "EXPLAIN VERBOSE {$sql}";
|
|
|
|
}
|
2012-04-10 14:06:34 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Random ordering keyword
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function random()
|
|
|
|
{
|
|
|
|
return ' RANDOM()';
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list other databases
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function db_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "datname" FROM "pg_database"
|
|
|
|
WHERE "datname" NOT IN ('template0','template1')
|
|
|
|
ORDER BY "datname" ASC
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list tables
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function table_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
2012-04-17 10:49:38 -04:00
|
|
|
SELECT "table_name"
|
2012-04-17 10:56:08 -04:00
|
|
|
FROM "information_schema"."tables"
|
|
|
|
WHERE "table_type" = 'BASE TABLE'
|
|
|
|
AND "table_schema" NOT IN
|
|
|
|
('pg_catalog', 'information_schema');
|
2012-04-10 14:06:34 -04:00
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list system tables
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function system_table_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
2012-04-17 10:56:08 -04:00
|
|
|
SELECT "table_name"
|
|
|
|
FROM "information_schema"."tables"
|
|
|
|
WHERE "table_type" = 'BASE TABLE'
|
|
|
|
AND "table_schema" IN
|
|
|
|
('pg_catalog', 'information_schema');
|
2012-04-10 14:06:34 -04:00
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list views
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function view_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "viewname" FROM "pg_views"
|
|
|
|
WHERE "schemaname" NOT IN
|
|
|
|
('pg_catalog', 'information_schema')
|
|
|
|
AND "viewname" !~ '^pg_'
|
|
|
|
ORDER BY "viewname" ASC
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list triggers
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function trigger_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
2012-04-12 15:24:47 -04:00
|
|
|
SELECT *
|
2012-04-10 14:06:34 -04:00
|
|
|
FROM "information_schema"."triggers"
|
|
|
|
WHERE "trigger_schema" NOT IN
|
|
|
|
('pg_catalog', 'information_schema')
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list functions
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function function_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list stored procedures
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function procedure_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "routine_name"
|
|
|
|
FROM "information_schema"."routines"
|
|
|
|
WHERE "specific_schema" NOT IN
|
|
|
|
('pg_catalog', 'information_schema')
|
|
|
|
AND "type_udt_name" != 'trigger';
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list sequences
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function sequence_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "c"."relname"
|
|
|
|
FROM "pg_class" "c"
|
|
|
|
WHERE "c"."relkind" = 'S'
|
|
|
|
ORDER BY "relname" ASC
|
|
|
|
SQL;
|
|
|
|
}
|
2012-04-12 15:24:47 -04:00
|
|
|
|
2012-04-12 13:44:31 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-12 15:24:47 -04:00
|
|
|
|
2012-04-12 13:44:31 -04:00
|
|
|
/**
|
|
|
|
* Return sql to list columns of the specified table
|
2012-04-12 15:24:47 -04:00
|
|
|
*
|
2012-04-12 13:44:31 -04:00
|
|
|
* @param string $table
|
2012-04-12 15:24:47 -04:00
|
|
|
* @return string
|
2012-04-12 13:44:31 -04:00
|
|
|
*/
|
|
|
|
public function column_list($table)
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT ordinal_position,
|
|
|
|
column_name,
|
|
|
|
data_type,
|
|
|
|
column_default,
|
|
|
|
is_nullable,
|
|
|
|
character_maximum_length,
|
|
|
|
numeric_precision
|
|
|
|
FROM information_schema.columns
|
|
|
|
WHERE table_name = '{$table}'
|
|
|
|
ORDER BY ordinal_position;
|
|
|
|
SQL;
|
|
|
|
}
|
2014-03-26 21:33:58 -04:00
|
|
|
|
2012-05-07 16:05:51 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2014-03-26 21:33:58 -04:00
|
|
|
|
2012-05-07 16:05:51 -04:00
|
|
|
/**
|
|
|
|
* SQL to show list of field types
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function type_list()
|
|
|
|
{
|
2012-05-08 08:31:57 -04:00
|
|
|
return <<<SQL
|
|
|
|
SELECT "typname" FROM "pg_catalog"."pg_type"
|
|
|
|
WHERE "typname" !~ '^pg_|_'
|
2012-05-08 15:37:36 -04:00
|
|
|
AND "typtype" = 'b'
|
2012-05-08 08:31:57 -04:00
|
|
|
ORDER BY "typname"
|
2014-04-07 16:49:49 -04:00
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the list of foreign keys for the current
|
|
|
|
* table
|
|
|
|
*
|
2014-04-15 16:15:08 -04:00
|
|
|
* @param string $table
|
2014-04-07 16:49:49 -04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function fk_list($table)
|
|
|
|
{
|
|
|
|
return <<<SQL
|
2014-04-08 14:43:07 -04:00
|
|
|
SELECT
|
|
|
|
"att2"."attname" AS "child_column",
|
|
|
|
"cl"."relname" AS "parent_table",
|
2014-04-17 16:41:12 -04:00
|
|
|
"att"."attname" AS "parent_column",
|
|
|
|
"con"."update" AS "update",
|
|
|
|
"con"."update" AS "delete"
|
2014-04-08 14:43:07 -04:00
|
|
|
FROM
|
|
|
|
(SELECT
|
|
|
|
unnest(con1.conkey) AS "parent",
|
|
|
|
unnest(con1.confkey) AS "child",
|
|
|
|
"con1"."confrelid",
|
2014-04-17 16:41:12 -04:00
|
|
|
"con1"."conrelid",
|
|
|
|
"con1"."confupdtype" as "update",
|
|
|
|
"con1"."confdeltype" as "delete"
|
2014-04-08 14:43:07 -04:00
|
|
|
FROM "pg_class" "cl"
|
|
|
|
JOIN "pg_namespace" "ns" ON "cl"."relnamespace" = "ns"."oid"
|
|
|
|
JOIN "pg_constraint" "con1" ON "con1"."conrelid" = "cl"."oid"
|
2014-04-15 16:15:08 -04:00
|
|
|
WHERE "cl"."relname" = '{$table}'
|
|
|
|
AND "ns"."nspname" = 'public'
|
2014-04-08 14:43:07 -04:00
|
|
|
AND "con1"."contype" = 'f'
|
|
|
|
)
|
|
|
|
"con"
|
|
|
|
JOIN "pg_attribute" "att" ON
|
|
|
|
"att"."attrelid" = "con"."confrelid"
|
2014-04-17 16:41:12 -04:00
|
|
|
AND "att"."attnum" = "con"."child"
|
2014-04-08 14:43:07 -04:00
|
|
|
JOIN "pg_class" "cl" ON
|
|
|
|
"cl"."oid" = "con"."confrelid"
|
|
|
|
JOIN "pg_attribute" "att2" ON
|
2014-04-17 16:41:12 -04:00
|
|
|
"att2"."attrelid" = "con"."conrelid"
|
|
|
|
AND "att2"."attnum" = "con"."parent"
|
2014-04-08 14:43:07 -04:00
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the list of indexes for the current table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function index_list($table)
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT
|
|
|
|
t.relname AS table_name,
|
|
|
|
i.relname AS index_name,
|
|
|
|
array_to_string(array_agg(a.attname), ', ') AS column_names
|
|
|
|
FROM
|
|
|
|
pg_class t,
|
|
|
|
pg_class i,
|
|
|
|
pg_index ix,
|
|
|
|
pg_attribute a
|
|
|
|
WHERE
|
|
|
|
t.oid = ix.indrelid
|
|
|
|
AND i.oid = ix.indexrelid
|
|
|
|
AND a.attrelid = t.oid
|
|
|
|
AND a.attnum = ANY(ix.indkey)
|
|
|
|
AND t.relkind = 'r'
|
|
|
|
AND t.relname = '{$table}'
|
|
|
|
GROUP BY
|
|
|
|
t.relname,
|
|
|
|
i.relname
|
|
|
|
ORDER BY
|
|
|
|
t.relname,
|
|
|
|
i.relname;
|
2012-05-08 08:31:57 -04:00
|
|
|
SQL;
|
2012-05-07 16:05:51 -04:00
|
|
|
}
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
2014-04-07 16:49:49 -04:00
|
|
|
//End of pgsql_sql.php
|