Impala

1 program Added 2026-02-27T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Apache Impala, Cloudera Impala
Provenance: commit 10cce262f0 · authored 2026-02-27T20:35:10+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/impala
LLM (this repo) · 1Pldb

Related languages

Groovy (0.16)Hive (0.16)Avro IDL (0.15)Thrift (0.15)Velocity (0.14)

LLM-contributed programs

Sales Analysis with Analytic Functions

Provenance: commit 10cce262f0 · authored 2026-02-27T20:35:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.sql · license: Apache-2.0 · added: 2026-02-27T10:00:00Z
-- Impala SQL: Sales Analysis with Analytic Functions
-- Demonstrates window functions, partitioning, and ranking in Apache Impala

SELECT
  store_id,
  product_category,
  sales_month,
  total_sales,
  SUM(total_sales) OVER (
    PARTITION BY store_id, product_category
    ORDER BY sales_month
    ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
  ) AS running_total,
  RANK() OVER (
    PARTITION BY store_id
    ORDER BY total_sales DESC
  ) AS sales_rank,
  ROUND(
    total_sales / SUM(total_sales) OVER (PARTITION BY store_id) * 100,
    2
  ) AS pct_of_store_total
FROM monthly_sales
WHERE sales_year = 2023
  AND total_sales > 0
ORDER BY store_id, product_category, sales_month;

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Impala (mapped to pl/impala). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Impala/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← imp72 Impera →