HiveQL

1 program Added 2026-02-11T13:13:12Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Hive, HQL
Provenance: commit 02011ca109 · authored 2026-02-11T14:14:36+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/hiveql
LLM (this repo) · 1PldbLinguistHyperpolyglot

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.qlinguistprimary806.0K files
.hqllinguistsecondary45.8K files

Related languages

Hive (0.50)HAML (0.18)CodeQL (0.17)EdgeQL (0.17)HQL (0.16)

LLM-contributed programs

Web Log Analysis

Provenance: commit 02011ca109 · authored 2026-02-11T14:14:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.hql · license: Apache-2.0 · added: 2026-02-11T13:13:12Z
-- Create external table for log analysis
CREATE EXTERNAL TABLE web_logs (
    ip_address STRING,
    request_time STRING,
    method STRING,
    url STRING,
    protocol STRING,
    status INT,
    bytes_sent BIGINT,
    referer STRING,
    user_agent STRING
)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '\t'
STORED AS TEXTFILE
LOCATION '/user/hive/warehouse/web_logs';

-- Analyze traffic patterns by hour
SELECT
    hour(from_unixtime(unix_timestamp(request_time, 'dd/MMM/yyyy:HH:mm:ss'))) AS request_hour,
    COUNT(*) AS request_count,
    SUM(bytes_sent) AS total_bytes,
    AVG(bytes_sent) AS avg_bytes,
    COUNT(DISTINCT ip_address) AS unique_visitors
FROM web_logs
WHERE status = 200
GROUP BY hour(from_unixtime(unix_timestamp(request_time, 'dd/MMM/yyyy:HH:mm:ss')))
ORDER BY request_hour;

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.)

Disambiguation rules

Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
RuleExtKindPredicates (truncated)
h/linguist/.q/1.qpredicates[{"kind": "any", "regexes": ["(?i:SELECT\\s+[\\w*,]+\\s+FROM|(CREATE|ALTER|DROP)\\s(DATABASE|SCHEMA|TABLE))"]}]

Contribute — propose a file extension

Tell us where to find evidence about HiveQL (mapped to pl/hiveql). 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/HiveQL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← hivemind Hixgred →