Emacs SQL Mode Support for Cloudera Impala
  • Emacs Lisp 100%
Find a file
Jason Terk 8968be95e4
Merge pull request #3 from edimatt/bugfix/wrong-args
Fix Wrong number of arguments ((t) (product options) ...
2025-06-15 18:10:23 -07:00
COPYING sql-impala Version 1.0 2016-04-27 16:05:28 -07:00
README.md All-Important MELPA Badge 2016-06-20 10:13:17 -07:00
sql-impala.el Fix default connection parameters. 2022-01-19 12:09:33 +01:00

sql-impala.el

sql-impala adds support for impala-shell to Emacs' SQL Mode

Installation

sql-impala is available from Melpa and Melpa-Stable. Add one of the archives to package-archives:

  • To use Melpa:

      (require 'package)
      (add-to-list 'package-archives
                   '("melpa" . "http://melpa.org/packages/") t)
    
  • To use Melpa-Stable:

      (require 'package)
      (add-to-list 'package-archives
                   '("melpa-stable" . "http://stable.melpa.org/packages/") t)
    

Then update your package listing:

M-x package-refresh-contents RET

And install:

M-x package-install RET sql-impala RET

MELPA

Usage

sql-impala is used like other interactive SQL modes:

M-x sql-impala

This will prompt for the server and database name to which to connect, and invoke impala-shell to connect to Impala.

Configuration

A number of customizations are available for sql-impala:

  • sql-impala-program - controls which command is invoked to start the Impala command interpreter.
  • sql-impala-login-parameters - controls which login parameters are required to start an Impala session.
  • sql-impala-options - additional options passed to sql-impala-program when invoked.

Copying

See COPYING