Skip to content

Commit

Permalink
fix(taps): Check replication method instead of key to determine if a …
Browse files Browse the repository at this point in the history
…SQL stream is sorted
  • Loading branch information
edgarrmondragon committed Jan 19, 2024
1 parent 634a2cc commit b6972ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions singer_sdk/streams/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import singer_sdk.helpers._catalog as catalog
from singer_sdk._singerlib import CatalogEntry, MetadataMapping
from singer_sdk.connectors import SQLConnector
from singer_sdk.streams.core import Stream
from singer_sdk.streams.core import REPLICATION_INCREMENTAL, Stream

if t.TYPE_CHECKING:
from singer_sdk.tap_base import Tap
Expand Down Expand Up @@ -232,7 +232,7 @@ def is_sorted(self) -> bool:
Returns:
`True` if stream is sorted. Defaults to `False`.
"""
return self.replication_key is not None
return self.replication_method == REPLICATION_INCREMENTAL


__all__ = ["SQLStream", "SQLConnector"]

0 comments on commit b6972ff

Please sign in to comment.