File: translate-sql-string.md

package info (click to toggle)
r-cran-dbplyr 2.5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,644 kB
  • sloc: sh: 13; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 576 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# sql_substr works as expected

    Code
      substr("test")
    Condition
      Error in `substr()`:
      ! `start` must be a whole number, not absent.

---

    Code
      substr("test", 0)
    Condition
      Error in `substr()`:
      ! `stop` must be a whole number, not absent.

---

    Code
      substr("test", "x", 1)
    Condition
      Error in `substr()`:
      ! `start` must be a whole number, not the string "x".

---

    Code
      substr("test", 1, "x")
    Condition
      Error in `substr()`:
      ! `stop` must be a whole number, not the string "x".