Skip to content

Commit 7fccea2

Browse files
committed
updated hive_tables_row_counts_any_nulls.py
1 parent 88abb33 commit 7fccea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hive_tables_row_counts_any_nulls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(self):
8080
# discard last param query and construct our own based on the table DDL of cols
8181
def execute(self, conn, database, table, query):
8282
columns = []
83-
log.info('describing table %s.%s', database, table)
83+
log.info("describing table '%s.%s'", database, table)
8484
with conn.cursor() as column_cursor:
8585
# doesn't support parameterized query quoting from dbapi spec
8686
#column_cursor.execute('use %(database)s', {'database': database})

0 commit comments

Comments
 (0)