From d2aa153ed2826e89b71a19743ea3e87bf8887c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Thu, 21 Dec 2023 20:09:59 -0600 Subject: [PATCH] fix: Use `NULLS FIRST` for incremental replication --- tap_athena/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tap_athena/client.py b/tap_athena/client.py index 4a3f51f..6416db2 100644 --- a/tap_athena/client.py +++ b/tap_athena/client.py @@ -39,3 +39,4 @@ class AthenaStream(SQLStream): """The Stream class for Athena.""" connector_class = AthenaConnector + supports_nulls_first = True