File: index-add-drop.txt

package info (click to toggle)
golang-ariga-atlas 0.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,676 kB
  • sloc: javascript: 592; sql: 404; makefile: 10
file content (100 lines) | stat: -rw-r--r-- 1,644 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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Each test runs on a clean database.

# Apply schema "1.hcl" on fresh database.
apply 1.hcl
cmpshow users 1.sql

# Add index to table "users".
apply 2.hcl
cmpshow users 2.sql

# Drop uniqueness from index.
apply 3.hcl
cmpshow users 3.sql

# Drop index.
apply 1.hcl
cmpshow users 1.sql

# Below files represent HCL and SQL. File names defined their index in
# execution order. 1.hcl is executed first, 2.hcl executed second, etc.
-- 1.hcl --
schema "$db" {
    charset = "$charset"
    collate = "$collate"
}

table "users" {
    schema = schema.$db
    column "rank" {
        type = bigint
    }
}

-- 1.sql --
CREATE TABLE `users` (
  `rank` bigint(20) NOT NULL
)

-- mysql8/1.sql --
CREATE TABLE `users` (
  `rank` bigint NOT NULL
)

-- 2.hcl --
schema "$db" {
    charset = "$charset"
    collate = "$collate"
}

table "users" {
    schema = schema.$db
    column "rank" {
        type = bigint
    }
    index "rank_idx" {
        unique  = true
        columns = [table.users.column.rank]
    }
}

-- 2.sql --
CREATE TABLE `users` (
  `rank` bigint(20) NOT NULL,
  UNIQUE KEY `rank_idx` (`rank`)
)

-- mysql8/2.sql --
CREATE TABLE `users` (
  `rank` bigint NOT NULL,
  UNIQUE KEY `rank_idx` (`rank`)
)


-- 3.hcl --
schema "$db" {
    charset = "$charset"
    collate = "$collate"
}

table "users" {
    schema = schema.$db
    column "rank" {
        type = bigint
    }
    index "rank_idx" {
        columns = [table.users.column.rank]
    }
}

-- 3.sql --
CREATE TABLE `users` (
  `rank` bigint(20) NOT NULL,
  KEY `rank_idx` (`rank`)
)

-- mysql8/3.sql --
CREATE TABLE `users` (
  `rank` bigint NOT NULL,
  KEY `rank_idx` (`rank`)
)