919620af4ae7a9d4d901d445a04e844324b89f9e galt Mon Jan 24 22:12:33 2022 -0800 Fixing compatibility for MariaDb 10.6 which has a new keyword "offset". refs #28799 diff --git src/hg/lib/ensemblLift.sql src/hg/lib/ensemblLift.sql index c3aeb4c..1f2bd89 100644 --- src/hg/lib/ensemblLift.sql +++ src/hg/lib/ensemblLift.sql @@ -1,7 +1,7 @@ # UCSC offset to Ensembl coordinates CREATE TABLE ensemblLift ( chrom varchar(255) not null, # Ensembl chromosome name - offset int unsigned not null, # offset to add to UCSC position + `offset` int unsigned not null, # offset to add to UCSC position #Indices PRIMARY KEY(chrom(15)) );