Skip to content

Commit

Permalink
Issue #7: blob types should be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
ppomes committed Jul 14, 2022
1 parent 19121a3 commit cf97407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/dumpscanner.l
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ bool is_anonymized() {
<ST_TABLE>varchar\(.* { DUPOUT return QTYPE; }
<ST_TABLE>binary\(.* { DUPOUT return TYPE; }
<ST_TABLE>varbinary\(.* { DUPOUT return TYPE; }
<ST_TABLE>(tiny|medium|long)?blob.* { DUPOUT return TYPE; }
<ST_TABLE>(tiny|medium|long)?blob.* { DUPOUT return QTYPE; }
<ST_TABLE>date.* { DUPOUT return QTYPE; }
<ST_TABLE>time.* { DUPOUT return QTYPE; }
<ST_TABLE>bit.* { DUPOUT return TYPE; }
Expand Down

0 comments on commit cf97407

Please sign in to comment.