-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
testing proof of concept #1116
base: master
Are you sure you want to change the base?
testing proof of concept #1116
Conversation
// console.log(query); | ||
// console.log(JSON.stringify(essence)); | ||
// console.log(JSON.stringify(dataCube)); | ||
// console.log(decorator) | ||
const queryTimeStart = Date.now(); | ||
const result = await executeQuery(dataCube, query, essence.timezone, decorator); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we can just stub this portion out with whatever BQ jobs we need to get the data, or implement a real data cube API if we wanted
@@ -0,0 +1,286 @@ | |||
import { parse } from "path"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file is mostly AI generated version that yield super broken SQL but demonstrates something hat may look kind of close to the end goal
i think the most complex problem to solve is turning into SQL to run on BQ, and then turning the BQ response into something that looks like
|
No description provided.