mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
fix(SQLite): improved view body parsing
This commit is contained in:
@ -425,7 +425,7 @@ export class SQLiteClient extends AntaresCore {
|
|||||||
|
|
||||||
return results.rows.map(row => {
|
return results.rows.map(row => {
|
||||||
return {
|
return {
|
||||||
sql: row.sql.match(/(?<=AS ).*?$/gs)[0],
|
sql: row.sql.match(/(?<=(AS|as)( |\n)).*?$/gs)[0],
|
||||||
name: view
|
name: view
|
||||||
};
|
};
|
||||||
})[0];
|
})[0];
|
||||||
|
Reference in New Issue
Block a user