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/hiveqlExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.q | linguist | primary | 806.0K files |
.hql | linguist | secondary | 45.8K files |
Related languages
LLM-contributed programs
Web Log Analysis
Provenance: commit 02011ca109 · authored 2026-02-11T14:14:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- 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.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.q/1 | .q | predicates | [{"kind": "any", "regexes": ["(?i:SELECT\\s+[\\w*,]+\\s+FROM|(CREATE|ALTER|DROP)\\s(DATABASE|SCHEMA|TABLE))"]}] |