File: test_add_pk_invalid_data.test

package info (click to toggle)
duckdb 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 299,196 kB
  • sloc: cpp: 865,414; ansic: 57,292; python: 18,871; sql: 12,663; lisp: 11,751; yacc: 7,412; lex: 1,682; sh: 747; makefile: 558
file content (57 lines) | stat: -rw-r--r-- 1,384 bytes parent folder | download | duplicates (4)
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
57
# name: test/sql/alter/add_pk/test_add_pk_invalid_data.test
# description: Test adding a PRIMARY KEY to a table with invalid data.
# group: [add_pk]

statement ok
PRAGMA enable_verification

statement ok
CREATE TABLE duplicates (i INTEGER, j INTEGER)

statement ok
INSERT INTO duplicates VALUES (1, 10), (2, 20), (3, 30), (1, 100)

statement error
ALTER TABLE duplicates ADD PRIMARY KEY (i)
----
<REGEX>:Constraint Error.*contains duplicates on indexed column.*

# Now test with NULLs.

statement ok
CREATE TABLE nulls (i INTEGER, j INTEGER);

statement ok
INSERT INTO nulls VALUES (1, 10), (2, NULL), (3, 30), (4, 40);

statement error
ALTER TABLE nulls ADD PRIMARY KEY (i, j);
----
<REGEX>:Constraint Error.*NOT NULL constraint failed.*

statement ok
DROP TABLE nulls;

statement ok
CREATE TABLE nulls (i INTEGER, j INTEGER);

statement ok
INSERT INTO nulls VALUES (5, 10), (NULL, 20), (7, 30), (8, 100);

statement error
ALTER TABLE nulls ADD PRIMARY KEY (i)
----
<REGEX>:Constraint Error.*NOT NULL constraint failed.*

# Validate NULL on a compound index.

statement ok
CREATE TABLE nulls_compound (i INTEGER, j INTEGER, k VARCHAR)

statement ok
INSERT INTO nulls_compound VALUES (1, 10, 'hello'), (2, 20, 'world'), (NULL, NULL, NULL), (3, 100, 'yay');

statement error
ALTER TABLE nulls_compound ADD PRIMARY KEY (k, i)
----
<REGEX>:Constraint Error.*NOT NULL constraint failed.*