Hive
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Apache Hive, HiveQL
Provenance: commit 86c30d109f · authored 2026-03-12T00:45:41+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/hiveRelated languages
LLM-contributed programs
Word Count
Provenance: commit 86c30d109f · authored 2026-03-12T00:45:41+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
CREATE TABLE docs (line STRING);
CREATE TABLE word_counts AS
SELECT word, count(1) AS count
FROM (
SELECT explode(split(line, '\s+')) AS word
FROM docs
) w
GROUP BY word
ORDER BY word;
SELECT * FROM word_counts LIMIT 10;
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.)