diff --git a/README.md b/README.md index e99dbbc..0238fc2 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,8 @@ $impalaTables = $impala ->connect() ->queryAndFetchAll( 'SHOW TABLES' ); print_r( $impalaTables ); + +// Don't forget to clear the client and close socket. +$hive->disconnect(); +$impala->disconnect(); ```