Repository Analysis

apache/arrow-rs

Official Rust implementation of Apache Arrow

8.0 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of apache/arrow-rs, a Rust project with 3,525 GitHub stars. SynthScan v2.0 examined 475,755 lines of code across 796 source files, recording 2994 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 8.0 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

8.0
Adjusted Score
8.0
Raw Score
100%
Time Factor
2026-07-14
Last Push
3.5K
Stars
Rust
Language
475.8K
Lines of Code
796
Files
3.0K
Pattern Hits
2026-07-14
Scan Date
0.01
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 4MEDIUM 271LOW 2719

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 2994 distinct pattern matches across 14 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Over-Commented Block2634 hits · 2466 pts
SeverityFileLineSnippetContext
LOW.asf.yaml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWCargo.toml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWrustfmt.toml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOW.pre-commit-config.yaml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWpre-commit.sh1#!/bin/bashCOMMENT
LOWrust-toolchain.toml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/Cargo.toml1# Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/benches/variant_kernels.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/benches/variant_kernels.rs221COMMENT
LOWparquet-variant-compute/src/shred_variant.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/shred_variant.rs41/// {COMMENT
LOWparquet-variant-compute/src/shred_variant.rs521COMMENT
LOWparquet-variant-compute/src/shred_variant.rs541/// use arrow::datatypes::{DataType, Field, TimeUnit};COMMENT
LOWparquet-variant-compute/src/shred_variant.rs561/// )?COMMENT
LOWparquet-variant-compute/src/variant_to_arrow.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/lib.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/lib.rs21//! - [`VariantArray`] : Represents an array of `Variant` values.COMMENT
LOWparquet-variant-compute/src/variant_get.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/variant_get.rs101/// a missing-path step (`Missing` or `NotShredded` depending on whether `value` exists).COMMENT
LOWparquet-variant-compute/src/variant_get.rs321 // If our caller did not request any specific type, we can just return whatever we landed on.COMMENT
LOWparquet-variant-compute/src/variant_get.rs1221COMMENT
LOWparquet-variant-compute/src/variant_get.rs1841COMMENT
LOWparquet-variant-compute/src/unshred_variant.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/unshred_variant.rs41use std::marker::PhantomData;COMMENT
LOWparquet-variant-compute/src/variant_array.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/variant_array.rs121COMMENT
LOWparquet-variant-compute/src/variant_array.rs141/// [Parquet Variant]: https://arrow.apache.org/docs/format/CanonicalExtensions.html#parquet-variantCOMMENT
LOWparquet-variant-compute/src/variant_array.rs161/// # fn get_schema() -> Schema {COMMENT
LOWparquet-variant-compute/src/variant_array.rs181/// # use arrow_schema::{Schema, Field, DataType};COMMENT
LOWparquet-variant-compute/src/variant_array.rs201/// # use arrow_schema::{Schema, Field, DataType};COMMENT
LOWparquet-variant-compute/src/variant_array.rs221/// # Example: Converting a [`VariantArray`] to a [`StructArray`]COMMENT
LOWparquet-variant-compute/src/variant_array.rs241/// # fn get_struct_array() -> StructArray {COMMENT
LOWparquet-variant-compute/src/variant_array.rs261 shredding_state: ShreddingState,COMMENT
LOWparquet-variant-compute/src/variant_array.rs281 /// 2. An optional field named `value` that is binary, large_binary, orCOMMENT
LOWparquet-variant-compute/src/variant_array.rs361 /// Use `try_value` if you need to handle conversion errors gracefully.COMMENT
LOWparquet-variant-compute/src/variant_array.rs381 ///COMMENT
LOWparquet-variant-compute/src/variant_array.rs521impl<'m, 'v> FromIterator<Variant<'m, 'v>> for VariantArray {COMMENT
LOWparquet-variant-compute/src/variant_array.rs541/// builder.append_null();COMMENT
LOWparquet-variant-compute/src/variant_array.rs601COMMENT
LOWparquet-variant-compute/src/variant_array.rs621/// value: BINARY,COMMENT
LOWparquet-variant-compute/src/variant_array.rs641///COMMENT
LOWparquet-variant-compute/src/variant_array.rs661 /// # Errors:COMMENT
LOWparquet-variant-compute/src/variant_array.rs781/// Shredding Spec]. Shredding means that the actual value is stored in a typedCOMMENT
LOWparquet-variant-compute/src/variant_array.rs801/// | exists | -- | **Unshredded**: If present, the value may be any type, including [`Variant::Null`]COMMENT
LOWparquet-variant-compute/src/variant_array.rs821 /// `ShreddingState::try_from(&struct_array)`, for example:COMMENT
LOWparquet-variant-compute/src/to_json.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/arrow_to_variant.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/arrow_to_variant.rs281 run_ends.data_type()COMMENT
LOWparquet-variant-compute/src/arrow_to_variant.rs301// us to "use" captured tokens without emitting them:COMMENT
LOWparquet-variant-compute/src/cast_to_variant.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/cast_to_variant.rs21use arrow::compute::CastOptions;COMMENT
LOWparquet-variant-compute/src/cast_to_variant.rs41/// let result = cast_to_variant(&input).unwrap();COMMENT
LOWparquet-variant-compute/src/from_json.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs1// Licensed to the Apache Software Foundation (ASF) under oneCOMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs41/// and nested objects or lists the same way as when building a singleCOMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs61/// // append a null row (note not a Variant::Null)COMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs81/// // row 2 is not null and is an objectCOMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs261///COMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs321COMMENT
LOWparquet-variant-compute/src/variant_array_builder.rs341 self.builder_ext(&value.metadata().clone())COMMENT
2574 more matches not shown…
Decorative Section Separators251 hits · 1097 pts
SeverityFileLineSnippetContext
MEDIUMarrow-data/src/data.rs189/// │ ] │ └───────┘COMMENT
MEDIUMarrow-data/src/data.rs193/// └───────────────────┘ actual data valuesCOMMENT
MEDIUMarrow-data/src/data.rs197/// ┌───────────────────┐COMMENT
MEDIUMarrow-data/src/data.rs202/// └───────────────────┘COMMENT
MEDIUMarrow-data/src/data.rs178/// ┌───────────────────┐ start of ┌───────┐ DifferentCOMMENT
MEDIUMarrow-select/src/union_extract.rs33/// ┌─────────────────┐ ┌─────────────────┐COMMENT
MEDIUMarrow-select/src/union_extract.rs35/// ├─────────────────┤ ├─────────────────┤COMMENT
MEDIUMarrow-select/src/union_extract.rs37/// ├─────────────────┤ union_extract(values, 'A') ├─────────────────┤COMMENT
MEDIUMarrow-select/src/union_extract.rs38/// │ B='t' │ ────────────────────────────▶ │ NULL │COMMENT
MEDIUMarrow-select/src/union_extract.rs39/// ├─────────────────┤ ├─────────────────┤COMMENT
MEDIUMarrow-select/src/union_extract.rs41/// ├─────────────────┤ ├─────────────────┤COMMENT
MEDIUMarrow-select/src/union_extract.rs43/// └─────────────────┘ └─────────────────┘COMMENT
MEDIUMarrow-select/src/coalesce.rs120/// ┌────────────────────┐COMMENT
MEDIUMarrow-select/src/coalesce.rs123/// └────────────────────┘ ┌────────────────────┐COMMENT
MEDIUMarrow-select/src/coalesce.rs125/// ┌────────────────────┐ Coalesce │ │COMMENT
MEDIUMarrow-select/src/coalesce.rs131/// └────────────────────┘ │ │COMMENT
MEDIUMarrow-select/src/coalesce.rs133/// ┌────────────────────┐ │ │COMMENT
MEDIUMarrow-select/src/coalesce.rs136/// │ num_rows = 100 │ └────────────────────┘COMMENT
MEDIUMarrow-select/src/coalesce.rs138/// └────────────────────┘COMMENT
MEDIUMarrow-select/src/merge.rs93/// ┌───────────┐ ┌─────────┐ ┌─────────┐COMMENT
MEDIUMarrow-select/src/merge.rs94/// │┌─────────┐│ │ None │ │ NULL │COMMENT
MEDIUMarrow-select/src/merge.rs95/// ││ A ││ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs96/// │└─────────┘│ │ 1 │ │ B │COMMENT
MEDIUMarrow-select/src/merge.rs97/// │┌─────────┐│ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs99/// │└─────────┘│ ├─────────┤ ─────────────────────────▶ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs100/// │┌─────────┐│ │ None │ │ NULL │COMMENT
MEDIUMarrow-select/src/merge.rs101/// ││ C ││ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs102/// │├─────────┤│ │ 2 │ │ C │COMMENT
MEDIUMarrow-select/src/merge.rs103/// ││ D ││ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs104/// │└─────────┘│ │ 2 │ │ D │COMMENT
MEDIUMarrow-select/src/merge.rs105/// └───────────┘ └─────────┘ └─────────┘COMMENT
MEDIUMarrow-select/src/merge.rs198/// ┌─────────┐ maskCOMMENT
MEDIUMarrow-select/src/merge.rs199/// │ A │ ┌─────────┐ ┌─────────┐COMMENT
MEDIUMarrow-select/src/merge.rs200/// ├─────────┤ │ true │ │ A │COMMENT
MEDIUMarrow-select/src/merge.rs201/// │ C │ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs202/// ├─────────┤ │ true │ │ C │COMMENT
MEDIUMarrow-select/src/merge.rs203/// │ NULL │ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs204/// ├─────────┤ │ false │ merge(mask, truthy, falsy) │ B │COMMENT
MEDIUMarrow-select/src/merge.rs205/// │ D │ ├─────────┤ ─────────────────────────▶ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs206/// └─────────┘ │ true │ │ NULL │COMMENT
MEDIUMarrow-select/src/merge.rs207/// falsy ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs208/// ┌─────────┐ │ false │ │ E │COMMENT
MEDIUMarrow-select/src/merge.rs209/// │ B │ ├─────────┤ ├─────────┤COMMENT
MEDIUMarrow-select/src/merge.rs210/// ├─────────┤ │ true │ │ D │COMMENT
MEDIUMarrow-select/src/merge.rs211/// │ E │ └─────────┘ └─────────┘COMMENT
MEDIUMarrow-select/src/merge.rs212/// └─────────┘COMMENT
MEDIUMarrow-select/src/interleave.rs54/// ┌─────────────────┐ ┌─────────┐ ┌─────────────────┐COMMENT
MEDIUMarrow-select/src/interleave.rs56/// ├─────────────────┤ ├─────────┤ [values0, values1], ├─────────────────┤COMMENT
MEDIUMarrow-select/src/interleave.rs58/// └─────────────────┘ ├─────────┤ ) ├─────────────────┤COMMENT
MEDIUMarrow-select/src/interleave.rs59/// values array 0 │ (1, 1) │ ─────────────────────────▶ │ C │COMMENT
MEDIUMarrow-select/src/interleave.rs60/// ├─────────┤ ├─────────────────┤COMMENT
MEDIUMarrow-select/src/interleave.rs62/// └─────────┘ └─────────────────┘COMMENT
MEDIUMarrow-select/src/interleave.rs63/// ┌─────────────────┐ indicesCOMMENT
MEDIUMarrow-select/src/interleave.rs65/// ├─────────────────┤ resultCOMMENT
MEDIUMarrow-select/src/interleave.rs67/// ├─────────────────┤COMMENT
MEDIUMarrow-select/src/interleave.rs69/// └─────────────────┘COMMENT
MEDIUMarrow-select/src/take.rs40/// ┌─────────────────┐ ┌─────────┐ ┌─────────────────┐COMMENT
MEDIUMarrow-select/src/take.rs42/// ├─────────────────┤ ├─────────┤ ├─────────────────┤COMMENT
MEDIUMarrow-select/src/take.rs44/// ├─────────────────┤ ├─────────┤ take(values, indices) ├─────────────────┤COMMENT
MEDIUMarrow-select/src/take.rs45/// │ B │ │ 3 │ ─────────────────────────▶ │ C │COMMENT
191 more matches not shown…
Verbosity Indicators20 hits · 41 pts
SeverityFileLineSnippetContext
LOWparquet-variant-compute/src/variant_get.rs2143 // Step 2: If field not in shredding schema, check value fieldCOMMENT
LOWparquet-variant/tests/variant_interop.rs508 // Step 1: Try unvalidated construction - should not panicCOMMENT
LOWparquet-variant/tests/variant_interop.rs516 // Step 2: Try validationCOMMENT
LOWparquet-variant/tests/variant_interop.rs606 // Step 1: Try unvalidated construction - should not panicCOMMENT
LOWparquet-variant/tests/variant_interop.rs614 // Step 2: Try validationCOMMENT
LOWarrow-select/src/coalesce.rs358 // Step 1: push_batch([350])COMMENT
LOWarrow-select/src/coalesce.rs362 // Step 2: push_batch([200])COMMENT
LOWarrow-select/src/coalesce.rs366 // Step 3: push_batch([800])COMMENT
LOWarrow-select/src/coalesce.rs396 // Step 1: push_batch([300])COMMENT
LOWarrow-select/src/coalesce.rs400 // Step 2: push_batch([1200])COMMENT
LOWarrow-select/src/coalesce.rs382 // Step 4: push_batch([900])COMMENT
LOWarrow-select/src/interleave.rs478 // Step 1: compute output offsets and total child capacityCOMMENT
LOWarrow-select/src/interleave.rs491 // Step 2: build child values.COMMENT
LOWarrow-avro/src/reader/async_reader/builder.rs275 // so we need to check if range.end == header_len to see if there's no data after the headerCOMMENT
LOWparquet/src/file/serialized_reader.rs2417 // Step 1: Peek and ensure dictionary page is correctly identifiedCOMMENT
LOWparquet/src/file/serialized_reader.rs2421 // Step 2: Call skip_next_page to skip the dictionary pageCOMMENT
LOWparquet/src/file/serialized_reader.rs2424 // Step 3: Read the next data page after skipping the dictionary pageCOMMENT
LOWparquet/src/file/serialized_reader.rs2428 // Step 4: Continue reading remaining data pages and verify correctnessCOMMENT
LOWparquet/src/file/serialized_reader.rs2439 // Step 5: Check if all pages are readCOMMENT
LOWparquet/src/file/serialized_reader.rs2443 // Step 6: Verify the number of data pages read (should be 351 data pages)COMMENT
Structural Annotation Overuse19 hits · 40 pts
SeverityFileLineSnippetContext
LOWparquet-variant-compute/src/variant_get.rs2143 // Step 2: If field not in shredding schema, check value fieldCOMMENT
LOWparquet-variant/tests/variant_interop.rs508 // Step 1: Try unvalidated construction - should not panicCOMMENT
LOWparquet-variant/tests/variant_interop.rs516 // Step 2: Try validationCOMMENT
LOWparquet-variant/tests/variant_interop.rs606 // Step 1: Try unvalidated construction - should not panicCOMMENT
LOWparquet-variant/tests/variant_interop.rs614 // Step 2: Try validationCOMMENT
LOWarrow-select/src/coalesce.rs358 // Step 1: push_batch([350])COMMENT
LOWarrow-select/src/coalesce.rs362 // Step 2: push_batch([200])COMMENT
LOWarrow-select/src/coalesce.rs366 // Step 3: push_batch([800])COMMENT
LOWarrow-select/src/coalesce.rs396 // Step 1: push_batch([300])COMMENT
LOWarrow-select/src/coalesce.rs400 // Step 2: push_batch([1200])COMMENT
LOWarrow-select/src/coalesce.rs382 // Step 4: push_batch([900])COMMENT
LOWarrow-select/src/interleave.rs478 // Step 1: compute output offsets and total child capacityCOMMENT
LOWarrow-select/src/interleave.rs491 // Step 2: build child values.COMMENT
LOWparquet/src/file/serialized_reader.rs2417 // Step 1: Peek and ensure dictionary page is correctly identifiedCOMMENT
LOWparquet/src/file/serialized_reader.rs2421 // Step 2: Call skip_next_page to skip the dictionary pageCOMMENT
LOWparquet/src/file/serialized_reader.rs2424 // Step 3: Read the next data page after skipping the dictionary pageCOMMENT
LOWparquet/src/file/serialized_reader.rs2428 // Step 4: Continue reading remaining data pages and verify correctnessCOMMENT
LOWparquet/src/file/serialized_reader.rs2439 // Step 5: Check if all pages are readCOMMENT
LOWparquet/src/file/serialized_reader.rs2443 // Step 6: Verify the number of data pages read (should be 351 data pages)COMMENT
AI Slop Vocabulary11 hits · 33 pts
SeverityFileLineSnippetContext
MEDIUMarrow-arith/src/boolean.rs20//! These kernels can leverage SIMD if available on your system. Currently no runtimeCOMMENT
MEDIUMarrow-arith/src/arithmetic.rs20//! These kernels can leverage SIMD if available on your system. Currently no runtimeCOMMENT
MEDIUMarrow-ord/src/cmp.rs20//! These kernels can leverage SIMD if available on your system. Currently no runtimeCOMMENT
MEDIUMarrow-ord/src/comparison.rs20//! These kernels can leverage SIMD if available on your system. Currently no runtimeCOMMENT
MEDIUMarrow-ipc/src/writer.rs2137 // but pruning unneeded data buffers is much more nuanced since it's complicated to prove that no views referencCOMMENT
MEDIUMarrow-avro/src/schema.rs869 /// Note: Confluent wire format implementations should leverage this method.COMMENT
MEDIUMarrow-avro/src/schema.rs910 /// method will return an error. Confluent wire format implementations should leverage theCOMMENT
MEDIUMparquet/tests/arrow_writer.rs355 // (well under the ~16 MiB row group) to stay robust across platforms.COMMENT
MEDIUMparquet/src/data_type.rs329/// big hit on the CPU pipeline. Essentially the previous version stalls awaiting the result ofCOMMENT
MEDIUMparquet/src/lib.rs59//! to leverage the wide range of data transforms provided by the [arrow] crate, and by theCOMMENT
MEDIUMparquet/src/file/page_index/index_reader.rs48 // Try to read fast-path first. If that fails, fall back to slower but more robustCOMMENT
Synthetic Comment Markers4 hits · 28 pts
SeverityFileLineSnippetContext
HIGHCONTRIBUTING.md275[guidance](https://www.apache.org/legal/generative-tooling.html) on AI-generated code for furtherCODE
HIGHparquet/src/file/writer.rs2082 // Column "a" has both offset and column index, as requestedCOMMENT
HIGHparquet/src/file/metadata/push_decoder.rs47/// as requested as shown below. This minimizes the number of bytes read, butCOMMENT
HIGHparquet/src/arrow/arrow_writer/mod.rs4929 // Column "a" has both offset and column index, as requestedCOMMENT
Fake / Example Data23 hits · 27 pts
SeverityFileLineSnippetContext
LOWarrow/benches/csv_writer.rs40 "Lorem ipsum dolor sit amet",CODE
LOWarrow/benches/csv_writer.rs40 "Lorem ipsum dolor sit amet",CODE
LOWarrow/src/util/string_writer.rs42//! "Lorem ipsum dolor sit amet",COMMENT
LOWarrow/src/util/string_writer.rs42//! "Lorem ipsum dolor sit amet",COMMENT
LOWparquet-variant/src/builder.rs1677 address.insert("street", "123 Main St");CODE
LOWarrow-csv/src/writer.rs38//! "Lorem ipsum dolor sit amet",COMMENT
LOWarrow-csv/src/writer.rs38//! "Lorem ipsum dolor sit amet",COMMENT
LOWarrow-csv/src/writer.rs739Lorem ipsum dolor sit amet,123.564532,3,true,,00:20:34,cupcakesCODE
LOWarrow-csv/src/writer.rs739Lorem ipsum dolor sit amet,123.564532,3,true,,00:20:34,cupcakesCODE
LOWarrow-csv/src/writer.rs742Lorem ipsum dolor sit amet,123.564532,3,true,,00:20:34,cupcakesCODE
LOWarrow-csv/src/writer.rs742Lorem ipsum dolor sit amet,123.564532,3,true,,00:20:34,cupcakesCODE
LOWarrow-csv/src/writer.rs696 "Lorem ipsum dolor sit amet",CODE
LOWarrow-csv/src/writer.rs696 "Lorem ipsum dolor sit amet",CODE
LOWarrow-csv/src/writer.rs823 "Lorem ipsum \ndolor sit amet",CODE
LOWarrow-csv/src/writer.rs823 "Lorem ipsum \ndolor sit amet",CODE
LOWarrow-csv/src/writer.rs866 "'Lorem ipsum \ndolor sit amet'|123.564532|3|true|12:20:34 AM\nconsectetur \"adipiscing\" elit|NULL|2|false|CODE
LOWarrow-csv/src/writer.rs866 "'Lorem ipsum \ndolor sit amet'|123.564532|3|true|12:20:34 AM\nconsectetur \"adipiscing\" elit|NULL|2|false|CODE
LOWarrow-csv/src/writer.rs889 "c1,c2,c3,c4,c6\n\"Lorem ipsum \ndolor sit amet\",123.564532,3,true,00:20:34\n\"consectetur $\"adipiscing$\"CODE
LOWarrow-csv/src/writer.rs889 "c1,c2,c3,c4,c6\n\"Lorem ipsum \ndolor sit amet\",123.564532,3,true,00:20:34\n\"consectetur $\"adipiscing$\"CODE
LOWarrow-avro/src/reader/mod.rs7018 "default": "lorem ipsum"CODE
LOWarrow-avro/src/reader/mod.rs7116 Some(&"\"lorem ipsum\"".to_string()),CODE
LOWarrow-avro/src/reader/mod.rs7117 "f3_0 should have \"lorem ipsum\" default value in metadata"CODE
LOWarrow-avro/src/reader/mod.rs7171 assert_eq!(f3_0_array.value(i), "lorem ipsum");CODE
Hyper-Verbose Identifiers18 hits · 18 pts
SeverityFileLineSnippetContext
LOWarrow-pyarrow-integration-testing/tests/test_sql.py188def test_type_roundtrip_pycapsule(pyarrow_type):CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py208def test_field_roundtrip_pycapsule(pyarrow_type):CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py220def test_field_metadata_roundtrip():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py247def test_primitive_python_pycapsule():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py343def test_fixed_len_binary_array():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py398def test_fixed_len_list_array():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py522def test_empty_recordbatch_with_row_count():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py570def test_record_batch_reader_pycapsule():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py598def test_record_batch_reader_error():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py620def test_record_batch_pycapsule():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py709def test_table_error_inconsistent_schema():CODE
LOWarrow-pyarrow-integration-testing/tests/test_sql.py723def test_reject_other_classes():CODE
LOWdev/release/label_issues.py37def get_cross_referenced_issues(issue):CODE
LOWdev/release/label_issues.py106def find_issues_from_changelog():CODE
LOWparquet/pytest/test_parquet_integration.py44def create_data_and_pandas_df(n):CODE
LOWparquet/pytest/test_parquet_integration.py75def get_show_filter_cli_output(output_dir, col_name, test_values):CODE
LOWparquet/pytest/test_parquet_integration.py98 def test_pyspark_bloom_filter(self, n):CODE
LOWparquet/pytest/test_parquet_integration.py104 def test_bloom_filter_round_trip(self, n):CODE
Self-Referential Comments5 hits · 15 pts
SeverityFileLineSnippetContext
MEDIUMpre-commit.sh20# This file is git pre-commit hook.COMMENT
MEDIUMarrow-array/src/array/union_array.rs46/// ## Create a dense UnionArray `[1, 3.2, 34]`COMMENT
MEDIUMarrow-array/src/array/union_array.rs85/// ## Create a sparse UnionArray `[1, 3.2, 34]`COMMENT
MEDIUMarrow-pyarrow-integration-testing/tests/test_sql.py529 # Create an empty schema with no fieldsCOMMENT
MEDIUMarrow-flight/examples/data/gen_certs.sh17# Create a self-signed root CACOMMENT
Slop Phrases3 hits · 9 pts
SeverityFileLineSnippetContext
MEDIUM…chema/src/extension/canonical/timestamp_with_offset.rs48/// It's worth noting that the data source needs to resolve timezone strings such as `UTC` orCOMMENT
MEDIUMarrow-row/src/lib.rs1172 /// // into convert_rows, this is done for demonstration purposes onlyCOMMENT
MEDIUMparquet/src/arrow/arrow_writer/mod.rs1051/// // Note: This is for demonstration purposes, a thread-pool e.g. rayon or tokio, would be better.COMMENT
TODO Padding2 hits · 3 pts
SeverityFileLineSnippetContext
LOWparquet-variant/tests/variant_interop.rs350// TODO: Add tests for object_nested and array_nestedCOMMENT
LOWarrow-array/src/record_batch.rs738 // TODO: implement `TryFrom` trait, onceCOMMENT
Modern AI Meta-Vocabulary1 hit · 3 pts
SeverityFileLineSnippetContext
MEDIUMarrow-array/src/array/list_array.rs1164 // test scaffoldCOMMENT
Deep Nesting2 hits · 2 pts
SeverityFileLineSnippetContext
LOWdev/release/label_issues.py51CODE
LOWdev/release/label_issues.py106CODE
Example Usage Blocks1 hit · 2 pts
SeverityFileLineSnippetContext
LOWdev/release/update_change_log.sh27# Usage:COMMENT