sqlexpressions - fix escape quote (#87921)

This commit is contained in:
Scott Lepper
2024-05-15 10:55:58 -04:00
committed by GitHub
parent 608a3faacd
commit 93acc0c932
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@ const (
// TablesList returns a list of tables for the sql statement
func TablesList(rawSQL string) ([]string, error) {
duckDB := duck.NewInMemoryDB()
rawSQL = strings.Replace(rawSQL, "'", "''", -1)
cmd := fmt.Sprintf("SELECT json_serialize_sql('%s')", rawSQL)
ret, err := duckDB.RunCommands([]string{cmd})
if err != nil {