• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

profe-ajedrez / obreron / 22269206492

22 Feb 2026 02:55AM UTC coverage: 5.357% (-87.1%) from 92.476%
22269206492

push

github

areyes
Issue 2 — Sistema de errores v3: sentinels + BuildError (contrato cerrado)

6 of 107 new or added lines in 9 files covered. (5.61%)

5 existing lines in 4 files now uncovered.

6 of 112 relevant lines covered (5.36%)

0.08 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/dialect/sqlite.go
1
package dialect
2

3
// SQLite implements SQLite dialect.
4
type SQLite struct{}
5

NEW
6
func (SQLite) AppendPlaceholder(dst []byte, _ int) []byte {
×
NEW
7
        return append(dst, '?')
×
NEW
8
}
×
9

NEW
10
func (SQLite) AppendQuotedIdentifier(dst []byte, id string) []byte {
×
NEW
11
        dst = append(dst, '"')
×
NEW
12
        for i := 0; i < len(id); i++ {
×
NEW
13
                b := id[i]
×
NEW
14
                if b == '"' {
×
NEW
15
                        dst = append(dst, '"', '"')
×
NEW
16
                        continue
×
17
                }
NEW
18
                dst = append(dst, b)
×
19
        }
NEW
20
        dst = append(dst, '"')
×
NEW
21
        return dst
×
22
}
23

NEW
24
func (SQLite) Name() string { return "sqlite" }
×
25

NEW
26
func (SQLite) SupportsReturning() bool { return true }
×
27

NEW
28
func (SQLite) MaxParams() int { return 0 }
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc