Class: Babik::Selection::Operation::Quarter
- Inherits:
-
DateOperation
- Object
- Base
- DateOperation
- Babik::Selection::Operation::Quarter
- Defined in:
- lib/babik/queryset/lib/selection/operation/date.rb
Overview
Quarter where the date is operation
Constant Summary
Constants inherited from DateOperation
Constants included from ValidDBMS
ValidDBMS::SUPPORTED_DB_ADAPTERS
Instance Attribute Summary
Attributes inherited from Base
#field, #sql_operation, #sql_operation_template, #value
Instance Method Summary collapse
Methods inherited from DateOperation
Methods included from ValidDBMS
Methods inherited from Base
#_init_sql_operation, date_special_cases, #db_engine, escape, factory, #initialize, initialize_operation, initialize_operators, operator?, special_cases, #to_s
Constructor Details
This class inherits a constructor from Babik::Selection::Operation::DateOperation
Instance Method Details
#sql_function ⇒ Object
58 59 60 61 62 63 64 |
# File 'lib/babik/queryset/lib/selection/operation/date.rb', line 58 def sql_function dbms_adapter = db_engine return 'QUARTER(#field)' if dbms_adapter == 'mysql2' return 'EXTRACT(QUARTER FROM #field)' if dbms_adapter == 'postgresql' return '(CAST(strftime(\'%m\', #field) AS INTEGER) + 2) / 3' if dbms_adapter == 'sqlite3' raise NotImplementedError, "#{self.class} lookup not implemented for #{dbms_adapter}" end |