Skip to content

Commit

Permalink
Move edgedb's fixed internal types to a edgedbt schema (#7538)
Browse files Browse the repository at this point in the history
for N in bigint_t memory_t timestamptz_t timestamp_t date_t duration_t relative_duration_t date_duration_t; do find . -name '*.edgeql' -o -name '*.py' -o -name '*.pyx' | xargs sed -i -e "s/edgedb.$N/edgedbt.$N/g" -e "s/'edgedb', '$N/'edgedbt', '$N/g"; done
  • Loading branch information
msullivan authored Jul 10, 2024
1 parent ab96704 commit 5b25581
Show file tree
Hide file tree
Showing 10 changed files with 158 additions and 156 deletions.
2 changes: 1 addition & 1 deletion edb/buildmeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The merge conflict there is a nice reminder that you probably need
# to write a patch in edb/pgsql/patches.py, and then you should preserve
# the old value.
EDGEDB_CATALOG_VERSION = 2024_07_01_00_00
EDGEDB_CATALOG_VERSION = 2024_07_09_00_00
EDGEDB_MAJOR_VERSION = 6


Expand Down
4 changes: 2 additions & 2 deletions edb/lib/_testmode.edgeql
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ std::_datetime_range_buckets(
SET volatility := 'Stable';
USING SQL $$
SELECT
lo::edgedb.timestamptz_t,
hi::edgedb.timestamptz_t
lo::edgedbt.timestamptz_t,
hi::edgedbt.timestamptz_t
FROM
(SELECT
series AS lo,
Expand Down
Loading

0 comments on commit 5b25581

Please sign in to comment.