lava-oushudb-dt-sql-parser/test/parser/impala/syntax/fixtures/shutdown.sql

15 lines
286 B
MySQL
Raw Normal View History

-- :SHUTDOWN();
:SHUTDOWN();
-- :SHUTDOWN([host_name[:port_number] )
:SHUTDOWN("hostname:1234");
:SHUTDOWN('hostname');
-- :SHUTDOWN(deadline)
:SHUTDOWN(0);
:SHUTDOWN(10);
-- :SHUTDOWN([host_name[:port_number], deadline)
:SHUTDOWN('hostname', 10);
:SHUTDOWN('hostname:11', 10 * 60);