Skip to content

Commit f07176f

Browse files
committed
Fix comment in test data script
1 parent 39af850 commit f07176f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/init_data/init.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ CREATE TABLE "type_VARBIT" (i int, b bit);
4141
CREATE VIEW "type_VARBIT+" AS SELECT *, typeof(b) t, length(b) l FROM "type_VARBIT";
4242
CREATE TABLE "type_UUIDpk" (col uuid primary key);
4343
CREATE TABLE "type_UUID" (i int, u uuid);
44-
-- canonic UUID case when typeof(u) = 'blob' then substr(lower(hex(u)),1,8) || '-' || substr(lower(hex(u)),9,4) || '-' || substr(lower(hex(u)),13,4) || '-' || substr(lower(hex(u)),17,4) || '-' || substr(lower(hex(u)),21,12) else null end uuid_blob_canon
4544
CREATE VIEW "type_UUID+" AS SELECT *, typeof(u) t, length(u) l FROM "type_UUID";
45+
-- blob affinity normalization form for "type_UUID+" view for better visual comparing during uuid test output, will be used later
46+
-- case when typeof(u) = 'blob' then substr(lower(hex(u)),1,8) || '-' || substr(lower(hex(u)),9,4) || '-' || substr(lower(hex(u)),13,4) || '-' || substr(lower(hex(u)),17,4) || '-' || substr(lower(hex(u)),21,12) else null end uuid_blob_canon
4647
CREATE TABLE "type_MACADDRpk" (col macaddr primary key);
4748
CREATE TABLE "type_MACADDR" (i int, m macaddr);
4849
CREATE VIEW "type_MACADDR+" AS SELECT *, typeof("m") t, length("m") l, cast("m" as text) tx FROM "type_macaddr";

0 commit comments

Comments
 (0)