8e2528c312791c2c56c8bca365669e06ab698a88,recipes/Python/576557_Dump_PostgreSQL_db/recipe-576557.py,,show_indexes,#,334

Before Change




def show_indexes():
	output_line("\n\n")
	output_line("--- %s ---" % "indexes")
	for tbl in TABLES:
		show_qry_ex(INDEXES_INFO_SQL, tbl)
	//show_qry("indexes columns", INDEXES_COLUMNS_INFO_SQL)

After Change




def show_indexes():
	title = "indexes"
	print_start_info(title)
	for tbl in TABLES:
		show_qry_ex(INDEXES_INFO_SQL, tbl)
	//show_qry("indexes columns", INDEXES_COLUMNS_INFO_SQL)
	print_stop_info(title)

	title = "indexes columns"
	print_start_info(title)
	cur = db_conn().cursor()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: ActiveState/code
Commit Name: 8e2528c312791c2c56c8bca365669e06ab698a88
Time: 2017-11-28
Author: mn@mn.heuthesd
File Name: recipes/Python/576557_Dump_PostgreSQL_db/recipe-576557.py
Class Name:
Method Name: show_indexes


Project Name: ActiveState/code
Commit Name: 8e2528c312791c2c56c8bca365669e06ab698a88
Time: 2017-11-28
Author: mn@mn.heuthesd
File Name: recipes/Python/576557_Dump_PostgreSQL_db/recipe-576557.py
Class Name:
Method Name: show_indexes


Project Name: ActiveState/code
Commit Name: 8e2528c312791c2c56c8bca365669e06ab698a88
Time: 2017-11-28
Author: mn@mn.heuthesd
File Name: recipes/Python/576534_Dump_Oracle_db_schema_to_text/recipe-576534.py
Class Name:
Method Name: add_ver_info


Project Name: ActiveState/code
Commit Name: 8e2528c312791c2c56c8bca365669e06ab698a88
Time: 2017-11-28
Author: mn@mn.heuthesd
File Name: recipes/Python/576534_Dump_Oracle_db_schema_to_text/recipe-576534.py
Class Name:
Method Name: show_packages


Project Name: ActiveState/code
Commit Name: 8e2528c312791c2c56c8bca365669e06ab698a88
Time: 2017-11-28
Author: mn@mn.heuthesd
File Name: recipes/Python/576557_Dump_PostgreSQL_db/recipe-576557.py
Class Name:
Method Name: show_procedures