-
Notifications
You must be signed in to change notification settings - Fork 3
#677 Add batch Id and the number of appended record to the bookeeping #682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b2d19a4
5e42a39
a6e88e1
3125653
174211b
41ec06f
6f4df67
cc942c1
e41464a
b5a52c7
3791376
acacfba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,9 @@ import java.time.{Instant, LocalDate} | |
|
|
||
| case class MetaTableRunInfo(tableName: String, | ||
| infoDate: LocalDate, | ||
| batchId: Long, | ||
| inputRecordCount: Long, | ||
| outputRecordCount: Long, | ||
| appendedRecordCount: Option[Long], | ||
| jobStarted: Instant, | ||
| jobFinished: Instant) | ||
|
Comment on lines
21
to
28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
echo "=== Searching for MetaTableRunInfo construction sites ==="
rg -n 'MetaTableRunInfo\s*\(' --type=scala -A3
echo -e "\n=== Searching for pattern matches on MetaTableRunInfo ==="
rg -n 'MetaTableRunInfo\s*\(' --type=scala | grep -E '(case|match|extract)'
echo -e "\n=== Searching for MetaTableRunInfo in the codebase ==="
rg -n 'MetaTableRunInfo' --type=scalaRepository: AbsaOSS/pramen Length of output: 2571 🏁 Script executed: #!/bin/bash
echo "=== Full MetaTableRunInfo construction in MetastoreReaderBase.scala ==="
sed -n '76,90p' pramen/core/src/main/scala/za/co/absa/pramen/core/metastore/MetastoreReaderBase.scala
echo -e "\n=== Case class definition in MetaTableRunInfo.scala ==="
sed -n '21,28p' pramen/api/src/main/scala/za/co/absa/pramen/api/MetaTableRunInfo.scala
echo -e "\n=== Search for other MetaTableRunInfo creations (broader search) ==="
rg -n 'new MetaTableRunInfo|MetaTableRunInfo\(' --type=scala -B2 -A8 | grep -v test | head -100Repository: AbsaOSS/pramen Length of output: 3638 🏁 Script executed: #!/bin/bash
echo "=== Checking test files for MetaTableRunInfo construction ==="
find . -path ./target -prune -o -name "*Test.scala" -o -name "*Spec.scala" -type f | xargs grep -l "MetaTableRunInfo" 2>/dev/null
echo -e "\n=== Looking for MetaTableRunInfo construction in test files ==="
rg -n 'MetaTableRunInfo\(' --type=scala pramen/core/src/test | head -50
echo -e "\n=== Checking for deprecation or version info ==="
cat README.md 2>/dev/null | head -50
echo -e "\n=== Checking pom.xml or build.sbt for version ==="
find . -name "pom.xml" -o -name "build.sbt" | xargs head -30 2>/dev/null | head -80Repository: AbsaOSS/pramen Length of output: 6668 Breaking API change: case class constructor signature modified. Adding For a public API release, ensure:
🤖 Prompt for AI Agents |
||
Uh oh!
There was an error while loading. Please reload this page.