Skip to content

Commit fee713f

Browse files
committed
fix: update examples to pyexamples
1 parent 33a519d commit fee713f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

examples/python/jupyter_notebook/application_types.sql

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,48 +4,48 @@
44

55
CREATE DOMAIN examples__encrypted_big_int AS cs_encrypted_v1
66
CHECK(
7-
VALUE#>>'{i,t}' = 'examples' AND
7+
VALUE#>>'{i,t}' = 'pyexamples' AND
88
VALUE#>>'{i,c}' = 'encrypted_big_int'
99
);
1010

1111
CREATE DOMAIN examples__encrypted_boolean AS cs_encrypted_v1
1212
CHECK(
13-
VALUE#>>'{i,t}' = 'examples' AND
13+
VALUE#>>'{i,t}' = 'pyexamples' AND
1414
VALUE#>>'{i,c}' = 'encrypted_boolean'
1515
);
1616

1717
CREATE DOMAIN examples__encrypted_date AS cs_encrypted_v1
1818
CHECK(
19-
VALUE#>>'{i,t}' = 'examples' AND
19+
VALUE#>>'{i,t}' = 'pyexamples' AND
2020
VALUE#>>'{i,c}' = 'encrypted_date'
2121
);
2222

2323
CREATE DOMAIN examples__encrypted_float AS cs_encrypted_v1
2424
CHECK(
25-
VALUE#>>'{i,t}' = 'examples' AND
25+
VALUE#>>'{i,t}' = 'pyexamples' AND
2626
VALUE#>>'{i,c}' = 'encrypted_float'
2727
);
2828

2929
CREATE DOMAIN examples__encrypted_int AS cs_encrypted_v1
3030
CHECK(
31-
VALUE#>>'{i,t}' = 'examples' AND
31+
VALUE#>>'{i,t}' = 'pyexamples' AND
3232
VALUE#>>'{i,c}' = 'encrypted_int'
3333
);
3434

3535
CREATE DOMAIN examples__encrypted_small_int AS cs_encrypted_v1
3636
CHECK(
37-
VALUE#>>'{i,t}' = 'examples' AND
37+
VALUE#>>'{i,t}' = 'pyexamples' AND
3838
VALUE#>>'{i,c}' = 'encrypted_small_int'
3939
);
4040

4141
CREATE DOMAIN examples__encrypted_utf8_str AS cs_encrypted_v1
4242
CHECK(
43-
VALUE#>>'{i,t}' = 'examples' AND
43+
VALUE#>>'{i,t}' = 'pyexamples' AND
4444
VALUE#>>'{i,c}' = 'encrypted_utf8_str'
4545
);
4646

4747
CREATE DOMAIN examples__encrypted_jsonb AS cs_encrypted_v1
4848
CHECK(
49-
VALUE#>>'{i,t}' = 'examples' AND
49+
VALUE#>>'{i,t}' = 'pyexamples' AND
5050
VALUE#>>'{i,c}' = 'encrypted_jsonb'
5151
);

0 commit comments

Comments
 (0)