niebayes commented on issue #14974:
URL: https://github.com/apache/datafusion/issues/14974#issuecomment-2693911804

   @Dandandan Please see the following example:
   ``` sql
   > select * from information_schema.tables;
   +---------------+--------------------+-------------+------------+
   | table_catalog | table_schema       | table_name  | table_type |
   +---------------+--------------------+-------------+------------+
   | datafusion    | information_schema | tables      | VIEW       |
   | datafusion    | information_schema | views       | VIEW       |
   | datafusion    | information_schema | columns     | VIEW       |
   | datafusion    | information_schema | df_settings | VIEW       |
   | datafusion    | information_schema | schemata    | VIEW       |
   +---------------+--------------------+-------------+------------+
   5 row(s) fetched. 
   Elapsed 0.003 seconds.
   
   > select count(*) from information_schema.tables;
   +----------+
   | count(*) |
   +----------+
   | 5        |
   +----------+
   1 row(s) fetched. 
   Elapsed 0.002 seconds.
   
   > select count(*) from information_schema.tables limit 3;
   +----------+
   | count(*) |
   +----------+
   | 5        |
   +----------+
   1 row(s) fetched. 
   Elapsed 0.002 seconds.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to