We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0433ccd commit 41ffb0aCopy full SHA for 41ffb0a
dbt/include/oracle/macros/show.sql
@@ -1,5 +1,5 @@
1
{#
2
- Copyright (c) 2023, Oracle and/or its affiliates.
+ Copyright (c) 2024, Oracle and/or its affiliates.
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
@@ -21,3 +21,12 @@
21
)
22
fetch first {{ limit }} rows only
23
{% endmacro %}
24
+
25
26
+{% macro oracle__get_limit_sql(sql, limit) %}
27
+ select *
28
+ from (
29
+ {{ sql }}
30
+ )
31
+ fetch first {{ limit }} rows only
32
+{% endmacro %}
0 commit comments