libpinyin / ibus-libpinyin

GNU General Public License v3.0
627 stars 90 forks source link

build: fix awk scripts to work properly when used againts sqlite 3.41.0 #414

Closed DimStar77 closed 1 year ago

DimStar77 commented 1 year ago

The SQL standard requires double-quotes around identifiers and single-quotes around string literals. For example:

"this is a legal SQL column name"
'this is an SQL string literal'

With sqlite 3.41.0, this is being enforced on the CLI

epico commented 1 year ago

Thanks for the patch!