You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chrislu
cc3ac76304
feat: Add mathematical functions ROUND, CEIL, FLOOR, ABS with comprehensive tests
- Implement ROUND with optional precision parameter
- Add CEIL function for rounding up to nearest integer
- Add FLOOR function for rounding down to nearest integer
- Add ABS function for absolute values with type preservation
- Support all numeric types (int32, int64, float32, double)
- Comprehensive test suite with 20+ test cases covering:
- Positive/negative numbers
- Integer/float type preservation
- Precision handling for ROUND
- Null value error handling
- Edge cases (zero, large numbers)
All tests passing ✅
2 months ago
..
aggregations.go
change to pg_query_go
2 months ago
broker_client.go
fix todo
2 months ago
catalog.go
handling errors
2 months ago
data_conversion.go
refactor
2 months ago
describe.go
no more mysql
2 months ago
engine.go
handling errors
2 months ago
engine_test.go
change to pg_query_go
2 months ago
errors.go
handling errors
2 months ago
hybrid_message_scanner.go
fix
2 months ago
hybrid_test.go
improve tests
2 months ago
mock_test.go
use mock for testing
2 months ago
mocks_test.go
fix todo
2 months ago
parquet_scanner.go
fix todo
2 months ago
query_parsing_test.go
fix
2 months ago
real_namespace_test.go
fix tests
2 months ago
schema_parsing_test.go
improve tests
2 months ago
select_test.go
improve tests
2 months ago
sql_functions.go
feat: Add mathematical functions ROUND, CEIL, FLOOR, ABS with comprehensive tests
2 months ago
sql_functions_test.go
feat: Add mathematical functions ROUND, CEIL, FLOOR, ABS with comprehensive tests
2 months ago
sql_parser_config.go
no more mysql
2 months ago
sql_types.go
change to pg_query_go
2 months ago
system_columns.go
fix after refactoring
2 months ago
test_noschema_error.go
fix todo
2 months ago
time_filter_test.go
fix
2 months ago
types.go
fix todo
2 months ago
window_functions_demo.go
feat: Add window function foundation with timestamp support
2 months ago