File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
share/database/scripts/pgsql Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ 2221. [bug] tmark
2
+ Corrected an index on the dhcp4_servers table
3
+ in the PostgreSQL schema.
4
+ (Gitlab #2957)
5
+
1
6
2220. [bug] marcin
2
7
Exclude packets ignored during load balancing from the
3
8
pkt6-receive-drop statistics. The packets dropped by the
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ pgsql_db_version_test() {
142
142
run_command \
143
143
" ${kea_admin} " db-version pgsql -u " ${db_user} " -p " ${db_password} " -n " ${db_name} "
144
144
version=" ${OUTPUT} "
145
- assert_str_eq " 20 .0" " ${version} " " Expected kea-admin to return %s, returned value was %s"
145
+ assert_str_eq " 21 .0" " ${version} " " Expected kea-admin to return %s, returned value was %s"
146
146
147
147
# Let's wipe the whole database
148
148
pgsql_wipe
@@ -888,7 +888,7 @@ pgsql_upgrade_18_to_19_test() {
888
888
}
889
889
890
890
pgsql_upgrade_19_to_20_test () {
891
- # Verify that lease6_by_sunet_id_address index on lease6 is keyed by
891
+ # Verify that lease6_by_subnet_id_address index on lease6 is keyed by
892
892
# attributes number 5 and 1 (i.e. subnet-id and address)
893
893
qry=" select ix.indkey as keys from pg_class t, pg_class i, pg_index ix \
894
894
where t.oid = ix.indrelid and i.oid = ix.indexrelid and \
Original file line number Diff line number Diff line change @@ -6327,7 +6327,7 @@ UPDATE schema_version
6327
6327
6328
6328
-- This line starts the schema upgrade to version 21.0.
6329
6329
6330
- -- Correct dhcp4_server_modifcation_ts to index the dhcp4_server table.
6330
+ -- Correct dhcp4_server_modification_ts to index the dhcp4_server table.
6331
6331
DROP INDEX dhcp4_server_modification_ts;
6332
6332
CREATE INDEX dhcp4_server_modification_ts ON dhcp4_server (modification_ts);
6333
6333
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ START TRANSACTION;
39
39
40
40
-- This line starts the schema upgrade to version 21.0.
41
41
42
- -- Correct dhcp4_server_modifcation_ts to index the dhcp4_server table.
42
+ -- Correct dhcp4_server_modification_ts to index the dhcp4_server table.
43
43
DROP INDEX dhcp4_server_modification_ts;
44
44
CREATE INDEX dhcp4_server_modification_ts ON dhcp4_server (modification_ts);
45
45
You can’t perform that action at this time.
0 commit comments