ecb35e7050f51987983e97ec6566250f252894d6
galt
  Thu Jan 27 23:50:02 2022 -0800
fix a few more sql files that have the field name offset which became a keyword in MariaDb 10.6. refs #28799

diff --git src/hg/lib/vax004Maf.sql src/hg/lib/vax004Maf.sql
index 901823e..d7d876f 100644
--- src/hg/lib/vax004Maf.sql
+++ src/hg/lib/vax004Maf.sql
@@ -1,16 +1,16 @@
 # vax004Maf.sql was originally generated by the autoSql program, which also 
 # generated vax004Maf.c and vax004Maf.h.  This creates the database representation of
 # an object which can be loaded and saved from RAM in a fairly 
 # automatic way.
 
 #VAX004 HIV-1 DNA Multiple Sequence Alignment
 CREATE TABLE vax004Maf (
     chrom varchar(255) not null,	# Reference sequence chromosome or scaffold
     chromStart int unsigned not null,	# Start position in chromosome (forward strand)
     chromEnd int unsigned not null,	# End position in chromosome
     extFile int unsigned not null,	# Pointer to associated external file
-    offset bigint not null,	# Offset in external file
+    `offset` bigint not null,	# Offset in external file
     score float not null,	# Overall score
               #Indices
     PRIMARY KEY(chrom)
 );