From 8a3a88b69a54916edbc236e1d28bdb595dba9e97 Mon Sep 17 00:00:00 2001 From: James Cor Date: Mon, 11 Nov 2024 10:47:50 -0800 Subject: [PATCH] note --- go/vt/sqlparser/ast.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/vt/sqlparser/ast.go b/go/vt/sqlparser/ast.go index 3787ecb1aff..68c13796be4 100644 --- a/go/vt/sqlparser/ast.go +++ b/go/vt/sqlparser/ast.go @@ -2679,6 +2679,7 @@ const ( // OptLike works for create table xxx like xxx type OptLike struct { + // MySQL only allows single table in LIKE clause, but Postgres allows multiple tables in their `INHERIT` clause LikeTables []TableName }