forked from cjfinnell/pgverify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
query.go
261 lines (215 loc) · 7.72 KB
/
query.go
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package pgverify
import (
"fmt"
"regexp"
"sort"
"strings"
)
var reduceSpaceRegex = regexp.MustCompile(`\s+`)
func formatQuery(query string) string {
query = reduceSpaceRegex.ReplaceAllString(query, " ")
return strings.TrimSpace(query)
}
// Constructs a query that returns a list of tables with schemas that will be
// used for verification, translating the provided filter configuration to a
// SQL 'WHERE' clause. Exclusions override inclusions.
func buildGetTablesQuery(includeSchemas, excludeSchemas, includeTables, excludeTables []string) string {
query := "SELECT table_schema, table_name FROM information_schema.tables"
whereClauses := []string{"table_type != 'VIEW'"}
if len(includeSchemas) > 0 {
whereClause := "table_schema IN ("
for i := 0; i < len(includeSchemas); i++ {
whereClause += fmt.Sprintf("'%s'", includeSchemas[i])
if i < len(includeSchemas)-1 {
whereClause += ", "
}
}
whereClause += ")"
whereClauses = append(whereClauses, whereClause)
} else if len(excludeSchemas) > 0 {
whereClause := "table_schema NOT IN ("
for i := 0; i < len(excludeSchemas); i++ {
whereClause += fmt.Sprintf("'%s'", excludeSchemas[i])
if i < len(excludeSchemas)-1 {
whereClause += ", "
}
}
whereClause += ")"
whereClauses = append(whereClauses, whereClause)
}
if len(includeTables) > 0 {
whereClause := "table_name IN ("
for i := 0; i < len(includeTables); i++ {
whereClause += fmt.Sprintf("'%s'", includeTables[i])
if i < len(includeTables)-1 {
whereClause += ", "
}
}
whereClause += ")"
whereClauses = append(whereClauses, whereClause)
} else if len(excludeTables) > 0 {
whereClause := "table_name NOT IN ("
for i := 0; i < len(excludeTables); i++ {
whereClause += fmt.Sprintf("'%s'", excludeTables[i])
if i < len(excludeTables)-1 {
whereClause += ", "
}
}
whereClause += ")"
whereClauses = append(whereClauses, whereClause)
}
if len(whereClauses) > 0 {
query += " WHERE " + strings.Join(whereClauses, " AND ")
}
return formatQuery(query)
}
// Constructs a query that returns a list of columns for the given table,
// including the column name, data type, and constraint.
func buildGetColumsQuery(schemaName, tableName string) string {
return formatQuery(fmt.Sprintf(`
SELECT c.column_name, c.data_type, k.constraint_name, tc.constraint_type
FROM information_schema.columns as c
LEFT OUTER JOIN information_schema.key_column_usage as k ON (
c.column_name = k.column_name AND
c.table_name = k.table_name AND
c.table_schema = k.table_schema
)
LEFT OUTER JOIN information_schema.table_constraints as tc ON (
k.constraint_name = tc.constraint_name
)
WHERE c.table_name = '%s' AND c.table_schema = '%s' AND c.is_generated != 'ALWAYS'
`, tableName, schemaName))
}
// Constructs a query for test mode full that generates a MD5 hash of each row,
// aggregates those hashes, and outputs a single hash of those hashes.
func buildFullHashQuery(config Config, schemaName, tableName string, columns []column) string {
var columnsWithCasting []string
var primaryKeyNamesWithCasting []string
for _, column := range columns {
colNameWithCasting := column.CastToText(config.TimestampPrecision)
columnsWithCasting = append(columnsWithCasting, colNameWithCasting)
if column.IsPrimaryKey() {
primaryKeyNamesWithCasting = append(primaryKeyNamesWithCasting, colNameWithCasting)
}
}
sort.Strings(columnsWithCasting)
sort.Strings(primaryKeyNamesWithCasting)
primaryColumnString := strings.Join(primaryKeyNamesWithCasting, ", ")
primaryColumnConcatString := fmt.Sprintf("CONCAT(%s)", primaryColumnString)
if config.HashPrimaryKeys {
primaryColumnConcatString = fmt.Sprintf("MD5(%s)", primaryColumnConcatString)
}
return formatQuery(fmt.Sprintf(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT(%s)) AS hash
FROM "%s"."%s"
ORDER BY %s
) as eachhash
`, strings.Join(columnsWithCasting, ", "),
schemaName, tableName,
primaryColumnConcatString,
))
}
// Similar to the full test query, this test differs by first selecting a subset
// of the rows by casting the primary key value to an integer, then bucketing
// based off of that value modulo the configured SparseMod value.
func buildSparseHashQuery(config Config, schemaName, tableName string, columns []column, sparseMod int) string {
var columnsWithCasting []string
var primaryKeyNamesWithCasting []string
var primaryKeyNames []string
for _, column := range columns {
colNameWithCasting := column.CastToText(config.TimestampPrecision)
columnsWithCasting = append(columnsWithCasting, colNameWithCasting)
if column.IsPrimaryKey() {
primaryKeyNames = append(primaryKeyNames, column.name)
primaryKeyNamesWithCasting = append(primaryKeyNamesWithCasting, colNameWithCasting)
}
}
sort.Strings(columnsWithCasting)
sort.Strings(primaryKeyNamesWithCasting)
sort.Strings(primaryKeyNames)
primaryKeyNamesWithCastingString := strings.Join(primaryKeyNamesWithCasting, ", ")
var whenClauses []string
for _, pkeyName := range primaryKeyNames {
whenClauses = append(
whenClauses, fmt.Sprintf(
` %s in (
SELECT %s
FROM "%s"."%s"
WHERE ('x' || substr(md5(CONCAT(%s)),1,16))::bit(64)::bigint %% %d = 0
)`,
pkeyName,
pkeyName,
schemaName,
tableName,
primaryKeyNamesWithCastingString,
sparseMod,
),
)
}
whenClausesString := strings.Join(whenClauses, " AND ")
primaryColumnString := strings.Join(primaryKeyNamesWithCasting, ", ")
primaryColumnConcatString := fmt.Sprintf("CONCAT(%s)", primaryColumnString)
if config.HashPrimaryKeys {
primaryColumnConcatString = fmt.Sprintf("MD5(%s)", primaryColumnConcatString)
}
return formatQuery(fmt.Sprintf(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT(%s)) AS hash
FROM "%s"."%s"
WHERE %s
ORDER BY %s
) AS eachrow
`,
strings.Join(columnsWithCasting, ", "),
schemaName, tableName,
whenClausesString,
primaryColumnConcatString,
))
}
// Like the full test query, but only looks at the first and last N rows for generating hashes.
func buildBookendHashQuery(config Config, schemaName, tableName string, columns []column, limit int) string {
var columnsWithCasting []string
var primaryKeyNamesWithCasting []string
for _, column := range columns {
colNameWithCasting := column.CastToText(config.TimestampPrecision)
columnsWithCasting = append(columnsWithCasting, colNameWithCasting)
if column.IsPrimaryKey() {
primaryKeyNamesWithCasting = append(primaryKeyNamesWithCasting, colNameWithCasting)
}
}
sort.Strings(columnsWithCasting)
sort.Strings(primaryKeyNamesWithCasting)
allColumnsWithCasting := strings.Join(columnsWithCasting, ", ")
allPrimaryColumnsWithCasting := strings.Join(primaryKeyNamesWithCasting, ", ")
allPrimaryColumnsConcatString := fmt.Sprintf("CONCAT(%s)", allPrimaryColumnsWithCasting)
if config.HashPrimaryKeys {
allPrimaryColumnsConcatString = fmt.Sprintf("MD5(%s)", allPrimaryColumnsConcatString)
}
return formatQuery(fmt.Sprintf(`
SELECT md5(CONCAT(starthash::TEXT, endhash::TEXT))
FROM (
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT(%s)) AS hash
FROM "%s"."%s"
ORDER BY %s ASC
LIMIT %d
) AS eachrow
) as starthash, (
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT(%s)) AS hash
FROM "%s"."%s"
ORDER BY %s DESC
LIMIT %d
) AS eachrow
) as endhash
`, allColumnsWithCasting, schemaName, tableName, allPrimaryColumnsConcatString, limit, allColumnsWithCasting, schemaName, tableName, allPrimaryColumnsConcatString, limit))
}
// A minimal test that simply counts the number of rows.
func buildRowCountQuery(schemaName, tableName string) string {
return formatQuery(fmt.Sprintf(`SELECT count(*)::TEXT FROM "%s"."%s"`, schemaName, tableName))
}