summaryrefslogtreecommitdiffstats
path: root/src/pl/plpython/expected/plpython_quote.out
blob: 1fbe93d5351f09c4f5818017b677e14f252aae67 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
-- test quoting functions
CREATE FUNCTION quote(t text, how text) RETURNS text AS $$
    if how == "literal":
        return plpy.quote_literal(t)
    elif how == "nullable":
        return plpy.quote_nullable(t)
    elif how == "ident":
        return plpy.quote_ident(t)
    else:
        raise plpy.Error("unrecognized quote type %s" % how)
$$ LANGUAGE plpython3u;
SELECT quote(t, 'literal') FROM (VALUES
       ('abc'),
       ('a''bc'),
       ('''abc'''),
       (''),
       (''''),
       ('xyzv')) AS v(t);
   quote   
-----------
 'abc'
 'a''bc'
 '''abc'''
 ''
 ''''
 'xyzv'
(6 rows)

SELECT quote(t, 'nullable') FROM (VALUES
       ('abc'),
       ('a''bc'),
       ('''abc'''),
       (''),
       (''''),
       (NULL)) AS v(t);
   quote   
-----------
 'abc'
 'a''bc'
 '''abc'''
 ''
 ''''
 NULL
(6 rows)

SELECT quote(t, 'ident') FROM (VALUES
       ('abc'),
       ('a b c'),
       ('a " ''abc''')) AS v(t);
    quote     
--------------
 abc
 "a b c"
 "a "" 'abc'"
(3 rows)