-
-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Index operations for global temporary tables are not visible for the active connection [CORE1361] #1779
Comments
Modified by: @dyemanovFix Version: 2.1 Beta 2 [ 10190 ] |
Commented by: @hvlad Create index will create index instance in current connection. |
Modified by: @pcisarWorkflow: jira [ 12594 ] => Firebird [ 14208 ] |
Modified by: @pcisarstatus: Resolved [ 5 ] => Closed [ 6 ] |
Commented by: @pavel-zotov > Create index will create index instance in ***CURRENT*** connection. Is it correct that after such index will be created in the 'CURRENT' connection, all *SUBSEQUENT* connections will also see it and will use in their queries ? Consider following script - it creates THREE attachments (in addition to starting one) inside ES/EDS by using new role name for each one: set term ^; recreate global temporary table gtt_session(x int, y int) on commit preserve rows; grant poor_dba to sysdba; set transaction read committed; v_dbname = 'localhost:' || rdb$get_context('SYSTEM', 'DB_NAME'); execute statement 'insert into gtt_session select rand()*10, rand()*10 from rdb$types union all select -2, -3 from rdb$database' execute statement 'select current_connection,current_role,(select count(*) as cnt1 from gtt_session g where g.x + g.y = -5),mon$explained_plan from mon$statements s where s.mon$transaction_id = current_transaction' -------------------------------------------------------- execute statement 'create index gtt_session_x_y on gtt_session computed by ( x+y )' execute statement 'insert into gtt_session select rand()*10, rand()*10 from rdb$types union all select -2, -3 from rdb$database' execute statement 'select current_connection,current_role,(select count(*) as cnt2 from gtt_session g where g.x + g.y = -5),mon$explained_plan from mon$statements s where s.mon$transaction_id = current_transaction' /* -------------------------------------------------------- execute statement 'insert into gtt_session select rand()*10, rand()*10 from rdb$types union all select -2, -3 from rdb$database' execute statement 'select current_connection,current_role,(select count(*) as cnt2 from gtt_session g where g.x + g.y = -5),mon$explained_plan from mon$statements s where s.mon$transaction_id = current_transaction' end Output:ATT_ID 167 Select Expression ATT_ID 169 Select Expression ATT_ID 170 Select Expression Note: attachment #3 (as 'SUPER_DBA') *can* see index created in attachment #2. |
Commented by: @hvlad > Is it correct that after such index will be created in the 'CURRENT' connection, all *SUBSEQUENT* connections will also see it and will use in their queries ? Sure. New connection creates own new instance of GTT using most current metadata, including new index. |
Modified by: @pavel-zotovstatus: Closed [ 6 ] => Closed [ 6 ] QA Status: Done successfully Test Details: Note: it was found that messageinternal Firebird consistency check (invalid SEND request (167),
|
Modified by: @pavel-zotovstatus: Closed [ 6 ] => Closed [ 6 ] QA Status: Done successfully => Done with caveats |
Submitted by: @dyemanov
Neither CREATE INDEX nor SET STATISTICS statements affect the current connection. While it's logical for DELETE ROWS temporary tables, I'd expect the PRESERVE ROWS tables to take the changes into account, i.e. to use the index and to update the statistics.
Commits: 8de5dd7
====== Test Details ======
Note: it was found that message
internal Firebird consistency check (invalid SEND request (167),
file: JrdStatement.cpp line: 325)
can appear in firebird.log, see comments in .fbt
The text was updated successfully, but these errors were encountered: