@xuda.io/xuda-dbs-plugin-xuda 1.0.98 → 1.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/studio.mjs +2 -2
package/package.json
CHANGED
package/studio.mjs
CHANGED
@@ -824,7 +824,7 @@ const query_db = async function (e, db, table_obj) {
|
|
824
824
|
}
|
825
825
|
|
826
826
|
try {
|
827
|
-
const body = await db.query(view
|
827
|
+
const body = await db.query(`xuda/${view}`, opt);
|
828
828
|
if (e.reduce) {
|
829
829
|
let rows = [];
|
830
830
|
|
@@ -917,7 +917,7 @@ const query_db = async function (e, db, table_obj) {
|
|
917
917
|
opt.key = e.table_id;
|
918
918
|
}
|
919
919
|
|
920
|
-
const body = await db.query("db_table_counts", opt);
|
920
|
+
const body = await db.query("xuda/db_table_counts", opt);
|
921
921
|
|
922
922
|
return { code: 1, data: body };
|
923
923
|
};
|