TestIntegration_RealWorld_Complex tests complex real-world queries
(t *testing.T)
| 294 | |
| 295 | // TestIntegration_RealWorld_Complex tests complex real-world queries |
| 296 | func TestIntegration_RealWorld_Complex(t *testing.T) { |
| 297 | projectRoot, _ := filepath.Abs(filepath.Join("..", "..")) |
| 298 | files := loadSQLTestFiles(t, projectRoot) |
| 299 | |
| 300 | complexRealWorld := filterFiles(files, "real_world", "Complex") |
| 301 | if len(complexRealWorld) == 0 { |
| 302 | t.Skip("No complex real-world test files found") |
| 303 | } |
| 304 | |
| 305 | runTestBatch(t, complexRealWorld, "Real-World Complex Queries") |
| 306 | } |
| 307 | |
| 308 | // TestIntegration_WindowFunctions tests window function support across dialects |
| 309 | func TestIntegration_WindowFunctions(t *testing.T) { |
nothing calls this directly
no test coverage detected