@@ -234,13 +234,56 @@ const DateRangePicker = forwardRef(({
234
234
return { fromSQL : fromSql , toSQL : toSql } ;
235
235
} ;
236
236
237
- // Function to generate SQL for previous periods
237
+ // Function to generate SQL for previous periods - updated for better BigQuery compatibility
238
238
const generatePreviousPeriodSQL = ( amount : string , unit : string ) : { fromSQL : string , toSQL : string } => {
239
- const normalizedUnit = unit . toUpperCase ( ) ;
240
- return {
241
- fromSQL : `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${ amount } ${ normalizedUnit } )` ,
242
- toSQL : `CURRENT_TIMESTAMP()`
243
- } ;
239
+ // Handle different time units correctly for BigQuery
240
+ switch ( unit . toLowerCase ( ) ) {
241
+ case 'minute' :
242
+ return {
243
+ fromSQL : `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${ amount } MINUTE)` ,
244
+ toSQL : `CURRENT_TIMESTAMP()`
245
+ } ;
246
+ case 'hour' :
247
+ return {
248
+ fromSQL : `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${ amount } HOUR)` ,
249
+ toSQL : `CURRENT_TIMESTAMP()`
250
+ } ;
251
+ case 'day' :
252
+ return {
253
+ fromSQL : `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${ amount } DAY)` ,
254
+ toSQL : `CURRENT_TIMESTAMP()`
255
+ } ;
256
+ case 'week' :
257
+ // For weeks, we need to use DATE_SUB with DATE_TRUNC
258
+ return {
259
+ fromSQL : `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${ amount } WEEK))` ,
260
+ toSQL : `CURRENT_TIMESTAMP()`
261
+ } ;
262
+ case 'month' :
263
+ // For months, use DATE_SUB with DATE_TRUNC
264
+ return {
265
+ fromSQL : `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${ amount } MONTH))` ,
266
+ toSQL : `CURRENT_TIMESTAMP()`
267
+ } ;
268
+ case 'quarter' :
269
+ // For quarters (3 months)
270
+ return {
271
+ fromSQL : `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${ Number ( amount ) * 3 } MONTH))` ,
272
+ toSQL : `CURRENT_TIMESTAMP()`
273
+ } ;
274
+ case 'year' :
275
+ // For years, use DATE_SUB with DATE_TRUNC
276
+ return {
277
+ fromSQL : `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${ amount } YEAR))` ,
278
+ toSQL : `CURRENT_TIMESTAMP()`
279
+ } ;
280
+ default :
281
+ // Default to days if unit not recognized
282
+ return {
283
+ fromSQL : `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${ amount } DAY)` ,
284
+ toSQL : `CURRENT_TIMESTAMP()`
285
+ } ;
286
+ }
244
287
} ;
245
288
246
289
// Apply a custom date range picked from the calendar
0 commit comments