DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/query-builders/raw.js
/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/query-builders
import { entityKind } from "../../entity.js";
import { QueryPromise } from "../../query-promise.js";
class GelRaw extends QueryPromise {
constructor(execute, sql, query, mapBatchResult) {
super();
this.execute = execute;
this.sql = sql;
this.query = query;
this.mapBatchResult = mapBatchResult;
}
static [entityKind] = "GelRaw";
/** @internal */
getSQL() {
return this.sql;
}
getQuery() {
return this.query;
}
mapResult(result, isFromBatch) {
return isFromBatch ? this.mapBatchResult(result) : result;
}
_prepare() {
return this;
}
/** @internal */
isResponseInArrayMode() {
return false;
}
}
export {
GelRaw
};
//# sourceMappingURL=raw.js.map
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer