File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -468,7 +468,6 @@ def _dump(self):
468
468
"Column Name Information Flag: %s"
469
469
% self .table_map [self .table_id ].column_name_flag
470
470
)
471
- print (self .table_map [self .table_id ].data )
472
471
473
472
def _fetch_rows (self ):
474
473
self .__rows = []
@@ -508,7 +507,6 @@ def _fetch_one_row(self):
508
507
def _dump (self ):
509
508
super ()._dump ()
510
509
print ("Values:" )
511
- print (self .table .data )
512
510
for row in self .rows :
513
511
print ("--" )
514
512
for key in row ["values" ]:
@@ -700,7 +698,8 @@ def _dump(self):
700
698
print ("Schema: %s" % (self .schema ))
701
699
print ("Table: %s" % (self .table ))
702
700
print ("Columns: %s" % (self .column_count ))
703
- self .optional_metadata .dump ()
701
+ if self .__optional_meta_data :
702
+ self .optional_metadata .dump ()
704
703
705
704
def _get_optional_meta_data (self ):
706
705
"""
You can’t perform that action at this time.
0 commit comments