Skip to content

Commit

Permalink
#3208: setup_tables.py, fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Mar 23, 2018
1 parent 742578a commit 48a2fc9
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,12 @@ class VARCHAR (50) NOT NULL
RETURNS BINARY(36)
LANGUAGE SQL DETERMINISTIC CONTAINS SQL SQL SECURITY INVOKER
RETURN
LCASE(CONCAT_WS('-',
HEX(SUBSTR(_bin, 5, 4)),
HEX(SUBSTR(_bin, 3, 2)),
HEX(SUBSTR(_bin, 1, 2)),
HEX(SUBSTR(_bin, 9, 2)),
HEX(SUBSTR(_bin, 11))
LCASE(CONCAT_WS('-',
HEX(SUBSTR(_bin, 5, 4)),
HEX(SUBSTR(_bin, 3, 2)),
HEX(SUBSTR(_bin, 1, 2)),
HEX(SUBSTR(_bin, 9, 2)),
HEX(SUBSTR(_bin, 11))
));
'''
cur.execute(sql_statement)
Expand Down

0 comments on commit 48a2fc9

Please sign in to comment.