From 3cbe90efbebd38c570a137d2801753e3aa55823b Mon Sep 17 00:00:00 2001 From: Diana Clarke Date: Mon, 2 Apr 2012 21:07:37 -0400 Subject: deprecate inspector.get_primary_keys() in favor of inspector.get_pk_constraint() - see #2422 --- lib/sqlalchemy/engine/base.py | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'lib/sqlalchemy/engine/base.py') diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 1f28501f7..10ce6d819 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -259,22 +259,13 @@ class Dialect(object): raise NotImplementedError() - def get_primary_keys(self, connection, table_name, schema=None, **kw): - """Return information about primary keys in `table_name`. - - Given a :class:`.Connection`, a string - `table_name`, and an optional string `schema`, return primary - key information as a list of column names. - - """ - raise NotImplementedError() - - def get_pk_constraint(self, table_name, schema=None, **kw): + def get_pk_constraint(self, connection, table_name, schema=None, **kw): """Return information about the primary key constraint on table_name`. - Given a string `table_name`, and an optional string `schema`, return - primary key information as a dictionary with these keys: + Given a :class:`.Connection`, a string + `table_name`, and an optional string `schema`, return primary + key information as a dictionary with these keys: constrained_columns a list of column names that make up the primary key -- cgit v1.2.1